The picture is self explanatory. The platform shows correct last at all times however
Hey Real Money, are you Neo Ultra?Have you got this thing working? Any progress?
Have you got this thing working? Any progress?
Can you replicate the results? Usually closing and reopening excel fixes any broken data that shows values of N/A for me but I've never had any misprints where the data is just incorrect as your picture suggests.
To clarify, this period's value minus last period's EMA of that value is strictly a form of fractional differencing as the ema weights on past (t[-1 .. -inf]) sum to one asymptotically.Yea. That's my stack account...
To clarify, this period's value minus last period's EMA of that value is strictly a form of fractional differencing as the ema weights on past (t[-1 .. -inf]) sum to one asymptotically.
Today - yesterday's EMA:
x = P[t] - EMA[t-1]
Today - today's EMA is just a re-scaled version of that:
x = P[t] - a * P[t] + (1 - a) * EMA[t-1]
= (1 - a) * ( P[t] - EMA[t-1] )
Not strictly fractional differencing, but pretty close. If your ema coefficient (a) is small, it will be practically the same thing.