- Katılım
- 23 Eki 2020
- Mesajlar
- 1,826
pivot code · To: metastock@xxxxxxxxxxxxx · Subject: pivot code · From: POMPATIS@xxxxxxx · Date: Sat, 6 Nov 1999 19:30:17 EST · Reply-To: metastock@xxxxxxxxxxxxx · Sender: owner-metastock@xxxxxxxxxxxxx Greetings: Might one of you code experts know of a way to take values derived from a daily chart (as below) and use them to create an indicator which can be placed on an intra-day chart? Then, to have the indicator update at noon,using todays open, high and low? I am stumped. OR IF YOU HAVEA BETTER IDEA FOR THE UPDATE TIME AND VALUES TO USE, PLEASE ADVISE. Thank you very much. Kevin Miles. Pivot and Associated Sup/Res Levels P = Pivot NH = Next High HH = Highest High NL = Next Low LL = Lowest Low O = Open H = High L = Low C = Close P = (H + L + C) /3 {daily values} NH = (2*P) - L NL = (2*P) - H LL = P - (NH - NL) HH = (P - NL) + NH [15948] |
|
Pivot and Associated Sup/Res Levels Px:=(H + L + C) /3; {daily values} NH:= (2*Px) - L; NL:= (2*Px) - H; LL:= Px - (NH - NL); HH:= (Px - NL) + NH; LL; HH |
Source / From: |