Registered User Joined: 5/31/2006 Posts: 47
|
Hi
How would I make a %true indicator that shows true when the close is in the top 25% of the daily bar? Also, How would you show when the close is in the lower 25%? Thank you.
Mark
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
Close in top 25% of the bar:
(C - L)/(H - L) >= .75
Close in bottom 25% of the bar:
(C - L)/(H - L) <= .25
|
Registered User Joined: 5/31/2006 Posts: 47
|
Thanks very much.
|