Relative Measured Volatility (RMV)RMV • Volume-Sensitive Consolidation Indicator
A lightweight Pine Script that highlights true low-volatility, low-volume bars in a single squeeze measure.
What it does
Calculates each bar’s raw High-Low range.
Down-weights bars where volume is below its 30-day average, emphasizing genuine quiet periods.
Normalizes the result over the prior 15 bars (excluding the current bar), scaling from 0 (tightest) to 100 (most volatile).
Draws the series as a step plot, shades true “tight” bars below the user threshold, and marks sustained squeezes with a small arrow.
Key inputs
Lookback (bars): Number of bars to use for normalization (default 15).
Tight Threshold: RMV value under which a bar is considered squeezed (default 15).
Volume SMA Period: Period for the volume moving average benchmark (default 30).
How it works
Raw range: barRange = high - low
Volume ratio: volRatio = min(volume / sma(volume,30), 1)
Weighted range: vwRange = barRange * volRatio
Rolling min/max (prior 15 bars): exclude today so a new low immediately registers a 0.
Normalize: rmv = clamp(100 * (vwRange - min) / (max - min), 0, 100)
Visualization & signals
Step line for exact bar-by-bar values.
Shaded background when RMV < threshold.
Consecutive-bar filter ensures arrows only appear when tightness lasts at least two bars, cutting noise.
Why use it
Quickly spot consolidation zones that combine narrow price action with genuine dry volume—ideal for swing entries ahead of breakouts.
Volatility
Candle Pattern Detector By Prashanth
Bullish Signal (🟢 below candle):
Plotted when any of the following occur:
✅ Bullish Engulfing
✅ Bullish Three-Line Strike
✅ Bottom wick ≥ % threshold (default: 80%)
Bearish Signal (🔴 above candle):
Plotted when any of the following occur:
❌ Bearish Engulfing
❌ Bearish Three-Line Strike
❌ Top wick ≥ % threshold (default: 80%)
Only one signal per candle (🟢 or 🔴)
If both bullish and bearish conditions happen on same candle → no signal
Helps simplify visual clutter while scanning for strong candle patterns
KosATRWhat this Pine Script does:
✅ This indicator displays daily ATR (Average True Range) information on any chart timeframe (minutes, hours, etc.), ensuring the calculations are based strictly on daily price data.
Displayed Information in the Table:
The script creates a table in the bottom-left corner of the chart that shows:
ATR — A custom, filtered version of the daily ATR that excludes abnormal price bars (extremely large or small daily ranges).
% — The percentage of the ATR that today's price movement (Open to Close) has covered so far.
Level — A manually defined fixed level, set through the script's input.
Level + ATR — The sum of the daily ATR and your defined level, useful for setting price targets or alerts.
Key Features:
Uses request.security() to ensure all calculations (high, low, open, close) are taken from the daily timeframe, even when you're viewing lower or higher timeframes.
Implements a filtering method to calculate an "adaptive ATR," ignoring price ranges that are too large or too small (outliers), making the ATR value more stable and realistic.
Displays a live, easy-to-read table directly on the chart for quick reference during trading.
Summary:
This script provides traders with reliable, daily-based ATR data, helping assess current price movement strength relative to historical daily volatility. It's especially useful for intraday traders who want constant awareness of daily ATR levels, regardless of their current chart timeframe.
Micropulse Crypto Reversal – 1 Minute📛 Micropulse Crypto Reversal – 1 Minute
📘 Strategy Description:
Micropulse Reversal is a specialized scalping strategy designed for 1-minute cryptocurrency charts such as BTC/USDT and ETH/USDT. It captures fast reversal opportunities with a scientifically guided combination of price action, volume dynamics, and volatility filtering.
🎯 Core Features:
Hybrid use of RSI, Bollinger Bands, Hull Moving Average, and OBV
Scoring system ensures only strong, high-confidence signals trigger trades
ATR filter blocks signals in low-volatility (choppy) conditions
Supports both long and short entries, with automatic position reversal logic
Optimized parameters are fixed and not user-editable (fully locked)
⚙️ Hardcoded Parameters:
RSI Length: 9, Oversold: 40, Overbought: 60
Bollinger Bands: 20 / 2.0
Hull MA: 13, OBV short/long: 3 / 8
ATR Filter: > 0.1% of price
Take Profit: +0.8%, Stop Loss: -0.6%
Minimum Signal Score to Enter: 4 / 5
📈 Ideal Use:
BTC, ETH, and other major crypto pairs with high volume
Timeframe: 1-minute
Fast-entry, fast-exit trades
Works well for bot integration, signal alerts, or manual scalping
⚠️ Risk Disclaimer:
This strategy is optimized for past data and short-term momentum conditions. Past performance does not guarantee future results.
Always validate on forward data and use proper risk management before live deployment.
Frahm Factor Position Size CalculatorThe Frahm Factor Position Size Calculator is a powerful evolution of the original Frahm Factor script, leveraging its volatility analysis to dynamically adjust trading risk. This Pine Script for TradingView uses the Frahm Factor’s volatility score (1-10) to set risk percentages (1.75% to 5%) for both Margin-Based and Equity-Based position sizing. A compact table on the main chart displays Risk per Trade, Frahm Factor, and Average Candle Size, making it an essential tool for traders aligning risk with market conditions.
Calculates a volatility score (1-10) using true range percentile rank over a customizable look-back window (default 24 hours).
Dynamically sets risk percentage based on volatility:
Low volatility (score ≤ 3): 5% risk for bolder trades.
High volatility (score ≥ 8): 1.75% risk for caution.
Medium volatility (score 4-7): Smoothly interpolated (e.g., 4 → 4.3%, 5 → 3.6%).
Adjustable sensitivity via Frahm Scale Multiplier (default 9) for tailored volatility response.
Position Sizing:
Margin-Based: Risk as a percentage of total margin (e.g., $175 for 1.75% of $10,000 at high volatility).
Equity-Based: Risk as a percentage of (equity - minimum balance) (e.g., $175 for 1.75% of ($15,000 - $5,000)).
Compact 1-3 row table shows:
Risk per Trade with Frahm score (e.g., “$175.00 (Frahm: 8)”).
Frahm Factor (e.g., “Frahm Factor: 8”).
Average Candle Size (e.g., “Avg Candle: 50 t”).
Toggles to show/hide Frahm Factor and Average Candle Size rows, with no empty backgrounds.
Four sizes: XL (18x7, large text), L (13x6, normal), M (9x5, small, default), S (8x4, tiny).
Repositionable (9 positions, default: top-right).
Customizable cell color, text color, and transparency.
Set Frahm Factor:
Frahm Window (hrs): Pick how far back to measure volatility (e.g., 24 hours). Shorter for fast markets, longer for chill ones.
Frahm Scale Multiplier: Set sensitivity (1-10, default 9). Higher makes the score jumpier; lower smooths it out.
Set Margin-Based:
Total Margin: Enter your account balance (e.g., $10,000). Risk auto-adjusts via Frahm Factor.
Set Equity-Based:
Total Equity: Enter your total account balance (e.g., $15,000).
Minimum Balance: Set to the lowest your account can go before liquidation (e.g., $5,000). Risk is based on the difference, auto-adjusted by Frahm Factor.
Customize Display:
Calculation Method: Pick Margin-Based or Equity-Based.
Table Position: Choose where the table sits (e.g., top_right).
Table Size: Select XL, L, M, or S (default M, small text).
Table Cell Color: Set background color (default blue).
Table Text Color: Set text color (default white).
Table Cell Transparency: Adjust transparency (0 = solid, 100 = invisible, default 80).
Show Frahm Factor & Show Avg Candle Size: Check to show these rows, uncheck to hide (default on).
MPS v3.2 – MicroStructure Pulse Scalper📌 MPS v3.2 – MicroStructure Pulse Scalper
Description:
MPS v3.2 is an advanced scalping strategy tailored for precision entries on low timeframes. Built around microstructure theory and volatility behavior, it integrates a fusion of institutional-grade filters for trade validation, including:
• VWAP Z-Score Deviation – mean-reversion logic from anchored value
• Volume Spike Detection – identifies aggressive orderflow surges
• Volatility Expansion – signals breakouts using dynamic ATR range
• Liquidity Sweeps (Stop-Hunts) – detects market maker traps
• Bullish/Bearish Pin Bar Confirmation – filters false sweeps
• Signal Clustering Memory – boosts signal reliability via AI-style memory
• Trend, Session, and Risk Filters – optional layers for alignment
• Visual Enhancements – gradient candles, entry zone heatmap, and stats panel
Key Features:
Risk/Reward-based exit OR VWAP take profit
Trailing stop functionality
Adaptive “Aggressive Mode” for early entries
Clean, minimal dashboard with live performance stats
Built for 1m–5m scalping, optimized for BTC/ETH and other liquid pairs
Alpha Trader University - London Continuation StrategyAlpha Trader University - London Continuation Strategy Indicator
OVERVIEW:
This educational indicator implements the London Continuation Strategy, a session-based trading methodology that capitalizes on price continuation patterns between the Asia and London trading sessions. Designed to teach traders about session timing, market structure, and continuation strategies.
STRATEGY METHODOLOGY:
The London Continuation Strategy is based on the market principle that directional movements established during the Asia session often continue during the early London session, creating high-probability trading opportunities.
SESSION ANALYSIS FRAMEWORK:
1. ASIA SESSION (4:00-9:00 Dubai Time):
- Establishes initial market direction and sentiment
- Creates key support and resistance levels
- Provides the foundation for continuation bias
- Blue box visualization with range tracking
2. PRE-LONDON SESSION (9:00-11:00 Dubai Time):
- Transition period between major sessions
- Setup and preparation phase for London entries
- Confirmation or negation of Asia session bias
- Teal box visualization for monitoring
3. LONDON SESSION (11:00-12:00 Dubai Time):
- Primary entry window for continuation trades
- Highest probability period for strategy execution
- Green box labeled "Entry Window" for clear identification
- Optimal timing for trade execution
EDUCATIONAL VALUE:
- Learn session-based trading concepts and timing
- Understand market flow between major trading centers
- Develop skills in identifying continuation patterns
- Practice using session ranges for risk management
- Build foundation for advanced session strategies
TRADING APPLICATIONS:
- Entry Timing: Use London session start for optimal entry points
- Direction Bias: Follow Asia session directional momentum
- Risk Management: Utilize session ranges for stop-loss placement
- Target Setting: Project targets based on session volatility patterns
- Market Structure: Respect key session levels and range breaks
UNIQUE FEATURES:
- Dubai timezone optimization for Middle East traders
- Three-session comprehensive analysis framework
- Real-time session range tracking and visualization
- Customizable visual elements and colors
- Educational labels and clear entry window identification
TECHNICAL IMPLEMENTATION:
- Accurate timezone conversion (UTC to Dubai time)
- Dynamic session detection and range calculation
- Real-time box and label updates during active sessions
- Clean visual design with professional color coding
- Efficient memory management for optimal performance
CUSTOMIZATION OPTIONS:
- Session colors for personal preference
- Box border width adjustment
- Label size customization
- Visual element toggle capabilities
RISK MANAGEMENT INTEGRATION:
- Session range-based stop-loss guidance
- Volatility assessment through range analysis
- Clear entry and exit timing signals
- Structure-based risk parameter definition
This indicator transforms complex session analysis into a systematic, visual trading approach, helping traders understand market timing and develop disciplined continuation strategies.
EDUCATIONAL DISCLAIMER: This indicator is designed for educational purposes and strategy development. It should be used as part of a comprehensive trading plan with proper risk management. Past performance of any strategy does not guarantee future results. Always practice proper risk management and consider market conditions before trading.
Alpha Trader University - Average Session VolatilityAlpha Trader University - Average Session Volatility Indicator
OVERVIEW:
This educational indicator calculates and displays the average volatility (price range) of the New York trading session over a customizable lookback period. Designed to help traders understand typical market movement patterns and make informed risk management decisions.
METHODOLOGY:
The indicator employs a systematic approach to volatility measurement:
1. SESSION IDENTIFICATION:
- Automatically detects New York trading session boundaries
- Default timing: 13:30-20:30 UTC (19:00-02:00 IST)
- Customizable session times for different markets or preferences
- Accurate timezone handling for global trading
2. RANGE CALCULATION:
- Records high-low range for each completed session
- Maintains rolling database of recent session ranges
- Calculates statistical average over specified lookback period
- Real-time tracking of current session development
3. VOLATILITY ANALYSIS:
- Orange line: Average session volatility over past sessions
- Blue dots: Current session range development
- Comparative analysis between current and historical volatility
EDUCATIONAL VALUE:
- Learn to assess market volatility objectively
- Understand the importance of volatility in trading decisions
- Develop skills in risk management and position sizing
- Build foundation for volatility-based trading strategies
TRADING APPLICATIONS:
- Position Sizing: Adjust trade size based on expected volatility
- Risk Management: Set appropriate stop-loss levels using average range
- Profit Targets: Align target expectations with typical session movement
- Market Timing: Identify high/low volatility periods for strategy selection
- Session Analysis: Compare different trading sessions' characteristics
UNIQUE FEATURES:
- Customizable session times and lookback periods
- Real-time current session tracking
- Statistical approach using rolling averages
- Clean visual representation with dual-line display
- Educational tooltips explaining each parameter
SETTINGS:
- Session Times: Fully customizable start/end hours and minutes
- Lookback Period: Adjustable number of sessions for average calculation (1-50)
- Visual Options: Toggle between different display modes
- Timezone Support: UTC-based calculations for global accuracy
PRACTICAL APPLICATIONS:
- Forex Trading: Optimize for major session overlaps
- Stock Trading: Adapt for market hours in different regions
- Cryptocurrency: 24/7 market session analysis
- Risk Assessment: Quantify expected price movement ranges
This indicator transforms complex volatility concepts into actionable trading intelligence, helping traders make more informed decisions based on statistical market behavior patterns.
EDUCATIONAL DISCLAIMER: This indicator is designed for educational purposes and volatility analysis. It should be used as part of a comprehensive trading strategy with proper risk management. Historical volatility patterns do not guarantee future market behavior.
Volatility Stop — Screener & AlertsVstop Screener
🔔 Alerts Included
You can create TradingView alerts using:
"Bullish VSTOP crossover" — when price closes above the stop.
"Bearish VSTOP cross-under" — when price closes below the stop.
🧪 Use Cases
Trend Confirmation: VSTOP is used as a trend-following confirmation tool.
Exit Management: As a dynamic trailing stop-loss, it helps you stay in a trend until volatility-based reversal.
Breakout Trading: BUY signal = potential entry; SELL = early exit or short trigger.
🧑💻 Extension Ideas
Add multi-timeframe inputs (e.g., daily VSTOP on intraday chart).
Create dashboards or tables that screen VSTOP status for multiple symbols.
Combine with RSI/MACD for multi-indicator confluence.
Volume in Candle (Buy/Sell) - Clean & Spaced LabelsThis indicator shows per-candle buy and sell volume estimates, labeled directly on the chart and dynamically positioned to follow the price. It is ideal for traders who want to visually understand the volume balance inside each bar.
✅ Key Features:
🔁 Live updating labels for the current and previous candle only
📉 Labels are tied to the candle’s low price and move with chart scrolling
🧠 Smart spacing: labels are vertically separated so they never overlap
📦 Buy/Sell volume is estimated using candle body and total volume:
Buy Volume (B): Approximated bullish pressure
Sell Volume (S): Approximated bearish pressure
🛠 How it Works:
Volume is split using the candle's close vs open position relative to the total range.
Only two labels are shown at a time: the most recent bar and the one before it.
Labels are displayed below the candles, using a dynamic offset that auto-scales with candle size.
🧪 Use Case:
Spot volume pressure shifts in real time
Combine with price action to detect buy/sell imbalances
Use alongside trend tools or confirmation indicators
🔧 This script is lightweight, non-intrusive, and optimized for clarity.
📍 Best used on 1–15 minute charts, or any timeframe where candle volume analysis is helpful.
Session Volume Breakout by aDiLHow to Use the Combined Session Breakout?
Session Breakout indicator is designed to assist traders in identifying key breakout levels and Fibonacci retracement levels during the London and New York trading sessions. It plots the session high, session low, and the 50% Fibonacci retracement level for each session directly on your TradingView chart. This tool is particularly useful for breakout trading strategies or for spotting potential support and resistance zones.
Recommended: Use PepperStone Chart for Perfect Use
What the Indicator Does
Session Breakout Levels: The indicator calculates the highest high (session high) and lowest low (session low) during the specified London and New York breakout sessions.
Fibonacci 50% Retracement: For each session, it computes the 50% retracement level between the session high and low, a level often considered significant by traders for potential reversals or consolidations.
Visual Representation: The session high, low, and 50% Fib levels are displayed as horizontal lines on the chart. Additionally, tiny labels mark the "High" and "Low" levels at the start of each session for quick reference.
BTC D-CollectorBTC D-Collector — Daily BTC Macro Distribution & Profit-Taking Signal System
Overview
BTC D-Collector is a purpose-built macro-level distribution detection and profit-taking tool designed for Bitcoin traders operating on daily charts. Its primary objective is to identify high-probability conditions for partial or full exits during extended uptrends, combining on-chain market metrics, long-term moving averages, and multi-layer momentum exhaustion filters. This approach helps traders time distributions in mature bull cycles while avoiding premature selling.
What It Does
BTC D-Collector analyzes Bitcoin price action and key metrics across four core dimensions:
1. On-Chain Market Valuation
Integrates external data feeds such as realized market capitalization and aggregate trading volume to compute derived valuation bands. These valuations highlight historically stretched price conditions relative to fundamental usage.
2. Long-Term Momentum & Trend Exhaustion using MACD, StochRSI, RSI and EMAs
Calculates multiple time-adaptive moving averages and dynamic oscillator signals to detect overbought conditions. These moving averages adjust their lengths automatically based on timeframe granularity, ensuring alignment with daily chart structures.
3. NUPL-Based Profitability Framework
Incorporates a normalized measure of unrealized profit and loss (NUPL) to estimate whether aggregate holders are in extreme profit territory, signaling increased risk of distribution phases.
4. Progressive Profit-Taking Logic
Includes a structured mechanism for incremental scaling out of positions. As price multiplies from the most recent significant low, a sequence of partial sell signals is triggered to lock in gains methodically.
How It Works
A signal requires a specific combination of confirmations:
1. Market Restart Signal
When the tool detects renewed bullish conditions (e.g., recovery in the long-term moving average structure), the system resets all partial sell counters and reinitializes the entry baseline.
2. Math AI Distribution Signal
Triggers when a crossover of adaptive moving averages suggests a macro distribution phase is initiating.
3. SELL Signal, Solid Distribution Signal
Activated if multiple conditions converge: high on-chain profitability readings, stretched valuation metrics, sustained overbought oscillator levels, and price trading above all major long-term moving averages.
4. Orange and/or Red Arrow, Risky Distribution Signal
A more aggressive early exit indication, appearing when the market is overextended but some filters are less aligned. These signals are optional and meant for conservative profit-taking.
5. SELL Signal with X on it, Step Distribution Sequence
As price increases by predefined multiples relative to the last confirmed entry, the indicator issues progressive scale-out labels, marking partial profit-taking levels at each multiple.
When any of these signals are confirmed, visual labels are plotted on the chart, and alerts are generated. The system remains inactive if conditions do not meet strict alignment criteria.
How To Use It
1. Confirm Context
Always review higher timeframe charts (weekly, monthly) to assess where Bitcoin is in its broader market cycle. BTC D-Collector is optimized for mature uptrend distribution, not for identifying bottoms.
2. Act According to Signal Type
-- Math AI & Solid Distribution Signals: Consider partial or full profit-taking.
-- Risky Distribution Signals: Optional early profit locks for cautious traders.
-- Step Distribution Labels: Use as incremental exit points to scale out positions progressively as price advances.
3. Integrate With Your Strategy
Combine this indicator’s outputs with your trading system’s risk management rules. Define position sizing and exit criteria in advance.
Why It Is Unique
1. On-Chain + Technical Alignment
Blends on-chain market cap valuation, profitability metrics, and classical price action—rarely combined in a single TradingView tool.
2. Adaptive Time-Based Logic
Moving averages and calculations dynamically adjust to the chart timeframe for consistent sensitivity across historical and current data.
3. Structured Profit-Taking Sequences
Provides a disciplined approach to gradually reduce exposure as price accelerates, avoiding emotional exits.
4. BTC Daily Focus
Optimized exclusively for BTC/USD and BTC/USDT pairs on daily charts, ensuring clarity and relevance for macro cycle traders.
Apply Risk Management
This indicator is not a standalone trading system. Always combine signals with a comprehensive trading plan, position sizing rules, and stop-loss management. Carefully evaluate whether each alert fits your risk tolerance and portfolio objectives.
Timeframe Selection
Designed exclusively for daily charts. Use on other timeframes is not recommended and may yield invalid signals.
Best Suited For
Swing traders, position traders, and long-term BTC investors looking for structured tools to guide profit-taking during sustained bull markets.
Important Notes
Signals generated by BTC D-Collector are intended to assist trading decisions and do not constitute investment advice. Past performance does not guarantee future results. Always conduct your own analysis and apply prudent risk management.
License
This indicator was developed by the ProphetAlgoAI team. Use is subject to a private, invite-only TradingView license. Redistribution or use outside TradingView is strictly prohibited without explicit permission.
New London Breakout StructureThe London Breakout Structure Pro is a fully mechanical trading indicator designed to capture high-probability breakout moves during the London session. It automatically identifies valid trade setups based on time-defined zones, price structure, and breakout confirmation. With a built-in risk-reward ratio of 1:2 and session filters, it helps traders maintain consistency and discipline. Ideal for intraday traders looking to systematize their strategy during the most volatile hours of the Forex market.
Volatility & Market Regimes [AlgoXcalibur]Analyze Market Conditions Like a Pro.
Volatility & Market Regimes is a specialized, institution-inspired indicator designed to help traders instantly identify the current conditions of the market with clarity and confidence.
By combining a real-time Volatility Histogram and Strength Line with a compact Regime Table, this tool reveals four essential market dimensions—Volatility, Strength, Participation, and Noise—in a clean and intuitive format. Whether you’re confirming trade setups or managing risk, knowing the current regimes enhances awareness across all assets and timeframes.
🧠 Algorithm Logic
This sophisticated tool continuously monitors four independent regimes, each reflecting a distinct dimension of market behavior:
• Volatility – Gauges how active or dormant the market is by comparing current price action movement to historical averages. A dynamic, color-gradient Volatility Histogram transitions from Low (ice blue/white) to Medium (green/yellow) to High (orange/red), giving you an immediate assessment of volatility and risk.
• Strength – Measures directional intensity by assessing trend momentum, pressure, and persistence. A color-gradient Strength Line ranges from weak (red) to strong (green), helping traders determine if directional strength is trending, weakening, or consolidating.
• Participation – Analyzes relative volume to assess the level of trader engagement. Higher volume indicates stronger participation and conviction, while low volume may signal uncertainty, fading momentum, or even liquidity traps.
• Noise – Evaluates structural stability by measuring how orderly or chaotic the price action is. High noise suggests choppy, unstable conditions, while low noise reflects clean, stable moves.
Each regime includes a High / Medium / Low classification and a color-coded directional arrow to indicate whether condition parameters are increasing or decreasing. Together, these components deliver real-time market context—helping you stay grounded in logic, not emotion.
⚙️ User-Selectable Features
Each component of the indicator—the Volatility Histogram, Strength Line, and Regime Table—can be independently made visible or hidden to match your preference. This flexibility allows you to display only the Regime Table and move it directly to your main chart, where it auto-positions to the center-right and integrates seamlessly with other AlgoXcalibur indicators that also use data tables for a cohesive and refined experience.
📊 Clarity, Not Guesswork
Volatility & Market Regimes is a unique, institution-inspired algorithm rarely seen in retail trading. Not only does it clearly display volatility—it translates complex market behavior into a clear context to reveal what’s happening behind the candles. By decoding core regimes in real-time, this tool transforms uncertainty into structured insight—empowering traders to act with clarity, not guesswork.
🔐 To get access or learn more, visit the Author’s Instructions section.
Mean Amplitude (300 candles)Displays the average candle amplitude (volatility) as % over a selected period. Useful for gauging market activity compression or expansion.
Volume & Distance IndicatorA comprehensive multi-metric indicator that combines volume analysis, volatility measurement, and momentum positioning to provide crucial trading insights in a clean, customizable table format.
📊 Key Metrics:
52WH (52-Week High Distance) - Shows percentage distance from 52-week high, helping identify momentum and potential reversal zones.
Vol Val (Volume Value) - Calculates current close × SMA of volume, providing dollar-weighted volume analysis for institutional activity insights.
ADR (Average Daily Range) - Measures average volatility using SMA of High/Low ratios, essential for position sizing and risk management.
⚙️ Features: • Customizable periods (20 or 50 days) for Volume and ADR calculations • Enable/disable individual metrics • Fully customizable colors for labels and values • Adjustable text size (Tiny/Small/Normal/Large) • 9 table position options • Smart alert system with color-coded warnings
🚨 Alert System: • Red background when ADR < 3% (low volatility warning) • Red background when 52WH < -25% (oversold condition) • Customizable thresholds for personalized risk management
💡 Use Cases:
Identify low-volatility breakout setups
Monitor institutional volume participation
Track momentum relative to recent highs
Set position sizing based on volatility metrics
Settings are fully customizable - choose your preferred periods, colors, and alert levels. Perfect for swing traders, day traders, and investors who rely on volume and volatility analysis.
Works on all timeframes and asset classes.
This description highlights the indicator's professional features while explaining its practical trading applications for TradingView users.
ATR & SMA Info Table (v6)An indicator that displays ATR data with percentage change and moving average including stock name and time frame
GrowthX 365📌 GrowthX 365 — Adaptive Crypto Strategy
GrowthX 365 is a precision-built Pine Script strategy designed for crypto traders who want hands-off, high-frequency execution with clear, consistent logic.
It adapts dynamically to market volatility using multi-timeframe filters and manages exits with a smart 3-tier take-profit and stop-loss system.
Built for automation, GrowthX 365 helps eliminate emotional decision-making and gives traders a rules-based, 24/7 edge across major crypto pairs.
⚙️ Core Features:
• ✅ Multi-timeframe, non-repainting trend confirmation
• ✅ Configurable TP1 / TP2 / TP3 + Fixed SL
• ✅ Trailing stop & risk-reward tuning supported
• ✅ On-chart labels, trade visuals & stat dashboard
• ✅ Fully compatible with Cornix, WunderTrading, 3Commas bots
• ✅ Works in trending, ranging, and volatile markets
🧪 Strategy Backtest Highlights (May 2025)
🔹 EIGEN/USDT — 15m Timeframe
• Net Return: +318%
• Drawdown: $35 (3.5%)
• Trades: 247
• Win Rate: 49%
📸 Screenshot: ibb.co
🔹 AVAX/USDT — 15m Timeframe
• Net Return: +108%
• Drawdown: $22.5 (2.25%)
• Trades: 115
• Win Rate: 49%
📸 Screenshot: ibb.co
🧪 Backtest settings used:
Capital: $1000 • Risk per trade: $100 • Slippage: 0.1% • Commission: 0.04%
📌 These results reflect one-month performance. Strategy has shown similar behavior across coins like SOL, INJ, and ARB in trending markets.
⚠️ Backtest performance does not guarantee future results. Always validate settings per coin and timeframe.
Access:
This script is invite-only and closed-source.
Please check my profile signature for access details.
Pro Strategy: This invite-only strategy is part of the POCKET Signal Suite – a professional-grade system designed for traders who want high-confidence entries, volatility-adjusted risk management, and automated execution via webhooks (CryptoHopper-ready).
Strategy Highlights:
🔹 Smart Trend Filter
Only trades in strong bullish trends – a proven higher timeframe trend filter.
🔹 Momentum Confirmation
filter out weak or choppy setups.
🔹 Volume Breakout Detection
Enters only on high-volume breakout conditions, filtering out low-momentum moves.
🔹 Dynamic Risk Management
Utilizes ATR-based Stop Loss and a configurable Take Profit system, including trailing TP for trend continuation trades.
🔹 Webhook-Ready Alerts
Fully compatible with CryptoHopper OR OTHER BOT via webhook
Best For:
15min–1h crypto charting
Swing & intraday strategies
Automated systems via webhook (CryptoHopper, 3Commas, etc.)
MTF Order Flow DashboardThe MTF Order Flow Dashboard is a compact, real-time table overlay that provides an at-a-glance view of market structure across three key timeframes:
✅ 1-Minute
✅ 5-Minute
✅ 1-Hour
//If extra 1 min is added to candle closure countdown wait till next tick for correction//
This tool is designed to help traders quickly assess directional bias, detect structure shifts, and stay aware of upcoming candle closes — a powerful aid for scalping, day trading, or momentum-based strategies.
Pivot-Based Market Structure Detection
Uses user-defined pivot length to determine if the market is showing a Bullish, Bearish, or Neutral structure on each timeframe.
Color-Coded Structure
Easily visualize the current trend per timeframe:
🟢 Bullish | 🔴 Bearish | ⚪ Neutral
Live Candle Countdown Timers
Displays time remaining until the next candle close for each timeframe, using timenow for near real-time updates (as fast as ticks arrive).
Compact Table Display
Non-intrusive table displayed in the top-right of your chart with clean formatting for fast decision-making.
Built-in Alerts
Optional alerts when all timeframes align bullish or bearish, giving potential trade setup signals.
Inputs:
Select timeframes for structure analysis (1m, 5m, 1h)
Adjust pivot sensitivity with the Pivot Length input
Info TablesThis indicator provides two clear tables showing key market metrics, helping you make sense of price action. Each metric is chosen to give you practical insights, and you can customize the display to fit your needs.
## Key Features and Why Metrics Matter
### Main Table Metrics
- **ML-Predicted Price**:
- **What**: A price forecast based on a machine learning model using past price, volume, and RSI data.
- **Why**: Shows where the market might head, helping you gauge if the current price is too high or low compared to the prediction. Useful for spotting potential reversals or continuations.
- **Deviation %**:
- **What**: The percentage difference between the current price and the predicted price.
- **Why**: Tells you how far the market is straying from the ML forecast. A large deviation might suggest overbought/oversold conditions or a trend shift.
- **VWAP Deviation %**:
- **What**: The percentage difference between the current price and the Volume Weighted Average Price (VWAP).
- **Why**: VWAP is a benchmark for fair price; deviation shows if the market is stretched above or below this level, aiding entries or exits.
- **FRED UNRATE % Change**:
- **What**: The percentage change in the U.S. unemployment rate from FRED data.
- **Why**: Offers macro context. Rising unemployment can signal economic weakness, impacting market sentiment, while falling rates may boost confidence.
- **Open Interest**:
- **What**: The total number of open futures contracts for MESM2.
- **Why**: High open interest indicates strong market participation, often tied to liquidity and conviction. Low levels might suggest indecision or lack of commitment.
- **COT Commercial Long/Short**:
- **What**: Commitment of Traders (COT) data showing commercial traders’ long and short positions.
- **Why**: Reveals how big players (hedgers) are positioned. More longs than shorts can hint at bullish sentiment, while more shorts suggest bearish views.
### New Metrics Table
- **QQE Bias**:
- **What**: A momentum indicator based on a smoothed RSI with trailing stops.
- **Why**: Highlights bullish (green) or bearish (red) momentum, helping you confirm short-term trade directions or avoid choppy markets (gray).
- **Volume Momentum**:
- **What**: A score (1–20) comparing current volume to past volume over a lookback period.
- **Why**: High scores indicate strong buying/selling pressure, signaling potential breakouts or reversals. Low scores suggest weak participation.
- **ATR Volatility**:
- **What**: A score (1–20) based on the Average True Range, measuring price volatility.
- **Why**: High volatility warns of larger price swings, useful for setting stop-losses or avoiding trades in choppy conditions. Low volatility may indicate consolidation.
- **ADX Trend**:
- **What**: The Average Directional Index, measuring trend strength.
- **Why**: High ADX values confirm strong trends, guiding you to trade with the trend. Low values suggest range-bound markets, better for mean-reversion strategies.
- **RSI**:
- **What**: Relative Strength Index, showing overbought (>70) or oversold (<30) conditions.
- **Why**: Helps identify potential reversal points or confirm momentum. Useful for timing entries in overextended markets.
- **Frahm Volatility**:
- **What**: A score (1–20) based on true range over a time window (e.g., 24 hours).
- **Why**: Measures short-term volatility, helping you adjust position sizes or avoid trading during erratic price moves.
- **Frahm Avg Candle (Ticks)**:
- **What**: The average candle size in ticks over the same time window.
- **Why**: Indicates typical price movement, useful for setting realistic profit targets or stop-losses based on recent market behavior.
### Additional Features
- **Plotted Predicted Price**:
- **What**: An optional line showing the ML-predicted price on the chart.
- **Why**: Lets you visually compare the predicted price to actual price action, making it easier to spot divergence or alignment.
- **Custom Gradient Colors**:
- **What**: User-defined colors for high/low values in both tables.
- **Why**: Makes it quick to see which metrics are at extremes (e.g., high deviation or strong ADX), improving decision-making under pressure.
- **Alerts**:
- **What**: Notifications for high/low Frahm volatility and bullish/bearish QQE Bias.
- **Why**: Keeps you informed of critical changes (e.g., volatility spikes or momentum shifts) without needing to watch the chart constantly.
## Customization Options
- **ML Matrix Inputs**:
- Adjust the **ML Lookback Period** (e.g., 200–300 for volatile markets, 1000 for trends) to control how much history the ML model uses.
- Set the **ML RSI Period** (e.g., 7–10 for fast markets, 20 for calm) to tweak the RSI’s sensitivity in the prediction.
- **Plot Settings**:
- Toggle the predicted price line and choose its color (default blue) for clear visibility.
- **Table Settings**:
- Position tables (top/bottom, left/center/right) and show/hide them to focus on what matters.
- **Gradient Color Settings**:
- Pick colors for high/low values in each table to match your chart or preferences.
- **Timeframe & Thresholds**:
- Set specific timeframes (e.g., 5-minute for smoother data) and thresholds (e.g., tighter deviation ranges) for each metric to suit your trading style.
## Ideal Use Case
This indicator is perfect for MESM2 traders navigating fast-moving markets. The Main Table gives you a big-picture view (predicted price, macro data, and positioning), while the New Metrics Table zooms in on momentum and volatility, ideal for scalping or trend trades. Use it to confirm entries, set stops, or avoid choppy periods.
## Why It’s Valuable
The **ML Matrix - Tables Only** puts essential data at your fingertips. Each metric is selected to answer a specific question—Is the price overextended? Is momentum building? Are big players bullish? Are conditions too volatile?—helping you trade with clarity and confidence, whether you’re catching quick moves or riding longer trends.
Supertrend + QQE Signal on Flip OnlySupertrend + QQE Signal on Flip Only is a high-precision trend analysis tool that generates Buy and Sell signals only at key market reversals, not during noise, retracements, or mid-trend moves. It uses a volatility-based trend engine combined with a momentum confirmation filter based on the QQE (Quantitative Qualitative Estimation) framework.
Key Features:
Signals trigger only on confirmed trend shifts, minimizing false entries.
Built-in QQE filter confirms that the shift is supported by real momentum.
Visually clean directional lines and trend-based background fills for clarity.
Developed to avoid overlapping visuals and keep the chart readable at all scales.
Alerts included for automation and webhook integration.
Signal Logic:
Buy: When a new upward trend is confirmed and QQE momentum supports the move.
Sell: When a new downward trend is confirmed and QQE momentum supports the shift.
Recommended Use:
Ideal for traders who want clean directional signals without overfitting. Works well on 5–15 minute charts during active sessions (e.g., NY open), and pairs best with volume tools or key price levels for optimal trade confirmation.
TICK ±1200 Intrabar MarkerMarks +1100 and -1200 NYSE TICK readings on any chart. Useful for TICK fades without having to look at the actual USI:TICK chart.