First X Hours Weekly High/Low (Custom Week Start)How it works
You define the weekday, hour, and UTC offset for your week start.
Defaults: Monday, 01:00, UTC+1 → exactly your request.
Script converts bar times to that “local” clock, finds the week’s start timestamp, and uses it to:
detect the new week,
define the first X hours window, and
record the high/low inside that window and draw horizontal lines after it closes.
Pivot noktaları ve seviyeleri
MACD, RSI & Stoch + Divergences (RU)WARNING: This script is fully localized in Russian and is supported by the Russian-speaking community. All tooltips, settings, and descriptions are provided in Russian for maximum usability by Russian-speaking users.
This script combines MACD, RSI, and Stochastic oscillators with automatic detection and visualization of regular and hidden divergences. It highlights potential reversal and trend continuation points, draws divergence lines and labels, and provides flexible settings for trend analysis and oscillator calculation. The script also includes advanced session timing and daily change visualization for intraday trading.
Данный скрипт объединяет индикаторы MACD, RSI и Стохастик, а также автоматически определяет и визуализирует обычные и скрытые дивергенции. Он выделяет потенциальные точки разворота и продолжения тренда, строит линии и метки дивергенций, а также предоставляет гибкие настройки для анализа тренда и расчёта осцилляторов.
Скрипт дополнительно отображает временные торговые сессии и динамику дневных изменений для удобства внутридневной торговли. Все параметры снабжены подробными русскоязычными подсказками (тултипами), что делает работу с инструментом максимально понятной и удобной для русскоязычных пользователей.
Pivots Levels @ Sumith.KVThe Pivot Levels helps to identify the Pivot Levels on different Timeframes. The Pivot Levels (Support & Resistance) are displayed as lines as well as tables.
Option is provided to Customize the Lines & Tables.
Also Alerts are integrated which will help us to notify on crossing each Pivot Levels.
This Support & Resistance indicator Strategy can be used across Stocks, Options, Crypto, Commodities etc.
Measured Move Volume XIndicator Description
The "Measured Move Volume X" indicator, developed for TradingView using Pine Script version 6, projects potential price targets based on the measured move concept, where the magnitude of a prior price leg (Leg A) is used to forecast a subsequent move. It overlays translucent boxes on the chart to visualize bullish (green) or bearish (red) price projections, extending them to the right for a user-specified number of bars. The indicator integrates volume analysis (relative to a simple moving average), RSI for momentum, and VWAP for price-volume weighting, combining these into a confidence score to filter entry signals, displayed as triangles on breakouts. Horizontal key level lines (large, medium, small) are drawn at significant price points derived from the measured moves, with customizable thresholds, colors, and styles. Exhaustion hints, shown as orange labels near box extremes, indicate potential reversal points. Anomalous candles, marked with diamond shapes, are identified based on volume spikes and body-to-range ratios. Optional higher timeframe candle coloring enhances context. The indicator is fully customizable through input groups for lookback periods, transparency, and signal weights, making it adaptable to various assets and timeframes.
Adjustment Tips for Optimization
To optimize the "Measured Move Volume X" indicator for specific assets or timeframes, adjust the following input parameters:
Leg A Lookback (default: 14 bars): Increase to 20-30 for volatile markets (e.g., cryptocurrencies) to capture larger price swings; decrease to 5-10 for intraday charts (e.g., stocks) for faster signals.
Extend Box to the Right (default: 30 bars): Extend to 50+ for daily or weekly charts to project further targets; shorten to 10-20 for lower timeframes to reduce clutter.
Volume SMA Length (default: 20) and Relative Volume Threshold (default: 1.5): Lower the threshold to 1.2-1.3 for low-volume assets (e.g., commodities) to detect subtler spikes; raise to 2.0+ for high-volume equities to filter noise. Match SMA length to RSI length for consistency.
RSI Parameters (default: length 14, overbought 70, oversold 30): Set overbought to 80 and oversold to 20 in trending markets to reduce premature exit signals; shorten length to 7-10 for scalping.
Key Level Thresholds (default: large 10%, medium 5%, small 5%): Increase thresholds (e.g., large to 15%) for volatile assets to focus on significant moves; disable medium or small lines to declutter charts.
Confidence Score Weights (default: volume 0.5, VWAP 0.3, RSI 0.2): Increase volume weight (e.g., 0.7) for volume-driven markets like futures; emphasize RSI (e.g., 0.4) for momentum-focused strategies.
Anomaly Detection (default: volume multiplier 1.5, small body ratio 0.2, large body ratio 0.75): Adjust the volume multiplier higher for stricter anomaly detection in noisy markets; fine-tune body-to-range ratios based on asset-specific candle patterns.
Use TradingView’s replay feature to test adjustments on historical data, ensuring settings suit the chosen market and timeframe.
Tips for Using the Indicator
Interpreting Signals: Green upward triangles indicate bullish breakout entries when price exceeds the prior high with a confidence score ≥40; red downward triangles signal bearish breakouts. Use these to identify potential entry points aligned with the projected box targets.
Box Projections: Bullish boxes project upward targets (top of box) equal to the prior leg’s height added to the breakout price; bearish boxes project downward. Monitor price action near box edges for target completion or reversal.
Exhaustion Hints: Orange labels near box tops (bullish) or bottoms (bearish) suggest potential exhaustion when price deviates within the set percentage (default: 5%) and RSI or volume conditions are met. Use these as cues to watch for reversals.
Key Level Lines: Large, medium, and small lines mark significant price levels from box tops/bottoms. Use these as potential support/resistance zones, especially when drawn with high volume (colored differently).
Anomaly Candles: Orange diamonds highlight candles with unusual volume/body characteristics, indicating potential reversals or pauses. Combine with box levels for context.
Higher Timeframe Coloring: Enable to color bars based on higher timeframe candle closures (e.g., 1, 2, 5, or 15 minutes) for added trend context.
Customization: Toggle "Only Show Bullish Moves" to focus on bullish setups. Adjust transparency and line styles for visual clarity. Test settings to balance signal frequency and chart readability.
Inputs: Organized into groups (e.g., "Measured Move Settings") using input.int, input.float, input.color, and input.bool for user customization, with tooltips for clarity.
Calculations: Computes relative volume (ta.sma(volume, volLookback)), VWAP (ta.vwap(hlc3)), RSI (ta.rsi(close, rsiLength)), and prior leg extremes (ta.highest/lowest) using prior bar data ( ) to prevent repainting.
Boxes and Lines: Creates boxes (box.new) for bullish/bearish projections and lines (line.new) for key levels. The f_addLine function manages line arrays (array.new_line), capping at maxLinesCount to avoid clutter.
Confidence Score: Combines volume, VWAP distance, and RSI into a weighted score (confScore), filtering entries (≥40). Rounded for display.
Exhaustion Hints: Functions like f_plotBullExitHint assess price deviation, RSI, and volume decrease, using label.new for dynamic orange labels.
Entry Signals and Plots: plotshape displays triangles for breakouts; plot and hline show VWAP and RSI levels; request.security handles higher timeframe coloring.
Anomaly Detection: Identifies candles with small-body high-volume or large-body average-volume patterns via ratios, plotted as diamonds.
Multi-indicator trading screener with visual overlays V2Special Thanks to community out there.
I just combined famous scripts from different authors.
------------------
More advance and with more protection with indicator priority system which to use under which condition while buying and selling. long or short
------------------
Main Components
1. Order Block Detection
2. Trend Analysis
3. Signal Generators
4. Visual Overlays
Swings as Music - Full octaveEvery level corresponds as every note. plot it from high to low and your chart will show you the levels related to the notes vibrations.
AriVestHub_SMCIntroduction to the AriVestHub_SMC Indicator:
The AriVestHub_SMC indicator is designed and coded based on Smart Money Concepts (SMC). This tool has unique features that you won’t find in any other indicator built around SMC.
I’ve been active in the crypto market since 2019, and besides using the SMC strategy, I also apply several custom strategies in my trading. Personalized versions of these strategies will gradually be shared with you as well.
The main reason for developing this indicator was the gap in existing tools. Many times, setups like Valid Pullback or Inside Bar Candles appear on the chart but are not easily recognizable at first glance, and therefore they get ignored. This often leads to mistakes in Market Structure Mapping right from the beginning, which then causes errors in further analysis and predictions.
Since the SMC strategy is entirely built on market structure, any mistake in identifying its key components basically destroys the reliability of the analysis.
Unlike similar indicators that mostly just draw nice lines and zones on the chart for promotional purposes, AriVestHub_SMC aims to show the reality of the market, not beautify it. Price behavior is the result of trader psychology and the clash of different views—it doesn’t have to look neat and pretty all the time.
This indicator shows exactly what has happened in the market and the possible scenarios ahead. Once you use this tool and study this guide, you’ll clearly feel the difference compared to other common indicators. My main goal in creating AriVestHub_SMC was to give real help to traders—not just to sell or commercialize it.
The AriVestHub_SMC indicator is basically a Market Structure Mapping Engine (SMC Structure Mapping Engine), whose main task is to detect and accurately map market structure movements.
________________________________________
Its key features include:
• BOS / CHoCH – Detecting
• breakouts and changes in market character
• IDM / Pullback – Confirming pivots and valid moves
• OF / OB – Marking key supply and demand zones
• SMT (Smart Money Trap) – Spotting invalid zones and smart money traps
• Liquidity Sweeps / Equal High-Low – Liquidity hunts and reversal setups
• Transfer Option – Automatically correcting structure in Single Leg scenarios
________________________________________
Basic Concepts in the AriVestHub_SMC Strategy
1. Inside Bar
An Inside Bar is a candle (or group of candles) whose price range falls between the High and Low of the previous candle.
In Smart Money and market structure analysis, these candles are usually ignored, and only the main candle is considered.
Simply put, an Inside Bar signals market pause and energy buildup—a place where both buyers and sellers are waiting for price to decide its next direction.
In the picture, you can see candles highlighted in a different color that fall within the main candle range. They should not be treated as independent candles, and all of them together should be considered as one.
________________________________________
2. Pullback
A pullback happens when price makes a temporary return after a main move. Even a single candle can cause it.
In Smart Money, a valid pullback is defined as:
• In an uptrend: if the Low of a candle breaks the Low of the previous candle which is not an Inside Bar, a valid pullback occurs.
• In a downtrend: if the High of a candle breaks the High of the previous candle which is not an Inside Bar, a valid pullback occurs.
Valid pullbacks are the points where the market gathers the energy needed to continue its move.
In the image below, both valid and invalid pullbacks are shown.
________________________________________
3. IDM – Inducement
Inducement is one of the most important concepts in AriVestHub_SMC. Without IDM, no structure in Smart Money can form.
Every valid pullback can be considered an IDM.
There are two types: Major IDM and Minor IDM.
Correctly identifying IDM is critical, because the entire market structure is mapped based on it.
After each BOS or CHoCH, a new HH or LL pivot is only confirmed if the price returns and touches the IDM.
• In an uptrend after BOS: the lowest price of the first valid pullback is the Major IDM, and the last pullback before reaching the Major IDM is the Minor IDM.
• In an uptrend after CHoCH: the highest price of the first valid pullback is the Major IDM, and the last pullback before reaching the Major IDM is the Minor IDM.
The same rules apply in reverse for downtrends.
In this strategy, Major IDM always takes priority.
The image shows different types of IDM, and the same applies for downtrends.
________________________________________
4. BOS – Break of Structure
A Break of Structure happens when price breaks its previous High or Low in the direction of the trend:
• In an uptrend: if the previous HH is broken, BOS occurs.
• In a downtrend: if the previous LL is broken, BOS occurs.
BOS confirms continuation of the current market trend.
________________________________________
5. CHoCH – Change of Character
Change of Character occurs when price moves against the previous trend:
• In an uptrend: if the previous LL is broken, CHoCH occurs.
• In a downtrend: if the previous HH is broken, CHoCH occurs.
CHoCH is usually a signal of a trend reversal or a deep market correction.
The image shows the overall market structure with BOS and CHoCH.
________________________________________
6. Order Flow
Order Flow zones are formed from valid pullbacks and are usually points where price reacts strongly.
They are defined as:
• In an uptrend: Last Selling Momentum Before pushing upside
• In a downtrend: Last Buying Momentum Before pushing dowside
Three main types of Order Flow used in this strategy:
• OF: Decisional (Dec) – The first valid OF after IDM, where the market makes its key decision.
• OF: Extreme (Ext) – The last valid OF after IDM, acting as the final defense of buyers or sellers.
• SMT – Smart Money Trap – All order zones before IDM, and those between Dec and Ext. These usually cause short-term, deceptive reactions and are not valid for trading.
In addition:
• Unmitigated Order Flow – A zone not yet touched, still a liquidity source.
• Mitigated Order Flow – A zone that has been touched, with reduced validity.
• Redefine Order Flow – Identifying internal OFs within a main unmitigated OF for more precise entries.
The image shows the different types of OF.
________________________________________
7. H/L Liquidity Sweep
A Liquidity Sweep happens when price breaks a previous High or Low with a wick, but the candle body fails to close beyond it.
• If the High is broken with a wick but the candle closes below it, a Liquidity Sweep occurs.
• If the Low is broken with a wick but the candle closes above it, a Liquidity Sweep occurs.
These setups are often signs of trapping traders and starting a move in the opposite direction. In fact, Liquidity Sweep points are among the best trading setups.
________________________________________
🔑 Final Note
All these concepts are like puzzle pieces: Inside Bar, Valid Pullback, IDM, BOS, CHoCH, Order Flow, and Liquidity Sweep.
When combined, they create a clear and accurate picture of the market’s real behavior.
________________________________________
Indicator Settings
1. Analyze From … To …
• Set the analysis time range.
• Another use: In ping-pong structures, you can add another copy of the indicator to the chart, set the starting point at the recent HH or LL, and map the internal structure for counter-trend trading.
________________________________________
2. Main
• Confirm CHoCH with wicks → If enabled, only the wick (not the body) is considered for BOS and CHoCH confirmation. Useful for spotting subtle liquidity-based breaks.
• Major / Minor IDM → Choose IDM type.
• Consider Inside Bar → Best kept enabled, so candles inside the previous candle are ignored.
________________________________________
3. Fib Ret
• Min pullback retracement % → Set the minimum retracement level.
• Helps identify valid pullbacks and gives more confidence in trend continuation.
• Meaning: if BOS happens, price must at least retrace by the minimum percentage before expecting the trend to continue.
________________________________________
4. BOS/CHoCH
• Display BOS and CHoCH on the chart with customizable color and style.
________________________________________
5. IDM
• Mark previous IDM : Show past IDMs.
• Mark live IDM : Show current active IDM.
• Customize IDM display options.
________________________________________
6. Pivots
• Display HH and LL pivots.
________________________________________
7. Transferring H/L IDM BOS/CHoCH
• Transfer in case of lack idmB or idmS → When the move is Single Leg and no valid IDM exists in the recent move, HH, LL, and IDM must be shifted and corrected. This adjusts the market structure.
• In case of transferring, remove all previous transferred Market Structure → If enabled, every time HH/LL and IDM need to be shifted, the transfer happens and the market structure is re-analyzed from scratch.
• Important: Often after one transfer, another Single Leg appears. This option keeps adjusting structure automatically, while doing it manually would be slow and error-prone.
________________________________________
8. Order Flow
• Display Decisional, Extreme, and Supply/Demand OFs.
________________________________________
9. H/L Sweeps
• Detect Liquidity Sweeps at Highs and Lows.
• These are very strong reversal setups.
________________________________________
10. Equal High/Low
• Show equal Highs and Lows where liquidity often accumulates.
________________________________________
11. Moving Average
• Add a moving average as a trend filter.
• Option to choose type (SMA/EMA) and length (e.g., 50 or 200).
• Usually:
o MA50 → For mid-term trends, quick confirmation.
o MA200 → For long-term trends, stronger confirmation.
________________________________________
12. Internal Structure (ZigZag)
• Show internal market structure as ZigZag.
________________________________________
13. Inside Bar Candles
• Display Inside Bars in color or with a box.
Direct Message: Telegram.com/ArmanAria
Pivot Pulse [BreakoutOrFakeout]Pivot Pulse
What It Does
Automatically identifies and visualizes key support and resistance levels using pivot point analysis. Creates clean, professional zones where price is likely to react, making it easy to spot potential reversals and breakouts at a glance.
Key Features
🎯 Smart Pivot Detection
Automatically finds significant highs and lows
Adjustable sensitivity for different trading styles
No manual drawing required
📊 Dynamic Zone Visualization
Clean gradient zones show bounce ranges
Red zones for resistance, green for support
Adjustable zone width for precision control
⚡ Breakout Alerts
Yellow triangles mark zone breakouts
Bar highlighting on breakout candles
Built-in alert conditions
✨ Minimalist Design
Shows only the most relevant levels
Ultra-clean visual presentation
Works seamlessly on all timeframes
How to Use
Zone Trading: Enter trades when price touches zones, exit at opposite zone
Breakout Confirmation: Wait for yellow signals when price breaks zones
Risk Management: Place stops just outside zone boundaries
Multi-Timeframe: Check higher timeframes for stronger levels
Settings
Pivot Sensitivity (5-20): Lower = more sensitive, more frequent levels
Zone Width (0.1-1.0%): Adjust for market volatility
Visual Options: Toggle zones, lines, and breakout signals
Best Practices
✅ Works best in ranging markets for zone bounces
✅ Combine with volume for breakout confirmation
✅ Use higher timeframes for stronger levels
✅ Watch for multiple touches (stronger levels)
Visual Guide
🔴 Red = Resistance Zone (potential selling area)
🟢 Green = Support Zone (potential buying area)
🟡 Yellow = Breakout Signal (momentum shift)
Why This Indicator?
Unlike complex indicators that clutter your chart, Pivot Pulse focuses on what matters: clear levels where price actually reacts. The zone-based approach accounts for real market behavior where support and resistance are areas, not exact prices.
Perfect for:
Day traders needing quick level identification
Swing traders planning entries and exits
Beginners learning support/resistance concepts
Anyone wanting cleaner, more professional charts
⚠️ DISCLAIMER: For educational purposes only. Trading involves substantial risk of loss. Past performance does not guarantee future results. Always use proper risk management and never risk more than you can afford to lose.
CPR with EMA & VWAP ConfirmationIF this Indicator not properly alignment in chart.. just click indicator three dot more option and choose pine to scale (Pinned to A or right )
The Full CPR indicator is a complete intraday trading framework that combines Central Pivot Range (CPR) levels, Pivot Targets (R1/R2/R3, S1/S2/S3), and trend confirmations using EMA & VWAP. It is designed for traders who rely on CPR-based setups for intraday trend, breakout, and reversal opportunities.
Key Features
CPR Levels (Pivot, BC, TC): Auto-calculated daily from the previous day’s High, Low, and Close.
Target Zones: Standard targets (R1, R2, S1, S2) plus optional extensions (R3, S3).
EMA & VWAP Filters: Flexible entry confirmations with selectable buffer % and modes:
EMA only
VWAP only
Both
Any
Narrow/Wide CPR Detection: Identifies Narrow CPR (possible trending days) and Wide CPR (possible sideways/range days).
Previous Day High/Low (PDH/PDL): Plotted with shaded zones for support/resistance.
Auto Labels & Tags: Session labels for Pivot, BC, TC, targets, plus CPR Type (NARROW / WIDE / NORMAL).
Shaded Zones: CPR, bullish (R1–R2), bearish (S1–S2), and extension zones filled with transparency controls.
Entry Triggers:
Long entry when price closes above upper CPR band (or BC, depending on mode).
Short entry when price closes below lower CPR band (or TC, depending on mode).
Stoploss (SL): Opposite CPR band is marked as SL.
Target Tracking: Auto-marks T1/T2/T3 hits for both long and short trades.
Alerts: Built-in alerts for Long/Short entry, Target hits, and Stoploss triggers.
How to Use
Trend Days (Narrow CPR): Look for strong breakouts beyond CPR with EMA/VWAP confirmation.
Range Days (Wide CPR): Expect sideways movement; use CPR and PDH/PDL for quick scalps.
Entry & SL:
Go long when price breaks above CPR upper band (SL = lower band).
Go short when price breaks below CPR lower band (SL = upper band).
Targets: Use R1/R2/R3 (bullish) or S1/S2/S3 (bearish) as progressive booking levels.
Disclaimer
This script is for educational purposes only. It does not guarantee profits and should not be considered financial advice. Always backtest thoroughly and use proper risk management before live trading.
Pivot + OHLC【Pivot + OHLC|使い方(日本語)】
■ 概要
前日のOHLCラインと、当日の高値/安値(点線)を表示しつつ、標準ピボット(複数方式)を同一チャートに描画するインジケーターです。デイトレ~スイングでの当日レンジ把握、前日基準の反発/ブレイク確認、ピボット到達の可視化に向きます。
■ 主な機能
- 前日OHLC:前日の「Open/High/Low/Close」を水平ステップラインで描画(色変更可)
- 当日H/L:当日の「高値/安値」を点線のライン&ラベルで表示(最終バーのみ)
- ピボット:Traditional / Fibonacci / Woodie / Classic / DM / Camarilla に対応
- 表示制御:ピボット各レベル(P, R1~R5, S1~S5)の個別ON/OFF、色、ラベル位置を設定可
- パフォーマンス:古いピボットは自動削除(件数を設定可能)
■ 基本の使い方
1) チャートに追加したら、時間軸を普段の取引足に設定します。
2) 「OHLC Resolution」で前日の参照解像度(通常は1D)を選択。
3) 「Hide past OHLC」をONにすると、前日のOHLCは“表示用解像度の最終バー”付近のみ表示され、過去の混雑を抑えます。
4) 「Display resolution (for OHLC)」はOHLCラベルの表示基準となる時間足(通常は1D)です。
5) 「Line Width」で前日OHLC&当日H/L&ピボットの線幅を共通で調整します。
6) ピボットは「Pivot Type」「Pivots Timeframe」「Use Daily-based Values」等で調整します。
- デイトレ用途:Pivot Timeframe=“Auto or Daily”、Use Daily-based Values=ON が手堅い構成です。
7) 「labels」グループで「Show Labels」「Show Prices」「Labels Position(Left/Right)」を調整します。
■ パラメータ早見表
- OHLC Resolution:前日データの参照足(既定:1D)
- Hide past OHLC:過去の前日OHLCを非表示(既定:ON)
- Display resolution (for OHLC):OHLCラベルの表示基準足(既定:1D)
- Open/High/Low/Close:前日ライン色
- Line Width:全ライン共通の太さ
- Show Labels / Show Prices:ラベルの名称/価格の表示切替
- Pivot Type:ピボット方式(Traditional / Fibonacci / Woodie / Classic / DM / Camarilla)
- Pivots Timeframe:ピボット計算のアンカー(Auto / Daily / Weekly / … / Yearly派生)
- Number of Pivots Back:履歴ピボット保持数(古いものは自動削除)
- Use Daily-based Values:日足ベースで安定描画(短期足での未確定ずれを抑制)
- Labels Position:ピボットラベルの左右
■ 表示仕様のポイント
- 当日H/Lは点線ライン+ラベル(日本語表記:当日高値/当日安値)。最新バー時のみ表示・更新。
- 前日OHLCはステップライン。色を変更すると対応するラベル色も自動で連動。
- ピボットは方式により有効なレベル数が異なります(例:DMは少なめ、Traditional/CamarillaはR5/S5まで可)。
- レベルの個別トグル(Show P, Show R1 …)で混雑を抑えられます。
■ 注意事項 / ヒント
- 低スペック環境や極端に長い履歴では「Number of Pivots Back」を下げると安定します。
- 取引所/銘柄のセッションや休日によっては、1日の切替タイミングと当日H/Lの更新に差異が出る場合があります。
- Intradayでの“開場直後~日足切替前後”はリフレッシュによりH/Lやラベル位置が追随します。
- 「Use Daily-based Values」をONにすると、短期足でのピボット再計算による細かなズレを抑制できます。
■ 使いどころ
- 前日安値→当日戻り高値→ピボットR1の順に到達など、日内の“基準面”を連結して相場の節目を確認。
- ブレイク判定時に当日H/Lとピボット到達を併読して、利確/押し目候補を素早く評価。
- 指値戦略では、前日値幅(H-L)とピボット帯の重なりで「厚い」価格帯を抽出。
■ Overview
This indicator overlays prior-day OHLC lines, today’s high/low (dotted), and standard Pivot Points on the same chart. It’s built for quick intraday context: prior-day anchors, current-day range, and pivot confluence.
■ Key Features
- Yesterday’s OHLC: horizontal step-lines with customizable colors
- Today’s High/Low: dynamic dotted lines + labels (shown/updated on the latest bar)
- Pivot Points: Traditional / Fibonacci / Woodie / Classic / DM / Camarilla
- Fine control: per-level toggles (P, R1–R5, S1–S5), colors, label side
- Performance-aware: old pivots are auto-pruned by “Number of Pivots Back”
■ Quick Start
1) Add to your chart and choose your working timeframe.
2) Set “OHLC Resolution” (usually 1D).
3) Turn ON “Hide past OHLC” to keep charts clean by only showing recent prior-day OHLC.
4) “Display resolution (for OHLC)” defines the baseline timeframe for OHLC label placement (usually 1D).
5) Adjust “Line Width” to control all line thicknesses at once.
6) Configure pivots via “Pivot Type”, “Pivots Timeframe”, and “Use Daily-based Values”.
- For day trading, “Auto or Daily” + “Use Daily-based Values = ON” is a robust setup.
7) In “labels”, toggle “Show Labels”, “Show Prices”, and choose “Labels Position (Left/Right)”.
■ Parameter Cheatsheet
- OHLC Resolution: timeframe used for prior-day data (default 1D)
- Hide past OHLC: hide historical prior-day OHLC (default ON)
- Display resolution (for OHLC): baseline for OHLC label placement (default 1D)
- Open/High/Low/Close: colors for the four prior-day lines
- Line Width: global thickness for OHLC / Today H/L / Pivots
- Show Labels / Show Prices: text/price display for labels
- Pivot Type: Traditional / Fibonacci / Woodie / Classic / DM / Camarilla
- Pivots Timeframe: anchor timeframe (Auto / Daily / Weekly / … / Yearly variants)
- Number of Pivots Back: how many historical pivot sets to keep (older ones are deleted)
- Use Daily-based Values: stabilize pivot drawing on intraday charts
- Labels Position: left or right for pivot labels
■ Display Notes
- Today’s H/L are dotted lines with labels (“Today’s High” / “Today’s Low”); they update only on the latest bar.
- Prior-day OHLC uses step-lines; label color automatically follows line color.
- Available pivot levels depend on the chosen type (e.g., DM has fewer, Traditional/Camarilla support up to R5/S5).
- Use per-level toggles (Show P, Show R1, …) to reduce clutter.
■ Tips / Caveats
- On modest hardware or very long histories, reduce “Number of Pivots Back” for stability.
- Exchange sessions/holidays can slightly shift the daily roll and when Today’s H/L updates.
- Around the daily roll, intraday charts may refresh H/L/labels as new data confirms.
- “Use Daily-based Values = ON” helps avoid micro-shifts from frequent intraday recalculations.
■ Practical Use
- Chain prior-day low → intraday pullback high → pivot R1 to frame day structure.
- On breakouts, read Today’s H/L with pivot reaches to judge take-profit / pullback zones.
- For limit orders, intersect prior-day range (H–L) with pivot bands to find “thick” price zones.
Smart MACD FDBEZ / FSBEZ EngineThis Indicator Showing FDBEZ/FSBEZ Aligning with Environmental Condition of EMA 10/20 Crossing and MACD Crossing Zero Line
30s Opening Range with TargetsSimple 30 Second opening range with profit targets and adjustable fill transparency and profit targets
VPT-style Close-to-Close Indicator📈Cumulative momentum (close-to-close × rel. volume) | MA & Donchian optional | ⚡ Alerts
Key Features:
- Tracks cumulative price momentum using close-to-close changes weighted by relative volume.
- Optional smoothed line (SMA/EMA) to identify trend direction.
- Optional Donchian channels to detect potential breakouts and breakdowns.
- Includes alerts for:
- Moving average crosses (bullish/bearish)
- Local maxima/minima in cumulative momentum
- Donchian upper/lower channel breakouts
- Customizable inputs: smoothing length, channel lengths, scaling factor, and visibility toggles.
- Visual cues: line colors indicate momentum direction (green = up, red = down).
- Use Case: Quickly spot momentum shifts, trend direction, and breakout opportunities with clear alerts and visual cues.
دستیار ترید(By Vahid.Jafarzadeh) 🇮🇷🎉 The first Persian indicator on TradingView, released for free to celebrate my daughter's birthday. 🎉
Trading Assistant (By Vahid.Jz) is an all-in-one tool designed to simplify analysis and improve accuracy. It acts as an intelligent trading partner.
Features:
- Market Structure detection
- Multi-Timeframe "Third Eye" analysis
- Professional Order Blocks recognition
- Fair Value Gaps (FVGs) detection
- Customizable alerts
- Fully Persian interface
Free to use. Contact on Telegram: @vahidjz
“Trading is not a destination; it’s the journey — a path of learning, growth, and experience.”
دستیار ترید (By Vahid.Jafarzadeh) 🇮🇷🎉 The first Persian indicator on TradingView, released for free to celebrate my daughter's birthday. 🎉
Trading Assistant (By Vahid.Jz) is an all-in-one tool designed to simplify analysis and improve accuracy. It acts as an intelligent trading partner.
Features:
- Market Structure detection
- Multi-Timeframe "Third Eye" analysis
- Professional Order Blocks recognition
- Fair Value Gaps (FVGs) detection
- Customizable alerts
- Fully Persian interface
Free to use. Contact on Telegram: @vahidjz
“Trading is not a destination; it’s the journey — a path of learning, growth, and experience.”
Equal Highs/LowsPosting this specifically for a special little kid in the comment section of an Instagram post who keeps denying that I made a better equal high/low indicator...
How to use:
Enable the indicator on your chart
Orange lines represent Equal levels.
You can adjust the Equality Threshold in the options menu.
Comment any questions or ideas for improvements.
Chartlense Dashboard (Data, Trend & Levels)Chartlense Dashboard (Data, Trend & Levels)
Overview
This dashboard is designed to solve two common problems for traders: chart clutter and the manual drawing of support and resistance levels . It consolidates critical data from multiple indicators into a clean table overlay and automatically plots the most relevant S&R levels based on recent price action. The primary goal is to provide a clear, at-a-glance overview of the market's structure and data.
It offers both a vertical and horizontal layout to fit any trader's workspace.
Key Concepts & Calculations Explained
This indicator is more than a simple collection of values; it synthesizes data to provide unique insights. Here’s a conceptual look at how its core components work:
Automatic Support & Resistance (Pivot-Based):
The dashed support (green) and resistance (red) lines are not manually drawn. They are dynamically calculated based on the most recent confirmed pivot highs and pivot lows . A pivot is a foundational concept in technical analysis that identifies potential turning points in price action.
How it works: A pivot high is a candle whose `high` is higher than a specific number of candles to its left and right (the "Pivot Lookback" is set to 5 by default in the settings). A pivot low is the inverse. By automatically identifying these confirmed structural points, the script visualizes the most relevant levels of potential supply and demand on the chart.
Relative Volume (RVOL):
This value in the table is not the standard volume. It measures the current bar's volume against its recent average (specifically, `current volume / 10-period simple moving average of volume`).
Interpretation: A reading above 2.0 (indicated by green text) suggests that the current volume is more than double the recent average. This technique is used to identify significant volume spikes, which can add conviction to breakouts or signal potential market climaxes.
Consolidated Data for Context:
Other values displayed in the table, such as the EMAs (9, 20, 200) , Bollinger Bands (20, 2) , RSI (14) , MACD (12, 26, 9) , and VWAP (on intraday charts), use their standard industry calculations. They are included to provide a complete contextual picture without needing to load each indicator separately, saving valuable chart space.
How to Use This in Your Trading
This dashboard is designed as a tool for confluence and context , not as a standalone signal generator. Here are some ways to integrate it into your analysis workflow:
As a Trend Filter: Before considering a trade, quickly glance at the EMAs and the MACD values in the table. A price above the key EMAs and a positive MACD can serve as a quick confirmation that you are aligned with the dominant trend.
To Validate Breakouts: When the price is approaching a key Resistance level (red pivot line), watch the RVOL value . A reading above 2.0 on the breakout candle adds significant confirmation that the move is backed by strong interest. The same logic applies to breakdowns below a support level.
To Spot Potential Reversals: Confluence is key. For example, if the price is testing a Support level (green pivot line) AND the RSI in the table is approaching oversold levels (e.g., near 30), it can signal a higher probability reversal setup.
About This Indicator
This indicator was developed by the team at ChartLense to help traders declutter their charts and focus on the data that matters. We believe in making complex analysis more accessible and organized. We hope this free tool is a valuable addition to your trading process.
Samurai Liquidity Hunter ProA professional tool developed by the Samurai team and based on the logic of volume analysis.
It has unique mathematics on the volume delta for easy detection of places on the chart where the most significant liquidity was removed.
These are real ranges of entry and exit of large money, which give us a real advantage in making trading decisions.
Lau3%Lau3% — adaptive trend, volatility trail, and smart session zones
Lau3% was created to solve two common problems of many indicators: false triggers during sideways markets and unrealistic levels cluttering the chart.
How it works (conceptually):
- Adaptive baselines adjust their speed to volatility. They respond quickly in impulsive phases and smooth out in calm periods, so the trend representation stays relevant.
- Volatility trail acts as a dynamic barrier. When the market changes regime and price crosses this barrier, a signal may appear. To avoid constant noise, the script validates the move so that weak sideways fluctuations don’t trigger signals.
- Two signal modes:
-- Flip — selective signals only on confirmed regime change.
-- Volatility cross — designed for aggressive trading and frequent entries.
- Session zones highlight realistic support and resistance for the current period. They adapt by distance to price and often match areas where stop orders or large limit orders accumulate.
How to read it:
- Flip mode = trend confirmation style.
- Volatility cross = aggressive breakout style.
- Session zones = pressure/interest areas for market participants.
This logic keeps the script useful in both trending and ranging conditions, without overloading the chart with redundant lines.
CHoCH Block Strategy 2Experimental strategy that uses fractals to find pivot points. Based on these pivot points it determines CHoCH points and opening places.
Raid & Imbalance Suite (ICT-inspired)**What it is**
Raid & Imbalance Suite is an invite-only indicator that visualizes liquidity raids and fair-value-gap (FVG) context directly on the chart. It is inspired by ICT concepts but is an independent implementation (not affiliated with ICT).
**What it shows**
• Liquidity raid highlights (sweeps)
• FVG / imbalance context overlays
• Light session / structure context for additional clarity
• Intentional minimalism — internal thresholds/logic are not disclosed
**How to use**
• Works on most symbols and timeframes supported by TradingView indicators
• Use as chart context alongside your own plan and risk management
• This tool does not place trades, generate signals, or guarantee outcomes
**Inputs & Alerts**
• Toggles for raids / FVG / sessions
• Basic visual settings
• Optional alerts for newly detected events
**Access**
This is an **invite-only** script. Request access via TradingView messages (username: @ASevilla28). Access is granted manually to approved users.
**Disclaimer**
For educational/charting purposes only. Not financial advice. No performance guarantees. Markets involve risk. Use at your own discretion.
*(The author is not affiliated with or endorsed by any third party referenced by “ICT-inspired”.)*
NY Option Cut MapNY Option Cut Map は、ニューヨークカット(NYカット)のオプションバリアをチャートに表示するインジケーターです。
FXStreet(https://www.fxstreet.com/)などで公表されるストライク情報をコピペ入力すると、自動でラインとラベルを描画します。大規模オプションは色や太さで強調表示され、相場の注目水準を視覚的に確認できます。
【使い方】
- 「Quick paste」に `価格 金額` を貼り付け(例: `146.00 1.4b`)。
- 入力値に応じて水平ラインとNYカット時間の縦線を表示。
- Backtestモードで過去日付も再現可能。
【注意】
- 外部サイトからの情報を手動入力して利用してください(自動取得はありません)。
- 本スクリプトは招待制公開です。利用希望は管理者までご連絡ください。
NY Option Cut Map is an indicator that visualizes New York option cut (NY cut) barriers on the chart.
By pasting strike information (price and size) from sources such as FXStreet (www.fxstreet.com), the script automatically plots lines and labels. Large option sizes are highlighted with stronger colors and thicker lines, making key levels easier to identify.
【How to use】
- Paste strike data into "Quick paste" in the format: `Price Size` (e.g., `146.00 1.4b`).
- The script will display horizontal lines and the NY cut vertical line.
- Backtest mode allows you to reproduce past dates.
【Notes】
- The script does not fetch data automatically. Please input external information manually.
- This script is invite-only. To use it, please contact the author for approval.
Key Levels: Daily, Weekly, Monthly [BackQuant]Key Levels: Daily, Weekly, Monthly
Map the market’s “memory” in one glance—yesterday’s range, this week’s chosen day high/low, and D/W/M opens—then auto-clean levels once they break.
What it does
This tool plots three families of high-signal reference lines and keeps them tidy as price evolves:
Chosen Day High/Low (per week) — Pick a weekday (e.g., Monday). For each past week, the script records that day’s session high and low and projects them forward for a configurable number of bars. These act like “memory levels” that price often revisits.
Daily / Weekly / Monthly Opens — Plots the opening price of each new day, week, and month with separate styling. These opens frequently behave like magnets/flip lines intraday and anchors for regime on higher timeframes.
Auto-pruning — When price breaks a stored level, the script can automatically remove it to reduce clutter and refocus you on still-active lines. See: (broken levels removed).
Why these levels matter
Liquidity pockets — Prior day’s high/low and the daily open concentrate stops and pending orders. Mapping them quickly reveals likely sweep or fade zones. Example: previous day highs + daily open highlighting liquidity:
Context & regime — Monthly opens frame macro bias; trading above a rising cluster of monthly opens vs. below gives a clean top-down read. Example: monthly-only “macro outlook” view:
Cleaner charts — Auto-remove broken lines so you focus on what still matters right now.
What it plots (at a glance)
Past Chosen Day High/Low for up to N prior weeks (your choice), extended right.
Current Daily Open , Weekly Open , and Monthly Open , each with its own color, label, and forward extension.
Optional short labels (e.g., “Mon High”) or full labels (with week/month info).
How breaks are detected & cleaned
You control both the evidence and the timing of a “break”:
Break uses — Choose Close (more conservative) or Wick (more sensitive).
Inclusive? — If enabled, equality counts (≥ high or ≤ low). If disabled, you need a strict cross.
Allow intraday breaks? — If on, a level can break during the tracked day; if off, the script only counts breaks after the session completes.
Remove Broken Levels — When a break is confirmed, the line/label is deleted automatically. (See the demo: )
Quick start
Pick a Day of Week to Track (e.g., Monday).
Set how many weeks back to show (e.g., 8–10).
Choose how far to extend each family (bars to the right for chosen-day H/L and D/W/M opens).
Decide if a break uses Close or Wick , and whether equality counts.
Toggle Remove Broken Levels to keep the chart clean automatically.
Tips by use-case
Intraday bias — Watch the Daily Open as a magnet/flip. If price gaps above and holds, pullbacks to the daily open often decide direction. Pair with last day’s high/low for sweep→reversal or true breakout cues. See:
Weekly structure — Track the week’s chosen day (e.g., Monday) high/low across prior weeks. If price stalls near a cluster of old “Monday Highs,” look for sweep/reject patterns or continuation on reclaim.
Macro regime — Hide daily/weekly lines and keep only Monthly Opens to read bigger cycles at a glance (BTC/crypto especially). Example:
Customization
Use wicks or bodies for highs/lows (wicks capture extremes; bodies are stricter).
Line style & thickness — solid/dashed/dotted, width 1–5, plus global transparency.
Labels — Abbreviated (“Mon High”, “D Open”) or full (month/week/day info).
Color scheme — Separate colors for highs, lows, and each of D/W/M opens.
Capacity controls — Set how many daily/weekly/monthly opens and how many weeks of chosen-day H/L to keep visible.
What’s under the hood
On your selected weekday, the script records that session’s true high and true low (using wicks or body-based extremes—your choice), then projects a horizontal line forward for the next bars.
At each new day/week/month , it records the opening price and projects that line forward as well.
Each bar, the script checks your “break” rules; once broken, lines/labels are removed if auto-cleaning is on.
Everything updates in real time; past levels don’t repaint after the session finishes.
Recommended presets
Day trading — Weeks back: 6–10; extend D/W opens: 50–100 bars; Break uses: Close ; Inclusive: off; Auto-remove: on.
Swing — Fewer daily opens, more weekly opens (2–6), and 8–12 weeks of chosen-day H/L.
Macro — Show only Monthly Opens (1–6 months), dashed style, thicker lines for clarity.
Reading the examples
Broken lines disappear — decluttering in action:
Macro outlook — monthly opens as cycle rails:
Liquidity map — previous day highs + daily open:
Final note
These are not “signals”—they’re reference points that many participants watch. By standardising how you draw them and automatically clearing the ones that no longer matter, you turn a noisy chart into a focused map: where liquidity likely sits, where price memory lives, and which lines are still in play.