Neue Generation technischer Indikatoren – Blau | von Sofien Kaabar, CFA | Mai 2023

0
33


Pine Script ist die Hauptprogrammierungssprache von TradingView, die sehr benutzerfreundlich ist. Wir werden diesen Indikator kodieren und seine Signale überprüfen. Die nächste Abbildung zeigt den Nifty50 mit den vom Indikator generierten Signalen.

Signaldiagramm
// This supply code is topic to the phrases of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © Sofien-Kaabar
//@model=5
indicator("Rainbow Assortment - Blue", overlay = true)
lookback = enter(defval = 21, title = 'Lookback')
lookback_rsi = enter(defval = 21, title = 'RSI Lookback')
slope = (shut - shut[lookback]) / lookback
indicator = ta.rsi(slope, lookback_rsi)
purchase = indicator > 30 and indicator[1] < 30 and indicator < 35
promote = indicator < 70 and indicator[1] > 70 and indicator > 65
plotshape(purchase, type = form.triangleup, colour = colour.blue, location = location.belowbar, dimension = dimension.small)
plotshape(promote, type = form.triangledown, colour = colour.blue, location = location.abovebar, dimension = dimension.small)

Die nächste Abbildung zeigt ein weiteres Signaldiagramm für USDCAD.

Signaldiagramm

Der PDF-Hyperlink für das Fibonacci-Handelsbuch lautet wie folgt (stellen Sie sicher, dass Sie Ihre E-Mail-Adresse im Notizenteil angeben):

Wenn Sie sehen möchten, wie Sie alle möglichen Algorithmen selbst erstellen können, schauen Sie sich Lumiwealth an. Vom algorithmischen Handel bis hin zu Blockchain und maschinellem Lernen haben sie alles praktisch Detaillierte Kurse, die ich wärmstens empfehlen kann.



Source link

HINTERLASSEN SIE EINE ANTWORT

Please enter your comment!
Please enter your name here