Announcement

Collapse
No announcement yet.

pivotpointall.efs

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

  • pivotpointall.efs

    How do I change the color of the pivot point? I have a black background chart and can't see the pivot point. The support and resistance levels are fine - blue and red.

    Also, the price is labeled on the right. Can you add a label on the left that says PP,R1,S1, etc.?

    Thanks.

  • #2
    efremiv
    Open the efs with the Editor. In the preMain function you should see a section similar to the following

    // Pivot Point
    setDefaultBarStyle(PS_SOLID, 2);
    setDefaultBarFgColor(Color.RGB(0,0,0), 2);
    setDefaultBarThickness(1, 2);


    In that section replace
    setDefaultBarFgColor(Color.RGB(0,0,0), 2);
    with
    setDefaultBarFgColor(Color.white, 2);
    If white is too contrasting try lightgrey
    Alex

    Comment


    • #3
      Thanks!

      Is there a way to add PP, S1, R1,etc. labels on the left?

      Comment

      Working...
      X