CapnOscar

Bouncer Stochastic

87
Coded for Bouncer Moving Average timing entries
สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study(title="Bouncer Stochastic", shorttitle="BStoch")
length = input(14, minval=1), smoothK = input(3, minval=1), smoothK2 = input(5, minval=1), smoothD = input(8, minval=1)
k = sma(stoch(close, high, low, length), smoothK)
d = sma(k, smoothD)
k2 = sma(stoch(close, high, low, length), smoothK2)
d2 = sma(k2, smoothD)
davg = (d +d2 ) /2

wid = d > d2 and rising(d,1) ? green : d < d2 and falling(d,1) ? red : orange

plot(d, color=green, transp=0)
plot(d2, color=red, transp=0)
plot(davg, color=wid, transp=0, linewidth=2)
h0 = hline(80)
h1 = hline(20)
h2 = hline(48)
h3 = hline(52)