radixvinni

Binary option trading by two previous bars

This simple script uses the idea of inertia of the market. if 2 previous candles have the same color, current meant to have that too. Following this signal is equal to buying a binary option on the start of the bar (week here). Signals are shown as arrows on the series. The color of the bar shows the outcome of the current option: yellow is success, black is failure. The same outcomes are at the bottom of the chart. The blue line is the total revenue of all options so far. Can be used as template for strategy simulation.
สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study(title="trade by two-bars", shorttitle="by2bars", overlay=true)

data = (close[2]>open[2]) == (close[1]>open[1])
dir = close[2] < close[1]
correct = (close[2] < close[1]) == (open<close)

plotshape(data and dir, color=lime, style=shape.arrowup, text="Buy", location=location.abovebar )
plotshape(data and not dir, color=red, style=shape.arrowdown, text="Sell", location=location.belowbar)

barcolor(data and correct?yellow:(data?black:na))

yellow_bars = (data and correct)
black_bars = -(data and not correct)

plot(yellow_bars,"success",green,8,histogram)
plot(black_bars,"failure",red,8,histogram)

yellow_bars_so_far = cum(yellow_bars)
black_bars_so_far = cum(black_bars)
total_revenue = yellow_bars_so_far + black_bars_so_far
plot(total_revenue,"total revenue",blue)