Is there a simple reason the following does not work
myStudy = cci( 20, hlc3(), sym("YM #F") ); ;
debugPrintln(myStudy.getValue(0));
but this does
myStudy = cci( 20, hlc3() ); ;
debugPrintln(myStudy.getValue(0));
myStudy = cci( 20, hlc3(), sym("YM #F") ); ;
debugPrintln(myStudy.getValue(0));
but this does
myStudy = cci( 20, hlc3() ); ;
debugPrintln(myStudy.getValue(0));
Comment