Apex Wallet - MTF Trend Monitor: Unified Indicator DashboardOverview The Apex Wallet MTF Trend Meter is a powerful Multi-Timeframe (MTF) dashboard designed to provide a bird's-eye view of market conditions across several time intervals simultaneously. Instead of switching between charts, this tool presents a clean, real-time table directly on your workspace, allowing you to identify high-probability trade setups through timeframe alignment.
Multi-Layered Analysis The dashboard monitors and categorizes technical data into actionable color-coded cells:
Timeframe Master Trend: Tracks the core market direction using EMA filters (adjustable for Scalping, Day, or Swing trading).
Oscillator Confluence: Instant status of Stochastic (STO), RSI, MACD, and TDI.
Andean Oscillator: Specialized tracking for market states including Bullish, Bearish, Consolidating, or Reversing.
Market Volume Delta: Real-time institutional flow tracking with customizable modes (Buy/Sell, Neutral, or Auto).
Key Features:
Fully Customizable Grid: Toggle individual timeframes (from 1m up to 4h) and specific indicators to match your trading strategy.
Smart Adaptive Presets: One-click selection for Scalping, Day-Trading, or Swing-Trading automatically updates all internal indicator periods for optimized performance.
Trend-Filtered Signals: Momentum indicators are filtered by the master trend EMA to ensure signals are displayed only when aligned with the broader market direction.
Compact UI: Designed for efficiency, the dashboard sits discreetly on your chart while providing maximum data density.
How to Use: Identify "Vertical Confluence" where multiple timeframes align with the same color, indicating a high-conviction trend continuation or breakout.
Indicadores y estrategias
XAUUSD Psych Zones (0/25/50/75)This indicator plots psychological quarter levels on XAUUSD (0 / 25 / 50 / 75) and highlights them as tradable zones.
Each level is displayed as a horizontal zone with a midpoint line, designed for support & resistance, break-and-retest, and reaction-based trading on gold.
Zones extend across the chart and are sized using a custom pip definition (default: 1 pip = 1.00, ±5 pips each side).
BB Squeeze + Volume Confirm (Boxed Zones, Rewired)What This Indicator Does (End-to-End, No Ambiguity)
This indicator identifies when volatility is compressed, when it releases, and whether that release is real. It is not predictive. It is regime-based.
⸻
1. It Detects a True Volatility Squeeze
The indicator measures Bollinger Band width and compares it to its own recent history. When band width falls into the lowest percentile of the lookback window, volatility is objectively compressed.
When that condition is met, the indicator draws a yellow box around price. That box persists as long as compression continues.
Yellow box equals stored energy.
⸻
2. It Visually Separates “Do Nothing” From “Act”
While price remains inside a yellow box, the market is coiled. The indicator explicitly tells you not to trade.
No direction is implied.
No bias is assumed.
No signal is generated.
This prevents overtrading during chop.
⸻
3. It Confirms Breakouts With Participation
The indicator does not treat every band break as valid.
A breakout is only recognized if:
Price closes outside the Bollinger Band, and
Volume expands materially versus its recent average.
Only then does it print:
SQ↑ for upside resolution
SQ↓ for downside resolution
These are confirmed volatility releases, not guesses.
⸻
4. It Filters Noise With Optional ATR Gating
You can optionally require ATR (average true range) to also be suppressed during the squeeze. This filters out false “tight” periods that occur during chaotic tape.
When enabled, squeezes must be both structurally and behaviorally quiet.
⸻
5. It Defines Market Regimes
The indicator divides the chart into three regimes:
Yellow box present: compression, preparation only
Yellow box ends: transition
SQ↑ or SQ↓ prints: expansion, execution phase
This keeps strategy selection aligned with market conditions.
⸻
6. It Prevents the Most Common Trading Error
Most traders lose money by trading inside compression or fading confirmed expansion.
This indicator blocks both behaviors by design.
⸻
Bottom Line
This indicator answers one question only:
“Is volatility being stored, or has it been released with commitment?”
If volatility is being stored, you wait.
If it has been released with volume, you act.
That clarity is the entire point.
Sonic R 89 - NY SL Custom Fixed//@version=5
indicator("Sonic R 89 - NY SL Custom Fixed", overlay=true, max_lines_count=500)
// --- 0. TÙY CHỈNH THÔNG SỐ ---
group_session = "Cài đặt Phiên Giao Dịch (Giờ New York)"
use_session = input.bool(true, "Chỉ giao dịch theo khung giờ", group=group_session)
session_time = input.session("0800-1200", "Khung giờ NY 1", group=group_session)
session_time2 = input.session("1300-1700", "Khung giờ NY 2", group=group_session)
max_trades_per_session = input.int(1, "Số lệnh tối đa/mỗi khung giờ", minval=1, group=group_session)
group_risk = "Quản lý Rủi ro (Dashboard)"
risk_usd = input.float(100.0, "Số tiền rủi ro mỗi lệnh ($)", minval=1.0, group=group_risk)
group_sl_custom = "Cấu hình Stop Loss (SL)"
sl_mode = input.string("Dragon", "Chế độ SL", options= , group=group_sl_custom)
lookback_x = input.int(5, "Số nến (X) cho Swing SL", minval=1, group=group_sl_custom)
group_htf = "Lọc Đa khung thời gian (MTF)"
htf_res = input.timeframe("30", "Chọn khung HTF", group=group_htf)
group_sonic = "Cấu hình Sonic R"
vol_mult = input.float(1.5, "Đột biến Volume", minval=1.0)
max_waves = input.int(4, "Ưu tiên n nhịp đầu", minval=1)
trade_cd = input.int(5, "Khoảng cách lệnh (nến)", minval=1)
group_tp = "Quản lý SL/TP & Dòng kẻ"
rr_tp1 = input.float(1.0, "TP1 (RR)", step=0.1)
rr_tp2 = input.float(2.0, "TP2 (RR)", step=0.1)
rr_tp3 = input.float(3.0, "TP3 (RR)", step=0.1)
rr_tp4 = input.float(4.0, "TP4 (RR)", step=0.1)
line_len = input.int(15, "Chiều dài dòng kẻ", minval=1)
// --- 1. KIỂM TRA PHIÊN & HTF ---
is_in_sess1 = not na(time(timeframe.period, session_time, "America/New_York"))
is_in_sess2 = not na(time(timeframe.period, session_time2, "America/New_York"))
is_in_session = use_session ? (is_in_sess1 or is_in_sess2) : true
var int trades_count = 0
is_new_session = is_in_session and not is_in_session
if is_new_session
trades_count := 0
htf_open = request.security(syminfo.tickerid, htf_res, open, lookahead=barmerge.lookahead_on)
htf_close = request.security(syminfo.tickerid, htf_res, close, lookahead=barmerge.lookahead_on)
is_htf_trend = htf_close >= htf_open ? 1 : -1
// --- 2. TÍNH TOÁN CHỈ BÁO ---
ema89 = ta.ema(close, 89)
ema34H = ta.ema(high, 34)
ema34L = ta.ema(low, 34)
atr = ta.atr(14)
avgVol = ta.sma(volume, 20)
slope89 = (ema89 - ema89 ) / atr
hasSlope = math.abs(slope89) > 0.12
isSqueezed = math.abs(ta.ema(close, 34) - ema89) < (atr * 0.5)
var int waveCount = 0
if not hasSlope
waveCount := 0
newWave = hasSlope and ((low <= ema34H and close > ema34H) or (high >= ema34L and close < ema34L))
if newWave and not newWave
waveCount := waveCount + 1
// --- 3. LOGIC VÀO LỆNH ---
isMarubozu = math.abs(close - open) / (high - low) > 0.8
highVol = volume > avgVol * vol_mult
buyCondition = is_in_session and (trades_count < max_trades_per_session) and waveCount <= max_waves and is_htf_trend == 1 and
(isMarubozu or highVol) and close > ema34H and low >= ema89 and
(slope89 > 0.1 or isSqueezed ) and close > open
sellCondition = is_in_session and (trades_count < max_trades_per_session) and waveCount <= max_waves and is_htf_trend == -1 and
(isMarubozu or highVol) and close < ema34L and high <= ema89 and
(slope89 < -0.1 or isSqueezed ) and close < open
// --- 4. QUẢN LÝ LỆNH ---
var float last_entry = na
var float last_sl = na
var float last_tp1 = na
var float last_tp2 = na
var float last_tp3 = na
var float last_tp4 = na
var string last_type = "NONE"
var int lastBar = 0
trigger_buy = buyCondition and (bar_index - lastBar > trade_cd)
trigger_sell = sellCondition and (bar_index - lastBar > trade_cd)
// --- 5. TÍNH TOÁN SL & LOT SIZE ---
float contract_size = 1.0
if str.contains(syminfo.ticker, "XAU") or str.contains(syminfo.ticker, "GOLD")
contract_size := 100
// Logic tính SL linh hoạt
float swing_low = ta.lowest(low, lookback_x)
float swing_high = ta.highest(high, lookback_x)
float temp_sl_calc = na
if trigger_buy
temp_sl_calc := (sl_mode == "Dragon") ? ema34L : swing_low
if trigger_sell
temp_sl_calc := (sl_mode == "Dragon") ? ema34H : swing_high
float sl_dist_calc = math.abs(close - temp_sl_calc)
float calc_lots = (sl_dist_calc > 0) ? (risk_usd / (sl_dist_calc * contract_size)) : 0
if (trigger_buy or trigger_sell)
trades_count := trades_count + 1
lastBar := bar_index
last_type := trigger_buy ? "BUY" : "SELL"
last_entry := close
last_sl := temp_sl_calc
float riskAmt = math.abs(last_entry - last_sl)
last_tp1 := trigger_buy ? last_entry + (riskAmt * rr_tp1) : last_entry - (riskAmt * rr_tp1)
last_tp2 := trigger_buy ? last_entry + (riskAmt * rr_tp2) : last_entry - (riskAmt * rr_tp2)
last_tp3 := trigger_buy ? last_entry + (riskAmt * rr_tp3) : last_entry - (riskAmt * rr_tp3)
last_tp4 := trigger_buy ? last_entry + (riskAmt * rr_tp4) : last_entry - (riskAmt * rr_tp4)
// Vẽ dòng kẻ
line.new(bar_index, last_entry, bar_index + line_len, last_entry, color=color.new(color.gray, 50), width=2)
line.new(bar_index, last_sl, bar_index + line_len, last_sl, color=color.red, width=2, style=line.style_dashed)
line.new(bar_index, last_tp1, bar_index + line_len, last_tp1, color=color.green, width=1)
line.new(bar_index, last_tp2, bar_index + line_len, last_tp2, color=color.lime, width=1)
line.new(bar_index, last_tp3, bar_index + line_len, last_tp3, color=color.aqua, width=1)
line.new(bar_index, last_tp4, bar_index + line_len, last_tp4, color=color.blue, width=2)
// KÍCH HOẠT ALERT()
string alert_msg = (trigger_buy ? "BUY " : "SELL ") + syminfo.ticker + " at " + str.tostring(close) + " | SL Mode: " + sl_mode + " | Lot: " + str.tostring(calc_lots, "#.##") + " | SL: " + str.tostring(last_sl, format.mintick)
alert(alert_msg, alert.freq_once_per_bar_close)
// --- 6. CẢNH BÁO CỐ ĐỊNH ---
alertcondition(trigger_buy, title="Sonic R BUY Alert", message="Sonic R BUY Signal Detected")
alertcondition(trigger_sell, title="Sonic R SELL Alert", message="Sonic R SELL Signal Detected")
// --- 7. DASHBOARD & PLOT ---
var table sonic_table = table.new(position.top_right, 2, 10, bgcolor=color.new(color.black, 70), border_width=1, border_color=color.gray)
if barstate.islast
table.cell(sonic_table, 0, 0, "NY SESSION", text_color=color.white), table.cell(sonic_table, 1, 0, last_type, text_color=(last_type == "BUY" ? color.lime : color.red))
table.cell(sonic_table, 0, 1, "SL Mode:", text_color=color.white), table.cell(sonic_table, 1, 1, sl_mode, text_color=color.orange)
table.cell(sonic_table, 0, 2, "Trades this Sess:", text_color=color.white), table.cell(sonic_table, 1, 2, str.tostring(trades_count) + "/" + str.tostring(max_trades_per_session), text_color=color.yellow)
table.cell(sonic_table, 0, 3, "LOT SIZE:", text_color=color.orange), table.cell(sonic_table, 1, 3, str.tostring(calc_lots, "#.##"), text_color=color.orange)
table.cell(sonic_table, 0, 4, "Entry:", text_color=color.white), table.cell(sonic_table, 1, 4, str.tostring(last_entry, format.mintick), text_color=color.yellow)
table.cell(sonic_table, 0, 5, "SL:", text_color=color.white), table.cell(sonic_table, 1, 5, str.tostring(last_sl, format.mintick), text_color=color.red)
table.cell(sonic_table, 0, 6, "TP1:", text_color=color.gray), table.cell(sonic_table, 1, 6, str.tostring(last_tp1, format.mintick), text_color=color.green)
table.cell(sonic_table, 0, 7, "TP2:", text_color=color.gray), table.cell(sonic_table, 1, 7, str.tostring(last_tp2, format.mintick), text_color=color.lime)
table.cell(sonic_table, 0, 8, "TP3:", text_color=color.gray), table.cell(sonic_table, 1, 8, str.tostring(last_tp3, format.mintick), text_color=color.aqua)
table.cell(sonic_table, 0, 9, "TP4:", text_color=color.gray), table.cell(sonic_table, 1, 9, str.tostring(last_tp4, format.mintick), text_color=color.blue)
plot(ema89, color=slope89 > 0.1 ? color.lime : slope89 < -0.1 ? color.red : color.gray, linewidth=2)
p_high = plot(ema34H, color=color.new(color.blue, 80))
p_low = plot(ema34L, color=color.new(color.blue, 80))
fill(p_high, p_low, color=color.new(color.blue, 96))
plotshape(trigger_buy, "BUY", shape.triangleup, location.belowbar, color=color.green, size=size.small)
plotshape(trigger_sell, "SELL", shape.triangledown, location.abovebar, color=color.red, size=size.small)
bgcolor(isSqueezed ? color.new(color.yellow, 92) : na)
bgcolor(not is_in_session ? color.new(color.gray, 96) : na)
Overnight Mid-pointThis script defines a scrollable intraday session and continuously tracks the highest and lowest candle body closes made during that session, explicitly ignoring wicks. As the session develops, it plots a single horizontal midpoint line (dotted, dashed, or solid by user selection) calculated as the average of those two body closes, extending to the right from the session. For visual verification, it places exactly two dots on the chart: a green dot above the bar with the highest body close and a red dot below the bar with the lowest body close. Each new session resets the calculation, ensuring only one midpoint line and two verification markers are visible at any time. For proper use, 1800 - 0800 local time should be used (may be a couple hours off depending on your region).
Super OscillatorSuper Oscillator – Intraday Momentum
Super Oscillator is a momentum-based oscillator designed for intraday trading, optimized for 1-minute charts and fast market conditions.
The indicator uses a zero-centered momentum model with dynamic smoothing and clearly defined zones to help traders identify exhaustion, pullbacks, and momentum shifts without excessive noise.
Key Features
Zero-centered oscillator for immediate directional bias
Dynamic overbought and oversold zones
Neutral “dead zone” to avoid low-probability trades
Smoothed momentum line with signal line for timing entries
Optimized for scalping and short-term intraday trading
Fully compatible with TradingView Pine Script v6
How to Use
Overbought zone: Look for bearish reactions or momentum exhaustion
Oversold zone: Look for bullish reactions or pullbacks
Dead zone: Avoid trades when momentum is unclear
Use the oscillator as a confirmation tool, always with price action and structure
Best Use Case
Intraday scalping (1M–5M)
Futures markets (indices, metals)
NY session trading
Disclaimer
This indicator does not predict price direction. It measures momentum and exhaustion and should be used as part of a complete trading plan with proper risk management.
Advanced Scalping Navigator free by S B PrasadAdvanced Scalping Navigator Lite • Features
by S B Prasad
Advanced Scalping Navigator Lite is a powerful multi-factor scalping and intraday indicator designed to generate high-probability BUY and SELL signals using trend, momentum, volatility, and smart-money concepts.
This FREE version retains the complete core signal engine while limiting certain premium visual and channel features.
🚀 Core Features (Included in Lite Version)
✅ High-Accuracy BUY & SELL Signals
Signals are generated only when multiple technical and structural conditions align, including:
ATR-based trend direction & strength
EMA trend bias
MACD momentum
RSI confirmation
VWAP institutional bias
Ribbon & Hull MA filters
Higher-timeframe (HTF) trend confirmation
Smart-money liquidity sweep validation
Supply & demand zone filtering
Session-based trading filter
✅ Smart-Money Liquidity Sweeps
Detects equal highs/lows and stop-hunt behavior to identify institutional accumulation or distribution before issuing signals.
✅ Supply & Demand Zones
Automatically plots demand and supply zones using pivot-based market structure to improve trade location quality.
✅ Higher-Timeframe (HTF) Confirmation
Filters trades in the direction of the dominant higher-timeframe trend for better probability alignment.
✅ Session Filter (Market Timing Control)
Limits signals to selected market sessions:
Indian Market
London Session
New York Session
✅ Multi-Factor Confirmation Engine
Combines EMA, MACD, RSI, VWAP, Ribbon, and HMA into a weighted factor score to avoid low-quality trades.
✅ Real-Time Dashboard Panel
On-chart dashboard displaying:
Trend direction
Trend strength
Factor alignment score
HTF bias
Zone context
Signal state
Session status
🔒 Features Limited or Disabled in Lite Version
The following premium visuals and channels are not available in the FREE version:
❌ ATR trendline (dynamic support / resistance)
❌ ATR trendline strength coloring
❌ Full ATR channel (upper / average / lower)
❌ Channel fills & premium visual layers
❌ Pivot ATR trend channel visuals
❌ Enhanced trend-zone background fills
🎯 Best For
Intraday traders
Scalpers
Index & stock traders
Futures and options traders
Traders who prefer clean charts with powerful signals
📣 Join Our Telegram (Updates & PRO Access)
👉 Telegram: t.me
💬 For updates, support & PRO version access, join our Telegram.
⚠️ Disclaimer
This indicator is for educational and informational purposes only.
It does not constitute financial advice.
Trading involves risk. Always use proper risk management.
EMA Squeeze Alert (ADR Filter)This indicators is for Pine Screener. You could use it on Pine Screener to filter out stocks with EMAs Convergence.
The EMAs used are EMA 9, EMA 12 and EMA 20.
When the current closing price is within 50% of 20-days ADR% from these three EMAs, it would give you an alert signal.
The way to use it is to apply it onto the Pine Screener.
You then select the watchlist you would like to filter out, and check the alert signal to True, and click scan.
If Condition is True, the candlesticks would have a green arrow below and the background is highlighted.
The script is published, feel free to amend it as you like
Have a Nice Day, and Trade Safe !
Automatic MTF PivotsAutomatic MTF Pivots plots horizontal lines at Daily, Weekly, and Monthly Pivots as well as Support and Resistance Levels. In the Input Panel, you can select which levels to be flagged on the chart as well as their colors.
It can be shown on any timeframes with any symbols and provide reliable support and resistance.
Automatic MTF Pivots can be used in isolation or work with any other trading systems. Especially when combined with the AccuTrade System, it can provide solid R/S Levels to further confirm the signals.
Pivot Points with Support/ResistanceA) Pivot Resistance Levels (R1, R2, R3…)
Resistance pivots are projected upside levels where price often pauses, rejects, or reverses. They are commonly used as profit targets for long trades and areas to watch for short setups when buyers show weakness.
B) Pivot Support Levels (S1, S2, S3…)
Support pivots are projected downside levels where price often stabilizes or bounces. They are commonly used as profit targets for short trades and areas to watch for long setups when sellers lose momentum.
C) Role in Market Structure
S/R pivots map out probable intraday supply and demand zones based on the prior session’s price action. They help define the day’s trading range and highlight high-probability reaction areas.
D) Trading Interpretation
Acceptance above resistance → bullish continuation
Rejection at resistance → potential pullback or reversal
Acceptance below support → bearish continuation
Rejection at support → potential bounce
Best used with trend context, volume, and confluence (CPR, VAH/VAL, Camarilla)
Smart Money Concepts [LuxAlgo]-fixedSmart Money Concepts -fixed, not working intially but modified to get this script working.
MATT 3This indicator helps identify high-probability trend shifts and continuation setups by combining momentum, trend strength, and volatility into a single, easy-to-read signal. It highlights bullish/bearish conditions, marks potential entries and exits, and reduces noise during choppy markets with adaptive filtering. Use it to confirm direction, time pullbacks, and stay aligned with the dominant trend.
Apex Wallet - Adaptive Average Directional Index (ADX) & Trend DOverview The Apex Wallet Average Directional Index (ADX) is an enhanced version of the classic Wilder’s DMI/ADX system, designed to filter market noise and pinpoint trend strength with precision. Unlike standard indicators, this script features an adaptive engine that recalibrates its internal logic based on your specific trading style.
Adaptive Trading Engine The core strength of this script is its three-mode preset system:
Scalping: Fast-response settings (ADX 7) for quick scalp opportunities on low timeframes.
Day-Trading: Balanced settings (ADX 14) optimized for intraday sessions.
Swing-Trading: High-filter settings (ADX 21) designed to capture major market waves.
Visual Intelligence & Labels To ensure clarity, the script features a dynamic labeling system directly on the ADX line:
Trend Strength Zones: Clear horizontal markers for "Consolidation," "Trending," and "Extremely Strong" phases.
Real-time Status Labels: The ADX line changes color and displays its current state (Bullish, Bearish, or Consolidation) directly on the chart.
Optimized UI: No sidebar panels to clutter your view; all essential information is integrated into the oscillator window.
How to Use:
Select your Trading Mode in the settings.
Monitor the ADX color: Green indicates a strong bullish trend, Red indicates a strong bearish trend, and White/Orange signals consolidation.
Use the labels to confirm if the market is currently in a high-conviction trend phase or sideways range.
Fibonacci ATMAFibonacci ATMA. An ATR-adjusted EMA. This is for use with fibonacci scales for day trading and swing trading.
MATT 2This indicator helps identify high-probability trend shifts and continuation setups by combining momentum, trend strength, and volatility into a single, easy-to-read signal. It highlights bullish/bearish conditions, marks potential entries and exits, and reduces noise during choppy markets with adaptive filtering. Use it to confirm direction, time pullbacks, and stay aligned with the dominant trend.
Teril Second Candle Cross Alert (Intrabar)Teril Second Candle Cross Alert
Teril Second Candle Cross Alert
Teril Second Candle Cross Alert
Teril Second Candle Cross Alert
Apex Wallet - Volume Profile: Institutional POC & Value Area TooOverview The Apex Wallet Volume Profile is a professional-grade institutional analysis tool designed to reveal where the most significant trading activity has occurred. By plotting volume on the vertical price axis, it identifies key liquidity zones, value areas, and market fair value, which are essential for order flow trading and identifying high-probability support and resistance.
Dynamic Multi-Mode Engine This script features an intelligent adaptive lookback system that automatically adjusts based on your timeframe and trading style:
Scalping: Fine-tuned for 1m to 15m charts, focusing on immediate liquidity.
Day-Trading: Optimized for intraday sessions from 5m to 1h timeframes.
Swing-Trading: Deep historical analysis for 1h up to daily charts.
Institutional Data Points
Point of Control (POC): Automatically identifies and highlights the price level with the highest total volume.
Value Area (VAH/VAL): Calculates the range where 70% (customizable) of the volume occurred, representing the "Fair Value" of the asset.
HVN & LVN Detection: Spots High Volume Nodes (significant support/resistance) and Low Volume Nodes (rejection zones).
Delta Visualization: Toggle between Bullish, Bearish, or Total volume distribution for precise buy/sell pressure analysis.
Professional UI The profile is rendered with high-fidelity histograms that can be offset to avoid overlapping with price action. It features clear labels and dashed levels for institutional markers, ensuring a clean and actionable workspace.
Ultra-Fast Scalp Predictor - By Herman Sangivera ( Papua )Ultra-Fast Scalp Predictor - By Herman Sangivera ( Papuan Trader )
Overview
Ultra-Fast Scalp Predictor is a high-speed technical indicator specifically engineered for scalpers and day traders. Built on Pine Script V6, this tool specializes in identifying "Squeeze" phases—periods of market compression—and predicting the direction of the upcoming "explosion" before it happens.
The Problem It Solves
Most scalping indicators suffer from two issues: they are either too slow (Lagging) or too sensitive (Fake Signals). This script solves both by using a "Preparation -> Prediction -> Execution" workflow.
How It Works
Phase 1: Squeeze Detection (The Setup) The script monitors the volatility "coil" using Bollinger Bands and Keltner Channels. A Gray Background indicates a Squeeze. This is where the market is sideways, building energy.
Phase 2: Momentum Velocity (The Prediction) While the price is still sideways, the script uses Linear Regression Momentum and Price Velocity.
Aqua Circle (Early Ready Up): Momentum is shifting bullish inside the squeeze.
Orange Circle (Early Ready Down): Momentum is shifting bearish inside the squeeze.
Phase 3: Fast Breakout (The Execution) Once the squeeze "fires" and price crosses the bands, the script triggers a FAST BUY or FAST SELL signal.
Key Features
No-Lag HMA: Uses a 12-period Hull Moving Average for ultra-responsive trend tracking.
Squeeze Logic: Prevents you from overtrading in a "dead" market.
Predictive Signals: The "Early Ready" dots give you a split-second advantage over other traders.
Visual Clarity: Clean labels and shapes designed for 1-minute and 5-minute timeframes.
How to Trade with This Indicator
Step 1 (The Wait): Wait for the gray background (Squeeze).
Step 2 (The Hint): Look for the Aqua or Orange dots. These are your "get ready" warnings.
Step 3 (The Entry): Enter as soon as the FAST BUY (Lime) or FAST SELL (Red) triangle appears.
Step 4 (The Exit): Exit when the HMA line changes color or use a 1:1.5 ATR-based risk/reward ratio.
Settings Explained
Fast HMA Length: Default is 12. Lower = Faster, Higher = Smoother.
Squeeze Length: Default is 20. Controls how sensitive the sideways detection is.
Multipliers: Adjust the BB and KC multipliers to tighten or loosen the breakout sensitivity.
Disclaimer: Scalping involves significant risk. This tool is designed to assist your analysis, not replace sound risk management. Always backtest on a demo account before trading live.
Simplified Zones + Styled CALL/PUT TP/SL + Fixed Scoreboardaarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice aarons practice
Engulfing Candle Mid-pointsThis Pine Script, “Engulfing Candle Mid-points,” identifies bullish and bearish engulfing candles within a user-selected intraday time range. For a candle to qualify, it must fully engulf the previous candle’s body in the opposite direction and meet a configurable minimum body size in points. When such a candle is detected, the script draws a horizontal line at the mid-point of the candle’s body, extending forward for a user-defined number of bars. The script stores only the five most recent bullish and bearish lines to keep the chart clean, and all line colors, widths, and extension lengths are configurable, allowing traders to visually track significant price moves during specific trading sessions.






















