Mr.Snake

Mr.Snake Chanell

Mr.Snake ที่อัปเดต:   
228
Mr.Snake Chanell
ความคิดเห็น:
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
สคริปต์โอเพนซอร์ซ

ด้วยจิตวิญญาณของ TradingView อย่างแท้จริง ผู้เขียนสคริปต์นี้ได้เผยแพร่เป็นโอเพนซอร์ส เพื่อให้ผู้ค้าสามารถเข้าใจและตรวจสอบได้ ไชโยให้กับผู้เขียน! คุณสามารถใช้ได้ฟรี แต่การใช้รหัสนี้ซ้ำในสิ่งพิมพ์อยู่ภายใต้กฎระเบียบการใช้งาน คุณสามารถตั้งเป็นรายการโปรดเพื่อใช้บนชาร์ตได้

คำจำกัดสิทธิ์ความรับผิดชอบ

ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่ เงื่อนไขการใช้บริการ

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
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]