MomentumInvest TrendFollower [@TradersVenue]VSA CheatSheet - Have kept the chart clean and clear not by putting each signal pattern name. What matters is identifying the real price action than the pattern name. To keep the charts clutter free, haven't put the signal name under/above the candle.
Rejection or reversal patterns
Green Circle - Typical SellingClimax, Stopping Volume and Bag Holding signal patterns as per VSA. Strong price volume action but price rejection at lower level.
Red Circle - Typical Buying Climax, End Of Rising, Supply Overcoming Demand signal patterns as per VSA. Strong price volume action but price rejection at higher level.
Green Square - Typical bullish TrendReversal candle as per VSA. Bullish breakout bar immediately after a bearish breakout bar and engulfing the previous one or cover max part of it.
Red Square - Typical bearish TrendReversal candle as per VSA. Bearish breakout bar immediately after a bullish breakout bar and engulfing the previous one or cover max part of it.
Momentum breakout patterns
Blue/Green Star - Bullish breakouts. Downthrust bars with significant price volume action. Green if smaller low weak otherwise blue.
Red/Pink Star - Bearish breakouts. Downthrust bars with significant price volume action. Red if low higher weak else pink.
Candle Color
Green - Bullish with strong price action. Good to enter long towards close with SL of day low. System suggests quantity as per 2% trading rule. One can play with risk defined option strategies or cash segment as per quantity suggested.
Red - Bearish with strong price action. Good to enter short towards close with SL of day high. System suggests quantity as per 2% trading rule. One can play with risk defined option strategies like bear put spread or bear call spreads or go for hedged shorts.
Pink - Bearish with muted price action. Trail SL. Better to avoid trading these candles.
Light blue - Bullish with muted price action. Trail SL. Better to avoid trading these candles.
Plotted EMA Ribbon gives a sense of the strength of momentum. When each MA is placed with wide gaps momentum is strong. When there is EMA confluence, chances of trend strength are weakening. Background color of the chart green indicates bullishness in the underlying and red indicates that bearish pressure in the scrip. If the background color is green and you see one Blue/Green star candle it's good to go long. If the background color is red and you see one Red/Pink star candle it's good to go short.
A word of caution: Trading breakouts is very good. But you need to prepare for breakout failures. Here the system picks wide range bars for going long or short that means SL is wide probably 3% and above. Also if you notice after a strong PV breakout if price sustains below that it can see long unwinding pressure and simillary after a strong PV breakdown, if price sustains above the breakdown candle, chances of short covering is higher. Here money management and risk management becomes very important. Same has been included as part of the indicator to give you an optimal quantity for trade to keep the drawdowns lower. If you enable (1) RECO message and (2) Show Strategy (Else Study)? options then it shows a RECO box with quantity calculated as per 2% loss per trade rule. Lot of risk management, scale up/down for compounding is also available. You may try out those options one by one.
This indicator needs to be used along with the “VSA + Volume Oscillator ”, because this setup relies on VSA (Volume Spread Analysis). The overall usage will be provided through a demo to the subscribing users. In order to gain access to this indicator you may contact me using the below signature.
Smoothed Moving Average (SMMA)
Bjorgum Triple EMA Strat-This script uses a triple EMA strategy to establish trend direction and reversal points
-Inputs are smoothed with Heiken Ashi values to reduce whipsaws, while providing timely execution
-Buy and sell indications are dictated by bar color
-Bar color is dictated by the candle close value in relation to the EMAs, specifically the faster of the 3
(If candle closes above or below the fast and intermediate averages, a buy or sell signal is indicated by bar color change)
-If the close falls between the two a cautionary signal is given. The viewer can hold, or take profit, or evaluate other indicators for clues
-Best results are obtained when coupled with Bjorgum TSI and Bjorgum RSI for confirmation of signals (see TradingView profile)
@Bjorgum on Stocktwits
SMMA ConfluenceVisualizes SMMA on multiple timeframes (5min, 15min, 30min, 1hr, 2hr, 3hr, 4hr, 6hr, 8hr, 12hr, and 1d) and allows selection of lookback.
RK's 10 ∴ MA Types Ribbons (Fibonacci, Guppy and others)After some tips in my indicator
RK's 04 - Lots of MA Types Ribbon I Put some time and effort to make it better.
So, I'm sharing with you the results.
This is an up to 10 lines Moving Average Ribbon with an Auto Evaluate Length and a lots of options!!!
Type of Moving Average you can use:
SMA - Simple Moving Average
SMMA - Smoothed Moving Average
EMA - Exponential Moving Average
DEMA - Double Exponential Moving Average
TEMA - Triple Exponential Moving Average
WMA - Weighted Moving Average
HMA - Hull Moving Average
EHMA - Exponential Hull Moving Average
RMA - RSI Moving average
2PSS - Ehlers 2 Pole Super Smoother
3PSS - Ehlers 3 Pole Super Smoother
VWMA - Volume-Weighted Moving Average
ALMA - Arnaud Legoux Moving Average
STMA - Simple Triangular Moving Average
ETMA - Exponential Triangular Moving Average
LSMA - Least Squares Moving Average
ZSMA - Zero-Lag Simple Moving Average
ZEMA - Zero-Lag Exponential Moving Average
COVWMA - Coefficient of Variation Weighted Moving Average
COVWEMA - Coefficient of Variation Weighted Exponential Moving Average
FRAMA - Fractal Adaptive Moving Average
KAMA - Kaufman's Adaptive Moving Average
VIDYA - Variable Index Dynamic Average
If you want to change faster the MA type, in "Moving Average Setup:", Select "🤖 Use numbers to change MA Type", click inside the box in "🤖 Moving Average Type per Number:" and just scroll your mouse wheel. You can check what MA type you are using looking in the info panel label.
There is 4 automatic evaluate length:
Fibonacci Sequence
Arithmetic Progression
Geometric Progression
Guppy Multiple Moving Average (GMMA) without Lengths 03 and 05
And I already put a Manual Length, but I keep it inside the code, so if you want to use different lengths, just change the code, or ask me and I will put as an input.
And attending a request, this indicator can creates alerts when all the colors of the ribbons changes.
Hope you like it!
Any other good idea, just send me.
Pre-Market Volume ProfileThis indicator displays the pre-market volume (note: without the post-market of the previous day).
Unusual pre-market volume often indicates that institutional market makers are moving the market, which is a good sign for unusual high price movement.
The indicator helps me to spot stocks, if a pre-market gap is confirmed with enough (unusual) volume.
You can define, what "unusual" means by you, by adjusting the SMA length and the SMA multiplier.
The default is a length of 21 bars and a 2.5 multiplier, meaning I'm interested in a stock, if the pre-market volume exceeds the average pre-market volume by 2.5 times.
Smoothed Sensitive MAThis moving average is sensitive and reacts quickly to significant price movements, while remaining indifferent to small price moves.
Smoothed Sensitive MA is triple weighted for price changes.
It takes in one parameter "Length", which is used as both
1. the lookback period for price change,
zCC=abs(close-close [ len ])
and also as
2. the number of periods to be averaged
zSSMA=sum(zCC*zCC*zCC*close, len )/sum(zCC*zCC*zCC, len )
Alternatively, you could modify the script to use two separate parameters for values for 1 and 2.
Triple MA + EMA + SMMA + BBCombined multiple scripts under one script.
Great for Free account users. ;-)
This script contains:
Moving Average
Exponential Moving Average
Smoothed Moving Moving Average
Bollinger Bands
SMMA 5-13 crossCrossing the Smoothed Moving Averages with settings 5 & 13 give you confident signal for selling or buying.
IMPORTANT: Signal is always late.
SELL : Short SMMA (5) cross the Long SMMA (13) from top
BUY : Short SMMA (5) cross the Long SMMA (13) from down
[LunaOwl] Center of Gravity作品: 艾勒斯重心點 (Center of Gravity, CG)
Center of Gravity was developed by John Ehlers in 2002. The main purpose of the Center of Gravity indicator is to find possible reversal points as early as possible. Indicator has two series, the first is the CoG series, and the second is the signal line calculated by the five-period smoothed moving average. Cross representative indication of the direction. I coded this indicator according to the description of MT4, a little work.
重心點(Center of Gravity)是由約翰.艾勒斯在2002年開發的,這個指標的主要用途是儘早發現可能的反轉點。它有兩個部份,一個是重心點指標線,另一個是經過五期平滑移動平均線平滑過的信號線,它們的交叉結果代表方向。我按照MT4的說明編寫了這個小作品。
Smooth HA / Hull MA / MTF===========
Smooth HA / Hull MA / MTF
===========
A combination of a Smoothed Heikin Ashi Chart Line and a Hull MA Line, paints a "Long" or "Short" alert when the Hull MA changes color - editable settings for the smoothing of HA data and Hull MA Length; you can also change the time frame used (must be the same or longer as the chart).
-----------
This indicator does a real good job at finding highs and lows (otherwise known as entry and exit points!) picking up on just about every large, decent swing and making the most from those big moves! The disadvantage of all Smoothed HA strategies are when times are choppy or ranging - given the natural lag of the indicator you can be sure in choppy times you'd be buying at the top and selling at the bottom almost every time ~ No indicator is perfect!
This Smooth HA/Hull MA indicator also has a built in MTF function (Multi-Time-Frame). This means you can be using a 1hr chart and set the indicator to a 4hr chart - generally any movements on a greater time frame will overcome any movements of the smaller time frame, so this is where you should be gathering data about which direction the market is moving - as always, follow the trend.
Hope (like always) this is of at least some use to some people.
Good Luck and Happy Trading!
Fixed TimeFrame SMMAA script for SMMA calculated on fixed timeframe, different from the main chart's timeframe.
As it's known, we can't use mutable variables with security. At the same time, SMMA references to the previous values. So it's impossible to create SMMA on different timeframe, just passing a variable with SMMA to security.
To overcome this restriction, we should use a function, which calculates SMMA and we are passing the function to the security, so the function will be calculated on required timeframe.
Easy Read_Combo IndicatorEasy Read is a combo indicator. It is designed to plot,
5 SMAs: 20, 50, 100, 144, 200 (with Golden and Death Cross)
6 EMAs: 21, 55, 89, 144, 200, 377 (with Golden and Death Cross)
2 Bollinger Bands with 1st and 2nd standard deviation and a 'Trend Line'
Cobra Indicator with cobra line and cobra buy/sell signals
Buy and take profit signals based on over bought levels in RSI and STOCH
The indicator is pretty straight forward to use. The buy-sell signal show you long/short entries and MAs will help you decide the take profit zone.
Balance of Power StrategyA simple variation on the balance of power idea, using a weighted moving average and a basic lookback to attempt to predict the motion in the next tick.
As far as a trading pattern goes, it's performance is rather conservative, and it is rather noisy as it doesn't do a good job of preventing quick, meaningless trades.
Yellow Brick Road with GuppyYellow Brick Road channel is institutional knowledge and application of based on price action. Coupled with Guppy it can be a great companion just as much as it can be used alone or with full guppy. Dean Malone who I also consider a GOAT provided traders this knowledge.
PD Crypto Performer PRO (Backtest)Description:
This is the backtesting version of the PD Crypto Performer Pro (Alert) . You can choose to backtest either one of the two strategies included, a trend-identifying swing strategy and a low risk scalping strategy. Both strategies assume the same capital amount invested ($10,000) each trade. You can also see how your capital grows over time by enabling the reinvesting proceeds option. For details, please check out this tutorial .
The backtesting results could be easily improved in live trading by utilizing the “Take Profit” signals and following the recommended methods of use below.
To assist the decision-making process, the code currently references BTCUSD. As a result, it is only suitable for crypto traders. However, we are working on the stock and forex versions, and the Performer will have these compatibilities soon.
Most importantly, our signals DO NOT REPAINT !
Recommended Use:
- Time Frame: 1HR
- Asset: Large cap crypto assets.
For lower risk tolerance, we recommend using the indicator on ETHUSD. For maximizing profits, we recommend using the indicator on BCHUSD.
- Always set stop loss according to your own risk tolerance
- Take profits along the way. Check out this video tutorial for when to reenter after our take profit signals.
Recommended Use for Advanced Traders:
- Position sizing:
Larger position if the 1HR signal is in the same direction compared to the 4HR trend.
Smaller position if the 1HR signal is in the opposite direction compared to the 4HR trend.
- Better entry/exit points:
Track the 1HR signal for the asset you are trading on other exchanges along with the BTCUSD 1HR signal. Sometimes, the signals from different exchanges occur with a 1-2 hour difference. You could use these earlier signals along with a lower time frame (eg. 15min) entry confirmation from your own exchange for better entry / exit points.
- Use “Take Profit” signals for counter trend scalps. Recover at the reentering opportunities . This works best with candlestick pattern confirmations.
Never use this if you suspect a flag / inverted flag pattern is forming.
Go to www.phi-deltalytics.com and sign up for a FREE trial today!
Let us know if you have any questions or recommendations. We are here for your success!
Disclaimer:
It should not be assumed that the methods, techniques, or indicators presented will be profitable or that they will not result in losses. Past results are not necessarily indicative of future results. This is not a solicitation of any order to buy or sell.
PD Crypto Performer (Backtest)Description:
This is the backtesting version of the PD Crypto Performer (Alert) . The strategy assumes the same capital amount invested ($10,000) each trade. You can also see how your capital grows over time by enabling the reinvesting proceeds option. For details, please check out this tutorial . The backtesting results could be easily improved in live trading by following the recommended methods of use below.
To assist the decision-making process, the code currently references BTCUSD. As a result, it is only suitable for crypto traders. However, we are working on the stock and forex versions, and the Performer will have these compatibilities soon.
Most importantly, our signals DO NOT REPAINT !
Recommended Use:
- Time Frame: 1HR
- Asset: Large cap crypto assets.
For lower risk tolerance, we recommend using the indicator on ETHUSD. For maximizing profits, we recommend using the indicator on BCHUSD.
- Always set stop loss according to your own risk tolerance
- Take profits along the way.
Recommended Use for Advanced Traders:
- Position sizing:
Larger position if the 1HR signal is in the same direction compared to the 4HR trend.
Smaller position if the 1HR signal is in the opposite direction compared to the 4HR trend.
- Better entry/exit points:
Track the 1HR signal for the asset you are trading on other exchanges along with the BTCUSD 1HR signal. Sometimes, the signals from different exchanges occur with a 1-2 hour difference. You could use these earlier signals along with a lower time frame (eg. 15min) entry confirmation from your own exchange for better entry / exit points.
Go to www.phi-deltalytics.com and sign up for a FREE trial today!
Let us know if you have any questions or recommendations. We are here for your success!
Disclaimer:
It should not be assumed that the methods, techniques, or indicators presented will be profitable or that they will not result in losses. Past results are not necessarily indicative of future results. This is not a solicitation of any order to buy or sell.
PD Crypto Performer (Alert)Description:
This indicator includes a trend-identifying swing strategy. For decision making, the Performer strategy mainly uses smoothed Simple Moving Averages (SMA) and divergences in Relative Strength Index (RSI), Moving Average Convergence Divergence (MACD), and histogram. A leading indicator (eg. BTCUSD for crypto) is also used for more accurate and timely market identification.
To assist the decision-making process, the code currently references BTCUSD. As a result, it is only suitable for crypto traders. However, we are working on the stock and forex versions, and the Performer will have these compatibilities soon.
Most importantly, our signals DO NOT REPAINT !
Recommended Use:
- Time Frame: 1HR
- Asset: Large cap crypto assets.
For lower risk tolerance, we recommend using the indicator on ETHUSD. For maximizing profits, we recommend using the indicator on BCHUSD.
- Always set stop loss according to your own risk tolerance
- Take profits along the way.
Recommended Use for Advanced Traders:
- Position sizing:
Larger position if the 1HR signal is in the same direction compared to the 4HR trend.
Smaller position if the 1HR signal is in the opposite direction compared to the 4HR trend.
- Better entry/exit points:
Track the 1HR signal for the asset you are trading on other exchanges along with the BTCUSD 1HR signal. Sometimes, the signals from different exchanges occur with a 1-2 hour difference. You could use these earlier signals along with a lower time frame (eg. 15min) entry confirmation from your own exchange for better entry / exit points.
Go to www.phi-deltalytics.com and sign up for a FREE trial today!
Let us know if you have any questions or recommendations. We are here for your success!
Disclaimer:
It should not be assumed that the methods, techniques, or indicators presented will be profitable or that they will not result in losses. Past results are not necessarily indicative of future results. This is not a solicitation of any order to buy or sell.
PD Crypto Performer PRO (Alert)Description:
This indicator includes two strategies for crypto assets, a trend-identifying swing strategy and a low risk scalping strategy. For decision making, the Performer strategy mainly uses smoothed Simple Moving Averages (SMA) and divergences in Relative Strength Index (RSI), Moving Average Convergence Divergence (MACD), and histogram. A leading indicator (eg. BTCUSD for crypto) is also used for more accurate and timely market identification.
To assist the decision-making process, the code currently references BTCUSD. As a result, it is only suitable for crypto traders. However, we are working on the stock and forex versions, and the Performer will have these compatibilities soon.
Most importantly, our signals DO NOT REPAINT !
Recommended Use:
- Time Frame: 1HR
- Asset: Large cap crypto assets.
For lower risk tolerance, we recommend using the indicator on ETHUSD. For maximizing profits, we recommend using the indicator on BCHUSD.
- Always set stop loss according to your own risk tolerance
- Take profits along the way. Check out this video tutorial for when to reenter after our take profit signals.
Recommended Use for Advanced Traders:
- Position sizing:
Larger position if the 1HR signal is in the same direction compared to the 4HR trend.
Smaller position if the 1HR signal is in the opposite direction compared to the 4HR trend.
- Better entry/exit points:
Track the 1HR signal for the asset you are trading on other exchanges along with the BTCUSD 1HR signal. Sometimes, the signals from different exchanges occur with a 1-2 hour difference. You could use these earlier signals along with a lower time frame (eg. 15min) entry confirmation from your own exchange for better entry / exit points.
- Use “Take Profit” signals for counter trend scalps. Recover at the reentering opportunities . This works best with candlestick pattern confirmations.
Never use this if you suspect a flag / inverted flag pattern is forming.
Go to www.phi-deltalytics.com and sign up for a FREE trial today!
Let us know if you have any questions or recommendations. We are here for your success!
Disclaimer:
It should not be assumed that the methods, techniques, or indicators presented will be profitable or that they will not result in losses. Past results are not necessarily indicative of future results. This is not a solicitation of any order to buy or sell.
Modiied Elder Ray Index(Bull or Bear)Here's a modified version of the Elder Ray Index created by the famed Dr.Alexander Elder. This indicator has proven to be especially helpful lately given the crazy state of crypto.
Slow Moving Average :
The top chart shows the moving average used to filter trends. I recommend using a higher window length(can be adjusted with the 'lenSlowMA' input option). I wanted this to be a very smooth moving average, so I used the following formula:
slow MA = ema(vwma(close, 64), 64)
This resulted in a pretty smooth line that still detects major price movements very well.
-The background and bar colors both change in response to the Slow MA's value. The background and bars change to green when a bullish trend is detected and red when bearish.
Bear and Bull Power :
To balance things out a little, I included two histogram's based on Elder's Ray. Here, a more responsive EMA with a shorter window length is used to calculate the bull and bear power values and track short-term price fluctuations.
NOTE: The length of the EMA used here can be adjusted in the input menu.
Bull Power = current high - EMA(close, 13)
Bear Power = current low - EMA(close, 13)
Savitzky-Golay Smoothing FilterThe Savitzky-Golay Filter is a polynomial smoothing filter.
This version implements 3rd degree polynomials using coefficients from Savitzky and Golay's table, specifically the coefficients for a 5-, 7-, 9-, 15- and 25-point window moving averages.
The filters are offset to the left by the number of coefficients (n-1)/2 so it smooths on top of the actual curve.
You can turn off some of the smoothing curves, as it can get cluttered displaying all at once.
Any feedback is very welcome.
SSEMA cross VMAGreen line BUY
Red line SELL
Important: Follow the major trend
Is a good indicator for stay until color change