In the last portion of our three-part series, we will be reviewing some of the code behind the Simple Moving Average (SMA) and Exponential Moving Average (EMA) predictive indicators that we have developed. Specifically, we will spend a little bit of time looking at the EMA Projection and the EMA Projection Trend indicators, since these have seemed to be the most useful ones thus far.
Before we get into it, I would like to introduce you to the Huddle, a place where we can crowd around, look at quantitative analytics code, and share ideas. Think of it as a community of ideas and concrete code in a format that is a bit less formal than a traditional code repository might be.
EMA Projection
First up, we have the EMA Projection, which is just our standard EMA, except for the current T0, we gross slope of our line as
m = dx / dy
dx = EMA_at_T_minus_1 - EMA_at_T_minus_period_minus_1
dy = Period - 1 # because the difference in the
# number of bars necessarily
# reduces dy by 1
Specifically, the code that matters looks more like this in the real deal:

Specifically, ema
is an EMA
object that calculates our exponential moving average for us already. We do not have to perform all of that work again.
Period
is a property that is passed into the object at runtime, and Projection
is a time-series plot added to the object at runtime. By default, Period
is 14
.
As you can see, there’s nothing complicated about this code. The entire algorithm is really only a couple lines if you were to “golf” that code, but let’s leave it as it is for readability.
The key to this code is that it calculates the gross slope of the line. It does not compute the derivative, which would give us the true slope. Perhaps we can fix that another time, but so far, calculating the slope using the most recent T-1 data with the T-N data has proved effective enough.
EMA Projection Trend
Building on the code from the EMA Projection, we have the EMA Projection Trend. It is a simple extension to the EMA Projection, but it provides a much clearer view of momentum. Specifically, it shows the changes in the slope of our EMA Projection as a proxy of momentum, which is a proxy of volatility, where larger bars indicate more change in the trend.
Altogether, this indicator seems to respond well to trend changes and can let us catch rides after it confirms other leading indicators. At least I have enjoyed using it.
Without further delay, here is the entire algorithm:

As one can tell, it uses our EMA Projection. It performs a simple comparison of the T0 projection to the most recent prior projection at T-1. This shows us the trend and lets us see the momentum of our projection as it progresses.
The reason for TrendUp
and TrendDown
calculations being separate is because they are actually two different time-series plots. This allows us to choose distinct colors and is how we can show both green and red bars efficiently.
That’s All!
And with that, that’s all we have for today. This series is really supposed to be a three-part series, but having written what I have, I believe there is the possibility of some more talk on using moving averages as leading indicators.