Announcement

Collapse
No announcement yet.

Pivot Points

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

  • Pivot Points

    I am wondering how I would go about changing the formula that seems to be e-signals default for calucalting pivot points. I want to use just the open, high and low but e-signal also calculates the close. Can someone direct me how to change this formula? I would appreciate any help

  • #2
    svenguru76
    eSignal uses (High+Low+Close)/3 to calculate the pivot points. If you want to substitute the Close with the Open then open the PivotPointAll formula using the Editor (Tools-> EFS-> Editor) and in line 57 replace the following
    PHP Code:
    xClose close(inv("D")); 
    with the following
    PHP Code:
    xClose open(inv("D")); 
    You may want to save the efs with a different name so as not to overwrite the original.
    Alex

    Comment

    Working...
    X