EMA for Stratagems Strategy by xDSHxThe EMA indicator for the Stratagem 2025 strategy
The following EMAs are calculated:
- Fast EMA on the current TF
- Slow EMA on the current TF
- Fast EMA on the older TF
- Slow EMA on high TF
For a slow EMA on the current TF, the stop loss level is calculated.
指標和策略
Volume Strength HighlightThis simple script helps you quickly see when volume is strong or weak on the chart — it highlights the candles based on how the current volume compares to the recent average 📊
🔍 Here's what it does:
Calculates a 20-bar average volume
Marks candles green or red if volume is much higher than average (more than 1.5x)
Marks candles gray if volume is very low (less than 0.5x the average)
Normal candles stay unchanged
You can also turn on a basic volume plot in a separate panel if you want to compare visually (just toggle it in settings).
⚠️ It’s not a buy/sell signal — just a helper to see when the market is waking up or going quiet.
Not perfect but works well with other indicators! Let me know if you like it or have ideas to add more 💡
Market Sleep ZonesHey traders 👋
This script shows when the market is in a "sleeping" or low volatility phase. I call it Market Sleep Zones 😴
It looks at the average price movement over a window (default 20 bars), and if the price changes are small (under a % threshold you set), it highlights that area on the chart with a soft green background.
💡 This can help spot moments when the market is quiet — maybe before a breakout or just moving sideways.
It also places labels to mark where these zones start and end, so it's easy to track.
You can change:
The window size (how many bars to look back)
The breath depth (how much price is allowed to move before it’s "not sleeping" anymore)
Not perfect, but helpful if you want to avoid getting chopped in low-volatility zones or want to prepare for when the market "wakes up" 😄
Let me know if you find it useful or have ideas to improve it!
Volume Spike Alert & Overlay"Volume Spike Alert & Overlay" highlights unusually high trading volume on a chart. It calculates whether the current volume exceeds a user-defined percentage above the historical average and triggers an alert if it does. The information is also displayed in a customizable on-screen table.
What It Does
Monitors volume for each bar and compares it to an average over a user-defined lookback period.
Supports multiple smoothing methods (SMA, EMA, WMA, RMA) for calculating the average volume.
Triggers an alert when current volume exceeds the threshold percentage above the average.
Displays a table on the chart with:
Current Volume
Average Volume
Threshold Percentage
Optional empty row for spacing/formatting
How It Works
User Inputs:
lookbackPeriods: Number of bars used to calculate the average volume.
thresholdPercent: % above the average that triggers a volume spike alert.
smoothingType: Type of moving average used for volume calculation.
textColor, bgColor: Formatting for the display table.
tablePositionInput: Where the table appears on the chart (e.g., Bottom Right).
Toggles for showing/hiding parts of the table.
Volume Calculations:
Calculates current bar's volume.
Calculates average volume using the selected smoothing method.
Computes the threshold: avgVol * (1 + thresholdPercent / 100).
Compares current volume to threshold.
Table Display:
Dynamically creates a table with volume stats.
Adds rows based on user preferences.
Alerts:
alertcondition fires when currentVol crosses above the calculated threshold.
Message: "Volume Threshold Exceeded"
Usage Examples
Example 1: Spotting High Activity
Apply the script to a stock like AAPL on a 5-minute chart.
Set lookbackPeriods to 20 and thresholdPercent to 30.
Use EMA for more reactive volume tracking.
When volume spikes more than 30% above the 20-period EMA, an alert triggers.
Example 2: Day Trading Filter
For scalpers, apply it to a 1-minute crypto chart (e.g., BTC/USDT).
Set thresholdPercent to 50 to catch only strong surges.
Position the table at the top left and reduce visible info for a clean layout.
Example 3: Long-Term Context
On a daily chart, use SMA and set lookbackPeriods to 50.
Helps identify breakout moves supported by strong volume.
How this is different from Trading View's Volume indicator:
The standard volume plot from trading view allows users to set a alert when the average line is crossed, but it does not allow you to set a custom percentage at which to trigger an alert. This indicator will allow you to set any percentage you wish to monitor and above that percentage threshold will trigger your alert.
===== ORIGINAL DESCRIPTION =====
Volume Spike Alert & Overlay
This indicator will display the following as an overlay on your chart:
Current volume
Average Volume
Threshold for Alert
Description:
This indicator will display the current bar volume based on the chart time frame,
display the average volume based on selected conditions,
allow user selectable threshold over the average volume to trigger an alert.
Options:
Average lookback period
Smoothing type
Alert Threshold %
Enable / Disable Each Value
Change Text Color
Change Background Color
Change Table location
Add/Remove extra row for placement in top corner
Usage Example:
I use this indicator to alert when the current volume exceeds the average volume by a specified percentage to alert to volume spikes.
Set the threshold to 25% in the settings
Create an alert by clicking on the 3 dots on the right of the indicator title on the chart
When the threshold is exceeded the alert will trigger
Adaptive Volume‐Demand‐Index (AVDI)Demand Index (according to James Sibbet) – Short Description
The Demand Index (DI) was developed by James Sibbet to measure real “buying” vs. “selling” strength (Demand vs. Supply) using price and volume data. It is not a standalone trading signal, but rather a filter and trend confirmer that should always be used together with chart structure and additional indicators.
---
\ 1. Calculation Basis\
1. Volume Normalization
$$
\text{normVol}_t
= \frac{\text{Volume}_t}{\mathrm{EMA}(\text{Volume},\,n_{\text{Vol}})_t}
\quad(\text{e.g., }n_{\text{Vol}} = 13)
$$
This smooths out extremely high volume spikes and compares them to the average (≈ 1 means “average volume”).
2. Price Factor
$$
\text{priceFactor}_t
= \frac{\text{Close}_t - \text{Open}_t}{\text{Open}_t}.
$$
Positive values for bullish bars, negative for bearish bars.
3. Component per Bar
$$
\text{component}_t
= \text{normVol}_t \times \text{priceFactor}_t.
$$
If volume is above average (> 1) and the price rises slightly, this yields a noticeably positive value; conversely if the price falls.
4. Raw DI (Rolling Sum)
Over a window of \$w\$ bars (e.g., 20):
$$
\text{RawDI}_t
= \sum_{i=0}^{w-1} \text{component}_{\,t-i}.
$$
Alternatively, recursively for \$t \ge w\$:
$$
\text{RawDI}_t
= \text{RawDI}_{t-1}
+ \text{component}_t
- \text{component}_{\,t-w}.
$$
5. Optional EMA Smoothing
An EMA over RawDI (e.g., \$n\_{\text{DI}} = 50\$) reduces short-term fluctuations and highlights medium-term trends:
$$
\text{EMA\_DI}_t
= \mathrm{EMA}(\text{RawDI},\,n_{\text{DI}})_t.
$$
6.Zero Line
Handy guideline:
RawDI > 0: Accumulated buying power dominates.
RawDI < 0: Accumulated selling power dominates.
2. Interpretation & Application
Crossing Zero
RawDI above zero → Indication of increasing buying pressure (potential long signal).
RawDI below zero → Indication of increasing selling pressure (potential short signal).
Not to be used alone for entry—always confirm with price action.
RawDI vs. EMA_DI
RawDI > EMA\_DI → Acceleration of demand.
RawDI < EMA\_DI → Weakening of demand.
Divergences
Price makes a new high, RawDI does not make a higher high → potential weakness in the uptrend.
Price makes a new low, RawDI does not make a lower low → potential exhaustion of the downtrend.
3. Typical Signals (for Beginners)
\ 1. Long Setup\
RawDI crosses zero from below,
RawDI > EMA\_DI (acceleration),
Price closes above a short-term swing high or resistance.
Stop-Loss: just below the last swing low, Take-Profit/Trailing: on reversal signals or fixed R\:R.
2. Short Setup
RawDI crosses zero from above,
RawDI < EMA\_DI (increased selling pressure),
Price closes below a short-term swing low or support.
Stop-Loss: just above the last swing high.
---
4. Notes and Parameters
Recommended Values (Beginners):
Volume EMA (n₍Vol₎) = 13
RawDI window (w) = 20
EMA over DI (n₍DI₎) = 50 (medium-term) or 1 (no smoothing)
Attention:\
NEVER use in isolation. Always in combination with price action analysis (trendlines, support/resistance, candlestick patterns).
Especially during volatile news phases, RawDI can fluctuate strongly → EMA\_DI helps to avoid false signals.
---
Conclusion The Demand Index by James Sibbet is a powerful filter to assess price movements by their volume backing. It shows whether a rally is truly driven by demand or merely a short-term volume anomaly. In combination with classic chart analysis and risk management, it helps to identify robust entry points and potential trend reversals earlier.
Green Trend and Adjustable Chop Zone Highlightallows for indication of when the indicator is green. Green means out of the chop and trending. Red means choppy and no trend.
3 Smoothed Moving Averagethis is 3 sma 9,21,200 especially used for long term crosses or short term crosses as well. when the 9,21 cross under the 200 you sell. When 9,21 cross above 200 you buy.
5 EMA (8/20/50/100/200)This Indicator is a combination of 5 EMA include 8,20,50,100,200.
Instead of adding multiple of them and cluttering the page,i have added all of them to the list.
Disha-Author(VAKA)Hourly Indicator which tells whether the hour is bullish or bearish based on 5/10/15 min candles on each hour if its AM -- and for PM its 10/15/20 min candles
Directional Strength IndexThis indicator is designed to detect the dominant market direction and quantify its strength by aggregating signals across six key timeframes: 1H, 4H, 1D, 3D, 1W, and 1M.
At its core, it uses a SMEMA 'the Simple Moving Average of an EMA' as the main trend reference. This hybrid smoothing method was chosen for its balance: the EMA ensures responsiveness to recent price moves, while the SMA dampens short-term volatility. This makes the SMEMA more stable than a raw EMA and more reactive than a simple SMA, especially in noisy or volatile environments.
For each timeframe, a score between -10 and +10 is calculated. This score reflects:
- the distance of the price from the SMEMA, using ATR as a dynamic threshold
- the number of price deviations above or below the SMEMA
- the slope of the SMEMA, which adjusts the score based on momentum
These six timeframe scores are then combined into a single Global Score, using weighted averages. Three weighting profiles are available depending on your trading horizon:
- Long Term: emphasizes weekly and monthly data
- Swing Trading: gives balanced importance to all timeframes
- Short Term: prioritizes 1H and 4H action
This multi-timeframe aggregation makes the indicator adaptable to different styles while maintaining a consistent logic.
The result is displayed in a table on the chart, showing:
- the trend direction per timeframe (up, down or neutral)
- the strength score per timeframe
- the overall trend direction and strength based on the selected profile
Optional deviation bands based on ATR multiples are also plotted to provide visual context for overextensions relative to the SMEMA.
This indicator is non-repainting and built for objective, trend-based decision making.
Rolling VWAP with 9:15AM Alert✅ Short Description:
A dynamic Rolling VWAP indicator with deviation bands, real-time Buy/Sell alerts, and a special 9:15 AM IST first candle signal for Indian markets.
✅ Long Description (to publish):
Rolling VWAP with Buy/Sell Alerts & 9:15 AM Candle Signal
Published by: Vijay Bhilwade
📧 Contact: vijshr@yahoo.co.in
🔍 Overview:
This indicator calculates a Rolling Volume Weighted Average Price (VWAP) over a dynamically adjustable window based on chart timeframe or custom input. It includes Buy/Sell crossover alerts, customizable standard deviation bands, and a special first candle signal at 9:15 AM IST — highly relevant for Indian markets.
📌 Key Features:
✅ Rolling VWAP based on price × volume in a sliding window
🎯 Buy Signal: When price crosses above VWAP
🔻 Sell Signal: When price crosses below VWAP
📊 Standard Deviation Bands (optional: 1x, 2x, 3x)
🕒 First Candle Alert at 9:15 AM IST for Indian market open
🔔 Alerts supported for all signal types
🛠️ How to Use:
Add the indicator to any chart (1-minute or 5-minute resolution recommended)
Optional: Customize the VWAP window by enabling “Use a fixed time period”
Configure standard deviation bands for volatility tracking
Enable alerts:
“Buy Alert” / “Sell Alert”
“9:15 Buy Alert” / “9:15 Sell Alert” (fires only on the first market candle at 9:15 AM IST)
🇮🇳 Made for Indian Markets
This script includes a dedicated check for the first candle at 9:15 AM IST, used by professional traders in India to plan high-probability trades.
EX Trend Signal – Overlay🚨 Fibonacci Reactor Zone Detected on XAU/USD
Gold is now testing the upper edge of a triangle structure, combined with an explosive Fibonacci cluster from multiple legs.
📍 Key Levels:
• 1.618 = 3,326.00 (Already broken)
• 2.618 = 3,385.66
• 3.618 = 3,422.72
• 4.236 = 3,445.63
🧠 Price is approaching the major confluence zone. A clean breakout above 3,360 could trigger a momentum spike toward 3,420+.
✅ Using EX-LEO Fibo Reactor™ v2 with trendline precision
✅ Triangle compression + EMA crossover
📊 Trading Ideas:
• Buy on breakout above 3,360
• Buy the dip near 3,336–3,317
• Cut below 3,302 if momentum fails
—
💬 Let me know your thoughts — Bullish or Bearish?
⚡ Follow for real-time charts and setups from the Command Table.
#XAUUSD #Gold #Breakout #Fibonacci #PriceAction #TradingView #TechnicalAnalysis #Forex #GoldForecast
Steph's Shadow Supplyindicator for steph's strategy "shadow supply"
decluttered by using AI
inspo from @louisq69
Equal Highs/Lows + SMT Divergences + Range FilterKey Functional Areas
🔹 Equal Highs and Lows Detection
Strict Swing High/Low: Looks for equal swing points and ensures untouched in-between levels.
Regular Equal High/Low: Uses a range filter (default 9.75 points across 5 bars) to validate.
Volume and Time Filtering: You allow user toggles to include only periods with sufficient volume or time of day.
🔹 Swing Point Helpers
Functions isSwingHigh() and isSwingLow() are used for strict equal high/low detection.
🔹 Range Filter
Checks whether the high-low range over the last 5 candles meets a user-defined minimum (ensures significance).
🔹 Moving Averages
Includes optional plotting of 20 and 200 SMA.
🔹 SMT Divergences
Compares pivots between main symbol and two others (default: ES1! and YM1!).
Detects divergence based on opposite directional movement at pivot points.
Customizable color, thickness, and labels.
Fuerza de tendencia / Trend StrengthTrend Strength Indicator – Multimetric Scanner
This indicator evaluates the strength of a bullish trend using 11 widely trusted technical signals. It aggregates price behavior, moving averages, RSI momentum, and Ichimoku Cloud position into a single table with intuitive checkmarks.
Included conditions:
Higher highs and higher lows
RSI trending up
Price above EMA21, SMA50, and SMA200
EMA21 above SMA50 and SMA200
SMA50 above SMA200
Price above the Ichimoku Cloud
Each fulfilled condition adds a point to the Trend Strength Score (0 to 11). This visual summary helps traders quickly assess whether an asset is aligned with a strong upward trend.
Includes language support for English and Spanish.
Indicador de Fuerza de Tendencia – Escáner Multicriterio
Este indicador evalúa la fuerza de una tendencia alcista utilizando 11 señales técnicas ampliamente reconocidas. Resume el comportamiento del precio, medias móviles, impulso del RSI y posición respecto a la Nube de Ichimoku en una tabla con íconos claros.
Condiciones evaluadas:
Máximos y mínimos alcistas
RSI en alza
Precio sobre EMA21, SMA50 y SMA200
EMA21 sobre SMA50 y SMA200
SMA50 sobre SMA200
Precio sobre la Nube de Ichimoku
Cada condición cumplida suma un punto al Puntaje de Fuerza de Tendencia (de 0 a 11). Esta tabla visual permite evaluar rápidamente si un activo presenta una tendencia sólida al alza.
Incluye soporte de idioma inglés y español.
SPX to ES/MES**SPX to ES/MES Level Converter**
This indicator is designed for traders who work with SPX price levels but execute trades on ES or MES futures. It allows you to input SPX-based key levels—such as call walls, put walls, vanna/charm zones, volatility triggers, and profit targets—and automatically converts them into their real-time ES/MES equivalents.
### 📌 Features:
- Manual input of SPX levels (e.g. 5900, 5850, etc.)
- Live conversion to ES or MES levels using a dynamic spot ratio
- Plots include:
- 🟢 Call Wall
- 🔴 Put Wall
- 🟠 Vanna
- 🟣 Charm
- 🟡 Volatility Trigger
- ✅ Long Profit Targets
- ❌ Short Profit Targets
- Smoothing parameter to stabilize visual line display
### 🧠 How it Works:
- The indicator calculates a dynamic ratio between the ES/MES price and your manually input SPX spot.
- This ratio is applied to each SPX level to determine its corresponding ES/MES equivalent.
- It plots each line at its translated futures level so your chart reflects accurate futures-aligned decision points.
> Tip: Adjust the `Current SPX Spot` input daily to match live spot values for maximum precision.
This version does not include text labels on the chart. For a labeled version, check out the updated release with `label.new()` annotations for each level.
**Use case:** Great for traders who generate levels off SPX options flow, but execute on ES/MES contracts intraday.
Created by pogchamp99 | Inspired by SPY → ES conversion by ItsAnders81