Good afternoon;
While expanding an EFS, I encountered the following error mesage which referanced the offsetSeries line. This is the 9th offsetSeries calculation with a unique symbol. I need 11 so is there a way to work around this limit?
"The Symbol Limit(7) for a formula has been exceeded"
In the premain section:
Symbol1 = "$playback";
Interval23 = "40S";
In the main section:
vSymbol11 = Symbol1+","+Interval23;
xMA1000 = offsetSeries(eval(sma)(3,eval(low)(sym(vSymbol11)) ),0);
Thanks,
Alan
While expanding an EFS, I encountered the following error mesage which referanced the offsetSeries line. This is the 9th offsetSeries calculation with a unique symbol. I need 11 so is there a way to work around this limit?
"The Symbol Limit(7) for a formula has been exceeded"
In the premain section:
Symbol1 = "$playback";
Interval23 = "40S";
In the main section:
vSymbol11 = Symbol1+","+Interval23;
xMA1000 = offsetSeries(eval(sma)(3,eval(low)(sym(vSymbol11)) ),0);
Thanks,
Alan
Comment