moh1//@version=6
indicator("moh1", overlay=true)
// === الإعدادات ===
length = input.int(20, title="عدد الشموع (حساسية الاتجاه)")
src = input.source(close, title="مصدر السعر")
maType = input.string("EMA", title="نوع المتوسط", options= )
// الألوان
colorUp = input.color(color.green, title="لون الاتجاه الصاعد")
colorDown = input.color(color.red, title="لون الاتجاه الهابط")
colorSide = input.color(color.yellow, title="لون الاتجاه العرضي")
sensitivity = input.float(0.1, title="حساسية الاتجاه العرضي (%)", minval=0.01)
// === حساب المتوسط ===
ma = maType == "EMA" ? ta.ema(src, length) : ta.sma(src, length)
// === تحليل الاتجاه ===
ma_slope = ma - ma
slope_pct = ma_slope / ma * 100
trendColor = slope_pct > sensitivity ? colorUp :
slope_pct < -sensitivity ? colorDown :
colorSide
// === رسم الخط المتغير اللون ===
plot(ma, title="خط الاتجاه", color=trendColor, linewidth=2)
Trend Analysis
MOM Buy/Sell + MACD Histogram Signal TableJarmo script ETGAG to be used for chart analysis
Meant to assist with determining how to choose direction
EdgeXplorer - Momentum EngineMomentum Engine by EdgeXplorer
Momentum Engine is a precision-driven oscillator and trend framework engineered to track market momentum with adaptive clarity. Unlike traditional momentum indicators, this engine blends ATR-based envelope logic, multi-mode oscillator scaling, and real-time directional overlays—all in one responsive system.
Designed for intraday traders and swing strategists alike, Momentum Engine offers a streamlined way to visualize momentum direction, impulse strength, and volatility-adaptive trend zones—with minimal noise and maximum context.
⸻
🔍 What Does Momentum Engine Do?
Momentum Engine visualizes market energy through a volatility-aware oscillator and accompanying trend overlays. It adapts dynamically to price behavior and enables traders to:
• Detect momentum waves with real-time visual cues
• Confirm directional bias using trend overlays and impulse zones
• Switch between Regular and Normalized oscillator modes
• See heatmap-based signal confirmation for crossovers
• View optional info panels, labels, and trend bar colors for clarity
It’s a compact yet powerful system built for discretionary and systematic use.
⸻
⚙️ How It Works – Technical Breakdown
1. Trend Envelope Logic
At its core, Momentum Engine constructs a price envelope using:
• The average of the highest closes and highs (Baseline Length)
• The average of the lowest closes and lows
• A multiplied ATR to scale the distance between upper and lower bounds
These bounds determine trend bias:
• Price above the short side of the channel → Bullish
• Price below the long side → Bearish
• In-between → Neutral
A dynamic midline tracks the central channel axis.
2. Oscillator Wave Calculation
The momentum oscillator reacts to price positioning relative to the envelope:
• In Regular Mode, it shows raw price deviation from the trend channel
• In Normalized Mode, it maps price movement into a 0–100 scale with historical scaling logic
Both modes use smoothing (Smoothing) to reduce noise.
3. Overlay Channel (Optional)
• Displays trend floors (bull) and ceilings (bear) on the price chart
• Color-coded trend shifts appear as pulse circles
• Optionally, bars themselves can be recolored for instant trend recognition
4. Heatmap Signal Zones
The background dynamically changes based on oscillator crossovers:
• Bullish signal → Yellow heatmap
• Bearish signal → Blue heatmap
These zones signal momentum ignition, especially helpful for early entries.
⸻
📈 What You See on the Chart
Element Meaning
Green Momentum Wave Bullish pressure (oscillator > midline or >50)
Red Momentum Wave Bearish pressure (oscillator < midline or <50)
Zero Line Base reference in Regular mode
Gray Guide Lines (Normalized) Bands for Overbought (85), Oversold (15), and Neutral (33–50)
Channel Lines Trend bias boundaries (bull/bear zones)
Pulse Marker (Circle) Trend direction change
Bar Colors (Optional) Bull or bear bar overlays for added clarity
Background Heatmap Bullish or bearish impulse confirmation
Info Table (Optional) Real-time trend and oscillator data panel
Debug Labels (Optional) Inline oscillator readings per bar
⸻
📊 Inputs & Settings
Engine Settings
Input Description
Timeframe Optional custom timeframe override
Baseline Length Determines envelope size (larger = smoother trend)
Multiplier Factor Controls ATR-based range expansion
Momentum Wave Settings
Input Description
Mode Regular = raw wave, Normalized = 0–100 scaling
Bull/Bear Colors Wave color customization
Line Width & Smoothing Visual clarity adjustments
Overlay Channel
Input Description
Show Overlay Toggle trend ceilings/floors on chart
Channel Colors Separate bull/bear lines
Trend Bar Color Recolors candle bodies based on trend bias
Signal Heatmap
Input Description
Enable Heatmap Background impulse shading toggle
Bull / Bear Colors Adjust visual tone of crossover zones
Add-ons
Input Description
Show Debug Labels View oscillator values at each bar
Show Info Panel Display current trend, oscillator value, and mode
⸻
🧠 How to Use Momentum Engine
Regular Mode
• Oscillator above 0 = Bullish bias
• Oscillator below 0 = Bearish bias
• Use zero line as your confirmation threshold
Normalized Mode
• 85 → Overbought / exhaustion
• <15 → Oversold / reversal watch
• Crossing 50 → Momentum ignition
• 33–50 → Neutral zone / ranging phase
Visual Interpretation Tips
• Green wave + yellow heatmap = Bull momentum confirmation
• Red wave + blue heatmap = Bear momentum confirmation
• Pulse marker = New trend — evaluate strength with wave slope
• Trend bar coloring = Scan trend alignment at a glance
⸻
🧪 Use Cases & Strategy Ideas
• ⚡ Scalping Impulse Moves
Use oscillator + heatmap crossover to catch directional bursts
• 🔁 Pullback Continuation
Wait for momentum to reset near neutral zone, then re-enter trend
• 📉 Reversal Triggers
Look for divergence or Normalized wave flipping at extremes
• 🎯 Multi-timeframe Confirmation
Set custom timeframe and layer on top of a higher or lower TF structure
Volume Spike Analyzer(SMA10-Based)📊 **Volume Spike Analyzer (SMA10-Based)**
This indicator highlights abnormal volume activity by comparing current volume to the 10-period Simple Moving Average (SMA) of volume. It helps traders visually identify unusual activity that may precede breakouts, reversals, or news-driven moves.
---
🔧 **Features:**
• ✅ Colors volume bars:
• Green = Volume > SMA(10)
• Red = Volume ≤ SMA(10)
• ✅ Detects and labels spike levels:
• 🔶2x — Volume > 2x SMA(10)
• 🟢3x — Volume > 3x SMA(10)
• 🔴4x — Volume > 4x SMA(10)
• ✅ Built-in alerts for all 3 spike levels
---
📈 **Best Use Cases:**
• Confirm breakouts with strong volume
• Detect accumulation/distribution
• Filter low-volume setups
• Combine with VWAP/EMA for directional confirmation
---
⏱️ **Recommended Timeframes:**
• Intraday: 5m, 15m, 1h
• Also works on daily for swing trades
---
🧠 **Pro Tips:**
• Use with VWAP or EMA(20/50/200) for confluence
• Add SMA(Volume, 10) to your price chart for quick correlation
• Combine with candle pattern detection for signal validation
---
Smart RSI Divergence PRO | Auto Lines + Alerts
Smart RSI Divergence PRO
This indicator automatically finds RSI divergences on price charts:
🔹 Detects both regular & hidden divergences
🔹 Draws auto trendlines connecting swing highs & lows
🔹 Clear triangle labels directly on the chart
🔹 Ready-to-use alerts for your strategy
Use it to spot potential trend reversals and hidden continuation signals.
How it works
Regular Divergence: Price makes a higher high (or lower low) while RSI does not — this can signal a possible trend reversal.
Hidden Divergence: Price makes a lower high (or higher low) while RSI makes a higher high (or lower low) — this can signal a possible trend continuation in the same direction.
Auto Lines & Labels
The script automatically detects local swing highs and lows and draws connecting trendlines on price.
Labels appear on the chart as colored triangles, so signals are easy to see at a glance:
🔻 Red triangle — Regular Bearish Divergence (potential short)
🟠 Orange triangle — Hidden Bearish Divergence (possible trend continuation down)
🟢 Green triangle — Regular Bullish Divergence (potential long)
🔵 Blue triangle — Hidden Bullish Divergence (possible trend continuation up)
Customization
You can adjust:
RSI length
Show/hide regular or hidden divergences
Show/hide auto lines and labels
Customize line width and transparency
Works on any market and any timeframe — crypto, forex, indices, stocks.
⚠️ Disclaimer: This script is for educational purposes only and does not constitute financial advice. Always test any strategy thoroughly and trade at your own risk.
EdgeFlow Scalping Dashboard [GalihRidha]🚀 Unlock the Edge — Trade Smarter, Trade Safer!
Are you tired of missing high-quality entries, struggling with fakeouts, or second-guessing your trades?
EdgeFlow Scalping Dashboard puts professional-grade decision support right on your chart — so you always know when to strike, when to wait, and when to stay out.
No more trading in the dark. No more emotional guessing.
This is your real-time, on-chart trading edge — designed for the fast-paced world of scalping and adaptable for any trading style.
🧠 What Makes EdgeFlow Special?
Instant Signal Clarity:
Get crystal-clear LONG/SHORT signals and “Safety” ratings delivered exactly when you need them — one minute before every candle closes, on any timeframe!
Visual Risk Management:
Adaptive TP/SL levels and live reversal detection keep you out of chop and false moves, so your stops and targets are always optimized for current market conditions.
Professional, Multi-Factor Analysis:
Combines trend, momentum, volatility, volume, and advanced pattern recognition — including candlestick patterns, RSI divergence, and higher timeframe confirmation.
Actionable Dashboard:
The vertical, minimalist layout keeps your workflow clean and mobile-friendly. Track your last trade, prep your next move, and see at a glance if conditions are Safe, Neutral, or Not Safe.
🔑 Why Choose EdgeFlow Scalping Dashboard?
Trade with Confidence:
Stop hesitating — the dashboard highlights the safest opportunities, complete with risk grades and reversal probabilities.
React Faster:
See “Capturing...” as soon as the dashboard starts scanning for a new signal, so you never get left behind on entries.
Avoid Costly Mistakes:
Color-coded warnings and smart, dynamic TP/SL help you stay disciplined and skip high-risk setups.
For Every Trader:
Whether you’re a crypto scalper, forex daytrader, or swing trader — EdgeFlow adapts to any market, any timeframe, and any asset.
📈 How To Use
Watch the dashboard for the Next Section to light up — that’s your advanced notice to prepare an entry.
Double-check the Safety status and Reversal Probability.
Enter trades only when the conditions are green, or use your own system with these insights for even more edge.
Review the Last Section to learn from each trade and refine your timing.
💡 Ready To Level Up Your Trading?
Don’t settle for ordinary indicators. EdgeFlow Scalping Dashboard gives you everything you need — real-time signals, risk context, and pro-grade safety filtering — all in one place.
Try EdgeFlow on your favorite chart, and feel the difference with every decision.
📚 Dashboard Key
🔙 Last Section: Your previous signal and its full context.
🔜 Next Section: The upcoming opportunity — with targets and safety score.
🛰️ Capturing... = Dashboard is monitoring for your next edge.
🌟 Enjoy and trade safe!
Follow, fork, and tag if you publish an upgrade! Your feedback and ideas are always welcome . 🚦✨
Smart Price Divergence (MACD Filter) + EMA
Smart MACD Price Divergence + EMA
This indicator automatically spots price divergences filtered by MACD momentum and trend direction with an adjustable EMA:
🔹 Detects regular bullish & bearish divergences
🔹 Filters signals using a simple EMA trend filter
🔹 Clear triangle labels on the chart
🔹 Ready-to-use alerts for your strategy
Use it to catch potential reversal points when the trend may be losing strength.
How it works
Bearish Divergence: Price makes a higher high above the EMA while MACD makes a lower high → possible reversal down.
Bullish Divergence: Price makes a lower low below the EMA while MACD makes a higher low → possible reversal up.
EMA filter: Helps identify when the market is overextended relative to its trend.
The indicator uses standard MACD settings (fast, slow, and signal lengths) which can be adjusted to fit your asset and timeframe. The EMA length is also fully customizable.
Signal colors
🔻 Red triangle — Bearish Price Divergence (potential short)
🔺 Green triangle — Bullish Price Divergence (potential long)
This script works on any timeframe and market — crypto, forex, indices, or stocks. Signals do not repaint once confirmed.
⚠️ Disclaimer: This script is for educational purposes only and does not constitute financial advice. Always test any strategy thoroughly and trade at your own risk.
No Supply No Demand by Tanveer)No Supply No Demand Indicator will help you to find confluence to follow VSA strategy.
Bullish RSI Divergencebullish rsi divergence with a bullish pin bar. look for swing positions once alert goes off.
EdgeXplorer // Swing SequenceEdgeXplorer - Swing Sequence
Swing Sequence is an advanced structural mapping indicator designed to detect and visualize internal swing formations, sequence logic, and multi-leg transitions directly on the chart. This tool is particularly useful for traders applying Smart Money Concepts (SMC), Wyckoff theory, or Elliott-style structure recognition, where the accuracy of pivot timing, internal leg evaluation, and pattern tracking is mission-critical.
Instead of drawing arbitrary zig-zags, this indicator uses real market structure to extract and label potential bullish or bearish reversal sequences, including optional point 5 confirmations and internal double-top/double-bottom logic — all in real time.
⸻
🔍 What Does Swing Sequence Do?
Swing Sequence dynamically identifies structured pivot points and evaluates swing sequences composed of up to 6 labeled legs (A, B, 1, 2, 3, 4) and an optional 5th confirmation point. Once a valid bullish or bearish pattern is recognized based on defined structural rules, it plots:
• Pivot labels (A through 5)
• Swing zones or boxes outlining the full formation
• Optional pathlines to visualize swing flow
• Dotted projection lines for context
It also uses internal logic to detect double-point confirmations, creating a highly structured, rule-based method for visualizing potential reversals or continuations.
⸻
⚙️ How It Works – Technical Breakdown
1. Pivot Detection
The script calculates two sets of pivots:
• External Swings using Swing Pivot Length (len)
• Internal Swings using Internal Pivot Length (ilen)
Both use high/low extremities to determine directional bias (BULL or BEAR).
2. Sequence Evaluation
Once enough pivots are collected (at least six), the algorithm attempts to construct valid sequences:
• Bullish: A → B → 1 → 2 → 3 → 4 (+ optional 5)
• Bearish: A → B → 1 → 2 → 3 → 4 (+ optional 5)
Each candidate is evaluated using logical price containment, directional flow, and a unique “point 4 beyond point 2” condition (optional).
3. Double Point Logic
If enabled, the indicator looks for a second internal pivot that aligns in price proximity with point 4 (adjustable via Strict Double-Top/Bottom and ATR-based Threshold), allowing traders to require confirmation before considering a sequence valid.
4. Sequence Validation
Sequences are only plotted if:
• All structural rules are met
• There’s no overlap with a previously plotted sequence
• Optional filters (like show/hide point 5) are satisfied
⸻
📈 What You See on the Chart
Visual Purpose
Labels A–5 Marks each structural point in the sequence. Label 5 is optional.
Colored Box Encapsulates the swing structure:
• Green Box → Bullish sequence
• Red Box → Bearish sequence
Dotted Lines Horizontal projection from each swing point to end of sequence
Polyline (Path) (Optional) Connects all swing points to show flow
Auto-Coloring Box and line colors change based on bullish or bearish pattern, unless overridden
⸻
📊 Inputs & Settings Explained
Detection Settings
Input Description
Swing Pivot Length (len) Controls the lookback for external high/low pivots. Larger values = broader swings
Internal Pivot Length (ilen) Controls lookback for internal swing structure — used for validation and double-point logic
4 Beyond 2 Forces point 4 to go beyond point 2 for sequence to be valid
Show Point 5 Toggles whether point 5 is included in plotted sequences
Strict Double-Top/Bottom Enables stricter proximity matching between internal pivots (uses absolute levels vs. price containment)
Threshold Sets sensitivity of double-point matching, scaled by ATR(200) for dynamic precision
Display Settings
Input Description
Path Plots a polyline that connects all labeled points in a sequence
Boxes Toggles the shaded swing box zone
Line Color Default color for path and projection lines when auto-coloring is disabled
Auto-Color Automatically changes box and label colors based on trend direction
Show Lines Toggles horizontal dotted projection lines from each swing point
⸻
🧠 How to Read & Use Swing Sequence
Swing Sequence is a visual structural analyzer, not a signal tool. Here’s how to interpret what you see:
Bullish Sequence Example
A (high)
↓
B (low)
↓
1 → 2 → 3 → 4 (lower highs/lows)
↓
5 (double bottom)
Interpretation: Price is forming a potential reversal base. Confirmation at point 5 adds confluence for long setups.
Bearish Sequence Example
A (low)
↑
B (high)
↑
1 → 2 → 3 → 4 (higher highs/lows)
↑
5 (double top)
Interpretation: Market may be topping out. Point 5 adds structural symmetry and possible short confluence.
⸻
🧪 Use Cases & Strategy Integration
• 🔍 Smart Money Traders: Use the sequences to identify where price is structurally exhausting liquidity or forming distribution/accumulation
• 🔄 Reversal Traders: Use point 5 or sequence completion as part of your entry filter
• 🎯 Structure-Based Confirmation: Use Swing Sequence to validate bias after FVG, OB, or BOS breaks
• 📏 Target Zones: Swing boxes can define range-based targets, stop zones, or breaker levels
EdgeXplorer – VWAP Cloud RunnerEdgeXplorer – VWAP Cloud Runner
VWAP Cloud Runner is a high-resolution, percentile-based volume-weighted average price (VWAP) cloud designed to help traders track dynamic price positioning across time-anchored VWAP layers. Unlike traditional single-line VWAPs, this tool offers a complete “cloud system” of rolling anchored VWAPs, statistically evaluated and plotted across multiple quantiles to visualize relative value zones and market bias gradients in real time.
Built for traders who depend on volume-informed structure, VWAP Cloud Runner can be used in both trending and ranging environments to identify premium vs. discount conditions, price acceptance, and overbought/oversold behavior — through the lens of aggregated VWAP layers.
⸻
🔍 What Does VWAP Cloud Runner Do?
This indicator computes a user-defined number of rolling anchored VWAPs — each seeded from a recurring anchor period (e.g. every hour, session, or day) — and stores them in memory. From this array of VWAPs, it then calculates statistical percentile levels (Max, High, Median, Low, Min) across the set.
Each percentile level reflects where price sits relative to the historical range of VWAPs, rather than raw price alone. The resulting cloud offers:
• A contextual map of volume-based fair value,
• A way to visually separate trending from reversionary price action,
• And a statistically sound framework for mean reversion, breakout filtering, or value zone trades.
⸻
⚙️ How It Works – Technical Breakdown
1. Anchor Period Selection
Every new bar of the selected anchor timeframe triggers the start of a new VWAP instance. Each VWAP is built over time using standard volume * price accumulation and volume division.
2. Rolling VWAP Array
The user sets the number of VWAPs (VWAP Count) to track (up to 500). Each VWAP updates in real-time and is stored in an internal array.
3. Percentile Calculation
At every new bar:
• The indicator performs percentile interpolation on the array of stored VWAPs using TradingView’s array.percentile_linear_interpolation() method.
• It extracts 5 key percentile levels (Min, Low, Median, High, Max) and plots them live on the chart.
4. Visual Styling & Optional Enhancements
• Lines can be solid or dashed depending on preference.
• Gradient fills between percentile bands form the “cloud.”
• The script includes smoothing logic to soften fills based on the difference between anchor periods, improving legibility.
⸻
📈 What Each Visual Component Represents
Visual Meaning
Max (Green Line) 100th percentile VWAP — the highest anchored VWAP in memory
High (Light Gray Line) ~70th percentile — often used to mark premium zones
Median (Gray Line) 50th percentile VWAP — midpoint of historical VWAPs
Low (Light Gray Line) ~30th percentile — used to gauge discount or acceptance zones
Min (Red Line) 0th percentile — lowest VWAP across all tracked anchors
Gradient Fills Shaded clouds between max/median and min/median, visually representing value extremes
Anchor Highlight A faint gray background briefly appears when a new VWAP is seeded (anchor event)
Dashed Styling Optional dashed lines toggle to differentiate levels without distraction
Everything on screen is statistically anchored and volume-aware — not arbitrary.
⸻
📊 Inputs & Settings Explained
VWAP Cloud Runner Settings
Input Description
Anchor Period Determines how often a new VWAP is seeded. Common examples: 15m, 1h, 1D
VWAP Source Price source used for VWAP calculation (default: hlc3)
VWAP Count Number of rolling VWAPs to store and evaluate. Affects how responsive or stable the cloud is
Toggle / Percentile / Width / Color
Each of the 5 layers — Max, Upper, Median, Lower, and Min — includes:
• Toggle (on/off)
• Percentile (editable for custom statistical boundaries)
• Line Width
• Color
This design gives traders full control to custom-tailor the cloud’s resolution and emphasis.
Style Options
Input Description
Use Dashed Lines Adds rhythm to cloud lines by visually breaking up uniform structure
Enable Gradient Fill Enables shaded cloud fills between Min–Median and Max–Median
Show Anchor Highlight When enabled, highlights the bar where each new VWAP instance is created
⸻
🧠 How to Interpret VWAP Cloud Runner
This tool is built for contextual reading, not explicit signals. Here’s how to interpret what you see:
• Price Near Max → Price is at a volume-weighted extreme → possible overextension or trend strength
• Price Near Min → Price is deeply discounted relative to recent VWAP history → potential reversion
• Price Near Median → Price is in balance → potential for breakout or continuation depending on trend
Use VWAP slope and percentile spacing to read the “shape” of price structure:
• Tight range between all percentiles → compression, awaiting expansion
• Widening gaps → trend formation or volatility burst
• Symmetric curve → balanced distribution
• Skewed cloud → directional bias forming
⸻
🧪 Use Cases and Strategy Tips
• 🎯 Mean Reversion Strategies: Fade extremes when price touches Max or Min and fails to close beyond
• 🛡️ Trend Confirmation: Ride price between High and Max or Low and Min — these zones act as trend channels
• 📉 Breakout Filtering: Use percentile gaps to measure conviction — small gaps = low conviction breakout
• 💡 Volume Fair Value: Trade only when price is near or reclaims the median VWAP → fair value validation
Works seamlessly across assets — whether you’re scalping BTC, swing trading FX pairs, or following trend continuation in equities.
⸻
🔒 Compliance Notice
VWAP Cloud Runner is a data visualization and contextual awareness tool. It does not provide trade signals or advice and should be used in conjunction with your existing strategy and risk parameters.
This script is protected under ETAPX Inc. and is proprietary to the EdgeXplorer platform. Redistribution, resale, or any use outside of TradingView without express written permission is strictly prohibited.
TSL Drunken BirdA huge shoutout to @anotherDAPTrader for inspiration and support in developing this system!
Overview:
The Accurate Swing Trading System is a powerful technical analysis tool designed for swing traders on TradingView. It generates precise buy and sell signals based on price action crossing a dynamic Trailing Stop Loss (TSL) level, calculated from recent highs and lows. Enhanced with optional Higher Time Frame (HTF) confluence, the system aligns short-term signals with broader market trends, making it ideal for traders seeking to optimize entries and exits. Visual indicators include signal labels, customizable horizontal lines, a colored TSL line, and optional bar/background coloring. Alerts support trade execution across various assets, such as NASDAQ E-mini futures, stocks, forex, and more. A special shoutout to AnotherDAPTrader for inspiration and support in developing this system!
Key Features:
Swing Signals: Generates "BUY" and "SELL" signals when the closing price crosses above/below the TSL, based on a user-defined lookback period (Swing).
HTF Confluence: Adjusts signals based on the HTF trend (e.g., "EXIT LONG" instead of "SELL" if HTF is bullish), toggleable via Use HTF Confluence.
HTF Selection: Choose from 8 timeframes: 5-minute, 15-minute, 30-minute, 1-hour, 4-hour, Daily, Weekly, or Monthly.
Horizontal Lines: Plots green (buy) and red (sell) lines at the closing price of signal bars, with a toggle to extend lines 50 or 500 bars.
TSL Visualization: Displays a TSL line (green if close >= TSL, red if close < TSL) to highlight dynamic support/resistance levels.
Bar/Background Coloring: Optionally colors candlesticks and chart background green (bullish) or red (bearish) based on price relative to TSL.
Alerts: Configurable alerts for "Buy Signal" and "Sell Signal" on price crossovers/crossunders.
Persistent Behavior: All components (signals, labels, lines, TSL, coloring) remain on the chart indefinitely, consistent with the original design.
Use Cases:
Perfect for swing trading on any timeframe (e.g., 1-minute for scalping, 1-hour for swing trading) and asset (e.g., NASDAQ E-mini futures, stocks, forex).
Enhances decision-making by aligning short-term trades with higher timeframe trends.
Supports both manual trading (via visual cues) and automated trading (via alerts).
License:
Released under the Mozilla Public License 2.0. Created by ceyhun, with a shoutout to AnotherDAPTrader.
How to Use the Accurate Swing Trading System in TradingView
Add the Script to TradingView:
Open TradingView (www.tradingview.com) in a browser or desktop app.
Navigate to the Pine Editor (bottom panel of any chart).
Copy and paste the provided Pine Script code.
Click "Add to Chart" to apply the indicator to your active chart.
Configure Indicator Settings:
Access settings by clicking the gear icon next to the indicator name on the chart.
Adjust the following inputs:
Swing (default: 3): Defines the lookback period for calculating the highest high and lowest low used in the TSL. Higher values produce smoother but potentially delayed signals.
Barcolor (default: true): Enables/disables green (bullish) or red (bearish) candlestick coloring based on close vs. TSL.
Bgcolor (default: false): Enables/disables green/red background coloring for trend visualization.
Use HTF Confluence (default: true): Enables/disables HTF trend filtering. When enabled, signals adjust to reflect HTF trend (e.g., "EXIT LONG" for sell signals if HTF is bullish).
Higher Time Frame (default: "60"): Select from for 5-minute, 15-minute, 30-minute, 1-hour, 4-hour, Daily, Weekly, or Monthly HTF analysis.
Use Long Horizontal Lines (500 bars) (default: true): Toggles horizontal line length between 500 bars (long) and 50 bars (short).
Interpret Signals and Visuals:
Signal Labels:
"BUY" (green, below bar): Triggered when close crosses above TSL (and HTF is bullish or use_htf is off).
"SELL" (red, above bar): Triggered when close crosses below TSL (and HTF is bearish or use_htf is off).
"EXIT SHORT" (orange, below bar): Triggered on buy signals when HTF is bearish (with use_htf on).
"EXIT LONG" (orange, above bar): Triggered on sell signals when HTF is bullish (with use_htf on).
Horizontal Lines:
Green lines (buy signals) and red lines (sell signals) are plotted at the close price of the trigger bar, aligning with TSL color changes (green to red or vice versa).
Lines extend 50 bars (if long_lines is false) or 500 bars (if true) to the right.
TSL Line: A continuous line (linewidth=3) showing the TSL level, colored green (close >= TSL) or red (close < TSL).
Bar/Background Coloring: If enabled, candlesticks and background are colored green (bullish) or red (bearish) based on close vs. TSL.
Set Up Alerts:
Right-click the indicator name on the chart and select "Add Alert."
Choose "Buy Signal" or "Sell Signal" as the condition.
Configure alert settings (e.g., notification method, frequency: once per bar, etc.).
Alerts trigger on Buy (crossover) or Sell (crossunder) events, ideal for trade execution or monitoring.
Test on a Chart:
Apply to a chart (e.g., NASDAQ E-mini futures, 1-minute timeframe, as per your metadata from July 10, 2025, 05:41 PM CDT).
Verify:
Labels: "BUY", "SELL", "EXIT LONG", "EXIT SHORT" appear only on crossover/crossunder bars.
Horizontal Lines: Green/red lines plot at the close price where TSL changes color (green to red for Sell, red to green for Buy), extending 50 or 500 bars based on long_lines.
TSL Line: Updates continuously, colored green/red based on close vs. TSL.
Coloring: Bar/background coloring (if enabled) reflects trend direction.
HTF Confluence: With use_htf on, test htf_res = "M" (and others like "60", "D") to ensure signals adjust correctly (e.g., "EXIT LONG" for sell signals if monthly HTF is bullish).
Alerts: Confirm alerts trigger on crossovers/crossunders.
Ensure all components persist indefinitely (no decay).
Best Practices:
Timeframe: Use on any timeframe (e.g., 1m for scalping, 1h for swing trading). Adjust Swing to balance signal frequency and reliability.
Asset: Suitable for volatile assets like NASDAQ E-mini futures, stocks, or forex.
HTF Alignment: Enable use_htf for trend-aligned trades, especially on higher timeframes like "D" or "M".
Line Length: Use long_lines = true for longer-term visualization (500 bars) or false for shorter-term (50 bars).
Risk Management: Combine with stop-loss/take-profit levels and proper position sizing, as the system does not include risk management.
Acknowledgments:
License Note:
This script is provided under the Mozilla Public License 2.0. Users are free to use, modify, and distribute it per the license terms.
9 EMA Cross 21 EMA Strategy - 1H with 5% TPThe 21/9 EMA crossover strategy is a powerful trend-following method where a buy signal is triggered when the 9 EMA crosses above the 21 EMA, indicating bullish momentum. It works best in trending markets, especially when combined with filters like the 100 EMA to avoid choppy zones. Traders can enhance performance by entering on EMA retests, using a fixed 35-point stop-loss, and setting a 5–8% take profit. This strategy shines on 15-minute to 1-hour charts and can yield massive returns—sometimes up to 300%—when used with discipline and proper risk management. Follow me for more crazy setups!
Market Strenght PRO by javicdc
💥 Market Strength PRO by javicdc
Who's dominating the market right now?
This indicator gives you the answer in real time using a custom system to measure buying and selling pressure, filtered by EMA 200 and RSI 14 to highlight only the most reliable market moments.
✅ What does this indicator offer?
🔹 Dynamic calculation of market strength based on volume and candle body size
🔹 Visual zones in green or red based on buyer/seller dominance
🔹 Top diagnostic label with clear readings:
🟢 Extreme Buy – ✅ Buyer Dominance – 🔻 Seller Dominance – 🔴 Extreme Sell
🔹 Dynamic background that adjusts with the real market strength
🔹 Smart filter mode: only displays values when trend confirmation is valid (via RSI & EMA200)
🔹 Customizable: choose between SMA or EMA smoothing and toggle filter mode on/off
🧪 How to interpret it?
Strength > 50 → strong buying pressure
Strength < -50 → strong selling pressure
Between -20 and +20 → neutral or indecision zone
The filters ensure signals only appear with true trend confirmation, reducing false positives.
📈 Ideal for:
Scalping, intraday or swing trading across all assets: Forex, crypto, indices or stocks.
Works on all timeframes.
📌 Created by Javier Carrasco (@javicdc) — if you find it useful, don’t forget to like and follow for more technical analysis tools.
ADX and DI – Clean Trend IndicatorADX and DI – Clean Trend Indicator helps traders identify trending conditions and the strength of a trend using the classic Average Directional Index (ADX) along with the +DI and -DI directional movement lines.
ADX (orange line) shows overall trend strength.
+DI (green line) and -DI (red line) reveal bullish or bearish pressure.
When ADX is above the threshold (default 25), the background turns green to highlight strong trending conditions — a great time to apply trend-following strategies.
This script offers:
A visually clean layout
Configurable ADX length and strength threshold
Automatic background highlighting when strong trends are detected
Use this tool to confirm market momentum, avoid sideways chop, and enhance your entry timing for breakout or pullback setups.
FutureObitz Official Bank Levels// © 2025 FutureObitz - Custom version for private use
This Bank Levels indicator automatically calculates daily high, low, mid, and premium/discount zones using dynamic ranges.
Ideal for intraday traders using supply/demand, liquidity concepts, and institutional levels. Labels are cleanly aligned and update once per day for minimal chart clutter.
This version was customized for my personal trading style and refined for visual clarity.
DIVAP RSI by:TMThe DIVAP RSI by:TM is a precision-focused RSI-based indicator designed to identify high-confidence entry and exit points. It uses a faster RSI (length 7) combined with extended levels (20 and 80) to capture momentum reversals at extreme zones.
✅ Green arrows signal entries when RSI crosses above 20 (exit from oversold)
✅ Red arrows signal exits when RSI crosses below 80 (exit from overbought)
This minimalist tool is ideal for traders who prefer clean chart setups with clear, timely alerts.
🔧 This is a test version and is actively being improved. Feedback is welcome!
🟢 RSI + MACD Bullish Divergence Scannerrsi/macd bullish divergence enter off green bubble. size accordingly.
Range Filter Buy & Sell 5min + Multi-TF DashboardElevate your edge with Range Filter Buy & Sell 5min + Multi-TF Dashboard—a precision-engineered trend companion that scans your favorite markets from the 5-minute tick to the higher-timeframe horizon. By harmonizing short-term signals with the broader trend, it delivers crystal-clear buy and sell cues—and the confidence to act on them. Whether you’re scalping, swing trading, or investing for the long haul, this all-in-one dashboard empowers you to ride only the strongest trends and step aside before the noise hits. Trade smarter. Trade with clarity. Trade with conviction.
ND NS by Tanveer)This indicator will help you to find No Supply and No Demand based on VSA strategy.
Hourly Divider with Opening Price🕐 Hour Lines with Opening Price — Utility Indicator
This lightweight TradingView script helps short-term option traders quickly visualize hourly structure and bias.
What it does:
Draws a vertical blue line at the start of each new hour
Draws a horizontal yellow line from the opening price of the hour, extending until the next hour
Purpose:
This tool makes it easy to:
Track hourly price context on lower timeframes like 1-minute
See how far price moves relative to the hourly open
Identify mean-reversion or breakout conditions around hourly transitions
Best used on:
1-minute (1m) charts, where understanding the position of price relative to the hourly open can inform "Up or Down" binary trades.