vyacheslav.shindin

30 second turbo option strategy

Strategy 30 second turbo options.

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

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study("Rufey abracadabra yo!", overlay=true)

slow = 5
fast = 3

vh1 = ema(highest(avg(low, close), fast), 2)
vl1 = ema(lowest(avg(high, close), slow), 2)

//plot(vh1)
//plot(vl1)

// TEMA
e_ema1 = ema(close, 3)
e_ema2 = ema(e_ema1, 3)
e_ema3 = ema(e_ema2, 3)
tema = 3 * (e_ema1 - e_ema2) + e_ema3

// DEMA
e_e1 = ema(close, 5)
e_e2 = ema(e_e1, 5)
dema = 2 * e_e1 - e_e2

//plot(tema, color=orange)
//plot(dema, color=green)

h = sma(high-low, 3000)/3

// --
signal = tema > dema ? max(vh1, vl1) : min(vh1, vl1)
//plot(signal, color=red)
//plot(signal+h, color=red)
//plot(signal-h, color=red)

// --
is_call = tema > dema and signal > low and (signal-signal[1] > signal[1]-signal[2])
is_put = tema < dema and signal < high and (signal[1]-signal > signal[2]-signal[1])

plotshape(is_call ? 1 : na, title="CALL", color=green, text="CALL", style=shape.arrowup)
plotshape(is_put ? -1 : na, title="PUT", color=red, text="PUT", style=shape.arrowdown)