Dear support
I followed the SDK tutorial at:
https://dukascopy.com/wiki/#JForex_SDKand tried most of the examples there. So far so good - I understood them.
The only thing I can't figure out is how to access the indicator calculations from outside of a strategy.
From inside a strategy one can call something like:
IIndicators indicators = context.getIndictors();
double [] macdValue = indicators.macd(myCurrencyPair, myBarPeriod, OfferSide.BID, AppliedPrice.CLOSE,12,26,9,0);
BUT how can I call indicator methods before or without starting a strategy at all?
I am attaching a sample code with the method in question on line #30.
Thank you in advance for every hint!