Demand Index Indicator by M.YALCINThe Demand Index is a complex technical indicator developed by James Sibbet that utilizes over 20 columns of data to measure the ratio of buying pressure to selling pressure. James Sibbet established six rules for using Demand Index:
1.A divergence between the Demand Index and price is a bearish indication.
2.Prices often rally to new highs following an extreme peak in the Demand Index.
3.Higher prices with a low Demand Index often indicate a top in the market.
4.The Demand Index moving through the zero line suggests a change in trend.
5.The Demand Index remaining near the zero line indicates weak price movement that won’t last long.
6.A long-term divergence between the Demand Index and price predicts a major top or bottom.
This indicator differs from other demand index indicators on this site in terms of indicator values. However, I think the low number of zigzags highlights this style. On the other hand, I think important points in terms of trading are added to the indicator: 1) According to many observations, the moments when this indicator crosses the zero line are interpreted as buy signals, and vice versa as a sell signal so the 0 line is shown. 2) Again, according to many observations, when the indicator crosses up its own 20-day (bar) exponential moving average is interpreted as a buy signal, and vice versa as a sell signal. Happy New Year ... NOTE: All these ideas do not contain financial advice.
Stocks!
Screener - Mean Reversion Channel█ OVERVIEW
This is Screener script for Mean Reversion Channel Indicator
█ Description & How To Use
The screener works by scanning through up to 40 symbols and list down symbols that are currently within Overbought/Oversold Zone as defined by Mean Reversion Channel indicator.
The Overbought/Oversold Zone are further categorized and sorted by:
Strong : Indicated by "(Strong)" next to the symbol name
Normal : Indicated by the absence of "(Strong)" or "(Weak)" next to the symbol name
Weak : Indicated by "(Weak)" next to the symbol name
Notes: Refer to chart above to see how the Zone are categorized.
Notes: If the screener displays "Nothing Interesting". It simply means none of the screened assets are within the Overbought/Oversold Zone.
█ Features
- Scan up to 40 symbols at a time (By default, no asset is define. Once configured all the symbols you required, remember to save as default to save you from pain of configuring it again in the future)
- Options to scan by zones
- Custom Timeframe
█ Limitation
Due to multiple use of security() function required to call other symbols, expect the screener to be slow at certain times
█ Disclaimer
Past performance is not an indicator of future results.
My opinions and research are my own and do not constitute financial advice in any way whatsoever.
Nothing published by me constitutes an investment recommendation, nor should any data or Content published by me be relied upon for any investment/trading activities.
I strongly recommends that you perform your own independent research and/or speak with a qualified investment professional before making any financial decisions.
Any ideas to further improve this indicator are welcome :)
Credit: QuantNomad for his script idea on custom screener
PpSignal Impulse V1.20PpSignal impulse is based on the concept of relative strength index, Rsi its acronym in English.
Although the calculation is similar, it differs in how the force is calculated. To calculate the force we are based on the analysis of the trend through a WMA.
It is important to clarify that you must do a prior analysis of the asset that you are going to trade, such as resistance supports, channels, chart formations, etc.
Buy when the sign is white.
Sell when the signal is red.
You can also perform buy or sell boosts if you activate impulse 2 and 3.
PpSignal Haiken Ashihere is the development of ppsignal Heiken Ashi with a formula of ours.
It also has a Smooth move average.
When HA this green is buying, when red is selling... simple entry system for scalping.
Enjoy it
[fareid] Quick Backtest Framework█ OVERVIEW
This Framework allows Pine Coders to quickly code Study() based signal/strategy and validate its viability before proceed to code with more advance/complex customized rules for entry, exit, trailstop, risk management etc..
This is somewhat an upgraded version of my earlier personal template with different strategy used, cleaner code
and additional features.
█ USE CASES
- You have an idea for trade signal and need a quick way to verify its potential before writing lengthy/complicated code
- You found a study script for trading signal in public library and want to validate it profitability with minimum effort before including it in your trading playbook
█ FEATURES
- Alert: Ready to use alert function based on signals from your custom indicator.
- Visual Backtest: Auto-plot entry, stop-loss and take profit for simple strategy performance analysis
- Backtest Statistic: Provide basic key metrics based on backtest strategy
- BTE External Signal Protocol: Ready to use code that will supply required state to PineCoders Backtesting & Trading Engine if you wish to have more advance and sophisticated backtesting engine
Notes: All of the above features have On/Off toggle
█ Description & How To Use
This Framework consist of 5 Modules but you only need to edit the first 2 Modules:
Module1: Indicator
Module2: Framework Input Protocol
Module3: Alert
Module4: Backtest
Module5: Backtest & Trading Engine
Tips: The source-code includes collapsible block by module for easy navigating
Module1: Indicator:
-----------------------------------------------------------------------------------
Main Module. Place custom indicator input parameter/calculation/indicator plotting here
Sample Strategy: Double MACD Crossover
MACD Signal: 1st MACD Cross above signal line indicate Buy Signal
1st MACD Cross below signal line indicate Sell Signal
MACD Filter: 2nd MACD is above 0 line indicate Uptrend
2nd MACD is below 0 line indicate Downtrend
Module2: Framework Input Protocol:
-----------------------------------------------------------------------------------
Use this module to connect main indicator/signal calculated in Module1 to the rest of the framework's module
4 variables needed to be defined here:
1. Uptrend
2. Dntrend
3. BuySignal
4. SellSignal
i'm not sure how to place a code snippet here to show you example so in the source code i already put a comment in Module2 on which part u need to edit. I hope its pretty simple to use.
Module3: Alert Module Description:
-----------------------------------------------------------------------------------
As long as the variables in Module2 properly defined, the alert module is ready to use without any further modification.
Input:
Enable Alert --> Enable TV's alert and plot signal to chart
Alert Type --> Set to take Buy only, Sell only or Both alert
Module4: Backtest Module Description:
-----------------------------------------------------------------------------------
As long as the variables in Module2 properly defined, the backtest module is ready to use without any further modification.
Input:
Backtest Stat --> Enable Backtest Statistic Label
Backtest Visual --> Enable Backtest visual simulation
Backtest Type --> Set to take Buy only or Sell only or both
SL Type -->
ATR : Set SL in ATR times Multiplier below entry price
Fixed : Set SL in fixed point below entry point (in 'Dollar'). e.g. for Stocks -> 0.5 equals to 50cent while for EURUSD currency -> 0.005 equal to 50 pips
HiLo Bar: Set SL at highest/lowest wick of previous bar plus/minus Fixed point. e.g. EURUSD HiLo=3 and Fixed Point = 0.0005, buy trade will place SL 5 Pips below lowest of previous 3 bar
SL ATR Multi --> Set Lookback Period used for SL's ATR calculation
SL ATR Multi --> Set ATR Multiplier for SL
SL Fixed --> Set Fixed Level for SL
SL Bar --> Set Number of previous bar to check for SL placement
TP RR Ratio --> Set TP based on RR multiplier. e.g. 2 means TP level will be twice further from entry point compared to Entry-SL distance.
Notes: The point is for preliminary testing, so it only supports 1 trade at a time and no Trailing Stop
Module5: Backtest & Trading Engine Description:
-----------------------------------------------------------------------------------
As long as the variables in Module2 properly defined, the Pinecoders BTE module is ready to use without any further modification.
Input:
External Signal Protocol --> Set ESP State to send to "Backtesting & Trading Engine "
Signal With Filter --> Use this to send entry signal that already filtered by this study indicator (without stoploss level)
Signal Without Filter --> Use this to send raw entry signal that are NOT YET FILTERED by this study indicator (without stoploss level)
Signal and Stop With Filter --> Use this to send entry signal WITH StopLoss that already filtered by this study indicator (with stoploss level)
Signal and Stop Without Filter --> Use this to send raw entry signal WITH StopLoss that are NOT YET FILTERED by this study indicator (with stoploss level)
Notes: Backtesting & Trading Engine already have built-in Filter, Entries and Stop Level. e.g. Unselect all their filter state if only want to use custom filter and make sure send Signal with Filter (with or without SL level)
█ DISCLAIMER:
This framework main objective is to create my personal indicator template so that i just have to modify the indicator module for preliminary testing in future.
The sample strategy included are for educational purpose only. Use at your own risk
credit: LucF/PineCoders for a lot of his scripts that i use as a guide to complete this
MACD With Trend Filter: Visual Backtest Module TemplateSample Strategy: MACD Crossover with trend filter options
MA Filter : Price Close Above MA, Search for Buy, Price Close Below MA, Search for Sell
ADX Filter : Take trade only when ADX is above certain treshold
MACD Signal : MACD Cross above signal line while under 0 line indicate Buy Signal
MACD Cross below signal line while above 0 line indicate Sell Signal
-----------------------------
Using Alert Module:
Enable Alert --> Enable TV's alert and plot signal to chart
Alert Type --> Set to take Buy only, Sell only or Both alert
----------------------------
Using Backtest Module:
Enable Backtest --> Enable Backtest simulation
Backtest Type --> Set to take Buy only, Sell only or Both
SL Type -->
ATR : Set SL in ATR times Multiplier below/above entry price
Fixed : Set SL in fixed point below entry point (in 'Dollar'). e.g. for Stocks -> 0.5 equals to 50cent while for EURUSD currency -> 0.005 equal to 50 pips
HiLo Bar : Set SL at highest/lowest wick of previous bar plus/minus Fixed point. e.g. EURUSD HiLo=3 and Fixed Point = 0.0005, buy trade will place SL 5 Pips below lowest of previous 3 bar
SL ATR Period --> Set Lookback Period used for SL's ATR calculation
SL ATR Multi --> Set ATR Multiplier for SL
SL Fixed --> Set Fixed Level for SL (Use when SL Type is either Fixed or HiLo Bar)
SL Bar --> Set Number of previous bar to check for SL placement
TP RR Ratio --> Set TP based on RR multiplier. e.g. 2 means TP level will be twice further from entry point compared to Entry-SL distance.
Notes: The point is for preliminary testing, so it only supports 1 trade at a time and no Trailing Stop
----------------------------
Disclaimer:
This script main objective is to create my personal indicator template so that i just have to modify the indicator module for preliminary testing in future.
Testing Alert Module so i can re-use it as template in future study/indicator
Testing Visual Backtest Module so i can re-use it as template in future study/indicator
i believe using Strategy function is a better approach for this but the entry/exit level seems to be hit n miss (at least for me, still trying to figure what i did wrong)
also, i rather code the strategy in other platform where i can use the more accurate tick data if i want to validate backtest statistics.
My study scripts was built only to test/visualize an idea to see its viability and if it can be used to optimize existing strategy.
credit: ADX code are originally from "ADX and DI" by @BeikabuOyaji although i re-wrote so i can have cleaner read and use RMA instead of SMA
Vwap Pvwap Intraday Trend - NiftyKishoreHello Traders !!
This is a simple trend identification script which is based on the current vwap (Cvwap) and previous vwap (Pvwap).
Pvwap in the sense; previous day vwap closing value.
Bullish: price is closing above the current day vwap and previous day vwap(pvwap).
Bearish : Price is closing below the current day vwap and previous day vwap (pvwap).
Made a change to the barcolors as well :)
Bullish
Green Bar: close is above Pvwap and Cvwap.
Blue bar: close is above Pvwap but below Cwap.
Bearish
Red bar: close is below Pvwap and Cvwap.
Purple bar: close is below Pvwap but above Cvwap.
Simple but effective
Cheers !!
Monthly Options Expiration 2021Monthly options expiration for the year 2021.
Also you can set a flag X no. of days before the expiration date. I use it at as marker to take off existing positions in expiration week or roll to next expiration date or to place new trades.
Happy new year 2021 in advance and all the best traders.
Swing Reversal IndicatorSwing Reversal Indicator was meant to help identify pivot points on the chart which indicate momentum to buy and sell. The indicator uses 3 main questions to help plot the points:
Criteria
Did price take out yesterday's high or low?
Is today's range bigger than yesterday? (Indicates activity in price)
Is the close in the upper/lower portion of the candle? Thus, indicating momentum in that direction
This indicator was built to help me find pivot points for directional options trading however can be used for equities and forex swing trading and other strategies. Used in conjunction with a BB extreme can provide good setups.
Alerts are available for both the long and the short positions and the indicator will repaint as price moves.
The character Plotted can be changed in the settings
The size of the candle area can be changed as well if you want to tighten/loosen the trigger points based on the third question above.
PpSIgnal Quantile Band 4.0Quantile band: In statistics and the theory of probability, quantiles are cutpoints dividing the range of a probability distribution into contiguous intervals with equal probabilities, or dividing the observations in a sample in the same way.
Quantitative Qualitative Estimation is based on a rather complex calculation of the smoothed RSI indicators.
The QQE indicator consists of a smoothed Relative Strength Index ( RSI ) indicator and two volatility-based trailing levels (fast and slow). The Fast Trailing Level (TL) and Slow TL are constructed by calculating the ATR of the smoothed RSI over n-periods and then further smoothing the ATR using an additional n-periods Wilders smoothing function. This smoothed ATR of RSI is then multiplied by the Fast and Slow ATR Multipliers to calculate the final Fast and Slow Trailing Levels.
Buy when the Quantile band is green.
Sell when the Quantile band is red.
when the quantile band is gray hold
Prophetic BUY SELL IndicatorThis premium indicator will help you to do quick scalping on Cryptocurrencies, Forex, and Stocks.
This indicator is very simple to understand.
Green BUY Alert - Buy Signal Market is up
Red SELL Alert - Sell Signal Market is down
Caution:- Do not use it during market being choppy or sideways
Once the BUY signal appears the background changes green and same with SELL it turns red
can change the color according to requirements
It also has a moving average which also changes the color as the candles close above the MA or the below Default color are green and red
Please Like Share and Follow and if required please contact:- @mobudd (TELEGRAM)
or Ping me on trading view
Guys, It takes effort so please do not ask for free access.
You're always welcome to share any type of suggestion & feedback.
Trendy Bar Trend Color LiteLite version of the original Trendy Bar Trend Color
This will only color the candlestick body of your chart
Can be used with solid, hollow, renko, or any other chart type
Custom coloring for Highs, Lows, and consolidation is removed
Buy/Sell ZonesEN:
This indicator is made to display main buy/sell zones of an asset. The core parameters are: Price, Volume and Donchian Channels.
It is more trend-based and may be suitable for swing traders or those who trade higher timeframes (1D and above).
The plotted colors display the dominance of buyers, sellers or indecision on the market at the current timeframe.
If the zone is green - consider opening Long/Buy positions.
If the zone is red - consider opening Short/Sell or scale out your position.
The white zone displays indecision between Bulls and Bears - consider not to take any trades within white zone.
RU:
Этот индикатор показывает зоны покупателя/продавца выбранного актива. Основные параметры расчета: Цена, Объем и Каналы Дончиана.
Он является индикатором трендового анализа и больше подходит для свинг-трейдеров или тех, кто торгует на старших таймфреймах (от 1Д).
Отображаемые цвета показывают доминацию продавца, покупателя или неопределенность на рынке в конкретный временной период.
Зеленая зона указывает на преобладание покупателя - возможно открытие длинных позиций/покупок .
Красная зона указывает на преобладание продавца - потенциальный момент для открытия коротких позиций/продаж или сокращения своих длинных позиций/покупок .
Белая зона указывает на неопределенность на рынке - в этой зоне лучше не предпринимать никаких торговых решений .
EN: This indicator may be used for Crypto markets
RU: Этот индикатор можно использовать для криптовалютных рынков
BITSTAMP:BTCUSD
BITSTAMP:ETHUSD
COINBASE:COMPUSD
EN: Stocks, CFD and commodities
RU: Акций, CFD и рынков сырьевых товаров
FOREXCOM:SPXUSD
NASDAQ:TSLA
NYSE:BA
NASDAQ:EBAY
FOREXCOM:XAUUSD
EN: Consider using it with respect to Your trading style, money- and risk-management as well as other indicators
RU: Используйте этот индикатор в соответствии со своим стилем торговли, риск-, мани-менеджментом и другими индикаторами.
[astropark] Auto Fibonacci Retracement ExtensionDear followers,
today a new analysis tool for day trading, scalping and swing trading: Automatic Fibonacci Retracements and Extensions drawer!
It works on every timeframe and market, as it simply draws automatically most important fibonacci levels on the chart.
Based on the analysis window set (default 100 bars, but you can edit it as you like), it finds recent high and low and start drawing the following levels:
recent high and low (black)
golden retracement range: 0.5 * 0.618 * 0.705 fibonacci retracements (gold)
fibonacci extensions range above 1: 1.272 * 1.424 * 1.618 * 2.618 * 4.236 (blue)
fibonacci extensions range below 0: -0.238 * -0.618 * -0.706 * -1(fuchsia)
Whenever the indicator finds a new high or a new low, al fibonacci levels are re-draw automatically.
The indicator will let you:
change analysis window
enable displaying labels related to current fibonacci levels and/or prices
change colors
show/hide each specific level
How to use the indicator?
Basically, all techniques which apply to fibonacci tool are valid here too.
After a big move up or down, a new high or low is created and a retracement is expected: if trend is strong, retracement to golden ration 0.618 will be a perfect spot for buy or sell respectively in order to continue riding the trend.
In general a bounce is always expected when price hit 0.618 retracement , good to know for scalping traders, while swing trades will continue holding the trade for higher profits.
If the golden retracement range (0.5 - 0.705) is broken and then retested from the other side, a continuation move is expected towards previous high/low (fib level 1) and even more towards the fibonacci extensions range above 1 (1.618 - 2.618 - 4.236).
If the base of bounce and trend continuation on golden retracement range, traders can expect
price to hit again previous high/low and
if trend is strong, a consolidation near the previous high/low range (conditions that are respectively bullish and bearish)
do a further continuation towards -0.618 fib level range
Traders must always understand that
the higher the timeframe, the stronger is the meaning and so the reaction when a specific fibonacci level is hit
don't trade blindly, try to find confluences to have an higher chance to be in a winning trade in near future
money and risk management are very important, so manage your position size and always have a stop loss in your trades
As said, this indicators work on every timeframe and in all markets (Crypto currencies, stocks, FOREX, indexes, commodities). Here some examples:
BTCUSDT 1D: after a long run, a retracement is expected and a bounce at 0.618 golden level is more than obvious: perfect short (sell) entry
BTCUSDT 1D: again as previous example, after a long run, a retracement is expected as well as price's bounces back above
EURUSD 1h: lots of info here, directly in the chart below:
bounces on 0.618 golden zone
double top
price breaks 0.618 level and retests it from below targeting previous low
double bottom and bounce back towards golden zone
bearish consolidation at recent low and further decline towards 1.618 fib extension
AMZN 1h stock: lots of info here too, directly in the chart below:
new high is print, price retrace to golden zone
bounces on 0.618 golden zone
price breaks 0.618 level and retests it from below targeting previous low
double bottom and bounce back towards golden zone
rejection at golden zone, price falling targeting previous low again and probably 1.618 fib extension
price breaks hard previous low and hits fib extension range below recent low
price retraces back up towards new golden retracement range
golden retracement range is broken and used as support: targets are previous high and 1.618 extension
once 1.618 extension level is broken and retested successfully as support, price moves towards 2.618 fibonacci extension level
SPY (SPX500) index: lots of info in the chart
interesting to note that March 2020 huge dump can be totally mapped as a series of fibonacci level bounces, so you understand the importance of riding a trend now, right?
after the low was formed, price retraced perfectly to golden ration 0.618
each time price hit a golden level/range, it retraces creating double top and double bottom configurations too
In the chart below we can see the power of the double bottom at golden retracement level: targets are previous high and -0.618 fibonacci extension level
XAUUSD 15m: as we are in a lower timeframe, the default analysis windows has been reduced to 50.
What can we see here:
golden retracement and price is rejected towards previous low
golden retracement hit and price bounces back lower
new high is formed: golden retracement hit and price bounces back higher
price break previous high and hits fibonacci extensions -0.618 and -1
price continues rising forming a regular bearish divergence with RSI
once uptrend is broken, price falls dramatically
first target is 0.618 retracement level, where you see a very small retracement due to strength of sellers
second target is previous low, which is broken and retested many time from below (bearish retest)
third target is fibonacci extension range (in this case 1.414 is almost hit)
as an hidden bullish divergence with RSI was created, price goes back up
This is a premium indicator , so send me a private message in order to get access to this script.
MACD with 3 strategiesMACD WITH 3 STRATEGIES
- Macd line change colour when cross the signal line
- Background Color change colour based on a moving average, on settings the value of the moving average can be changed 50,100,150,200
- Strategy one based on Macd lines with bar changing colours
- Strategy two based on Macd lines but with a different method
- Strategy three based on two other trending indicators
This indicator can be used to spot trends and changing of direction of the market and with the bar coloured its easier to identify them.
The strategy one can be used as confirmation of a trend or as changing direction integrated with other indicators like Rsi , Stochastic, Supertrend , Bollinger band, with ema option mode works better.
The strategy two can be use together with the back ground colour: When is red and the candles are red can be identified as strong drown trend.
When is green and the candles are green can be identified as strong up trend.
The strategy three can be used after checked the strategy two for more confirmation for a trend.
VERY IMPORTANT WHEN YOU TRY A NEW STRATEGY TEST IT IN A DEMO ACCOUNT FOR AT LEAST 3 MONTHS
Every donations will be devolved to cancer research and you ll have one month free trial.
If you want to purchase this indicator 30% will be devolved to cancer research.
Please leave a comment or message me if you want you have two weeks trial.
Enjoy!
[astropark] DMI/ADX strategy [alarms]Dear Followers,
today I'm happy to share with you my DMI / ADX Strategy .
It provides directional trend information, so if a bullish or a bearish trend is going to start. Statistically it works better on lower timeframes (from 5 minutes to 1 hour).
It is both a Swing and Scalping Strategy indicator , based on a simple trend following theory , good for trading FOREX, Indexes, Stocks, Commodities and Cryptocurrencies.
To help in Taking Profits, the strategy integrates 2 special other than bull/bear signals:
Overbought and Oversold RSI Signals , which appear both as darker background (the darker the color, the more the price is in overbought/oversold) and green "ob"-"tp" / red "os"-"tp" labels (they optionally pop up only on a configurable stronger overbought/oversold condition) (you can enable/disable it optionally)
Peak Profit Tracker , which resets every time a new trade starts and keeps track of price fluctuation during the trade: the message is don't be too greedy and take profits or lock them with a stoploss in profit (you can enable/disable it optionally)
You can edit many options in order to
have more/less bull/bear signals
enable/disable showing bull/bear signals
enable/disable showing RSI TP signals (you can edit RSI length, overbought (OB) and oversold (OS) levels)
enable/disable showing peak profits on each trade
The user who wants to use this strategy, especially via an automated bot, must always set a stoploss (example 150$ from entry on bitcoin ) or use a proper risk management strategy .
This is not the "Holy Grail", so use it with caution. It's highly suggested to use a proper money management .
This script will let you set all notifications you may need in order to be alerted on each triggered signals.
You can find the strategy version for backtesting here below:
Here there are some examples how this DMI / ADX strategy works on many markets:
LTC/USDT 15m
BTC/USD 15m
BNB/BTC 15m
ETH/USD 15m
GOLD (XAU/USD) 15m
GOLD (XAU/USD) 1h
FB 15m
AAPL 15m
TSLA 1h
BANKNIFTY Index 5m
NIFTY 50 Index 5m
This is a premium indicator , so send me a private message in order to get access to this script .
[astropark] Nova BandsDear followers,
today a new analysis and scalping tool for day trading on low timeframes (5-15 minutes) or to plan swing trades on hourly timeframes. It can be used also on high timeframes just for analysis current market trend.
The indicator plots a series of levels which create a nice bands flow.
The slope of levels make you easily understand when price is in consolidation, in uptrend or in downtrend.
The golden rule is always the same: buy low and sell high .
This indicator plots:
3 "price is low here" levels (from dark green to light green)
3 "price is average here" levels
3 "price is high here" levels (from purple to orange)
When bands are flat, price is in consolidation and this is best condition to trade with nova bands.
When price reaches higher bands, you will open a short position with targets below levels, fully closing your position when price hits the average level (black).
Here an example on Bitcoin on 15m using 1h resolution:
The same applies when price reaches lower bands, you will open a long position with targets above levels, fully closing your position when price hits the average level (black).
When bands get nearer and nearer is called "Bands Squeeze": price is next to a main breakout move, volatility is coming!
Here an example of SPX500: after long consolidation and bands getting nearer and neared, we had the breakout, downwards in this case.
In this screenshot you can see what signals algorithm provided:
Our suggestion is to play safe these kind of scenarios, no reason to FOMO buy/sell. Just wait for price consolidation / getting back inside the bands.
For example you would have skip first three buy signals, while you would have longed the last two as price came back inside bands after the big volatility which made price went below bands.
Another example is TSLA stock on 15m with 1h resolution:
Price touched the first bullish level and made a big move upwards, breaking bands with a +90% move.
In this case, you would have skipper first 2 sell signals, while you would have accepted next two with stoploss above recent high.
Acceptable also the other two sell signals, which you may have closed when price retraced to lower levels:
You can of course run trends like this buying on price hitting bullish/lower levels after a long consolidation and sell on price hitting middle and higher levels:
A trader who wants to be a winner must understand that money and risk management are very important, so manage your position size and always have a stop loss in your trades.
Here some examples how the indicator works on different markets:
EURUSD 15m with standard settings and 1h resolution
GOLD (XAUUSD) 15m with standard settings and 1h resolution
Facebook (FB) 15m with standard settings and 1h resolution
This is a premium indicator , so send me a private message in order to get access to this script.
[astropark] trade yesterday rangeDear followers,
today a nice scalping tool for day trading on low time frames (1-3-5 minutes)!
Each day the indicator will print some important levels and ranges related to the trading day before:
yesterday high (black line)
yesterday day range averange (silver line)
yesterday low (black line)
average between yesterday high and yesterday average, together with a resistance range (red)
average between yesterday low and yesterday average, together with a support range (green)
two extension ranges above yesterday high (first is blue, second is red)
two extension ranges below yesterday low (first is blue, second is green)
Trading levels is one of most effective trading tecniques:
once a level is broken upwards, you can long (buy) the bullish retest with stoploss below recent low
once a level is broken downwards, you can short (sell) the bearish retest with stoploss below recent high
consolidation below or at a resistance level is bullish, so long (buy) breakout upwards and long more on a bullish retest of broken level
consolidation above or at a support level is bearish, so short (sell) breakout downwards and short more on a bearish retest of broken level
many times you see a level to be tested 2 or 3 times: short (sell) double and triple top, long (buy) double or triple bottom
Here you can see the levels described above and basic usage in a consolidation trading day:
A trader who wants to be a winner must understand that money and risk management are very important, so manage your position size and always have a stop loss in your trades.
Here you can see many examples on how to use this indicator.
Triple top on yesterday range high: perfect short setup (5 take profits targets in the example)
Resistance levels broken: long setup on bullish retest (2 take profits targets in the example)
Double top and support broken: 2 short setups (2 and 3 take profits targets in the example)
Here some examples how to basically use the indicator in a consolidation trading day: short (sell) resistance levels, long (buy) support levels
This is a premium indicator , so send me a private message in order to get access to this script.
cosmic scalperCosmic Scalper is an intuitive & exotic trading engine, designed to Identify Trend, visually highlight our “Zone of Interest” & plot entry lines at its base, like a barcode, providing critical information to the trader’s mind in a clean, elegant way without cluttering the chart.
Components Of Script :
1. Trend Support Cloud : Based on Fibonacci ratio, the cloud has 3 layers or bands.
2. Entry Engine : The last band of the cloud gets highlighted when we enter “Zone of Interest” & vertical lines appear indicating possible entry points. Together this forms a trend fingerprint.
Mechanism Of Action :
1. Identify trend : The script observers multiple parameters on higher timeframes to identify trend & plots the fibonacci based 3 layer trend support cloud. The script will indicate a change of trend when the last band is breached & sustained.
2. Zone Of Interest : Once a trend is identified, we are looking for entries. But we wait for the other side to get exhausted first. When exhaustion is identified, the last band of the cloud gets highlighted. This “exhaustion” is measured using bespoke datasets created within the protocol. Conventional datasets like RSI, VWAP, MACD etc are only used as secondary or tertiary layer of information.
3. Entries : Once we have entered the highlighted ‘Zone of Interest’ the script will offer entry points represented by vertical lines in the last band, this Highlight + Vertical Lines together forms the trend fingerprint, giving traders crucial visual information to make informed decisions.
How to use :
1. Make a Higher Timeframe Analysis, 4hr, 6hr or Daily timeframe. Use TA or Bollinger Bands.
2. Once you have an informed bias, switch to the Cosmic Scalper on 1min timeframe to take position.
3. Target, Stop, Leverage : at user discretion
Have Questions? Feel free to PM me on TradingView
Real Relative Volume - Bar Indicator - Time Adjusted - DE & ENEnglish version below
Die richtige Aktie zu finden, ist nich immer einfach. Eine wichtige Variable bei der Aktienauswahl stellt das relative Volumen dar, welches von vielen erfolgreichen Tradern und Trading Firmen benutzt wird. Stell es Dir so vor: Statt sich das absolute Volumen anzuschauen, schauen wir uns die tatsächliche Stärke an. Wie viel Volumen wird also heute im Vergleich zu einem regulären Tag gehandelt. Dies gibt Aufschluss darüber, ob die Aktie "In-Play" ist.
Merke: Ist das RVOL (Relative Volumen) erhöht, sind mehr Marktteilnehmer an dieser Aktie interessiert als üblich. Dies ist besonders dann wichtig, wenn die Marktrichtung und die Richtung der Aktie nicht übereinstimmen.
Wenn der Markt steigt, steigen auch die meisten Aktien. Dies kann folglich auch ohne erhöhtes RVOL passieren. Was ist aber, wenn der Markt gegen uns geht? Dann werden wir schnell bei RVOL-schwachen Aktien ausgeschüttelt. Daher wollen wir unseren Fokus immer auf Aktien setzen, die ein erhöhtes relatives Volumen haben! Dies sind die Aktien, die gerade wirklich stark gehandelt werden und wahrscheinlich einen Katalysten dafür haben.
Der Real Relative Volume - Bar Indicator zeigt Dir das aktuelle relative Volumen an. Unser Algo benutzt dabei das tatsächliche kumulative Volumen des aktuellen Tages zum jeweiligen (aktuellen) Zeitpunkt und vergleicht dieses mit dem historischen Durchschnittsvolumen zum gleichen Zeitpunkt. Damit bekommen wir ein korrektes Abbild der aktuellen Stärke. Mit Hilfe des Indikators können wir durch die farbliche Veränderung der Volumenbalken ebenfalls sehen, ob diese Stärke zunimmt, gleich bleibt, oder gegebenenfalls schnell and Power verliert. Im Gegensatz zu anderen Skripten nutzen wir eine fortschrittliche Methode, die aktuelle Position am Tag erkennt und damit nicht die Session in gleiche Teile teilt. Vorteil: Der Indikator funktioniert auch in Krypto, Forex, DE-Aktien, Indizes etc.
Funktionen:
Bitte ohne verlängerte Handelszeiten nutzen!
Sessions Back: Verändert die Baseline, die Du mit dem heutigen Volumen vergleichst. Beispiel: 10 - Zur aktuellen Uhrzeit siehst Du das reale relative Volumen von heute in Relation zu den letzten 10 Sessions (zur gleichen Zeit). (*max 5000 Kerzen)
RVOL Threshold: Wert für die RVOL Alarme sowie zur Färbung bei Nutzung des Modus Threshold.
Plot styles: Du hast die Möglichkeit aus 4 verschiedenen Styles zu wählen.
Heatmap (greift auf die Werte und Farben von HM1-HM5 zurück)
Traffic (greift auf die Werte und Farben von T1-T4 zurück) -
Threshold (greift auf den Werte RVOL Threshold zurück)
Kurs (zeigt die normalen Volumenbalken)
HM1-5: Stelle unterschiedliche RVOL Werte für den Plot Style Heatmap ein.
T1-4: Stelle unterschiedliche RVOL Werte für den Plot Style Traffic ein.
Dieser Indikator wird häufig mit unserer zweiten Version Real Relative Volume - Line Indicator - Time Adjusted - DE & EN verwendet. Stelle sicher, dass Du in beiden Indikatoren die gleichen RVOL Werte nutzt!
-------------
English version
Finding the right stock to trade is not always easy. An important variable in stock selection is the relative volume, which is used by many successful traders and trading firms. Think of it like this: Instead of looking at absolute volume, we look at actual strength. So how much volume is traded today compared to a regular day? This gives an indication of whether the stock is "in play".
Note: If the RVOL (relative volume) is increased, more market participants are interested in this share than usual. This is especially important if the market direction and the direction of the stock do not match.
If the market rises, most shares will also rise. This can, therefore, happen without an increased RVOL. But what happens if the market goes against us? Then we are quickly shaken out of RVOL-weak stocks. Therefore, we always want to focus on stocks that have an increased relative volume! These are the stocks that are trading really strongly right now and probably have a catalyst for that.
The Real Relative Volume - Bar Indicator shows you the current relative volume. Our Algo uses the actual cumulative volume of the current day at the respective (current) time and compares it with the historical average volume at the same time. This gives us a correct picture of the current strength. With the help of the indicator, we can also see by the color change of the volume bars whether this strength increases, remains the same, or loses power quickly. Unlike other scripts, we use an advanced method that recognizes the current position on the day and does not split the session into equal parts. Advantage: The indicator also works in crypto, forex, foreign stock markets, indices, etc.
Features:
Please use without extended trading hours!
Sessions Back: Changes the baseline that you compare to today's volume. Example: 10 - At the current time you see the real relative volume of today in relation to the last 10 sessions (at the same time). (*max 5000 candles)
RVOL Threshold: Value for the RVOL alarms as well as for coloring when using the Threshold mode.
Plot styles: You have the possibility to choose from 4 different styles.
Heatmap (uses the values and colors of HM1-HM5)
Traffic (uses the values and colors of T1-T4) -
Threshold (accesses the values RVOL Threshold)
Price (shows the normal volume bars)
HM1-5: Set different RVOL values for the Plot Style Heatmap
T1-4: Set different RVOL values for the Plot Style Traffic.
This indicator is often used with our second version Real Relative Volume - Line Indicator - Time Adjusted - DE & EN. Make sure that you use the same RVOL values in both indicators!
Real Relative Volume - Line Indicator - Time Adjusted - DE & EN// English description below
Die richtige Aktie zu finden, ist nich immer einfach. Eine wichtige Variable bei der Aktienauswahl stellt das relative Volumen dar, welches von vielen erfolgreichen Tradern und Trading Firmen benutzt wird. Stell es Dir so vor: Statt sich das absolute Volumen anzuschauen, schauen wir uns die tatsächliche Stärke an. Wie viel Volumen wird also heute im Vergleich zu einem regulären Tag gehandelt. Dies gibt Aufschluss darüber, ob die Aktie "In-Play" ist.
Merke: Ist das RVOL (Relative Volumen) erhöht, sind mehr Marktteilnehmer an dieser Aktie interessiert als üblich. Dies ist besonders dann wichtig, wenn die Marktrichtung und die Richtung der Aktie nicht übereinstimmen.
Wenn der Markt steigt, steigen auch die meisten Aktien. Dies kann folglich auch ohne erhöhtes RVOL passieren. Was ist aber, wenn der Markt gegen uns geht? Dann werden wir schnell bei RVOL-schwachen Aktien ausgeschüttelt. Daher wollen wir unseren Fokus immer auf Aktien setzen, die ein erhöhtes relatives Volumen haben! Dies sind die Aktien, die gerade wirklich stark gehandelt werden und wahrscheinlich einen Katalysten dafür haben.
Der Real Relative Volume - Line Indicator zeigt Dir das aktuelle relative Volumen an. Unser Algo benutzt dabei das tatsächliche kumulative Volumen des aktuellen Tages zum jeweiligen (aktuellen) Zeitpunkt und vergleicht dieses mit dem historischen Durchschnittsvolumen zum gleichen Zeitpunkt . Damit bekommen wir ein korrektes Abbild der aktuellen Stärke. Mit Hilfe des Indikators können wir ebenfalls sehen, ob diese Stärke zunimmt, gleich bleibt, oder gegebenenfalls schnell and Power verliert. Im Gegensatz zu anderen Skripten nutzen wir eine fortschrittliche Methode, die aktuelle Position am Tag erkennt und damit nicht die Session in gleiche Teile teilt. Vorteil: Der Indikator funktioniert auch in Krypto, Forex, DE-Aktien, Indizes etc.
Funktionen:
Bitte ohne verlängerte Handelszeiten nutzen!
Sessions Back: Verändert die Baseline, die Du mit dem heutigen Volumen vergleichst. Beispiel: 10 - Zur aktuellen Uhrzeit siehst Du das reale relative Volumen von heute in Relation zu den letzten 10 Sessions (zur gleichen Zeit). (*max 5000 Kerzen)
Threshold: Stelle eine bestimmte Schwelle ein, bei der Du dich über die TradingView Funktion alarmieren lassen möchtest.
T1-4: Stelle unterschiedliche RVOL Werte ein.
Use Traffic Color for Line: Die unterschiedlichen T1-4 Werte und Farben werden für das Liniendiagramm genutzt.
Dieser Indikator wird häufig mit unserer zweiten Version Real Relative Volume - Bar Indicator - Time Adjusted - DE & EN verwendet.
/////// English version
Finding the right stock is not always easy. An important variable in stock selection is the relative volume, which is used by many successful traders and trading firms. Think of it like this: Instead of looking at absolute volume, we look at actual strength. So how much volume is traded today compared to a regular day? This gives an indication of whether the stock is "in play".
Note: If the RVOL (relative volume) is increased, more market participants are interested in this stock than usual. This is especially important if the market direction and the direction of the stock do not match.
If the market rises, most shares will also rise. This can, therefore, happen without an increased RVOL. But what happens if the market goes against us? Then we are quickly shaken out of RVOL-weak stocks. Therefore, we always want to focus on stocks that have an increased relative volume! These are the stocks that are trading really strongly right now and probably have a catalyst for that.
The Real Relative Volume - Line Indicator shows you the current relative volume. Our Algo uses the actual cumulative volume of the current day at the respective (current) time and compares it with the historical average volume at the same time . This gives us a correct picture of the current strength. With the help of the indicator, we can also see whether this strength increases, remains the same, or if it loses power quickly. Unlike other scripts, we use an advanced method that recognizes the current position on the day and thus does not split the session into equal parts. Advantage: The indicator also works in crypto, forex, foreign stock markets, indices, and many more.
Functions:
Please use without extended trading hours!
Sessions Back: Changes the baseline that you compare to today's volume. Example: 10 - At the current time you see the real relative volume of today in relation to the last 10 sessions (at the same time). (*max 5000 Bars)
Threshold: Set a certain threshold at which you want to be alerted via the TradingView function.
T1-4: Set different RVOL values.
Use Traffic Color for Line: The different T1-4 values & colors are used for the line plot.
This indicator is often used with our second version Real Relative Volume - Bar Indicator - Time Adjusted - DE & EN .
ETS Breakout LevelsThis indicator mimics the breakout levels a professional trader would draw and watch for trading opportunities. It is a very powerful tool to have.
The lines are drawn as soon as a new breakout level is detected, and the line is then automatically extended to the right, making it easy to see when the market reacts to it.
Knowing where important levels on a chart are, immediately takes you from having no idea where the market might make a big move, to being a trader ready to take action at the right time.
The Breakout Levels indicator is also very good at keeping you out of the market when it's simply choppy and difficult to trade, because the breakout levels will most likely fall outside of the choppy sideways consolidation area, but still prepare you for when the market finally picks a direction again.
This indicator also includes colored time bands that mark times during the trading day where historically stocks often reverse course, or may enter a period of consolidation. These times coincide with tea breaks, lunch breaks or times when news are typically announced.
For Forex traders, there are colored session bands that help you to easily see when the major markets are open.
What Makes It So Powerful?
- Give you a signal as early as possible and does not "repaint" once the bar completes
- Reacts to fast market direction changes like a master trader
- Is super easy to understand and implement in your trading
- Can be used for Forex, Stocks and Crypto
- Works on all timeframes
This indicator also has a number of options you can change in Settings:
1. "Safety Margin" - I keep this at zero, but if you want a bigger "buffer" for safety before entering a trade you can increase this value.
2. "Hidden Above Interval (Minutes)" - The Forex sessions or Stock important daily times can be set to be hidden above a certain timeframe to keep your charts clean.
3. "Show Moving Averages" - All of the moving averages that are included for convenience can be shown or hidden by setting this value.
3.1. The next 5 settings all deal with moving averages that can be shown or hidden individually.
4. "Show Stock Pivot Times" - There are a number of trading times for US Stocks that are important during the trading day, and this setting will highlight them.
4.1. "Show Main Stock Pivot Times" - This shows only the Stock trading times that are deemed the most important, and around these times the market often change direction (e.g. after the morning break, after lunch, etc.)
5. "Show Forex Sessions" - Does pretty much what it says, and you can also adjust the hours if you wish.
6. "Extreme Move Reversal Points" - If an extreme market move has been detected, and this is enabled, a "X" will be shown above or below the bar to indicate that the market might reverse.
7. "More Signals" - If you want to see more potential breakout levels, enable this option.
8. "Show VWAP" - This will include the VWAP indicator as a convenience if selected.
How To Use the ETS Breakout Levels Indicator
1. Add the indicator to any chart you wish to trade, Crypto, Forex or Stocks and set it to the timeframe you prefer. For instance, I use it on 1 minute and 5 minute charts for daytrading Stocks. For Forex I generally use a 15 minute chart, and longer timeframes for Crypto.
2. Open the Settings and change values to suit your requirements as described above.
3. When the indicator has determined that a new breakout level has formed, it will draw a line and extend it to the right so that you can see when future bars come close to it.
4. Price action will either bounce off it, or pierce through it and continue on.
5. If the market is relatively far away from smaller moving averages such as the 9 EMA or 20 EMA, expect that the price action might first move back to the moving averages before continuing in the new direction identified by the indicator.
6. When these levels are broken, it is often an indication of a breakout occurring and it can give you some very significant market moves.
This is an "invite only" script, which means that you will need to let me know that you're interested in it before you can get access to it. This is a paid script, please follow the link in my profile to get the details or ask me directly. It may take up to 48 hours for me to respond, but I do my best to respond as quickly as possible. You will get 7 days to test it for yourself on all your charts with no restrictions.
ETS Trending ArrowsThis indicator is the end result of years of trial and error to create an indicator that aims to mimic market entry points that a professional trader would take.
It has arrows that clearly show potential market entry points, and suggested stop-loss levels. What I like about it is that it generally responds as fast to market changes as a good trader would, leaving you enough time to still validate the move before taking it.
This basically levels the playing field, because even if you're a rookie trader, or maybe an experienced trader in a slump, this indicator can help you to identify possible trading entry points that is responsive to market moves, and that can be used on different timeframes based on how you want to trade. And if you're an experienced trader, this indicator will help you like a good trading buddy to make good trading decisions.
What Makes It So Powerful?
- Give you a signal as early as possible and does not "repaint" once the bar completes
- Reacts to fast market direction changes like a master trader
- Is super easy to understand and implement in your trading
- Can be used for Forex, Stocks and Crypto
- Works on all timeframes
How To Use The ETS Trending Arrows Indicator
1. Add the indicator to any chart you wish to trade, Crypto, Forex or Stocks and set it to the timeframe you prefer. For instance, I use it on 1 minute and 5 minute charts for daytrading Stocks. For Forex I generally use a 15 minute chart, and longer timeframes for Crypto.
2. Open the Settings and change values to suit your requirements:
2.1. "Early Trigger Live Signals / Stable Signals" - When you select "Stable Signals", the arrows will appear once the bar closes, on the new bar. Selecting "Early Trigger" will signal instantly and can give you an early entry, but may update in some cases as conditions change.
2.2 "Show More Signals" - This pretty much does what it says. If you don't want all possible signals, this will scale things back a bit and give you fewer signals.
2.3. "Show 20, 50, 200 Moving Averages" - This is just a convenience, and is provided to help you exit trades, which I typically do when price crosses back over the 9 EMA or 20 EMA.
2.4. "Show 9 Expo Moving Average" - Also provided for convenience, and separate in case you don't want this level of detail.
2.5. "Show Immediate Reversals" - Personally I don't use this setting, but someone requested that I add it. What it will do is if there is a signal, which then immediately passes the "stoploss" dotted line, this will immediately give a signal in the opposite direction.
2.6. "Show Bollinger Bands" - This is also only provided for convenience, I use Bollinger Bands to determine where the market move is in relation to the average deviation.
2.7. "Bollinger Bands Length" - Simply the regular BB length setting.
2.8. "Bollinger Bands Deviation" - I use a 2.5 setting by default in order to better identify areas where the price action is really far beyond where it should be.
3. Now that you've set things up, all you need to do is to wait for a signal. As mentioned earlier, the signals will react differently based on whether you chose "Early Trigger Live Signals" or "Stable Signals". If you opt for "Early Trigger Live Signals", like I do, you should pay attention to where the market currently is in relation to the closest moving average, like the 9 EMA or 20 EMA. Keep in mind that price will often signal a new move, but then first move back to the average, before continuing in the new direction identified by the trading arrow.
4. These signals are intended to identify new trending moves, and for that reason, if the market moves against the signal, you should not hold on to your position hoping that it will turn in your favor.
5. When the market is moving in your favor, resist the urge to exit quickly, and use either (or both) the 9 EMA and 20 EMA to exit your trades. A good approach is to use the 9 EMA to exit a portion (maybe 50%) of your trade, and exit out of the rest once price closes above or below the 20 EMA depending on the direction of your trade.
This is an "invite only" script, which means that you will need to let me know that you're interested in it before you can get access to it. This is a paid script, please follow the link in my profile to get the details or ask me directly. It may take up to 48 hours for me to respond, but I do my best to respond as quickly as possible. You will get 7 days to test it for yourself on all your charts with no restrictions.