Relative VolumePopular Relative Volume indicator with added features: bars are colored and alerts can be configured whenever the relative volume exceeds a determined threshold
Chỉ báo và chiến lược
[blackcat] L2 Ehlers Autocorrelation Indicator V2OVERVIEW
The Ehlers Autocorrelation Indicator is a technical analysis tool developed by John F. Ehlers that measures the correlation between price data and its lagged versions to identify potential market cycles and reversals.
BACKGROUND
Originally introduced in Ehlers' "Cycle Analytics for Traders" (2013), this indicator leverages autocorrelation principles to detect patterns in market data that deviate from random noise or perfect sine waves.
FEATURES
• Calculates Pearson correlation coefficients for lags from 0 to 60 bars
• Visualizes correlations using colored bars ranging from red (negative correlation) to yellow (positive correlation)
• Provides minimum averaging option through AvgLength input parameter
• Displays sharp reversal signals at price turning points
• Shows variations in bar thickness and count over time
HOW TO USE
Add the indicator to your chart
Adjust the AvgLength input as needed:
• Set to 0 for no averaging
• Increase value for smoother results
Interpret the colored bars:
• Red: Negative correlation
• Yellow: Positive correlation
• Sharp transitions indicate potential reversal points
LIMITATIONS
• Requires sufficient historical data for accurate calculations
• Performance may vary across different market conditions
• Results depend on proper parameter settings
NOTES
• The indicator uses highpass filtering and super smoother filtering techniques
• Color intensity varies based on correlation strength
• Multiple lag periods are displayed simultaneously for comprehensive analysis
THANKS
This implementation is based on Ehlers' original work and has been adapted for TradingView's Pine Script platform.
Chandelier ExitChandelier Exit (Custom Time Frame)
This custom version of the Chandelier Exit indicator allows you to perform calculations on a custom time frame while displaying the results on your current chart. By default, it calculates the ATR and stop levels on a selected time frame (e.g., 15 minutes) but plots the buy/sell signals, long/short stop levels, and highlight states on your active chart time frame (e.g., 5 minutes).
Key Features:
• Customizable Time Frame: Choose any time frame for the ATR calculations (default is 15 minutes).
• Stop Levels: Displays dynamic stop levels based on the Chandelier Exit method.
• Alerts: Set alerts for changes in direction, buy/sell signals, or stop level breaches.
• Visual Customization: Easily toggle visual settings for buy/sell labels and highlight states.
Use this indicator to fine-tune your entry and exit strategies by incorporating longer-term price behavior while trading on shorter time frames.
ATR Stop-Loss & TargetsATR and Supertrend-based SL/TP & Trailing System
This indicator combines Average True Range (ATR) and Supertrend logic to help traders define precise stop-loss, first target, and trailing stop-loss (TSL) levels.
⚙️ Key Features:
📏 ATR-based Stop-Loss & Target Lines:
Uses ATR (default period: 5) based on the previous day's candle for more stable risk management.
Traders can choose the price source: Close, Open, or enter a manual price.
SL and first target are calculated using multipliers:
Multiplier 1 = Stop Loss
Multiplier 2 = First Target
📉 Supertrend for Trailing Stop:
Built-in Supertrend logic for trailing stop-loss management.
Uses ATR(10) with a multiplier of 2.1, based on HL2.
Supertrend can be toggled ON/OFF from the settings.
Candle Streak Histogram with Directional MAsCounts the number of consecutive candles.
Count restarts when candle forms in an opposite direction.
Dojis also restart the count at 0
MAs for most recent 24 same directional candles
Buy/Sell with Take Profit - RSI + MACD + Volume//@version=5
indicator("Buy/Sell with Take Profit - RSI + MACD + Volume", overlay=true)
// === Inputs ===
rsiPeriod = input.int(14, title="RSI Period")
macdFast = input.int(12, title="MACD Fast Length")
macdSlow = input.int(26, title="MACD Slow Length")
macdSignal = input.int(9, title="MACD Signal Smoothing")
takeProfitDollar = input.float(5.0, title="Take Profit ($)", step=0.1)
// === Indicators ===
rsi = ta.rsi(close, rsiPeriod)
= ta.macd(close, macdFast, macdSlow, macdSignal)
// === Volume Condition ===
volumeUp = volume > volume
volumeDown = volume < volume
// === Buy/Sell Conditions ===
buyCondition = rsi > 50 and macdLine > signalLine and macdLine < signalLine and volumeUp
sellCondition = rsi < 50 and macdLine < signalLine and macdLine > signalLine and volumeDown
// === Track Entry Prices ===
var float buyEntryPrice = na
var float sellEntryPrice = na
if (buyCondition)
buyEntryPrice := close
if (sellCondition)
sellEntryPrice := close
// === Take Profit Triggers ===
takeProfitBuy = not na(buyEntryPrice) and close >= buyEntryPrice + takeProfitDollar
takeProfitSell = not na(sellEntryPrice) and close <= sellEntryPrice - takeProfitDollar
// === Plot Buy/Sell/TP Labels ===
plotshape(buyCondition, title="Buy", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sellCondition, title="Sell", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
plotshape(takeProfitBuy, title="TP Buy", location=location.abovebar, color=color.blue, style=shape.triangledown, text="TP 🎯")
plotshape(takeProfitSell, title="TP Sell", location=location.belowbar, color=color.orange, style=shape.triangleup, text="TP 🎯")
// === Alerts ===
alertcondition(buyCondition, title="Buy Alert", message="BUY Signal Detected")
alertcondition(sellCondition, title="Sell Alert", message="SELL Signal Detected")
alertcondition(takeProfitBuy, title="Take Profit (BUY)", message="🎯 Take Profit reached after BUY")
alertcondition(takeProfitSell, title="Take Profit (SELL)", message="🎯 Take Profit reached after SELL")
Institutional Order Block Pro✅ Features:
Order Block Detection (Bullish + Bearish)
Fair Value Gap (FVG) Zones
Liquidity Sweeps (Highs & Lows)
Break of Structure (BoS) + Change of Character (CHoCH)
Entry Confirmation Signals
Multi-Timeframe Order Block Support
Alerts (for entries & structure breaks)
ENIGMA 369
ENIGMA 369 is an innovative Pine Script indicator that combines two distinct yet complementary trading strategies: Break of Structure (BOS) Logic and Session-Based Sniper Signals.
This overlay indicator is designed to help traders identify significant market structure shifts and capitalize on high-probability intraday trading opportunities.
By integrating a sophisticated BOS detection system with a time- and trend-filtered entry mechanism, ENIGMA 369 offers a versatile tool for traders across various timeframes, from swing trading to scalping.
Unlike generic trend-following or scalping indicators, ENIGMA 369 employs specific, well-defined methodologies:
BOS Logic detects structural market shifts using a unique candle-pair pattern analysis, grounded in price action principles.
Sniper Logic targets precise entries during user-defined trading sessions, leveraging price momentum and optional EMA trend confirmation.
This dual approach makes ENIGMA 369 original by bridging long-term structural analysis with short-term tactical entries, all within a single, customizable framework.
What It Does
ENIGMA 369 serves two primary functions:
Break of Structure (BOS) Detection:
Identifies key market structure breaks by detecting specific candle patterns: BullBear (bullish candle followed by bearish) and BearBull (bearish candle followed by bullish).
Marks potential resistance (highs) or support (lows) levels from these patterns and confirms breakouts when price sustains above/below these levels for a user-defined number of bars.
Draws horizontal lines at confirmed breakout levels, which persist until price breaches a customizable buffer zone, signaling a potential reversal or invalidation.
Sniper Entry Signals:
Generates buy and sell signals during user-specified trading sessions (e.g., London or US sessions), focusing on candles that exhibit momentum characteristics (e.g., close above/below the candle’s midpoint with a lower low or higher high).
Optionally filters signals using an Exponential Moving Average (EMA) to align with the broader trend, reducing noise in choppy markets.
Plots dynamic lines at the candle’s high/low and 50% of the wick range, serving as potential entry or stop-loss levels, which are automatically removed when price crosses them.
How It Works
ENIGMA 369’s calculations are rooted in price action, market timing, and trend alignment, making it both intuitive and systematic. Here’s a breakdown of its methodologies:
BOS Logic:
Pattern Detection: The indicator looks for two-candle sequences where the first candle is significant (based on ATR-multiplied size) and the second opposes it.
For example, a BullBear pair (bullish then bearish) signals a potential resistance at the first candle’s high, while a BearBull pair (bearish then bullish) marks a potential support at the low.
ATR Filter: Uses the Average True Range (ATR) to ensure the first candle’s size (range or body) is substantial, filtering out insignificant patterns. Users can adjust the ATR period and multiplier for sensitivity.
Confirmation Mechanism: Requires price to close above (for bullish) or below (for bearish) the stored level for a set number of bars (default: 1), ensuring breakouts are sustained.
Line Management: Draws lines at confirmed breakout levels, extending them for a user-defined number of bars. Lines are deleted if price crosses a buffer zone (calculated as a percentage of price or ATR multiple), indicating the level’s invalidation.
Visualization: Optionally highlights BullBear/BearBull pairs with transparent background colors for easy pattern recognition.
Sniper Logic:
Momentum Detection: Identifies buy signals when a candle closes above its midpoint (indicating bullish pressure) and has a lower low than the previous candle, suggesting a potential reversal or continuation. Sell signals require a close below the midpoint and a higher high.
Session Timing: Restricts signals to user-defined London and US session hours (in UTC), capturing high-volatility periods.
Default settings (1-23 UTC) cover broad ranges but can be tightened (e.g., London: 7-11 UTC, US: 13-17 UTC) for precision.
EMA Filter: Optionally applies a 50-period EMA (adjustable) to ensure buy signals occur in uptrends (EMA rising) and sell signals in downtrends (EMA falling), enhancing signal reliability.
Line Plotting: Draws two lines per signal: one at the candle’s extreme (low for buy, high for sell) and another at 50% of the wick range (e.g., halfway between the candle body and low/high).
These lines act as reference points for entries or stops and are removed when price crosses them, reflecting dynamic market conditions.
Array Management: Uses arrays to handle multiple simultaneous lines, ensuring scalability without cluttering the chart.
Underlying Concepts
ENIGMA 369 is built on the following trading principles:
Market Structure: The BOS component reflects the idea that markets move through phases of consolidation and breakout. By identifying significant highs/lows from opposing candle pairs, it captures points where supply/demand dynamics shift, often preceding major trends.
Price Action: Both components rely on raw price behavior rather than lagging oscillators, making signals timely and relevant. The BOS uses candle relationships, while Sniper leverages candle anatomy (midpoint, wicks) for momentum.
Time-Based Trading: The Sniper logic capitalizes on high-liquidity sessions (London/US), where institutional activity often drives clear directional moves.
Trend Alignment: The optional EMA filter ensures signals align with the broader market context, reducing false entries in range-bound conditions.
Risk Management: Lines at key levels (BOS breakouts, Sniper highs/lows/wicks) provide visual cues for entries, stops, or targets, aiding disciplined trading.
This combination differentiates ENIGMA 369 from typical trend or scalping tools, which often rely on generic moving averages or RSI crossovers.
Instead, it uses a pattern-driven BOS system (akin to Smart Money concepts) and a momentum-session hybrid for Sniper signals, offering a nuanced approach to market analysis.
How to Use It
Setup:
Add ENIGMA 369 to your TradingView chart (Pine Script v5 compatible).
Access the settings to customize parameters:
BOS Settings:
Adjust ATR Period (default: 14) and Min Candle Size (default: 0.5x ATR) for pattern sensitivity.
Set Confirmation Bars (default: 1) to balance speed vs. reliability.
Choose Buffer Type (Percentage or ATR) and Buffer Zone Value (default: 0.1) to control when BOS lines are invalidated.
Enable Show Lines (default: true) and Highlight Candle Pairs (default: false) for visuals.
Customize Bullish/Bearish Line Color and Line Width/Length for clarity.
Sniper Settings:
Define London/US Start/End Hours (e.g., London: 7-11 UTC, US: 13-17 UTC) to match your market.
Enable EMA Filter (default: true) and adjust EMA Period (default: 50) for trend alignment.
Select line styles (Solid/Dotted/Dashed) and colors for buy/sell signals to distinguish from BOS lines.
Recommended timeframes: H1-H4 for BOS (trend/swing trading), M5-M15 for Sniper (intraday/scalping).
Trading with BOS:
Look for highlighted BullBear/BearBull pairs (if enabled) to anticipate potential levels.
When a green (bullish) or red (bearish) BOS line appears, it indicates a confirmed breakout.
Use these lines as support/resistance for entries, targets, or stops:
Bullish BOS: Enter long above the line, with a stop below the line or buffer zone.
Bearish BOS: Enter short below the line, with a stop above the line or buffer zone.
Monitor line deletion (price crossing buffer) as a signal to reassess the trend.
Trading with Sniper:
Watch for blue (buy) or orange (sell) lines during active sessions:
Buy Signal: Blue lines at the low and 50% wick suggest a long entry. Place stops below the low line and targets at recent resistance or a risk-reward ratio (e.g., 1:2).
Sell Signal: Orange lines at the high and 50% wick suggest a short entry. Place stops above the high line and targets at support.
Use the EMA filter to avoid signals against the trend (e.g., skip buy signals if EMA is declining).
Lines disappear when price crosses them, indicating the signal’s invalidation or completion.
Alerts:
Set up alerts for:
“Bullish BOS Confirmed” or “Bearish BOS Confirmed” for structural trades.
“Sniper Buy Alert” or “Sniper Sell Alert” for intraday entries.
Combine with other analysis (e.g., volume, key levels) for higher conviction.
Tips for Traders
Combine Strategies: Use BOS lines to identify the trend direction and Sniper signals for precise entries within that trend. For example, enter a Sniper buy signal only after a bullish BOS confirmation.
Timeframe Synergy: On higher timeframes (H4), BOS lines highlight major levels; on lower timeframes (M15), Sniper signals refine entries.
Session Optimization: Adjust session hours to your asset’s volatility (e.g., forex pairs shine during London open, equities during US open).
Risk Management: Always use stop-losses based on BOS or Sniper lines and maintain a favorable risk-reward ratio.
Backtesting: Test settings (e.g., ATR multiplier, EMA period) on your asset/timeframe to optimize performance.
Why It’s Original
ENIGMA 369 stands out by merging two specialized systems:
The BOS Logic adapts Smart Money concepts (order blocks, structure breaks) into a rigorous, ATR-filtered pattern detector, unlike generic support/resistance indicators.
The Sniper Logic blends session timing, momentum analysis, and EMA filtering, offering a scalping method that avoids the pitfalls of overtrading in low-volatility periods.
The dual framework allows traders to operate strategically (BOS for structure) and tactically (Sniper for entries), a rare combination in a single indicator.
Limitations
BOS: May lag in fast-moving markets due to confirmation bars; adjust to 1 bar for scalping.
Sniper: Signals are session-dependent, so ensure session hours align with your asset’s activity.
Overlaps: Multiple lines (BOS + Sniper) may clutter charts; customize colors/styles for clarity.
Not a Holy Grail: Best used with other confirmations (e.g., volume, news) to filter false signals.
Final Thoughts
ENIGMA 369 empowers traders with a dynamic tool to navigate market structure and seize intraday opportunities. Whether you’re a swing trader hunting major breakouts or a scalper targeting session-based moves, this indicator provides clear, actionable signals backed by robust price action logic. Experiment with its settings, align it with your trading plan, and let ENIGMA 369 guide you through the markets with precision and confidence.
This description is designed to be engaging and informative, giving traders a clear understanding of what ENIGMA 369 does, how it’s unique, and how to apply it effectively. It avoids vague claims (e.g., “follows trends”) and instead details the specific pattern-based BOS detection and momentum-session Sniper signals, making it valuable for both novice and experienced traders.
Smart Technical Matrix v6 - Display OnlySmart Technical Matrix Analyzer - This script analyzes 32 technical signals from 8 indicators across 4 timeframes (15m, 1H, 4H, 1D). It generates long/short trade signals with strength level, entry and target levels. Fully compatible with the Smart Matrix Display.
Uday Samant Scalping SetupThis Is scalping setup use for Bank nifty options buying...
Price always moves around VWAP, Fractal give us potential reversal signal.
In this setup take entry next to fractal and Target at VWAP or 20 EMA which ever next to fractal.
Signal Strength + TABI Visualizer (v7.8)// © dotcom880 (Based on original TABI by renderingnature1 & v4 Buy/Hold Entry Finder by runescapeyttanic)
// Indicator Purpose: Visualizes TABI RSI model in a separate pane. Plots Buy/Sell signals
// based on v4 Buy Logic + TABI Overbought Logic, with added "Super" levels for
// higher conviction signals (Super Buy = Buy + Deep RSI, Super Sell = Overheated).
// Version: 7.8 (Indicator Pane - Confidence Levels)
SKYFOR Chandelier Strategy with Auto TrendlinesHello friends)) Now I creat new indicator))) hope you will like it
RDX MTF MAC WavesA combination of MA crosses and multitimeframe MACDs that show trends and pullbacks / imbalances in value of a ticker so as to enter at specific levels
MTF RSI & SMA Crossover [OB/OS Filtered Signals]MTF RSI & SMA Crossover
This custom indicator combines the power of Multi-Timeframe (MTF) RSI, Simple Moving Average (SMA), and overbought/oversold (OB/OS) conditions to provide precise buy and sell signals based on the crossovers of the RSI and its SMA. The indicator includes the following features:
MTF RSI: The Relative Strength Index (RSI) is calculated on a customizable timeframe, giving traders the ability to analyze price momentum across different timeframes.
SMA of RSI: The RSI is smoothed using a Simple Moving Average (SMA), helping to filter out market noise and identify clearer trend reversals.
Overbought/Oversold Filter: Signals are only triggered when the RSI has been in an overbought (above 70) or oversold (below 30) condition, improving the reliability of potential trend reversals.
Buy/Sell Signals:
Buy signals occur when the RSI crosses above its SMA after being oversold, indicating potential upward momentum.
Sell signals occur when the RSI crosses below its SMA after being overbought, indicating potential downward momentum.
Customizable Label Colors: Choose your own colors for the "BUY" and "SELL" labels to match your chart's design and preferences.
Alerts: Set alerts for buy and sell signals, ensuring you don't miss a potential trade.
This indicator is ideal for traders who want to capture trend reversals and momentum shifts while filtering out false signals by using overbought and oversold conditions. Customize the settings to suit your trading style and strategy.
Trap Zone 2 minTrap Zone 2 Min — Visual Detection of Trap and Expansion Zones
This indicator is designed to clearly identify key price zones on lower timeframes, particularly the 2-minute chart. It's ideal for scalpers and intraday traders looking for structured, high-probability setups.
Trap Zone (No Trade Zone)
A central shaded area where trading is discouraged.
Marks potential liquidity traps or manipulation zones.
Calculated using recent highs, lows, and moving averages (MA20 and MA200).
Zones + and -
Positioned two times the size of an EB (Elephant Bar) above and below the trap zone.
Represent the first expansion level.
Useful for identifying potential long or short entries based on price breakout direction.
Zones ++ and --
Extend from the first + or - level to the next line outward.
Represent a second expansion layer, often aligning with price continuation or reaction zones.
Helpful for profit-taking or adjusting risk.
Zones +++ and ---
The most extreme levels plotted.
Serve as final take-profit areas or potential reversal zones.
Additional Features
Optional display of MA20 and MA200.
Configurable ADR (Average Daily Range) labels.
Full visual customization for better chart integration.
Best For
Scalpers and intraday traders.
Identifying and reacting to structured market zones.
Mapping price expansions and potential reversal points.
Premarket and afterhours high/low This indicator labels the high and low of the after hours and premarket session,
MMA -SA
User Settings & Input Configuration:
Option to enable/disable projection labels.
Set custom Lower Timeframe (LTF) and Higher Timeframe (HTF) values.
Option for automatic HTF selection based on the current chart's timeframe.
Define projection levels as percentages (e.g., -0.01,-0.1,-1) representing ranges from the selected candle.
Timeframe Handling:
If auto-HTF is enabled, it dynamically determines the appropriate HTF based on the current chart.
Retrieves OHLC and time data from the selected HTF using request.security.
Market Structure Detection:
On every new HTF candle, the script checks for:
Bullish MSS: Current candle closes above the high of two candles ago, after sweeping the previous low.
Bearish MSS: Current candle closes below the low of two candles ago, after sweeping the previous high.
When a valid MSS is found, the candle’s high and low are used to calculate the projection range.
Projection Level Plotting:
For each level specified by the user, the script calculates a horizontal line based on the candle's range.
These levels are plotted to the left side of the current candle (by a shift of -35 bars), projecting possible future price reactions.
Labels are added next to each level if the user enables them.
💡 Practical Use Cases:
Ideal for advanced price action traders who want to identify structural breakouts.
Helps in setting target zones or invalidation levels.
Adds a visual forecasting layer by projecting key levels forward.
🔧 Technical Notes:
Uses array to store projection levels and loop through them dynamically.
Projection lines and labels are styled for clean visibility.
Logic ensures detection only happens once per new HTF candle (using htf_time check).
Footprint Combined (Buy/Sell + Vumeter)It combines two indicators, a bar indicator and a VU Meter, to display the BID and ASK volume, as well as the total VOLUME for the current candle.
This indicator allows you to predict the trend strength for the next candle on the chart.
Previous Day & Weekly Highs/LowsThis indicator displays the previous day’s and previous week’s high and low levels on any timeframe. The levels are plotted as horizontal lines, with optional floating labels for quick reference (pHOD, pLOD, pWH, pWL). Weekly levels are shown with 40% opacity for visual distinction. All lines and labels automatically update at the start of each new day or week, making it easy to track key price levels across sessions.
Stochastic M1+M5 with EMA + 4H FilterThis indicator combines multi-timeframe Stochastic signals (M1 + M5) and an EMA trend check, while also filtering out noise near 4-hour highs/lows. It delays repeat signals if a weak profit move or recent trade just occurred. Ideal for short-term XAUUSD monitoring, it plots clear “Strong Bull” or “Strong Bear” signals on your chart and offers optional alerts for timely entries.
RDX Magic MAA combination on fast and slow moving averages which depending on timeframes show strong S&R and trends and pullbacks and continuations. In conjunction with specific oscillators, this indicator is a powerful system for anyone who wants to do trend trading and identify points from where reversal can happen.
Monthly Bull Snort - ConfirmedThis is the additonal Monthly Bullsnort scanner with relaxed metrics..
Market Structure - Miguel TavaresMarket Structure for HTF MTF and LTF - H4-M15-M1/M3 LH-LL HH-HL and MSS understanding .
Join us on www.algorithmic.one