ICT 1st FVG + Date/News [NQTrades]🎯 Indicator Summary: ICT 1st FVG + Date/News
This indicator combines a core ICT (Inner Circle Trader) concept—the tracking of the first Fair Value Gap (FVG) of a session—with convenient on-screen information about the current date and scheduled economic news events.
🟢 Section 1: 1st FVG (Fair Value Gap) Tracker
This logic is dedicated to automatically detecting and visualizing the very first Fair Value Gap that forms at the start of the trading session.
Session-Specific: The indicator only searches for an FVG within the user-defined trading session (defaulting to 09:32 - 16:00 EST for the NY session).
First Only: It plots only the first valid FVG that meets the minimum distance requirement (Min FVG Distance) and ignores all subsequent FVGs for the remainder of that session.
Visual Tracking (Modified): The FVG is drawn as a transparent box that begins at the current bar and extends forward into the chart, allowing traders to monitor its fill or reaction in real-time without cluttering the historical chart data.
Customization: Allows setting distinct colors for bullish (up) and bearish (down) FVGs.
📰 Section 2: Date & News Display
This module provides an organized, persistent display on the chart for critical time and event information.
Date & Time: Displays the current weekday, date, and month in a customizable format.
Configurable News Events: Users can set up to three high-impact news events for the day (e.g., NFP, FOMC, CPI, etc.).
Visual Alert: Each news event is displayed with its own customizable background color, text size, and text color, providing a quick visual alert for upcoming market volatility drivers.
Positioning: The entire information box (Date + News) can be anchored to any of the chart's four corners (Top/Bottom and Left/Center/Right).
Candlestick analysis
Session Highs & Lows Title:
Session Highs & Lows — Asia, London, New York + NY Open Line
Description:
This indicator automatically plots the session highs and lows for the three major trading sessions:
Asia (5 PM – 2 AM PT) – red rays
London (12 AM – 9 AM PT) – blue rays
Previous New York Session (6:30 AM – 1 PM PT) – brown rays
It also draws a thin dashed red line at 6:30 AM PT, marking the New York open.
The script dynamically updates each session’s range as price action unfolds, then locks it in when the session closes.
Lines extend to the right only (“rays”) so traders can easily identify liquidity zones, previous highs/lows, and intraday reaction points without cluttering the left side of the chart.
The logic uses TradingView’s session-time functions (time() windows) and resets automatically after each New York session ends, ensuring that only the current day’s structure is visible.
Unique features:
Works on any timeframe and any symbol (optimized for ES & NQ futures).
Separate colors for each session for clear visual distinction.
Session lines are “live” during the session and freeze once it closes.
Lightweight code with automatic cleanup — avoids line-count overflow.
Non-repainting and fully timezone-aware.
How to use:
Add the indicator to your chart and select your preferred timezone.
Watch how Asia and London session highs/lows guide liquidity during the New York session open (marked by the red dashed line).
AI ALGO LIVEAI ALGO LIVE is an advanced algorithmic visualization tool designed to analyze market momentum, trend direction, and potential reversal areas.
Built with an ATR-based dynamic trailing system, it tracks price movement and highlights possible Buy / Sell zones.
It automatically adapts to market volatility, aiming to identify trend shifts early and visually.
The system works seamlessly with Heikin Ashi candles, Stochastic, MACD, and MFI, helping viewers understand how multi-indicator alignment occurs during market cycles.
Its goal is to enhance market awareness — not to provide trade signals or financial advice.
⚠️ Disclaimer:
This indicator is for educational and analytical purposes only.
The visual signals on screen do not constitute investment advice or recommendations.
Always perform your own analysis and manage your risk responsibly.
Continuation Probability (0–100)This indicator helps measure how likely the current candle trend will continue or reverse, giving a probability score between 0–100.
It combines multiple market factors trend, candle strength, volume, and volatility to create a single, intuitive signal.
True Previous Day/Week High & LowTrue Previous Day/Week High & Low
What makes this indicator unique:
Unlike most previous day high/low indicators that only track SESSION data (e.g., 6:00 PM - 5:00 PM for futures), this indicator calculates the TRUE calendar day high and low from MIDNIGHT TO MIDNIGHT (00:00 - 23:59) in New York time.
Why this matters:
- Session-based indicators miss crucial price action that occurs during overnight hours
- True midnight-to-midnight calculation gives you the ACTUAL daily range
- Essential for traders who need accurate previous day levels for support/resistance
- Works perfectly on 24-hour markets like futures (NQ, ES, YM, etc.)
Features:
✓ True calendar day high/low (00:00-23:59 NY time)
✓ Previous week high/low
✓ Customizable line colors, widths, and styles (solid, dashed, dotted)
✓ Optional labels with adjustable size, color, and spacing
✓ Values displayed on price scale
✓ Toggle individual levels on/off
✓ Optimized for 1-minute charts but works on all timeframes
Perfect for:
- Futures traders (NQ, ES, YM, RTY)
- Day traders using previous day levels as key support/resistance
- Swing traders tracking weekly ranges
- Anyone who needs accurate 24-hour high/low levels
Settings are clean and intuitive - just add to your chart and customize the appearance to match your setup!
Candle Breakout StrategyShort description (one-liner)
Candle Breakout Strategy — identifies a user-specified candle (UTC time), draws its high/low range, then enters on breakouts with configurable stop-loss, take-profit (via Risk:Reward) and optional alerts.
Full description (ready-to-paste)
Candle Breakout Strategy
Version 1.0 — Strategy script (Pine v5)
Overview
The Candle Breakout Strategy automatically captures a single "range candle" at a user-specified UTC time, draws its high/low as a visible box and dashed level lines, and waits for a breakout. When price closes above the range high it enters a Long; when price closes below the range low it enters a Short. Stop-loss is placed at the opposite range boundary and take-profit is calculated with a user-configurable Risk:Reward multiplier. Alerts for entries can be enabled.
This strategy is intended for breakout style trading where a clearly defined intraday range is established at a fixed time. It is simple, transparent and easy to adapt to multiple symbols and timeframes.
How it works (step-by-step)
On every bar the script checks the current UTC time.
When the first bar that matches the configured Target Hour:Target Minute (UTC) appears, the script records that candle’s high and low. This defines the breakout range.
A box and dashed lines are drawn on the chart to display the range and extended to the right while the range is active.
The script then waits for price to close outside the box:
Close > Range High → Long entry
Close < Range Low → Short entry
When an entry triggers:
Stop-loss = opposite range boundary (range low for longs, range high for shorts).
Take-profit = entry ± (risk × Risk:Reward). Risk is computed as the distance between entry price and stop-loss.
After entry the range becomes inactive (waitingForBreakout = false) until the next configured target time.
Inputs / Parameters
Target Hour (UTC) — the hour (0–23) in UTC when the range candle is detected.
Target Minute — minute (0–59) of the target candle.
Risk:Reward Ratio — multiplier for computing take profit from risk (0.5–10). Example: 2 means TP = entry + 2×risk.
Enable Alerts — turn on/off entry alerts (string message sent once per bar when an entry occurs).
Show Last Box Only (internal behavior) — when enabled the previous box is deleted at the next range creation so only the most recent range is visible (default behavior in the script).
Visuals & On-chart Info
A semi-transparent blue box shows the recorded range and extends to the right while active.
Dashed horizontal lines mark the range high and low.
On-chart shapes: green triangle below bar for Long signals, red triangle above bar for Short signals.
An information table (top-right) displays:
Target Time (UTC)
Active Range (Yes / No)
Range High
Range Low
Risk:Reward
Alerts
If Enable Alerts is on, the script sends an alert with the following formats when an entry occurs:
Long alert:
🟢 LONG SIGNAL
Entry Price:
Stop Loss:
Take Profit:
Short alert:
🔴 SHORT SIGNAL
Entry Price:
Stop Loss:
Take Profit:
Use TradingView's alert dialog to create alerts based on the script — select the script’s alert condition or use the alert() messages.
Recommended usage & tips
Timeframe: This strategy works on any timeframe but the definition of "candle at target time" depends on the chart timeframe. For intraday breakout styles, use 1m — 60m charts depending on the session you want to capture.
Target Time: Choose a time that is meaningful for the instrument (e.g., market open, economic release, session overlap). All times are handled in UTC.
Position Sizing: The script’s example uses strategy.percent_of_equity with 100% default — change default_qty_value or strategy settings to suit your risk management.
Filtering: Consider combining this breakout with trend filters (EMA, ADX, etc.) to reduce false breakouts.
Backtesting: Always backtest over a sufficiently large and recent sample. Pay attention to slippage and commission settings in TradingView’s strategy tester.
Known behavior & limitations
The script registers the breakout on close outside the recorded range. If you prefer intrabar breakout rules (e.g., high/low breach without close), you must adjust the condition accordingly.
The recorded range is taken from a single candle at the exact configured UTC time. If there are missing bars or the chart timeframe doesn't align, the intended candle may differ — choose the target time and chart timeframe consistently.
Only a single active position is allowed at a time (the script checks strategy.position_size == 0 before entries).
Example setups
EURUSD (Forex): Target Time 07:00 UTC — captures London open range.
Nifty / Index: Target Time 09:15 UTC — captures local session open range.
Crypto: Target Time 00:00 UTC — captures daily reset candle for breakout.
Risk disclaimer
This script is educational and provided as-is. Past performance is not indicative of future results. Use proper risk management, test on historical data, and consider slippage and commissions. Do not trade real capital without sufficient testing.
Change log
v1.0 — Initial release: range capture, box and level drawing, long/short entry by close breakout, SL at opposite boundary, TP via Risk:Reward, alerts, info table.
If you want, I can also:
Provide a short README version (2–3 lines) for the TradingView “Short description” field.
Add a couple of suggested alert templates for the TradingView alert dialog (if you want alerts that include variable placeholders).
Convert the disclaimer into multiple language versions.
QQQ Levels on NQ - WizardCharts# QQQ Levels on NQ - Professional Support & Resistance Indicator
## 🎯 Overview
Elevate your NASDAQ futures trading with precision-engineered QQQ support and resistance levels. This professional-grade indicator displays critical QQQ price levels directly on your NQ (E-mini NASDAQ-100) and MNQ (Micro E-mini NASDAQ-100) charts, providing institutional-quality analysis for retail traders.
## ⚡ Key Features
### 📊 Dual-Level System
- Whole Number Levels : 10 closest round QQQ levels around current price
- Half Levels : 0.5 increment levels for granular analysis
- Smart Scaling : Automatically converts QQQ levels to NQ/MNQ prices
### 🎨 Professional Visualization
- Clean Design : Minimalist lines that don't clutter your chart
- Customizable Colors : Choose your own colors for whole and half levels
- Historical Extension : Lines extend across your entire chart for context
- Dynamic Labels : Real-time QQQ price display with clear level identification
### ⚙️ Intelligent Features
- Auto-Detection : Works seamlessly on QQQ, NQ, and MNQ charts
- Real-Time Updates : Levels adjust automatically as QQQ price moves
- Performance Optimized : Efficient code that won't slow down your charts
- Flexible Settings : Toggle levels on/off based on your trading style
## 🎯 Perfect For
- NQ Futures Traders seeking QQQ correlation levels
- MNQ Micro Futures traders needing precise entry/exit points
- QQQ Options Traders analyzing support/resistance zones
- Day Traders requiring quick visual reference points
- Swing Traders identifying key technical levels
## 📈 How It Works
The indicator fetches real-time QQQ prices and calculates the 10 closest whole number levels (e.g., 480, 481, 482) plus half levels (480.5, 481.5, 482.5) around the current price. When applied to NQ or MNQ charts, it automatically scales these levels to match futures pricing, giving you precise QQQ-correlated support and resistance zones.
## 🔧 Customization Options
- QQQ Price Label : Toggle on/off
- Whole Number Levels : Show/hide with custom colors
- Half Levels : Show/hide with custom colors and transparency
- Visual Styling : Personalize colors to match your chart theme
## 💡 Trading Applications
- Support/Resistance : Identify key psychological levels
- Entry/Exit Points : Use levels for precise trade execution
- Risk Management : Set stops and targets at significant levels
- Market Structure : Understand institutional price zones
- Confluence Analysis : Combine with other technical indicators
## 🆓 FREE ACCESS - Discord Required - discord.gg
This premium indicator is completely FREE but requires access through our free Discord community.
### How to Get Access:
1. 1.
Join our Discord server using the link in our profile - discord.gg
2. 2.
Verify your membership in the trading community
3. 3.
Request indicator access in the designated channel
4. 4.
Receive your personal copy with full source code
### Why Discord Access?
- Community Support : Get help from experienced traders
- Updates & Improvements : First access to new features
- Trading Discussions : Share strategies and market insights
- Educational Content : Learn advanced trading techniques
- Network Building : Connect with like-minded traders
### Community Benefits:
- ✅ Free Indicators : Access to our entire indicator library
- ✅ Market Analysis : Daily QQQ/NQ market breakdowns
- ✅ Trading Strategies : Proven setups using our indicators
- ✅ Live Support : Real-time help during market hours
- ✅ Educational Resources : Tutorials and trading guides
Funded Gang IndiciCustomized indicator to detect the opening bias of Indexes.
Timeframe 14:30 - 15:30
Aperturas Semanales Precisas (corregido)Identifica aperturas semanales del precio y resalta aperturas mensuales
SPY Levels on ES - WizardCharts# SPY Levels on ES - Professional Support & Resistance Indicator
## 🎯 Overview
Transform your S&P 500 futures trading with precision-engineered SPY support and resistance levels. This professional-grade indicator displays critical SPY price levels directly on your ES (E-mini S&P 500) and MES (Micro E-mini S&P 500) charts, providing institutional-quality analysis for retail traders.
## ⚡ Key Features
### 📊 Dual-Level System
- Whole Number Levels : 10 closest round SPY levels around current price
- Half Levels : 0.5 increment levels for granular analysis
- Smart Scaling : Automatically converts SPY levels to ES/MES prices
### 🎨 Professional Visualization
- Clean Design : Minimalist lines that don't clutter your chart
- Customizable Colors : Choose your own colors for whole and half levels
- Historical Extension : Lines extend across your entire chart for context
- Dynamic Labels : Real-time SPY price display with clear level identification
### ⚙️ Intelligent Features
- Auto-Detection : Works seamlessly on SPY, ES, and MES charts
- Real-Time Updates : Levels adjust automatically as SPY price moves
- Performance Optimized : Efficient code that won't slow down your charts
- Flexible Settings : Toggle levels on/off based on your trading style
## 🎯 Perfect For
- ES Futures Traders seeking SPY correlation levels
- MES Micro Futures traders needing precise entry/exit points
- SPY Options Traders analyzing support/resistance zones
- Day Traders requiring quick visual reference points
- Swing Traders identifying key technical levels
## 📈 How It Works
The indicator fetches real-time SPY prices and calculates the 10 closest whole number levels (e.g., 580, 581, 582) plus half levels (580.5, 581.5, 582.5) around the current price. When applied to ES or MES charts, it automatically scales these levels to match futures pricing, giving you precise SPY-correlated support and resistance zones.
## 🔧 Customization Options
- SPY Price Label : Toggle on/off
- Whole Number Levels : Show/hide with custom colors
- Half Levels : Show/hide with custom colors and transparency
- Visual Styling : Personalize colors to match your chart theme
## 💡 Trading Applications
- Support/Resistance : Identify key psychological levels
- Entry/Exit Points : Use levels for precise trade execution
- Risk Management : Set stops and targets at significant levels
- Market Structure : Understand institutional price zones
- Confluence Analysis : Combine with other technical indicators
## 🆓 FREE ACCESS - Discord Required discord.gg
This premium indicator is completely FREE but requires access through our free Discord community.
### How to Get Access:
1. 1.
Join our Discord server using the link in our profile
2. 2.
Verify your membership in the trading community
3. 3.
Request indicator access in the designated channel
4. 4.
Receive your personal copy with full source code
discord.gg
### Why Discord Access?
- Community Support : Get help from experienced traders
- Updates & Improvements : First access to new features
- Trading Discussions : Share strategies and market insights
- Educational Content : Learn advanced trading techniques
- Network Building : Connect with like-minded traders
### Community Benefits:
- ✅ Free Indicators : Access to our entire indicator library
- ✅ Market Analysis : Daily SPY/ES market breakdowns
- ✅ Trading Strategies : Proven setups using our indicators
- ✅ Live Support : Real-time help during market hours
- ✅ Educational Resources : Tutorials and trading guides
PARTH Gold Profit IndicatorWhat's Inside:
✅ What is gold trading (XAU/USD explained)
✅ Why trade gold (5 major reasons)
✅ How to make money (buy/sell mechanics)
✅ Complete trading setup using your indicator
✅ Entry rules (when to buy/sell with examples)
✅ Risk management (THE MOST IMPORTANT)
✅ Best trading times (London-NY overlap)
✅ 3 trading styles (scalping, swing, position)
✅ 6 common mistakes to avoid
✅ Realistic profit expectations
✅ Pre-trade checklist
✅ Step-by-step getting started guide
✅ Everything a beginner need
USD News Indicator by ModishThe USD News Indicator overlays arrows and labels on TradingView charts to mark key USD economic releases (e.g., NFP, CPI, PCE, FOMC) from Jan-Oct 2025, with red arrows for high-impact (e.g., CPI, NFP) and orange for medium (e.g., ISM PMI). The main purpose of the indicator is to show the impact of the news in different markets upon release and their movement. Customize via inputs: toggle news types (NFP, CPI, etc.), colors, and timezone display (global options like UTC, New York, Nairobi). A top-right table lists upcoming events with dates/times and impacts, auto-updating weekly based on hardcoded schedules.
Ichimoku + Multi-Trend DashboardIchimoku + Multi-Trend Dashboard
A professional multi-indicator trend analyzer that fuses Ichimoku Cloud with volume, momentum, and price-based confirmations — all visualized in a dynamic dashboard.
🔍 Overview
The OSPL Ichimoku + Multi-Trend Dashboard is a comprehensive market-structure and momentum visualization tool built for serious traders who value clarity, precision, and confirmation.
It combines the powerful Ichimoku Cloud system with VWMA, SuperTrend, RSI, and VWAP to provide a 360-degree view of market direction, trend strength, and trade zones.
This indicator allows traders to instantly read multi-indicator alignment through a color-coded dashboard, helping filter out noise and improve timing for entries and exits.
⚙️ Core Features
🟢 1. Ichimoku Cloud Framework
Displays all major Ichimoku elements: Tenkan-Sen, Kijun-Sen, Senkou Span A & B (Kumo Cloud).
Detects Bullish and Bearish Tenkan-Kijun Crossovers.
Identifies Cloud Trend Bias (price above, below, or inside the Kumo).
Marks Buy / Sell / Wait Zones automatically based on price structure and line alignment.
⚡ 2. Multi-Indicator Confirmation Layer
Enhance trend validation using:
VWMA (Volume-Weighted Moving Average): Measures volume-driven price trend.
SuperTrend: Uses ATR to confirm trend direction and detect reversals.
RSI (Relative Strength Index): Gauges market momentum — above 50 indicates bullish bias, below 50 bearish.
VWAP (Volume-Weighted Average Price): Tracks institutional and fair value price zones.
Each of these indicators contributes to a synchronized dashboard view that instantly reveals market bias.
📊 3. Interactive Dashboard Display
Clean, modern bottom-right table summarizing indicator values and their current trend status.
Color-coded trend map:
🟢 Green = Bullish 🔴 Red = Bearish 🟡 Yellow = Neutral / Wait
Quick visual reference — ideal for active traders who rely on multiple confirmations before taking trades.
🌥 4. Kumo Visualization
Smoothly shaded Ichimoku Cloud fill highlights dominant market phase (bullish or bearish).
Dynamic transition coloring enhances visibility of potential breakouts or reversals.
🎯 How to Use
Use the dashboard as a trend alignment and confirmation tool:
Bullish Confluence Example:
Price above Kumo Cloud
Tenkan-Sen > Kijun-Sen
RSI > 50
SuperTrend below price
VWMA and VWAP trending upward
Bearish Confluence Example:
Price below Kumo Cloud
Tenkan-Sen < Kijun-Sen
RSI < 50
SuperTrend above price
VWMA and VWAP trending downward
When most indicators align in the same direction, the system provides high-probability trade zones.
It can be used across all timeframes, from intraday scalping to multi-day swing trading.
🧩 Why Use This Indicator
✅ Filters false signals by combining multiple trend tools.
✅ Eliminates the need to switch between multiple indicators.
✅ Offers an at-a-glance visual assessment of overall market bias.
✅ Adaptable to any asset: stocks, indices, forex, commodities, or crypto.
✅ Ideal for traders using trend-following, momentum, or confirmation-based strategies.
🧠 Professional Tips
Combine the dashboard signals with price action and volume breakouts for enhanced accuracy.
Use higher timeframe Ichimoku structure as a directional filter (e.g., check the 1-hour trend while trading on 15-minute).
Apply ATR-based stop loss and multi-timeframe confluence to further strengthen entries.
Works exceptionally well with Heikin Ashi candles for smoother visual trends.
💡 Suggested Use Cases
Intraday & Swing Trading
Trend Continuation & Reversal Identification
Multi-Indicator Confirmation System
Dashboard-Style Strategy Testing and Backtesting
⚠️ Disclaimer
This indicator is designed for educational and analytical purposes only.
It is not financial advice and does not guarantee profitability.
Always perform independent analysis and apply prudent risk management before executing trades.
Maxtra Reversal Range Breakout StrategyReversal Range Breakout Strategy
This strategy uses the first candle as a directional filter. If the first candle is green, it anticipates a potential reversal and takes sell trades only. If the first candle is red, it looks for buy opportunities. The logic is to trade against the initial move, expecting a reversal after the early breakout or momentum spike.
Maxtra Range Breakout StrategyRange Breakout Strategy
This strategy identifies periods of price consolidation (range) and enters trades when the price breaks above or below the defined range. A breakout above the range signals a potential uptrend (buy), while a breakout below indicates a potential downtrend (sell). It helps capture strong directional moves following low-volatility phases.
Trend Continuation Strategy (Tf - 1m,5m,15m & 1h)This Indicator gives long and short signals based on the current trend on the time frame that you are using.
Preferred timeframes to use - 1min, 5min, 15min and 1hour.
1 . Once we get a long or short singal, the entry ,sl and 3 take profit areas are marked.
2 . Entry criteria - Once we get a long or short confirmation, the entry , sl and 3 take profits will be displayed on the chart.
3 . If the immediate next candle gives us an entry then we use that signal,if not then we dont.
4 . Entry line - Gold, SL line - Red and 3 green lines are tp lines spanning 1:1,1:2,1:3 respectively.
Important notice -
1 . Backtest and see what profit booking suits the best.
2 . Best assests it works well with - Nasdaq, XAUUSD, GBPUSD and EURUSD
Access -
1. 15 days free access will be granted for each user.
2. For full access please contact - Discord - reaperfx99 or drop a private message here on Tradingview.
Examples -
www.tradingview.com
www.tradingview.com
www.tradingview.com
www.tradingview.com
Serenity Model VIPI — by yuu_iuHere’s a concise, practical English guide for Serenity Model VIPI (Author: yuu_iu). It covers what it is, how to set it up for daily trading, how to tune it, and how we guarantee non-repainting.
Serenity Model VIPI — User Guide (Daily Close, Non‑Repainting)
Credits
- Author: yuu_iu
- Producer: yuu_iu
- Platform: TradingView (Pine Script v5)
1) What it is
Serenity Model VIPI is a multi‑module, context‑aware trading model that fuses signals from:
- Entry modules: VCP, Flow, Momentum, Mean Reversion, Breakout
- Exit/risk modules: Contrarian, Breakout Sell, Volume Delta Sell, Peak Detector, Overbought Exit, Profit‑Take
- Context/memory: Learns per Ticker/Sector/Market Regime and adjusts weights/aggression
- Learning engine: Runs short “fake trades” to learn safely before scaling real trades
It produces a weighted, context‑adjusted score and a final decision: BUY, SELL, TAKE_PROFIT, or WAIT.
2) How it works (high level)
- Each module computes a score per bar.
- A fusion layer combines module scores using accuracy and base weights, then adjusts by:
- Market regime (Bull/Bear/Sideways) and optional higher‑timeframe (HTF) bias
- Risk control neuron
- Context memory (ticker/sector/regime)
- Optional LLM mode can override marginal cases if context supports it.
- Final decision is taken at bar close only (no intrabar repaint).
3) Non‑repainting guarantee (Daily)
- Close‑only execution: All key actions use barstate.isconfirmed, so signals/entries/exits only finalize after the daily candle closes.
- No lookahead on HTF data: request.security() reads prior‑bar values (series ) for HTF close/EMA/RSI.
- Alerts at bar close: Alerts are fired once per bar close to prevent mid‑bar changes.
What this means: Once the daily bar closes, the decision and alert won’t be repainted.
4) Setup (TradingView)
- Paste the Pine v5 code into Pine Editor, click Add to chart.
- Timeframe: 1D (Daily).
- Optional: enable a date window for training/backtest
- Enable Custom Date Filter: ON
- Set Start Date / End Date
- Create alert (non‑repainting)
- Condition: AI TRADE Signal
- Options: Once Per Bar Close
- Webhook (optional): Paste your URL into “System Webhook URL (for AI events)”
- Watch the UI
- On‑chart markers: AI BUY / AI SELL / AI TAKE PROFIT
- Right‑side table: Trades, Win Rate, Avg Profit, module accuracies, memory source, HTF trend, etc.
- “AI Thoughts” label: brief reasoning and debug lines.
5) Daily trading workflow
- The model evaluates at daily close and may:
- Enter long (BUY) when buy votes + total score exceed thresholds, after context/risk checks
- Exit via trailing stop, hard stop, TAKE_PROFIT, or SELL decision
- Learning mode:
- Triggers short “fake trades” every N bars (default 3) and measures outcome after 5 bars
- Improves module accuracies and adjusts aggression once stable (min fake win% threshold)
- Memory application:
- When you change tickers, the model tries to apply Ticker or Sector memory for the current market regime to pre‑bias module weights/aggression.
6) Tuning (what to adjust and why)
Core controls
- Base Aggression Level (default 1.0): Higher = more trades and stronger decisions; start conservative on Daily (1.0–1.2).
- Learning Speed Multiplier (default 3): Faster adaptation after fake/real trades; too high can overreact.
- Min Fake Win Rate to Exit Learning (%) (default 10–20%): Raises the bar before trusting more real trades.
- Fake Trade Every N Bars (default 3): Frequency of learning attempts.
- Learning Threshold Win Rate (default 0.4): Governs when the learner should keep learning.
- Hard Stop Loss (%) (default 5–8%): Global emergency stop.
Multi‑Timeframe (MTF)
- Enable Multi‑Timeframe Confirmation: ON (recommended for Daily)
- HTF Trend Source: HOSE:VNINDEX for VN equities (or CURRENT_SYMBOL if you prefer)
- HTF Timeframe: D or 240 (for a strong bias)
- MTF Weight Adjustment: 0.2–0.4 (0.3 default is balanced)
Module toggles and base weights
- In strong uptrends: increase VCP, Momentum, Breakout (0.2–0.3 typical)
- In sideways low‑vol regimes: raise MeanRev (0.2–0.3)
- For exits/defense: Contrarian, Peak, Overbought Exit, Profit‑Take (0.1–0.2 each)
- Keep Flow on as a volume‑quality filter (≈0.2)
Memory and control
- Enable Shared Memory Across Tickers: ON to share learning
- Enable Sector‑Based Knowledge Transfer: ON to inherit sector tendencies
- Manual Reset Learning: Use sparingly to reset module accuracies if regime changes drastically
Risk management
- Hard Stop Loss (%): 5–8% typical on Daily
- Trailing Stop: ATR‑ and volatility‑adaptive; tightens faster in Bear/High‑Vol regimes
- Max hold bars: Shorter in Bear or Sideways High‑Vol to cut risk
Alerts and webhook
- Use AI TRADE Signal with Once Per Bar Close
- Webhook payload is JSON, including event type, symbol, time, win rates, equity, aggression, etc.
7) Recommended Daily preset (VN equities)
- MTF: Enable, Source: HOSE:VNINDEX, TF: D, Weight Adj: 0.3
- Aggression: 1.1
- Learning Speed: 3
- Min Fake Win Rate to Exit Learning: 15%
- Hard SL: 6%
- Base Weights:
- VCP 0.25, Momentum 0.25, Breakout 0.15, Flow 0.20
- MeanRev 0.20 (raise in sideways)
- Contrarian/Peak/Overbought/Profit‑Take: 0.10–0.20
- Leave other defaults as is, then fine‑tune by symbol/sector.
8) Reading the UI
- Table highlights: Real Trades, Win Rate, Avg Profit, Fake Actions/Win%, VCP Acc, Aggression, Equity, Score, Status (LEARNING/TRADING/REFLECTION), Last Real, Consec Loss, Best/Worst Trade, Pattern Score, Memory Source, Current Sector, AI Health, HTF Trend, Scheduler, Memory Loaded, Fake Active.
- Shapes: AI BUY (below bar), AI SELL/TAKE PROFIT (above bar)
- “AI Thoughts”: module contributions, context notes, debug lines
9) Troubleshooting
- No trades?
- Ensure timeframe is 1D and the date filter covers the chart range
- Check Scheduler Cooldown (3 bars default) and that barstate.isconfirmed (only at close)
- If MTF is ON and HTF is bearish, buy bias is reduced; relax MTF Weight Adjustment or module weights
- Too many/too few trades?
- Lower/raise Base Aggression Level
- Adjust base weights on key modules (raise entry modules to be more active; raise exit/defense modules to be more selective)
- Learning doesn’t end?
- Increase Min Fake Win Rate to Exit Learning only after it’s consistently stable; otherwise lower it or reduce Fake Trade Every N Bars
10) Important notes
- The strategy is non‑repainting at bar close by design (confirmed bars + HTF series + close‑only alerts).
- Backtest fills may differ from live fills due to slippage and broker rules; this is normal for all TradingView strategies.
- Always validate settings across multiple symbols and regimes before going live.
If you want, I can bundle this guide into a README section in your Pine code and add a small on‑chart signature (Author/Producer: yuu_iu) in the top‑right corner.
SignalXpress Scalping Algo [V2] + AI Channels🚀 SignalXpress Scalping Algo - The Ultimate All-in-One Trading System 🚀
Professional Institutional-Grade Analysis in One Indicator
Tired of cluttering your charts with dozens of indicators? SignalXpress Scalping Algo combines 8+ professional trading strategies into one powerful, clean, and intuitive system used by hedge funds and professional traders worldwide.
🎯 WHAT MAKES THIS DIFFERENT?
8 PROFESSIONAL STRATEGIES IN ONE:
🏰 Supply & Demand Zones - Identify institutional accumulation/distribution areas
📊 Market Structure Analysis - Track BOS, CHoCH, and structural breaks in real-time
📦 Volumetric Order Blocks - See where smart money is placing orders
🎯 Master Pattern Recognition - Detect complex chart patterns automatically
💰 Liquidity Detection - Find hidden buy/sell stops and liquidity pools
📈 Multi-Timeframe Analysis - See higher timeframe structure on your current chart
⚡ HSN Trend Signals - ATR-based precision entries with high accuracy
🛡️ Support/Resistance - Dynamic S/R levels that adapt to market conditions
✨ KEY FEATURES THAT WILL TRANSFORM YOUR TRADING:
🔄 SMART SUPPLY & DEMAND
Automatic zone detection with rejection tracking
Self-adjusting zone widths based on market volatility
Smart cleanup when zones are broken (no chart clutter)
🏗️ ADVANCED MARKET STRUCTURE
Real-time internal & swing structure analysis
BOS (Break of Structure) and CHoCH (Change of Character) alerts
Multi-timeframe structure alignment (5min to Weekly)
📊 INSTITUTIONAL ORDER FLOW
Volume-based order block detection
Filter by market structure events
Internal vs. swing order block differentiation
🎯 PRECISE ENTRIES & EXITS
SignalXpress Scalping Algo signals with customizable sensitivity
RSI reversal detection for counter-trend opportunities
Trend ribbon for clear market direction
📈 PERFECT FOR ALL TRADING STYLES:
Day Traders - 5min to 1H timeframes
Swing Traders - 4H to Daily timeframes
Position Traders - Weekly to Monthly analysis
All Markets - Stocks, Forex, Crypto, Futures
🛠️ CUSTOMIZATION GALORE:
50+ input parameters to match your trading style
Color customization for all elements
Alert conditions for every trading scenario
Performance metrics and real-time statistics
🎁 BONUS FEATURES:
Multi-Timeframe Candles - See HTF candles on your current chart
Comprehensive Metrics Table - All key stats at a glance
Professional Chart Organization - Clean, uncluttered display
Telegram & Alert Integration - Never miss a setup
💡 WHY PROFESSIONALS CHOOSE SIGNALXPRESS:
"This isn't just another indicator - it's a complete trading system. Most traders spend years and thousands of dollars collecting pieces of the puzzle. We've built the entire picture for you in one script."
📊 RESULTS YOU CAN EXPECT:
✅ Clear market structure understanding
✅ Precise entry and exit timing
✅ Reduced chart clutter and analysis time
✅ Professional-grade risk management
✅ Consistent, repeatable trading decisions
🎯 WHO IS THIS FOR?
Serious traders looking for an edge
Those tired of indicator overload
Traders wanting institutional-level analysis
Anyone seeking consistent, professional results
"Stop collecting indicators and start using a trading system that actually works. Transform your trading today with SignalXpress Scalping Algo "
Creator: SignalXpress
Professional Trading Systems Since 2023






















