Qullamaggie Daily with ADR% and Compression RangeQullamaggie Daily
This Indicator is a Combination of Moving Averages (Simple and Exponential) as definied from Qullamaggie and used in his TC2000 Setup
Moving Averages:
- The Moving Averages are Guidelines for the current Trend and are not decive for the Entry
- They shall be a quick view and visual assistance to find strong momentum stock that are currently in a Phase of a "Flag Pattern"
ADR% 20 Day:
- Average Daily Range in % should indicate the Momentum of the Stock. It is similar but still works different as the Volalitily indicators.
- A stock is recommend to a have a ADR% above 5-6 to be considered a Momentum Leading Stock.
Consolidation Range:
- This Indicator should help to define Ranges in which the Volumen get compressed(increase) while the price movement is minimal
- A strong breakout is to be expected. The Range should be easier to be identified with this indication.
Cari dalam skrip untuk "break"
[TH] Volatility BreakoutVolatility Breakout Strategy for TradingHook.
This strategy is not for backtesting but for forward-testing starting when added to chart.
It can make and send a formatted message string for buy and sell order using alert.
Close Over/Under LevelIf you want to be alerted when a price closes above or below a given level(s), then this indicator is for you! 😁 Whether you're looking for a breakout, or some change of structure, etc, this should come in handy.
Usage:
Just add a level(s) (anything above 0).
Optionally plot lines.
Set alerts as normal.
Enjoy!
Donchian Breakout no repaintdonchian breakout strategy which i revise the script for no repaint signal
Super Breakout day trading This is an intraday indicator which uses Bollinger band and volume flow and MA to alert buy and sell signal.
A user can use this indicator to help make entry and exits. This indicator wont show entry and exist of larger time frames like Day week month.
This indicator uses Bollinger bands but try to minimize it shortcoming where it will buy and keep holding and eventually sell at a loss.
By adding addition parameters around volume it check if the price has reached its peak
Opening Range Breakout Lines-nagaBased on Range breakout on opening sessions, you can change your opening according to your time . by default it set for London opens.
Roc Mean Reversion (ValueRay)This Indicator shows the Absolute Rate of Change in correlation to its Moving Average.
Values over 3 (gray dotted line) can savely be considered as a breakout; values over 4.5 got a high mean-reverting chance (red dotted line).
This Indicator can be used in all timeframes, however, i recommend to use it <30m, when you want search for meaningful Mean-Reverting Signals.
Please like, share and subscribe. With your love, im encouraged to write and publish more Indicators.
Volume Level with AlertThis script is made by Bollinger Bands and Volume , BB is using customize setting to filter the surge volume.
Good to use in Cryptocurrency
When Volume Breakout and price is drop, chance to collect at lower price
Try to find out Price * Volume Divergence , a best entry point with low risk
Advanced GET: Tom Joseph's XTL, DMA Cloud & Breakout SignalsThe Expert Trend Locator ( XTL ) was developed by Tom Joseph to identify major trends, similar to elliott wave 3 type swings.
Blue bars are bullish and indicate a potential upwards impulse.
Red bars are bearish and indicate a potential downwards impulse.
White bars indicate no trend is detected at the moment.
Added to the indicator is the recommended use to enter a position, as explained by Tom Joseph in his book Applying Technical Analysis:
Once a blue or red bar appears, the indicator signals an entry level, a stop loss level and two target levels (2nd is optional).
The levels can be shown until a new signal emerges or just above/below the breakout bar.
Finally, a cloud formed by two displaced moving averages (DMA) is included, which allow the trend to continue its momentum. During an uptrend the lower moving average could serve as a trailing stop, and during a downtrend the upper moving average could serve as the trailing stop.
Enjoy!
Bar colour BreakoutIndicator that changes the colour of the bars depending on the breakout of the high or the low of the previous bar. A lime bar indicates a bar that has a higher high than the previous one. A fuchsia bar indicates a bar that has a lower low than the previous bar. A yellow bar indicates an outside bar (higher high and lower low than the previous one). A blue bar indicates an inside bar (lower high and higher low).
ATR Break on chartThis script is putting one of my old trading method, ATR Break, on chart.
It used to win many times in Dukascopy strategy contest a few years ago.
Pine script is quite easy to learn and very powerful. So I coded it to have a quick view for ATR break on chart.
The rule is simple:
- Current close - open / Previous ATR(5) > alertlevel (1.2), long signal
- Current open - close / Previous ATR(5) > alertlevel (1.2), short signal
The script will display label on the chart with the value of abs(close - open) / Previous ATR(5) to feel the strength.
I used to use the method on 5-min even 1-min chart. SL for 200 points and TP for 5-10 points
Fractal Channel v2Just another way of visualizing Williams' Fractals: they are now joined in a channel.
You can also create a channel of Fractals from another time frame than the current.
Great for identifying breakout entries, trend direction analysis (i.e. easily visualize Higher Lows, Higher Highs, Lower Lows, Lower Highs) or to trail your Stop Losses.
Version 2 of the Fractal Channel now correctly identifies William's Fractals when the High/Low of the 'Fractal Candle' is equal to the High/Low of the neighbouring 2 candles on both sides.
LAGging span leaves Bollinger Bands strategyAbstract
This script points out the positions a lagging span leaves a Bollinger Band.
This script does not plot a lagging span but moves the Bollinger Band forward.
You can find profit opportunities by combining this script and risk management.
Introduction
Bollinger Bands is a popular indicator.
It contains a moving average, an upper band and a lower band.
The moving average can indicate trend, the upper band and the lower band can indicate if the price is far away from the moving average.
However, in trading markets, anything can happen.
Both continuation and reversal are possible when the price touches the moving average, the upper band or the lower band.
Therefore, many traders adjust the parameters of the Bollinder Band or add other indicators to improve their trading strategies.
@Daveatt et. al. provided an idea that uses a lagging span.
A lagging span is a line chart. It displays the reference price but in earlier time.
For example, if the offset of a lagging span is 26 days, the value of the lagging span on 29 days ago is the reference price 3 days ago.
A lagging span is a part of Ichimoku Cloud.
It can compare the price to the earlier price and the values of indicators in the past.
To compare the price to the values of indicators in the past, we can also shift indicators forward instead of adding a lagging span into the chart.
This script uses shift-the-indicators-forward method.
In other words, this script plots the Bollinger Band forward so that the price can be compared to the values of the Bollinger Band in the past.
Computing and Adjusting
(1) Compute Moving Average
(2) Compute Standard Derivation
(3) Upper Band = Moving Average + Standard Derivation * Multi
(4) Lower Band = Moving Average - Standard Derivation * Multi
(5) Shift the Bollinger Band forward according to the offset parameter.
(6) Mark the points the price leaves the shifted Bollinger Band
(7) Compute the most possible loss and profit before the next opposite signal.
Parameters
source : the data for computing the bollinger band. can be open, high, low, close or their combination.
length : how many days are calculated by the bollinger band
mult : the distance from the moving average to the upper band and the distance from the moving average to the upper band is equal to ( mult * standard derivation ) .
x_offset : the offset of the lagging span
Conclusion
This script can find signals for potential breakout or trend continuation.
If you want to use this signal well, you need to know when to cut loss and protect the profit.
Reference
@Daveatt , Bollinger bands/Lagging span cross , BGyrPgOA , Tradingview 2019
How to trade with Bollinger Bands
How to use Ichimoku Cloud
How to trade with a line chart
Session break 225The default session break line for the NIKKEI 225 INDEX FUTURES (NK225) is drawn at 16:30 (GMT+9), the start of the night session.
This indicator draws a vertical line at 8:45 a.m (GMT+9), the start of the day session.
It is also possible to change the time at which the vertical line is drawn.
London Breakout/Session GBP/USD Forex DaytradeThis is a forex strategy suited for day traders, specialized in the london breakout session
The key elements for this strategy are the specific london time session, together with an exit time(before asian trade/at the end of new york session).
At the same time, as logic elements we only use price action inside like :
For long we have 3 ascending candles, and for short we have 3 descending candles.
For exit we have both TP/SL based on price percentage movement, or we exit if we reach the end of the day.
If you have any questions message me in private !
London breakout GBPUSD daytradeHello,
First I want to WARN THAT YOU NEED A MINIMUM OF 30X LEVERAGE FOR THIS STRATEGY IN ORDER TO WORK.
THE REASON IS THAT THE SIZE IS CALCULATED BASED ON A VERY SHORT STOP LOSS LEVEL IN PIPS
UTILIZE IT AT YOUR OWN RISK
This is a daytrading strategy, that's suited for GBPUSD 1H timechart.
It a very simple strategy that utilizes 2 moving averages : a very fast one and a very slow one.
It will always enter only at the beginning candle of London session, and it will always exit at the candle at the finish of London session.
So the rules are simple :
If its 8 am GMT and the candle close or high cross the slow moving average and we are above at the same over the slow moving average we make a long movement. The oposite condition is applied for short.
At the same time we always use a very small stop loss = 50-100 points ( 5-10 pips).
We dont have a take profit, in our case the trade ends always at the end of London session. In this case at 15h GMT
It might work on other currencies aswell, but it has to be tested first.
For any questions or suggestions, please let me know.
Long Term Breakout entry + 25% Trailing stopThis script enters on a long term breakout and exits using a 25% trailing stop
ORB - Opening Range BreakoutThis script plots the high/low of any custom session and extends it until the daily close. It does not show on the timeframe higher than the length of custom opening session by default.
The time period of opening range & the max timeframe to display it on can be adjusted from the settings.
So for eg. if want to use 5m ORB to trade, then set "ORB total time" as 5min & "Session Time" as whatever is the opening 5mins time period of ticker that are trading.
365 Day High Breakout StrategySCRIPT NOTES
- Strategy consists of 3 parameters :-
1. BUY on 365 day breakout (250 days taken in back-testing instead of 365 days considering weekends and other holidays in a year)
2. Moving averages (Noise Filtering condition )
3. RELATIVE STRENTH indicator (Original Author - tradingview.com ) (Noise Filtering condition )
- Strategy works better on low volatile stocks.
- This strategy is for self improvement and concept sharing purpose only.
- Trading (including profit/loss) using this strategy is completely user's responsibility.
CPR BREAKOUT STRATEGY by ganeshCPR BUY STRATEGY:
This is buy only strategy for stocks for breakout play
Rules :
buy above yellow line with sl of red line tgt green line
with previous day high los close ploted
Fractal Breakout StrategyFractal
A type of pattern used in technical analysis to predict a reversal in the current trend. A fractal pattern consists of five bars and is identified when the price meets the following characteristics:
1. A shift from a downtrend to an uptrend occurs when the lowest bar is located in the middle of the pattern and two bars with successively higher lows are positioned around it.
2. A shift from an uptrend to a downtrend occurs when the highest bar is located in the middle of the pattern and two bars with successively lower highs are positioned around it.