Hi, may i check how to call the stochastic indicator into use for python?
Attached is what i've tried:
class OptimizedParticleInterceptor(QCAlgorithm):
def Initialize(self):
self.SetStartDate(2019, 1, 1) # Set Start Date
self.SetCash(10000) # Set Strategy Cash
# self.AddEquity("SPY", Resolution.Minute)
self.AddAlpha(EmaCrossAlphaModel(50, 200, Resolution.Minute))
self.AddAlpha(MacdAlphaModel(12, 26, 9, MovingAverageType.Simple, Resolution.Daily))
self.AddAlpha(PsychSignalAlphaModel())
self.SetExecution(ImmediateExecutionModel())
self.pair = self.AddForex("EURJPY", Resolution.Minute)
self.pair.SetDataNormalizationMode(DataNormalizationMode.Raw)
self.sto = self.STO("EURJPY", 14, 3, int 5, resolution = "minute")
self.pair.SetLeverage(20.0)
the line for self.sto returns a build error.
Thanks
Rahul Chowdhury
Hey Houchin,
I noticed some syntax errors in your code.
self.sto = self.STO("EURJPY", 14, 3, int 5, resolution = "minute")
should be
self.sto = self.STO("EURJPY", 14, 3, 5, Resolution.Minute)
That should fix the build error you're getting.
To learn more about how indicators work and the various indicators we have available,
visit this page in the docs:
https://www.quantconnect.com/docs/algorithm-reference/indicators
Best,
Rahul
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
To unlock posting to the community forums please complete at least 30% of Boot Camp.
You can continue your Boot Camp training progress from the terminal. We hope to see you in the community soon!