|
QuantShare
2010-09-14 14:31:45
0
|
|
Hi,
The problem will be fixed in the next release. However, you can make some change to the formula code to make it work.
Example for Lane Stochastic Oscillator:
Replace -> result = cFunctions.CompileFormula(...
With the following code:
var v : VectorD = Functions.CompileFormula(...
for(var i=0;i<result.Length;i++)
{
result[i] = v[i];
}
Don't forget to update the parameter of the lane_stochastic function.
Example:
p = lane_stochastic(12);
plot(p, "lane_stochastic", colorBlack, ChartLine, StyleOwnScale);
|
|