Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Is there a way to combine multiple technical indicators together?

Hey guys,

I know how to construct an algorithm that combines a bunch of fundamental indicators together, but I'm not really sure how one could do that with technical indicators. I'm trying to develop an algorithm that incorporates RSI and MACD. Any ideas on where I could learn on how to combine these technical indicators?

1 response

Are any of these backtests helpful? https://www.google.com/search?q=rsi+macd+"def+initialize"+site:quantopian.com
Or past year only.

With the built-in RSI (importing RSI as a factor), since they might be called like in this example:
rsi = RSI(inputs=[USEquityPricing.close], window_length=context.rsi_lookback)

... those might be found with these words in quotes: https://www.google.com/search?q="rsi+inputs"+site%3Aquantopian.com

Specific RSI example here and then you could search MACD separately.