A CHANGE of background color indicates a trade opportunity :
Cyan background = BUY
Purple background = SELL

The bullish signals seem to be better than the bearish ones.

Based on the "Willy" indicator.
Don't change the parameters unless you fully understand the consequences.

Use with brains and caution :)
สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study(title="MAGNUS™", shorttitle="MAGNUS™")

length = input(21, minval=1)
upper = highest(length)
lower = lowest(length)

out = 100 * (close - upper) / (upper - lower)
src = out, len = input(54, minval=1, title="MA Short Length")
lenm2 = input(13, minval=1, title="MA Long Length")
len0 = input(8, minval=1, title="Willy Smoothing")

m0 = ema(out, len0)
m1 = ema(out, len)
m2 = sma(out,lenm2)
col = m0>m1?aqua:fuchsia

plot(out, color = green)
plot(m0, color = white)
plot(m2, color = red)
plot(m1, title="EMA", color=orange)
band1 = hline(-20)
band0 = hline(-80)
fill(band1, band0)
bgcolor(col,transp=92)

ไอเดียที่เกี่ยวข้อง