Hi all!
I am quite new to both python as well as back-testing strategies on Quantopian. I seek to eventually implement my strategies for live trading at some point. For now, I'm just happy learning the ropes.
I just wanted to ask if the following strategy could potentially be coded on the platform, given its current features/datas;
Conditions for entry / enter long if:
1) ADX (+ pdi > ndi) must be greater than certain threshold.
2) EMA (fast) is over SMA (slow)
Conditions for exit:
1) ADX (+ ndi > pdi) must be lower than certain threshold.
2) Parabolic SAR higher than current price
This algo will only seek to enter long. I would also ideally like to backtest this on multiple assets, including futures.
I already have the ADX part working, and I'm now looking to implement the second entry condition (moving average).
Thank you all for any guidance and help!