How to use column naming patterns for indicators
masterIndicators are accessed using specific string patterns in the DataFrame. You can control the column and the window size using these patterns:
Full Control:
<column>_<window>_<indicator>high_5_sma: 5-period simple moving average of the high price.close_10_ema: 10-period exponential moving average of the close price.high_-1_d: 1-period delta of the high price (negative window looks backward).
Indicator with varying window:
<indicator>_<window>rsi_6: 6-period RSI.cci_10: 10-period CCI.atr_13: 13-period ATR.