Set a source for your indicator to tell the bot what type of price data to use when doing the indicator calculations.
# Our RSI was built using OPEN prices instead of close prices
DEFAULT_A_buy_strategy_label = CURRENTRSI
DEFAULT_A_buy_strategy = RSI
DEFAULT_A_buy_value = 10
# If price is below EMALINE (HLC3)
DEFAULT_B_buy_strategy = EMALINE
DEFAULT_B_buy_value = -1
# OUR RSI will use the OPEN PRICES to calculate RSI value
CURRENTRSI_candle_period = 300
CURRENTRSI_length = 14
CURRENTRSI_source = OPEN
# OUR EMALINE will be based on HLC3 values
EMALINE_candle_period = 3600
EMALINE_length = 14
EMALINE_source = HLC3
Not supported by PDLOW, PDHIGH, PDCLOSE, PDOPEN and some other indicators where it would not make sense