MightyZinger

Slope Adaptive Moving Average (MZ SAMA)

MightyZinger Mis à jour   
INTRODUCTION

This script is inspired from "Vitali Apirine (Stocks & Commodities V.36:5: Adaptive Moving Averages)" and a correction to Dynamic Volume Adaptive Moving Average (MZ DVAMA). I have used slope filtering in order to adapt trends more precisely for better trades.
Slope adaption makes it better for adaptive moving average to detect trend health; making it easier to make decisions based on market strong price momentums, consolidations or breakouts. This isn’t possible with only using simply Adaptive Moving Averages.
Adaptive Moving Averages curve doesn’t change its length based on Slope but it uses slope adaptive color for trend strength detection.

TREND DETECTION
  • Green Color:
    Strong Uptrend with good price momentum.
  • Red Color:
    Strong Downtrend.
  • Yellow Color:
    Market is either choppy, sideways or consolidating. Better to avoid taking new positions and if trade is running then its good to carry it on.

DEFAULTS SETTINGS
  • AMA length is 200 (Better for timeframes higher than 1H)
  • Minor length is 6
  • Major length is 14
  • Slope period is set to 34 with 25 of initial range. Consolidation is always below 17.
ALERTS
Buy/Sell Alerts will follow on when slope is out of consolidation/choppiness area. Best entry is at absolute alerts timing but other trades can be started midway based on trend condition.
Notes de version:
  • Converted the script to Pine Version 5
  • Changed AMA and signal generation code into a function call for the script to work on Multi Timeframe (MTF)
Notes de version:
Buy / Sell signals are derived from dynamic coloring directly now.
Notes de version:
AMA PHILOSOPHY

Hope everyone is getting benefits from 'SAMA'. Lately, I observed that many people were having difficulties understanding some basics of AMA so I decided to explain as much as I can.

MINOR AND MAJOR LENGTH

AMA adapts its length based on smoothing alpha calculations same as used in Exponential Moving Average. Here is the original Tradingview code for EMA calculations:
var result = float(na)
smoothing = 2.0
alpha =  smoothing / (length + 1)
result := (src - nz(result[1])) * alpha + nz(result[1])
In case of AMA, Minor Length and Major Length would be used to calculate same type of alpha as used in EMA code above.
minAlpha = 2 / (minLength + 1)
majAlpha = 2 / (majLength + 1)
AMA uses the above alpha values in a certain way to place greater weight on price making the resulted MA more reactive to recent price changes. Method of placing weight on price is same as of EMA as decribed above only Alpha calculations with respect to smoothing vary in AMA code as described below.
final = mult * (minAlpha - majAlpha) + majAlpha
final_alpha = math.pow(final, 2) 		// Final Alpha calculated from Minor and Major length along with considering Multiplication factor calculated using Highest / Lowest value within provided AMA overall length
ama := (src - nz(ama[1]))  * final_alpha + nz(ama[1]) 	//Same as EMA

More simply, AMA places weight of Highest and Lowest values on recent price changes and to detect these price changes AMA uses two Alphas or EMA with faster length resulting ultimately smoothing effect.
hh = ta.highest(length + 1)
ll = ta.lowest(length + 1)
mult = hh - ll != 0 ? math.abs(2 * src - ll - hh) / (hh - ll) : 0

USAGE

To my experience, best way to use AMA is to consider using higher AMA lengths such as 365, 200, 100 or more than 50 for keeping smoothness intact and for Minor and Major lengths within lower range. For example, EMA 6 to 14 are better and faster options to detect recent price changes so I used these two. Similarly, these two lengths can be changed if market is more volatile and you need AMA to react slowly with price volatility.
For same reason, I used Volume Adaptive Dynamic Major Length in DVAMA. Dynamic Volume Adaptive Moving Average (MZ DVAMA) uses adaptive major length within AMA code to make AMA more reliable with price volatility.
Following are some good combinations of AMA lengths for different timeframes that I found usefull:
Ticker : INDEX : BTCUSD , Timeframe : 4H , AMA Length : 200 , Minor Length : 14 , Major Length : 50
Ticker : INDEX : BTCUSD , Timeframe : 1H , AMA Length : 200 , Minor Length : 14 , Major Length : 50
Ticker : INDEX : BTCUSD , Timeframe : 15m , AMA Length : 200 , Minor Length : 14 , Major Length : 50
Although I wouldn't suggest using SAMA on lower timeframes without any prior backtesting and modifying Major / Minor Lengths with price volatility accordingly buy SAMA can be used along with other indicators such as RSI and another EMA.
Notes de version:
Added alert for "Reversal/Consolidation/Choppiness" yellow color as "Chop Zone"
Notes de version:
Corrected Dynamic Coloring function and placement of signals on chart. Also updated the chart to latest

Script open-source

Dans le véritable esprit de TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par le règlement. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.

Vous voulez utiliser ce script sur un graphique ?