Announcement

Collapse
No announcement yet.

Line thickness onn cci strategy

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

  • Line thickness onn cci strategy

    TSSUPPORT,
    Is it possible to adjust the thickness of the fastma and slowma lines in your ccistrategy formula. when i try to use the command Setbar thickness it only makes the slowma thicker .
    Thanks for your help
    Yodajudge

  • #2
    yodajudge
    Add the lines in red to the efs
    Alex

    function preMain() {
    setPriceStudy(false);
    setStudyTitle("CCI Strategy");
    setCursorLabelName("CCI MA Slow",0);
    setDefaultBarFgColor(Color.red,0);
    setCursorLabelName("CCI MA FAST",1);
    setDefaultBarFgColor(Color.blue,1);
    setDefaultBarThickness(2, 0);
    setDefaultBarThickness(2, 1);

    setColorPriceBars(true);
    setDefaultPriceBarColor(Color.grey);

    Comment


    • #3
      thank you

      Comment

      Working...
      X