Announcement

Collapse
No announcement yet.

thickness on an indicator

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

  • thickness on an indicator

    I have an efs cci indicator which has the cci with a 1 period ma on the cci and the same cci but with a 3period ma on it. Both ma's are of the cci indiactor itself and both lines print in the subwindow below the price bars. My question is how can i set the bar thickness on both these lines . When i use the statement setBar Thicknesss(2) it only makes one of the two lines thicker i need to make both lines thicker.
    Thanks

  • #2
    try changing

    setBar Thicknesss(2);

    to

    setBar Thicknesss(2,0);
    setBar Thicknesss(2,1);

    The 0 refers to the first line drawn, the 1 to the second.

    Lotsa times javascript starts counting at 0.

    Comment

    Working...
    X