Registered User Joined: 10/7/2004 Posts: 35
|
Can't seem to figure out how to get an average of this . (C - O) / (H - L)
Keep getting an AvgError ! thx
|
Registered User Joined: 1/28/2005 Posts: 6,049
|
You are probably getting a divide by zero error.
You can try adding a small value to the (H-L)
side so it can never be zero. Like this:
(C-O)/(H-L+.0001)
Once you plot as a custom indicator you can select the smoothing
average and type.
Thanks
diceman
|
Registered User Joined: 10/7/2004 Posts: 35
|
Thanks diceman. Got it working . Thanks again
|