Announcement

Collapse
No announcement yet.

sym() question

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • sym() question

    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));

  • #2
    You asked that question once before and after you rebooted esignal it worked fine, Try that pls.

    edit: oh, ok, that worked, tx for the reminder.

    Comment


    • #3
      David
      FWIW the syntax in the first example is incorrect. Should be
      myStudy = cci( 20, hlc3(sym("YM #F")));
      Alex

      Comment

      Working...
      X