Support Board
Date/Time: Fri, 29 Nov 2024 02:36:19 +0000
Post From: Williams AD
[2015-02-15 17:33:07] |
User28682 - Posts: 233 |
Thanks! So to be clear, with these facts: If (CurrentClose > PriorClose) Then AccumulationDistribution = AccumulationDistribution[-1] + (CurrentClose - MinimumOf(CurrentLow, PriorClose) ) Up close: close = 58 prev close = 57 cur low = 57.25 MinimumOf(CurrentLow, PriorClose does minimum mean the lower of 57 or 57.25? AD = AD(-1) + (58 - 57) With a down close and these facts: close = 58 prev close = 59 cur high = 58.75 it would mean using the minimum of 58.75 instead of 59. That would not make sense? Date Time Of Last Edit: 2015-02-15 17:36:04
|