Trend Counter [BigBeluga]The Trend Counter indicator is designed to help traders identify trend conditions and potential reversals by counting the number of bars within a specified period that are above or below an average price level. By smoothing and averaging these counts, the indicator provides a clear visual representation of market trends and highlights key trend changes.
Key Features:
⦾ Trend Counting:
Counts bars above and below average price levels over a specified period.
Smooths and rounds the count for better visualization.
// Count bars over length period above highest and lowest avg with offset loop
float mid = math.avg(ta.highest(length), ta.lowest(length))
for offset = 0 to length -1
switch
hl2 > mid => counter += 1.0
=> counter := 0.0
// Smooth Count and Round
counter := math.round(ta.ema(counter > 400 ? 400 : counter, smooth))
// Count Avg
count.push(counter)
avg = math.round(count.avg())
⦿ Color Indication:
Uses gradient colors to indicate the strength of the trend.
Colors the background based on trend strength for easier interpretation.
⦿ Trend Signals:
Provides visual cues for trend changes based on the counter crossing predefined levels.
⦿ Potential Tops:
Identifies potential market tops using a specified length and highlights these levels.
⦿ Additional Features:
Displays Trend Counter value with arrows to indicate the direction of the trend movement.
Displays average trend count and level for reference.
⦿ User Inputs Description
Length: Defines the period over which the trend counting is performed.
Trend Counter Smooth: Specifies the smoothing period for the trend counter.
Level: Sets the threshold level for trend signals.
Main Color: Determines the primary color for trend indication.
The Trend Counter indicator is a powerful tool for traders seeking to identify and visualize market trends.
By counting and smoothing price bars above and below average levels, it provides clear and intuitive signals for trend strength and potential reversals.
With customizable parameters and visual cues, the Trend Counter enhances trend analysis and decision-making for traders of all levels.
Topsignal
Price Outpaces Moving AverageWith inputs for the moving average, Bullish overshoot percentage, and bearish overshoot percentage, this indicator is attempting to show market tops based on the difference between the current price of an asset and how far away it is from its moving average.
If you have the bullish overshoot percentage set to 1.5:
let's say price is currently at 20,000 and the moving average is around 6500.
The script calculates 20,000/6500 = 3.07
Then, there is a boolean comparison asking if 3.07 > 1.5.
Since it is, the script will create a "SHORT" flag above that candlestick.
A similar process happens for the "LONG" flags.
Tweezer Top & Tweezer Bottom Pattern (Expo)Tweezer Top/Bottom Pattern (Expo) indicator identifies real-time Tweezer Top and Tweezer Bottom in any market and in any timeframe. This is an enhanced version of the pattern which enables higher accuracy, and noise filtering. In addition to that, Tweezer Levels can be displayed which can be used in many different ways, for instance, as a stop loss level, or to confirm the signal.
The ideal Tweezer pattern includes that the wicks should be 100% the same length. However, that rarely happens. So in this enhanced version, the user can set the maximum change that is allowed between the wicks.
To enhance the signal accuracy a Bullish engulfing and Bearish engulfing filter can be toggled on. So a signal will only be displayed if an engulfing candle is in play.
HOW TO USE
Tweezer Top/Bottom should be used together with KEY market levels or with KEY supply/demand zones.
Enter Long: if a Tweezer Bottom signal occurs at a KEY Level or on a KEY supply/demand zone.
Target: The first target should be the nearest resistance level or supply zone. The second target should be the next resistance level or supply zone, and so on.
Enter Short: if a Tweezer Top signal occurs at a KEY Level or on a KEY supply/demand zone.
Target: The first target should be the nearest support level or demand zone. The second target should be the next support level or demand zone, and so on.
Stop Loss: The Tweezer levels can be used as a stop loss.
Remember: Use the indicator together with KEY levels or KEY Supply/Demand Zones.
INDICATOR IN ACTION
4 Hour chart
I hope you find this indicator useful , and please comment or contact me if you like the script or have any questions/suggestions for future improvements. Thanks!
I will continually work on this indicator, so please share your experience and feedback as it will enable me to make even better improvements. Thanks to everyone that has already contacted me regarding my scripts. Your feedback is valuable for future developments!
-----------------
Disclaimer
Copyright by Zeiierman.
The information contained in my scripts/indicators/ideas does not constitute financial advice or a solicitation to buy or sell any securities of any type. I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from the use of or reliance on such information.
All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, or individual’s trading does not guarantee future results or returns. Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.
My scripts/indicators/ideas are only for educational purposes!
-----------------
ACCESS THE INDICATOR
• Contact me on TradingView or use the links below
Pivot TradeThis study contains:
- A complete set of pivot calculation. Standart, Fibonacci, Woodie, Camarilla
- Standart Pivot with extended support and resistance levels.
- ALMA a new generation moving average indicator which succesfull to follow trend changes.
- System28 EMA Based trend follower. (Thanks to great master Ali Ömür)
- Auto Trend Lines drawing tool with pivot highs and lows.
- Alarm function on pivot levels.
How to Use :
UPTREND
Orange cross points to an uptrend,
Fuschia cross confirms uptrend.
DOWNTREND
Black cross points to an donwtrend,
Navy cross confirms uptrend.