Is this syntax correct for specifying an external symbol and interval, I'm not getting a syntax error but not expecting the values I am expecting and not sure of the cause yet?
Would it be also be possible to specify getInterval() in place of the interval parameter in order to test the strategy in another interval without changing the EFS:
Thanks very much..
PHP Code:
vOSCint1 = osc(5,20,false,(sym("ab #f,5")));
vSTDint1 = stochD(14,3,3,(sym("ab #f,5")));
vADXint1 = adx(14,14,(sym("ab #f,5")));
vMCDint1 = macd(12,26,9,(sym("ab #f,5")));
PHP Code:
vOSCint1 = osc(5,20,false,(sym("ab #f,getInterval()")));
Comment