Volume % + OBV intensity + histogram (v6)1) Volume % (logic that already existed)
• Average volume at the last 20 days =
• Average level → 50%
• More than double the average → **100%**
• Mapping between 0 and 100%
2) OBV % (newly added)
• Look at the OBV change compared to the previous bar
• obvChange = obv - obv
• Compare the absolute value of this change (the magnitude of the force) to the average change in the last 20 bars
• Average level → 50%
• More than double the average → 100%
• Use the value from 0 to 100% as obvPercent
3) Long/Short Section Judgment (OBV basis)
• obvChange > 0 이고 obvPercent >= 60 →
👉 Good section to enter long (buying energy is strong) → Green number
• obvChange < 0 이고 obvPercent >= 60 →
👉 Short entry decent section (sell energy strong) → Red number
Candlestick analysis
AhaxTrader Risk (xausd - fundingpips ) V0AhaxTrader Risk (xausd - fundingpips ) V0 risk yönetimi fundingpips
Liquidity Sweep + BOS Retest System — Prop Firm Edition🟦 Liquidity Sweep + BOS Retest System — Prop Firm Edition
A High-Probability Smart Money Strategy Built for NQ, ES, and Funding Accounts
🚀 Overview
The Liquidity Sweep + BOS Retest System (Prop Firm Edition) is a precision-engineered SMC strategy built specifically for prop firm traders. It mirrors institutional liquidity behavior and combines it with strict account-safe entry rules to help traders pass and maintain funding accounts with consistency.
Unlike typical indicators, this system waits for three confirmations — liquidity sweep, displacement, and a clean retest — before executing any trade. Every component is optimized for low drawdown, high R:R, and prop-firm-approved risk management.
Whether you’re trading Apex, TakeProfitTrader, FFF, or OneUp Trader, this system gives you a powerful mechanical framework that keeps you within rules while identifying the market’s highest-probability reversal zones.
🔥 Key Features
1. Liquidity Sweep Detection (Stop Hunt Logic)
Automatically identifies when price clears a previous swing high/low with a sweep confirmation candle.
✔ Filters noise
✔ Eliminates early entries
✔ Locks onto true liquidity grabs
2. Automatic Break of Structure (BOS) Confirmation
Price must show true displacement by breaking structure opposite the sweep direction.
✔ Confirms momentum shift
✔ Removes fake reversals
✔ Ensures institutional intent
3. Precision Retest Entry Model
The strategy enters only when price retests the BOS level at premium/discount pricing.
✔ Zero chasing
✔ Extremely tight stop loss placement
✔ Prop-firm-friendly controlled risk
4. Built-In Risk & Trade Management
SL set at swept liquidity
TP set by user-defined R:R multiplier
Optional session filter (NY Open by default)
One trade at a time (no pyramiding)
Automatically resets logic after each trade
This prevents overtrading — the #1 cause of evaluation and account breaches.
5. Designed for Prop Firm Futures Trading
This script is optimized for:
Trailing/static drawdown accounts
Micro contract precision
Funding evaluations
Low-risk, high-probability setups
Structured, rule-based execution
It reduces randomness and emotional trading by automating the highest-quality SMC sequence.
🎯 The Trading Model Behind the System
Step 1 — Liquidity Sweep
Price must take out a recent high/low and close back inside structure.
This confirms stop-hunting behavior and marks the beginning of a potential reversal.
Step 2 — BOS (Break of Structure)
Price must break the opposite side swing with a displacement candle. This validates a directional shift.
Step 3 — Retest Entry
The system waits for price to retrace into the BOS level and signal continuation.
This creates optimal R:R entry with minimal drawdown.
📈 Best Markets
NQ (NASDAQ Futures) – Highly recommended
ES, YM, RTY
Gold (XAUUSD)
FX majors
Crypto (with high volatility)
Works best on 1m, 2m, 5m, or 15m depending on your trading style.
🧠 Why Traders Love This System
✔ No signals until all confirmations align
✔ Reduces overtrading and emotional decisions
✔ Follows market structure instead of random indicators
✔ Perfect for maintaining long-term funded accounts
✔ Built around institutional-grade concepts
✔ Makes your trading consistent, calm, and rules-based
⚙️ Recommended Settings
Session: 06:30–08:00 MST (NY Open)
R:R: 1.5R – 3R
Contracts: Start with 1–2 micros
Markets: NQ for best structure & volume
📦 What’s Included
Complete strategy logic
All plots, labels, sweep markers & BOS alerts
BOS retest entry automation
Session filtering
Stop loss & take profit system
Full SMC logic pipeline
🏁 Summary
The Liquidity Sweep + BOS Retest System is a complete, prop-firm-ready, structure-based strategy that automates one of the cleanest and most reliable SMC entry models. It is designed to keep you safe, consistent, and rule-compliant while capturing premium institutional setups.
If you want to trade with confidence, discipline, and prop-firm precision — this system is for you.
Good Luck -BG
Candle 2 Closure📌 Indicator Presentation – Candle 2 Closure
" Candle 2 Closure "s is an indicator designed to identify three types of price–action-based signals in real time: Long, Short, and Generic.
The goal is to visually highlight moments when the market breaks a key level of the previous candle but rejects that break, closing on the opposite side.
The idea was inspired by the study of pure price action and specifically by the following video:
👉 www.youtube.com
🎯 How the Indicator Works
The indicator generates signals on bar close (barstate.isconfirmed), making them reliable and free from repainting.
🔵 LONG Signal
A long signal is triggered when:
The current candle breaks the low of the previous candle
But then closes back above that low
→ This is often a sign of a bear trap or a liquidity rejection to the downside.
🔴 SHORT Signal
A short signal is triggered when:
The current candle breaks the high of the previous candle
But then closes back below that high
→ This may indicate a bull trap or a liquidity rejection to the upside.
⚪ GENERIC Signal
A generic signal is triggered when:
A high or low is broken,
But neither the long nor short conditions are met,
Resulting in a simple unconfirmed break.
📍 Operational Advantages
Highlights liquidity absorption zones
Works on all timeframes (1m → 1D)
Useful for scalping, intraday, or swing trading
Clear and immediate visual signals on the chart
Zero repainting
✨ Visual Style
LONG displayed below the candle, white color
SHORT displayed above the candle, white color
Generic signal shown with a neutral label
High Volume Bars (Advanced)High Volume Bars (Advanced)
High Volume Bars (Advanced) is a Pine Script v6 indicator for TradingView that highlights bars with unusually high volume, with several ways to define “unusual”:
Classic: volume > moving average + N × standard deviation
Change-based: large change in volume vs previous bar
Z-score: statistically extreme volume values
Robust mode (optional): median + MAD, less sensitive to outliers
It can:
Recolor candles when volume is high
Optionally highlight the background
Optionally plot volume bands (center ± spread × multiplier)
⸻
1. How it works
At each bar the script:
Picks the volume source:
If Use Volume Change vs Previous Bar? is off → uses raw volume
If on → uses abs(volume - volume )
Computes baseline statistics over the chosen source:
Lookback bars
Moving average (SMA or EMA)
Standard deviation
Optionally replaces mean/std with robust stats:
Center = median (50th percentile)
Spread = MAD (median absolute deviation, scaled to approx σ)
Builds bands:
upper = center + spread * multiplier
lower = max(center - spread * multiplier, 0)
Flags a bar as “high volume” if:
It passes the mode logic:
Classic abs: volume > upper
Change mode: abs(volume - volume ) > upper
Z-score mode: z-score ≥ multiplier
AND the relative filter (optional): volume > average_volume * Min Volume vs Avg
AND it is past the first Skip First N Bars from the start of the chart
Colors the bar and (optionally) the background accordingly.
⸻
2. Inputs
2.1. Statistics
Lookback (len)
Number of bars used to compute the baseline stats (mean / median, std / MAD).
Typical values: 50–200.
StdDev / Z-Score Multiplier (mult)
How far from the baseline a bar must be to count as “high volume”.
In classic mode: volume > mean + mult × std
In z-score mode: z ≥ mult
Typical values: 1.0–2.5.
Use EMA Instead of SMA? (smooth_with_ema)
Off → uses SMA (slower but smoother).
On → uses EMA (reacts faster to recent changes).
Use Robust Stats (Median & MAD)? (use_robust)
Off → mean + standard deviation
On → median + MAD (less sensitive to a few insane spikes)
Useful for assets with occasional volume blow-ups.
⸻
2.2. Detection Mode
These inputs control how “unusual” is defined.
• Use Volume Change vs Previous Bar? (mode_change)
• Off (default) → uses absolute volume.
• On → uses abs(volume - volume ).
You then detect jumps in volume rather than absolute size.
Note: This is ignored if Z-Score mode is switched on (see below).
• Use Z-Score on Volume? (Overrides change) (mode_zscore)
• Off → high volume when raw value exceeds the upper band.
• On → computes z-score = (value − center) / spread and flags a bar as high when z ≥ multiplier.
Z-score mode can be combined with robust stats for more stable thresholds.
• Min Volume vs Avg (Filter) (min_rel_mult)
An extra filter to ignore tiny-volume bars that are statistically “weird” but not meaningful.
• 0.0 → no filter (all stats-based candidates allowed).
• 1.0 → high-volume bar must also be at least equal to average volume.
• 1.5 → bar must be ≥ 1.5 × average volume.
• Skip First N Bars (from start of chart) (skip_open_bars)
Skips the first N bars of the chart when evaluating high-volume conditions.
This is mostly a safety / cosmetic option to avoid weird behavior on very early bars or backfill.
⸻
2.3. Visuals
• Show Volume Bands? (show_bands)
• If on, plots:
• Upper band (upper)
• Lower band (lower)
• Center line (vol_center)
These are plotted on the same pane as the script (usually the price chart).
• Also Highlight Background? (use_bg)
• If on, fills the background on high-volume bars with High-Vol Background.
• High-Vol Bar Transparency (0–100) (bar_transp)
Controls the opacity of the high-volume bar colors (up / down).
• 0 → fully opaque
• 100 → fully transparent (no visible effect)
• Up Color (upColor) / Down Color (dnColor)
• Regular bar colors (non high-volume) for up and down bars.
• Up High-Vol Base Color (upHighVolBase) / Down High-Vol Base Color (dnHighVolBase)
Base colors used for high-volume up/down bars. Transparency is applied on top of these via bar_transp.
• High-Vol Background (bgHighVolColor)
Background color used when Also Highlight Background? is enabled.
⸻
3. What gets colored and how
• Bar color (barcolor)
• Up bar:
• High volume → Up High-Vol Color
• Normal volume → Up Color
• Down bar:
• High volume → Down High-Vol Color
• Normal volume → Down Color
• Flat bar → neutral gray
• Background color (bgcolor)
• If Also Highlight Background? is on, high-volume bars get High-Vol Background.
• Otherwise, background is unchanged.
⸻
4. Alerts
The indicator exposes three alert conditions:
• High Volume Bar
Triggers whenever is_high is true (up or down).
• High Volume Up Bar
Triggers only when is_high is true and the bar closed up (close > open).
• High Volume Down Bar
Triggers only when is_high is true and the bar closed down (close < open).
You can use these in TradingView’s “Create Alert” dialog to:
• Get notified of potential breakout / exhaustion bars.
• Trigger webhook events for bots / custom infra.
⸻
5. Recommended presets
5.1. “Classic” high-volume detector (closest to original)
• Lookback: 150–200
• StdDev / Z-Score Multiplier: 1.0–1.5
• Use EMA Instead of SMA?: off
• Use Robust Stats?: off
• Use Volume Change vs Previous Bar?: off
• Use Z-Score on Volume?: off
• Min Volume vs Avg (Filter): 0.0–1.0
Behavior: Flags bars whose volume is notably above the recent average (plus a bit of noise filtering), same spirit as your initial implementation.
⸻
5.2. Volatility-aware (Z-score) mode
• Lookback: 100–200
• StdDev / Z-Score Multiplier: 1.5–2.0
• Use EMA Instead of SMA?: on
• Use Robust Stats?: on (if asset has huge spikes)
• Use Volume Change vs Previous Bar?: off (ignored anyway in z-score mode)
• Use Z-Score on Volume?: on
• Min Volume vs Avg (Filter): 0.5–1.0
Behavior: Flags bars that are “statistically extreme” relative to recent volume behavior, not just absolutely large. Good for assets where baseline volume drifts over time.
⸻
5.3. “Wake-up bar” (volume acceleration)
• Lookback: 50–100
• StdDev / Z-Score Multiplier: 1.0–1.5
• Use EMA Instead of SMA?: on
• Use Robust Stats?: optional
• Use Volume Change vs Previous Bar?: on
• Use Z-Score on Volume?: off
• Min Volume vs Avg (Filter): 0.5–1.0
Behavior: Emphasis on sudden increases in volume rather than absolute size – useful to catch “first active bar” after a quiet period.
⸻
6. Limitations / notes
• Time-of-day effects
The script currently treats the entire chart as one continuous “session”. On 24/7 markets (crypto) this is fine. For regular-session assets (equities, futures), volume naturally spikes at open/close; you may want to:
• Use a shorter Lookback, or
• Add a session-aware filter in a future iteration.
• Illiquid symbols
On very low-liquidity symbols, robust stats (Use Robust Stats) and a non-zero Min Volume vs Avg can help avoid “everything looks extreme” problems.
• Overlay behavior
overlay = true means:
• Bars are recolored on the price pane.
• Volume bands are also drawn on the price pane if enabled.
If you want a dedicated panel for the bands, duplicate the logic in a separate script with overlay = false.
HL ±Pips Zone## **Overview**
This indicator highlights the most critical danger zones for scalpers:
the **±2 pips area around the most recent High and Low**.
These zones often attract liquidity, cause fake breakouts, and lead to stop hunts—especially in USDJPY scalping.
Use this tool as a **dynamic “no-entry buffer”** to avoid low-probability trades.
---
## **Purpose**
* Prevent entries near recent highs/lows where reversals are common
* Filter out low-quality signals from your existing strategy
* Reduce consecutive losses during range conditions
* Improve win-rate by avoiding fake breakouts and wick-based stop-outs
---
## **How It Works**
* The indicator identifies the **recent highest high** and **recent lowest low** within a user-defined lookback period.
* It then draws:
* **Red Zone:** ±pips around the recent high
* **Blue Zone:** ±pips around the recent low
* These zones represent areas where liquidity traps and false breakouts frequently occur.
---
## **How to Use**
### **1. Avoid entering positions inside the colored zones**
Even if your strategy generates a signal, skip the trade when price is inside the ±pips buffer.
### **2. Enter only after a clean breakout**
Look for:
* A candle **body** closing outside the zone
* A small pullback
* Confluence with your existing entry criteria
### **3. Identify trend vs. range easily**
* Price sticking inside the zones → **range**
* Price staying outside → **trend**
### **4. Better stop-loss handling**
Using the **candle close** beyond the zone for stop-loss improves trade stability and prevents noise-based stop-outs.
---
## **Best For**
* USDJPY scalping (1m / 30s)
* Breakout & momentum strategies
* The H Alert–based setups
* Traders avoiding liquidity traps
---
## **Inputs**
* **Lookback Period:** Number of bars to define recent high/low
* **Pips Offset:** Distance above/below recent high/low
* **Pip Size:** Automatically calculated for FX pairs
---
## **Benefits**
* Avoids entries at the top/bottom of ranges
* Prevents fake breakout losses
* Provides clear visual “danger zones”
* Works perfectly as a filter for any entry strategy
---
## **Summary**
**Trade outside the colored zones.
Avoid entries inside them.**
This simple rule can dramatically improve consistency and reduce unnecessary losses—especially in fast scalping environments.
---
## **Notes**
* Optimized for USDJPY 1m/30s
* Works across all FX pairs with correct pip settings
* No repainting
---
Franjas Horarias Personalizables (Madrid)Franjas de sesiones en las que opero por horario.
Sesiones de Asia, London y NY
AhaxTrader Risk (nasq - fundingpips ) V0funding pips nasqq ayarlaması AhaxTrader Risk (nasq - fundingpips ) V0 risk yönetimi
Special Candle Colours (13:30, 18:30, 20:00 IST)you can use this to find some specific timing candle with different colours
PDH PDL with Alerts (Final)PDHPDL with alerts. Indicator triggers alerts when PDH, PDL and Weekly open and high/low are reached
Elder's Complete Trading SystemKey Features:
✅ ENHANCED SIGNALS (🔥 symbols) = ALL conditions perfectly aligned:
Weekly trend confirmation
Daily pullback/rally against trend
Multiple indicator convergence
Divergence detection
Volume confirmation
Proper channel positioning
✅ Standard Signals = Basic Triple Screen requirements met
✅ Comprehensive Dashboard shows real-time status of ALL indicators
✅ Automatic Stop Loss & Target Calculation based on 2% rule
✅ Multiple Alert Types for different signal strengths
What Makes This "Perfect":
Implements EVERY major concept from the book:
Triple Screen (3 timeframes)
Elder-ray (Bull/Bear Power)
Force Index (Price + Volume)
MACD-Histogram with divergences
Multiple oscillators (Stochastic, Williams %R)
Volume analysis
Channel trading
2% Rule risk management
Losers Anonymous principles
Professional-Grade Features:
Multi-timeframe analysis
Divergence detection (most powerful signals)
Risk/reward calculation
Position sizing suggestions
Visual stop loss & target lines
Comprehensive alerting system
Follows Elder's Philosophy:
Quality over quantity
Risk management FIRST
Multiple confirmation required
Clear visual feedback
Educational reminders built-in
Best Practices:
Use on DAILY charts primarily
Set higher timeframe to WEEKLY
Only take ENHANCED signals for highest probability
ALWAYS follow the 2% rule
Check the dashboard before every trade
Wait for ALL confirmations to align
This is the most comprehensive Dr. Elder indicator possible—combining every trading principle from his book into one powerful system!
X HL Rangedynamically maps high-low range boxes for custom time-bucket intervals without relying on security() calls. Each defined timeframe (e.g., 15-minute, 60-minute, or any user-selected value) produces a visual “range block” that captures the extremes (H/L) of price activity for that session bucket.
This tool is engineered to be lightweight, precise, and session-aware, avoiding repaint characteristics that can occur when referencing higher-timeframe candles directly. It builds the range locally in real-time, ensuring that traders always see authentic structure as it developed on the chart — not delayed or back-filled values.
The indicator can display one or both timeframes independently, with configurable display depth, color logic, and visual emphasis through fill and border toggles.
🎯 Key Features
Feature Description
Multi-timeframe bucket logic Builds range blocks locally using time calculations, not security()
Directional coloring Automatically adjusts based on up/down close of the completed range
Independent display controls Turn TF buckets on/off without affecting the other
Visual style management Independent fill + border toggles and opacity-aware color output
Historical depth control Automatically prunes oldest blocks to maintain visual clarity
Non-repainting Values are locked at bucket close and never adjusted backward
💡 Primary Use Cases
1️⃣ Intraday Structure Mapping
Traders who value intrablock liquidity zones, swing sweeps, or stop hunt regions can instantly see where price respected — or violated — previous time-based range extremes.
2️⃣ Volatility & Regime Shift Detection
Rapid compression or expansion across sequential blocks can be used to identify:
Transition from balance → imbalance
Trend exhaustion and reversal
The start of new initiative moves
3️⃣ Confluence Layering with:
VWAP (session, anchored, rolling)
Market profile / volume nodes
Opening range breakout systems
Session order flow frameworks
Mean-reversion and ATR-based models
Stacking multiple intervals (e.g., 15-min micro-range + 60-min macro-range) can highlight nested liquidity pockets, similar to structural mapping seen in professional execution models.
ATR 단타 필터 테이블 + 롱/숏 손절가 (v6) I'll upgrade you so that you can see the **short fingerprint + the distance to the fingerprint %** at once 👍
• Long term cutoff: Present price - ATR × multiple
• Short cut: Present price + ATR × multiple
• Distance to Fracture %:
• Long: (Current price - Long hand-wringing song) / Present price × 100
• Short: (Short cut - Present price) / Present price × 100
• 롱 손절가: 현재가 - ATR × 배수
• 숏 손절가: 현재가 + ATR × 배수
• 손절까지 거리 %:
• 롱: (현재가 - 롱손절가) / 현재가 × 100
• 숏: (숏손절가 - 현재가) / 현재가 × 100
GOLD 5MIN — 9×21 EMA Entry Arrows (Pro Setup)GOLD 5MIN — 9×21 EMA Entry Arrows (Pro Setup) — 2025 Funded Trader Edition
The exact same 5-minute gold scalping strategy used daily by multiple 6- and 7-figure funded accounts in 2025.
Core Logic (mechanical – no discretion):
• Entry only on 9 × 21 EMA crossover
• Must be in direction of 50 EMA + 200 EMA trend
• Price must close above/below 50 EMA
• High-confidence filter: price above 200 EMA + fast 9 EMA rising + elevated volume = big bright “3↑” / “3↓” arrow (full size)
• Normal confidence = small “↑” / “↓” arrow (normal or half size)
Features:
• Automatic dynamic swing stops plotted in real-time (3 ticks beyond prior swing low/high – the exact 2025 stop method that dropped stop-outs from ~65 % to ~31 %)
• Clean, high-visibility arrows (large bright for confidence 3, small for normal)
• Zero repainting – signals only on bar close
• Built for GC1! and MG1! (full and micro gold) on the 5-minute timeframe
• Best performance: London open (02:00–04:30 ET) and NY open (09:30–11:30 ET)
How to trade:
1. Arrow appears on closed bar → market order in
2. Stop = red dashed line (already drawn)
3. First target 50 % at +20 ticks, move rest to breakeven at +15 ticks, trail with 21 EMA
“When the 3↑ hits… the bag follows.”
— ASALEH2297
Golden BOS Strategy - ChecklistA clean, mechanical on-chart checklist designed for multi-timeframe traders using the Golden BOS / Institutional Retracement Framework.
This tool helps you stay disciplined by tracking each requirement of the strategy in real time:
Included Criteria
4H Bias: Bullish or bearish macro structure
1H Structure: Push/pull phase + golden zone retracement
5M Entry Model:
Break of Structure (BOS)
5M golden zone retracement
POI validation (OB/FVG/Breaker)
Final micro BOS or rejection confirmation
Risk Filters:
Session validity (London / NY)
Red news avoidance
Stop-loss placement check
Liquidity-based target confirmation
Purpose
This overlay ensures every trade meets strict criteria before execution, removing emotion and improvisation. Ideal for backtesting, forward testing, and staying consistent during live market conditions.
Golden BOS Strategy — Description
The Golden BOS Strategy is a structured, multi-timeframe trading system designed to capture high-probability continuation moves during London and New York sessions. The strategy combines institutional concepts with Fibonacci-based retracements to identify discounted entry zones aligned with higher-timeframe direction.
Using the 4H timeframe, traders establish the daily macro bias and identify the dominant trend. The 1H chart is then used to confirm the current phase of market structure, distinguishing between impulsive “push” moves and corrective “pullback” phases. A Fibonacci retracement is applied to the most recent 1H impulse leg to define a high-value discount or premium zone where entries become valid.
Execution takes place on the 5-minute chart. Once price reaches the 1H golden zone (61.8–78.6%), a Break of Structure (BOS) is required to confirm a shift in short-term momentum. A second Fibonacci retracement is then drawn on the 5M impulse leg that caused the BOS, and price must retrace back into the 5M golden zone. Traders refine their entry using a confluence point of interest (POI) such as a Fair Value Gap (FVG), Order Block, Breaker Block, or Inverse FVG, ideally accompanied by a final micro BOS or rejection candle.
Risk management is strict and rule-driven. Stop loss is placed beyond the extreme wick of the POI, while take-profit targets are set at logical liquidity pools in the direction of the higher-timeframe trend. The strategy avoids red-folder news and only allows trades during active sessions to ensure optimal volatility and reliability.
The Golden BOS Strategy is designed to impose discipline, reduce discretionary errors, and give traders a repeatable, mechanical framework for navigating trending markets with precision.
Directional Candle Size TrackerThis indicator measures the strength of bullish and bearish momentum by tracking the average size of candles — but only when they’re moving in the intended direction.
🟢 Bullish Strength rises when green candles expand in size
🔴 Bearish Strength rises when red candles grow in size
When the market pauses or flips direction, the opposing line flatlines, preserving the last value
Unlike traditional moving averages that blend all candles together, this tracker isolates directional pressure, giving you a clearer read on which side is truly in control. It’s especially useful for spotting momentum decay, trap setups, and regime transitions.
Use it to:
Confirm breakout strength
Detect fading conviction
Compare bullish vs. bearish aggression in real time
Simple VP Shape DetectorSimple VP Shape Detector is a lightweight Pine Script tool designed to help traders quickly identify the four major Volume Profile shapes commonly used in orderflow and auction-market theory:
D-Shape (Balanced Profile)
P-Shape (Short-Covering / Buyer-Dominant)
B-Shape (Long-Liquidation / Seller-Dominant)
Thin Profile (Trend Profile)
This indicator uses candle statistics (range, body size, volume distribution approximation, and directional movement) to estimate the underlying shape of the volume profile when the full Volume Profile tool is not available.
✔️ What this indicator does
Analyzes recent bars to estimate volume concentration vs. price movement
Flags possible VP shapes using simple logic
Displays labels above/below candles showing:
“D” → Balanced
“P” → Buyer-heavy
“B” → Seller-heavy
“T” → Trending / Thin profile
Helps traders quickly identify auction conditions
✔️ Why this is useful
Volume Profile tools require premium data or heavy visual processing.
This script provides a simple, fast, CPU-light alternative that still captures the essential behavior of profile shapes.
✔️ How shapes are detected
D-Shape: small directional movement + larger body clustering
P-Shape: strong upward move + volume weighted to upper half
B-Shape: strong downward move + volume weighted to lower half
Thin: long range candles with little internal consolidation
⚠️ Disclaimer
This script is an approximation. It does NOT replace full Volume Profile tools.
It is designed as an educational / supplemental tool for market structure analysis.
ATR STRUCTURE
So I can produce this
🟡 START = 662.63 ✳️ ATR ≈ 8.30 pts (0.5 ATR ≈ 4.15 • 1 ATR ≈ 8.30) 🙂📏
ATR bands (numeric)
🔼 START + 0.5 ATR = 662.63 + 4.15 = 666.78 (upper buffer / shelf)
🔼 START + 1 ATR = 662.63 + 8.30 = 670.93 (breakout band)
🔽 START − 0.5 ATR = 662.63 − 4.15 = 658.48 (near support)
🔽 START − 1 ATR = 662.63 − 8.30 = 654.33 (deeper stop zone)
— Priority level ladder (footprint‑first & ATR alignment) — (emoji = confidence • 🔥 = high • ✅ = footprint confirmed • 🟡 = medium)
🔥🟢 PM_LOW / D1 — ~659.95 → 660.50 ✅ (FOOTPRINT CONFIRMED)
Why: repeated 30m+1h absorption (sold‑into then bought up). DEEP confidence. 🧯🔁
🔥🔴 ORBH / U2 cluster — ~663.98 → 665.87 ✅ (FOOTPRINT SUPPLY)
Why: repeated rejections / sell MaxDelta rows on 30m & 1h. Treat as overhead supply / shelf. 🪓📉
🔥🟦 D3 / ORBL corridor — ~658.64 ✅ (TF confluence: 1h+4h MaxDelta)
Why: single‑row institutional sells map here; structural LVN / open‑range low. 🛡️📌
🟡⭐ START / U1 pivot zone — ~662.63 – 662.70 ✅ (session pivot, 1h absorption)
Why: session magnet—use for intraday bias pivot / quick confirms. 👀⚖️
🟡🔥 U4 / U5 upper HVN band — ~666.7 → 669.3 (ATR UPPER)
Why: strong HVN / stop‑run evidence on higher TFs — needs large buy MaxDelta to flip. 🚧🚀
⚪ D5 lower expansion support — ~654.3–656.7 (deeper target if sellers run)
Why: longer‑TF expansion area; lower immediate probability but high impact if hit. ⚠️📉
Asia-Range Stats (last 100 Sessions, US after Asia)Getting the highs and lows of the last 100 asia sessions and comparing the nasdaq MNQ1 to it: was there a breakout above or below the asia high/low?
If yes how many points? And how many points went it back into the asia range after the breakout?
Rectángulos mensuales – tasa implícitaEl script que construimos intenta hacer exactamente esto:
1. Tomar el precio inicial de la letra al comenzar el mes.
2. Tomar el precio final del mes (o el precio actual si el mes no terminó).
3. Calcular el rendimiento mensual real = (precio_fin / precio_inicio − 1).
4. Convertirlo a porcentaje.
5. Dibujar un rectángulo sobre el gráfico que visualmente marque ese rendimiento mensual.
6. Escribir el valor (%) dentro del rectángulo.
La idea general es:
Cada mes tiene un rendimiento “esperado” para llegar al valor final del vencimiento. Vos querés comparar ese rendimiento esperado vs. el rendimiento real de mercado mes a mes para ver si la letra está sobrecomprada o sobrevendida.
El script intenta automatizar eso dentro del gráfico.
The script we built is designed to do the following:
Take the initial price of the note at the beginning of each month.
Take the final price of the month (or the current price if the month hasn’t ended yet).
Calculate the actual monthly return = (final_price / initial_price − 1).
Convert this value into a percentage.
Draw a rectangle on the chart that visually represents that monthly return.
Display the percentage value inside the rectangle.
The main idea is:
Each month has an “expected return” required for the note to reach its final target value at maturity. You want to compare that expected return with the real market return month-by-month to see whether the note is overbought or oversold.
The script is intended to automate that process directly on the chart.
8:30 box and 12:30 line (Customizable)This indicator draws a box for 8-30 5-minute candle
and line for 13-30 price
Special for you, SigAd






















