Announcement

Collapse
No announcement yet.

Formula possible in Wizard

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

  • Formula possible in Wizard

    I want to create a pivot point study based upon yesterday's O/H/L/C and was wondering if it could be done in the Wizard?

    Here's the formula I'd like to use.

    Any help would be appreciated.

    Bruce

    H4 = [1.1*(H-L)/2]+C
    H3 = [1.1*(H-L)/4]+C
    H2 = [1.1*(H-L)/6]+C
    H1 = [1.1*(H-L)/12]+C

    L1 = C-[1.1*(H-L)/12]
    L2 = C-[1.1*(H-L)/6]
    L3 = C-[1.1*(H-L)/4]
    L4 = C-[1.1*(H-L)/2]

    P.S. I tried modifying a couple of the existing studies BUT no luck.

  • #2
    Bruce
    It is not possible to do what you are trying to accomplish with the Formula Wizard. You will need to write the formula using the Editor.
    The easiest solution is to modify the PivotPointAll.efs which is in the Pivots folder in Formulas and replace lines 67-71 with your equations in which you replace H, L and C with vHigh, vLow and vClose repsectively.
    Alex

    Comment

    Working...
    X