Time LevelsTime Levels is a customizable TradingView indicator designed to mark critical intraday price levels based on specific time inputs. This tool helps traders identify significant Open/High/Low/Close (OHLC) levels, support & resistance (S&R) zones, and potential Judas Swing manipulation points—aligned with selected timeframes and adjusted to any time zone via UTC offset.
🔧 Key Features:
OHLC/OLHC Levels: Automatically draws horizontal lines at the candle’s open price for up to four specified time points. Ideal for marking session opens, closes, or key intraday levels.
Support & Resistance Zones: Highlights two time-based S&R levels that can help identify discount and premium pricing zones.
Judas Swing Detection: Marks potential liquidity grab zones (Judas Swings) at three user-defined times, assisting in identifying manipulation and smart money entry points.
Global Timezone Support: Includes a UTC offset input to align levels accurately with your trading session, regardless of your location.
Full Customization: Personalize the color, style (solid, dashed, dotted), and thickness of each line independently for OHLC, S&R, and Judas levels.
🛠️ Use Cases:
New York / London open price tracking
ICT-based SMC level marking
Predefined time-based liquidity level visualizations
Institutional-level price reactions (e.g., during specific market opens)
This indicator is best suited for intraday and short-term (especially ICT) traders looking to bring precision and consistency into their technical analysis framework.
Indicators and strategies
Belk Navigator Screener//@version=5
indicator("Belk Navigator Screener", overlay=true)
// إعدادات أساسية للمؤشر (نفس شروط الدخول والخروج من Belk Navigator)
emaFast = ta.ema(close, 9)
emaSlow = ta.ema(close, 21)
rsi = ta.rsi(close, 14)
macdLine = ta.ema(close, 12) - ta.ema(close, 26)
signalLine = ta.ema(macdLine, 9)
histogram = macdLine - signalLine
volumeSMA = ta.sma(volume, 20)
climaxVolume = volume > (volumeSMA * 2)
buySignal = ta.crossover(emaFast, emaSlow) and rsi > 60 and climaxVolume and histogram > 0
sellSignal = ta.crossunder(emaFast, emaSlow) and rsi < 40 and climaxVolume and histogram < 0
// إشعار بصري واضح
bgcolor(buySignal ? color.new(color.green, 85) : na)
bgcolor(sellSignal ? color.new(color.red, 85) : na)
labelText = buySignal ? "🔔 BUY Signal Detected" : sellSignal ? "⚠️ SELL Signal Detected" : "No Signal"
labelColor = buySignal ? color.green : sellSignal ? color.red : color.gray
label.new(bar_index, high, text=labelText, style=label.style_label_down, textcolor=color.white, size=size.normal, color=labelColor)
// تنبيه تلقائي
alertcondition(buySignal, title="BUY Signal", message="🔔 سهمك الحالي أعطى إشارة شراء")
alertcondition(sellSignal, title="SELL Signal", message="⚠️ سهمك الحالي أعطى إشارة بيع")
Volume Buy/Sell SplitVisually decompose each bar’s total volume into estimated “buy” and “sell” components, so you can instantly see which side—buyers or sellers—dominated on each candle.
Key Features
Total Volume Base
A solid grey histogram shows the absolute volume on every bar.
Buy vs. Sell Split
Buying Volume is calculated as
```volume × (close – low) / (high – low)```
Selling Volume is calculated as
```volume × (high – close) / (high – low)```
These estimates assume that when price closes near the high, more of that bar’s volume was “aggressive buying,” and vice versa.
Dynamic Stacking
The larger of the two components (buying vs. selling) is plotted directly on top of the grey base, in blue (if buying dominates) or yellow (if selling dominates).
The smaller component is plotted above that, in the complementary color, so the full column still represents total volume.
30‑Bar Average Marker
A thin purple line appears at the 30‑bar simple moving average of volume—but only on bars where volume exceeds that average—helping you spot volume spikes at a glance.
How to Interpret
Tall grey columns = high total volume bars.
Blue‑tinted sections = buying pressure; yellow‑tinted sections = selling pressure.
When the blue (buy) portion is larger, buyers had the upper hand; a larger yellow portion indicates sellers dominated.
Purple markers highlight bars where volume is above its 30‑period average, drawing your eye to unusually active sessions.
Usage Notes
Overlay: false (panel below price)
No external inputs to adjust—plug and play.
Ideal for spotting divergences between price and volume aggression, confirming breakouts, or identifying potential exhaustion moves when one side’s volume spikes.
Add this script to your charts to gain clear, color‑coded insights into buying vs. selling activity on every candle.
ICT Unicorn Model AlertA Unicorn setup generally involves:
Liquidity Sweep: Price takes out previous swing high/low.
SMT Divergence (e.g., NQ vs ES or NQ vs YM).
BISI/BSI/SSI block formed.
Entry in OTE (Optimal Trade Entry) zone after a Fair Value Gap (FVG).
Confirmation via Displacement and Market Structure Shift.
RSI Extreme ATR Projection v6 (Historical)Helps give future predictions of where the extremes in the RSI will be. Perfect for scale trading
AltcoinEvreni Entry/TP RR ToolMulti-Entry / Take-Profit Risk-Reward Tool
This indicator is designed to help traders visually plan and manage their trade entries, take-profit targets, stop-loss levels, and risk/reward calculations directly on the chart.
Key Features:
--- Up to 3 customizable entry levels with separate position sizing for each.
--- Up to 5 take-profit (TP) levels, each with individual allocation percentages.
--- Automatic calculation of weighted average entry price.
--- Dynamic risk and potential profit calculation based on your inputs.
--- Visual colored zones for entry, stop-loss, and take-profit areas on the chart.
--- Adjustable leverage and margin for position sizing.
--- Informative floating table displaying position type, entries, stop-loss, risk in $, potential
--- profit in $, and overall RR ratio.
--- Fully customizable appearance (colors, box width, table font size, etc.).
How to Use:
1- Set your trade direction (Long or Short).
2- Enter your planned entry prices, allocation percentages, and stop-loss.
3- Configure your take-profit levels and their respective allocation percentages.
4- Adjust margin, leverage, and visual preferences as desired.
5- The tool will display all relevant zones and statistics, helping you make better risk-managed trading decisions.
Notes:
--- All calculations and drawings update dynamically as you change your parameters.
--- Works on any symbol and timeframe.
--- For educational and planning purposes – always use your own judgment and risk management.
[CUSTOM] Valid Pullbacks with pendingTrendFollow the approach of Valid Pullback & Trend indicator, but I have customized to have a pending line waiting for confirmation of the root source code
This indicator plots valid market structure using internal (gray) and external (red) swing points. It also draws a live blue pending line from the latest confirmed pivot to the expected next pivot, giving a real-time preview of the next possible break of structure (BoS). Clean, non-repainting, and ideal for trend analysis and structure-based strategies Draws the pending line to the developing internal high/low
Once a new pivot is confirmed: - The pendingTrend line is cleared - The direction is remembered - No additional blue lines are drawn until the next internal pivot forms in the opposite direction
EMA 多空排列
Indicator Name: EMA Alignment
Introduction:
This indicator aims to help traders quickly identify potential trend directions by visualizing the alignment of EMAs (Exponential Moving Averages). By displaying both bullish and bearish alignments, this indicator can assist in determining potential buying and selling opportunities in the market.
Key Features:
Bullish and Bearish Alignment Identification:
Bullish Alignment: When shorter-period EMAs are above longer-period EMAs, it indicates a potential uptrend.
Bearish Alignment: When shorter-period EMAs are below longer-period EMAs, it indicates a potential downtrend.
Visual Cues:
Arrow Signals: Arrows are plotted on the chart at the start and end of bullish/bearish alignments, providing a clear visual representation of trend changes.
EMA Curves: Plots EMA curves of different periods, making it easy for users to observe the relationships between EMAs.
Customizable Parameters:
Allows users to customize the EMA periods to suit different trading strategies and market conditions.
Alert Functionality:
Provides alerts at the start and end of bullish/bearish alignments, helping users to promptly capture trading opportunities.
How to Use:
Add this indicator to your TradingView chart.
Customize the EMA periods according to your trading preferences.
Observe the arrow signals and EMA curves on the chart to determine market trends.
Combine with other technical indicators and analysis methods to develop your trading strategy.
Parameter Descriptions:
EMA Periods:
len1: 21
len2: 55
len3: 100
len4: 200
Users can modify these parameters according to their needs.
Suitable Scenarios:
This indicator is suitable for various markets and timeframes, especially for trend-following strategies.
Important Notes:
This indicator is intended as an auxiliary analysis tool and does not guarantee 100% accuracy.
Traders should consider their own risk tolerance and trading experience when using this indicator.
Please practice proper money management and control position risk.
Disclaimer:
This indicator is for educational and informational purposes only and does not constitute any investment advice. Traders are solely responsible for their trading risks.
Find Last 30-Min Nifty Closing Price (VWAP-Based)📌 Purpose:
This indicator helps traders find the accurate last 30-minute closing price for Nifty (or any NSE instrument) by calculating the Volume-Weighted Average Price (VWAP) from 3:00 PM to 3:30 PM IST — mimicking the official NSE close logic.
Unlike the simple closing price (last traded tick at 3:30 PM), the official Nifty close is calculated as the weighted average of all trades in the final 30 minutes. This tool replicates that method for traders and analysts using TradingView.
⚙️ How It Works:
Activates from 3:00 PM to 3:30 PM IST each trading day.
Accumulates price × volume and total volume in that window.
Computes and plots the VWAP (Σ(P×V) / ΣV).
VWAP is updated live between 3:00–3:30 PM, and then locked at 3:30 PM.
A red line displays the final VWAP as your closing price reference.
✅ Why You Should Use It:
Get a more accurate closing reference than the 3:30 PM tick.
Critical for options expiry decisions, backtesting, and daily trade reviews.
Ideal for Nifty, BankNifty, FinNifty, and other NSE indices or stocks.
Especially useful for intraday traders, option buyers/sellers, and analysts.
📊 How to Use:
Works best on 5-minute charts or lower for precise readings.
Add the script and monitor after 3:00 PM — final value will display after 3:30 PM.
Supports all NSE instruments with sufficient intraday volume.
🛠️ Built using Pine Script v5
Timezone: Asia/Kolkata (Indian Standard Time)
Project SynthIntroducing Project Synth !
Inspired by Pace of Tape and Cumulative Delta I created Project Synth in order to aggregate volume flow data across multiple marketsfor two primary reasions:
Traditional orderflow tools are not available on Tradingview. My script attempts to bring an original; calculus-based approach to creating not only an alternative for traditional orderflow tools, but also a more accurate one.
In order to detect genuine buying and selling pressure that cannot be easily manipulated. I did this because while I've always enjoyed concept behind both of those tools, I did not think they captured enough data to be useful. By analyzing assets that move together (positive correlation) and assets that move inversely (negative correlation), my system aims to fix the fundamental problems with those indicators and create an objective view of market sentiment based on aggregate orderflow.
Some more detailed explanations (using QQQ and SQQQ as an example):
Inverse Market Dynamics (QQQ vs SQQQ):
In an inverse market like SQQQ, aggressive buyers hit the ask when they expect the underlying (QQQ) to fall, while passive buyers wait on the bid hoping for cheaper inverse exposure. When QQQ rallies, SQQQ sees aggressive selling (people dumping their bearish bets) hitting bids, while passive sellers sit on the ask hoping to exit at better prices. The aggression flows opposite to the underlying market direction.
Why Utilizing Both Markets Provides A More Accurate Delta:
Watching both QQQ and SQQQ gives cross-validation - real buying pressure in QQQ should coincide with selling pressure in SQQQ. If you see buying in QQQ but also buying in SQQQ, that's a conflicting signal suggesting the move might be artificial or driven by other factors. The inverse relationship acts as a confirmation filter, making false signals much harder to generate.
Multiple Markets = Authentic Pressure:
The more unique, important markets you track, the harder it becomes to create fake delta moves. Real institutional buying/selling pressure affects multiple correlated assets simultaneously in predictable patterns - you can't easily manipulate tech stocks, treasury bonds, VIX, and currency pairs all at once to create a false signal. Each additional market acts as a fraud detection layer, ensuring the delta measurement reflects genuine ecosystem-wide buying and selling pressure rather than isolated manipulation or noise.
My Suggestions For Usage:
In order to keep the explanation simple and short for now, I suggest using it just like a cumulative delta indicator. For example: let's say you were watching CME_MINI:ES1! , and you had a resistance level at 6000. When the price reaches your resistance level, you would be looking for a significant divergence between price and Delta. Price : rising, Delta : falling. This means that even though the price was going up, strong and aggressive sellers are jumping in more and more, this can be used as a confirmation tool for a resistance level.
Notes For Moderators, Authors and Users:
Firstly, to the best of my knowledge, I have not been able to find many tools built around the concept of cumulative delta or pace of tape. While I know there are a couple projects, none to the magnitude of synthetically recreating these tools via an algorithm designed around basic calculus principles. While tools like Volume Delta are built in, they do not attempt to capture an accurate picture of aggregated orderflow from what I understand.
Secondly, it needs to be noted that tool aims to create an approximation of buying and selling pressure. To my knowledge it is not possible to create an accurate full picture, at least not within the limitations of Tradingview.
Trendumkehr-Indikator: RSI / Stoch RSI + Alarme🔔 Alarm Trigger (Trigger)
Type Condition When Useful RSI Long RSI crosses above 30 End of Oversold
RSI Short RSI crosses below 70 End of Overbought Stoch Long %K crosses %D and %K < 20 Dynamic Long Signal Stoch Short %K crosses %D and %K > 80 Dynamic Short Signal
✅ Usage Insert Indicator in TradingView Right-click on Chart or in the Alarm menu '🔔' Select one of the conditions ('RSI Long Signal', etc.) Set the type and tone of the alarm
RSI Zone Highlight + Entry NotesRed bars when RSI ≤ 30, green when RSI ≥ 70; drops “RSI≤30”/“RSI≥70” labels on the entry bar.
Pine v6 • tweak RSI length & thresholds in settings.
DBX PSPKEY MARKET REVERSAL
Find PSP
Alert PSP
Strategy of OscarDBX to found true reversal either on Fx or Indices
200 EMA Cross with Optional Second EMA and CooldownThis indicator uses two EMA lengths of your choosing.
1. This indicator is similar to the most recent published indicator.
2. There is also an alert when price crosses the faster EMA. But not the slower EMA.
3. You will receive all alerts as price crosses the main EMA, not the optional EMA.
6. The is also a "Cooldown" period between alerts so we do not see too many alerts at the same time. Set it to your own number of candles. On the 3m chart I have it set on 25.
8. All the alerts have been combined into one alert. The buy and sell alerts.
9. I use this on the 3m chart with a 30m Williams %r and a 3H Williams %r. The 30 minute WPR should be enough.
10. This indicator is not designed to catch the tops or bottoms of a trend. It is designed to catch the continuation moves. This indicator need a trending market. The trend is your friend. Do not just take any signal from the indicator, it is best to sell when the higher timeframes are trending down.
11. Use at your own risk. Do your own due diligence before taking a trade and do not rely entirely on this indicator.
12. I have not tested this indicator for repainting.
13. Have fun with the indicator and leave a message and vote it up if you like it.
MFI Divergence Indicator with EMA 9 & EMA 45EMA 9 cắt xuống EMA 45 trên MFI → dòng tiền ngắn hạn đang yếu dần → cảnh báo phân phối tiềm ẩn
Chandelier Stop + VWAPChandelier Stop + VWAP, combined script with two indicators to get a trend with the chandelier stops
Vela apertura del mercado (multi-TF)Mark the 10-minute market opening.
Use a multi-timeframe. To use 10-minute or shorter candles,
Hybrid Heikin Ashi OverlayHybrid Heikin Ashi Overlay
I personally like Heikin Ashi for its simplicity in showing clean trends. However, it tends to smooth out price action so much that we sometimes miss key signals from the actual candles.
This indicator overlays Heikin Ashi-style background colors while keeping regular candles intact — giving you the best of both worlds:
• Smoother trend visibility
• No loss of execution precision
• Customizable colors & transparency
🔹 No repainting
🔹 No strategy logic — purely visual
🔹 Designed to reduce clutter and help traders stay focused on structure
Created by: @yug_and_her
Opening Range BreakoutThis script is designed to visually mark the "Opening Range" on your SPX TradingView chart — specifically from 9:30 AM to 9:45 AM ET, which is the first 15 minutes of the U.S. trading session.
It helps traders identify key breakout levels early in the day.
LCCM 2025⚔️ Six-Finger Phantom Grip – Forex Strategy by Thầy Khắc Quí
Inspired by martial arts, this strategy uses six key "fingers" to enter precise, high-probability trades with minimal risk.
🖐️ The 6 Fingers:
1. Trend Direction – Follow the main trend (H4/D1).
2. Key Price Zones – Identify strong support/resistance or supply/demand zones.
3. Price Action Signals – Enter only with confirmation (pin bar, engulfing, etc.).
4. Lot Size & Risk Control – Smart position sizing; avoid overleveraging.
5. Perfect Timing – Patience to strike only at ideal setups.
6. Trader Psychology – Discipline, no FOMO, treat each trade like a martial arts move.
✅ Features:
No indicators, clean charts.
Focus on market structure and price behavior.
High emphasis on mindset and discipline.