This strategy is true when the indicator's return value is larger than the your buy or sell value when using a positive value. Or smaller than your value when using a negative buy or sell value.
Note: CLOSE (ONLY works with return_value=ACTUAL)
Optional
# Buy if price is more than 2% above the candle open
DEFAULT_A_buy_strategy_label = CANDLEOPEN
DEFAULT_A_buy_strategy = CANDLE
DEFAULT_A_buy_value = 2
# Sell if price is below the candle open
DEFAULT_A_sell_strategy_label = CANDLEOPEN
DEFAULT_A_sell_strategy = CANDLE
DEFAULT_A_sell_value = -0.01
# Buy if price is more than 2% above the candle open
DEFAULT_DCA_A_buy_strategy_label = CANDLEOPEN
DEFAULT_DCA_A_buy_strategy = CANDLE
DEFAULT_DCA_A_buy_value = 2
# Sell if price is below the candle open
DEFAULT_DCA_A_sell_strategy_label = CANDLEOPEN
DEFAULT_DCA_A_sell_strategy = CANDLE
DEFAULT_DCA_A_sell_value = -0.01
# 1 hour candle / timeframe
CANDLEOPEN_candle_period = 3600
CANDLEOPEN_source = OPEN