Long Term indicator for financial marketsIts the indicator that i have made for my friends following the learnings which i have learnt over the last few years for momentum traders
المؤشرات والاستراتيجيات
5-Min ORB - NY Session5-Minute Opening Range Breakout (ORB) - NY Session Indicator
This TradingView indicator identifies and plots the Opening Range Breakout (ORB) based on the first 5-minute candle of the New York trading session.
Key Features:
Automatic Detection: Automatically detects the NY session open (default 9:30 AM ET, fully customizable) and captures the high/low of the first 5-minute bar
Multi-Timeframe Support: Works on any chart timeframe (1-min, 3-min, 15-min, etc.) by requesting 5-minute data
Dynamic Price Targets: Calculates both bullish (above ORB high) and bearish (below ORB low) price targets based on the opening range size
Configurable Targets: Set up to 10 price target levels on each side, with targets spaced proportionally to the ORB range
Extended Lines: All lines automatically extend ahead of the current bar by a configurable number of minutes for better forward visibility
Price Labels: Optional price labels display exact values at the end of each level
Midpoint Line: Optional dashed midpoint line shows the center of the opening range
Custom Styling: Fully customizable colors and transparency for all lines and labels
How It Works:
The indicator measures the distance between the ORB high and midpoint, then projects additional targets at equal intervals above the high (bullish targets in green) and below the low (bearish targets in red).
Why Use a 5-Minute ORB?
Tighter Range: The 5-minute opening range is typically smaller than the 15-minute range, providing more precise entry and exit levels
Earlier Signals: Breakouts are identified sooner, allowing for faster reaction times
Scalping-Friendly: Ideal for day traders and scalpers who prefer shorter timeframes and quicker price movements
Higher Probability Zones: The narrower range often creates more reliable support/resistance levels for intraday trading
Best Practices:
Works best on liquid instruments with high volume during NY session open
Combine with volume analysis to confirm breakout validity
Consider using the first target as a take-profit level for quick scalps
Watch for false breakouts within the first 15-30 minutes of the session
powell's key openskey open levels that powell teaches and uses
6 pm, 12 am and 10 am EST opening pricing
FVG & Market Structure//@version=5
indicator("FVG & Market Structure", overlay=true)
// Inputs
fvg_lookback = input.int(100, "FVG Lookback Period")
fvg_strength = input.int(1, "FVG Minimum Strength")
show_fvg = input.bool(true, "Show FVG")
show_liquidity = input.bool(true, "Show Liquidity Zones")
show_bos = input.bool(true, "Show BOS")
// Calculate swing highs and lows
swing_high = ta.pivothigh(high, 2, 2)
swing_low = ta.pivotlow(low, 2, 2)
// Detect Fair Value Gaps (FVG)
detect_fvg() =>
// Bullish FVG (current low > previous high + threshold)
bullish_fvg = low > high and show_fvg
// Bearish FVG (current high < previous low - threshold)
bearish_fvg = high < low and show_fvg
= detect_fvg()
// Plot FVG areas
bgcolor(bullish_fvg ? color.new(color.green, 95) : na, title="Bullish FVG")
bgcolor(bearish_fvg ? color.new(color.red, 95) : na, title="Bearish FVG")
// Breach of Structure (BOS) detection
detect_bos() =>
var bool bull_bos = false
var bool bear_bos = false
// Bullish BOS - price breaks above previous swing high
if high > ta.valuewhen(swing_high, high, 1) and not na(swing_high)
bull_bos := true
bear_bos := false
// Bearish BOS - price breaks below previous swing low
if low < ta.valuewhen(swing_low, low, 1) and not na(swing_low)
bear_bos := true
bull_bos := false
= detect_bos()
// Plot BOS signals
plotshape(bull_bos and show_bos, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small, title="Bullish BOS")
plotshape(bear_bos and show_bos, style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small, title="Bearish BOS")
// Liquidity Zones (Recent Highs/Lows)
liquidity_range = input.int(20, "Liquidity Lookback")
buy_side_liquidity = ta.highest(high, liquidity_range)
sell_side_liquidity = ta.lowest(low, liquidity_range)
// Plot Liquidity Zones
plot(show_liquidity ? buy_side_liquidity : na, color=color.red, linewidth=1, title="Sell Side Liquidity")
plot(show_liquidity ? sell_side_liquidity : na, color=color.green, linewidth=1, title="Buy Side Liquidity")
// Order Block Detection (Simplified)
detect_order_blocks() =>
// Bullish Order Block - strong bullish candle followed by pullback
bullish_ob = close > open and (close - open) > (high - low) * 0.7 and show_fvg
// Bearish Order Block - strong bearish candle followed by pullback
bearish_ob = close < open and (open - close) > (high - low) * 0.7 and show_fvg
= detect_order_blocks()
// Plot Order Blocks
bgcolor(bullish_ob ? color.new(color.lime, 90) : na, title="Bullish Order Block")
bgcolor(bearish_ob ? color.new(color.maroon, 90) : na, title="Bearish Order Block")
// Alerts for key events
alertcondition(bull_bos, "Bullish BOS Detected", "Bullish Breach of Structure")
alertcondition(bear_bos, "Bearish BOS Detected", "Bearish Breach of Structure")
// Table for current market structure
var table info_table = table.new(position.top_right, 2, 4, bgcolor=color.white, border_width=1)
if barstate.islast
table.cell(info_table, 0, 0, "Market Structure", bgcolor=color.gray)
table.cell(info_table, 1, 0, "Status", bgcolor=color.gray)
table.cell(info_table, 0, 1, "Bullish BOS", bgcolor=bull_bos ? color.green : color.red)
table.cell(info_table, 1, 1, bull_bos ? "ACTIVE" : "INACTIVE")
table.cell(info_table, 0, 2, "Bearish BOS", bgcolor=bear_bos ? color.red : color.green)
table.cell(info_table, 1, 2, bear_bos ? "ACTIVE" : "INACTIVE")
table.cell(info_table, 0, 3, "FVG Count", bgcolor=color.blue)
table.cell(info_table, 1, 3, str.tostring(bar_index))
SMACPAC SignalsSimple Moving Average Crossover Price Action Confirmation Strategy
Simply marks key signals or strength and weakness in the chart.
Alerts set up on t.me for SOL/USDT and PEPE/USDT daily charts and more
VSLRT with DivergencesOverview
This indicator combines Volume-Synchronized Linear Regression Trend (VSLRT) analysis with multi-indicator divergence detection to provide comprehensive market momentum and reversal signals. It displays volume-weighted price trends in both short-term and long-term timeframes, while simultaneously detecting divergences across 10 different technical indicators.
Key Features
VSLRT (Volume-Synchronized Linear Regression Trend):
Short-term and long-term trend analysis using linear regression
Volume-weighted calculations that account for buying vs selling pressure
Color-coded histogram showing trend strength and direction
Forecast projection showing anticipated trend continuation
Divergence-adjusted forecasting for enhanced prediction accuracy
Multi-Indicator Divergence Detection:
The indicator simultaneously monitors divergences across:
MACD (Moving Average Convergence Divergence)
MACD Histogram
RSI (Relative Strength Index)
Stochastic Oscillator
CCI (Commodity Channel Index)
Momentum
OBV (On-Balance Volume)
Volume-Weighted MACD
Chaikin Money Flow
Money Flow Index
Divergence Types:
Regular Bullish Divergence (potential reversal to upside)
Regular Bearish Divergence (potential reversal to downside)
Hidden Bullish Divergence (trend continuation upward)
Hidden Bearish Divergence (trend continuation downward)
How It Works
VSLRT Calculations:
The indicator calculates linear regression slopes for both price and volume, separating buying volume from selling volume. The histogram displays:
Green columns: Bullish price movement with strong buying volume
Red columns: Bearish price movement with strong selling volume
Shaded columns: Weaker conviction in the current trend
Thick line: Long-term trend direction
Divergence Detection:
The script automatically scans for divergences by comparing:
Price action (higher highs/lower lows)
Indicator values at pivot points
When price and indicators move in opposite directions, a divergence is detected
Divergences are displayed as labels on the histogram showing:
Which indicators are diverging
Number of simultaneous divergences (stronger signal when multiple indicators agree)
Color-coded by divergence type
Customizable Settings
VSLRT Settings:
Short-term length (default: 20)
Long-term length (default: 50)
Forecast bars (1-50, default: 10)
Divergence forecast adjustment factor
Custom colors for all trend states
Divergence Settings:
Pivot period for divergence detection
Source (Close or High/Low)
Divergence type (Regular, Hidden, or Both)
Minimum number of divergences to display
Maximum pivot points and bars to check
Toggle individual indicators on/off
Custom colors for each divergence type
Label display options (Full names, First letter, or Don't show)
Show divergence count option
Trading Applications
Trend Following:
Use VSLRT histogram to identify trend direction and strength
Enter trades when short-term and long-term trends align
Monitor forecast bars for potential trend continuation
Reversal Trading:
Watch for multiple regular divergences (3+ indicators)
Confirm with VSLRT color changes
Higher divergence count = stronger reversal signal
Trend Continuation:
Hidden divergences suggest trend will continue
Use during pullbacks in strong trends
Combine with VSLRT forecast for entry timing
Risk Management:
Divergence alerts can signal potential exits
VSLRT color changes can indicate stop-loss levels
Forecast helps anticipate trend exhaustion
Alert Conditions
Built-in alert conditions for:
Positive Regular Divergence Detected
Negative Regular Divergence Detected
Positive Hidden Divergence Detected
Negative Hidden Divergence Detected
Any Positive Divergence
Any Negative Divergence
Tips for Best Results
Multiple Timeframe Analysis: Check divergences on higher timeframes for more reliable signals
Confirmation: Wait for bar close (enabled by default) to avoid false signals
Volume Context: Stronger VSLRT signals occur during high volume periods
Divergence Count: More simultaneous divergences = higher probability signal
Trend Alignment: Best results when divergences align with overall trend direction
Engulfing Candlestick Pattern - BB FilterBeen working on doing a better version of this. This is like version 2.0. Usese this definition of an engulfing candle:
tradeciety.com
As you change the parameters of the Bollinger band the signals will change.
You can also set the distance away from the band using ATR muliplier to catch moves near the BB.
Per Claude,
This setup should give you much higher quality signals since you're filtering for engulfing patterns that occur at the extremes of the Bollinger Bands - exactly like the Tradeciety article recommends. Those are the setups with the best context and highest probability.
A few tips for using it:
You can adjust the BB Touch Distance slider if you want to be stricter or more lenient about what counts as "touching" the bands
Try enabling Strict Mode if you want only the strongest engulfing patterns (where the full range including wicks is engulfed)
Works great on higher timeframes like Daily and Weekly for the most reliable signals on NQ and ES
I personally use this on the 1000 tick NQ chart.
It's not perfect but 2x better than my first attempt. Enjoy.
Open to suggestions as well.
For entertainment purposes only.
Tokyo Session High/Low (live → lock & extend @02:59 UTC-5)Tokyo Session High/Low (live → lock & extend @02:59 UTC-5)Tokyo Session High/Low (live → lock & extend @02:59 UTC-5)
High Volume Zones with Signals – HVZ█ OVERVIEW
"High Volume Zones with Signals – HVZ" is a technical analysis indicator that identifies High Volume Zones (HVZ) on the chart and draws them as fully customizable boxes. Perfect for traders using price action, ICT, and Smart Money Concepts. The indicator highlights key volume-based support/resistance levels, detects potential consolidation zones (very large candles), and generates precise breakout and exit signals. Flexible volume filters, ATR filter, and visual styling options ensure a clean and highly effective chart.
█ CONCEPTS
The indicator detects candles with volume significantly above the average (default ≥ 2× SMA of volume over 20 periods). Such candles often signal institutional activity and create strong supply/demand zones.
The ATR filter additionally identifies very large candles – frequently a sign of market capitulation (panic buying/selling). Within the range of such a candle, prolonged consolidation often occurs, especially on higher timeframes (e.g., 4H and above).
Why are HVZ important? High-volume zones are areas where the market has left a large number of orders – institutions return there to “refresh” liquidity before the next move. A breakout against the zone’s character triggers a Break signal:
- Bullish HVZ broken downward (close below the lower boundary) → Break Down (sell),
- Bearish HVZ broken upward (close above the upper boundary) → Break Up (buy).
Note: The indicator requires real exchange volume – it will not work correctly on instruments without reported volume (e.g., certain CFDs or forex).
█ FEATURES
- HVZ Detection: Automatic identification of high-volume zones with Volume SMA Length and Volume Multiplier filters; historical initialization up to 500 candles back.
- ATR Filter: Optional detection of very large candles (potential consolidation/capitulation) using - ATR Length and ATR Multiplier; three action modes:
Skip Zone – large candle creates no zone,
Separate Color – zone is drawn in a distinct style (gray by default),
Normal Zone – treated like a regular HVZ.
- Gray zones (large candles, Separate Color): generate exactly the same Break signals as regular zones – based solely on the original candle direction (bullish → Break Down on lower break, bearish → Break Up on upper break). Gray color is only a visual marker for potential consolidation/capitulation zones.
- Customizable Boxes: Separate styles for bullish and bearish zones (border color, background gradient, line thickness and style); adjustable background and 50 % midline transparency.
- Break & Exit Signals:
Break Up/Down – green/red triangle after a candle closes outside the zone (zone disappears, triangle remains as a trace).
Exit Up/Down – green/red circle when price leaves the zone without a full breakout.
Signal Type option: Break, Exit, or Both.
- Midline: Automatic dashed line at the 50 % zone level with independent transparency control.
- Chart Cleanup: Automatic removal of inactive zones older than 500 candles (max_boxes_count=500).
- Alerts: Built-in alerts for Break Up and Break Down with clear messages.
█ HOW TO USE
Add to Chart: Paste the script in Pine Editor or find it in TradingView’s indicator library.
Configure Settings:
- Volume Filter: Volume SMA Length (default 20) and Volume Multiplier (default 2.0) – higher multiplier = fewer but stronger zones.
- ATR Filter: Enable/disable, set ATR Length (14) and ATR Multiplier (3.5); choose action for very large candles (Skip Zone / Separate Color / Normal Zone).
- Box Style: Background transparency (90) and midline transparency (70).
- Bull/Bear Box Style: Border and gradient colors, line thickness (1-5).
- ATR Style: Separate colors for large-candle zones (gray by default).
- Signal Settings: Choose Signal Type (Break/Exit/Both) and signal colors.
Signal Interpretation:
- Break Up (green triangle below bar): Bearish HVZ broken upward → buy signal, continuation of uptrend.
- Break Down (red triangle above bar): Bullish HVZ broken downward → sell signal, continuation of downtrend.
- Exit Up/Down (circles): Price leaves zone without breakout – may signal end of correction or reversal setup.
- HVZ Zones: Price often returns to high-volume zones to clear orders. An unfilled zone remains a price magnet.
- 50 % Level (midline): Ideal target for partial take-profit or reaction point inside the zone.
Combine signals with other tools (e.g., RSI, MACD, higher timeframes) for higher confidence.
█ APPLICATIONS
- Price Action & ICT: HVZ act as dynamic S/R; in an uptrend look for buys after breaking a bearish HVZ, in a downtrend look for sells after breaking a bullish HVZ. If you trade retests instead of breakouts, increase Volume Multiplier to 2.5-3.0 – fewer zones but much stronger. Note that after breaking a very strong zone, price often pulls back deeply before continuing.
- Breakout Strategies: For maximum Break signals, lower Volume Multiplier to 1.5-1.8 – gives many high-quality entries in trending markets. Always trade in the direction of the prevailing trend (e.g., only longs in uptrends). Enter after a Break signal with confirmation from volume or momentum (MACD above zero, RSI >50 for longs, <50 for shorts).
█ NOTES
- The indicator requires real exchange volume – it will not function properly on instruments without reported volume (e.g., certain CFDs, forex).
- Always confirm signals with additional context (market structure, higher timeframe).
ORB + INMERELO ADR + ATRThis indicator provides **two completely different but complementary lines of information** for intraday traders:
# **1. The ORB Line (ADR-Based Context Line)**
The ORB portion of the script focuses on **range expansion** relative to typical daily behavior.
### **What it measures**
* **20-day ADR (Average Daily Range)**
* **Today’s range as a % of ADR**
* **How much of the average range has been “used”** by the time you’re considering an Opening Range Breakout
### **Why it matters for ORB trading**
Successful ORBs thrive when:
* **ADR used% is low** (green) → plenty of fuel left for expansion
* **ADR used% is moderate** (orange) → breakout still possible but less explosive
* **ADR used% is high** (red) → breakout attempts often fail or reverse
### **What the indicator gives you**
A clean, color-coded readout of:
* ADR
* Today’s range
* Used%
* A simple green/orange/red evaluation of ORB quality
This allows a trader to quickly judge whether **conditions favor ORB continuation or mean-reversion reversal**—without manually calculating ranges or switching charts.
---
# **2. The INMERELO Line (ATR Stretch + MA Interaction)**
The INMERELO portion of the script is built around **mean-reversion mechanics**:
the market tends to revert back toward the **first daily MA it crosses under**.
### **How it determines the active MA**
At the start of each session, the script waits for price to cross under:
* **EMA10**
* **EMA21**
* **SMA50**
Whichever MA is crossed first becomes the **active MA** for the day.
If no cross has occurred yet, the indicator shows the **nearest MA**, so traders know exactly what the likely “INMERELO magnet” will be.
### **What it measures**
* **Stretch from the active MA (in ATR units)**
* **20-day ATR regime direction (expanding or contracting)**
* **Daily MA context: E10, E21, or S50**
### **Why it matters for INMERELOs**
This provides:
* The **target MA**
* The **distance to that MA in ATRs**
* A color-coded stretch score:
* **0.6–1.2 ATR** → prime INMERELO zone (Green)
* Moderately stretched → Orange
* Overstretched or dead zone → Red
An up/down arrow shows whether **volatility is expanding or compressing**, which affects expected retrace behavior.
### **What the indicator gives you**
All INMERELO data is displayed in a second compact line:
* Stretch to MA
* Active MA label (E10/E21/S50)
* ATR regime arrow
This allows fast identification of high-probability **mean-reversion trades back to the MA**.
---
# **Summary**
This indicator shows:
### **Line 1 → ORB Context (ADR)**
* Is the stock setup for a powerful breakout?
* How much ADR is left?
* Are you early (good) or late (risky)?
### **Line 2 → INMERELO Context (ATR + MA Stretch)**
* Which MA is in control today (EMA10, EMA21, or SMA50)?
* How many ATRs away from that MA are we?
* Is volatility expanding or contracting?
* Is this a clean INMERELO setup or not?
Together, these two lines give traders the **two most important intraday lenses**:
**range expansion (ORB)** and **mean reversion (INMERELO)**—updated every bar, without clutter.
OBV+EMA with HighlightsOBV + EMA with Highlights — Volume Strength Trend Indicator
OBV + EMA with Highlights enhances the classic On-Balance Volume indicator by revealing true money-flow strength and trend quality with clean, intuitive visuals.
Key Features
OBV Trend Strength (4 Levels):
Strong Up, Weak Up, Weak Down, Strong Down — detected using OBV slope and EMA positioning.
Dynamic OBV Coloring:
OBV turns green above EMA and red below EMA for instant trend confirmation.
Trend Background Highlight:
Automatic background shading (2 levels for uptrends & downtrends) to visualize volume pressure.
EMA Trend Line:
Smooth EMA overlay to track money-flow direction.
Signal Dot:
A clean dot appears on the right edge to show the latest OBV signal state.
No Noise & No Repainting:
Lightweight, fast, and reliable for all timeframes.
Use Cases
Ideal for scalping, day-trading, or swing-trading.
Great for confirming breakouts, identifying fakeouts, and measuring volume strength behind price action.
All colors and display options are customizable to fit any charting style.
Triple Supertrend final indicatorit gives 3 super trends giving the trend and is very good indicator.can be used to be in trend and trail your profit and stoip losses
ADX + RSI Screener FlagsThis indicator screens for ADX under a certain threshold and RSI under a certain threshold. By default set to 13 and 40, respectively, which are key levels indicating a potential bullish reversal.
Swing Break & Retest Zones (Pivot-Based Guard Lines)Swing Break & Retest Zones automatically detects swing structure breaks, plots bullish/bearish retest zones at the broken pivot, and projects those zones forward so traders can anticipate pullbacks with clarity. A Guard Line anchored at the swing high/low provides trend direction and structure confirmation. Pure price-action — no lagging indicators.
How To Use This Indicator (Trader Guide)
1. Identify Breakouts
A breakout occurs when price closes beyond the most recent swing high or swing low (with an optional tick buffer).
• Break above swing high → Bull Break
• Break below swing low → Bear Break
2. Watch the Retest Zone
After a break, a colored retest zone is projected forward from the broken pivot:
• Green box = Bullish retest
• Red box = Bearish retest
This zone marks where the market is most likely to return and test the breakout area.
3. Look for First Touch
The first touch back into the zone is often where:
• Trends resume
• Failed breakouts become clear
• Liquidity sweeps occur
• Stop hunts resolve back into direction
Once touched, the zone becomes “validated” and will remain until the next break.
4. Guard Line as Structural Confirmation
The Guard Line extends from the broken pivot high/low and visually confirms:
• Whether the trend is intact
• Whether the market is defending that swing
• Where invalidation may occur
A cleaner version of standard swing-structure trends.
Swing Trade BUY/SELL + SCORING +COLOUR FIXBUY/SELL labels now appear with a score (1–3) next to them.
Color coding visually distinguishes signal strength:
BUY → 1 yellow, 2 light green, 3 dark green
SELL → 1 orange, 2 red, 3 burgundy
This allows you to instantly see the signal strength both numerically and visually.
Volume Orderblock Breakout — Naaganeunja Lite v3order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
order block surge trading
5-Minute Opening Range Breakout (ORB) - NY Session IndicatorThis TradingView indicator identifies and plots the Opening Range Breakout (ORB) based on the first 5-minute candle of the New York trading session.
Key Features:
Automatic Detection: Automatically detects the NY session open (default 9:30 AM ET, fully customizable) and captures the high/low of the first 5-minute bar
Multi-Timeframe Support: Works on any chart timeframe (1-min, 3-min, 15-min, etc.) by requesting 5-minute data
Dynamic Price Targets: Calculates both bullish (above ORB high) and bearish (below ORB low) price targets based on the opening range size
Configurable Targets: Set up to 10 price target levels on each side, with targets spaced proportionally to the ORB range
Extended Lines: All lines automatically extend ahead of the current bar by a configurable number of minutes for better forward visibility
Price Labels: Optional price labels display exact values at the end of each level
Midpoint Line: Optional dashed midpoint line shows the center of the opening range
Custom Styling: Fully customizable colors and transparency for all lines and labels
How It Works:
The indicator measures the distance between the ORB high and midpoint, then projects additional targets at equal intervals above the high (bullish targets in green) and below the low (bearish targets in red).
Why Use a 5-Minute ORB?
Tighter Range: The 5-minute opening range is typically smaller than the 15-minute range, providing more precise entry and exit levels
Earlier Signals: Breakouts are identified sooner, allowing for faster reaction times
Scalping-Friendly: Ideal for day traders and scalpers who prefer shorter timeframes and quicker price movements
Higher Probability Zones: The narrower range often creates more reliable support/resistance levels for intraday trading
Best Practices:
Works best on liquid instruments with high volume during NY session open
Combine with volume analysis to confirm breakout validity
Consider using the first target as a take-profit level for quick scalps
Watch for false breakouts within the first 15-30 minutes of the session
SuperTrend MA Fusion [CNU]SuperTrend MA Fusion is a next-generation upgrade of the classic SuperTrend indicator, engineered with a multi-MA adaptive ATR engine, advanced non-repaint logic, and clean trend-flip signal generation.
This version offers 18+ institutional-grade moving averages to smooth ATR volatility, allowing traders to customize trend sensitivity and signal responsiveness unlike anything possible with the standard SuperTrend.
Key Features
✔ 18+ Moving Average Options (MA Engine)
Customize volatility smoothing using any MA:
SMA, EMA, WMA, RMA
HMA, ZLEMA, LSMA, ALMA
KAMA, VIDYA
TEMA, DEMA
VWMA, WWMA, VAR
TILLSON T3, TSF
TMA
This allows extreme flexibility — from ultra-fast scalping signals to slow and smooth swing-trend filters.
NQ Scalping WMAThis indicator plots two Weighted Moving Averages (WMAs) derived from the high and close to visualize short-term momentum extremes on NQ (Nasdaq futures). I built it for myself for scalping reversals on the 1-minute timeframe.
The area between the upper WMA (“Top-Source”) and lower WMA (“Bot-Source”) is filled with contextual color: green when price is above the top WMA, red when price is below the bottom WMA, and neutral gray otherwise. This makes it easy to spot overextensions, potential snap-back zones, and quick mean-reversion opportunities. Inputs include WMA length, line color, and separate sources for top/bottom WMAs, allowing fast tuning for changing intraday volatility.
The original code I used to make this is from PlayBit EMA by FFriZz
QQQ GO/EXIT (v13.6 – panel filters wired)Institutional level entries and exits on QQQ. uses vwap, emas, vold.
Confluence: VP + FVG + DeltaConfluence, volume profile FVG and Delta all in one chart the holy trinity.
NY KZ High/Low (live → lock @10:00 UTC-5)NY KZ High/Low (live → lock @10:00 UTC-5) NY KZ High/Low (live → lock @10:00 UTC-5)






















