RicardoSantos

[RS]Renko Moving Average V1

request for coondawg71
added atr bands.
สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
//@version=2
study("[RS]Renko Moving Average V1", shorttitle="[RS]RMA.V1", overlay=true)
decay = input(250, type=float) * syminfo.mintick
detection = input(1)
smooth = input(2)
hh = highest(detection)
ll = lowest(detection)

rprice = round(close/decay)*decay
predosc = nz(dosc[1], rprice)
dosc = hh > predosc + decay and hh+decay < predosc + decay ? predosc + decay :
         hh > predosc + decay and hh+decay > predosc + decay ? rprice :
         ll < predosc - decay and ll-decay > predosc - decay ? predosc - decay :
         ll < predosc - decay and ll-decay < predosc - decay ? rprice : predosc

///////////////
//bricksize = input(100) * syminfo.mintick
smoothprice = sma(dosc, smooth)

p0 = plot(smoothprice, color=black, linewidth=2)
p1 = plot(rprice, color=gray)
//  ||-------------------------------------------------------------------------------||
//  ||  ATR bands
atr_length = input(title='ATR Length:', type=integer, defval=14, minval=1)
atr_multiplier = input(title='ATR Multiplier:', type=float, defval=1.0)
top_band = smoothprice + atr(atr_length) * atr_multiplier
bot_band = smoothprice - atr(atr_length) * atr_multiplier
plot(title='TB', series=top_band, color=red)
plot(title='BB', series=bot_band, color=lime)