Announcement

Collapse
No announcement yet.

Cci

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

  • Cci

    Is there any way I can add a midline to that indicator and still retain the +/- reading as well???

    Can the indicator be altered within the program?

    If so how and where will I find the link?

  • #2
    this will add a 0 line

    var study = new CCIStudy(20, "Close");
    addBand(0, PS_SOLID, 2, Color.lime, "0");

    function preMain() {
    }

    function main() {
    return study.getValue(CCIStudy.CCI);
    }

    Comment

    Working...
    X