terryww wrote:
1. I tried @Library("/home/someUser/libs/commons-math-2.2.jar") but get errors in jForex "Frequency cannot be resolved to a type". It works with the SDK though. How can I import apache commons lib and access e.g. math.stat.Frequency()?
Make sure you have included all dependencies in the annotation.
terryww wrote:
2. how can I use e.g.
https://code.google.com/p/renjin/ with your API?
Like any other dependency - by using the
@Library annotation.
terryww wrote:
3. why does indicators.getIndicator("linearRegSlope") returns null when indicators.getIndicator("linearReg") returns expected indicator object?
You need to pass the indicator name as it appears in the platform with capital letters, not as it appears in the IIndicators interface, in this case, you should use the name
"LINEARREG_SLOPE".