Indicator
Chart patterns
MBA S1# MBA S1 (Invite-Only)
## Overview
**MBA S1** is a comprehensive intraday trading indicator designed to help traders identify high-probability market opportunities using a structured combination of trend analysis, institutional price levels, and price action confirmation.
Instead of relying on a single technical indicator, MBA S1 integrates multiple market concepts into one streamlined framework, providing traders with a cleaner and more disciplined approach to intraday trading.
The indicator has been primarily optimized for **5-minute charts** and supports both **NSE** and **MCX** instruments.
---
## Key Features
### Trend Confirmation
MBA S1 combines:
* EMA 9
* EMA 21
* VWAP
to identify the prevailing market trend and filter potential trading opportunities.
---
### Institutional Price Levels
The indicator automatically plots important market reference levels including:
* Previous Day High (PDH)
* Previous Day Low (PDL)
* Previous Day Close (PDC)
* Central Pivot Range (CPR)
* Top Central (TC)
* Bottom Central (BC)
* Resistance Levels (R1, R2, R3)
* Support Levels (S1, S2, S3)
* Opening Range High (ORH)
* Opening Range Low (ORL)
These levels often act as key areas where price may react, reverse, or continue its movement.
---
### Adaptive Market Logic
MBA S1 uses an ATR-based adaptive calculation to adjust its proximity and breakout sensitivity according to current market volatility.
This helps the indicator remain effective during both low and high volatility trading sessions.
---
### Smart BUY & SELL Signals
Trading signals are generated only after multiple technical conditions align, including:
* Trend Confirmation
* EMA Alignment
* VWAP Confirmation
* Strong Candle Body
* Price Interaction with Key Levels
* Confirmed 5-Minute Candle Close
This multi-condition approach is intended to reduce unnecessary market noise and improve signal quality.
---
### Breakout Detection
MBA S1 monitors important breakout opportunities such as:
* PDH Breakout
* PDL Breakdown
* ORH Breakout
* ORL Breakdown
* R1 / R2 / R3 Breakouts
* S1 / S2 / S3 Breakdowns
---
### Bounce & Rejection Signals
The indicator also highlights potential:
* Bullish Bounce setups
* Bearish Rejection setups
around important support and resistance zones.
---
### Dynamic Alert System
MBA S1 includes built-in alerts for all major trading events, allowing traders to receive timely notifications without continuously monitoring charts.
---
### Clean Chart Experience
The indicator is designed to provide meaningful information while maintaining a clean and organized chart layout with clearly labeled market levels.
---
## Recommended Timeframe
**Primary Timeframe:** 5 Minutes
MBA S1 is specifically optimized for 5-minute charts. A reminder is displayed when the indicator is applied to other timeframes.
---
## Suitable Markets
* NSE Stocks
* NIFTY
* BANKNIFTY
* FINNIFTY
* MIDCPNIFTY
* MCX Crude Oil
* MCX Gold
* MCX Silver
* MCX Natural Gas
---
## Best Suited For
MBA S1 is designed for traders who prefer:
* Intraday Trading
* Price Action Trading
* Level-Based Trading
* Breakout Strategies
* Trend Following
* Structured Decision Making
---
## Important Notice
MBA S1 is a decision-support tool and should be used alongside sound trading practices, proper risk management, and independent market analysis.
No technical indicator can predict future market movements or guarantee trading results.
---
## Invite-Only Access
MBA S1 is currently available as an **Invite-Only** indicator.
Access is provided only to selected users for personal use and evaluation. The script remains under active development, and future updates may include additional features, optimizations, and performance improvements.
Unauthorized copying, redistribution, reverse engineering, or republication of this script is strictly prohibited.
---
### Version
**MBA S1 – Version 1.0**
**Developed & Maintained by**
**Sarita Shukla**
**All Rights Reserved.**
Indicator
Institutional Daily Execution Levelsit uses exclusively prev data to calculate daily institutional spots and projections
Indicator
ICT Market Structure (CHoCH & BOS)only change if character and break of structure no order blocks no fair value gap we have to use this with price actions to ease the trading
Indicator
Supply & Demand Zones [ITA]Auto-drawn supply and demand zones, no manual marking. This indicator detects swing-based zones and plots them cleanly on your chart, then removes each zone once price retests it.
Features:
- Automatic supply zones at swing highs, demand zones at swing lows
- Choose wick-based or body-based zone height
- Zones auto-remove after retest to keep the chart clean
- Configurable pivot strength and max zones per side
- Built-in alerts when price taps a zone
Feedback and suggestions welcome.
Indicator
Session Reference Candle (J&P)//@version=6
indicator("Session Reference Candle v1.0", overlay=true, max_lines_count=500)
//────────────────────────────────────
// SESSION SETTINGS
//────────────────────────────────────
groupSession = "Session Settings"
refTimeframe = input.timeframe(
"60",
"Reference Timeframe",
group=groupSession)
timezone = input.string(
"America/New_York",
"Time Zone",
options= ,
group=groupSession)
sessionHour = input.int(
20,
"Reference Hour",
minval=0,
maxval=23,
group=groupSession)
sessionMinute = input.int(
0,
"Reference Minute",
minval=0,
maxval=59,
group=groupSession)
//────────────────────────────────────
// DISPLAY SETTINGS
//────────────────────────────────────
groupDisplay = "Display Settings"
highColor = input.color(
color.lime,
"High Line Color",
group=groupDisplay)
lowColor = input.color(
color.red,
"Low Line Color",
group=groupDisplay)
candleColor = input.color(
color.orange,
"Reference Candle Color",
group=groupDisplay)
lineWidth = input.int(
2,
"Line Width",
minval=1,
maxval=5,
group=groupDisplay)
keepSessions = input.int(
1,
"Previous Sessions To Keep",
minval=1,
maxval=10,
group=groupDisplay)
//────────────────────────────────────
// HIGHER TIMEFRAME DATA
//────────────────────────────────────
refHigh = request.security(
syminfo.tickerid,
refTimeframe,
high,
lookahead=barmerge.lookahead_off)
refLow = request.security(
syminfo.tickerid,
refTimeframe,
low,
lookahead=barmerge.lookahead_off)
refTime = request.security(
syminfo.tickerid,
refTimeframe,
time,
lookahead=barmerge.lookahead_off)
//────────────────────────────────────
// FIND REFERENCE CANDLE
//────────────────────────────────────
refHour = hour(refTime, timezone)
refMinute = minute(refTime, timezone)
referenceCandle =
refHour == sessionHour and
refMinute == sessionMinute
//────────────────────────────────────
// STORE LEVELS
//────────────────────────────────────
var line highLines = array.new_line()
var line lowLines = array.new_line()
var float sessionHigh = na
var float sessionLow = na
var bool highTriggered = false
var bool lowTriggered = false
//────────────────────────────────────
// CREATE NEW LEVELS
//────────────────────────────────────
if referenceCandle
sessionHigh := refHigh
sessionLow := refLow
highTriggered := false
lowTriggered := false
highLine = line.new(
bar_index,
sessionHigh,
bar_index + 1,
sessionHigh,
extend=extend.right,
color=highColor,
width=lineWidth)
lowLine = line.new(
bar_index,
sessionLow,
bar_index + 1,
sessionLow,
extend=extend.right,
color=lowColor,
width=lineWidth)
array.push(highLines, highLine)
array.push(lowLines, lowLine)
if array.size(highLines) > keepSessions
line.delete(array.shift(highLines))
if array.size(lowLines) > keepSessions
line.delete(array.shift(lowLines))
//────────────────────────────────────
// COLOR REFERENCE CANDLE
//────────────────────────────────────
barcolor(referenceCandle ? candleColor : na)
//────────────────────────────────────
// ALERTS
//────────────────────────────────────
highBreak =
not na(sessionHigh) and
ta.crossover(close, sessionHigh)
lowBreak =
not na(sessionLow) and
ta.crossunder(close, sessionLow)
if highBreak
highTriggered := true
if lowBreak
lowTriggered := true
alertcondition(
highBreak,
"Session High Broken",
"Session Reference Candle High Broken")
alertcondition(
lowBreak,
"Session Low Broken",
"Session Reference Candle Low Broken")
Indicator
ryans XAUUSD SMC Signal Bot (HTF MSS / Entry TF)breakouts, pullbacks, retest and continuation entries
Strategy
Indicator
Gann Reversal ConfluenceWhy this works
W.D. Gann never traded a reversal bar in isolation — a swing high/low break, key reversal, or outside bar was a trigger, not a signal on its own. He wanted it lining up with the bigger picture: was the move overextended, was volume backing it, was it a big enough bar to matter. Most free "Gann reversal" scripts on PulseWire just plot the raw bar pattern and stop there — every swing break gets a triangle, whether it's a meaningful turn or noise. This indicator keeps the classic pattern detection but scores each one against the context Gann actually cared about, so you can see how much is lining up, not just that a shape appeared.
How this works
Pattern detection — pick one of three classic reversal triggers: Swing (price closes beyond the recent N-bar high/low), Key Reversal (new extreme that closes back through the prior close), or Outside Bar (engulfs the prior range and closes in the reversal direction).
Confluence scoring — every raw pattern is checked against up to five independent factors:
Range (ATR) — was the bar itself big enough to matter, or just noise?
Volume — did participation back the move?
Momentum (RSI) — was the market actually stretched, or was this a mid-range wiggle?
Trend (EMA) — is this a pullback with the trend, or a potential trend change against it? (shown, not scored against you)
Hour-ruler (optional, off by default) — a traditional Chaldean planetary-hour tag. Descriptive only, not a validated filter — treat it as a curiosity layered on top of the technical factors, not evidence on its own.
Cooldown — a minimum bar gap between signals stops the same swing from re-triggering repeatedly.
Everything commits on bar close only. Nothing here repaints or changes after the fact.
How to use it
Start with the defaults. Watch how the confluence score (shown next to each signal and in the status table) moves with the setups you'd have taken anyway.
Raise "Minimum confluence score to show signal" to hide everything below your conviction threshold — e.g. set it to 3 to only see signals where 3+ factors agree.
Use the level line each signal draws as a reference point for how price behaved on the next visit, not as a target.
This is a confluence aid, meant to sit alongside your own read of the chart and risk management — not a standalone entry/exit system.
Settings
Logic — reversal method, swing length, close vs. wick confirmation, minimum bars between signals.
Confluence — independently toggle ATR/Volume/RSI/Trend, tune each threshold, and set the minimum score required to show a signal.
Astro (optional) — off by default; enables the hour-ruler tag and lets you set a location for the sunrise/sunset calc it depends on.
Display — swing band, signal level lines, background highlight, confluence score label, status table (with position control), colors, and line styling.
Non-repainting. Every signal is final the moment it prints.
Indicator
Aligned Multi-EMA Crossover (BTST/STBT)Trend Alignment: Filters trades by requiring the 50, 100, and 200 EMAs to be in strict order, ensuring entries only align with the broader market direction.
Precision Entry: Triggers long or short positions as soon as the fast 20 EMA crosses the 50 EMA during designated trading hours.
Automated Risk Management: Protects capital by applying built-in Stop Loss and Take Profit percentages directly off your execution price.
Overnight Protection: Features a mandatory 3:15 PM IST square-off rule that closes all open positions to eliminate gap-down exposure.
Backtest Ready: Programmed in Pine Script v6 to allow instant performance testing, win-rate analysis, and automated broker alert integration
Indicator
ICT FVG + VI + SBThis indicator maps four related price inefficiencies from ICT (Inner Circle Trader) methodology on one chart, across as many timeframes as you like at once: Fair Value Gaps, Volume Imbalances, Full Gaps, and Suspension Blocks. Each is drawn as a time-anchored zone, colour-coded by type and shaded by timeframe, and each is tracked through its whole life — open, partially consumed, and fully filled.
The Four Inefficiencies (how each is defined)
Fair Value Gap (FVG) — a three-candle, wick-based gap: the third candle's low is above the first candle's high (bullish), or its high is below the first candle's low (bearish). The gap is the untraded space between those wicks. Drawn in orange.
Volume Imbalance (VI) — a two-candle gap between the candle bodies (measured body-edge to body-edge) where the wicks still overlap, so it is not a full gap. Drawn in blue. Measuring body-to-body keeps the zone correct regardless of each candle's colour.
Full Gap — a two-candle gap with no overlap at all, not even the wicks. Drawn in red.
Suspension Block (SB) — a Fair Value Gap that has a Volume Imbalance on BOTH of its junctions. This "block" of stacked inefficiency is optionally separated out and highlighted in purple, and labelled SB.
Why these belong together
FVGs, Volume Imbalances and Full Gaps are the same idea at different degrees — untraded/inefficient price left behind by a move — and in practice they overlap and stack at the exact same swings. Showing them in one tool, sharing one detection pass and one fill model, lets you see how an FVG's edges are (or are not) reinforced by imbalances (the Suspension Block case), and lets you judge which zones are "clean" versus already partly consumed. Splitting them across three separate scripts would hide those relationships and triple the drawing overhead.
Multi-timeframe
Turn on any combination of Monthly, Weekly, Daily, 4h, 2h, 1h, 90m, 30m, 15m, 5m, 3m, 2m and 1m. All enabled timeframes are detected and plotted together, and the shorter the timeframe the darker its shade, so you can tell at a glance whether a zone is a higher- or lower-timeframe inefficiency. "Always show current timeframe" keeps the chart's own timeframe on even if its box is unchecked. Timeframes below the chart's resolution can't be computed and are skipped.
The lifecycle of a zone
Open — an unfilled zone is shown in its element colour and extended to the right.
Partially filled — as price trades into a zone, the consumed part is shaded grey while the untouched part keeps its colour (a bullish zone is eaten from its top down to the lowest low reached; a bearish zone from its bottom up to the highest high). Optional.
Filled (mitigated) — once price fully trades back through a zone it is treated as mitigated: it is either removed, or kept in light grey (right edge frozen at the fill) as a record. Grey therefore always means "filled".
Levels
An optional midline (50%, consequent encroachment) can be drawn inside every zone, plus 25/75% quarter lines and 12.5/37.5/62.5/87.5% eighth lines inside the Daily/Weekly/Monthly zones.
How To Use It
Add it to any chart. By default it shows only the current timeframe's inefficiencies; enable higher timeframes to build a top-down map.
Treat unfilled zones as reference areas where price may react. The 50% midline and the quarter/eighth levels give internal reference points.
Use the partial-fill shading to see how far a zone has already been consumed, and the grey "filled" zones as a history of where inefficiencies were rebalanced.
Watch for Suspension Blocks (purple/SB) — an FVG braced by volume imbalances on both sides — as higher-interest zones.
"Min Size — All Gaps" filters out tiny noise; raise it on fast, low-timeframe charts.
Settings Overview
Elements: Fair Value Gaps (with "Include related Volume Imbalances" to merge edge VIs into the FVG box, and "Highlight Suspension Blocks"), Pure Volume Imbalances, Full Gaps.
Timeframes: individual toggles grouped into HTF / Hours / Minutes, plus "Always show current timeframe".
Colors: one base colour per element (FVG, Suspension Block, VI, Full Gap), a per-timeframe darkening step, and optional borders.
Display: extend distance, gap labels and their side, max open gaps per timeframe, remove-on-fill, show/partially-fill filled gaps in grey, max filled gaps, and per-element minimum sizes.
Level Lines: midline, quarters and eighths (the latter on Daily/Weekly/Monthly zones).
Technical Notes / Repainting
Higher-timeframe zones are detected with request.security on CONFIRMED, already-closed candles, so plotted zones do not repaint historically. The current, still-forming bar updates live: a zone can fill (turn grey or be removed), the partial-fill shading grows, and the newest zone on a timeframe only appears once its forming candle has closed. To stay within PulseWire's drawing-object limits the tool keeps a rolling window — the most recent open zones, and the most recent filled (grey) zones, per element and per timeframe — so the oldest zones are dropped as new ones form rather than every zone in history being retained. This is an original implementation; it does not reuse external open-source code. After a code update, remove and re-add the indicator so it re-binds to the price scale.
Indicator
Indicator
Indicator
ICT FVG DetectorThis indicator identifies ICT Fair Value Gaps (FVGs) on any timeframe and overlays them as clean, interactive zones directly on your chart. It covers both standard imbalances and higher-timeframe (HTF) imbalances transposed onto lower timeframes — a core concept in ICT-based trading.
What it detects
BISI (Buy-side Imbalance, Sell-side Inefficiency) — bullish FVGs where a gap exists between the high of bar and the low of bar
SIBI (Sell-side Imbalance, Buy-side Inefficiency) — bearish FVGs where a gap exists between the low of bar and the high of bar
Displacement FVGs — tagged when the middle candle of the 3-bar pattern (the actual displacement candle) trades through the most recent confirmed swing high or low, signalling a genuine structure break
HTF Alignment
FVGs from the next-higher relevant timeframe are automatically transposed onto the current chart as gray-shaded zones, making it easy to identify where higher-timeframe imbalances sit without switching charts.
Valid pairs:
Chart timeframe HTF source
1m 15m
5m 1H
15m 4H
1H Daily
4H Weekly
Daily Monthly
HTF zones are visually distinct (gray fill) so they never compete with native FVGs. On unsupported timeframes, HTF zones are simply not drawn.
Features
Four draw styles: Lines + Fill, Lines Only, Fill Only, Boxes
Solid, dashed, or dotted boundary lines
Extend zones to current bar or a fixed number of bars
Mitigation tracking — zones dim or delete once price trades back through them (configurable separately for native and HTF FVGs)
Invisible hover labels positioned at the vertical midpoint of each zone — hover to instantly identify the gap type without cluttering the chart
Alerts for new BISI, SIBI, Displacement BISI, and Displacement SIBI
Settings
All inputs are grouped into five sections: FVG Detection, Swing / Displacement, Display, Mitigation, and HTF Alignment — making it straightforward to tune each layer independently.
Indicator
BTST Breakout & Momentum Screener (3:15-3:25 PM Only)A BTST (Buy Today, Sell Tomorrow) Indicator is a technical analysis tool designed for short-term traders to identify stocks or assets exhibiting strong momentum, volume expansion, and favorable closing structure near the end of the trading session. Its primary purpose is to signal trade entries during the final minutes of the market day to capture overnight price gapping or early morning momentum on the following trading day.
Indicator
magnet level 5 by kotiThe Contrarian with 5 Levels is a market structure and price action indicator that identifies trend continuation and reversal opportunities using:
BOS (Break of Structure) – Confirms continuation of the current trend when price breaks a significant swing high or low.
MSS (Market Structure Shift) – Detects a potential reversal when the market changes its structure.
5 Dynamic Levels – Plots five important support and resistance zones based on recent price action.
Trend Filter (SMA) – Uses a moving average to filter trades in the direction of the prevailing trend.
Buy/Sell Signals – Optional signals generated from the combination of market structure and the trend filter.
Purpose
Identify the market trend.
Spot potential reversals before they develop.
Highlight high-probability support and resistance levels.
Help traders avoid trading against the dominant trend.
Best Use
Intraday trading
Scalping
Swing trading
Works best when combined with:
CPR
Camarilla Pivots
VWAP
Volume confirmation
Higher-timeframe market structure
Strengths
Primarily based on price action and market structure.
Reduces reliance on oscillators like RSI or MACD.
Helps visualize trend continuation (BOS) and possible reversals (MSS).
Limitation
No indicator predicts the market perfectly. Like any market-structure tool, it can produce false signals in choppy or range-bound conditions. Combining it with confirmation tools such as CPR, Camarilla, or volume generally improves trade selection.
Indicator
Session Auction Profile - Spectre TradesThe Spectre Trades Session Auction Profile is a customizable intraday volume-profile and auction-market analysis indicator designed to help traders evaluate where volume is developing during a selected trading session.
The indicator estimates volume-at-price using chart-bar OHLCV data and displays a developing session profile with the Point of Control, Value Area High, Value Area Low, and Value Area Midpoint. The profile can be positioned on either side of the session and configured to expand left or right. The default layout places the profile to the left of the session with the histogram facing right, helping preserve visibility around current price action.
Main features
Developing session volume profile
Adjustable number of profile rows
Customizable value-area percentage
Point of Control, VAH, VAL, and Value Area Midpoint
Adjustable profile width, placement, offset, and direction
Left-side profile placement with right-facing volume rows
Optional standard or migration-based profile coloring
POC-slope, Value MID-slope, and price-versus-value migration modes
Developing POC trail
Previous-session POC, VAH, VAL, and midpoint
Untested and tested naked POCs
Current Session High and Current Session Low
Initial Balance High, Low, and Midpoint
Developing or completed-only Initial Balance display
Adjustable line styles, widths, colors, labels, label sizes, and offsets
Auction-status dashboard
Alerts for profile levels, session extremes, Initial Balance levels, naked POCs, and migration changes
Profile migration module
The profile-box migration module provides a visual representation of directional value development. Traders can color the profile according to:
POC Slope: identifies whether the developing Point of Control is moving higher, lower, or remaining neutral.
Value MID Slope: evaluates directional movement in the center of the developing value area.
Price vs. Value MID: compares current price with the developing Value Area Midpoint.
Standard Colors: displays traditional value-area, non-value-area, and POC colors without directional migration coloring.
Migration signals are intended to help traders recognize whether value is being accepted at higher prices, accepted at lower prices, or remaining balanced.
Initial Balance module
The Initial Balance module calculates the high, low, and midpoint of the first user-defined number of minutes after the selected session opens. The levels can update while the Initial Balance is developing and then lock once the period is complete.
Traders can choose to display the Initial Balance while it is developing or show only the completed levels.
Intended use
This indicator is designed for futures, index, forex, cryptocurrency, and other intraday markets where session structure and volume development are relevant.
It may help traders evaluate:
Developing value and market acceptance
Balance versus price discovery
POC and value-area migration
Reactions at VAH, VAL, MID, and POC
Initial Balance breakouts and rejections
Current-session range expansion
Untested historical Points of Control
Potential areas of support, resistance, continuation, and mean reversion
The indicator is best used as a contextual and confluence tool alongside price action, market structure, liquidity, order flow, and disciplined risk management.
Important calculation note
This script estimates volume-at-price by distributing each chart candle’s reported volume across the price rows touched by that candle. It does not use exchange-level bid-and-ask footprint data and may differ from PulseWire’s built-in Volume Profile or profiles calculated from lower-timeframe data.
Results may vary based on the selected chart timeframe, symbol, session, data feed, number of rows, and value-area settings.
Disclaimer
This indicator is provided for educational and informational purposes only. It does not constitute financial advice, investment advice, or a recommendation to buy or sell any financial instrument.
No indicator can predict future market movement or guarantee profitable results. Historical levels, volume distributions, migration signals, alerts, and auction classifications may fail or produce false signals. Traders are responsible for independently evaluating all trading decisions and managing their own risk.
Trading futures, options, forex, cryptocurrency, and leveraged financial products involves substantial risk and may not be suitable for every trader. Past performance does not guarantee future results.
Indicator
Nifty Gann & Strike Levels > VDTCore FeaturesDynamic Gann Levels: The indicator calculates Gann square levels based on the current price. It takes the square root of the price ($\sqrt{\text{Price}}$) and increments it by $0.125$, which mathematically corresponds to the $45^\circ$ angle steps found in traditional Gann square charts (matching the PDF reference). It then plots a user-defined number of these levels above and below the current price, acting as hidden mathematical support and resistance zones.100-Interval Levels (Strike Prices): It automatically identifies the nearest multiple of 100 relative to the current price and draws horizontal lines at these intervals. For index options trading, these 100-point intervals represent major round-number psychological levels and standard options strike prices, where heavy open interest and institutional positioning typically occur.Previous Day High & Low: The script tracks the highest and lowest price points of the preceding trading session. These are widely considered two of the most critical reference points for intraday trading, often acting as strong pivot points, breakout triggers, or reversal zones for the current day.
Indicator
Support & Resistance (MTF) Dacia Style & AlertsSupport & Resistance (MTF) Dacia Style & Alerts
Support & Resistance (MTF) Dacia Style & Alerts
Indicator
MSSTD ZigZag Pure Analyzer V5.1.1The MSSTD ZigZag Pure Analyzer V5.1.1 is an advanced technical analysis tool designed for trading platforms (MetaTrader 4 / MT5). Built upon the foundation of the traditional ZigZag algorithm, it integrates multi-layer noise filtering and deep wave measurement tools.
Version 5.1.1 focuses on signal purity, filtering out minor price fluctuations (noise) to highlight the core market structure. This assists traders in precisely identifying pivot points (Swing Highs / Swing Lows), chart patterns,
Indicator
Reversal Time ZonesWhat it does
For each of the 9 times, it draws a vertical band spanning the full day's price range, centered on the time, ±12 min wide (so 24-min windows). Each band carries a "⚠️ Possible Reversal Zone 07:00" label at the top. Zones render during your full 06:00–16:00 ET window and repeat every day.
Color —
I went with cyan (#00E5FF) — a bright teal that's visually distinct from the amber/red/lime/gray/white of your existing indicators. It's an input, so you can swap it anytime.
The "current/next" highlight (your level-to-level favorite) 🎯
This is the part you'll love most:
Active zone (we're inside it right now) → brightest cyan, 3px border
Next zone (the one coming up) → medium cyan, 2px border
All other zones → muted cyan, 1px border
So at a glance you know "we're IN the 10:00 reversal window now" and "the 10:30 one is next." Perfect for waiting at a level until a reversal time aligns.
Indicator
QQQ Gamma Pro A+ SystemQQQ Gamma Pro A+ System is a high‑precision market‑timing indicator designed for traders who want clean, rules‑based signals on QQQ using institutional‑style data. It combines trend structure, volatility confirmation, and a proprietary gamma‑based market bias to identify only the highest‑quality A+ setups.
The system begins with a Trend Engine built on EMA alignment and VWAP positioning. This ensures signals only appear when the market is trending cleanly — either strongly bullish or strongly bearish. Momentum filters such as RSI and ATR expansion add an additional layer of confirmation, helping traders avoid low‑probability conditions.
A unique Gamma Proxy Engine analyzes SPY, QQQ, and IWM to determine underlying market pressure. When gamma is negative, the system becomes more selective, filtering out weak setups and highlighting only the most favorable opportunities. Gamma bias is displayed visually through chart background coloring and a mobile‑friendly dashboard.
The indicator plots A+ BUY and A+ SELL signals directly on the chart when trend, gamma, and momentum align. These signals are designed for intraday and swing traders who want structured, disciplined entries without noise.
To support opening‑range strategies, the system automatically tracks the Opening Range High and Low, giving traders a real‑time structure reference for breakouts, reversals, and liquidity sweeps.
A built‑in Mobile Dashboard displays gamma values, directional bias, and real‑time market regime information, making the indicator easy to monitor from any device. Alerts are included for both BUY and SELL signals.
🔥 Key Features
EMA + VWAP trend engine
RSI and ATR momentum filters
Gamma‑based market bias using SPY, QQQ, and IWM
A+ long and short signal detection
Opening Range High/Low tracking
Mobile‑optimized dashboard
Market regime background coloring
Built‑in BUY/SELL alerts
Indicator
Dacia Normal Heikin Ashi + Multi EMA Suite V1.0Dacia Normal Heikin Ashi + Multi EMA Suite V1.0
Dacia Normal Heikin Ashi + Multi EMA Suite V1.0
Indicator























