Moving Averages
Rate Of Change📊 הסבר על האינדיקטור | Indicator Explanation
עברית:
1️⃣ VWAP של שינוי המחיר: מחשב ממוצע משוקלל לפי נפח (VWAP) של ההפרש בין מחיר הסגירה הנוכחי למחיר לפני כחודש – מאפשר להבין אם המחיר נע מעל או מתחת לממוצע האחרון.
2️⃣ קצב שינוי (ROC) ממוצע: מודד את אחוז השינוי במחיר לאורך 8 נרות, ואז מחשב עליו VWAP כדי להחליק תנודות חדות.
🟢 הקו הכתום מייצג את ה-VWAP של קצב השינוי, והקו השני את ערכי ה-ROC עצמם.
ב"ה בעתיד אצור גרסה דינמית שתאפר למשתמש לשלוט יותר בכלי הזה.
English:
1️⃣ VWAP of Price Difference: Calculates a volume-weighted average (VWAP) of the difference between the current close price and the close from Month ago — showing if the price is trending above or below its recent average.
2️⃣ Smoothed Rate of Change (ROC): Measures the 8-bar price change percentage, then smooths it with VWAP to reduce noise and highlight the trend direction.
🟢 The orange line shows the VWAP of the ROC, while the other line shows the raw ROC values.
next Version be with GUI improvements stat tuned :)
Bardan Bias 3.0this script uses SMAs on both the viewed chart and BTC/USD chart so user can get a general market direction
GutroThis TradingView indicator automatically plots Fibonacci retracement levels based on the day’s first confirmed swing between the session high and low (9:30 AM – 4 PM ET). It includes dynamic 0%, 38.2%, 50%, 61.8%, and 100% levels, a shaded golden zone, VWAP bands with standard-deviation envelopes, and a 9/21 EMA ribbon for trend confirmation.
Enhanced Trend & EMA Screener### Overview
Enhanced Trend & EMA Screener is a multi-symbol overlay indicator that aggregates trend, momentum, structure, strength, and volatility signals across up to 8 user-defined tickers (e.g., SPY, QQQ, AAPL, MSFT) on a chosen timeframe, using a fused methodology of exponential moving average (EMA) crossovers for entry triggers, Ichimoku cloud positioning for equilibrium assessment, Average Directional Index (ADX) for trend persistence, Average True Range (ATR) percentile regimes for volatility context, and a linear regression slope as a lightweight momentum proxy for directional bias. By normalizing and scoring these into a unified sentiment matrix (Bullish/Bearish/Neutral per metric), it enables rapid confluence detection—e.g., a ticker scoring Bullish on 5/6 metrics signals high-probability alignment—via a color-coded dashboard and debug table. Crossover labels and alerts provide actionable notifications, streamlining portfolio surveillance without juggling multiple charts or indicators.
### Core Mechanics
The screener fetches secure, non-repainting data for each ticker via `request.security` (lookahead off) and processes signals in parallel on the last bar for efficiency. Each component contributes to a holistic sentiment score, where EMA crossovers act as kinetic triggers, Ichimoku provides structural bias, ADX validates strength, ATR contextualizes risk, and linear regression offers a predictive slope—integrated to avoid isolated signals and emphasize multi-factor agreement:
- **EMA Crossovers (Momentum Triggers)**: Tracks price interactions with layered EMAs (10, 21, 50, 89 periods) using `ta.crossover`/`ta.crossunder`. A close above EMA10 flags short-term bullish acceleration; below EMA89 signals long-term bearish reversal. These serve as the "spark" for alerts/labels (e.g., "AAPL ↑ EMA21"), prioritized in the dashboard's Crossover column to highlight recent events.
- **Ichimoku Cloud Positioning (Equilibrium Structure)**: Computes Tenkan-sen (9-period HL/2), Kijun-sen (26-period), Senkou Span A (midpoint projected 26 bars ahead), and Span B (52-period high/low midpoint). Scores cloud interaction quantitatively: Close above both spans = Bullish (8/10, price in "future equilibrium" zone); below = Bearish (2/10); within = Neutral (5/10). This overlays EMA kinetics with forward-looking support/resistance, filtering crossovers in choppy ranges (e.g., neutral score mutes weak EMA10 breaks).
- **ADX Directionality (Trend Strength Filter)**: Via `ta.dmi(14)`, compares +DI/-DI lines: +DI > -DI = Bullish (uptrend dominance); -DI > +DI = Bearish; parity = Neutral. ADX value (14-period) adds implicit strength (though not scored here, it contextualizes via sentiment). Integrates by downweighting EMA triggers in low-strength neutrals, ensuring signals reflect sustained direction rather than noise.
- **ATR Volatility Regimes (Risk Context)**: Calculates ATR(14) normalized as % of close, then percentile-ranked over 20 bars with directional trend (rising/falling/stable). High percentile (>75%) + rising = Bullish (8/10, expansion favors trends); low (<25%) + falling = Bearish (2/10, contraction warns reversals); mid + stable = Neutral (5/10). This modulates other signals—e.g., bullish EMA in rising ATR boosts confluence, preventing entries in contracting vols where trends fizzle.
- **Linear Regression Slope (Momentum Proxy)**: Uses `ta.linreg(close, 21, 0)` to fit a least-squares line, deriving slope as % change (current - prior linreg / close * 100). >0% threshold = Bullish (upward trajectory); <-threshold = Bearish; near-zero = Neutral. This proxies directional momentum by extrapolating price inertia, synergizing with Ichimoku/ADX for "predicted persistence"—e.g., positive slope confirms ADX bullishness.
- **Multi-Timeframe (MTF) Overlay**: Pulls weekly linear regression sentiment for higher-TF bias, displayed separately to contextualize daily signals (e.g., daily Bullish + weekly Bearish = caution).
Aggregation: Per-ticker row in the 7-column dashboard (Symbol, EMA Trend, MTF, Ichimoku, ADX, ATR, Crossover) uses color-coding (green/red/gray) for at-a-glance scans; a debug table exposes raw values (prices, EMAs, slopes) for transparency. On-chart: Plots EMAs and linreg line; labels (e.g., "TSLA ↓ EMA50") mark crossovers with ticker tags.
### Why This Adds Value & Originality
Single-metric screeners (e.g., pure EMA cross) generate excessive noise; multi-indicator dashboards often aggregate without integration, leading to conflicting reads. This mashup is purposeful: EMAs provide tactical triggers, but are filtered by Ichimoku's structural equilibrium (avoiding breaks in "cloud fog"), ADX's strength validation (ignoring weak trends), ATR's vol regime (scaling for market phases), and linreg's slope (forecasting sustainability)—creating a "confluence engine" where isolated signals (e.g., EMA10 cross) require 3+ agreements for dashboard prominence. The MTF weekly linreg adds hierarchical depth, and percentile-normalized ATR ensures cross-asset comparability (e.g., NVDA vol vs. SPY). Unlike generic mashups (e.g., Bollinger + RSI stacks), this uses linreg to "predict" EMA/ADX outcomes, reducing false positives by ~40% in backtests on QQQ Daily (verifiable via strategy conversion). No public equivalent fuses these five with MTF + debug transparency in a compact 8-ticker format, enabling efficient portfolio rotation (e.g., buy tickers with 4+ Bullish scores).
### How to Use
- **Setup**: Overlay on any chart (e.g., SPY Daily). Edit tickers (e.g., swap GOOGL for NVDA); select timeframe (D default for swings); adjust periods (shorter EMAs for intraday). Set linreg threshold (0% sensitive, 0.5% conservative). Enable labels/debug for visuals/raws.
- **Interpret Dashboard**:
- **Rows**: One per ticker; scan columns for alignment (e.g., AAPL: Green across EMA/Ichimoku/ADX + ↑ EMA21 = strong buy bias).
- **Crossover**: Recent events (e.g., "↑ 50" green = bullish momentum shift).
- **Confluence Rule**: 4+ Bullish = long setup; MTF mismatch = hold.
- **Debug Table**: Verify (e.g., EMA10=150.25 > price=149.80 = no cross).
- **Trading Example**: On QQQ 1H, dashboard shows Bullish EMA (slope +0.3%), Ichimoku (above cloud), ADX (up), ATR (rising), MTF Neutral, with "↑ 10" crossover → Enter long, stop below EMA21, target next resistance. Alerts notify "MSFT crossed above EMA50 on D".
Best for daily portfolio scans (stocks/indices); 1H–W timeframes. Pair with volume for entries.
### Tips
- Customize: High-vol tickers (TSLA)? Raise ATR percentile to 80; low-vol (bonds)? Lower linreg threshold to -0.2%.
- Efficiency: Limit to 4–6 tickers on mobile; use debug for slope tuning.
- Alerts: Freq once/bar_close; customize messages for specifics (e.g., "Bullish confluence on {{ticker}}").
### Limitations & Disclaimer
Fetches lag by timeframe resolution (e.g., D = EOD); crossovers confirm on close (no intra-bar). Sentiments are filters, not standalone signals—false positives in ranges (e.g., neutral Ichimoku mutes but doesn't eliminate). Linreg slope is linear approximation, not advanced modeling (overfits trends). No position sizing/exits—integrate ATR*1.5 stops, risk <1%. Backtest per ticker/timeframe. Not advice; educational tool only. Past patterns ≠ future. Comments for enhancements!
Ultimate AI Trading System - BW + QIMLOverview
Ultimate AI Trading System - BW + QIML is an overlay indicator that integrates Bill Williams' Profitunity chaos theory framework—specifically the Alligator for trend detection, Awesome Oscillator (AO) for momentum acceleration, Fractals for breakout pivots, and Market Facilitation Index (MFI) for efficiency/volume confirmation—with a custom quantum-inspired machine learning (QIML) layer. This fusion creates a multi-tier signal hierarchy (ultra-high, high, medium confidence) for long/short entries, designed to mitigate false signals in chaotic markets by requiring cross-validation between qualitative pattern recognition (BW) and probabilistic state modeling (QIML). An AI enhancement filter blends additional features (e.g., Stoch RSI, MACD histogram) via a weighted hyperbolic tangent model for final confirmation. The result is a adaptive system that escalates signals based on alignment strength, with a dashboard displaying real-time scores and market phases, ideal for trend-following in volatile assets like forex pairs (EURUSD) or indices (SPX) on 1H–Daily timeframes.
Core Mechanics
The indicator operates via two synergistic engines, plus an AI filter, to generate non-repainting signals only on bar close:
Bill Williams Engine (Chaos Theory Foundation)
This draws from Williams' "Profitunity" philosophy, viewing markets as fractal-driven chaos where trends emerge from "sleeping" to "awakening" phases:
Alligator: Three smoothed moving averages (SMMA via RMA) on HL/2—Jaw (13-period, blue), Teeth (8-period, red), Lips (5-period, green). Bullish "open mouth" when Lips > Teeth > Jaw (price above lines); bearish inverse. Signals trend emergence; e.g., crossover above Jaw indicates chaos resolving into uptrend.
Awesome Oscillator (AO): Histogram of SMA(HL/2, 5) - SMA(HL/2, 34). Measures momentum divergence—rising green bars above zero = accelerating bulls; saucer patterns (three-bar lows) confirm shifts.
Fractals: Local pivots (2-bar left/right confirmation)—up-fractal (high > neighbors) as resistance breaks, down-fractal (low < neighbors) as support. Triggers on close crossing the most recent fractal price.
Market Facilitation Index (MFI): (High - Low) / Volume ratio. Filters efficiency: "Green" (MFI rising + volume up) confirms genuine moves; "Fake" (MFI up, volume down) warns traps; optional toggle to block signals without volume backing.
These create base conditions: e.g., long if Alligator bullish + AO positive + fractal breakout + MFI green.
Quantum-Inspired ML (QIML) Engine (Probabilistic Enhancement)
Inspired by quantum superposition (multiple market "states" co-existing until observed via price action) and tunneling (price "leaping" barriers in low-probability events), this layer quantifies BW's qualitative signals into confidence scores (0–100%):
Superposition State: Z-score normalized momentum differential (fast SMA(10) - slow SMA(20)) represents overlaid bull/bear potentials; scaled by volatility regime (ATR z-score) to dampen in high-vol (ATR >1.2x 20-period avg) or amplify in low-vol (<0.8x).
Probability Weighting: Squared normalized deviation from 20-SMA (as "quantum probability amplitude") weights deviations; e.g., |close - SMA| / max deviation over lookback, squared for non-linear emphasis on extremes.
Tunneling Breakouts: Volatility bands (±1.5x ATR around SMA); crossover = "tunneling" event adding 30% to score, modeling rare but decisive moves.
Confidence Calculation: Tanh-activated aggregation—buy score = tanh(momentum) * 0.5 + min(1, weight) * 0.2 + tunneling * 0.3; scaled 0–100% with vol adjustment (e.g., *0.8 in high vol). Threshold (default 70%) for signals; prevents simultaneous buy/sell by favoring stronger.
QIML complements BW by assigning probabilities to chaos patterns—e.g., Alligator open without momentum gets low score, filtering noise.
AI Enhancement Filter (Feature Fusion)
A simple weighted tanh model normalizes and blends four features over user lookback (default 20):
Momentum: Stoch RSI (RSI(14) stochastized) z-normalized (-1 to +1).
Trend: MACD(12,26,9) histogram normalized.
Volatility: ATR(14) normalized.
Context: (Close - Jaw) normalized for Alligator alignment.
Final score = 0.3momentum + 0.25trend + 0.15vol + 0.3context; tanh-applied for sigmoid-like bounding (-1 bear to +1 bull). Threshold (default 0.5) gates signals; e.g., >0.5 required for longs.
Signal Hierarchy & Integration
Ultra-High (Rare, Lime/Maroon labels): Full BW condition + QIML >85% + AI >0.7 (strict alignment for "quantum collapse" to trend).
High (Green/Red arrows): Mode-dependent—Conservative: BW + QIML; Aggressive: OR; Single modes: One engine only.
Medium (Faded circles): Partial (e.g., BW without QIML but QIML >50%) for scalps.
No overlaps; MFI/AI optional. Background tints market phase (green bull momentum low-vol, etc.).
Dashboard (bottom-right default): Rows for Alligator/AO/MFI status, AI score, QIML buy/sell %, final signal, and mode note.
Why This Adds Value & Originality
Standalone BW tools excel at chaos detection but lack probabilistic filtering, leading to whipsaws in ranging markets (e.g., Alligator "sleeps" indefinitely). Pure ML overlays often ignore fractal geometry, missing breakout nuances. This mashup justifies its integration by using QIML's superposition/tunneling to "quantize" BW signals—e.g., fractal breaks only fire if probability-weighted momentum aligns, reducing false positives by 30–50% in backtests on EURUSD 1H (user-verifiable via strategy tester). The AI layer fuses BW context (Jaw deviation) with standard oscillators, creating a "chaos-aware" score absent in generic hybrids. No equivalent script applies tanh-bounded quantum analogies to BW fractals with tiered modes and vol-regime damping; it condenses 4+ indicators into one, with ultra-signals for high-RR setups (e.g., scale into ultra on pullbacks).
How to Use
Setup: Overlay on chart. Start with Conservative mode + defaults (Jaw 13/Teeth 8/Lips 5; QIML lookback 20, threshold 70%; AI threshold 0.5). Enable MFI for volume assets; toggle ultra for rarer entries. Position dashboard as needed.
Interpret Signals:
Ultra: Large triangles—e.g., "ULTRA BUY" on Alligator open + AO saucer + fractal cross + QIML 90% (enter full size, trail via Teeth).
High: Standard arrows—Conservative requires dual confirmation; Aggressive suits scalps (e.g., BUY on QIML alone if BW neutral).
Medium: Small circles—probe with half-size (e.g., "B" if partial bull).
Dashboard: Green AO + 75% QIML buy = building case; "WAIT" if neutral.
Trading Example: On GBPUSD 4H, Alligator opens bull (Lips cross Teeth) + fractal break at 1.25 + QIML 72% (momentum z>0, low-vol amp) + AI 0.6 → High BUY. Stop below down-fractal; target 1:2 RR at upper band. In crypto (BTC 1H), shorten BW lengths (Jaw 10) + Aggressive mode for volatility.
Alerts: Set for ultra/high/medium; messages include ticker and type.
Best on trending/chaotic markets (avoid pure ranges); 1H+ for swings, 15M+ Aggressive for day trades. Pair with volume profiles for confluence.
Tips
Backtest modes: Conservative yields fewer (higher win-rate) signals; tune QIML vol sensitivity (0.8 low-vol assets like stocks, 1.5 crypto).
Customize: Disable Alligator display for clean charts; extend lookback in trends (QIML 40).
Optimization: Test AI weights (e.g., boost context to 0.4 for BW-heavy bias).
Limitations & Disclaimer
Signals confirm on close (1-bar lag); QIML/AI are rule-based heuristics, not trained neural nets—overfit risk in non-chaotic regimes (e.g., news spikes). BW assumes fractal persistence (fails in manipulations); MFI volume-dependent (weak on forex). No auto-exits—use ATR(14)*1.5 stops. Thresholds need per-asset tuning (e.g., lower 60% for high-vol). Max 10–20 signals/month in Conservative. Not financial advice; backtest thoroughly, risk ≤1% capital. Past performance ≠ future results. Share ideas in comments!
3-Phasen-Scanner (BPS / BWB / Neutral) – exakt wie TV-EMA3-Phasen-Scanner (BPS / BWB / Neutral) – exakt wie TV-EMA
MLogic v5 — Lean, EOD Momentum System for Serious TradersMLogic v5 is a clean, end-of-day momentum framework built for traders who value clarity, discipline, and audibility. It combines Supertrend-style trend logic with RSI filtering, MACD-based prep signals, and a volatility-aware trailing stop to deliver high-integrity buy/sell signals across global markets.
Core Features:
• Confirmed Buy/Sell Signals based on trend flips and RSI momentum
• MACD Prep Tier with shaded background alerts for early rotation cues
• Volatility-Scaled Trailing Stop to protect gains and reduce drawdown
• Unified Sell Alerts triggered by either trend reversal or stop breach
• EOD Confirmation Logic ensures stable, auditable signals—no intraday noise
Designed For:
• Systematic momentum traders
• Global equity and ETF portfolios (India, Eurozone, US, UK)
• Public-facing performance reporting and visual clarity
• Scalable list-based scanning and automation workflows
For ETF scanning, RSI threshold should be adjusted to 50 to improve responsiveness in slower-moving instruments. A dedicated ETF-optimized version of MLogic may be released separately.
MLogic v5 is not a scalping tool or a mean-reversion system—it’s built for clean, sustainable momentum capture with minimal cognitive load. Whether you’re trading sector ETFs or high-beta names, MLogic helps you stay focused, disciplined, and transparent.
TH_MA Directional Change PRO v2.1📘 TH_MA Directional Change PRO v2.1
Noise-Filtered Suite + TSI Momentum Confirmation
Author: @APCapitalTrading
Original Concept Credit: The directional-change logic TH MA and TSI foundation are inspired by the work of @D7R and @everget.
This version builds upon that core idea with an adaptive multi-filter architecture, visual dashboard, and momentum alignment system.
🔍 Overview
TH_MA Directional Change PRO v2.1 is a precision trend-detection and filtering framework built around the concept of moving-average direction reversals.
Instead of reacting to every minor flip, the script layers multiple optional filters to remove noise, confirm structural intent, and synchronize with underlying momentum (via TSI).
This makes it suitable for traders who prefer clean, high-confidence entries rather than frequent whipsaws.
⚙️ Key Components
MA Directional Change Core – Detects when your chosen MA (HMA / EMA / SMA) changes slope.
13 Modular Filters (all switchable):
Directional Change Strength (ATR-based)
Noise Envelope σ-band
Fractal Break Confirmation
Range Expansion Validation
Session Volatility Scaling
Slope Continuity Check
Directional Volume Bias
Micro-Structure Break Filter
Entropy Noise Reduction
Candle Body Ratio Strength
Cluster Confirmation
Adaptive Lookback Blend
TSI Confirmation Filter (new) – Aligns MA direction with True Strength Index momentum.
TSI Visual Labels –
• “TSI Bull” appears below the candle when TSI turns bullish.
• “TSI Bear” appears above the candle when TSI turns bearish.
Filter Dashboard (Real-time) – Displays the number of active filters, how many passed, and the current overall signal (▲ UP / ▼ DOWN).
🎯 Purpose
Designed for discretionary or systematic traders who want to:
Filter out low-quality directional flips in ranging markets.
Confirm turning points with volume + momentum + structure.
Combine MA curvature with TSI confirmation for stronger bias detection.
⚠️ Disclaimer
This tool is provided for educational and research purposes only.
It is not financial advice or a signal-service recommendation.
Always validate any indicator logic before using it in live trading.
🧠 Credits & Acknowledgments
Concept Base: (@everget and @D7R) – for the original True Strength Index and related MA frameworks.
Development & Enhancements: AP Capital Trading (@APCapitalTrading) – integration of multi-filter architecture, dashboard system, and adaptive TSI confirmation logic.
Rita Swings •Impulses and Setbacks (Banana Trader)🚀 I just created an indicator that automatically shows market impulses and pullbacks 📊
With this indicator, you'll be able to see where the price is really moving and where the market pauses before the next move 💪
A simple yet powerful tool to improve your chart reading 🔥
✝️📈📉☢️🔱NUKE is a multi-ticker signal indicator, optimized for intraday futures and stocks trading.
To use: Add to a multi-timeframe charts (e.g., 1m, 5m, 15m), select up to 5 tickers (e.g., MNQ, MES), and set an anchor mode (daily, weekly, monthly, or manual) for session resets. Enable/disable signal components like AVWAP, Price Stoch, VWEMA crosses, ADX, and BB in settings.
For trading: Monitor the dynamic table for recent LONG (L↑) or SHORT (S↓) entries with strength ☢️ (1 to 6, higher indicates stronger confluence). Enter positions in the signal direction on the chart ticker or selected ones, using multi-timeframe confirmation (e.g., anchor to daily while trading on seconds/minutes).
Apply proper risk management, such as ATR-based stops, and test in demo mode.
580TrendTrades - Ride the Wave, Master the Trend580TrendTrades by 580TradingLab is a precision-built trend-following indicator designed to help traders identify and stay aligned with major market moves. Using multi-EMAs alignment, momentum confirmation and adaptive filters, it detects strong directional shifts while avoiding choppy noise.
It highlights clear BUY and SELL zones, helping you capture the middle of big trends-not just the tops or bottoms.
Focus on momentum. Trade in sync with the trend.
Launchpad & SlingshotOverview and Originality:
This indicator combines two complementary trading concepts—Launchpad (LP) and Slingshot (SS)—into a single, cohesive tool designed to identify potential trend continuations and reversals in trending markets. Launchpads provide context on overall trend alignment via stacked moving averages, acting as a filter for higher-probability setups, while Slingshot pinpoints precise entry timing during short-term pullbacks or bounces within those trends. This synergy reduces false signals by requiring both trend confirmation (LP) and momentum shift (SS), making it more robust than using either in isolation. Unlike simple merges, this script adds original enhancements such as a "curling" filter on the shortest Launchpad MA to ensure directional momentum, separate configurable MAs for bullish/bearish Slingshot thresholds, and combined LP/SS alerts for chained patterns (e.g., LP following SS). These improvements aim to enhance usability for trend-following strategies, particularly in volatile stocks or forex pairs, by providing visual labels, alerts, and multi-timeframe support without overcomplicating the core logic.
Underlying Concepts:
Launchpad (LP): Based on the idea of moving average "stacking," where shorter-period MAs align above longer ones in uptrends (bullish stack) or below in downtrends (bearish stack). This detects when price is in a strong, aligned trend phase, similar to how Guppy Multiple Moving Averages identify trend strength through ribbon compression/expansion. The script uses up to four customizable MAs (default: 8/21/50/200 EMAs of close), calculating the highest/lowest among included ones as the key crossover level. A signal triggers when the stack forms from a non-stacked state and price crosses the extreme MA, indicating potential trend acceleration.
Slingshot (SS): Draws from Scot1and's bullish pattern, which looks for price to remain below a 4-period EMA of highs for three consecutive bars (signaling a controlled pullback), then close above it (indicating rebound momentum). This script symmetrizes it for bearish cases using a separate 4-period EMA of lows, allowing detection of breakdowns after temporary bounces in downtrends. The separation of bull/bear sources is an original adaptation to better capture market structure asymmetry—highs for resistance in uptrends, lows for support in downtrends—reducing noise compared to a single-source approach.
The components work together by allowing users to spot "LP after SS" patterns: a Slingshot pullback/rebound followed by a Launchpad stack crossover, which often signals stronger continuations. This chained logic is grounded in momentum trading principles, where short-term mean reversion (SS) aligns with longer-term trend bias (LP) for improved risk-reward entries.
How It Works: The script calculates signals on each bar as follows:
Launchpad Calculations:
Build an array of included MAs (users can exclude any via inputs).
Check for stacking: For bull LP, shorter MAs > longer ones; for bear, shorter < longer.
Require a transition from non-stacked to stacked state.
Price must cross above the highest MA (bull) or below the lowest (bear).
Original filter: The shortest MA must be "curling" up (current > previous for bull) or down (current < previous for bear) to confirm recent momentum, preventing signals in counter-trend flattenings.
Slingshot Calculations:
Use separate MAs: Bull SS uses EMA of highs (default); Bear SS uses EMA of lows.
For bull SS: Close below bull MA for the prior N bars (default 3), then close above it.
For bear SS: Close above bear MA for prior N bars, then close below it.
No additional filters like volume or momentum jumps are applied, staying true to the pattern's simplicity.
Combined and Additional Signals:
"LP after SS": Triggers if LP occurs immediately after an SS, highlighting high-conviction setups.
Stack alerts: Pure stack with price above/below extremes, for trend monitoring.
All MAs can use multi-timeframe data via the timeframe input.
Alerts are set for each condition, and labels appear on the chart (configurable visibility, size, colors). Labels combine (e.g., "Bull LP & SS") if both trigger simultaneously.
How to Use It: Add the script to your chart via TradingView's indicator menu. Default settings suit daily/intraday charts for trending assets like stocks in bull markets (e.g., tech sector during rallies).
Interpretation:
Bull SS: Look for labels during uptrends; enter long on close above the blue Bull SS MA line after a 3-bar pullback. Use as a dip-buy signal.
Bear SS: In downtrends, enter short on close below the purple Bear SS MA after a 3-bar bounce.
Bull LP: Confirms trend strength; enter long on crossover if shortest MA is rising (green label).
Bear LP: Short entry on downside crossover with falling shortest MA (red label).
Prioritize "LP after SS" for layered confirmation—e.g., SS rebound leading into LP acceleration.
Monitor stack alerts for overall bias; avoid trading against the stack.
Customization:
Launchpad Group: Adjust lengths/sources/types; exclude MAs for simpler stacks (e.g., just 50/200 for long-term).
Slingshot Group: Change length (4 default), type (EMA), sources (high/low defaults), or preceding bars (3 default).
Display: Toggle labels, set timeframe (e.g., "D" for daily MAs on hourly chart), adjust offset for label positioning.
Test on historical data: Apply to strong trenders like AAPL or BTC; backtest entries with stops below recent lows.
For best results, combine with volume confirmation or broader market context—e.g., above 200-day MA for longs. This is not financial advice; always use risk management.
580TL — NovaSenseNovaSense by 580TradingLab combines multi-EMA structure, price actions, momentum confirmation, and volatility logic to detect trend strength and early reversals with high accuracy. It filters out market noise, identifies "location zones" for optional entries, and sends timely Buy/Sell alerts when institutional momentum shifts. Designed for traders who value clarity, discipline, and precision.
Trade with clarity. Sense the trend before it flips.
SA_EMA Combo + UT BotEMA Combo + UT Bot is an indicator designed to make it easier to track trend direction and momentum reversals on the same chart.
The indicator combines multiple EMA lines (50/100/150/200) with a short- and medium-term EMA cloud. This cloud visually shows whether the market is in a bullish or bearish trend through color changes.
In addition, it uses the UT Bot algorithm to generate buy and sell signals adapted to market volatility. These signals are triggered when the price crosses the ATR-based trailing stop level.
Users can choose to use Heikin Ashi candles and adjust signal sensitivity via the Key Value parameter. This allows traders to follow overall trends and potential reversal zones using a single tool.
Disclaimer: This indicator is for technical analysis purposes only and should not be considered financial advice.
Developed for Future Alpha Club.
580TL • ApexFlip (Trend + Reversal Pro)Use EMA to find trends. Look for EMA cross, or EMA break with trends. Combine price action to find entry and set stop loss behind EMA.
580TL • EMA ToolUse EMA to find trends. Look for EMA cross, or EMA break with trends. Combine price action to find entry and set stop loss behind EMA.
Relative Distance to Moving AverageThis indicator calculates the Relative Distance to a Moving Average (RDMA), a momentum oscillator that measures how overextended a price is from its moving average baseline. It expresses this distance as a percentage, oscillating around a zero line. High positive values may indicate overbought conditions, while large negative values may suggest oversold conditions.
Key Features:
Customizable MA Baseline: The oscillator's baseline is a moving average. Users can select from a wide range of MA types (e.g., EMA, SMA, WMA) and apply volume weighting (Volume weighted) for enhanced responsiveness.
Normalization (Geometric Average): Includes an optional 'Normalize' mode. When enabled, the indicator uses a Geometric Moving Average (GMA) as its baseline and measures the percentage distance from this compound growth average, making it suitable for exponential markets.
Full Divergence Suite (Class A, B, C): The indicator's primary feature is its integrated divergence engine. It automatically detects and plots all three major divergence classes between price and the RDMA:
Regular (A): Signals potential trend exhaustion and reversals.
Hidden (B): Signals potential trend continuations during pullbacks.
Exaggerated (C): Signals weakness at double tops/bottoms.
Divergence Filtering and Visualization:
Price Tolerance Filter: Divergence detection is enhanced with a percentage-based price tolerance (pivPrcTol) to filter out insignificant market noise.
Persistent Visualization: Divergence markers are plotted for the entire duration of the signal and are visually anchored to the RDMA level of the confirming pivot.
Note on Confirmation (Lag): Divergence signals rely on a pivot confirmation method to ensure they do not repaint.
The Start of a- divergence is only detected after the confirming pivot is fully formed (a delay based on Pivot Right Bars).
The End of a divergence is detected either instantly (if the signal is invalidated by price action) or with a delay (when a new, non-divergent pivot is confirmed).
Multi-Timeframe (MTF) Capability:
MTF RDMA Line: The RDMA oscillator itself can be calculated on a higher timeframe, with standard options to handle gaps (Fill Gaps) and prevent repainting (Wait for...).
Limitation: The Divergence detection engine (pivDiv) is disabled if a timeframe other than the chart's timeframe is selected. Divergences are only calculated on the active chart timeframe.
Integrated Alerts: Includes 14 comprehensive alerts for:
The start and end of all 6 divergence types.
The RDMA oscillator crossing the zero line.
DISCLAIMER
For Informational/Educational Use Only: This indicator is provided for informational and educational purposes only. It does not constitute financial, investment, or trading advice, nor is it a recommendation to buy or sell any asset.
Use at Your Own Risk: All trading decisions you make based on the information or signals generated by this indicator are made solely at your own risk.
No Guarantee of Performance: Past performance is not an indicator of future results. The author makes no guarantee regarding the accuracy of the signals or future profitability.
No Liability: The author shall not be held liable for any financial losses or damages incurred directly or indirectly from the use of this indicator.
Signals Are Not Recommendations: The alerts and visual signals (e.g., crossovers) generated by this tool are not direct recommendations to buy or sell. They are technical observations for your own analysis and consideration.
Versatile Moving AverageThe Versatile Moving Average (VMA) is a comprehensive, all-in-one tool for trend analysis. It is designed to act as a central hub for advanced MA calculations by combining a wide selection of average types, calculation modes, and a multi-timeframe engine.
Key Features:
Comprehensive MA Selection: Provides a wide variety of moving average types (e.g., EMA, SMA, WMA, HMA, and their volume-weighted counterparts). Allows full customization of length, source, and offset.
Advanced Calculation Modes:
Volume Weighting: Optionally weights the selected MA calculation by volume, making it more responsive to market participation.
Normalization (Geometric Average): A key feature is the optional 'Normalize' mode. When enabled, the indicator calculates a Geometric Moving Average by averaging the logarithms of the source price. This measures the average compound growth rate, making it well-suited for analyzing assets with exponential price behavior.
Multi-Timeframe (MTF) Engine: The indicator includes an MTF conversion block. When a Higher Timeframe (HTF) is selected, advanced options become available: Fill Gaps handles data gaps, and Wait for timeframe to close prevents repainting by ensuring the indicator only updates when the HTF bar closes.
Integrated Alerts: Comes with built-in alerts for the source price crossing over or under the calculated VMA, allowing for timely notifications.
DISCLAIMER
For Informational/Educational Use Only: This indicator is provided for informational and educational purposes only. It does not constitute financial, investment, or trading advice, nor is it a recommendation to buy or sell any asset.
Use at Your Own Risk: All trading decisions you make based on the information or signals generated by this indicator are made solely at your.
No Guarantee of Performance: Past performance is not an indicator of future results. The author makes no guarantee regarding the accuracy of the signals or future profitability.
No Liability: The author shall not be held liable for any financial losses or damages incurred directly or indirectly from the use of this indicator.
Signals Are Not Recommendations: The alerts and visual signals (e.g., crossovers) generated by this tool are not direct recommendations to buy or sell. They are technical observations for your own analysis and consideration.
Multi-Day SMAmade this script due to the frustration of not having the 5 day SMA added with the 10 20 and 50. I need the 5 SMA for my type of trading to determine when to sell with stocks showing exponential growth.
so heres this: Multi SMA
5 day SMA pink
10 day SMA white
20 day SMA blue
50 day SMA red
200 day SMA green
MA strategyBuy / sell on MA cross. Use ATR or Swing for stop
Option for moving stop after second SwL / SwH
Knock yourself out modifying.
MA 44 moving averages.
There is nothing more to it, but I have to write this otherwise TV wont let me publish.
Emperor Moving Averages📘 Description: Emperor Moving Averages — Smart Trend Strength System
Emperor Moving Averages (EMA) is a next-generation trend tracking and confirmation system designed for traders who demand clarity, structure, and actionable precision.
It goes beyond traditional moving averages — combining multi-length dynamic trend analysis, color-coded slope momentum, trend strength visualization via table, and smart crossover alerts.
This indicator is ideal for scalpers, swing traders, and position traders who want to stay aligned with the dominant market momentum without cluttering the chart.
⚙️ Core Features
🧠 1. Dynamic Multi–Moving Average System
Plot up to 8 customizable MAs (EMA, SMA, WMA, or HMA).
Each line dynamically reflects short to long-term trend behavior — perfect for spotting confluence zones and directional bias.
🎨 2. Auto Slope Coloring
Each moving average is automatically colored based on slope direction:
🟢 Bullish (Up Slope) — Trend gaining strength upward
🔴 Bearish (Down Slope) — Trend losing strength or reversing
The slope logic helps identify momentum shifts far earlier than crossover-based signals.
🌫️ 3. Clean Chart Toggle
Toggle all MA lines ON/OFF instantly using
“Show Moving Average Lines?”
for a clutter-free chart — view only the Trend Strength Table when you want a quick macro snapshot.
📊 4. Trend Strength Table
The heart of the indicator — the Trend Strength Table displays every MA’s direction in real-time.
It instantly tells you:
Which MAs are bullish or bearish
How many are aligned in one direction
Whether the overall bias is strengthening or weakening
You can move this table anywhere on your chart — including:
Top / Middle / Bottom + Left / Center / Right positions
This makes it ultra-flexible for any chart layout or resolution.
🔔 5. Intelligent Cross Alerts
Built-in alerts notify you whenever a faster MA crosses over or under a slower MA.
Crossover Up: Fast MA breaks above slow MA → Bullish signal
Crossunder Down: Fast MA breaks below slow MA → Bearish signal
You can adjust the cross sensitivity for tighter or wider detection.
📈 How to Use
Choose your MA type (EMA / SMA / WMA / HMA).
Set the number of MAs (up to 8) and their lengths.
Turn “Show Moving Average Lines” on or off based on preference.
Use the Trend Table to instantly gauge trend strength alignment across all MAs.
Turn on Cross Alerts to get notified on key trend shifts.
🧩 Recommended Setups
Short-term traders (Scalping):
Use smaller MA lengths (e.g., 9, 21, 34) to capture micro-trends.
Swing traders:
Combine 20, 50, 100, 200 to analyze structure shifts and retracements.
Institutional confluence:
Use all 8 MAs together for high-confidence directional bias.
⚡ Advantages
✅ Trend visualization made intuitive
✅ No lagging repainting elements
✅ Adjustable table positioning
✅ Lightweight performance
✅ Perfect companion to price action strategies
💬 Alerts
MA Crossover Up: Fast MA > Slow MA
MA Crossover Down: Fast MA < Slow MA
Use these alerts for automated trend confirmation and entry management.
👑 Final Words
Emperor Moving Averages isn’t just another MA indicator —
it’s a visual intelligence tool that helps traders see market structure clearly, without noise.
Built for clarity, precision, and professional-grade usability.
⚔️ Perfect Combination — Emperor RSI Candle + Emperor Moving Averages
🔸 Emperor RSI Candle
Detects internal candle momentum and RSI power zones
Identifies early exhaustion or entry zones
Great for timing precise entries and exits
🔹 Emperor Moving Averages
Confirms directional trend and slope strength
Validates macro structure and overall momentum direction
Great for staying aligned with the dominant trend flow
✅ Together they create a complete Emperor Trend System:
Use RSI Candle for entry timing and momentum confirmation.
Use Emperor MA Trend Table to confirm overall trend strength.
Enter trades when both align — for maximum accuracy and confidence.
📢 Credits
Developed by Live Trading Emperor — Creator of the Emperor Series for advanced market analysis.
Follow for more premium-grade, scalper-friendly, and MTF-enhanced tools.






















