Announcement

Collapse
No announcement yet.

cci

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

  • cci

    Made a formula in wizard to put a mark on top and bottom of price bar when
    cci crosses above100 and below -100 . I keep getting error and cant figure it out. Any suggestions on how to fix it?
    Attached Files

  • #2
    Chg line 20 to

    var vCCI20 = new CCIStudy(20, "Close");

    is the first error,

    then there is a logic error close(-1)>-100 should be

    if(vCCI20.getValue(CCIStudy.CCI) < -100)
    same for line 44

    Comment


    • #3
      thank you

      Comment

      Working...
      X