This buy/sell strategy is true when the LOWATRBAND value is higher than the buy_value or sell_value you have specified.
LOWATRBAND values you specify are percentages of the ATR band width. Width = HIGHATR - LOWATR and a buy_value/sell_value of 10 represents 10% of this width.
# Buy when LOWATRBAND value is smaller than -5
DEFAULT_D_buy_strategy = LOWATRBAND
DEFAULT_D_buy_value = -5
# Sell when LOWATRBAND is above 70
DEFAULT_D_sell_strategy = LOWATRBAND
DEFAULT_D_sell_value = 70
DEFAULT_DCA_D_buy_strategy = LOWATRBAND
DEFAULT_DCA_D_buy_value = 20
DEFAULT_DCA_D_buy_value_limit = 30
# Sell when LOWATRBAND is above 90
DEFAULT_DCA_D_sell_strategy = LOWATRBAND
DEFAULT_DCA_D_sell_value = 90
# 1 hour candle / timeframe
LOWATRBAND_candle_period = 3600
LOWATRBAND_length = 14
LOWATRBAND_multiplier = 3
LOWATRBAND_offset = 1