Mr.Snake

Mr.Snake Chanell

Mr.Snake Aktualisiert   
229
Mr.Snake Chanell
Kommentar:
Channel. Automatically shows the highs and lows, both local and global.
Knowing the previous high and at least you can predict the future price, the script indicates that for you.
You can change the weight and length and cross of your choice in the settings
Open-source Skript

Ganz im Spirit von TradingView hat der Autor dieses Skripts es als Open-Source veröffentlicht, damit Trader es besser verstehen und überprüfen können. Herzlichen Glückwunsch an den Autor! Sie können es kostenlos verwenden, aber die Wiederverwendung dieses Codes in einer Veröffentlichung unterliegt den Hausregeln. Sie können es als Favoriten auswählen, um es in einem Chart zu verwenden.

Haftungsausschluss

Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.

Möchten Sie dieses Skript auf einem Chart verwenden?
study("Mr.Snake Chanell", overlay=true)
Mr_Snake_Chanell = input("D")
Range = input(1)

SELL = security(tickerid, Mr_Snake_Chanell, highest(Range))
BUY = security(tickerid, Mr_Snake_Chanell, lowest(Range))

HI = plot(SELL, color=SELL!=SELL[1]?na:black,linewidth=1 )
LO = plot(BUY, color=BUY!=BUY[1]?na:black,linewidth=1 )
fill(HI, LO, color=white, transp=80)
Hcon = high >= SELL
Lcon = low <= BUY

plotshape(Hcon, style=shape.xcross, color=black, location=location.abovebar)
plotshape(Lcon, style=shape.xcross, color=black, location=location.belowbar)
range = SELL-BUY

Mr_Snake_Chanelli = input('W')
M_HIGH = security(tickerid, Mr_Snake_Chanelli, high)
M_LOW = security(tickerid, Mr_Snake_Chanelli, low)
plot(M_HIGH, color=M_HIGH != M_HIGH[1] ?na:blue, style=line, linewidth=2)
plot(M_LOW, color=M_LOW != M_LOW[1] ?na:blue, style=line, linewidth=2)
length = input(2)
hls = rma(hl2, length)
isRising = hls >= hls[1]