Heikin Ashi Actual Close Price [BarScripts]This indicator plots a dot on your Heikin Ashi chart at the actual raw candle close - revealing the true market close that can differ from the averaged price displayed by Heikin Ashi candles.
Options to show close price on all candles or last X candles.
Please follow BarScripts if you like the indicator.
Chỉ báo và chiến lược
GODMODE X VIP 🔥🚨Buy & Sell Signals ✅
Stop Loss + Take Profit ✅
Background Confirmation ✅
Non-Repaint ✅
Telegram + Email Alerts 🔥 (Coming Next Update)
Full Crypto + Forex + Stocks
NY & London Session + Daily Weekly Monthly High&LowThe indicator marks the NY & London session. The 1st 90min of each session are marked with a black dashed line while pre-open is marked with a dotted line.
NY session marked with blue.
London session marked with pink.
Note : the sessions are visible only on the 5min time frame or below. This is so the chart is not cluttered when on higher time frames.
------------------
Daily High and Low marked with green dashed lines
Weekly High and Low marked with orange dashed lines
Monthly High and Low marked with red dashed lines .
Ultimate Buy & Sell Indicator PRO 🔥sample No Repaint ✅
Automatic Buy & Sell Alerts ✅
Volume Spike Filter ✅
Stop Loss & Take Profit Auto Levels ✅
Background Color Confirmation ✅
Full Crypto + Forex + Stocks ✅
Scalping + Swing + Long Term
Candle Size Alert (Open-Close)This Pine Script is a TradingView indicator that checks the size of the previous candle's body (difference between the open and close prices) and triggers an alert if it exceeds a certain threshold.
Breakdown of the Script
1. Indicator Declaration
//@version=5
indicator("Candle Size Alert (Open-Close)", overlay=true)
//@version=5: Specifies that the script is using Pine Script v5.
indicator("Candle Size Alert (Open-Close)", overlay=true):
Creates an indicator named "Candle Size Alert (Open-Close)".
overlay=true: Ensures the script runs directly on the price chart (not in a separate panel).
2. User-Defined Threshold
candleThreshold = input.int(500, title="Candle Size Threshold")
input.int(500, title="Candle Size Threshold"):
Allows the user to set the threshold for candle body size.
Default value is 500 points.
3. Calculate Candle Size
candleSize = math.abs(close - open )
close and open :
close : Closing price of the previous candle.
open : Opening price of the previous candle.
math.abs(...):
Takes the absolute difference between the open and close price.
This gives the candle body size (ignoring whether it's bullish or bearish).
4. Check If the Candle Size Meets the Threshold
sizeCondition = candleSize >= candleThreshold
If the previous candle’s body size is greater than or equal to the threshold, sizeCondition becomes true.
5. Determine Candle Color
isRedCandle = close < open
isGreenCandle = close > open
Red Candle (Bearish):
If the closing price is less than the opening price (close < open ).
Green Candle (Bullish):
If the closing price is greater than the opening price (close > open ).
6. Generate Alerts
if sizeCondition
direction = isRedCandle ? "SHORT SIGNAL (RED)" : "LONG SIGNAL (GREEN)"
alertMessage = direction + ": Previous candle body size = " + str.tostring(candleSize) +
" points (Threshold: " + str.tostring(candleThreshold) + ")"
alert(alertMessage, alert.freq_once_per_bar)
If the candle body size exceeds the threshold, an alert is triggered.
direction = isRedCandle ? "SHORT SIGNAL (RED)" : "LONG SIGNAL (GREEN)":
If the candle is red, it signals a short (sell).
If the candle is green, it signals a long (buy).
The alert message includes:
Signal type (LONG/SHORT).
Candle body size.
The user-defined threshold.
How It Works in TradingView:
The script does not plot anything on the chart.
It monitors the previous candle’s body size.
If the size exceeds the threshold, an alert is generated.
Alerts can be used to notify the trader when big candles appear.
Price Above 20 DMA, 20 SMA, 200 SMA with Buy/Sell ConditionsGuyse Daily Indicator. Uses daily and weekly moving averages to provide buy conditions.
Trading ChecklistChecklist metodología de la academia Streetpips para las entradas. Donde estoy, Mapa de intención, tipo de movimiento (continuación, retroceso, Reversión) y el modelo de confirmación ( mod 1,2,3,4 y/o typ enseñados en la academia)
Spot - Fut spread v2The "Spot - Fut Spread v2"
indicator is designed to track the difference between spot and futures prices on various exchanges. It automatically identifies the corresponding instrument (spot or futures) based on the current symbol and calculates the spread between the prices. This tool is useful for analyzing the delta between spot and futures markets, helping traders assess arbitrage opportunities and market sentiment.
Key Features:
- Automatic detection of spot and futures assets based on the current chart symbol.
- Supports multiple exchanges, including Binance, Bybit, OKX, MEXC, BingX, Bitget, BitMEX, Deribit, Whitebit, Gate.io, and HTX.
- Flexible asset selection: the ability to manually choose the second asset if automatic selection is disabled.
- Spread calculation between futures and spot prices.
- Moving average of the spread for smoothing data and trend analysis.
Flexible visualization:
- Color indication of positive and negative spread.
- Adjustable background transparency.
- Text label displaying the current spread and moving average values.
- Error alerts in case of invalid data.
How the Indicator Works:
- Determines whether the current symbol is a futures contract.
- Based on this, selects the corresponding spot or futures symbol.
- Retrieves price data and calculates the spread between them.
- Displays the spread value and its moving average.
- The chart background color changes based on the spread value (positive or negative).
- In case of an error, the indicator provides an alert with an explanation.
Customization Parameters:
-Exchange selection: the ability to specify a particular exchange from the list.
- Automatic pair selection: enable or disable automatic selection of the second asset.
- Moving average period: user-defined.
- Colors for positive and negative spread values.
- Moving average color.
- Background transparency.
- Background coloring source (based on spread or its moving average).
Application:
The indicator is suitable for traders who analyze the difference between spot and futures prices, look for arbitrage opportunities, and assess the premium or discount of futures relative to the spot market.
Contact - t.me
3 Candle Reversal3 Candle Reversal Pattern as described by Stoic Trader (StoicTA)
Simple and to the point.
x.com
Estrategia RSI + EMAsIndicadores:
RSI: Calculado con un período de 14. Considera que está sobrecomprado cuando el valor es mayor a 70 y sobrevendido cuando es menor a 30.
EMA50 y EMA200: Son las medias móviles exponenciales con períodos de 50 y 200, respectivamente.
Condiciones de compra:
El RSI debe estar por debajo de 30 (condición de sobreventa).
La EMA 50 debe estar por encima de la EMA 200 (indica una tendencia alcista).
El precio debe cruzar hacia arriba la EMA 50.
Condiciones de venta:
El RSI debe estar por encima de 70 (condición de sobrecompra).
La EMA 50 debe estar por debajo de la EMA 200 (indica una tendencia bajista).
El precio debe cruzar hacia abajo la EMA 50.
Señales visuales:
Se muestra un label verde debajo de la barra cuando se genera una señal de compra (Long).
Se muestra un label rojo encima de la barra cuando se genera una señal de venta (Short).
Alertas:
El script también tiene configuradas alertas para que puedas configurar notificaciones cuando se cumplan las condiciones para compra o venta.
MACD with Holt–Winters Smoothing [AIBitcoinTrend]👽 MACD with Holt–Winters Smoothing (AIBitcoinTrend)
The MACD with Holt–Winters Smoothing is an momentum indicator that enhances traditional MACD analysis by incorporating Holt–Winters exponential smoothing. This adaptation reduces lag while maintaining trend sensitivity, making it more effective for detecting trend reversals and sustained momentum shifts. Additionally, the indicator includes real-time divergence detection and an ATR-based trailing stop system, helping traders manage risk dynamically.
👽 What Makes the MACD with Holt–Winters Smoothing Unique?
Unlike the standard MACD, which relies on simple exponential moving averages, this version applies Holt–Winters smoothing to better capture trends while filtering out market noise. Combined with real-time divergence detection and a trailing stop system, this indicator allows traders to:
✅ Identify trend strength with a dynamically smoothed MACD signal.
✅ Detect bullish and bearish divergences in real time.
✅Implement Crossover/Crossunder signals tied to ATR-based trailing stops for risk management
👽 The Math Behind the Indicator
👾 Holt–Winters Smoothing for MACD
Traditional MACD calculations use exponential moving averages (EMA) to identify momentum. This indicator improves upon it by applying Holt’s linear trend equations, which enhance signal accuracy by reducing lag and smoothing out fluctuations.
Key Features:
Alpha (α) - Controls the weight of the new data in smoothing.
Beta (β) - Determines how fast the trend component adapts to new changes.
The Holt–Winters Signal Line provides a refined MACD crossover system for better trade execution.
👾 Real-Time Divergence Detection
The indicator identifies bullish and bearish divergences between MACD and price action.
Bullish Divergence: Occurs when price makes a lower low, but MACD makes a higher low – signaling potential upward momentum.
Bearish Divergence: Occurs when price makes a higher high, but MACD makes a lower high – signaling potential downward momentum.
👾 Dynamic ATR-Based Trailing Stop
The indicator includes a trailing stop system based on ATR (Average True Range). This allows traders to manage positions dynamically based on volatility.
Bullish Trailing Stop: Triggers when MACD crosses above the Holt–Winters signal, with a stop placed at low - (ATR × Multiplier).
Bearish Trailing Stop: Triggers when MACD crosses below the Holt–Winters signal, with a stop placed at high + (ATR × Multiplier).
Trailing Stop Adjustments: Expands or contracts dynamically with market conditions, reducing premature exits while securing profits.
👽 How Traders Can Use This Indicator
👾 Divergence Trading
Traders can use real-time divergence detection to anticipate trend reversals before they occur.
Bullish Divergence Setup:
Look for MACD making a higher low, while price makes a lower low.
Enter long when MACD confirms upward momentum.
Bearish Divergence Setup:
Look for MACD making a lower high, while price makes a higher high.
Enter short when MACD confirms downward momentum.
👾 Trailing Stop & Signal-Based Trading
Bullish Setup:
✅ MACD crosses above the Holt–Winters signal.
✅ A bullish trailing stop is placed using low - ATR × Multiplier.
✅ Exit if the price crosses below the stop.
Bearish Setup:
✅ MACD crosses below the Holt–Winters signal.
✅ A bearish trailing stop is placed using high + ATR × Multiplier.
✅ Exit if the price crosses above the stop.
This systematic trade management approach helps traders lock in profits while reducing drawdowns.
👽 Why It’s Useful for Traders
Lag Reduction: Holt–Winters smoothing ensures faster and more reliable trend detection.
Real-Time Divergence Alerts: Identify potential reversals before they happen.
Adaptive Risk Management: ATR-based trailing stops adjust to volatility dynamically.
Works Across Markets & Timeframes: Effective for stocks, forex, crypto, and futures trading.
👽 Indicator Settings
MACD Fast & Slow Lengths: Adjust the MACD short- and long-term EMA periods.
Holt–Winters Alpha & Beta: Fine-tune the smoothing sensitivity.
Enable Divergence Detection: Toggle real-time divergence analysis.
Lookback Period for Divergences: Configure how far back pivot points are detected.
ATR Multiplier for Trailing Stops: Adjust stop-loss sensitivity to market volatility.
Trend Filtering: Enable signal filtering based on trend direction.
Disclaimer: This indicator is designed for educational purposes and does not constitute financial advice. Please consult a qualified financial advisor before making investment decisions.
Close A/B Previous Bar H/L After TBFind if price is closed above or below previous candle, can create alert based on the condition
Volatility Based Momentum by QTX Algo SystemsVolatility Based Momentum by QTX Algo Systems
Overview
This indicator is designed to determine whether a market trend is genuinely supported by both momentum and volatility. It produces per-candle signals when a smoothed momentum oscillator is above its moving average, a Price – Moving Average Ratio confirms overall trend strength by remaining above a preset level with a positive slope, and when at least one of two distinct volatility metrics is rising. This integrated approach offers traders a consolidated and dynamic view of market energy, delivering more actionable insights than a simple merger of standard indicators.
How It Works
The indicator fuses two complementary volatility measures with dual momentum assessments to ensure robust signal generation. One volatility metric evaluates long-term market behavior by analyzing the dispersion of logarithmic price changes, while the other—derived from a Bollinger Band Width Percentile—captures recent price variability and confirms that market volatility remains above a minimum threshold. A trading signal is generated only when at least one of these volatility measures shows a sustained upward trend over several candles.
For momentum, a double‐smoothed Stochastic Momentum Index provides a refined, short-term view of price action, filtering out market noise. In addition, the PMARP serves as a confirmation tool by comparing the current price to its moving average, requiring that its value remains above a defined level with a positive slope to indicate a strong trend. Together, these elements ensure that a signal is only produced when both the market’s momentum and volatility are in alignment.
Although the components used are based on well-known technical analysis methods, the thoughtful integration of these elements creates a tool that is more than the sum of its parts. By combining long-term volatility assessment with a real-time measure of recent price variability—and by merging short-term momentum analysis with a confirmation of overall trend strength—the indicator delivers a more reliable and comprehensive view of market energy. This holistic approach distinguishes it from standard indicators.
How to Use
Traders can adjust the volatility threshold setting to tailor the indicator to their preferred market or timeframe. The indicator displays per-candle signals when both the refined momentum criteria and the dynamic volatility conditions are met. These signals are intended to be used as part of a broader trading strategy, in conjunction with other technical analysis tools for confirming entries and exits.
Disclaimer
This indicator is for educational purposes only and is intended to support your trading strategy. It does not guarantee performance, and past results are not indicative of future outcomes. Always use proper risk management and perform your own analysis before trading.
Continuation Opportunity Indicator by QTX Algo SystemsContinuation Opportunity Indicator by QTX Algo Systems
Overview
This indicator is designed to pinpoint key moments within an established trend when a pullback is likely just a temporary consolidation rather than a reversal. It distinguishes phases of reduced volatility—suggesting a pause or consolidation—from moments when volatility subsequently increases, confirming that the prevailing trend is resuming. This integrated approach combines multiple classical elements into a unique tool that offers traders clear insight into trend continuity.
How It Works
The indicator marries two types of volatility measurements with dual momentum assessments and a trend filter to generate continuation signals. Two complementary volatility metrics are used: one assesses long-term price dispersion to gauge overall market behavior, while the other employs a percentile-based method to capture recent variability and ensure that overall market volatility meets a minimum threshold. A critical part of the signal generation is that the pullback must occur during a period of reduced volatility, indicating consolidation, and then be followed by an increase in volatility, which confirms the resumption of the trend.
For momentum analysis, a double‐smoothed oscillator provides a refined, short-term view of price action, and a Price – Moving Average Ratio (PMARP) confirms the trend’s strength by requiring that it remains above or below a set threshold with a positive or negative slope, respectively. Signals are produced based on crossover events in the momentum oscillator that occur after a pullback, with the subsequent rise in volatility validating the trend continuation. A moving average-based trend filter further ensures that these signals align with the broader market direction.
While the individual components—volatility measures, momentum oscillators, and trend filters—are standard in technical analysis, their deliberate integration in this script results in a tool that is greater than the sum of its parts. Rather than merely merging indicators, this system is crafted to filter out false signals and clearly differentiate between temporary consolidations and genuine trend continuations. By providing a holistic view of market behavior, it offers traders actionable insight into when a pullback is simply a pause before the trend resumes.
How to Use
Traders should monitor the chart for opportunity signals. These signals indicate that a consolidation phase is ending and that the overall trend is likely to continue. Adjust the volatility parameters as needed to suit your market or timeframe, and use these signals in conjunction with other technical analysis tools to confirm optimal entry and exit points.
Disclaimer
This indicator is for educational purposes only and is intended to support your trading strategy. It does not guarantee performance, and past results are not indicative of future outcomes. Always use proper risk management and perform your own analysis before trading.
MOST with Filterswith various filters RSI, price, trend change
trying to filter fluctuations during consolidation periods
AL60 CandlesThis script marks out all candle flips (a bullish candle followed by a bearish candle or a bearish candle followed by a bullish candle).
This is very useful on M15 and above to help you frame reversals on lower timeframes.
I use this tool to backtest reversal times during the day.
Best timeframes: H1, H3, H4
Rubotics Impulse Reloaded IndicatorThis Pine Script™ indicator, named "Rubotics Impulse Reloaded Indicator", is designed to detect strong price moves (impulses) and their subsequent corrections. It leverages the Average True Range (ATR) to measure the magnitude of moves relative to recent volatility and uses a moving average—selectable by type—to assess the underlying trend. Once an impulse is detected, the script monitors for a corrective retracement that falls within user-defined percentage bounds, and then signals potential entry points (bullish or bearish) directly on the chart.
-----
Input Parameters
The indicator comes with several customizable inputs that allow users to fine-tune its behavior:
Impulse Detection Length:
Parameter: impulseLength
Description: Determines the number of bars used to calculate the ATR and detect impulse moves. Lower values make the indicator more sensitive, while higher values smooth out the detection.
Max. Impulse Correction Length:
Parameter: barsSinceImpuls
Description: Sets the maximum number of bars to look back for a valid correction following an impulse.
Impulse Strength Threshold:
Parameter: impulseThreshold
Description: A ratio that determines whether a price move qualifies as a strong impulse. Lower thresholds trigger more impulses, while higher thresholds require more significant moves.
Min/Max Correction Percent:
Parameters: correctionMin and correctionMax
Description: Define the acceptable range (in percentage) of retracement from the impulse high/low that qualifies as a valid correction.
Moving Average Settings:
Parameters: emaLength and maType
Description: The emaLength determines the number of bars used in the moving average calculation, while maType allows the user to choose between different built-in moving averages (EMA, SMA, WMA, VWMA, RMA, HMA) for trend determination.
Debug Mode:
Parameter: debugMode
Description: When enabled, additional information such as impulse strength, correction percentage, and impulse direction is displayed on the chart for troubleshooting and deeper insight.
-----
Trend Calculation
The indicator calculates a trend component using a moving average of the selected type. This moving average is plotted in yellow on the chart, providing visual context for the prevailing trend. Users can select from multiple moving average options (EMA, SMA, etc.) to best fit their analysis style.
-----
Impulse Detection
Impulse moves are detected by comparing the absolute price change over the specified number of bars (impulseLength) to the average range (ATR) multiplied by the same period. The calculated impulse strength is then compared to the user-defined threshold (impulseThreshold):
Impulse Detected:
When the impulse strength exceeds the threshold, the indicator determines whether the move is bullish or bearish based on whether the price increased or decreased relative to the start of the impulse period. It then records key details such as the impulse’s high/low and the bar index at which the move occurred.
-----
Correction Handling
After an impulse is detected, the indicator enters a correction phase:
Correction Calculation:
The script continuously calculates the current retracement percentage relative to the impulse high/low.
Expiration:
If the correction phase lasts longer than the allowed number of bars (barsSinceImpuls), the correction tracking is reset.
-----
Entry Signal Conditions
Two primary functions define the entry conditions:
Bullish Entry:
Triggers if:
The market is in a correction following a bullish impulse.
The correction retracement is within the specified percentage range (correctionMin to correctionMax).
The price is rising (current close is greater than the previous close).
Bearish Entry:
Triggers under similar conditions for a bearish impulse, with the price showing a downward movement.
When either condition is met, the corresponding signal (buy or sell) is plotted on the chart, and the correction phase is reset to await the next impulse.
-----
Visualizations & Debugging
Impulse Strength Plot:
A blue line displays the calculated impulse strength, and a red dashed horizontal line indicates the threshold level for visual reference.
Signal Labels:
Buy and sell signals are visually marked on the chart with labels ("BUY" in green for bullish signals and "SELL" in red for bearish signals).
Debug Information:
If debug mode is enabled, a label on the latest bar shows detailed information including the impulse strength, correction percentage, and impulse direction. This helps users verify and fine-tune the settings.
-----
Usage
Traders can use this indicator to identify high-probability entry points by detecting significant price moves followed by controlled corrections. By adjusting the various input parameters, users can optimize the sensitivity and filtering of the indicator to suit different markets or timeframes.
This robust setup not only provides visual cues for potential trades but also helps in understanding the underlying price dynamics, making it a versatile tool for both trend analysis and entry timing on TradingView.
Price Action Strategy - Engulfing with Trailing SLThis strategy:
Entry signals:
Bullish and bearish engulfing candle patterns
Optional volume filter (requires higher than average volume)
Optional trend filter (uses 50 EMA direction)
Optional RSI filter (buys oversold, sells overbought)
Exit mechanisms:
Trailing stop-loss based on percentage from current price
ATR-adjusted trailing to adapt to market volatility
Risk management:
ATR-based stop placement
Dynamic trailing that follows price momentum
Triangle Reversal IndicatorTriangle Reversal Indicator – A Visual Tool for Identifying Reversal Patterns
This indicator is designed to highlight potential trend reversal moments by comparing the current candle with the previous one. It offers a unique approach by focusing on distinct candle patterns rather than generic trend indicators, making it a valuable addition to your trading toolkit.
How It Works:
For a bullish signal, the indicator checks if:
The current candle is bullish (closing higher than it opens) while the previous candle was bearish.
The current candle’s low breaches the previous bearish candle’s low.
The current candle’s close is above the previous bearish candle’s close.
When these conditions are met, a tiny green triangle is plotted below the candle to signal a potential bullish reversal.
Conversely, for a bearish signal, it verifies if:
The current candle is bearish (closing lower than it opens) following a bullish candle.
The current candle’s high exceeds the previous bullish candle’s high.
The current candle’s close falls below the previous bullish candle’s close.
If all conditions are satisfied, a small red triangle appears above the candle to indicate a potential bearish reversal.
How to Use:
Simply apply the indicator on your chart and look for the tiny triangles that appear above or below the candles. These markers can serve as an additional visual cue when confirming entry or exit points, but it’s best used alongside your other analysis techniques.
Customization Options:
Users can further enhance the script by adding inputs for lookback periods, adjusting the triangle size, or modifying colors to match their chart themes.
Multi-Timeframe Trend Table for coinsFocus on Crypto trend change.
This script creates a dynamic table overlay on a chart, displaying trends for multiple symbols across different timeframes using three trend calculation methods: Exponential Moving Average (EMA) crossover, VV (Volatility Volume) and Smart trend(ST).
By showing trends across different timeframes, traders can gauge the consistency of trends. A trend confirmed across multiple timeframes might be stronger and more reliable. i.e. all kinds of traders are looking at same direction.
Visual Clarity: The table format offers a quick, visual summary of market conditions, which is faster than analyzing each chart individually, especially when monitoring multiple assets.
Customization: Traders can tailor the table to their preferred symbols and timeframes, focusing on what's most relevant to their strategy.
In summary, this script acts as an analytical tool that consolidates trend information from various perspectives, aiding traders in making more informed and potentially more effective trading decisions.
Lemantrend Indicator v1.0Please share these details to us to get the indicator access.
Subject: SMC Indicator Access request
Name:
email_id:
Mobile Number:
Trading view ID: