|
Hello,
I am new on this community. I am currently testing the API. I have some litte problems regarding the indicator calls.
Example from javadoc:
donchian
double[][] donchian(Instrument instrument, Period period, OfferSide side, int timePeriod, Filter filter, int numberOfCandlesBefore, long time, int numberOfCandlesAfter) throws JFException
Throws: JFException
The firs parameters like period, side are ok and understandable. The same for numberOfCandlesBefore and numberOfCandlesAfter. What i don't exactly understand are the parameters like time, timePeriod . What are this parameters exactly doing. I understand it is something about time. I can also make some suppositions about the meaning of this parameters but an exact meaning am i unable to find.
The same with
bbands
double[][] bbands(Instrument instrument, Period period, OfferSide side, IIndicators.AppliedPrice appliedPrice, int timePeriod, double nbDevUp, double nbDevDn, IIndicators.MaType maType, long from, long to) throws JFException
Throws: JFException
Are some more resoursces about the meaning of the indicator parameters? Maybe external links ?
Thank you in advance!
|