Registered User Joined: 9/28/2009 Posts: 135
|
Let's assume that i have the following close values:
1, 2, 3, 4, 5, 6
Assume that I'm processing the value: 6. In my logic as I'm processing 6 I get to a point where I want to process AVGC5.1.
Is this saying to take the SMA of the close and start at close=5.
So, the SMA would be (1+2+3+4+5)/5?
|
Registered User Joined: 9/14/2011 Posts: 50
|
The SMA of all 6 values is: AVGC6 (Meaning: (1+2+3+4+5+6)/6 )The SMA of only the first 5 values (1-5) is: AVG5.1 (Meaning: (1+2+3+4+5)/5 )
|