Rail Line Levels [s3]Plots support/resistance lines based on a neutral signal (white portion) of the Rail Line (variable moving average) for a period of time designated by the user (defaults to 9 bars). Support/Resistance lines will be removed after a period of tests and can be determined by the user (defaults to 26). Support/Resistance is deemed not as important or strong after several touches or tests. The trailer uses a combination of the calculation for the Rail Line (variable moving average) and an ATR to show the overall trend direction.
The indicator is centered around a Variable Moving Average. The Variable Moving Average (VMA) is a study that uses an Exponential Moving Average being able to automatically adjust its smoothing factor according to the market volatility.
In addition to the VMA, the indicator makes use of the ATR which measures market volatility by decomposing the entire range of an asset price for that period. The true range is taken as the greatest of the following: current high less the current low; the absolute value of the current high less the previous close; and the absolute value of the current low less the previous close.
Movingavarage
EMA Power Ranking [wbburgin]This is one of my favorite indicators I've developed. It measures the strength of an uptrend or a downtrend and produces signals for when that trend is weakening.
From my time trading I have learned that moving averages are not good signals to determine trend changes, because they are lagging indicators. However, we can use a moving average system - and the rates of change of the moving averages and the widths between them - to determine when the trend is changing faster than we can using the moving averages themselves. This makes moving averages super useful because we are essentially predicting mean reversal. Then, if we do the same for multiple moving averages of multiple lengths, we can have a pretty accurate perspective of when the price trend is about to reverse.
You can choose which type of MA works best for you, despite the script name. I've found that inverse volatility is the most accurate, but all of my ELMA (elastic MA) signals are also less frequent.
Calculations
The script calculates whether the differences between five moving averages of different lengths are increasing or decreasing, and if the moving averages are positioned properly compared to each other.
When looking at two moving averages, if the width between the moving averages is increasing, and the faster moving average is above the slower moving average the trend is bullish , because the price is outpacing both MA's upwards.
Vice versa, if the width between the moving averages is increasing, and the faster moving average is below the slower moving average the trend is bearish , because the price is outpacing both MA's downwards.
It's deceptively simple. The indicator flags a reversal to the downside immediately after a bullish trend loses momentum, and a reversal to the upside immediately after a bearish trend loses momentum.
Quick note: This isn't a trade setup - I strongly advise that if you are to use this indicator with any strategy, you make sure that there is a stop loss and possibly stop sell as well. The indicator is great at predicting trend reversions, but also falls prey to continuations of both downtrends and uptrends. Best for use in oscillating markets.
Quick note 2: Forgot to mention the precision factor, which goes from 0 (default) to 2. Each step up uses an additional moving average for greater accuracy (i.e. when they are coordinated in a bullish trend, bearish trend, etc.).
Ratio Smoothed, Volume Weighted Moving AverageThis is experimental moving average doesn't use a period/length but instead buffers the price per share and transfers that price per share at a given ratio per bar while also releasing the previous values at a decay ratio.
The idea is that volume is the engine by which the price moves but spikes in volume can cause noise. By having a buffer of price per share units, this VWMA style indicator can behave more like a WMA combined with volume (VAWMA) but smooths out the noise of recent volume. The end result is a price movement that is smooth but also still based strongly up on the average price per share and will always eventually catch up to the true price per share value.
A metaphor to understand this could be a bucket with a hole in it where water is flowing sporadically into the bucket. The level of water in the bucket may change drastically but instead of all the water emptying out immediately, it is throttled by the hole in the bottom. As the level rises, the water pressure increases and the flow increases so that the virtual bucket never has a chance to fill up but also never really empties either.
TurntLibraryLibrary "TurntLibrary"
Collection of functions created for simplification/easy referencing. Includes variations of moving averages, length value oscillators, and a few other simple functions based upon HH/LL values.
ma(source, length, type)
Apply a moving average to a float value
Parameters:
source : Value to be used
length : Number of bars to include in calculation
type : Moving average type to use ("SMA","EMA","RMA","WMA","VWAP","SWMA","LRC")
Returns: Smoothed value of initial float value
curve(src, len, lb1, lb2)
Exaggerates curves of a float value designed for use as an exit signal.
Parameters:
src : Initial value to curve
len : Number of bars to include in calculation
lb1 : (Default = 1) First lookback length
lb2 : (Default = 2) Second lookback length
Returns: Curved Average
fragma(src, len, space, str)
Average of a moving average and the previous value of the moving average
Parameters:
src : Initial float value to use
len : Number of bars to include in calculation
space : Lookback integer for second half of average
str : Moving average type to use ("SMA","EMA","RMA","WMA","VWAP","SWMA","LRC")
Returns: Fragmented Average
maxmin(x, y)
Difference of 2 float values, subtracting the lowest from the highest
Parameters:
x : Value 1
y : Value 2
Returns: The +Difference between 2 float values
oscLen(val, type)
Variable Length using a oscillator value and a corresponding slope shape ("Incline",Decline","Peak","Trough")
Parameters:
val : Oscillator Value to use
type : Slope of length curve ("Incline",Decline","Peak","Trough")
Returns: Variable Length Integer
hlAverage(val, smooth, max, min, type, include)
Average of HH,LL with variable lengths based on the slope shape ("Incline","Decline","Trough") value relative to highest and lowest
Parameters:
val : Source Value to use
smooth
max
min
type
include : Add "val" to the averaging process, instead of more weight to highest or lowest value
Returns: Variable Length Average of Highest Lowest "val"
pct(val)
Convert a positive float / price to a percentage of it's highest value on record
Parameters:
val : Value To convert to a percentage of it's highest value ever
Returns: Percentage
hlrange(x, len)
Difference between Highest High and Lowest Low of float value
Parameters:
x : Value to use in calculation
len : Number of bars to include in calculation
Returns: Difference
midpoint(x, len, smooth)
The average value of the float's Highest High and Lowest Low in a number of bars
Parameters:
x : Value to use in calculation
len
smooth : (Default=na) Optional smoothing type to use ("SMA","EMA","RMA","WMA","VWAP","SWMA","LRC")
Returns: Midpoint
Fetch TrendsThis indicator can be used as a tool to measure the strength of the current trend. It is also trying to achieve to alert traders on when a trend can shift.
In order to achieve this, it uses three simple indicators:
1: 9 Simple moving average
2: 50 Simple moving average
3: Rsi (14)
The moving averages are used to define the current trend of the market, and the rsi is used to measure the strength. We use a color gradient to reach our second goal with this indicator.
The gradient is calculated based on the rsi value, which means the trader can use this indicator to visualize the strength of the current trend. It also helps to alert the trader when the trend starts to shift.
Lets say we use green to signal a strong positive trend, and blue for a weak positive trend. The candles are green in a strong uptrend, and are getting more blue once the trend starts to weaken.
As soon as the trend shifts from bullish to bearish, the bars become a diferent color.
Pranoyama - The Aurora BorealisENG:
The "aurora borealis" indicator has 2 operating modes. To enable it, go to the settings in the arguments section and check the boxes.
1) In the upper part of settings page you may turn on colored of classic candles by heiken ashi candles color. All high low open and close of candles will stay classic. Only color will change. Also you may find there, a moving average which has been added to determine the trend. This moving average is based on Heiken Ashi candles.
2) In the middle of the settings, there is a box which turn on the "Aurora borealis" indicator, it based on Heiken ashi candles and helps to determine the trend.
3) At the bottom of the settings page, you can change the color of candles/aurora.
РУС:
Индикатор "полярное сияние" имеет 2 режима работы. Для его включения войдите в настройки в раздел аргументы и поставьте галочки в соответствующих чек-боксах.
1) В Верхней части страницы настроек имеется возможность включить подсветку свечей в цветах Хейкен Аши. При этом все хаи, лои, открытия и закрытия останутся классическими. Кроме-того добавлена скользящая средняя для определения тренда, которая строится на основе свечей Хейкен Аши.
2) В середине страницы настроек имеется возможность включить индикатор "Полярное сияние", в честь которого назван индикатор/ Он не является свечами хейкен аши, но строится на основе этих свечей и помогает определить тренд.
3) В нижней части страницы настроек можно изменять цвет свечей/сияния
Ghost Ninja Moving Average by HassonyaThe Ghost Ninja Moving Average indicator contains three ema averages. These are ema 21, ema 55 and ema 233.
The values of the averages appearing on the screen are adjusted according to their own lengths. If you want, you can change the settings from the "Numbers of bars back" setting.
The 1st moving average (EMA-21) will follow the price and will disappear if the price is above it. It will only appear where needed.
The 2nd moving average (EMA-55) will be red if not orange when EMA-21 is greater than EMA-55.
The 3rd moving average (EMA-233) will appear if EMA-55 is greater than it, otherwise it will not.
The system will also display Golden and Death crosses.
I hope you will be satisfied using it. Yours sincerely. Happy Trading
TÜRKÇE AÇIKLAMA
Ghost Ninja Hareketli Ortalama indikatörü, üç adet ema ortalaması barındırıyor. Bunlar ema 21, ema 55 ve ema 233 tür.
Ortalamaların ekranda gözükme değerleri, kendi uzunluklarına göre ayarlanmıştır. İsterseniz ayarları "Numbers of bars back" ayarından değiştirebilirsiniz.
1nci hareketli ortalama olan (EMA-21), fiyatı izleyerek eğer fiyat onun üzerindeyse gözükecek değilse yok olacak. Sadece gerektiği yerlerde gözükecek.
2nci hareketli ortalama(EMA-55), EMA-21 EMA-55'ten büyük olduğunda turuncu değilse kırmızı olacak.
3ncü hareketli ortalama(EMA-233), Eğer EMA-55 ondan büyükse gözükecek yoksa gözükmeyecek.
Sistem aynı zamanda Golden ve Death crossları da gösterecek.
Güle güle kullanın. Bereket bulun. Sevgiler
Moving Averages SelectionHello everyone, I present my first script. In it I collect a group of fully configurable moving averages, both in color, value and selection of the ones we want to observe.
The moving averages I collect are 3 of each of the following types:
EMA: An exponential moving average ( EMA ) is a type of moving average (MA) that places a greater weight and significance on the most recent data points.
SMA: It is simply the average price over the specified period. The average is called "moving" because it is plotted on the chart bar by bar, forming a line that moves along the chart as the average value changes.
HMA: The Hull Moving Average ( HMA ) attempts to minimize the lag of a traditional moving average while retaining the smoothness of the moving average line. Developed by Alan Hull in 2005, this indicator makes use of weighted moving averages to prioritize more recent values and greatly reduce lag.
RMA: The Rolling Moving Average, sometimes referred to as "Smoothed Moving Average", gives the recent prices most weighting, though the historic prices are also weighted, each given less weighting further back in time.
WMA: The weighted moving average ( WMA ) is a technical indicator that traders use to generate trade direction and make a buy or sell decision. It assigns greater weighting to recent data points and less weighting on past data points.
I am open to any opinion and advice for improvement, greetings, I hope you find it useful :)
Rolling MACDThis indicator displays a Rolling Moving Average Convergence Divergence . Contrary to MACD indicators which use a fix time segment, RMACD calculates using a moving window defined by a time period (not a simple number of bars), so it shows better results.
This indicator is inspired by and use the Close & Inventory Bar Retracement Price Line to create an MACD in different timeframes.
█ CONCEPTS
If you are not already familiar with MACD, so look at Help Center will get you started www.tradingview.com
The typical MACD, short for moving average convergence/divergence, is a trading indicator used in technical analysis of stock prices, created by Gerald Appel in the late 1970s. It is designed to reveal changes in the strength, direction, momentum, and duration of a trend in a stock's price.
The MACD indicator(or "oscillator") is a collection of three time series calculated from historical price data, most often the closing price. These three series are: the MACD series proper, the "signal" or "average" series, and the "divergence" series which is the difference between the two. The MACD series is the difference between a "fast" (short period) exponential moving average (EMA), and a "slow" (longer period) EMA of the price series. The average series is an EMA of the MACD series itself.
Because RMACD uses a moving window, it does not exhibit the jumpiness of MACD plots. You can see the more jagged MACD on the chart above. I think both can be useful to traders; up to you to decide which flavor works for you.
█ HOW TO USE IT
Load the indicator on an active chart (see the Help Center if you don't know how).
Time period
By default, the script uses an auto-stepping mechanism to adjust the time period of its moving window to the chart's timeframe. The following table shows chart timeframes and the corresponding time period used by the script. When the chart's timeframe is less than or equal to the timeframe in the first column, the second column's time period is used to calculate RMACD:
Chart Time
timeframe period
1min 🠆 1H
5min 🠆 4H
1H 🠆 1D
4H 🠆 3D
12H 🠆 1W
1D 🠆 1M
1W 🠆 3M
You can use the script's inputs to specify a fixed time period, which you can express in any combination of days, hours and minutes.
By default, the time period currently used is displayed in the lower-right corner of the chart. The script's inputs allow you to hide the display or change its size and location.
Minimum Window Size
This input field determines the minimum number of values to keep in the moving window, even if these values are outside the prescribed time period. This mitigates situations where a large time gap between two bars would cause the time window to be empty, which can occur in non-24x7 markets where large time gaps may separate contiguous chart bars, namely across holidays or trading sessions. For example, if you were using a 1D time period and there is a two-day gap between two bars, then no chart bars would fit in the moving window after the gap. The default value is 10 bars.
//
This indicator should make trading easier and improve analysis. Nothing is worse than indicators that give confusingly different signals.
I hope you enjoy my new ideas
best regards
Chervolino
Channel SurfingThis is my Channel Surfing indicator. It fires Buy and Sell signals based on multiple conditions. You can use EMAs or LSMAs. You will have to check the box of which moving averages to use once you add it to the chart. It plots EMAs or LSMAs using the different sources Close, Low, and High as the channel to surf. It fires a Buy signal if price crosses the channel up and if there is a pullback into the channel followed by a breakout to the upside. It fires a Sell signal if price crosses the channel down and if there is a pullback into the channel followed buy a breakdown to the down side. I find it works great on the 5 minute SPY chart and the 1 minute chart of ES with the default settings when scalping. You are able to switch between 2 different channels using LSMAs or EMAs. The EMAs has an optional LSMA slope filter for getting rid of some false signals. Let me know if you guys find any other settings or ways to use this and as always I hope it helps.
Olympus MonsThis is the Olympus Mons indicator. It uses Braid Filter, LSMA, and Hawkeye Volume to fire Buy and Sell signals. I use this on the 5 Min. SPY chart to play 1 point scalp targets with options. I have been able to get a pretty consistent win rate using it like this. The default settings are what I use. Hope it helps any of you guys. Let me know if you see any settings that are better.
Nadaraya-Watson: Rational Quadratic Kernel (Non-Repainting)What is Nadaraya–Watson Regression?
Nadaraya–Watson Regression is a type of Kernel Regression, which is a non-parametric method for estimating the curve of best fit for a dataset. Unlike Linear Regression or Polynomial Regression, Kernel Regression does not assume any underlying distribution of the data. For estimation, it uses a kernel function, which is a weighting function that assigns a weight to each data point based on how close it is to the current point. The computed weights are then used to calculate the weighted average of the data points.
How is this different from using a Moving Average?
A Simple Moving Average is actually a special type of Kernel Regression that uses a Uniform (Retangular) Kernel function. This means that all data points in the specified lookback window are weighted equally. In contrast, the Rational Quadratic Kernel function used in this indicator assigns a higher weight to data points that are closer to the current point. This means that the indicator will react more quickly to changes in the data.
Why use the Rational Quadratic Kernel over the Gaussian Kernel?
The Gaussian Kernel is one of the most commonly used Kernel functions and is used extensively in many Machine Learning algorithms due to its general applicability across a wide variety of datasets. The Rational Quadratic Kernel can be thought of as a Gaussian Kernel on steroids; it is equivalent to adding together many Gaussian Kernels of differing length scales. This allows the user even more freedom to tune the indicator to their specific needs.
The formula for the Rational Quadratic function is:
K(x, x') = (1 + ||x - x'||^2 / (2 * alpha * h^2))^(-alpha)
where x and x' data are points, alpha is a hyperparameter that controls the smoothness (i.e. overall "wiggle") of the curve, and h is the band length of the kernel.
Does this Indicator Repaint?
No, this indicator has been intentionally designed to NOT repaint. This means that once a bar has closed, the indicator will never change the values in its plot. This is useful for backtesting and for trading strategies that require a non-repainting indicator.
Settings:
Bandwidth. This is the number of bars that the indicator will use as a lookback window.
Relative Weighting Parameter. The alpha parameter for the Rational Quadratic Kernel function. This is a hyperparameter that controls the smoothness of the curve. A lower value of alpha will result in a smoother, more stretched-out curve, while a lower value will result in a more wiggly curve with a tighter fit to the data. As this parameter approaches 0, the longer time frames will exert more influence on the estimation, and as it approaches infinity, the curve will become identical to the one produced by the Gaussian Kernel.
Color Smoothing. Toggles the mechanism for coloring the estimation plot between rate of change and cross over modes.
Candle Wick Patterns Alerts & Liquidity TargetsCandle wicks provide incredibly useful confluence and confirmation of price action and technical analysis.
Quite simply a wick is formed by price being moved to an extreme by one side, then price being pushed back by the other side.
This can show increased pressure by one side, reduced or increased momentum, or exhaustion by another side.
This indicator while simple, is extremely powerful and versatile and can be set up to recognize numerous types of candle wick and therefore suit numerous trading styles.
The settings as to how wicks are highlighted are:
- Timeframe - view wicks on a higher timeframe while trading on a lower timeframe
- Minimum Wick to Body Ratio - increasing this value will look for wicks who are at least n times larger than the candle body. The most obvious examples here are Doji's - hammer, gravestone, dragonfly, etc. These can indicate trend reversals, indecision and changing momentum.
- Minimum Candle Body as percent of price - this value makes sure that any wick highlighted, belongs to a candle with a body that is at least n% of the price. A higher value is likely to show price momentum is stronger in a particular direction, good for confirming a trend.
- Minimum Candle Wick as percent of price - similar to candle bodies, this value will make sure the candle wick is at least n% of the price. This will identify large fluctuations in price, and if you are familiar with smart money concepts, an increasingly popular strategy is to target 50% of the wick being filled (liquidity).
- Show half fill level of wick - As above, this can provide a good target, which price will be drawn to, depending on the wick.
Finally, the indicator can be used to create alerts when a new wick that meets your settings criteria, is formed.
And don't forget you can add the indicator multiple times, with different settings to cover multiple scenarios and timeframes!
[MAD] Multi-MA MTFThis is a simple
3 times
EMA, SMA, WMA, HMA , Timeframe
selector which can send the above below to the multimit system to daisychain trends in
Intraday 5 Day Moving Average for Swing TraderThis indicator helps swing trader to quickly see if a stock or an index is in a short term up- or downtrend.
The 5 Day Moving Average line is shown on all intraday timeframes like 5, 10, 15, 30, 60, 65 and so on.
When an index like SPY or QQQ shows a green 5 DMA line, the index is in a short term uptrend and you can buy stocks for a swing trade,
when the line turns red be careful and stop buying stocks, instead watch out to short stocks.
In addition to the 5 DMA line you can show the percent distance to the 5 DMA and have multiple options to customize the indicator.
Features
■ Use SMA or EMA for the 5 DMA
■ Use different intraday timeframes or show on daily
■ Show the distance in percent
■ Different color modes
■ Multiple customize options
OHLC Moving AverageThis indicator shows 4 moving averages of Open, High, Low and Close at the same time with an option to select SMA or EMA.
If you implement this indicator twice, you can make it look like the following chart.
One set of MA(red) is for current timeframe and another set(blue) is for higher timeframe, which is to identify potential support and resistance zones.
--------------------------
四本値(始値、高値、安値、終値)それぞれの移動平均線を同時に表示することのできるインジケーターです。
MAタイプはSMAかEMAを選択することができます。
このインジケーターを二つセットすると以下のように上位足の移動平均線とセットで表示することも可能です。
(赤がチャートの時間軸の4本値の移動平均線、青が上位足の4本値の移動平均線)
上位足の移動平均線をサポート・レジスタンスのゾーンとして捉える時などに活用できます。
Percent above or Below Moving Average Candle colourFilter:
If green candle is 'x' % above moving average than colour of candle is turn in blue colour.
If red candle is 'x' % below moving average than colour of candle is turn in orange colour.
3c Ultimate reversal strategy With scanner and backtester v2This might just be the ultimate strategy to identify reversals.
This strategy includes a scanner, a backtester and ability to connect it with you 3 commas bot(See adviced settings below)
Strategy:
-Signals reversal that happened in the last bar. This signal DO NOT repaint.
-Identifies potential reversal that might happen in the current bar but can also not happen depending upon the timeframe closing price.
-The strategy combines the Moving Average Trend Changer, SuperTrend (ATR price detection) and ADX.
-It reduces the number of false signals in sideways market conditons and give more reliable trade signals.
-The signal does not repaint and can be used in any market condition. It determines the trend with high precision.
Take profit:
-Set 2 separate TP conditions.
-You can take profit using percentage, ATR, or RR(Risk Reward), aswell as using Trailing Take Profit.
- Use sell signal from the strategy(I often find way better results using that)
Stoploss:
-You can use either ATR, Percentage or sell signal from the strategy
(For now to let the strategy itself decide when to TP or SL, just set these parameters really high.)
Scanner:
-Identifies coins that are currently in the sell zone
-Identifies coins that are currently in the buy zone
-Screener explores up to 20 pairs in current graph's time frame.
-Optimize the strategy to your liking and use the built in backtester to see if it is a viable strategy.
3commas settings:
-For now you can only use simple bots.
-Create LONG and SHORT bots for the coins you like to trade and set up alerts(You can send long and short signal from the same alert)
-Set TP to 50% the strategy will handle buys and exits based on your inputs.
-Set safety orders to 0. I might add DCA to the strategy if testing proves that to be a good solution.
-When you have made the bots input the bot ID and token adress in the settings of the strategy.
-When creating the alert use this webhook :https://3commas.io/trade_signal/trading_view
-In the message field you use {{strategy.order.alert_message}} as the placeholder.
In the future this signal might make it to the 3commas marketplace. You can then subscribe to that signal where I have cherrypicked coins based on thorough backtesting and optimization.
Yield Trend Indicator - The Quant ScienceYield Trend Indicator - The Quant Science™ is a quantitative indicator representing percentage yields and average percentage yields of three different assets.
Percentage yields are fundamental data for all quantitative analysts. This indicator was created to offer immediate calculations and represent them through an indicator consisting of lines and columns. The columns represent the percentage yield of the current timeframe, for each asset. The lines represent the average percentage yield, of the current timeframe, for each asset.
The user easily adds tickers from the user interface and the algorithm will automatically create the quantitative data of the chosen assets.
The blue refers to the main asset, the main set on the chart.
The yellow refers to the second asset, added by the user interface.
The red refers to the third asset, added by the user interface.
The timeframe is for all assets the one set to the chart, if you use a chart with timeframe D, all data is processed on this timeframe. You can use this indicator on all timeframes without any restrictions.
The user can change the type of formula for calculating the average yield easily via the user interface. This software includes the following formulas:
1. SMA (Simple Moving Average)
2. EMA (Exponential Moving Average)
3. WMA (Weighted Moving Average)
4. VWMA (Volume Weighted Moving Average)
The user can customize the indicator easily through the user interface, changing colours and many other parameters to represent the data on the chart.
Many Moving AveragesA smooth looking indicator created from a mix of ALMA and LRC curves. Includes alternative calculation for both which I came up with through trial and error so a variety of combinations work to varying degrees. Just something I was playing around with that looked pretty nice in the end.
Candle Strength IndicatorThe candle strength indicator depicts the average strength of the price action by evaluating bullish vs bearish candles.
The scale is relative to price fluctuation and the size of the candles for the particular ticker / market, so there are no significant levels.
A cross on the zero line would generally indicate a change in trend / sentiment.
This indicator may be useful as a filter for entries and use in confluence with other indicators.
CrossFire -=[ CryptDollar ]=-FEATURES
DO NOT USE WITHOUT READING ALL OF THIS!
Intended to be USED AGAINST Heikin Ashi Averaging Trend Candles for LEGITIMATE ‘AVERAGING’ Trend Recognition and analysis and it is a legitimate mathematical protocol using averages.
NOTE:
THIS IS NOT A simple “ENTER / EXIT" Type Indicator!!! BE CLEAR ABOUT THAT!!
THIS IS A AVERAGE TREND ANALYSIS and Support & Resistance type of indicator
ADDITIONAL NOTE:
This EMA CROSSING signal indicator DOES NOT REPRINT after the EMA CROSS CONFIRMATION, (Candle Close)!!
It may flicker during the confirmation process, which ALL indicator formulas do.
PROOF OF THIS is that the Yellow and Light Blue EMAs are IN FULL VIEW where the indications occur.
What is a Moving Average Crossover Confirmation??
It is when the selected Moving Averages fully cross each other upon candle close.
It is also important to note:
The LOWER the Timeframe, the more 'NOISE to signal' ratio you will get with this and ANY other indicator.
The HIGHER the Timeframe, the more 'SIGNAL to noise' ratio you will get with this and ANY other indicator.
To attain more reliable Trade Planning signals; simply look for signals on the higher TFs, and THEN use the lower, faster-pivoting TFs to limit into position.
You should only execute moves AFTER you 'APPROPRIATELY PLAN YOUR TRADE' and decide to 'TRADE YOUR PLAN!'
------------------------------------------
What is included with this EMA Crossing Indicator:
Dynamic SR (Horizontal lines of Support and Resistance (which is analyzed against recent average price action). An optional VWAP is included as well
ALL of these pop-up indication features can be turned Off or On in settings panel:
Also, it is very important to select the dots next to the indicator name on your chart; scroll the drop menu go to "Visibility" > "Bring to Front." so you can see the 2 and 6 EMAs on top of the Heikin Ashi AVERAGING candles.
AGAIN, this indicator is based off a known and well established Heikin Ashi EMA Crossing Swing Trading Strategy and is optimized with the use of Heikin Ashi AVERAGING Candles.
This contains all of the EMAs related a 2-6-13 Heikin Ashi AVERAGE Trading Strategy. The original strategy for traditional markets used the 17 EMA. But in crypto, I've found that the 13 EMA at least 'seems' to be more relative and consequential as a trend change 'strength' indication.
- Includes alerts with "CROSS" indications for the 2 & 6 EMA crossover points.*
- ALWAYS check for Trend & Price Support or Resistance (SR) ALONG YOUR TRADE PATH, BEFORE planning your Trade.
- DO NOT simply enter trades based on the Cross signals, as these are mere indications of directional change, and make sure you have at least a single candle close confirmation before taking it seriously.
- Along with that, there are certain sets of SMAs (21, 50, & 200) that are universally used by famed rock star traders, for both scalping and swing trades, which can be enabled and disabled in the Style Panel Settings.
- The optional ARROWS are additional indications for when the 13 EMA , 21 SMA , 50 SMA , and 200 SMA are crossed up or down.
Each EMA and SMA has its own alert that you can individually set, along with the primary "CROSS" indication alerts.
* Special note regarding the visual indications of the 13 EMA and the 21 SMA
If an arrow appears with "13-21" above or below it, that is because these moving averages are so close that
for visual notification purposes there was a visual layering issue whenever both of these MAs triggered on same candle.
This compensation for the visual indication has no effect on the individual MA's Alert settings.
- ALL EMAs and SMAs are customizable if the defaults are not to your liking, BUT understand that any EMA and SMA assignment changes will divert away from the strategy for which this indicator was designed.
If you change from the default moving average assignments in the input settings, your changes will unfortunately not be reflected in the "labeling" on the chart or in alerts)!!
- All optional are in the settings panel, and all setting listings are easily understandable as to what they are
- I was finally able to edit the script to where the labels are not obnoxious on the chart!!!
- As with all my indicators so far; I like to include the optional light-white Daily VWAP plot line to save adding an extra indicator if you like to follow the VWAP , as I do.
- If your chart seems noisy with everything turned on, you can always disable any of these features that you find yourself not using as a visual reference and then "Save as default"
Best Applied to Higher Timeframes
With ALL Default “Noisy” Visual Indications Enabled:
With Only the Visible Primary Cross Indications Enabled:
Dragon Multi Moving Averages With labelThis script is for a many?! moving average strategy where the user can select from different types of moving averages, price sources, lookback periods and resolutions.
Features:
- 6 Moving Averages with variable MA types, periods, price sources, resolutions and the ability to disable each individually. Tow of moving averages are disable by default. you can enabel it
- Crossovers are plotted on the chart with detailed information regarding the crossover (Ex: 50 EMA crossed over 100 EMA ). there is only between 1-2, 2-3, 3-4, 4-5, 5-6 moving average cross label.
- Ribbons added and on by default. Optional setting to disable the ribbons. 5 ribbons between MA3 and MA4 and another 5 between MA4 and MA5 and another 5 between MA5 and MA6.