PLTR Target Price 28.38PLTR Entry Price 26.75
TREND LEVEL SIGNAL
Up Trend + Trend Line Level EMA 10 Level EMA 20 Level + Pin Bar
(Trend: Up Level: Trend Line, EMA 10, EMA 20 Signal: Pin Bar)
Exponentialmovingaverage
My Strategy Works On All Markets and All Time FramesPrice closed above EMA 20, EMA 10, Horizontal Support Resistance, and Trend Line. A pin bar formed on the retest and the pin bar candlestick wick protruded through the support levels. The support levels are EMA 20, EMA 10, Horizontal Support Resistance, and Trend Line.
In this example, there are three higher lows moving into a diagonal resistance level and a horizontal resistance level. Price broke through those two levels and retested those levels with a pin bar. After the break and close above the horizontal and diagonal level; those levels became support.
Entry is the closing price of the pin bar. Target price is the previous swing high.
LUNAUSD Target Price 53.255LUNAUSD Entry Price 50.574. Watch for a price signal near price level 50.574.
KO (Coca-Cola Company) Target Price 57.55KO (Coca-Cola Company) show signs of more bullish moves. On the H1, H2, H3, H4, and Daily Chart:
@higher lows were created,
@EMA 10 is above the EMA 20
Charts shown below are H1, H2, H3, H4, and Daily Chart:
@
@
@
@
@
Charts below were the best entry points:
@
@
VETUSD (VeChain) Show Signs of a Strong Bullish MoveVETUSD (VeChain). Four (4) Higher Lows formed on the VETUSD Chart. VETUSD is still showing bullish signs on the H1 Chart and H4 Chart shown below.
VETUSD shows bullish signs on the Daily Chart. EMA 10 is above EMA 20.
DASHUSD Target Price 214.90DASHUSD closed above Diagonal Trend Level, Horizontal Support Resistance Level, EMA 10 Level, and EMA 20 Level.
NEOUSD Trend LineNEOUSD. Watch for a sell opportunity near the 42.55 price level. Wait for price to pull back to the Trend Line, EMA 10, and EMA 20.
How To Set Stop Losses And Take Profits using EMA StrategyWait for price to break and close below a level. In this example, price closed below support level and turned resistance. Next, wait for price to retest level as new resistance. The retest in this example formed a candlestick that created a wick which protruded through Horizontal Resistance Level, EMA 20 Resistance Level, and Diagonal Trend Resistance Level.
For short trade opportunity, set stop loss above EMA 20 Price Level and Rejection Candlestick High Price. Set take profit at previous swing low.
How To Enter A Pullback In A Trend
Enter when these confluence factors are present. There is a Trend, Level, and Signal.
Trend:
Up
Confluence Factors at the Support Resistance Level:
Close Price 96.31
EMA 10 Close Price 96.24
50% Fibonacci Retracement Price 96.15
Horizontal Support Price 95.99
EMA 20 Close Price 95.31
Signal:
Rejection Candlestick
TRXUSD (Tron) Target Price 0.1033TRXUSD (Tron)
Close Price 0.0990
EMA 10 Close Price 0.0989
Previous Day Close Price 0.0987
EMA 20 Close Price 0.0984
61.8% Fibonacci Retracement Level 0.0983
Entry at 0.0990
ADAUSD Target Price 2.0715ADAUSD
EMA 20 (Dark Blue)
EMA 10 (Burgundy)
Support Resistance (Red)
Fibonacci Retracement (Light Blue)
Close Price (Black)
HPE Target Price 15.89HPE (Hewlett-Packard Enterprise)
H4 Chart
14.78 EMA 10 Close
14.74 Close
14.64 Horizontal Support Resistance
14.64 Fibonacci Retracement at 23.6%
14.62 EMA 20 Close
Daily Chart
14.72 Close
14.64 Horizontal Support Resistance
14.64 Fibonacci Retracement at 23.6%
14.63 EMA 10 Close
14.48 EMA 20 Close
A Deep Dive Into Moving AveragesMoving averages are inherent in the world of technical analysis and are present in the core calculations of many technical indicators. In this post, we take a deep dive into 3 types of moving averages used every day by traders: the Simple Moving Average (SMA), Exponential Moving Average (EMA) and the Weighted Moving Average (WMA).
The topics covered below can have practical applications while others are solely informative.
1. Introduction
Moving averages are trend indicators commonly used to smooth the closing prices by removing or attenuating certain variations and are able to estimate underlying trends. Their usage can be recorded as early as 1829 by John Finlaison for smoothing mortality rates (1).
In technical analysis moving averages are often essential for traders and can be found in every technical analysis software. However, they are not specific to this field as they often appear in Time Series Analysis and Digital Signal Processing (DSP).
Moving averages possess a single user setting that generally determines the degree of smoothness. This setting is often referred to as the moving average "length", "period" or less commonly "window size".
2. Curiosities About The Simple Moving Average
The Simple Moving Average abbreviated to "SMA", also known as the "Arithmetic Moving Average" or "Moving/Rolling Mean/Average" is certainly the most well-known moving average due to its simplicity and numerous applications in other domains. The SMA with period length is commonly calculated as follows:
SMA = (SUM C )/length, for i = 0 to length-1
= (C + C + ... + C )/length
Here all the weights w would be equal to 1/length (which is why we often state that a SMA has uniform weights).
2.1 Relationship With The Momentum Oscillator
Changes in a simple moving average with period length are equal to a momentum oscillator of the same period divided by length , that is:
SMA - SMA = (C - C )/length
This can be explained from the calculations of the changes in a Simple Moving Average:
change(SMA ) = SMA - SMA
= (C + C + ... + C )/length - (C + C + ... + C )/length
= (C - C )/length
The closing prices with the same lag cancel each other out, leaving only C(t) and C(t-length) divided by length in the final calculation.
As such you could tell whether a moving average of period length is rising or declining by simply comparing the current closing price to the closing price length bars ago. If the current closing price is higher; then the moving average is rising, else it is declining.
This relationship allows us to efficiently compute the SMA, allowing us to obtain a computation time independent of the moving average period which is very important for real-time high-frequency applications of the SMA.
2.2 Lag Of The SMA
Lag is defined as the effect moving averages have to return past price variations instead of new ones. For most moving averages this amount of lag can be quantified as the weighted sum between the moving average weights w(i) and the time lag associated with them. Higher weights given to more recent values would return a moving average with less lag.
All the weights of a simple moving average are equal to 1/length . The lag of a Simple Moving Average is thus given by:
Lag = SUM(1/length × i), for i = 1 to length-1
= 1/length + 1/length × 2 + ... + 1/length × (length-1)
= (length-1)/2
As such, the lag (in bars) of a Simple Moving Average is equal to its period minus 1, divided by 2.
Offsetting an SMA Lag bars in the past allows us to have it centered with the price.
2.3 Cascaded SMA's
Using an SMA as input for another SMA would return a smoother output; this process is known as cascading. In the case of the Simple Moving Average, cascading many SMAs of the same period would converge toward a Gaussian function.
The Irwin–Hall Probability Density Function can describe the result of cascading multiple SMAs using an impulse as input.
3. Curiosities About The Exponential Moving Average
The Exponential Moving Average; abbreviated as "EMA", also known as an "Exponentially Weighted Moving Average" or "Exponential Average" is a recursive moving average. That is, it uses a previous output for its computation.
This moving average is slightly more reactive than the Simple Moving Average due to its lower degree of filtering.
An EMA of period length is calculated as follows:
EMA = a × C + (1-a) × EMA
or:
EMA = EMA + a × (C - EMA )
with smoothing constant a = 2/(length+1) .
3.1 Traders Prefer The EMA Over The SMA
The trading community seems to have developed a preference for the EMA over the SMA. This might be explained by the superior reactivity of the EMA over the SMA.
The EMA is also more commonly used in the creation of technical indicators, sometimes for its superior reactivity, its computational efficiency, or sometimes simply by preference.
Several studies attempted to indicate which moving average (between the EMA and SMA) provided better performances. The conclusion can vary depending on the markets and methodology used. Dzikevičius & Šaranda found superior results of the EMA over the SMA (2), while Predipbhai found better results from an EMA-based MACD over an SMA-based one (3).
3.2 The EMA Helps Avoiding Division By Zero
In scenarios where we are required to perform a division with a moving average applied to a denominator, the EMA can help to avoid division by 0 as long as the smoothing factor is lower than 1 (EMA period superior to 1)
For a < 1, the EMA has an exponentially decaying infinite impulse response. The impulse response converges towards 0 but never reaches it.
This can be useful if we want to obtain the ratio between the average upward variations and average downward variations. In the event where there is a significant number of upward variations, an SMA of the downward variations might eventually be equal to 0; the EMA prevents this.
3.3 The EMA Has The Same Lag As An SMA
We previously mentioned that the EMA is more reactive than the SMA, but quantifying the lag of an EMA from the weighted sum between the EMA weights and their associated lag gives the same results as the lag of an SMA.
The weights of an EMA can be obtained from its impulse response, which is described as:
h = a × (1-a)^n, n ∈
The lag is then calculated as follows:
Lag = SUM i × (a × (1-a)^i), for i = 0 to infinity
= (1 - a)/a
= (1 - 2/(length+1))/(2/(length+1))
= 2/(length+1)
4. Curiosities About The Weighted Moving Average
The Weighted Moving Average; abbreviated as "WMA", also known as a Linearly Weighted Moving Average (LWMA), is the most reactive moving average when compared to the SMA and EMA. The WMA uses linearly decaying weights for its calculations, giving higher weights to more recent prices.
The WMA can be calculated as follows:
WMA = (SUM (length-i) × C )/(length*(length+1)/2), for i = 0 to length-1
4.1 Relationship With The SMA
It's interesting to observe how certain moving averages are related to each other. In the case of the WMA and SMA, the change of a WMA of period length can be given by the difference between the price and an SMA offset by 1 bar, divided by (length+1)/2 .
This equality is described as follows:
change(WMA ) = (1 - SMA )/((length+1)/2)
This also shows that the changes in a WMA with a period length-1 can indicate if the price is above or below an SMA of period length .
Like with the SMA, this relationship allows the calculation of the WMA efficiently allowing us to obtain a computation time independent of the moving average period.
4.2 Relationship With The Linear Regression
It can seem extremely surprising, but it is indeed possible to compute a simple Linear Regression of the price using linear combinations between a WMA and an SMA (under certain conditions).
The first point of a simple Linear Regression with coordinates (X1,Y1) fitted through the most recent length price observations can be obtained as follows:
X1 = t - length + 1
Y1 = 4 × WMA - 3 × SMA
While the last point with coordinates (X2,Y2) is given by:
X2 = t
Y2 = 3 × WMA - 2 × SMA
The periods of the WMA and SMA are both equal to length . Drawing a line using the above coordinates would return the simple Linear Regression fitted to the most recent length price observations. The slope of the linear regression is equal to:
m = ((3 × WMA - 2 × SMA ) - (4 × SMA - 3 × WMA ))/(length-1)
= 6*(WMA - SMA )/(length-1)
References
(1) Hoem, J. M. (1984). A contribution to the statistical theory of linear graduation. Insurance: Mathematics and Economics, 3(1), 1-17.
(2) Dzikevičius, A., & Šaranda, S. (2010). EMA Versus SMA usage to forecast stock markets: the case of S&P 500 and OMX Baltic Benchmark. Business: Theory and Practice, 11(3), 248-255.
(3) Predipbhai, N. P. (2013). Comparison between exponential moving average based MACD with simple moving average based MACD of technical analysis. International Journal of Scientific Research, 2(12), 189-197.
XRPUSD Target Price 1.2309XRPUSD Entry Price 1.1020. Candlestick wick intersects EMA 10, EMA 20, and 38.2% Fibonacci Retracement Level.
DOTUSD Target Price 38.769DOTUSD. Candlestick wick protrudes through EMA 10, EMA 20, and 50% Fibonacci Retracement Level.