API Support wrote:
That is not necessary. Indicators can be loaded from file by the strategy.
https://www.dukascopy.com/wiki/en/devel ... strategiesI'm confused, isn't this the old way to use TDI, by registering it because it's a custom indicator?
@Configurable("TDI .jfx file")
public File jfxFile = new File("C:\\temp\\TradersDynamicIndex.jfx");
Is there not a way to do it as per other indicators like below? I thought this change was made for 3.0.18? The code now is included in the API whereas before it wasn't.
private IIndicators myIndicators = null;
...
double rsi[] = myIndicators.rsi(myInstrument, myPeriod, OfferSide.BID, AppliedPrice.CLOSE, 14, Filter.WEEKENDS, 3, timeOfCurrBar, 0);
This URL doesn't have anything in the USE link to show an example of usage
https://www.dukascopy.com/client/javado ... Index.html