Cumulative Volume Delta with MAfor higher timeframes , i use 9 or 11 ema , and 5 seconds on 1 day. moving average of the cvd not the raw volume . i use it with the impulse macd and find momentum trades or selloffs when moving averages cross .
Candlestick analysis
CVD with Dual MAprefered settings.
Cvd 5 seconds on 1 minute timeframe . this indicator also has moving averages . i prefer the 21 or 30 ema and the 90 or 120 ema for the other. smaller timeframe means you can see more cvd vs using 1 minute on 1 minute . the middle line acts as a definitive decision for a short because if price is also below vwap and is approaching the middle line it is more likely to go down, use the ma crosses to signal some buying momentum rising and they are the ema of the CVD not total raw volume . i use this also on 15 m but with the single cvd moving average . which is separate indicator because of some syntax error idk bro had to make a separate one for higher timeframe.
X PD&FVVisualizes the price's premium or discount relative to a moving average benchmark, highlighting mean-reversion and trend-continuation opportunities. While the underlying math is simple, the application is nuanced and can enhance decision-making in both trending and ranging market conditions.
Core Logic:
This tool calculates a custom **spread value**, defined as the distance between the current price and a chosen exponential moving average (EMA). Specifically:
When the current price is **above** the EMA, the spread is calculated as `low - EMA`.
When the price is **below** the EMA, the spread is calculated as `high - EMA`.
This approach creates a dynamic spread that reflects deviation from the EMA, with histogram bars:
Green when the spread is positive (suggesting a price premium),
Red when the spread is negative (suggesting a discount).
A secondary EMA (default 9-period) is applied to the spread itself, plotted as a smoother line over the histogram. This "EMA of spread" line can be interpreted as a moving reference level for detecting directional shifts in momentum.
Interpretation:
Zero Line = Fair Value: The horizontal zero axis represents equilibrium relative to the moving average. Movement toward or away from this line signals potential shifts in market bias.
Trend Following Use: In trending markets, traders can:
Buy when the spread dips below its EMA (discount within uptrend),
Sell when the spread rises above its EMA (premium within downtrend).
Mean Reversion Use: A return to the zero line (fair value) often acts as an **inflection point**, which traders can monitor for either:
Trend continuation (bounce away from zero), or
Reversal (cross through zero).
Customization:
EMA length (default 50) is adjustable to fit different timeframes or asset volatility.
Opening Candle Indicator V3
Details of this release:
1. Add an alert with two conditions:
- Price breaks the highest candlestick opening and closing above it.
- Price breaks the VWAP indicator value.
2. Integrate the VWAP indicator and the 200 EMA with the main indicator.
3. Display buy and sell signals based on specific conditions related to the VWAP breakout.
4. Increase target lines to five.
5. Most importantly, I added custom windows in the settings to apply the indicator to other markets based on adding the opening and closing times for any market with a daily opening and closing time.
Important note: The second buy signal, which comes after a sell signal appears, is based on two conditions: a close above the high of the previous sell signal and a close above VWAP
Warning - Buy or sell signals are only warning signals and the user is responsible for evaluating and studying this signal.
تفاصيل هذا الإصدار:
1-أضفت تنبيه يحتوي على شرطين
-إختراق السعر الأعلى لشمعة الإفتتاح والإغلاق فوقها.
-إختراق السعر لقيمة مؤشر vwap.
2-دمج مؤشر vwap والمتوسط الأسي 200 مع المؤشرالرئيسي
3- إظهار إشارات الشراء والبيع بشروط معينة مرتبطة بإختراق vwap
4-زيادة خطوط الأهداف إلى خمس.
5- وهي الأهم أضفت نوافذ مخصصة في الاعدادت لتطبيق المؤشر على الأسواق الأخرى بناء على إضافة وقت الإفتتاح والإغلاق لأي سوق له وقت إفتتاح ووقت إغلاق يومي.
ملاحظة مهمة:إشارة الشراء الثانية والتي تأتي بعد ظهور إشارة بيع وضعت بناء على شرطين وهما الاغلاق فوق الاعلى لإشارة البيع السابقة والاغلاق فوق مؤشر VWAP
تحذير-إشارات الشراء أو البيع ليست إلا إشارات تحذيرية والمستخدم هو المسئول عن تقييم ودراسة هذه الإشارة
Impulsive Candle Bar Coloring✅ Detects impulsive candles
✅ Colors the candle bars (green for bullish, red for bearish).
🔍 What You'll See:
Candles with large body above ATR and above average volume:
🟢 Green candles = bullish impulsive
🔴 Red candles = bearish impulsive
ORB Indicator (NYSE Session)NYSE ORB indicator that flags the opening and time-invalidation point for any potential trade setups.
StratNinjaTableStratNinjaTable – Multi-Timeframe The Strat Candle Pattern Table
This Pine Script indicator provides traders with a dynamic table overlay on the chart that displays The Strat candle patterns across multiple selectable timeframes. The table includes:
The candle pattern according to The Strat method (1, 2UP, 2DOWN, 3) for each chosen timeframe
Direction arrows showing bullish (▲), bearish (▼), or neutral (■) candle direction
Real-time countdown timer showing remaining time until the current candle closes, adapting automatically to daily, weekly, monthly, and longer timeframes
User inputs for selecting which timeframes to display and positioning of the table on the chart
The current ticker symbol and chart timeframe displayed prominently
The script is developed using Pine Script version 6 and is inspired by the work of shayy110, who contributed foundational code for The Strat methodology in TradingView.
9 EMA & 15 EMA Crossover Arrows//@version=5
indicator("9 EMA & 15 EMA Crossover Arrows", overlay=true)
// EMA calculations
ema9 = ta.ema(close, 9)
ema15 = ta.ema(close, 15)
// Detect crossovers (on previous candle)
bullishCross = ta.crossover(ema9 , ema15 )
bearishCross = ta.crossunder(ema9 , ema15 )
// Plot arrows on previous candle
plotshape(bullishCross, title="Bullish Cross", location=location.belowbar, color=color.green, style=shape.arrowup, size=size.small, offset=-1)
plotshape(bearishCross, title="Bearish Cross", location=location.abovebar, color=color.red, style=shape.arrowdown, size=size.small, offset=-1)
// Plot EMAs (optional for visual)
plot(ema9, color=color.green, title="9 EMA")
plot(ema15, color=color.orange, title="15 EMA")
20% Rally consecutive GREEN Candle20% + Rally will be marked automatically
as per strategy find buy sell zone
[T] FVG Candles with Distance PriorityThis script will mark out historical FVG candles that are closest to where price is currently.
It will draw a box around the candle body at high/low and midpoint (CE) and extend the boxes right to current price.
The distance priority setting will mark historical FVGs closest to where price is currently at; for the max defined number of boxes.
The levels do not have an option to be marked as mitigated - as this indicator is intended for HTF charts, where these levels are considered "permanent" support and resistance levels.
terils indicatorsVWAP
Yesterday’s High and Low
Today’s High and Low
EMAs (20, 50, 100, 200)
VWAP
Yesterday’s High and Low
Today’s High and Low
EMAs (20, 50, 100, 200)
VWAP + HL + EMAsVWAP
Yesterday’s High and Low
Today’s High and Low
EMAs (20, 50, 100, 200)
VWAP
Yesterday’s High and Low
Today’s High and Low
EMAs (20, 50, 100, 200)
My script//@version=5
indicator("NQ Fib + True Open Strategy ", overlay=true, max_lines_count=500)
// === Inputs ===
fibLevel1 = input.float(0.79, "79% Fib Level", minval=0, maxval=1, step=0.01)
fibLevel2 = input.float(0.85, "85% Fib Level", minval=0, maxval=1, step=0.01)
trueOpenTime = input.session("0930-1000", "True Open Time (EST)")
useVolumeFilter = input(true, "Use Volume Filter")
minVolumeRatio = input.float(1.5, "Volume Spike Ratio", minval=1, step=0.1)
trendLength = input.int(5, "Trend Leg Length", minval=1)
// === Trend Detection ===
upTrend = ta.highest(high, trendLength) > ta.highest(high, trendLength) and
ta.lowest(low, trendLength) > ta.lowest(low, trendLength)
downTrend = ta.lowest(low, trendLength) < ta.lowest(low, trendLength) and
ta.highest(high, trendLength) < ta.highest(high, trendLength)
// === Fibonacci Levels ===
swingHigh = ta.highest(high, 10)
swingLow = ta.lowest(low, 10)
priceRange = swingHigh - swingLow
fib79 = swingLow + priceRange * fibLevel1
fib85 = swingLow + priceRange * fibLevel2
// === True Open Price ===
isTrueOpenTime = time(timeframe.period, trueOpenTime)
var float trueOpenPrice = na
if isTrueOpenTime
trueOpenPrice := open
// === Volume Filter ===
volumeAvg = ta.sma(volume, 20)
validVolume = not useVolumeFilter or (volume >= volumeAvg * minVolumeRatio)
// === Entry Conditions ===
nearFib79 = math.abs(close - fib79) <= ta.atr(14) * 0.25
nearFib85 = math.abs(close - fib85) <= ta.atr(14) * 0.25
nearOpenPrice = not na(trueOpenPrice) and math.abs(close - trueOpenPrice) <= ta.atr(14) * 0.25
buySignal = upTrend and (nearFib79 or nearFib85) and nearOpenPrice and validVolume
sellSignal = downTrend and (nearFib79 or nearFib85) and nearOpenPrice and validVolume
// === Plots ===
plot(fib79, "79% Fib", color.new(color.blue, 0), linewidth=1)
plot(fib85, "85% Fib", color.new(color.purple, 0), linewidth=1)
plot(trueOpenPrice, "True Open Price", color.new(color.orange, 0), linewidth=2)
plotshape(buySignal, "Buy", shape.triangleup, location.belowbar, color.new(color.green, 0), size=size.small)
plotshape(sellSignal, "Sell", shape.triangledown, location.abovebar, color.new(color.red, 0), size=size.small)
MetaSigmaMetaSigma is a cutting-edge indicator designed for traders who thrive on contrarian strategies. Built on the core principle of mean reversion, MetaSigma identifies statistically significant price extremes and signals potential turning points before the market corrects itself.
Accurate Weekly Liquidity Zones + Daily LinesDraws vertical lines for each day of the week
Monday in a unique color
Other days in gray
Marks Buy-Side Liquidity (BSL) — highest high of the last completed week
Marks Sell-Side Liquidity (SSL) — lowest low of the last completed week
Extends BSL/SSL as horizontal lines into the current week
Sonic R + Regression + Supertrend sonic R , polynomial regession , super trend . i love you , i love you
Cambist with RSI DivergenceCambist Indicator with RSI Divergences for Sarmaaya.
It checks Divergences, HA Candles, Trend Direction.
30% Away from 200 SMA AlertWhen stock price is overly extended. This alert is meant to let you know when a reversal is on the way
Customizable Engulfing, Pin Bar, Inside Bar Colorengulfing,pin,inside bar candle which helps to identify these candles for better visualization and understanding
Fusimetria Oracle – The Multi-Timeframe Signal of the Gods🔱 Fusimetria Oracle — Multi-Timeframe Signal of the Gods
Discover a powerful 3-candle pattern detection system, confirmed across **three timeframes** (15m, 30m, and 1h) and filtered by **volume strength**, **body size**, and **New York session activity**.
This indicator is forged under the precision of **Fusimetria**, a brand inspired by the strategic minds of Olympus.
⚙️ Core Features:
- 🔁 **Multi-timeframe confirmation** (custom: default 15m/30m/1h)
- 📊 **Volume filter** (relative to max and average volume)
- 🕒 **NY session filter** to focus on liquidity windows
- 📐 **Body-to-wick ratio check** for clean candles
- ⚡ Instant **bullish (🔺)** and **bearish (🔻)** signals
- 🔔 Ready for alerts and automation
🔍 Tested On:
- ✅ EUR/USD
- ✅ GBP/USD
(Works on any pair or asset. Optimal on Forex during NY session.)
👤 For Traders Who:
- Want **reliable entries** with volume + candle logic
- Appreciate **multi-timeframe analysis** without noise
- Use **price action** and **smart filters** over indicators-only strategies
> 💥 FREE for early access!
> Normal price: €49.99/month
> Get it now before it becomes premium.
🔗 Request access on TradingView (Private Script)
Follow the creator
Instagram: @FusiMetria save to not lose this indicator.