Announcement

Collapse
No announcement yet.

macdx-over.efs larger signal lines

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

  • macdx-over.efs larger signal lines

    I would like help modifing the code so that i can enlarge the macd line and signal line in this efs. I do not see a set bar thickness option coded in.

    Thanks

  • #2
    Re: macdx-over.efs larger signal lines

    davidjrjr
    Add the following lines of code to preMain()
    PHP Code:
    setDefaultBarThickness(21);//Signal
    setDefaultBarThickness(22);//MACD 
    The first value in each command controls the thickness and the second assigns the command to the item in the return array (0 is the first item, 1 is the second, etc).
    Alex


    Originally posted by davidjrjr
    I would like help modifing the code so that i can enlarge the macd line and signal line in this efs. I do not see a set bar thickness option coded in.

    Thanks

    Comment


    • #3
      Muchos Gracias!!

      Comment


      • #4
        davidjrjr
        My pleasure
        Alex


        Originally posted by davidjrjr
        Muchos Gracias!!

        Comment

        Working...
        X