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.
Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Thông báo miễn trừ trách nhiệm

Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?
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)