Custom Indicator Clearly Shows If Bulls or Bears are in Control!The Two Versions of this Indicator I learned from Two Famous and Highly Successful Traders. This Indicator shows With No Lag Clear Up and Down Trends in Market by Documenting Clearly If Bulls or Bears are in Control. The Version In SubChart 1 Shows Consecutive Closes if the Current Close is Greater than of Less than the Midpoint of the Previous Bar (Why Midpoint Explained in Detail in 1st Post). The Version in SubChart 2 Shows Consecutive Closes that are Greater than or Less Than the Previous Close (Will Discuss Specific Uses in 1st Post). Works on Stocks, Forex, Futures, on All Timeframes.
在腳本中搜尋"bar"
ARKA-Stoplight Trend AnalysisBars turn green when the 5-period moving average is above the 15-period moving average, and the 15-period moving average is above the 30-period moving average. If all three degrees of the trend are positive, the trend is up, and we can more confidently enter on the long side by confirming our trading system.
Bars turn red when the 5-period moving average is below the 15-period moving average and the 15-period moving average is below the 30-period moving average. If all three degrees of the trend are negative, the trend is a downside, and we can enter on the short side by confirming our trading system.
The bars turn yellow when the three moving averages are not in the two ways mentioned above, it is a sign of weakness and side market. In this situation, because the direction of the market is not yet clear, we do not have an entry and we wait.
VWAP filtered MACD Bars with positive MACD histogram value and closing above VWAP are colored, long positions should be taken in areas made of those bars.
Similarly, bars with negative MACD histogram value and closing below VWAP are also colored, short positions should be taken there.
This indicator by default should be a part of your trend following trading system.
In the setting you can change colors
Above grow: positive and rising MACD histogram value
Above fall: positive and falling MACD histogram value
Below fall: negative and falling MACD histogram value
Below grow: negative and rising MACD histogram value
MACD Cross-over ZonesBars above candles are color-based on MACD, when it turns bearish it will paint red and when it turns bullish green. Since the bars are painted above the candlestick one can see the price divergence in here too.
When one sees price is making higher highs or inside flat neutral momentum while MACD is in red, means weakness of selling.
When one sees price is making lower highs and MACD is red, it's signal that bears show strength and holding a short has more confidence until MACD turns green.
When one sees price is making lower highs and MACD is green, it's sign of weakness in buying, be cautious for reversal while holding (a long).
When one sees price is making higher highs and MACD is green, it's a sign of strength, one will be more confident holding a long until MACD turns red.
Bar numberAdds a number above the last 50 candles. Candle 1 is always the most recent.
Can be useful when teaching people onlinet. Now they can just ask « what’s candle number 20 » instead of « what’s with that narrow range candle next to the big one to the left… no not that one, the other one »
Bars pattern MLThis script implements a K-Nearest Neighbors (KNN)-based machine learning model to predict future price movements in financial markets. It analyzes past price action using Euclidean distance and selects the most similar historical patterns to estimate future price changes. Unlike traditional KNN implementations, this approach optimizes distance calculations by maintaining a dynamically updated list of the closest neighbors, ensuring efficient selection without the need for sorting. The model generates a forecasted price trajectory based on incremental predictions, which are visualized on the chart using polylines for better interpretability.
Volume HighlightBar colouring: this indicator is simple but effective, it repaints higher than normal candles a certain colour (by default gold/yellow) it helps to know what are valuable areas to trade around for longs and shorts.
Changing the volume multiplier manually helps you to screen volume relevant to the timeframe you are trading on.
For example, some charts 1min the best filter/setting would be 12-35 multiplier where others like btc 1-4 hourly, the filter/setting might be 8-12.
The key is having only the highest/most relevant 3-4 volume candles showing as they often represent supports and resistances.
Pivot Points And Breakout Price Action With LuckyNickVaBar Color Candle Aligned with pivot points swing high and swing lows For Those Who Are Familiar with Trading The Breakouts Of Highs & Lows Of Structure. Pivots are said to be key areas in the market where price shows heavy reaction to where reversals make occur. At these points there are swing Highs & swing lows that traders may be able to find opportunity in the market. This Script is a combination of pivot points and Barcolor signals for the breakout.
Koalafied Volume Extension Bar colours based on extensions from volume Z-Score. Large volume candles can often signal exhaustion or show market strength in reversals or breakouts. Candles not supported by rising volume are coloured black while those that are retain their colouring.
Bars CharacteristicsThis code is for defining or explaining market conditions via micro trend and the characterized bars.
lines 5,6: show the conditions for a normal trend, means market can go in the direction that it has in the past.
lines 11,12: show the conditions for kind of the trend having cumulative energy itself, mean market can go in the same direction.
lines 18,19: show the conditions for kind of the trend having overbought/sold concept, means it's better exit from the market or to look for the other clues.
lines 24,25: show some kind of noise not a stable trend, it's better not to enter the market.
Trend Break CandlesBar Colors based on trend breaks
Trend lines not included, just drawn as an example of what is happening.
OB/OS Highlighter MomentumBar colors:
Red = lower low
Green = higher high
Yellow = Momentum, followthrough will trigger a signal.
***Look for signals at breakouts or potential momentum runners only! Because momentum can present itself also when there are "extremes", and also remains during the move after the breakout, and i won't recommend buying the signals in those scenarios.***
OB/OS Highlighter Mean-RevBar colors:
Red = lower low
Green = higher high
Yellow = Extreme, potential reversal upcoming
***Ignore when price breakout\trends, as this is for Mean-Reversion***
WhenWasThePriceAction
Bars of largest range (volatility)
* see moments of strongest price action immediately
* colored & upDown by candle color
* amplifier: you see only the bull runs, and subsequent dumps
Very nice on the 5 years scale of BITSTAMP:BTCUSD - nothing comparable to 2013 has happened yet.
Internals:
squared_range = pow(high-low, 2)
That is essentially it already. The rest are details:
* gauge with (in case of Bitcoin exponentially rising) price
* show in red for negative candles
* take even higher polynomial (than 2) to show only the very largest values
* allow some user input (but there is not much more that can be chosen here.)
Sorry for such a simple formula - but sometimes the easiest things are powerful.
Please give feedback. www.tradingview.com and/or in the cryptocurrency chat. Thanks.