swetswet

RSI_3graf

swetswet ที่อัปเดต:   
RSI index/. 3 Timeframe.
ความคิดเห็น:
Three graphs in one window. three RSI show together are better than one.

สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
//
// @SwetSwet
//
study(title="RSI_3graf ", shorttitle="RSI_3g_SS")
source = close
h0 = hline(70, title="color70")
h1 = hline(30, title="color30")
h50 = hline(50, title="color50")
fill(h0, h50, color= green)
fill(h1, h50, color= red)

lenRSI1 = input(24, minval=1)
rsi1 = rsi(source, lenRSI1)
plot(rsi1, color=green, linewidth=2, title="Time1")

lenRSI2 = input(14, minval=1)
rsi2 = rsi(source, lenRSI2)
plot(rsi2, color=blue, linewidth=2, title="Time2")


lenRSI3 = input(9, minval=1)
rsi3 = rsi(source, lenRSI3)
plot(rsi3, color=red, linewidth=2 , title="Time3")