ADW - MomentumADW - Momentum is a trading indicator based on the Relative Momentum Index (RMI) and Exponential Moving Averages (EMAs). This indicator plots the RMI along with its EMAs and highlights regions where RMI crosses its slow EMA. Additionally, it provides alerts when the momentum flips bullish or bearish.
Key Features:
The RMI helps to identify momentum in the market.
Three EMAs (Fast, Standard, and Slow) were calculated on the RMI. These can be utilized to analyze the momentum trend over different periods.
Highlighted regions and colour coding to indicate when RMI crosses its Slow EMA, signalling potential momentum shifts.
Customizable parameters: Users can specify the lengths of the RMI and EMAs, boundaries for RMI, and colours for various components of the plot.
Alerts: The script can alert users when the momentum has flipped bullish or bearish.
The script is organized into several sections:
Inputs: The user can customize several parameters including the RMI averaging length, momentum lookback, RMI boundaries, and the EMA lengths. In addition, users can also specify the colours for the RMI line, Slow EMA line, and the fill colour.
RMI Calculation: The script calculates the RMI based on the user-provided length and momentum lookback. This is done by first calculating two EMAs - one for the positive differences between closing prices (emaInc), and one for the negative differences (emaDec). Then, the RMI is computed using these EMAs.
Plotting: The script plots the RMI line, Slow EMA line, and two horizontal lines indicating the RMI boundaries. In addition, it also fills the region between the RMI and Slow EMA lines.
Conditions: The script computes the conditions for bullish and bearish momentum flips. These are defined as when the RMI crosses above or below the Slow EMA respectively.
Alerts: Finally, the script sets up two alert conditions based on the bullish and bearish conditions. These alert the user when the momentum has flipped bullish or bearish, with a message that includes the current RMI value.
Search in scripts for "momentum"
Momentum Composite Indicator@CRYPTOSLIFE
This script creates a Momentum Composite Indicator (MCI) that combines four different momentum indicators: RSI, MACD, Stochastic Oscillator, and Rate of Change (ROC). Each of these indicators is calculated, normalized, and then combined with equal weights (25% each) to create the composite indicator. The script also includes a color change based on the change in the composite indicator's value.
Here's a brief explanation of the indicator:
Parameters: The script takes one input parameter, 'length,' which is used as the length for RSI, Stochastic Oscillator, and ROC calculations.
RSI: The Relative Strength Index (RSI) is calculated using the 'length' input parameter. The RSI is then normalized to range between 0 and 1.
MACD: The Moving Average Convergence Divergence (MACD) is calculated using the default lengths of 12, 26, and 9. The histogram is then computed as the difference between the MACD line and the signal line. The MACD histogram is normalized to range between 0 and 1.
Stochastic Oscillator: The Stochastic Oscillator is calculated using the 'length' input parameter, taking the lowest low and highest high over the specified period. The oscillator is then normalized to range between 0 and 1.
Rate of Change (ROC): The Rate of Change (ROC) is calculated using the 'length' input parameter. The ROC is then normalized to range between 0 and 1.
Composite Indicator: The normalized values of RSI, MACD, Stochastic Oscillator, and ROC are combined with equal weights to create the composite indicator.
Color Change: The line color changes based on the change in the composite indicator's value. If the value increases, the line color is green; if it decreases, the line color is red.
Plotting: The composite indicator is plotted on the chart with a linewidth of 5.
This Momentum Composite Indicator can help traders assess the overall momentum in the price movement of a financial instrument by combining the information from four popular momentum indicators.
GKD-C Momentum Breakout Bands [Loxx]Giga Kaleidoscope Momentum Breakout Bands is a Confirmation module included in Loxx's "Giga Kaleidoscope Modularized Trading System".
█ Giga Kaleidoscope Modularized Trading System
What is Loxx's "Giga Kaleidoscope Modularized Trading System"?
The Giga Kaleidoscope Modularized Trading System is a trading system built on the philosophy of the NNFX (No Nonsense Forex) algorithmic trading.
What is an NNFX algorithmic trading strategy?
The NNFX algorithm is built on the principles of trend, momentum, and volatility. There are six core components in the NNFX trading algorithm:
1. Volatility - price volatility; e.g., Average True Range, True Range Double, Close-to-Close, etc.
2. Baseline - a moving average to identify price trend
3. Confirmation 1 - a technical indicator used to identify trends
4. Confirmation 2 - a technical indicator used to identify trends
5. Continuation - a technical indicator used to identify trends
6. Volatility/Volume - a technical indicator used to identify volatility/volume breakouts/breakdown
7. Exit - a technical indicator used to determine when a trend is exhausted
How does Loxx's GKD (Giga Kaleidoscope Modularized Trading System) implement the NNFX algorithm outlined above?
Loxx's GKD v1.0 system has five types of modules (indicators/strategies). These modules are:
1. GKD-BT - Backtesting module (Volatility, Number 1 in the NNFX algorithm)
2. GKD-B - Baseline module (Baseline and Volatility/Volume, Numbers 1 and 2 in the NNFX algorithm)
3. GKD-C - Confirmation 1/2 and Continuation module (Confirmation 1/2 and Continuation, Numbers 3, 4, and 5 in the NNFX algorithm)
4. GKD-V - Volatility/Volume module (Confirmation 1/2, Number 6 in the NNFX algorithm)
5. GKD-E - Exit module (Exit, Number 7 in the NNFX algorithm)
(additional module types will added in future releases)
Each module interacts with every module by passing data between modules. Data is passed between each module as described below:
GKD-B => GKD-V => GKD-C(1) => GKD-C(2) => GKD-C(Continuation) => GKD-E => GKD-BT
That is, the Baseline indicator passes its data to Volatility/Volume. The Volatility/Volume indicator passes its values to the Confirmation 1 indicator. The Confirmation 1 indicator passes its values to the Confirmation 2 indicator. The Confirmation 2 indicator passes its values to the Continuation indicator. The Continuation indicator passes its values to the Exit indicator, and finally, the Exit indicator passes its values to the Backtest strategy.
This chaining of indicators requires that each module conform to Loxx's GKD protocol, therefore allowing for the testing of every possible combination of technical indicators that make up the six components of the NNFX algorithm.
What does the application of the GKD trading system look like?
Example trading system:
Backtest: Strategy with 1-3 take profits, trailing stop loss, multiple types of PnL volatility, and 2 backtesting styles
Baseline: Hull Moving Average as shown on the chart above
Volatility/Volume: Volatility Ratio as shown on the chart above
Confirmation 1: Momentum Breakout Bands as shown on the chart above
Confirmation 2: Williams Percent Range
Continuation: Fisher Transform
Exit: Rex Oscillator
Each GKD indicator is denoted with a module identifier of either: GKD-BT, GKD-B, GKD-C, GKD-V, or GKD-E. This allows traders to understand to which module each indicator belongs and where each indicator fits into the GKD protocol chain.
Giga Kaleidoscope Modularized Trading System Signals (based on the NNFX algorithm)
Standard Entry
1. GKD-C Confirmation 1 Signal
2. GKD-B Baseline agrees
3. Price is within a range of 0.2x Volatility and 1.0x Volatility of the Goldie Locks Mean
4. GKD-C Confirmation 2 agrees
5. GKD-V Volatility/Volume agrees
Baseline Entry
1. GKD-B Baseline signal
2. GKD-C Confirmation 1 agrees
3. Price is within a range of 0.2x Volatility and 1.0x Volatility of the Goldie Locks Mean
4. GKD-C Confirmation 2 agrees
5. GKD-V Volatility/Volume agrees
6. GKD-C Confirmation 1 signal was less than 7 candles prior
Continuation Entry
1. Standard Entry, Baseline Entry, or Pullback; entry triggered previously
2. GKD-B Baseline hasn't crossed since entry signal trigger
3. GKD-C Confirmation Continuation Indicator signals
4. GKD-C Confirmation 1 agrees
5. GKD-B Baseline agrees
6. GKD-C Confirmation 2 agrees
1-Candle Rule Standard Entry
1. GKD-C Confirmation 1 signal
2. GKD-B Baseline agrees
3. Price is within a range of 0.2x Volatility and 1.0x Volatility of the Goldie Locks Mean
Next Candle:
1. Price retraced (Long: close < close or Short: close > close )
2. GKD-B Baseline agrees
3. GKD-C Confirmation 1 agrees
4. GKD-C Confirmation 2 agrees
5. GKD-V Volatility/Volume agrees
1-Candle Rule Baseline Entry
1. GKD-B Baseline signal
2. GKD-C Confirmation 1 agrees
3. Price is within a range of 0.2x Volatility and 1.0x Volatility of the Goldie Locks Mean
4. GKD-C Confirmation 1 signal was less than 7 candles prior
Next Candle:
1. Price retraced (Long: close < close or Short: close > close )
2. GKD-B Baseline agrees
3. GKD-C Confirmation 1 agrees
4. GKD-C Confirmation 2 agrees
5. GKD-V Volatility/Volume Agrees
PullBack Entry
1. GKD-B Baseline signal
2. GKD-C Confirmation 1 agrees
3. Price is beyond 1.0x Volatility of Baseline
Next Candle:
1. Price is within a range of 0.2x Volatility and 1.0x Volatility of the Goldie Locks Mean
3. GKD-C Confirmation 1 agrees
4. GKD-C Confirmation 2 agrees
5. GKD-V Volatility/Volume Agrees
█ Momentum Breakout Bands
What is Momentum Breakout Bands?
Momentum Breakout Bands is a momentum oscillator with Bollinger Bands to filter noise by standard deviation. This is used for breakout trading and can be used on lower timeframes.
Requirements
Inputs
Confirmation 1 and Solo Confirmation: GKD-V Volatility / Volume indicator
Confirmation 2: GKD-C Confirmation indicator
Outputs
Confirmation 2 and Solo Confirmation: GKD-E Exit indicator
Confirmation 1: GKD-C Confirmation indicator
Continuation: GKD-E Exit indicator
Additional features will be added in future releases.
Munich's Momentum Wave V2MUNICH'S MOMENTUM WAVE VERSION 2 IS LIVE!!!
There are a few big things to note with this one.
I decided to upload this as an entirely new script due to the number of changes differing from the first version, but as the last one, this will still work on ANY TIMEFRAME, ANY ASSET CLASS, ANY PRICE! .
This momentum wave indicator now will give you data for when trend could turn, and two momentum indicators to help you decide when to take an entry.
First off,
*I have added an alma ma (alma) that will track momentum alongside price action and further lead the indicator consisting of the Munich waves.
* The background feature will track the price using a method derived from the Bollinger bands, after calculations, it will color the background based on the average of the momentum's ema's, the alma ma, and also the alma in comparison to the alma's value pre offset ( the offset is 3, following the basis).
*There are now 5 basis values given from the increase in ema samples.
If anyone has any questions feel free to pm me or comment below. Thank you guys for the support! :)
INDEX:BTCUSD TVC:NDQ AMEX:SPY BITSTAMP:ETHUSD BINANCE:BTCUSDT FX:USDJPY NASDAQ:AAPL
Synthetic EMA Momentum w/ DSL [Loxx]Synthetic EMA Momentum w/ DSL is a momentum indicator that is calculated with 5 different EMAs of increasing period to derive a final momentum value. This helps reduce noise and improve signal quality. Discontinued signal lines are uses to calculate signal values.
What are DSL Discontinued Signal Line?
A lot of indicators are using signal lines in order to determine the trend (or some desired state of the indicator) easier. The idea of the signal line is easy : comparing the value to it's smoothed (slightly lagging) state, the idea of current momentum/state is made.
Discontinued signal line is inheriting that simple signal line idea and it is extending it : instead of having one signal line, more lines depending on the current value of the indicator.
"Signal" line is calculated the following way :
When a certain level is crossed into the desired direction, the EMA of that value is calculated for the desired signal line
When that level is crossed into the opposite direction, the previous "signal" line value is simply "inherited" and it becomes a kind of a level
This way it becomes a combination of signal lines and levels that are trying to combine both the good from both methods.
In simple terms, DSL uses the concept of a signal line and betters it by inheriting the previous signal line's value & makes it a level.
Included:
Loxx's Expanded Source Types
Alerts
Signals
Bar coloring
Related indicators
Smoother Momentum MACD w/ DSL
T3 Velocity
Trend Indicator B-V2 (Momentum measuring)"Trend Indicator A-V2" and "Trend Indicator B-V2" are updated and improved versions of my initial trend indicators. Totally rethinking the code, adding highs and lows in the calculations, including some more customisation through colour schemes.
In practice, this indicator uses EMAs and Heikin Ashi to provide an overall idea of the trend.
The "Trend Indicator A-V2" is an overlay showing “Smoothed Heikin Ashi” .
The "Trend Indicator B-V2" uses the same values in a different way to measure the momentum of the trend and identify potential trend rejections.
Please, take into account that it is a lagging indicator.
Fast and Slow Trend-Line Momentum [Loxx]Fast and Slow Trend-Line Momentum is a momentum indicator using FATL, SATL, RFTL, & RSTL Digital Filters
What is FTLM-STLM?
Fast Trend Line Momentum (FTLM) and Slow Trend Line Momentum (SLTM) indicators show the rate of price change, FATL and SATL are calculated the similar way as Momentum indicator.
FTLM(bar) = FATL(bar) – RFTL(bar)
STLM(bar) = SATL(bar) – RSTL(bar)
The main difference FTLM from the classic Momentum indicator is the following: it source prices processed by digital filters instead of close prices itself. As a result, FTLM looks smoothed and regular, in contrast with classic Momentum technical indicators.
Included:
-Bar coloring
On Balance Volume MomentumA combination of "On Balance Volume (OBV)" and "Volume Oscillator".
"OBV Momentum" is a trend momentum indicator, that can be used to identify strong trends and also trend changes based on volume.
High positive values indicate strong volume on the buy side, high negative values indicate strong volume on the sell side.
An increasing OBV momentum indicates a strengthening buy trend or a weakening sell trend,
decreasing OBV Momentum indicates a strengthening sell trend or weakening buy trend.
OBV Momentum is calculated by comparing a short vs. a long moving average and plotting the difference in volume.
OBV Momentum metric is absolute volume.
RedK Momentum Bars (RedK Mo_Bars)Momentum Bars (Mo_Bars) offers a different way to visualize (relative) momentum - and uses some simple TA concepts to provide a different perspective into how we read momentum changes and incorporate that in our trading.
The idea here (and the script itself) is really super simple, and is (very loosely) inspired by Elder's Impulse System (EIS) - then evolved to leverage some other concepts, and to become less cluttering and "easier to read".
The construction of the Mo_Bars
---------------------------------------------
The base concept utilizes 3 moving average lines :
the first line is a relatively fast MA with a short length - acts as the main price tracking line
the second line is slightly slower than the main line - 2 to 3 bars longer length - and will by default use the open value as source - this works better to identify when the closing price starts to move faster than the open (as in, bars more frequently close higher than they open) - this line acts as the signal line - there's an added setting for an additional delay that utilizes regular WMA smoothing - the delay acts to magnify the relative displacement between the 2 MAs
for both these MA's, i choose to use the RSS MA (Lazy Line) - other MA types can be used, but the reason i used that MA type specifically is that it moves "gracefully" - and 2 Lazy Lines moving together minimizes whipsaws from small price swings - i tested with other MA types and found that the RSS has an advantage there.
the third line is a much slower MA (length 5 to 6 x the fast line) - and acts as a filter or a baseline. When we're above that line, we should favor long positions - we're in bull territory. When we're below that line we favor short positions, and we're in bear territory. Adjust this line as it suits your trading style and time frame.
(I choose to use WMA as the MA type for the filter line .. and there's a good reason for that - which i'll skip for now - but in future versions, we can add other selectable MA types. )
Using Mo_Bars
----------------------------
at a very broad level, we can use Mo_Bars similar to how we use a MACD - both are centered and unrestricted oscillators - note the difference that Mo_Bars is based on 3 MA's rather than 2.
the Mo_Bar bar length reflects the distance between the main MA and the signal MA - plotted relative to the baseline (filter line) - that means that the length of the bar represents the relative momentum between the 2 MA's - The Mo_Bars are then colored in a way that reflects increase or decrease in the value of that momentum (the visual here may have been inspired by another indicator recently published by one of our esteemed wizards - it worked perfectly - so due credits here :)
-- in simple terms, if the main MA is below the signal MA, the bar is red - and when the main MA is above the signal MA, the bar is green - a white bar usually shows up when there's a detected change of relative momentum direction (note that this is not the same as the trend direction - and that's what helps show and exploit convergence and divergence - similar to a MACD)
* in the chart above, i noted few examples of how visualizing relative momentum in this way exposes areas of chop (Mo_Bars above zero but are in red or moving down, or when Mo_Bars are below zero and green or moving up) - convergence / divergence with price - and how this can act to expose the possibility of potential changes in price action or trend.
* there's so much more to play around with this setup - and maybe if there's enough interest there can be future dedicated posts on how utilize or even to evolve it further - there's a lot of potential here, to add more filters (maybe volume based), alerts, signals...etc - so let's see the interest :)
Here's the detailed (top chart) setup that Mo_Bars is based on -- The settings for the MA's on the price charts have been matched / sync'ed with the Mo_Bars settings on the lower panel to demonstrate how the script works and how it translate the MA action on the price chart to what we see below.
As always, please play around with the indicator to get used to how it works - use it in tandem with other indicators to get proper confirmations and adjust settings to suit your own trading style, time frame, and instruments
Feedback and thoughts are always welcome --- good luck!
Closing MomentumClosing momentum calculates the moving averages of closes and highs vs previous highs plus those of closes and lows vs previous lows to create momentum moving averages. Closes above/below previous highs/lows are weighted more strongly than new high or low wicks above/below a previous highs or lows.
If momentum is up, the background will shade green; brighter is stronger. If momentum is down, likewise with red.
Shifts in momentum are indicated by symbols: triangles indicate a minor shifts, arrows moderate, big arrows major. Likewise, the shade of the symbols indicates strength (darker is stronger).
Using the indicator: long continuous stretches of the same color indicate trend - deeper is stronger. If the shade is lightening or clears and/or if symbols of the other color start appearing, the trend is weakening.
Squeeze Momentum [Plus]The "Momentum" in this indicator is smoothed out using linear regression. The Momentum is what is displayed on the indicator as a histogram, its purpose is obvious (to show momentum).
What is a Squeeze? A squeeze occurs when Bollinger Bands tighten up enough to slip inside of Keltner Channels .
This is interpreted as price is compressing and building up energy before releasing it and making a big move.
Traditionally, John Carter's version uses 20 period SMAs as the basis lines on both the BB and the KC.
In this version, I've given the freedom to change this and try out different types of moving averages.
The original squeeze indicator had only one Squeeze setting, though this new one has three.
The gray dot Squeeze, call it a "low squeeze" or an "early squeeze" - this is the easiest Squeeze to form based on its settings.
The orange dot Squeeze is the original from the first Squeeze indicator.
And finally, the yellow dot squeeze, call it a "high squeeze" or "power squeeze" - is the most difficult to form and suggests price is under extreme levels of compression.
Now to explain the parameters:
Squeeze Input - This is just the source for the Squeeze to use, default value is closing price.
Length - This is the length of time used to calculate the Bollinger Bands and Keltner Channels .
Bollinger Bands Calculation Type - Selects the type of moving average used to create the Bollinger Bands .
Keltner Channel Calculation Type - Selects the type of moving average used to create the Keltner Channel.
Color Format - you to choose one of 5 different color schemes.
Draw Divergence - Self explanatory here, this will auto-draw divergence on the indicator.
Gray Background for Dark Mode - to make them more visually appealing.
Added ADX (Average Directional Index) that measure a trend’s strength. The higher the ADX value, the stronger the trend. The ADX line is white when it has a positive slope, otherwise it is gray. When the ADX has a very large dispersion with respect to the momentum histogram, increase the scale number.
Added "H (Hull Moving Average) Signal". Hull is a extremely responsive and smooth moving average created by Alan Hull in 2005. Have option to chose between 3 Hull variations.
Added "Williams Vix Fix" signal. The Vix is one of the most reliable indicators in history for finding market bottoms. The Williams Vix Fix is simply a code from Larry Williams creating almost identical results for creating the same ability the Vix has to all assets.
The VIX has always been much better at signaling bottoms than tops. Simple reason is when market falls retail traders panic and increase volatility, and professionals come in and capitalize on the situation. At market tops there is no one panicking... just liquidity drying up.
The FE green triangles are "Filtered Entries"
The AE green triangles are "Aggressive Filtered Entries"
WaveTrend Momentum (Expo)WaveTrend Momentum (Expo) is a fast-moving, sensitive oscillator with a momentum layer that reacts quickly to price changes. The indicator displays how strong the current price move is and where momentum starts and stalls. The indicator has inbuilt suggested exit points.
The height of the histogram represents how strong the current price move is.
The momentum is visualized with bold circles- and darker histogram colors.
The suggested exit point is visualized with a circle.
DIVERGENCES
All types of momentum oscillator indicators produce divergences and so does WaveTrend Momentum (Expo) . Divergences occur when the oscillator deviates from the trending price action. Bullish divergence is then when the trending price makes a lower low but the oscillator makes a higher low. Bearish divergence is then when the trending price makes a higher high but the oscillator makes a lower high.
The indicator can be used standalone or as a part of your current trading strategy.
HOW TO USE
1. Use the indicator to identify potential turning points.
2. Use the indicator to identify where momentum starts and stalls.
3. Use the indicator to identify the direction of the trend.
4. Use the indicator to find divergences.
5. Use the indicator to identify potential exits.
INDICATOR IN ACTION
Weekly chart
Works on any market
I hope you find this indicator useful , and please comment or contact me if you like the script or have any questions/suggestions for future improvements. Thanks!
I will continually work on this indicator, so please share your experience and feedback as it will enable me to make even better improvements. Thanks to everyone that has already contacted me regarding my scripts. Your feedback is valuable for future developments!
ACCESS THE INDICATOR
• Contact me on TradingView or use the links below
-----------------
Disclaimer
Copyright by Zeiierman.
The information contained in my scripts/indicators/ideas does not constitute financial advice or a solicitation to buy or sell any securities of any type. I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from the use of or reliance on such information.
All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, or individual’s trading does not guarantee future results or returns. Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.
My scripts/indicators/ideas are only for educational purposes!
[AKM] MomentumThis indicator will indicate the movement of momentum, whether sell or buy zone.
Value above 0 indicate momentum is in Buy zone.
Value below 0 indicate momentum is in Sell zone.
Value between Low Momentum Upper and Low Momentum Bottom indicate momentum is low.
The green color indicates that the buy momentum exceeds the value set at Low Momentum Upper.
The red color indicates that the sell momentum exceeds the value set at Low Momentum Bottom.
The yellow color indicates the value of buy or sell is between Low Momentum Upper and Low Momentum Bottom.
Send us private message on TV to gain access to the indicator.
pip hunter momentum extremeThis indicator gives a score to the momentum of a market in a percentage term based on a combination of measurements, this can be used on any time frame, on any instrument to identify if the current trend has enough momentum to see it carry on further this will help eliminate fomo and also help you to identify reversals in the chart at the right time so you can eliminate exposure to a market about to reverse, there is 4 levels to this indicator you have a strong bullish trend denote by green bars the weaker bullish trend denoted by the olive coloured bars, a weak bearish trend which is given in maroon bars and a strong bearish trend which gives red bars you will also note the 2 horizontal boundary lines these are not overbought and oversold bounds like in most indicators but actually indicate whether there is sufficient momentum in the market as the idea is that in strong momentum you want it to be above or below this line to give you confidence there is momentum available to ride.
There are also 7 coloured bars 3 top and 4 on the bottom the 6 green and red ones denote the direction of a heiken ashi candle its attached to reading from top to bottom defaults are 1hr 2hr 4hr 8hr 12hr daily if they are green then the candle is bullish if red the candle is bearish .
The bottom bar is a final momentum confluence when it is white we have a bearish bias and when it is purple we have a bullish bias
if you would like access to this script then please pm me
Volatility Based Momentum (VBM)The Volatility Based Momentum (VBM) indicator is a variation on the rate-of-change (ROC) indicator. Instead of expressing momentum in a percentage gain or loss, VBM normalizes momentum using the historical volatility of the underlying security.
The VBM indicator offers numerous benefits to traders who orient their trading around volatility. For these traders, VBM expresses momentum in a normalized, universally applicable ‘multiples of volatility’ (MoV) unit. Given the universal applicability of MoV, VBM is especially suited to traders whose trading incorporates numerous timeframes, different types of securities (e.g., stocks, Forex pairs), or the frequent comparison of momentum between multiple securities.
The calculation for a volatility based momentum (VBM) indicator is very similar to ROC, but divides by the security’s historical volatility instead. The average true range indicator (ATR) is used to compute historical volatility.
VBM(n,v) = (Close - Close n periods ago) / ATR(v periods)
For example, on a daily chart, VBM(22,65) calculates how many MoV price has increased or decreased over the last 22 trading days (approximately one calendar month). The second parameter is the number of periods to use with the ATR indicator to normalize the momentum in terms of volatility.
For more details, there is an article further describing VBM and its applicability versus ROC.
MOMENTUM + strong vs weak momentumThis is a unique custom indicator that shows the real momentum of a currency
With this indicator you can easily trade the strong vs the weak momentum
Each line is a currency pair
aqua= eur
yellow=dollar
purple= pound
green=australian dollar
white=yen
orange=canadian dollar
if the square has one of these colors it means moment UP for this currency
If the square is red it means momentum down for the related currency
The trading signal is at the change of color from previous square against one other currency with opposite color
You can access this indicator for a trial period, just ask for access in comments
Trading is a risky business, i'm not responsible for any profit or loss
SuperTrend Momentum OscillatorOverview
The SuperTrend Momentum Oscillator (SMO) is a powerful technical analysis tool designed to identify trend direction and strength in financial markets. It combines short-term and long-term oscillator calculations to provide traders with a comprehensive view of market conditions through an intuitive candle-based visualization system.
Key Features
Dual-period oscillator system (short-term and long-term)
Candle-based visualization showing trend direction and alignment
Color-coded trend direction based on the main (slower) trend line
Candle size reflecting alignment between fast and slow components
High-confidence "Super" signals (green diamonds for buys, purple diamonds for sells)
Market liquidity insights through oscillator readings
Understanding the Candle Visualization
Main Trend vs. Fast Money
The SMO uses two key components that work together:
Main Trend Line (Slower): The longer-period oscillator that acts as the primary trend indicator
Dictates the overall color of the candles (green for uptrend, red for downtrend)
Represents the dominant market direction
Fast Line (Quicker): The shorter-period oscillator that reacts more quickly to price changes
Helps determine the size of candles through its alignment with the main trend
Represents "fast money" or shorter-term price reactions
Candle Components and Their Meaning
1. Candle Color
The color of each candle is determined by the direction of the main trend line:
Green Candles: Main trend line is rising (bullish)
Indicates an overall uptrend regardless of short-term fluctuations
Remains green even when the fast line temporarily moves against the trend
Red Candles: Main trend line is falling (bearish)
Indicates an overall downtrend regardless of short-term fluctuations
Remains red even when the fast line temporarily moves against the trend
2. Candle Body Size
The body size of each candle represents the alignment between fast and main trend lines:
Large Bodies: Both fast and main trend lines are moving in the same direction
Trading Action: Strong confirmation of the trend direction
Confidence Level: High confidence signals
Small Bodies: Fast line is moving against the main trend line
Trading Action: Exercise caution; potential for temporary pullback or consolidation
Confidence Level: Lower confidence in immediate continuation
3. Wick Length
Wicks (shadows) provide additional information about price rejection and volatility:
Long Wicks: Indicate price rejection and potential volatility
Trading Action: Be cautious of trend continuation when long wicks appear
Confidence Level: Reduced confidence in immediate trend continuation
Short Wicks: Indicate strong directional control with minimal rejection
Trading Action: More confidence in trend continuation
Confidence Level: Higher confidence in the current trend direction
Candle Patterns Over Time
The progression of candles provides valuable trend information:
Large Green Candles: Main trend is up and fast line confirms (strong bullish)
Trading Action: Consider entering or adding to long positions
Confidence Level: High confidence in uptrend
Small Green Candles: Main trend is up but fast line is moving down (caution in uptrend)
Trading Action: Hold existing long positions but wait before adding
Confidence Level: Moderate confidence in uptrend, possible short-term pullback
Large Red Candles: Main trend is down and fast line confirms (strong bearish)
Trading Action: Consider entering or adding to short positions
Confidence Level: High confidence in downtrend
Small Red Candles: Main trend is down but fast line is moving up (caution in downtrend)
Trading Action: Hold existing short positions but wait before adding
Confidence Level: Moderate confidence in downtrend, possible short-term bounce
Super Signals - High Confidence Trading Opportunities
The SMO focuses exclusively on high-confidence "Super" signals:
Green Diamond Super Buy Signals
Meaning: Both short-term and long-term oscillators are generating buy signals simultaneously
Visual Indicator: Green diamond markers at the bottom of the indicator (0 level)
Trading Action: Strong entry signal for long positions
Confidence Level: High confidence signal, especially when accompanied by large green candles
Purple Diamond Super Sell Signals
Meaning: Both short-term and long-term oscillators are generating sell signals simultaneously
Visual Indicator: Purple diamond markers at the top of the indicator (100 level)
Trading Action: Strong entry signal for short positions or exit signal for long positions
Confidence Level: High confidence signal, especially when accompanied by large red candles
Market Liquidity Concept
The SMO provides a unique perspective on market conditions that goes beyond traditional oscillator interpretations:
Low Oscillator Readings (Below 20)
When the oscillator shows low readings (below 20), this indicates:
Traditional interpretation: Market is oversold, potential for upward reversal
Liquidity interpretation: Insufficient money in the market
This suggests thin trading conditions where large orders may have outsized impact
Price movements may be more erratic and less predictable
Breakouts may lack follow-through due to insufficient participation
High Oscillator Readings (Above 80)
When the oscillator shows high readings (above 80), this indicates:
Traditional interpretation: Market is overbought, potential for downward reversal
Liquidity interpretation: Abundant money in the market
This suggests deep trading conditions with high participation
Price movements tend to be more orderly and trend-based
Breakouts may have stronger follow-through due to high participation
Trading Strategies with SMO
Strategy 1: Main Trend with Alignment Confirmation
This strategy uses the main trend direction with alignment confirmation:
Entry Criteria:
Main trend direction is established (green or red candles)
Fast line aligns with main trend (large candles)
Super signal confirms (green or purple diamond)
Exit Criteria:
For long positions: When candles turn red or Super Sell signal appears
For short positions: When candles turn green or Super Buy signal appears
Stop Loss Placement:
For long positions: Below recent swing low
For short positions: Above recent swing high
Strategy 2: Counter-Trend Opportunity Detection
This strategy identifies potential counter-trend opportunities:
Entry Criteria:
Small candles appear (indicating disagreement between fast and main trend lines)
Oscillator reaches extreme levels (above 80 or below 20)
Wait for candle color change before entering
Position Sizing:
Use smaller position sizes for counter-trend trades
Increase size only when main trend confirms the new direction
Exit Criteria:
Take profit at the first sign of alignment in the opposite direction
Use tighter stops than with trend-following trades
Strategy 3: Market Liquidity Strategy
This strategy incorporates the market liquidity concept:
For Low Liquidity Conditions (Readings below 20):
Wait for Super Buy signals (green diamond)
Use smaller position sizes
Be prepared for potentially erratic price movements
Look for signs of increasing liquidity (expanding candle bodies) before adding to positions
For High Liquidity Conditions (Readings above 80):
Consider holding positions longer despite "overbought" readings
Use trailing stops to capture extended moves
Be aware that trends may persist longer than expected
Practical Trading Scenarios
Scenario 1: Strong Trend Confirmation
Candle Pattern: Series of large green candles (main trend up, fast line confirms)
Signal: Green diamond Super Buy marker at the bottom (0 level)
Background: Intensifying green gradient
Action: Enter long position with confidence
Stop Loss: Below recent swing low
Take Profit: When candles become small or turn red
Scenario 2: Trend Weakening Detection
Candle Pattern: Green candles becoming smaller (main trend still up, but fast line diverging)
Signal: No new signals
Background: Fading green gradient
Action: Tighten stops on long positions, prepare for potential reversal
Reasoning: Fast money is starting to move against the main trend
Scenario 3: Trend Reversal Identification
Candle Pattern: Transition from small green candles to red candles (main trend changing)
Signal: Appearance of purple diamond Super Sell marker at the top (100 level)
Background: Changing from green to red gradient
Action: Exit long positions and potentially enter short positions
Timing: Most effective when reversal occurs near overbought (80) level
Ichimoku Cloud Momentum & Trend Indicator «NoaTrader»If you like Ichimoku cloud and use it in your analysis, or you are new to it and sometimes gets tricky to figure out all the details, this indicator tries to simplify that and visualize the change of trend and momentum relative to the past based on ichimoku.
The RED/GREEN columns are showing momentum strength while the black diamond line suggests the trend change. The conditions are simple enough to check them out on the script.
As you can see highlighted cyan circles on the chart as major important signals on the chart of Bitcoin daily timeframe.
This script tries to be complementary to the ichimoku cloud itself and cannot replace the levels represented by the cloud on chart.
Percent Volatility MomentumThis pine script calculates percent volatility momentum, negative percent volatility and positive percent volatility. The blue line is the overall momentum of the current percent volatility trend. The red line only includes negative movements in the percent volatility of the source. The green line includes only positive movements of the percent volatility of the source. The script also includes an angle and a normalized angle setting that allows one to determine the angle of the source curve. Note, the angle was transformed from -90 to 90 to 0 to 100. Such that an angle of -90 is transformed to 0. An angle of 0 is transformed to 50 and an angle of 90 is transformed to 100. This is the first draft of this script and my first pine script published. Any feedback is welcome. I borrowed code from TradingView's Linear Regression Channel and Relative Strength Index pine scripts.
MTM - Momentum IndicatorMTM - Momentum
Description
The Momentum indicator is a speed of movement indicator that is designed to identify the speed (or strength) of price movement. This indicator compares the current close price to the close price N bars ago and also displays a moving average of this difference.
Category
Momentum Indicators
Parameters
N ( Default: 6 Min: 1 Max: 100 )
N1 ( Default: 6 Min: 1 Max: 100 )
Chart Script
MTM : CLOSE-REF(CLOSE,N);
MTMMA : MA(MTM,N1)
www.edgerater.com
Dap's Oscillator- Short Term Momentum and Trend. BINANCE:BTCUSDT BYBIT:BTCUSDT BYBIT:ETHUSDT BINANCE:ETHUSDT
DAP's OSCILLATOR:
WHAT IS IT?
This Oscillator was created to inspire confidence in the short-term trend of traders. This will work very well with a volatility metric (I recommend BBWP by @The_Caretaker)
WHAT IS IT MADE OF?
1. Consists of a series of equations (mainly the difference between simple to exponential moving averages) and Standard deviations of these moving average differences (length equivalent to the length of sampled ma's)
2. These equations are then boiled down through an averaging process array, after averaging the covariants are equated against the variants of the positive side of the array. This is what is presented as the aqua line.
3. The RC average (yellow) is the sma following the DAP'S Oscillator at a specified length
4. The most important part of this indicator is simply the momentum oscillator represented as a green or red line based on the value relative to the Oscillators.
HOW DO I USE THIS?
As I mentioned before mixed with a volatility metric, it should set you up for a good decision based on short-term trends. I would say to be careful for periods of consolidation, with the consolidation the momentum often meets hands with DAP's Oscillator and can cause fake-outs. You want to spot divergences from the price to the momentum difference, as well as room to work down or upward to secure a good entry on a position.
CHEAT CODE'S NOTES:
I appreciate everyone who has boosted my previous scripts, it means a lot. If you want to translate words to pine script onto a chart, feel free to PM me. I would be happy to help bring an indicator to life. I may take a quick break but will be back shortly to help create more cheat codes for yall. Thanks!
-Cheat Code
Trend Momentum Divergence (TMD)Shout out to Lazy Bear, Bunghole, and Trading View for script code for this make.
In this study you will have a visual representation of the strength and momentum of a trend and possibilities of where the market is heading. You can use the Blue and White momentum waves to spot divergences in a up oe down trend for potential reversals. When a green dot appears under the lower level with divergence then it is a indication that we should consider looking to buy. If the red dot appears over the upper level with divergence we should be looking to short/sell. The custom MFI indicator determines how much money is flowing into the market. If it is green that means money is flowing into the market and if it shows red it means that money is flowing out of the market. You can spot divergences in the money flow as well as the RSI. The Blue and Green lines from the RCI3line indicator are used for higher timeframe momentum based on current chart timeframe and we can see when they cross over.
Visual Squeeze MomentumSqueeze Momentum from LazyBear now visible at the chart so you can check when the Squeeze its about to release. All credits for him.
Hamdan Squeeze MomentumHamdan Squeeze Momentum
The script of is show Squeeze bar.
█ FEATURES
Study Is Based In Momentum Indicator :
Green : Uptrend in general
Lime : Spots the current uptrend leg
Black : The maximum profitability of the leg in a long trade
The Squeeze happens when Green+Lime+Black are aligned (the larger the values the better)
Maroon : Downtrend in general
Red : Spots the current downtrend leg
Black: The maximum profitability of the leg in a short trade
The Squeeze happens when Maroon+Red+Black are aligned (the larger the values the better)
Yellow : The trend has come to a pause and it is either a reversal warning or a continuation. These are the entry, re-entry or closing position points.
█ Access To Script Add It To Your Chart For Free.
█ For Script Source Code Contact me