Daily Separator & Killzone marker (L3J)The “Daily Separator (L3J)” is a tool built for day traders who want a clean intraday structure around key U.S. market times and a professional trading-day model. It visually segments trading days, marks critical intraday timestamps (pre-market, cash open, killzone), and aligns with routines inspired by ICT concepts.
Important note: internal code comments and notes are written in French.
What the script does
Draws clear, configurable vertical lines to separate each trading day.
Supports two trading-day models:
- CME 18:00–17:00 (anchored on the Asian session, common for indices/futures)
- Calendar 00:00–23:59 (midnight-to-midnight)
Plots four key intraday rays in UTC‑4:
- 08:30 — U.S. pre-market open
- 09:30 — U.S. cash market open
- 09:50 — killzone start (per my routine)
- 10:30 — killzone end (per my routine)
Smart display logic: each day’s marker stays visible until the time is reached, then auto-hides to keep charts clean.
Object-budget control: caps the number of historical separators to preserve performance.
Day trading strengths (ICT-friendly)
Robust CME anchoring: day switches at the Asian session start in UTC‑4, which better reflects U.S. liquidity flow than calendar midnight.
Focused killzone: highlights 09:50–10:30 for impulse setups, rebalancing, and liquidity events around the open.
Clean readability: fully customizable colors, styles, and widths; markers auto-remove after their window.
Inputs (end‑user labels in French)
- Timezone: choose the time zone (default UTC‑4) for session alignment.
- Day separator:
- Day type: “CME 18:00–17:00” or “Calendrier 00:00–23:59”
- Color, style (solid, dashed, dotted), width
- Max number of visible separators (performance control)
Session (CME): Asian session window used as the anchor (default 18:00–16:00 UTC‑4)
ndependent intraday markers:
- Pre‑Market Open 08:30
- Market Open 09:30
- Killzone Open 09:50
- Killzone Close 10:30
- Each with show/hide, color, style, and width settings
Best practices
U.S. indices ( CME_MINI:ES1! , CME_MINI:NQ1! ) and U.S. equities: favor the “CME 18:00–17:00” mode for a more liquidity‑centric read.
ICT day trading: form directional bias around 09:30, execute between 09:50–10:30 as initial volatility structures.
Multi‑timeframe use: keep it on execution charts (1–5 min) and context charts (15–60 min) for time alignment.
Technical notes
Created by L3J.
Pine Script v6, overlay=true, controlled object budget.
Deterministic time calculations via Pine built‑ins.
All times are expressed in UTC‑4 to align with U.S. practice; adjust the timezone input as needed.
- Internal code comments/notes are written in French.
If this script helps you structure your sessions better, consider leaving a like and sharing it with other intraday traders.
Happy trading, everyone!
Penunjuk dan strategi
ZV-Resources by ZuperView.comLibrary "zuperview"
ComputeMAValue(maType, series, period)
ComputeMAValue
@description Computes the moving average (MA) value based on the specified MA type.
Parameters:
maType (string) : (string) The type of moving average: "EMA", "SMA", "RMA", "WMA", "HMA", "VWMA", "LinReg".
series (float) : (float) The input price series (typically close).
period (simple int) : (int) The number of periods used for MA calculation.
Returns: (float) The computed MA value or `na` if maType is invalid.
ComputeATRValue(period)
ComputeATRValue
@description Computes the moving average (ATR) value based on the specified ATR type.
Parameters:
period (int) : (int) The number of periods used for MA calculation.
Returns: (float) The computed ATR value or `na` if maType is invalid.
Max(src, period)
Parameters:
src (float)
period (int)
Min(src, period)
Parameters:
src (float)
period (int)
ComputeRSIValue(src, period, smooth)
ComputeRSIValue
@description Computes the moving average (RSI) value based on the specified RSI type.
Parameters:
src (float) : (series) Input series (series float), which can be close (`close`), open (`open`), high (`high`), low (`low`), or any other price-based series.
period (int) : (int) The number of periods used for MA calculation.
smooth (int)
Returns: (float) The computed RSI value or `na` if maType is invalid.
ComputeSMMAValue(src, period)
ComputeSMMAValue
@description Computes the moving average (SMMA) value based on the specified SMMA type.
Parameters:
src (float) : (series) Input series (series float), which can be close (`close`), open (`open`), high (`high`), low (`low`), or any other price-based series.
period (int) : (int) The number of periods used for MA calculation.
Returns: (float) The computed SMMA value or `na` if maType is invalid.
ComputeStochasticValue(src, periodD, periodK, smoothingMethod, smoothingPeriod)
ComputeStochasticValue
@description Computes the moving average (SMMA) value based on the specified SMMA type.
Parameters:
src (float) : (series) Input series (series float), which can be close (`close`), open (`open`), high (`high`), low (`low`), or any other price-based series.
periodD (simple int) : (int) The number of periods used for MA calculation.
periodK (int) : (int) The number of periods used for MA calculation.
smoothingMethod (string) : (string) The type of moving average: "EMA", "SMA", "RMA", "WMA", "HMA", "VWMA", "LinReg".
smoothingPeriod (simple int) : (int) The number of periods used for MA calculation.
Returns: (float) The computed Stochastic(K, D) value or `na` if maType is invalid.
BB Crosses OptimizedBB Crosses optimized is a trend-following indicator.
It can be used to define clear trends and optimized to get as little false signals as possible.
We have accomplished this by using different types of smoothing and different source types to make the indicator is accurate as possible.
NQ FVG + MSS ChecklistThe NQ FVG + MSS Quick Checklist is a simple yet powerful visual tool for traders focusing on the Nasdaq 100 (NQ) futures. It provides a step-by-step checklist to assess trade setups based on key market concepts like Fair Value Gaps (FVG), Market Structure Shifts (MSS), session highs/lows, and previous day levels.
This indicator helps you quickly see which elements of your trading plan are met before entering a trade. Each checklist item can be manually toggled, and a cumulative Trade Score provides a quick visual guide to setup strength.
Key Features:
Step-by-step checklist for NQ trading setups
Track levels: Session highs/lows & Previous Day High/Low
Spot 5M FVG and Retests
Identify MSS on 1M and find 1M FVG inside MSS
Manual SL & TP guidance
Trade Score for quick setup strength assessment
Fully visible table overlay on top of the chart
How to Use:
Mark session & previous day levels
Observe reaction at key levels (Sweep or Continue)
Identify 5M FVG and any retests
Spot 1M MSS and 1M FVG inside MSS
Set SL/TP based on FVG extremes and next session levels
Check the cumulative Trade Score for setup confirmation
Note: This indicator is manual input-based, letting traders tick off items as they analyze the chart, making it a lightweight trading checklist HUD that stays on top of all chart elements.
Volume Wave AnalyzerWave Buy vs Sell Volume (with Box) analyzes the buying and selling volume within a selected range of past candles. It sums volume from bullish bars (where close > open) as buy volume, bearish bars (close < open) as sell volume, and splits volume evenly for neutral (doji) bars. The indicator displays:
Buy Volume and Sell Volume totals over the chosen candle range
Delta (difference between buy and sell volumes)
Buy Percentage representing buying pressure strength
A visual box on the chart highlighting the selected candle range
This helps traders quickly assess market sentiment and volume dominance during recent price movements, supporting more informed trading decisions.
VRD Anchored VWAP Segments V2.0Distance from VWAP
Duration of segments above/below VWAP
Slope of VWAP movement
Historical averages vs current/previous segments
Auction S/D Zones (Pivot + Volume + ATR) - S9Trader
Short Summary
Plots high-probability Supply & Demand zones from confirmed pivots, validated by volume and an ATR-impulse filter. Highlights the first retest, supports optional invalidation, and includes touch alerts. Works on any symbol and timeframe.
Script Description
What it does
Detects swing highs/lows (confirmed pivots) and draws Supply (red) / Demand (green) zones.
Confirms potential institutional activity with Volume > SMA × multiplier.
Requires an impulse move at the pivot (range ≥ ATR × multiplier) to avoid weak swings.
Extends zones to the right, highlights the first touch, and can invalidate zones on clean breaks.
Provides alerts when price touches an active zone.
Principles (why it works)
Auction Market Theory: Markets rotate between balance and imbalance; sharp moves often mark “unfair” highs/lows that react on retest.
Supply/Demand Mapping: Swing highs tend to act as Supply on revisit; swing lows as Demand.
Volume Confirmation: Above-average pivot volume suggests non-retail participation.
ATR Impulse: Prioritizes pivots formed by meaningful range expansion, not noise.
How it works (logic)
Pivot detection: ta.pivothigh/low(leftBars, rightBars) confirms a swing after rightBars candles.
Zone construction: Supply = top at pivot high, bottom at max(open, close). Demand = bottom at pivot low, top at min(open, close). Optional minimum % height filter.
Filters: Volume > SMA(Volume, volLen) × volMult AND true range ≥ ATR × impATRmult.
Management: Keeps up to maxZones per side; highlights first retest; invalidates on decisive close through the far edge.
Alerts: Triggers when the current bar intersects any active zone.
Inputs (recommended starting points)
Pivot Left/Right Bars (5/5): Higher = stronger, fewer zones. Intraday: 3–6; Swing: 8–12.
Volume SMA Length (20) & High-Volume Multiplier (1.5–2.0): Higher = stricter.
ATR Length (14) & Impulse Multiplier (1.0–1.5): Higher = stricter.
Min Zone Height % (0.05–0.15%): Skip micro-zones.
Max Zones / Side (5–15): Reduce clutter & stay within object limits.
Invalidate on Break: Remove “proven wrong” zones.
Highlight First Touch: Emphasize the first interaction.
Extend Left: Optional historical context.
How to use (playbook)
Start with context: Identify the higher-timeframe trend/structure.
Prioritize first touch: Reactions are typically strongest on the first revisit.
Seek confluence: Favor zones aligned with trend or near HTF levels, VWAP/MA confluence, or round numbers.
Risk: Place stops just beyond the zone; size so a clean break is tolerable.
Targets: Mid-range, opposite side of the session’s rotation, or next HTF level; trail if momentum persists.
Alerts available
Supply Zone Touch
Demand Zone Touch
Notes & limitations
Pivots confirm only after rightBars candles; zones appear at the confirmed pivot (no instant hindsight).
Order flow/footprint is not available in Pine; bar volume is used as a proxy.
Drawing objects are limited by TradingView; keep maxZones modest on long histories.
Indicator only (not a strategy); backtesting requires a separate strategy script.
Changelog
v1.0.0 — Initial release: pivots + volume + ATR impulse, first-touch highlight, invalidation, alerts, zone caps.
Disclaimer
For educational purposes only. Not financial advice. Trading involves risk—do your own research and manage risk.
Intraday Level Touch Counter V2.010 customizable levels (5 positive, 5 negative)
Fixed levels OR dynamic ATR-based levels
Historical statistics with percentage probabilities
Real-time current day monitoring
Customizable table positions and sizes
Up to 500 days of historical analysis
Auction S/D Zones (Pivot + Volume + ATR) -S9TraderShort Summary
Plots high-probability Supply & Demand zones from confirmed pivots, validated by volume and an ATR-impulse filter. Highlights the first retest, supports optional invalidation, and includes touch alerts. Works on any symbol and timeframe.
Script Description
What it does
* Detects swing highs/lows (confirmed pivots) and draws Supply (red) / Demand (green) zones.
* Confirms potential institutional activity with Volume > SMA × multiplier.
* Requires an impulse move at the pivot (range ≥ ATR × multiplier) to avoid weak swings.
* Extends zones to the right, highlights the first touch, and can invalidate zones on clean breaks.
* Provides alerts when price touches an active zone.
Principles (why it works)
* Auction Market Theory: Markets rotate between balance and imbalance; sharp moves often mark “unfair” highs/lows that react on retest.
* Supply/Demand Mapping: Swing highs tend to act as Supply on revisit; swing lows as Demand.
* Volume Confirmation: Above-average pivot volume suggests non-retail participation.
* ATR Impulse: Prioritizes pivots formed by meaningful range expansion, not noise.
How it works (logic)
* Pivot detection: `ta.pivothigh/low(leftBars, rightBars)` confirms a swing after rightBars candles.
* Zone construction: Supply = top at pivot high, bottom at max(open, close). Demand = bottom at pivot low, top at min(open, close). Optional minimum % height filter.
* Filters: `Volume > SMA(Volume, volLen) × volMult` AND `true range ≥ ATR × impATRmult`.
* Management: Keeps up to maxZones per side; highlights first retest; invalidates on decisive close through the far edge.
* Alerts: Triggers when the current bar intersects any active zone.
Inputs (recommended starting points)
* Pivot Left/Right Bars (5/5): Higher = stronger, fewer zones. Intraday: 3–6; Swing: 8–12.
* Volume SMA Length (20) & High-Volume Multiplier (1.5–2.0): Higher = stricter.
* ATR Length (14) & Impulse Multiplier (1.0–1.5): Higher = stricter.
* Min Zone Height % (0.05–0.15%): Skip micro-zones.
* Max Zones / Side (5–15): Reduce clutter & stay within object limits.
* Invalidate on Break: Remove “proven wrong” zones.
* Highlight First Touch: Emphasize the first interaction.
* Extend Left: Optional historical context.
How to use (playbook)
* Start with context: Identify the higher-timeframe trend/structure.
* Prioritize first touch: Reactions are typically strongest on the first revisit.
* Seek confluence: Favor zones aligned with trend or near HTF levels, VWAP/MA confluence, or round numbers.
* Risk: Place stops just beyond the zone; size so a clean break is tolerable.
* Targets: Mid-range, opposite side of the session’s rotation, or next HTF level; trail if momentum persists.
Alerts available
* Supply Zone Touch
* Demand Zone Touch
Notes & limitations
* Pivots confirm only after rightBars candles; zones appear at the confirmed pivot (no instant hindsight).
* Order flow/footprint is not available in Pine; bar volume is used as a proxy.
* Drawing objects are limited by TradingView; keep maxZones modest on long histories.
* Indicator only (not a strategy); backtesting requires a separate strategy script.
Changelog
* v1.0.0 — Initial release: pivots + volume + ATR impulse, first-touch highlight, invalidation, alerts, zone caps.
Disclaimer
For educational purposes only. Not financial advice. Trading involves risk—do your own research and manage risk.
BarLibrary "Bar"
A comprehensive library for creating and managing custom multi-timeframe (MTF) candlestick bars without using request.security calls, providing enhanced visualization and analytical capabilities with improved performance
Candle()
Creates a new candle object initialized with current bar's OHLC data
Returns: A new _Candle instance with current market data
method body(this)
Calculates the absolute size of the candle body (distance between open and close)
Namespace types: _Candle
Parameters:
this (_Candle)
Returns: The absolute difference between closing and opening prices
method topWick(this)
Calculates the length of the upper wick (shadow above the candle body)
Namespace types: _Candle
Parameters:
this (_Candle)
Returns: The distance from the higher of open/close to the high price
method bottomWick(this)
Calculates the length of the lower wick (shadow below the candle body)
Namespace types: _Candle
Parameters:
this (_Candle)
Returns: The distance from the low price to the lower of open/close
method display(this, bullishColor, bearishColor, transp, borderWidth, lineWidth)
Renders the candle visually on the chart with customizable colors and styling options
Namespace types: _Candle
Parameters:
this (_Candle)
bullishColor (color)
bearishColor (color)
transp (int)
borderWidth (int)
lineWidth (int)
candles(tf, autoDisplay)
Creates and manages an array of custom timeframe candles with optional automatic display
Parameters:
tf (string) : Target timeframe string (e.g., "60", "240", "D") for candle aggregation
autoDisplay (bool)
Returns: Array containing all completed candles for the specified timeframe
_Candle
Custom candlestick data structure that stores OHLCV data with visual rendering components
Fields:
start (series int) : Opening timestamp of the candle period
end (series int) : Closing timestamp of the candle period
o (series float) : Opening price of the candle
h (series float) : Highest price reached during the candle period
l (series float) : Lowest price reached during the candle period
c (series float) : Closing price of the candle
v (series float) : Volume traded during the candle period
bodyBox (series box)
wickLine (series line)
Example Usage
// Change version with latest version
import EmreKb/Bar/1 as bar
// "240" for 4h timeframe
// true for auto display candles on chart (default: false)
candlesArr = bar.candles("240", true)
Daily Open & ATR Levels + Monthly/Weekly VWAP V2.0ore Functions:
Customisable ATR Levels
4 adjustable ATR percentage levels (default: 25%, 50%, 75%, 100%)
Creates 8 dynamic support/resistance lines around daily open price
Fully customisable from 0% to 200% in 5% increments
Anchored VWAP
Monthly VWAP: Resets at the beginning of each month
Weekly VWAP: Resets every Monday (after Friday close)
Toggle on/off for each VWAP independently
Smart Fill Zones
Weekly Fill: Highlights when Weekly VWAP is within Level 1 ATR range
Monthly Fill: Highlights when Monthly VWAP is within Level 2 ATR range
Customisable colors and transparency for each fill zone
Key Features:
Daily open price reference line (blue)
Step-line style for clean visualisation
Individual color controls for all levels
Works on any timeframe (uses daily ATR data)
Perfect for intraday and swing trading strategies
Use Cases:
Identify key support/resistance zones based on volatility
Spot VWAP convergence with ATR levels for potential reversals
Set profit targets and stop losses using ATR multiples
Analyze price action relative to daily open and volume-weighted averages
This indicator combines volatility-based levels with volume-weighted price analysis for comprehensive market structure visualisation.
Min/Max del PeriodoThe indicator is useful for finding the highs and lows of a given period of time, indicating the level with lines that follow the price and with the possibility of setting the level both on the closes/opens, and on the highs/lows of the candles of the indicated period.
5 min SMC Scalping [AlexSvet]Scalping for 5 minute chart.
SMC based signals.
Light and clear indicator.
Easy Trend by ZuperviewEasy Trend, a trend indicator, gives you many key features as below:
Allow defining moving average with (11 popular moving averages)
Allow smoothing moving average
Allow applying a plot change filter, either before or after smoothing
Paint plot to clearly show uptrend vs downtrend
Paint chart background to clearly show uptrend vs downtrend
Trigger alerts on trend shift
Print markers on trend shift
Be NinjaScript ready for advanced usage, only restricted by your imagination
Expose dedicated NinjaScript signals
⛓️ Scalping (5-15) Fusion Signals — soft SELL/BUY [AlexSvet]Signals for scalping 5-15 minutes — soft SELL/BUY.
settings there is a checkbox ✅ "Consider volume filter in signal?".
If enabled → signals only when volume is confirmed.
If disabled → BUY/SELL arrows appear more often (volume is only displayed in the table).
Alerts work for both options.
EMA+MACD+RSI+StochJust like SMA but EMA!
this EMA base indicator helps you to find the trend.
use pivot point standard for make better decesion on Long and Short
MagnetOsc Turbo by ZuperviewMagnetOsc Turbo - Multi-timeframe momentum analysis
Unlike conventional oscillators, MagnetOsc Turbo analyzes momentum on two independent timeframes simultaneously (e.g., 100-tick & 5-minute).
Why it matters: Momentum alignment across timeframes is a key signal of trend strength or turning points.
MO and Stoch GOLD H4 V1 – Kim TradingMO and Stoch GOLD H4 V1 – Kim Trading
Slogan: “Trading Is a Profession, Trading Is Life”
Market: XAUUSD (spot gold) • Timeframe: H4 (4 hours)
Entry/Exit Rules
When a B, B1★ … (buy) or S, S1★ … (sell) signal appears, first reference the prevailing trend and consider applying DCA in the direction of that trend. In addition, combine with other methods to build the most optimal setup.
Signal Confidence Tiers
B — S
B1★ — S1★
B2★ — S2★
B3★ — S3★
Enter trades only when one of the four signal types above is printed.
Author: Kim Trading • Version: V1 • Date: 2025-08-22
#XAUUSD #Gold #H4 #MO #Stoch #KimTrading
MO and Stoch GOLD H4 – Kim Trading MO and Stoch GOLD H4 V1 – Kim Trading
Slogan: “Trading Is a Profession, Trading Is Life”
Market: XAUUSD (spot gold) • Timeframe: H4 (4 hours)
Entry/Exit Rules
When a B, B1★ … (buy) or S, S1★ … (sell) signal appears, first reference the prevailing trend and consider applying DCA in the direction of that trend. In addition, combine with other methods to build the most optimal setup.
Signal Confidence Tiers
B — S
B1★ — S1★
B2★ — S2★
B3★ — S3★
Enter trades only when one of the four signal types above is printed.
Author: Kim Trading • Version: V1 • Date: 2025-08-22
#XAUUSD #Gold #H4 #MO #Stoch #KimTrading
zuperviewResourcesLibrary "zuperview"
ComputeMAValue(maType, series, period)
ComputeMAValue
@description Computes the moving average (MA) value based on the specified MA type.
Parameters:
maType (string) : (string) The type of moving average: "EMA", "SMA", "RMA", "WMA", "HMA", "VWMA", "LinReg".
series (float) : (float) The input price series (typically close).
period (simple int) : (int) The number of periods used for MA calculation.
Returns: (float) The computed MA value or `na` if maType is invalid.
ComputeATRValue(period)
ComputeATRValue
@description Computes the moving average (ATR) value based on the specified ATR type.
Parameters:
period (int) : (int) The number of periods used for MA calculation.
Returns: (float) The computed ATR value or `na` if maType is invalid.
Max(src, period)
Parameters:
src (float)
period (int)
Min(src, period)
Parameters:
src (float)
period (int)
ComputeRSIValue(src, period, smooth)
ComputeRSIValue
@description Computes the moving average (RSI) value based on the specified RSI type.
Parameters:
src (float) : (series) Input series (series float), which can be close (`close`), open (`open`), high (`high`), low (`low`), or any other price-based series.
period (int) : (int) The number of periods used for MA calculation.
smooth (int)
Returns: (float) The computed RSI value or `na` if maType is invalid.
ComputeSMMAValue(src, period)
ComputeSMMAValue
@description Computes the moving average (SMMA) value based on the specified SMMA type.
Parameters:
src (float) : (series) Input series (series float), which can be close (`close`), open (`open`), high (`high`), low (`low`), or any other price-based series.
period (int) : (int) The number of periods used for MA calculation.
Returns: (float) The computed SMMA value or `na` if maType is invalid.
ComputeStochasticValue(src, periodD, periodK, smoothingMethod, smoothingPeriod)
ComputeStochasticValue
@description Computes the moving average (SMMA) value based on the specified SMMA type.
Parameters:
src (float) : (series) Input series (series float), which can be close (`close`), open (`open`), high (`high`), low (`low`), or any other price-based series.
periodD (simple int) : (int) The number of periods used for MA calculation.
periodK (int) : (int) The number of periods used for MA calculation.
smoothingMethod (string) : (string) The type of moving average: "EMA", "SMA", "RMA", "WMA", "HMA", "VWMA", "LinReg".
smoothingPeriod (simple int) : (int) The number of periods used for MA calculation.
Returns: (float) The computed Stochastic(K, D) value or `na` if maType is invalid.
FindSwingsByNeighborhood(arraySwingTop, arraySwingBottom, neighborhood)
Find Swings By Neighborhood
@description Computes the moving average (SMMA) value based on the specified SMMA type.
Parameters:
arraySwingTop (array) : (array): An array to store detected swing highs.
arraySwingBottom (array) : (array): An array to store detected swing lows.
neighborhood (int) : (int): The number of bars to consider when identifying a swing point.
Returns: none
FindSwingsByOffset(arraySwingTop, arraySwingBottom, minSwingLength)
Find Swings By Offset
@description Identifies swing points based on a minimum swing length criteria.
Parameters:
arraySwingTop (array) : (array): An array to store detected swing highs.
arraySwingBottom (array) : (array): An array to store detected swing lows.
minSwingLength (float) : (float): The minimum price movement required to qualify as a swing point.
Returns: none
SwingPoint
Fields:
Key (series int)
IsTop (series bool)
Price (series float)
BarStart (series int)
BarEnd (series int)
TimeStart (series int)
TimeEnd (series int)
Sign (series int)
Label (series label)
BYNEX - Binary Options Indicator!The BYNEX – Binary Options Indicator is built for traders who demand clarity, speed, and transparency.
This tool delivers early alerts and actionable insights designed to help you make precise, informed decisions in high-volatility environments.
🔹 No Repaint — Signals are fixed at candle close.
🔹 Transparency First — Every generated signal is logged for full accountability.
🔹 Designed for Speed — Built specifically for binary options where every second matters.
🔹 Part of the BYNEX Movement — We stand against hidden affiliations, broker kickbacks, and misleading promises. Our goal is to give traders the tools, data, and transparency they deserve.
We're not here to sell dreams — we're here to arm traders with an edge.
Join the movement. Trade smarter.
📌 How to use — Read First
🔹 Signals are triggered after candle close.
🔹 In binary options, every second matters — always wait for next-candle confirmation for safer 🔹 entries.
🔹 Take SHORT → only IF next candle GREEN.
🔹 Take LONG → only IF next candle RED.
📎 Learn More & Connect
Instagram: @bynexbinary
Market Internal Strength (DJI/Nasdaq/S&P)Market Health Dow, Nasdaq & S\&P 500 Breadth
Track the true internal health of the US market's three most important indices the Dow Jones Industrial Average (DJI), the Nasdaq 100 (NDX), and the S\&P 500 (SPX).
Price action alone can be deceiving. A rising index might be driven by only a handful of mega-cap stocks, masking underlying weakness. This indicator provides a crucial look "under the hood" to measure the market's true breadth.
It visualizes the percentage of stocks within each index that are trading above their key moving averages (5, 20, 50, 100, 150, and 200-day). This allows you to instantly gauge whether a market trend is broadly supported by the majority of its constituent stocks.
Key Features
* Covers 3 Major US Indices Seamlessly switch your analysis between the Dow Jones, Nasdaq 100, and S\&P 500.
* Complete Breadth Picture Six MA periods offer a full view, from short-term momentum (5D, 20D) to the long-term institutional trend (150D, 200D).
* Fully Customizable Toggle the visibility of any line and adjust overbought/oversold levels to fit your personal strategy.
How to Use
1. Extreme Readings (Overbought/Oversold)
* Above 80% Signals a very strong, potentially overbought market. Caution is advised as a pullback could be near.
* Below 20% Signals a deeply oversold market, often indicating capitulation and potential buying opportunities.
2. Divergence (Powerful Warning Signal)
* Bearish The index price makes a new high, but this indicator makes a lower high. This warns that the rally is not broad-based and may be losing steam.
* Bullish The index price makes a new low, but this indicator makes a higher low. This suggests internal strength is building and a bottom may be forming.
3. Trend Confirmation
When the long-term lines (150D, 200D) remain high (e.g., \> 50%), the primary market trend is healthy and confirmed.
Elite indicatorElite Indicator – AI-Driven Signals for Profitable Trading in Stocks, Forex, and Crypto !
Unlock your trading potential with the Elite Indicator, your ultimate AI-powered trading companion for stocks, forex, and crypto markets. Designed to simplify your trading journey, this indicator delivers precise BUY/SELL signals directly on your chart, empowering you to trade with confidence across multiple timeframes, from 1-minute scalping to 1-day trading strategies.
Leverage the power of AI to identify high-probability trading opportunities, backed by rigorous backtesting and a proven high win-rate.
Join the ranks of traders who have transformed their strategies with Elite Indicator – where advanced technology meets user-friendly design. Elevate your trading game and stay ahead of the curve in today's fast-paced markets.
Transform Your Trading – Join the Elite! 🔥
Disclaimer: Trading involves inherent risks. Use this indicator as part of a broader risk management strategy and never invest more than you can afford to lose.