**Set to true to make the bot calculate ALL indicators skipping any empty candles returned by the exchange kline data.
This is how TradingView displays it's charts and how it's indicators are calculated
# Both RSI and CHANGEPERCENTAGE will calculated values are calculated by skipping all empty candles before doing the calculations
DEFAULT_A_buy_strategy_label = CURRENTRSI
DEFAULT_A_buy_strategy = RSI
DEFAULT_A_buy_value = 10
DEFAULT_A_buy_value_limit = 5
DEFAULT_B_buy_strategy_label = SKIPCHANGEPERCENTAGE
DEFAULT_B_buy_strategy = CHANGEPERCENTAGE
DEFAULT_B_buy_value = 0.01
SKIP_EMPTY_CANDLES = true
CURRENTRSI_candle_period = 300
CURRENTRSI_length = 14
SKIPCHANGEPERCENTAGE_candle_period = 3600
SKIPCHANGEPERCENTAGE_length = 10