RicardoSantos

[RS]Study into sequential probabilitys V0

EXPERIMENTAL:
just some experimentation to check results, putting it out there. :P
odds of the next bar being up or down bar.
開源腳本

本著真正的TradingView精神,該腳本的作者將其開源發布,以便交易者可以理解和驗證它。為作者喝彩吧!您可以免費使用它,但在出版物中重複使用此代碼受網站規則的約束。 您可以收藏它以在圖表上使用。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想在圖表上使用此腳本?
//@version=2
study(title='[RS]Study into sequential probabilitys V0')
up_bar = close > open
down_bar = close < open

up_sequence = max(0, barssince(up_bar == 0) - 1)
down_sequence = max(0, barssince(down_bar == 0) - 1)

up_bars = cum(up_bar)
down_bars = cum(down_bar)

up_odds = (up_bars/n)*100
down_odds = (down_bars/n)*100

forecast_up_odds = ((up_bars/n) * pow((up_bars/n), up_sequence))*100
forecast_down_odds = ((down_bars/n) * pow((down_bars/n), down_sequence))*100

plot(forecast_up_odds, color=green)
plot(forecast_down_odds, color=maroon)