Zen CSC Bar Strategy v1🧠 Zen Consecutive Bar Strategy — Research Tool (Trend + Reversal)
**Description:**
This strategy is designed as a flexible research tool for studying price behavior following consecutive bull or bear bars. It allows users to explore breakout and reversal scenarios with full control over trade entry and filtering logic.
**🔧 Key Features:**
* **Configurable bar sequence**: Detects customizable streaks of consecutive bull or bear bars.
* **Trend or Reversal mode**: Toggle between breakout-style entries or fade/reversal-style setups.
* **MA-based filter**: Optionally restrict trades to occur above or below the 20-period moving average.
* Longs can be limited to above/below MA
* Shorts can be limited to above/below MA
* **Customizable R-multiple targets**: Choose between 0.5R, 1R, 1.5R, or 2R reward targets.
* **Stop loss logic**: Uses syminfo.mintick to offset stops by 1 tick beyond the pattern high/low.
* **Entry logic**: Buy/Sell either on the close of the setup bar or on breakout beyond high/low.
* **Trade direction**: Enable long-only, short-only, or both.
**📊 Research Use Only:**
This is not a ready-to-trade system. It’s intended to help traders test ideas and collect performance stats under different configurations. Use it to:
* Evaluate the failure rate of open spikes
* Study behavior following strong directional bars
* Compare trend-following vs mean-reversion edge across sessions
**❗Disclaimer:**
This script is for educational purposes only. It does not constitute financial advice. Past performance does not guarantee future results.
Candlestick analysis
RLMC TMAS ALPHABOT by SAMOEDEFIferas gang
made by samoedefi
for rlmcrew
ict concepts with bos breaks
[Teyo69] T1 Short & Long Covering📘 Overview
The Short & Long Covering indicator is designed to help traders detect potential absorption candles and short-covering traps using a combination of normalized volume behavior and price exhaustion logic.
It visualizes possible long opportunities after sell-offs and short traps after price rallies—ideal for traders who want to anticipate reversals based on volume structure.
🧩 Features
📈 Detects rising price with falling volume → potential short covering
📉 Detects falling price with falling volume → potential long absorption
🔍 Flags volume spike conditions using normalized volume vs MA
🔵 Plots “L” (Long Covering) below bars
🔴 Plots “S” (Short Trap) above bars
Customizable pivot lookback and exhaustion period
⚙️ How to Use
Use "L" markers as possible long re-entry points after shakeouts
Use "S" markers to watch for failed rallies or bull traps
Combine with S/R zones or trend filters to confirm
Works well in conjunction with Wyckoff-style market logic or volume spread analysis (VSA)
🔧 Configuration
Price movement Lookback: Sets how many bars to compare for trend detection
Exhaustion Lookback: Defines the recent window to confirm price is exhausted
Normalized Volume MA Length: Used to determine volume spikes relative to average
⚠️ Limitations
Not a standalone signal — should be used with confluence (e.g., support/resistance, trend filters)
Best for spotting potential reversals, not trend-following entries
May generate false signals in low volume chop or news spikes
💡 Advanced Tips
Combine with a trend filter like appropriate EMA to avoid counter-trend setups
Use with a support/resistance script to find confluence zones
Watch for clustered L/S signals — multiple signals in a zone may show strong absorption or distribution
📝 Notes
Signal logic is based on volume exhaustion and price movement divergence
Normalized volume helps compare relative volume across time
“Spike” condition triggers only when volume exceeds 100% of its moving average
🚫 Disclaimer
This script is for educational purposes only. It does not constitute financial advice. Always do your own research and use proper risk management.
Multi-Indicator Buy/Sell Signals (EMA, RSI, MACD)// This source code is subject to the terms of the Mozilla Public License 2.0
// mozilla.org
// © buy and sell signals gio1
//@version=5
indicator("Multi-Indicator Buy/Sell Signals (EMA, RSI, MACD)", overlay=true)
// --- Inputs for Moving Averages ---
fastMALen = input.int(10, title="Fast EMA Length", minval=1)
slowMALen = input.int(20, title="Slow EMA Length", minval=1)
// --- Inputs for RSI ---
rsiLength = input.int(14, title="RSI Length", minval=1)
rsiOB = input.int(70, title="RSI Overbought Level", minval=50, maxval=90)
rsiOS = input.int(30, title="RSI Oversold Level", minval=10, maxval=50)
// --- Inputs for MACD ---
macdFastLen = input.int(12, title="MACD Fast Length", minval=1)
macdSlowLen = input.int(26, title="MACD Slow Length", minval=1)
macdSigLen = input.int(9, title="MACD Signal Length", minval=1)
// --- Calculate Indicators ---
// EMA
fastMA = ta.ema(close, fastMALen)
slowMA = ta.ema(close, slowMALen)
// RSI
rsi = ta.rsi(close, rsiLength)
// MACD
= ta.macd(close, macdFastLen, macdSlowLen, macdSigLen)
// --- Define Buy and Sell Conditions ---
// EMA Crossover Condition
emaBuy = ta.crossover(fastMA, slowMA)
emaSell = ta.crossunder(fastMA, slowMA)
// RSI Condition
rsiBuy = rsi < rsiOS and rsi > rsiOS // Crossing up from oversold
rsiSell = rsi > rsiOB and rsi < rsiOB // Crossing down from overbought
// MACD Condition
macdBuy = ta.crossover(macdLine, signalLine)
macdSell = ta.crossunder(macdLine, signalLine)
// --- Combine Conditions for Final Signals ---
buySignal = emaBuy and rsiBuy and macdBuy
sellSignal = emaSell and rsiSell and macdSell
// --- Plot Signals on Chart ---
plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)
// --- Add Alert Conditions ---
alertcondition(buySignal, title="Buy Alert", message="🔔 BUY signal triggered!")
alertcondition(sellSignal, title="Sell Alert", message="🔔 SELL signal triggered!")
Liquidity Hunter ProLiquidity Hunter Pro
The Liquidity Hunter Pro is an indicator designed to identify a specific, high-probability trading setup based on the concept of institutional liquidity hunts. The core philosophy is that major market moves are often initiated after large players engineer liquidity by sweeping obvious swing highs or lows, tricking retail traders before revealing their true direction.
This tool automates the detection of this entire sequence, acting as your assistant to filter out market noise and highlight moments of clear institutional intent. It's designed for precision on lower timeframes (like M1) but is fully customizable for any trading style.
Key Features
Multi-Timeframe (MTF) Bias: A simple, on-chart panel shows you the dominant trend from a higher timeframe (default: 15min). This acts as your master filter, ensuring you always trade with the larger market flow.
Intelligent Sweep Detection: Instead of flagging every minor break, the LHP identifies significant liquidity sweeps below/above confirmed swing points, marking them with a minimalist 🧹 icon.
Momentum-Filtered CHoCH: A simple break of structure isn't enough. A Change of Character (CHoCH) is only confirmed if the breakout candle has strong momentum, filtering out weak and indecisive reversals.
Clear Visual Cues: The indicator plots clean, minimalist lines for both the swept level (dashed) and the CHoCH confirmation (solid), giving you a clear visual map of the setup.
High-Probability FVG Detection: Automatically highlights Fair Value Gaps (FVGs) that are created during the powerful CHoCH move, pinpointing an A+ entry zone.
Customizable Alerts: Never miss a setup. Set alerts for two key events: an early warning on a Liquidity Sweep and the main Setup Ready alert once a sweep is confirmed by a CHoCH.
How to Use: The Optimal Entry Method (A Quick Guide)
The "Liquidity Hunter Pro" is designed to be used with a disciplined, step-by-step approach.
Step 1: Follow the Bias
Look at the HTF Bias Panel in the top-right corner.
If BULLISH, you are ONLY looking for long (buy) setups.
If BEARISH, you are ONLY looking for short (sell) setups.
Step 2: Wait for the Sweep (The Trigger)
Patiently wait for the indicator to plot the 🧹 icon and a dashed horizontal line. This signals that liquidity has been taken and a potential setup is forming.
Step 3: Get Confirmation (The Validation)
You must wait for the indicator to print the solid horizontal CHoCH line and label. This validates that the reversal after the sweep has strength. If no CHoCH appears, the setup is invalid.
Step 4: Identify Your Point of Interest (The Entry Zone)
Once the CHoCH is confirmed, it's time to find your entry.
A+ Entry: The indicator will automatically draw a colored FVG Box if a valid one is created. This is your highest-probability entry zone.
B+ Entry: If no FVG appears, your next best entry zone is the "Inducement Order Block" (the last opposite-colored candle right before the sweep occurred).
*** DISCLAIMER ***
This indicator is a tool for analysis and education; it is not financial advice or a signal service. Trading financial markets involves substantial risk and is not suitable for every investor. Past performance is not indicative of future results. Always use proper risk management and never risk more than you are prepared to lose. The author is not responsible for any profits or losses that may result from using this tool.
PM + BOS + FVG Indicator & AlertsHey team it's Tanner, I have created Nitros strategy into a custom indicator, it's only the PM BOS FVG model, I will add a HOD/LOD BOS FVG custom indicator eventually, this indicator is setup to give you alerts as well. or if you just want a clean FVG indicator and or PM level indicator this works too. mess with the settings to your liking and DM me on circle or discord if you have feedback or questions, thanks team.
Vertical Lines at Specific NY Timesthese time zones indicates london session and new york session accumulation manipulation and distribution at than spesific time zones
Alinhamento H1 + H4 com Fundo Colorido MACD Alignment Strategy: H1 + H4
This script highlights candles on the H1 chart with a colored background when there's full alignment between H1 and H4 based on the classic MACD (12,26,9) and EMA 200.
✅ Bullish background (green):
Price is above the EMA 200 on both H1 and H4
On both H1 and H4:
MACD line is above the Signal line
Histogram is green and above zero
MACD is above zero
❌ Bearish background (red):
Price is below the EMA 200 on both H1 and H4
On both H1 and H4:
MACD line is below the Signal line
Histogram is red and below zero
MACD is below zero
Use this tool to visually confirm trend alignment between timeframes and filter high-probability entries.
HTF/LTF Boxes v2.2HTF/LTF boxes with GANN levels
added second LTF
Script is identifying hourly boxes and breakouts in respective quarters.
Two lower time frames are available, also gann levels of previous hour's range is available.
Heikin Ashi Trend Strategy (Beginner)FOR BEGINNERS
Perfect! Below is a custom Pine Script for TradingView that:
Uses Heikin Ashi candles
Shows buy/sell signals based on trend conditions:
3+ green/red Heikin Ashi candles
Price above/below 20 EMA
RSI filter for momentum
Swing ReversalSwing Reversal — Indicator Description
What is the Swing Reversal Indicator?
The Swing Reversal indicator is designed to identify high-probability price rejection zones that could mark the beginning of a short- to medium-term reversal. It is based on technical price action patterns, momentum analysis, and volume behavior.
Rather than relying on trend-following signals, this tool looks for localized reversals that occur after failed breakouts or exhaustion moves — typically seen as wick-heavy rejection candles that sweep liquidity and then sharply reverse.
How Does It Work?
The Swing Reversal indicator analyzes a combination of price structure, candle behavior, momentum, and market participation to detect potential reversal points in the market.
It identifies candles that exhibit key characteristics of rejection and liquidity sweeps — commonly seen during turning points in swing trends. These candles are typically marked by:
A sharp rejection of price in one direction
A localized break of recent structure
Subtle shifts in momentum and volume
The indicator uses multiple filters to reduce noise and ensure that signals are based on meaningful price action, not random wicks or volatility spikes.
All signal logic is parameterized — allowing you to fine-tune the detection sensitivity to match the behavior of different assets or market conditions.
Best Used On:
This is a swing-based tool — not intended for scalping or ultra-short-term trading.
📌 For best results, use it on:
1H, 2H, 4H, 12H
Daily and 3D
It performs best when paired with:
Support/resistance zones
Trendline or structure analysis
Momentum confirmation (e.g., divergence, breakout follow-through)
⚠️ Caution
This indicator does not predict tops or bottoms. It identifies technical conditions for potential reversals, and should always be used with confirmation and sound risk management.
Here are some usecases:
Tradinguia.com Advanced Market Intelligence
Revolutionary Trading Technology
Represents a breakthrough in technical analysis, utilizing proprietary geometric algorithms combined with adaptive machine learning to identify high-probability trade setups. This is not your typical indicator - it's a complete market intelligence system.
What Makes SmartFlow Pro Unique
🔬 Advanced Mathematical Foundation
Proprietary Geometric Analysis: Uses advanced mathematical concepts to create dynamic market zones
Multi-Dimensional Calculations: Processes price action through sophisticated spatial algorithms
Adaptive Intelligence: Self-learning system that continuously optimizes performance
Zero-Lag Architecture: Real-time analysis without traditional indicator delays
Core Methodology
SmartFlow Pro employs a three-tier analytical framework:
Structural Recognition Engine: Identifies key market geometry patterns using proprietary pivot detection
Dynamic Zone Mapping: Creates intelligent support/resistance areas that adapt to market volatility
Probabilistic Signal Generation: Combines multiple validation layers for high-confidence trade signals
Signal Intelligence
LONG Signals: Generated when multiple geometric and probabilistic conditions align for bullish momentum
SHORT Signals: Triggered by convergence of bearish structural and statistical factors
Smart Filtering: Advanced validation system eliminates low-probability setups
Adaptive Timing: Machine learning component optimizes entry timing based on historical patterns
Key Advantages Over Traditional Indicators
✅ No Moving Averages: Eliminates lag associated with traditional trend indicators
✅ Dynamic Adaptation: Automatically adjusts to changing market conditions
✅ Multi-Market Compatibility: Optimized for Forex, Stocks, Crypto, and Commodities
✅ All Timeframe Support: Effective from 1-minute to monthly charts
✅ Institutional-Grade Logic: Professional-level analytical framework
✅ 100% Original Code: Completely proprietary algorithm with no built-in dependencies
Optimal Usage Scenarios
Primary Applications
Swing Trading: Exceptional for 4H to Daily timeframes
Trend Reversal Detection: Early identification of momentum shifts
Breakout Confirmation: Validates genuine breakouts vs. false signals
Risk Management: Clear entry/exit levels for position sizing
Market Conditions
Trending Markets: Captures momentum continuation setups
Consolidating Markets: Identifies range breakout opportunities
Volatile Markets: Filters noise while maintaining signal accuracy
All Market Sessions: Performs consistently across different trading sessions
Technical Specifications
Algorithm Type: Proprietary geometric and statistical hybrid
Calculation Method: Multi-layered mathematical analysis
Signal Generation: Probabilistic convergence model
Optimization: Machine learning adaptive framework
Code Base: 100% original, no built-in functions used
Professional Disclaimer
SmartFlow Pro is designed for experienced traders who understand market dynamics and risk management. The advanced nature of this indicator requires proper education in its application. Past performance does not guarantee future results.
Experience the Next Generation of Technical Analysis
Where Advanced Mathematics Meets Market Intelligence
Lemang Solid Buy/Sellini adalah indicator Lemang Solid, cara kegunaan dia ada di Ebook Pakcik Chapter4
Buluh Berbudi Buy/SellIni adalah indicator Buluh Berbudi, cara kegunaan indicator ini ada di Ebook Pakcik Chapter 4.
MTF FVGs [Fadi x MMT]The MTF FVGs indicator is a powerful tool for identifying and visualizing Fair Value Gaps (FVGs) across multiple timeframes on TradingView. It provides traders with customizable options to display bullish and bearish FVGs, control their appearance, and manage mitigated gaps, making it ideal for price action and imbalance-based trading strategies.
Features
Multi-Timeframe Support : Analyzes FVGs on up to seven timeframes, including an auto-adjusted timeframe and user-defined periods (e.g., 5m, 15m, 1H, 4H, 1D, 1W).
Customizable Display : Toggle visibility of FVG open, close, central equilibrium (C.E.), and connecting lines with adjustable styles (solid, dashed, dotted) and sizes.
Background Fill : Option to fill FVG areas with customizable transparency for better visualization.
Mitigation Settings : Show or hide mitigated FVGs with configurable mitigation criteria (e.g., touched, wick-filled, body-filled) and extend mitigated lines.
Labeling Options : Display labels for timeframes, FVG types (BISI/SIBI), and levels (open, close, C.E.) with customizable colors and sizes.
Proximity Filtering : Hide FVGs outside a specified price range based on daily or monthly ATR for cleaner charts.
Timeframe Filtering : Hide lower or current timeframe FVGs to focus on higher timeframe imbalances.
Performance Optimization : Limits the number of displayed FVGs and supports up to 5000 bars back, 500 lines, labels, and boxes.
Settings
Higher Timeframe (HTF) FVG Settings
Show/Hide : Enable or disable FVGs for each timeframe.
Timeframe Selection : Choose specific timeframes (e.g., 5m, 15m, 1H, 4H, 1D, 1W) or use auto-selection based on the current chart.
Colors : Set bullish (default: green) and bearish (default: red) FVG colors.
Max Count : Limit the number of FVGs displayed per timeframe (default: 5).
Display Settings
Open/Close Lines : Toggle visibility, style (solid, dashed, dotted), and size (1-4) for FVG boundaries.
Central Equilibrium (C.E.) : Show/hide the midpoint line with customizable style, size, and colors (default: white with transparency).
Link Line : Display a connecting line between FVG boundaries with adjustable style and size.
Background Transparency : Enable/disable fill between FVG boundaries with adjustable transparency (50%-98%).
Mitigation Settings
Show Mitigated FVGs : Toggle visibility of mitigated gaps.
Mitigation Type : Choose criteria for mitigation (None, Touched, Wick Filled, Body Filled, Wick Filled Half, Body Filled Half).
Mitigated Colors : Set colors for mitigated bullish and bearish FVGs (default: gray with transparency).
Extend Mitigated Lines : Extend mitigated FVG lines by a specified number of bars (default: 5).
Labeling Settings
Label Display : Toggle labels for FVGs with customizable color, background color, and size (tiny, small, normal, large, huge).
Label Levels : Show labels for open, close, or C.E. levels.
Label Content : Include timeframe, FVG type (BISI/SIBI), or level information in labels.
Advanced Settings
Proximity Filter : Hide FVGs outside a price range based on daily ATR (adjustable factor: 1-10).
Label Combine Factor : Control label visibility to avoid clutter (default: 1.0).
ATR Range : Set the number of candles for ATR calculation (default: 10).
Line Extension : Extend FVG lines by a set number of bars (default: 4) or based on price range conditions.
Timeframe Spacing : Adjust spacing between FVGs from different timeframes (default: 4 bars).
How to Use
Add the indicator to your TradingView chart.
Configure the desired timeframes and settings via the indicator's input menu.
Analyze FVGs to identify potential support/resistance zones or imbalance areas for trading decisions.
Use mitigation settings to track filled gaps and proximity filters to focus on relevant price levels.
Oz SIGNAL PRO v6 is a powerful 15-minute trend-following indicator tailored for precision trading. It detects Break of Structure (BOS) and CHoCH signals with built-in volume confirmation and overlays premium/discount zones directly on the chart. The indicator includes:
🔹 Visual buy/sell labels at breakout points
🔸 Dynamic EMA and VWAP for trend filtering
🟩 Automatic support/resistance zones
🔔 Alert-ready for signal automation
Ideal for intraday traders seeking clean, high-confidence signals.
Upgrade-ready: Easily extend with FVGs, order blocks, liquidity sweeps & backtesting.
Liquidity Hunter PRO FINAL ✅Liquidity Hunter PRO ✅ is a smart tool designed for traders who want to spot key liquidity sweeps and hunt stop runs with precision.
🔑 How it works:
Automatically plots significant swing highs and lows (liquidity levels) using pivots.
Monitors these levels in real-time and detects when price sweeps above highs or below lows.
Draws clear lines, boxes, and sweep zones to visualize where liquidity was grabbed.
Highlights BUY/SELL opportunities after stop hunts with clean triangle markers and labels.
Fully customizable: set pivot lookback, maximum levels, line age, buffer zone, and visual style.
📌 Features:
✔️ Automatic swing high/low detection
✔️ Dynamic liquidity sweep boxes
✔️ BUY/SELL labels and triangle signals
✔️ Alerts for sweeps above highs and below lows
✔️ Adjustable buffer and line lifetime
✔️ Lightweight, clear and easy to use
💡 Idea: This script helps traders follow Smart Money Concepts (SMC) by showing where the market hunts liquidity before reversals. Combine with your own confluence and strategy for powerful entries.
⚠️ Reminder: Always use this tool with proper risk management — it does not guarantee entries by itself.
D15 Precision IndicatorD15 Precision Indicator
The D15 Precision Indicator is a high-accuracy intraday trading tool optimized for 15-minute charts. It identifies precise BUY and SELL signals only when all key conditions align:
✅ Price above/below EMA 21 & EMA 50
✅ Price above/below VWAP
✅ Price within predefined support/resistance zones
✅ Break of Structure (BOS) confirmed by pivot levels
✅ High-volume breakout candle
✅ Optional confirmation from previous candles for added precision
The script includes:
Clear visual arrows (BUY/SELL)
Dynamic background highlights for signals
Support/Resistance zone boxes
All key indicators plotted (EMA, VWAP, zones)
Ideal for disciplined traders aiming for 80%+ win rate through strict signal filtering and visual clarity.
[🧪] LABS-ANALYTIX: CANDLE.BEHAVIORAL.ANALYTIX LABS ANALYTIX – Indicator Description
LABS ANALYTIX is your on‑demand Market Recon Tool. It scans every candle across your chosen timeframe and breaks out key performance metrics by weekday, so you can pinpoint patterns, optimize entries, and manage risk with surgical precision.
Features:
• Weekday Performance Metrics – Calculates % of up vs. down candles for Mon→Sun
• Average Gain & Loss – Computes mean gain on winning days and mean loss on losing days
• Max Single‑Bar Run‑Up – Identifies the largest one‑bar gain per weekday
• Max Single‑Bar Drawdown – Identifies the largest one‑bar loss per weekday
• Historical Lookback Control – Set “Lookback Bars” to limit analysis to the most recent X bars or use “0” for full history
• Neon‑themed Table Overlay – Renders a compact, color‑coded table in the top‑right corner for instant tactical insight
Use Cases:
• Discover your strongest and weakest weekdays
• Quantify average move sizes to tailor your stop‑loss and take‑profit levels
• Identify outlier candles for potential trade setups or cautionary risk flags
• Drill into specific timeframes with adjustable lookback
How to Use:
1. Add the indicator to any chart (overlay=false).
2. Adjust “Lookback Bars” input to focus on recent samples or entire history.
3. Refer to the Neon Table to guide your weekly trade cadence and refine strategy.
3 Consecutive Same Color CandlesThis TradingView Pine Script detects when three consecutive candlesticks are either all bullish (green) or all bearish (red). It plots a triangle marker above or below the candle to visually signal the pattern and optionally triggers alerts.
How It Works:
A green signal (triangle up) appears below the third candle if the last 3 candles closed higher than they opened (bullish).
A red signal (triangle down) appears above the third candle if the last 3 candles closed lower than they opened (bearish).
Alerts can be set up to notify you immediately when the pattern forms.
Use Case on the 10-Minute Chart:
On the 10-minute chart, this script helps you spot short-term momentum buildups in either direction.
Bullish Signal (3 Green Candles):
Suggests buyers are gaining control.
Can be used to:
Enter breakout trades
Confirm trend continuation
Prepare for scalp entries or momentum trades
Bearish Signal (3 Red Candles):
Indicates sellers are applying pressure.
Can help:
Spot pullbacks or trend reversals
Set up for short positions
Warn of potential breakdowns
Example Trading Ideas:
Pair with EMA or support/resistance for confirmation.
Use as a momentum filter in scalping systems.
Combine with volume or RSI divergence to gauge strength or exhaustion.
CandleTrack Pro | Pure Price Action Trend Detection CandleTrack Pro | Pure Price Action Trend Detection with Smart Candle Coloring
📝 Description:
CandleTrack Pro is a clean, lightweight trend-detection tool that uses only candle structure and ATR-based logic to determine market direction — no indicators, no overlays, just pure price action.
🔍 Features:
✅ Smart Candle-Based Trend Detection
Uses dynamic ATR thresholds to identify trend shifts with precision.
✅ Doji Protection Logic
Automatically filters indecision candles to avoid whipsaws and false signals.
✅ Dynamic Bull/Bear Color Coding
Bullish candles are colored green, bearish candles are colored red — see the trend instantly.
✅ No Noise, No Lag
No moving averages, no smoothing — just real-time decision-making power based on price itself.
📈 Ideal For:
Price action purists
Scalpers and intraday traders
Swing traders looking for clear visual bias
─────────────────────────────────────────────────────────────
Disclaimer:
This indicator is provided for educational and informational purposes only and should not be considered as financial or investment advice. The tool is designed to assist with technical analysis, but it does not guarantee any specific results or outcomes. All trading and investment decisions are made at your own risk. Past performance is not indicative of future results. Always do your own research and consult with a qualified financial advisor before making any trading decisions. The author accepts no liability for any losses or damages resulting from the use of this script. By using this indicator, you acknowledge and accept these terms.
─────────────────────────────────────────────────────────────