RP trend readerThis tool is a momentum reader
You can use this tools at any timeframe
When the momentum is meet the condition then it will show the signal
The signal are "Buy" and "Sell"
Buy means that you Long or exit your Short at the price
Sell means that you Short or exit your Long at the price
There's pivot line at there
Pivot line is showing how strong the momentum right now
If the price above or way above the pivot line then the uptrend is strong (very bullish)
If the price below or way below the pivot line then the downtrend is strong (very bearish)
Don't blindly Buy or Sell just because the signal is coming out
Combine it with the market structure, look at the big picture instead lower TF and the edge is yours
The best entry is when the price bounce close to the pivot point
Be carefull with the sideway or choppy market. You can see that the price is going up and down at the pivot line and the signals come out quite often
Follow your trading plan, be patience (don't FOMO) and be discipline with your plan... Cheers...
Trendtrading
Gann HiLo Activator [CC]The HiLo Activator was created by W.D. Gann and I was surprised to not see more of his technical indicators on here. I will start adding more of his indicators on here if I get more interest. This is the original version of the indicator that performs like a trailing stop that also works well as a trend line. Buy when the line turns green and sell when it turns red.
Let me know if there are any other indicators you want me to publish!
LTB Zigzag CirclesHello All,
Today I am here with a new idea and script, " LTB Zigzag Circles ". The idea is to create Circles using last 2 zigzag waves and to catch the breakouts earlier than horizontal lines. if a circle is broken then the script shows entry for Long/Short positions. and if broken circle reappears again then the position is closed. You can change Zigzag period as you wish and see the different results.
Here you can see how the script calculates and draws the Circles:
Below you can see how the script draws part of the circle on each bar:
Optionally the script can show levels:
P.S. I haven't tested it as a strategy, Result and Performance may change by Zigzag period, you need to find best Zigzag period according to your strategy. By the way, my Zigzag Circles idea can be improved, if you have any recommendation let me know please ;)
Enjoy!
Trend Persistence Rate Indicator [CC]The Trend Persistence Rate Indicator was created by Richard Poster (Stocks and Commodities Feb 2021 pg 12) and this indicator is a good trend strength indicator similar to ADX. A good strategy with this indicator according to the author is to combine this with a moving average crossover strategy and a volatility indicator. Buy when the price crosses over the moving average and when the volatility and this indicator are over a selected minimum. I think 30-40 as a minimum for this indicator works well. Exit that position when this indicator peaks and starts to go down and it should be very profitable for you. I have included general buy and sell signals with this indicator as well.
Let me know if there are any other indicators you would like to see me publish!
Ehlers FM Demodulator Indicator [CC]The FM Demodulator Indicator was created by John Ehlers (Stocks and Commodities May 2021 pg 14) and this indicator was created to accurately time any price variations which I think it does a great job. It is smoothed by default with his super smoother but feel free to substitute your own and try different combos. Buy when the line turns green and sell when it turns red.
Let me know if there are any other indicators you would like to see me publish!
Adjustable MA & Alternating Extremities [LuxAlgo]Returns a moving average allowing the user to control the amount of lag as well as the amplitude of its overshoots thanks to a parametric kernel. The indicator displays alternating extremities and aims to provide potential points where price might reverse.
Due to user requests, we added the option to display the moving average as candles instead of a solid line.
Settings
Length: MA period, refers to the number of most recent data points to use for its calculation.
Mult: Multiplicative factor for each extremity.
As Smoothed Candles: Allows the user to show the MA as a series of candles instead of a solid line.
Show Alternating Extremities : Determines whether to display the alternating extremities or not.
Lag: Controls the amount of lag of the MA, with higher values returning a MA with more lag.
Overshoot: Controls the amplitude of the overshoots returned by the MA, with higher values increasing the amplitude of the overshoots.
Usage
Moving averages using parametric kernels allows users to have more control over characteristics such as lag or smoothness; this can greatly benefit the analyst. A moving average with reduced lag can be used as a leading moving average in a MA crossover system, while lag will benefit moving averages used as slow MA in a crossover system.
Increasing 'Lag' will increase smoothness while increasing 'overshoot' will reduce lag.
The following indicator puts more emphasis on its alternating extremities, an upper extremity will be shown once the high price crosses the upper extremity, while a low extremity will be shown once the low price crosses the lower extremity. These can be interpreted like extremities of a band indicator.
The MA using a length value of 200 with a multiplicative factor of 1.
In general, extremities will effectively return points where price might potentially bounce in ranging markets while closing prices under trending markets will often be found above an upper extremity and under a lower extremity.
Reducing the lag of the moving average allows the user to obtain a more timely estimate of the underlying trend in the price, with a better fit overall. This allows the user to obtain potentially pertinent extremities where price might reverse upon a break, even under trending markets.
In the above chart, the price initially breaks the upper extremity, however, we can observe that the upper extremity eventually reaches back the price, goes above it, provides a resistance, and effectively indicates a reversal.
Users can plot candles from the moving average, these are fairly similar to heikin-ashi candles in the sense that CandleOpen(t) ≠ CandleClose(t-1) , each point of the candle is calculated as follows for our indicator:
Open = Average between MA(t-1) and MA(t-2)
High = MA using the high price as input
Low = MA using the low price as input
Close = MA using the closing price as input
Details
Lag is defined as the effect of moving averages to reflect past price variations instead of new ones, lag can be observed by the user and is the main cause of false signals. Lag is proportional to the degree of filtering returned by the moving average.
Overshooting is a common effect encountered in non-lagging moving averages, and is defined as the tendency of a moving average to exceed a maximum level (or minimum level, which can be defined as undershooting )
MA and rolling maximum/minimum, both using a length of 50 bars. While we can think of lag as a cost of smoothness, we can think of overshooting as a cost for reduced lag on some occasions.
Explaining the kernel design behind our moving average requires understanding of the logic behind lag reduction in moving averages. This can prove to be complex for non informed users, but let's just focus on the simpler part; moving averages can be defined as a weighted sum between past prices and a set of coefficients (kernel).
MA(t) = b(0)C(t) + b(1)C(t-1) + b(2)C(t-2) + ... + b(n-1)C(t-n-1)
Where n is the period of the moving average. Lag is (non optimally) reduced by "underweighting" past prices - that is multiplying them by negative numbers.
The kernel used in our moving average is based on a modified sinewave. A weighted sum making use of a sinewave as a kernel would return an oscillator centered at 0. We can divide this sinewave by an increasing linear function in order to obtain a kernel allowing us to obtain a low lag moving average instead of a centered oscillator. This is the main idea in the design of the kernel used by our moving average.
The kernel equation of our moving average is:
sin(2πx^α)(1 - x^β)
With 1>x>0 , and where α controls the lag, while β controls the overshoot amplitude.
Using this equation we can obtain the following kernels:
Here only α is changed, while β is equal to 1. Values to the left would represent the coefficients for the most recent prices. Notice how the most significant coefficients are given to the oldest prices in the case where α increases.
Higher overshoot would require more negative values, this is controlled by β
Here only β is changed, while α is equal to 1. Notice how higher values return lower negative coefficients. This effectively increases the overshoots amplitude in our moving average. We can decrease α in order for these negative coefficients to underweight more recent values.
Using α = 0 allows us to simplify the kernel equation to:
1 - x^β
Using this kernel we can obtain more classical moving averages, this can be seen from the following results:
Using β = 1 allows us to obtain a linearly decreasing kernel (the one of a WMA), while increasing allows the kernel to converge toward a rectangular kernel (the one of SMA).
TrendBuddy_v1TrendBuddy is a trend signal generator indicator.
options:
control sensitivity of the signals
Sideways Market Detector
Filter signals based on Side Market
Indicator is based on combination of oscillators, moving averages, bollinger bands and price action.
The traders can use this tool to get trends when market is about to come out of choppy regions.
Trend Type Indicator by BobRivera990Usage:
The purpose of this indicator is to programmatically determine the type of price trend using technical analysis tools.
You can do a quick check on the asset’s higher and lower time frames. For example, if you are trading on an H1 chart, you can check the m5 chart to ensure that the trend is in the same direction and similarly check the H4 chart to ensure that the higher time frame price is also moving in the same direction.
If multiple time frame charts confirm a similar trend, then it is considered a very strong trend and ideal for Trend trading.
Remarks:
By default, the last status is related to 8 periods before the latest closing price.
Related definitions:
The three basic types of trends are up, down, and sideways.
1. Uptrend
An uptrend describes the price movement of a financial asset when the overall direction is upward. The uptrend is composed of higher swing lows and higher swing highs.
Some market participants ("long" trend traders) only choose to trade during uptrends.
2. Downtrend
A downtrend refers to the price action of a security that moves lower in price as it fluctuates over time.
The downtrend is composed of lower swing lows and lower swing highs.
3. Sideways
A sideways trend is the horizontal price movement that occurs when the forces of supply and demand are nearly equal. This typically occurs during a period of consolidation before the price continues a prior trend or reverses into a new trend.
How it works:
Step 1: Sideways Trend Detection
In this step we want to distinguish the sideways trend from uptrend and downtrend. For this purpose, we use two common technical analysis tools: ATR and ADX
1. Average True Range (ATR)
The average true range (ATR) is a technical analysis indicator that measures market volatility.
We also use a 20-period moving average of the ATR.
When the ATR is below the average of its last 20-periods, it means that the rate of price volatility has decreased and we conclude that the current trend is sideways
2. Average Directional Index (ADX)
The average directional index (ADX) is a technical analysis indicator used by some traders to determine the strength of a trend.
The trend has strength when ADX is above 25.
So when the ADX is less than or equal to 25, there is no strong trend, and we conclude that the current type of trend is sideways.
Step 2: Detect uptrend from downtrend
If it turns out that the current price trend is not sideways, then it is either uptrend or downtrend.
For this purpose, we use plus and minus directional Indicators (+ DI & -DI).
A general interpretation would be that during a strong trend, when +DI is higher than -DI, it is an uptrend. When -DI is higher than +DI, it is a downtrend.
Parameters:
"Use ATR …" ________________________// Use Average True Range (ATR) to detect Sideways Movements
"ATR Length"_______________________ // length of the Average True Range (ATR) used to detect Sideways Movements
"ATR Moving Average Type" ___________// Type of the moving average of the ATR used to detect Sideways Movements
"ATR MA Length" ____________________// length of the moving average of the ATR used to detect Sideways Movements
"Use ADX ..."_______________________ // Use Average Directional Index (ADX) to detect Sideways Movements
"ADX Smoothing”____________________// length of the Average Directional Index (ADX) used to detect Sideways Movements
"DI Length"_________________________// length of the Plus and Minus Directional Indicators (+DI & -DI) used to determine the direction of the trend
"ADX Limit" ________________________// A level of ADX used as the boundary between Trend Market and Sideways Market
"Smoothing Factor"__________________// Factor used for smoothing the oscillator
"Lag"______________________________// lag used to match indicator and chart
Resources:
www.investopedia.com
Momentum Rotation Indicator [CC]I have developed this custom indicator very loosely based on the Sector Rotation Model (Giorgos E. Siligardos. Technical Analysis of Stocks & Commodities, August 2012) and I called it the MRI because this is essentially a brain scan of any particular stock. This will not only tell you when a stock is breaking out over the market at large but also how the stock is doing compared to its own history. Buy when the line turns green and sell when the line turns red.
Let me know if there are any other indicators you would like to see me publish!
Donchian Channel StrategyRide the trend with full potential. Filter out false signals using long period ema. Lower bands take care of the stop loss.
Use this strategy for banknifty futures for consistent quarterly returns.
RSI Trend Indicator [paRSI]The Relative Strength Index ( RSI ) is a measurement used by traders to assess the price momentum. It is scaled from 0 to 100. when RSI reads below 30, it is usually interpreted as oversold and when RSI is above 70 it is usually interpreted as overbought. However, it is usually not profitable to trade based on overbought and oversold signal.
RSI Trend Indicator or as I like to call it "paRSI" ("Parsa (my name) + RSI") shows that when RSI is above a specific number (default value = 60) it indicates bullish trend and when RSI is below a specific number (default value = 40 ) it indicates bearish trend. Lastly when RSI is below the 2 specified numbers it indicates a neutral trend.
I don't recommend trading based on this single indicator. If you're a trend trader this might be useful tool in addition to your own strategy
Usage:
If the created pattern has worked previously on the chart, you could enter on the first stages of the green or red section (depending on the market's trend).
It is not recommended to trade in any direction when there is no color
*THIS IS A TREND FOLLOWING STRATEGY AND DOES NOT WORK ON ALL MARKETS*
Baus BandsThe Baus Bands are a simplified version of another one of my trend following indicators, the Neapolitan Bands. This version only shows the trend trading zones in green and red. An additional 21 EMA with an ATR band was added as part of my own trend trading rules using these bands.
How do I read this indicator?
Is the blue band between and not touching the green or red clouds? The condition is ranging.
Is the blue band touching the green cloud? The condition is a bullish trend.
Is the blue band touching the red cloud? The condition is a bearish trend.
The trend trading rules are exactly the same as the default Neapolitans, but include an extra condition.
A trend has started once 2 conditions are met:
Price has entered either trending cloud.
The 21 EMA ATR band in blue is within the same cloud.
With those conditions met, if you expect the trend to continue, trade pull-backs to the blue band in the direction of the trending cloud.
Isn't this just a 21 EMA trading pull-backs strategy?
No. The 21 EMA alone is not sufficient in my opinion to define a range or trend technically. Always buying the 21 EMA pull-back, especially in a range, is not a great strategy by itself unless you've already identified price as trending. Baus Bands adds that trend identification.
Why make this?
Baus Bands show the conditions I personally use for catching trends and identifying ranges with these indicators, and shows only the information I use.
What's the purpose of the ATR band around the 21 EMA?
Sometimes price will open and close below the 21 EMA and cause some technical analysts will say the trend is over. I added the ATR specifically to get a volatility based, upper and lower bound range around the 21 EMA. that way I have an acceptable price range where price could move past the 21 EMA and still keep a trend valid using similar rules. I then saw that so long this ATR band (not the 21 EMA itself) was touching those trending clouds, then the trend has a good chance of continuing as long as that was true.
CCI45/SMA50 indy for 30 min SP500SPCFD:SPX
The script determines entry points using 45 period CCI and 50 period SMA.
Long condition: When CCI crosses up 150 treshold while price above 50 period SMA
Short condition: When CCI crosses down -150 treshold while price below 50 period SMA
Trades are executed above/below 1 point of high/low for long/short positions. Stops are just 1 point below/above of SMA. After 4 points of profit stops should be tightened. If you do not plan to hold the position for a long time, it can produce quick profit within 5-6 bars namely 2.5-3 hour. Otherwise you can manage the trade using SMA as trailing stop. This can be treated as a strategy of scalping which turns out a trend trading eventually if conditions good.
Have a nice trading
Support Resistance ChannelsHello All,
For Long time I was planning to make Support/Resistance Channels script, finally I had time and here it is.
How this script works?
- it finds and keeps Pivot Points
- when it found a new Pivot Point it clears older S/R channels then;
- for each pivot point it searches all pivot points in its own channel with dynamic width
- while creating the S/R channel it calculates its strength
- then sorts all S/R channels by strength
- it shows the strongest S/R channels, before doing this it checks old location in the list and adjust them for better visibility
- if any S/R channel was broken on last move then it gives alert and put shape below/above the candle
- The colors of the S/R channels are adjusted automatically
You can set/change following settings:
- Pivot Period
- Source : High/Low or Close/Open can be used
- Maximum Channel Width %: this is the maximum channel width rate, this is calculated using Highest/Lowest levels in last 300 bars
- Number of S/R to show : this is the number of Strongest S/R to show
- Loopback Period: While calculating S/R levels it checks Pivot Points in LoopBack Period
- Show S/R on last # Bars: To see S/R levels only on last N bars
- Start Date: the script starts calculating Pivot Point from this date, the reason I put this option is for visuality. Explained below
- You can set colors/transparency
- and You can enable/disable shapes for broken S/R levels
Examples:
You can change colors as you wish:
here " Show S/R on last # Bars " set 100:
Sometimes visuality may corrupt because of old S/R levels, to solve it you need to set "Start Date" in the options to start the script in visual part (last 292 bars)
here in first screenshot it doesn't look good (shrink), then on second screenshot I set the "Start Date" it looks better, if you change time frame don't forget to set it again :)
Enjoy!
CCT - CryptoCoin TraderEnglish:
------------------
Mostly tested on Crypto Currencies
2 different usages for 2 different situations
For high volatity, use light color thick lines. Ignore the dark ones.
For standard, use dark and thick lines.Ignore the light ones.
When price bar's high hits the red line = sell
When price bar's lowhits the green line = buy
Wait for the lines keep horizontal before use it for signal.
Türkçe:
Çoğunlukla kripto para grafiklerinde test edilmiştir.
2 tip kullanımı vardır.
Volatil piyasa için açık renkli kalın çizgileri kullanın.
Normal piyasa için için koyu renkli ince çizgileri kullanın.
Fiyat barının yüksek değeri kırmızı çizgiye değdiğinde = sat
Fiyat barının düşük değeri yeşil çizgiye değdiğinde = al
Sinyal olarak kullanmak için, Çizgiler yataya bağlayana kadar bekleyin.
PIVOT EDGE - TREND GLIDEROne of the Biggest challenge in trading is to find the right trend and once we are in the right trend, holding on to winning trades is the next challenge. So this indicator addresses both these issues and helps you with
finding the right trend and also guide you and glide the trades till there is a change in trend by means of proper trend based candle color.
You can just look at the basic candle color as per the prevailing trend and be in the trend as long as the candle colors doesn't change. You need not worry or panic about the small pullbacks or retracements which is a normal
course of any trend continuation. Without this Indicator, in normal situation we would have ended our trades thinking the trend has changed and only to find that trend is again continuing and giving us more than 3-4 times reward after exit.
This Indicator is coded in such a way that no matter what may be the standard color of the candle, This Indicator will paint the candles to Green color in an Uptrend and it will paint the candles RED color in downtrend.
You can take entries as soon as you see the trend formation and wait till the trend is changed or the candle color is changed.
This indicator is intended for the use of newbies or Novice traders to give them confidence and also to guide them towards the proper trend so that they are not taking any counter trend trades.
This Indicator is also beneficial for experienced and master traders to keep them in trade and glide until there is a clear change in trend thereby riding their profits for longer time.
This is a Moving average crossover based strategy but slightly different in the computation where in I have used the customized PEMA values to suit most favorable win ratio.
The results are best when used for timeframe of 10 mins and above. Also you must know the basics of candle stick patterns and price action to take suitable entries and exit at favorable risk reward ratio.
Always do not wait for exit signal from the indicator. You can exit whenever you have gained decent profit and you can keep a trailing stop loss and lock in your profit.
This Indicator works on all Markets and all types of timeframes. Kindly do backtesting for atleast 2-3 months data before using it for live market. Also you must find out which stocks you wish to trade and check if this indicator works favorably for your scripts. The results might slightly vary on stocks
with high volatility.
Always look for the curve in trending up direction of trending down direction. Do not trade whenever the curve is flat and not inclined upside or downside.
Always trade with a suitable STOPLOSS in place and trade with less quantity till you find comfort and confidence with this Indicator.
Further updates to follow periodically. Incase you like this script, like it and share it to others too. Also take a look at the other scripts that I have published.
Happy Trading
Mohan
MM DonBased on the nnfx trading style this algorithms has many different calculations to provide the best signal and confirmations
1. The SuperSmooth Forecast Moving Average
2. TrendLine Moving Average
3. Smoothed Heiken Ashi Moving Average
4. Baseline that can change between 15 different moving averages
Buy/Sell Alarms for all the moving averages
Exit buy/sell Alarms
Entry
3 TP
ATR x1.5 Stop Loss auto generated per signal.
Also be able to set tp alarms for both buy/sell entries. so you place your trade and be alerted when your take profits have been hit.
works on all timeframes for scalpers, intraday, or even swing.
effective on binary as well.
Directions are simple
combine simple Market Structure & as long as everything matches (Buy Signal & everything is blue + baseline is white) (Sell Signal & everything is Red + Baseline is Red) you can enter the signal generated, exit the trade when told to exit and Manage your trade.
this was made to make trading easy and create confidence with in the trader.
Link below or PM us for access to this indicator Happy Trading
Multi Time Frame Candles with Volume Info / 3DHello Traders,
This is my second Multi Time Frame Candles script but with this new one, you will have some new features such volume info, remaining time to close of higher time frame candle and also developed using new features of Pine such array of lines. also I tried to make it 3D for better visualization ;) also it shows new highs/lows / breakouts.
I tried to make many things optional, so you can change almost everything using options.
What you can change using options:
- Higher time frame
- Number of Candles
- Candle Colors Up/Down
- Wick Color
- Volume colors Up/Down
- Text color of Remaining Time
- Shadow Color
- Background color
- Start bar of the candles (so you can see many higher times frame candles in same window)
- 3D effect, by default it's enables but you can disable 3D view
Lets see some examples:
Remaining time:
Breakouts:
You can combine different higher time frames:
if you don't want 3D view then combining different higher time frames:
You can change background color:
Enjoy!
MRC Trend Trader [VK]MRC Trend Trader one of the best indicator by VK. Usable for Trend, Swing, positional Trading. Works on all types of markets and symbols, Best To use in Time Frame Higher Than 30m
About The Indicator :
This indicator uses MACD to scan the Trend Based on Higher TF and RSI+CCI for entries . It also has the ability to plot MACD crossing signal line in higher TF, plotted on the bottom of the chart and ATR is used for Stop Loss, plotted below Signals. One of the best function of this indicator is support/resistance levels, dot lines plotted on the chart, Which can be used to Take Profit as targets.
How To Use :
The main strategy behind this indicator is to only Long When Background Trend is green and only Short when Background trend is red . Enter on B/S Signal close.
Functions :
- MACD to scan Trend and MACD cross on Multi Time Frame.
- RSI to find lower Buy entry and Higher Sell entry (MTF - Only use current TF or Lower).
- CCI to find continuation entries (More Signals).
- Stop Loss.
- Support and Resistance Levels (Take Profit Targets).
This indicator is set up keeping Money management as one of the main priority, Keep taking profits on targets and always move Stop Loss to Breakeven Once in Profit.
PM for access.
Buy The Retrace backtest strategyA trend-following strategy entering pullbacks
Simple but efficient
Mostly used it on 1 min chart but it works extremely well on 5 min as well.
The components of the strategy:
-MTF ATR based Trend
-Fib based cloud to help determine the trend - Caution when trend and cloud shows a different trend - a reversal may be possible.
-Optional values for the signals -how often you would like to get one- can be changed based on - the current close relative to the close-only high-low range over a given period of time.
-3x take profit levels
- all adjustable in %
- take profit quantities adjustable in % for each level
-paints a line where your average position is
-labels the current position size
Be careful where the cloud is broken, a reversal may happen.
Be careful longing / shorting the same levels which acted as a support/resistance before - this is why the win ratio is around 80% only as a small percentage gets stopped out usually.
Would like to get access? Pm me I'll grant it.
[astropark] Trend Skywalker V1 [alarms]Dear Followers,
today another awesome Swing and Scalping Trading Strategy indicator: Trend Skywalker !
It shows a trend cloud that reacts very fast to price action, so it's perfect for trending markets: it helps a lot to find out
when a trend is going to end and a new is going to start
when to enter again within a trending market
where to put your stoploss
In this example below you can see the three points above:
In fact in a trending market it will highlight that:
price consolidation within the could is a trend weakening signal , so you can easily spot when a trend is going to end and a new is going to start
bullish/bearish trend cloud retests are nice opportunity to re-enter within a trending market, especially if cloud is thick
where to put your stoploss ( below the cloud and/or recent low in a buy scenario , above the cloud and/or recent high in a sell scenario )
This strategy/indicator has the following options:
change analysis window (the lower, the more reactive; the higher, the less reactive)
enable/disable signals on chart
enable/disable "more confirmations" signals filter
enable/disable bars and background coloring based on trend
enable/disable an automatic Trailing Stop strategy option (Automatic Stops)
enable/disable a peak profit tracker (the max percentage profit labels)
enable/disable highlights of trend cloud retests
enable/disable highlights of trend cloud price breakouts
Here below some examples how the indicator works on many markets and timeframe.
ETH/USD 4h
EUR/USD 15m
LTC/BTC 1h
This strategy only trigger 1 buy (where to start a long trade) or 1 sell (for short trade).
Keep in mind that proper risk management and money management strategies are very important to manage your trades (DM me if you need any clarification on these points).
This script will let you set all notifications you may need in order to be alerted on each triggered signals.
The one for backtesting purpose can be found by searching for the astropark's "Trend Skywalker" and then choosing the indicator with "strategy" suffix in the name, or you can find here below:
This is a premium indicator , so send me a private message in order to get access to this script.
Volume-Supported Linear Regression TrendHello Traders,
Linear Regression gives us some abilities to calculate the trend and if we combine it with volume then we may get very good results. Because if there is no volume support at up/downtrends then the trend may have a reversal soon. we also need to check the trend in different periods. With all this info, I developed Volume-Supported Linear Regression Trend script. The script checks linear regression of price and volume and then calculates trend direction and strength.
You have option to set Source, Short-Term Period and Long-Term Period. you can set them as you wish.
By default:
Close is used as "Source"
Short-Term Period is 20
Long-Term Period is 50
in following screenshot I tried to explain short term trend (for uptrend). Volume supports the trend? any volume pressure on trend? possible reversal? same idea while there is downtrend.
in following screenshot I tried to explain long term trend:
You can also check Positive/Negative Divergences to figure out possible reversals (to automate it, you can use Divergence for Many Indicators v4 , it has ability to check divergences on external indicators)
Enjoy!
SemaforHello Traders!
I have been away for a while but am recovering back gradually! Here is a gift to all of you.
It is based on the much loved ZigZag++ Script
The Semafor is used to spot future multi-level Supports and Resistance zones.
It is also useful to spot HL or LL or HH or LH zones at different Depth settings.
The red zones are the extreme places where the market has a higher chance of reversing while the green zones have the lowest setting with lower chances of the market reversal
To ease understanding of the code, I used the function `zigzag()` to show the simplicity in calculation
More will be coming this Year!