- Katılım
- 23 Eki 2020
- Mesajlar
- 1,826
Hi all! I have a serious problem regarding the implementation of pivot lines. I wrote thisc ode, but it´s still not working correctly: Pivot := lowestsince(1, CLOSE ,ref(LOW, -1)) + highestsince(1, CLOSE, ref(HIGH, -1)) + Ref( CLOSE, -1) / 3; R1 := 2*Pivot - LOW; S1 := 2*Pivot - HIGH; R2 := Pivot + (R1 - S1); S2 := Pivot - (R1 - S1); R1; S1; As the pivot lines are calculated from the previous trading day, i have no clue of how implement hat part so that the pivotg lines work correctly. If someone can help me with that I´d be really happy. Greetings, Ingo This is the correct code for Pivot Points. Henry |
|
Pivot Points R#2:=((H+L+C)/3) - (2*((H+L+C)/3) - H) + (2*((H+L+C)/3) - L); R#1:=2*((H+L+C)/3) - L; S#1:=2*((H+L+C)/3) - H; PP:=(H+L+C)/3; S#2:=((H+L+C)/3) - (((2*((H+L+C)/3) - L)-(2*((H+L+C)/3) - H))); R#2; R#1; PP; S#1; S#2; |
Source / From: |