I want to create a Custom Indicator that will be an index between 0 and 100 and will incorporate a number of other indicators including RSI and MACD and possibly some MOMP. The strategy will invest/divest if the Custom Indicator goes above/below a specific threshold, just like one might do with RSI. The Custom Indicator index would be created by weighting the different indicators and ensuring it conforms to a 0-100 scale. As such, it will require some math functions.

I understand how to create a Custom Indicator, but I haven't found an example that incorporates other ‘standard’ indicators and couldn't get it to work. Any suggestions on how to proceed (in Python). Thanks!