This buy\sell strategy is true when:
If buy_value
>= 0:
buy_value
< OBV < buy_value_limit
If buy_value
< 0:
buy_value
> OBV > buy_value_limit
If sell_value
>= 0:
sell_value
>= OBV >= sell_value_limit
If sell_value
< 0:
sell_value
=< OBV =< sell_value_limit
Use Tradingview to visualize this indicator.
View on Tradingview
OBV_candle_period
OBV_length
- Must be less than 500
OBV_signal
- Must be less than OBV_length
# Buy zone begins when the calculated value is less than -0.001
DEFAULT_A_buy_strategy = OBV
DEFAULT_A_buy_value = -0.001
# Buy zone begins when the calculated value is greater than 0.005
DEFAULT_A_buy_strategy = OBV
DEFAULT_A_buy_value = 0.005
# Buy zone begins when the calculated value is less than -0.001
DEFAULT_DCA_A_buy_strategy = OBV
DEFAULT_DCA_A_buy_value = -0.001
# Buy zone begins when the calculated value is greater than 0.005
DEFAULT_DCA_A_buy_strategy = OBV
DEFAULT_DCA_A_buy_value = 0.005
OBV_candle_period = 3600
OBV_length = 500
OBV_signal = 200