ICT OB/FVG + Envelope (SMA Alertable) - 엔벨로프 신호 추가Here’s a full explanation of the strategy:
Primary Entry
Buy when price breaks above the 40-day moving average (MA40).
Envelope Scale-Out and Re-Entry
After price breaks above the +15% envelope, add to your position.
Sell 30% of your position when price breaks above the +30% envelope.
If price fails to break +30% but instead finds support at +15%, add again.
Likewise, after adding at +30%, if price pulls back to +30% and holds, add once more.
Adjust entries and exits around each envelope band.
Trend Baseline Logic
The 40-day MA is your primary trend line.
Once price is above MA40, the +15% envelope becomes your new “mini-baseline”—you only trade as long as price respects it.
Exit 100% of your position when price reaches the +100% envelope, or if it falls back below that level.
Trend Confirmation
All of this only applies in a “properly aligned” uptrend (MA40 > MA200).
A golden cross of the 40-day MA above the 200-day MA is a very strong entry filter.
Order-Block Entries
Bullish OB Low: if price touches a Bullish Order-Block Low above MA40, treat it as a pullback and buy.
Bearish OB High: if price touches a Bearish Order-Block High above MA40, treat it as a pullback-and-rebound and buy.
Stop-Loss
Stop out if price closes 3–5% below the 40-day MA.
Lower-Band “Bounce” Buys
If price touches the –15% envelope and finds support, buy 10% of your target size—exit all if it breaks below.
If price touches the –30% envelope and holds, buy again—exit all on a breach.
In short, this is a “band-play” strategy within a bullish trend, using MA40 → +15% envelope → +30% envelope → +45% envelope as your stepping-stone baselines, with order-block and lower-band bounces as additional entries. Good luck!
Grafik Paternleri
%MAThis indicator is designed to plot a Simple Moving Average (SMA) along with customizable upper and lower bands (% up/down) on a TradingView chart. Here's a brief but thorough explanation of its functionality:
TL;DR: This script shows percentages above and below customizable moving average timeframes & legnths. It's unique in the sense that it isn't on a separate pane & gives visual clarity against the price in real time HLOC.
1. Main SMA Plot
The script calculates a Simple Moving Average (SMA) based on user-defined inputs:
Timeframe: E.g., daily ("Daily") by default.
Length: E.g., 50 periods by default.
Color: Customizable by the user.
This SMA acts as the central reference line and can be toggled on or off using a "Show" option.
2. Upper and Lower Bands
The script generates two upper bands and two lower bands around the main SMA.
Each band is derived from an SMA (calculated similarly to the main SMA) and offset by a percentage:
Upper Bands: SMA × (1 + distance percentage / 100), e.g., SMA × 1.05 for a 5% offset.
Lower Bands: SMA × (1 - distance percentage / 100), e.g., SMA × 0.95 for a 5% offset.
These bands can indicate potential support, resistance, or volatility ranges.
3. Customization
Users can independently configure:
Visibility: Toggle each band and the main SMA on or off.
Timeframe: Set the timeframe for each SMA calculation.
Length: Define the SMA period.
Distance Percentage: Adjust the offset for each band.
Color: Choose colors for all plotted lines.
This flexibility allows tailored analysis for different trading strategies or timeframes.
4. Plotting
The main SMA and each band are plotted using TradingView’s plot function, but only if their respective "Show" options are enabled.
Lines are displayed with user-specified colors and styles (e.g., the main SMA has a linewidth of 2).
Purpose
This script provides a versatile tool for technical analysis, enabling traders to visualize an SMA with percentage-based bands to identify key price levels or ranges, such as support/resistance, volatility zones, and trends, with extensive customization options.
Position Size Calculator//@version=5
indicator("Position Size Calculator", overlay=false)
sl_points = input.int(20, title="SL worth (Points)", minval=1)
max_risk = input.float(5000.0, title="Max risk aimed ($)")
contract_value_per_point = input.float(1.0, title="Value per Point (e.g., $1/pt for micro US30)")
lot_size = max_risk / (sl_points * contract_value_per_point)
label.new(x=bar_index, y=close,
text="Lot Size: " + str.tostring(lot_size, "#.##"),
style=label.style_label_down,
textcolor=color.white,
size=size.normal,
color=color.blue,
tooltip="This is your calculated lot size based on SL and Risk")
Dual Candle Engulfing (Classic + Heikin Ashi) Indicators based on ris deviations and characteristic K-line patterns
Bar ColorHis BTCUSDT Script to easy way in trade from next moving Guys due to the past levels spot and resistance and also where did price will break and push to upside,
key levels to watch
Take long hold in blue zone see our goal in long time with prefect entries
Like Pivot point
Resistance zone
Support levels
Breakout Points
Keep eye on these levels you may find details more in script
Anchored VWAP with Bands DebugAnchored VWAP with ±1% Bands Starting at 9:00 AM
This indicator calculates an Anchored Volume Weighted Average Price (VWAP) starting precisely at 9:00 AM each trading day (customizable). It plots the VWAP line alongside two dynamic bands set at ±1% above and below the VWAP. The bands help visualize potential support and resistance zones relative to the intraday VWAP anchored at market open.
Key Features:
Anchors VWAP calculation to user-defined start time (default 9:00 AM)
Displays VWAP line in orange for easy tracking
Shows upper and lower dashed bands at ±1% of VWAP in green and red, respectively
Bands update dynamically with each new bar throughout the trading day
Designed for intraday charts (1-minute, 5-minute, etc.)
Use this tool to better assess intraday price action around VWAP and identify potential trading opportunities based on price deviations from the anchored VWAP.
Candle Rating (1–5)This custom TradingView indicator assigns a rating from 1 to 5 to each candlestick on the chart based on the relative position of the close within its high-low range. It provides an at-a-glance visual assessment of candle strength or weakness, which can be useful for gauging intrabar sentiment.
Plotting the Rating
The rating value is displayed above each candle using a label.
Label colors provide intuitive visual cues:
🟩 1 (Green) – Strong bullish
🟢 2 (Lime) – Mild bullish
⚪ 3 (Gray) – Neutral
🟠 4 (Orange) – Mild bearish
🔴 5 (Red) – Strong bearish
Cumulative Volume Delta with Divergence🧠 Core Functionality:
1. Cumulative Volume Delta (CVD):
Purpose: Visualizes the difference between buying and selling pressure over time.
Mechanism:
It uses lower-timeframe volume delta data, retrieved from ta.requestVolumeDelta(), to build a candle-style visualization of the net volume movement.
Plotted candles show whether buying (up volume) or selling (down volume) was dominant within each period.
Teal candles: More buying than selling (CVD up).
Red candles: More selling than buying (CVD down).
Volume Source: Based on intrabar up/down volume approximation from lower timeframes.
🧭 Divergence Detection (New Feature):
2. Regular Bullish Divergence:
Condition:
Price makes a lower low.
CVD (lastVolume) makes a higher low.
Interpretation: Selling pressure is weakening despite price making new lows — a potential reversal signal to the upside.
Displayed As:
Green line and label "Bull" under the CVD at the divergence point.
3. Regular Bearish Divergence:
Condition:
Price makes a higher high.
CVD makes a lower high.
Interpretation: Buying pressure is fading despite price rising — a potential reversal signal to the downside.
Displayed As:
Red line and label "Bear" above the CVD at the divergence point.
🧰 User Controls:
Use custom timeframe: Overrides default volume delta resolution for finer or broader analysis.
Calculate Divergence: Turns the divergence detection on or off.
Adjustable via script inputs.
🔔 Alerts:
Two alert conditions are included:
One for bullish divergence.
One for bearish divergence.
Alerts trigger at the bar where the divergence is confirmed, not where it starts.
📈 Use Case:
This tool is ideal for traders looking to:
Spot early reversals or momentum shifts.
Combine volume analysis with price action.
Time entries or exits more accurately using volume-confirmed divergence.
Prev Day High/Low - RTH OnlyThis indicator displays the previous day’s Regular Trading Hours (RTH) high and low levels on your chart, but only during the next day’s RTH session — keeping your charts clean while highlighting the most relevant price zones.
🔧 Features:
RTH Timing: 09:30 to 16:00 (New York time)
Auto-Detection: Automatically tracks the high and low of each RTH session
Next-Day Visibility: Lines are only shown during the following day’s RTH session
Minimal Chart Clutter: Levels disappear after the session ends, keeping focus on what's relevant
Clear Labels: Optional “Prev High” and “Prev Low” markers at market open
📊 Use Case:
Perfect for intraday and 0DTE options traders who rely on prior session key levels for:
Breakout trades
Reversal setups
Support/resistance confluence
These levels are often respected by institutions and algo flows, making them highly actionable when approached in the next RTH session.
🧠 Why This Matters:
Many traders overpopulate their charts with persistent support/resistance lines. This script keeps only what’s essential — the previous day’s RTH range — and only when it matters most: the following day’s active market hours.
Key Candle Re-Entry ZonesTime zone markups for the 1:25 & 9:25 times. This helps build identity for the pre-market and market analysis
Inside Bar IndicatorFind Inside Bar helps price action traders spot inside bars without having to watch the chart constantly.
High Volume Candle HighlightThis indicator visually highlights individual candles that experience unusually high trading volume. A candle is marked if its volume exceeds a user-defined multiple of the average volume over a set period (default: 20 bars). Instead of coloring the background, this script specifically colors only the candle body, making it easy to spot volume spikes without cluttering the chart.
StarterPack MAsThis indicator includes 5 moving averages widely used in modern price action analysis:
EMA 9 (green): captures recent candle momentum
SMA 20 (gold): classic reference for pullbacks
SMA 50 (red): dynamic short- to mid-term support and resistance
SMA 200 (blue): long-term trend foundation
EMA 400 (pink): used by traders tracking institutional moves
Perfect for identifying trend direction, balance zones, and key confluence areas.
Use it with strategy and discipline. Moving averages show the path — execution is up to you.
EMA 9/21 Cross Alerts with RSI Filter and Push AlertsSirve para compra y venta de futuros en 5m. Se entra cuand la EMA9 cruza hacia arriba la EMA 21.
Whole Dollar RaysThis script plots horizontal rays at every whole dollar level above and below the current price. It visually emphasizes key psychological price levels to help traders identify potential areas of support, resistance, and breakout zones.
EMA Validation4 EMA with Support/Resistance Validation (EMA-V)
This indicator displays four Exponential Moving Averages (EMAs) with customizable periods (default: 21, 50, 100, 200) and visually validates their roles as support or resistance.
Each EMA changes color based on its behavior: green for respected support , red for respected resistance, or default colors when unvalidated.
Ideal for traders seeking to identify reliable support and resistance levels across multiple timeframes.
Separador SemanalSeparate weekly, that's right, separate weekly but not only that but separate and I have to write this so that tw lets me publish it.
Traffic Lite [B.A.S.E.]--- English Version ---
Indicator “Traffic Lite ” is designed to find potential long (buy) entry points and take-profit exits. It implements:
- Red signal — more aggressive, gives more entries (higher risk, but potentially more trades).
- Yellow signal — more “balanced” logic, provides slightly more “refined” entries.
When the indicator detects a suitable situation (according to the “red” or “yellow” logic), it generates a buy signal. After entry:
- A target (take-profit) is calculated.
- If necessary, a mechanism of averaging (additional buys) is activated.
- When the price reaches the defined take-profit, the trade is considered closed.
Additionally, the indicator keeps track of statistics:
- How many trades have been closed.
- The maximum time spent in a trade (in hours).
- The total profit in percentage.
- How many trades reached the 1st, 2nd, or 3rd averaging.
- The maximum recorded drawdown.
There are also Telegram settings for automatically sending all signals (entry, averaging, exit) to a bot/chat.
Input parameters and their meaning (Parameters tab)
- Signal type: Red / Yellow / Combined.
- Parameter D1 and D2: set thresholds for yellow and red signals.
- Close Y Param: additional exit logic for yellow signal.
- Main entry, % of deposit: first entry volume.
- Enable averaging? up to three additional buys.
- Averaging parameters: drop levels and volumes for 1st, 2nd, and 3rd averaging.
- Take Profit %: profit target.
- Telegram settings: Chat ID and Thread ID for notifications.
How signals are formed
- Red signal: triggers quicker, higher risk of false entries.
- Yellow signal: more balanced and less frequent.
- Combined mode: picks the first detected signal if both appear.
Averaging
- Triggers on price drops.
- Recalculates average price and take-profit.
- Up to three steps of averaging.
Exiting a trade
- When take-profit is reached, the trade closes with a “CLOSE” marker.
Statistics table
- Number of trades closed, max time in trade, total profit, number of averagings, max drawdown.
Practical application
1. Select signal type.
2. Configure entry, averaging, and take-profit parameters.
3. Set Telegram settings.
4. Click “OK”.
After this, the chart will show entry arrows, averaging labels, and exit markers.
Alerts
- Sends detailed notifications to Telegram via webhook.
- Allows creating custom alerts in TradingView.
Important notes
- A new trade won’t open until the previous one is closed.
- Averaging activates only when price drops as configured.
Summary
Red — aggressive and frequent. Yellow — moderate and reliable. The indicator automates entry detection, averaging, and take-profit exits while displaying key data on the chart.
--- Русская версия ---
Индикатор «Traffic Lite » предназначен для нахождения потенциальных моментов входа в лонг (покупку) и выхода по тейк-профиту. В нём реализованы:
- Красный сигнал — более агрессивный, чаще даёт входы (риск выше, но и потенциально сделок больше).
- Жёлтый сигнал — более «сбалансированный» по логике, даёт чуть более «выверенные» входы.
Когда индикатор видит подходящую ситуацию (согласно «красной» или «жёлтой» логике), он подаёт сигнал на покупку. После входа:
- Рассчитывается цель (тейк-профит).
- При необходимости включается механизм усреднений (добавочных покупок).
- Когда цена доходит до заданного тейк-профита, сделка считается закрытой.
Дополнительно ведётся подсчёт статистики:
- Сколько сделок закрыто.
- Максимальное время в сделке (в часах).
- Совокупный профит (в %).
- Сколько сделок дошли до 1, 2 или 3 усреднений.
- Максимальная зафиксированная просадка.
Также предусмотрены настройки Telegram для отправки всех сигналов (вход, усреднение, выход) в бот/чат.
Входные параметры и их значение (вкладка «Параметры»)
- Тип сигнала: Красный / Жёлтый / Совместный.
- Parameter D1 и D2: задают пороги для появления жёлтых и красных сигналов.
- Close Y Param: дополнительный фильтр выхода для жёлтого сигнала.
- Основной вход, % от депозита: объём первого входа.
- Включить усреднения? до трёх дополнительных покупок.
- Параметры усреднений: уровни падения и объёмы добавок для 1, 2 и 3 усреднений.
- Take Profit %: цель прибыли.
- Настройки Telegram: ID чата и Thread ID для уведомлений.
Как формируются сигналы
- Красный сигнал: чаще, выше риск ложных входов.
- Жёлтый сигнал: реже, но более надёжно.
- Совместный режим: выбирается первый из совпавших сигналов.
Усреднения
- Активация при падении цены.
- Пересчёт средней цены и тейк-профита.
- До трёх шагов усреднения.
Выход из сделки
- При достижении тейк-профита сделка закрывается, появляется «CLOSE».
Таблица статистики
- Кол-во закрытых сделок, макс. время в сделке, общий профит, количество усреднений, максимальная просадка.
Практическое применение
1. Выбрать тип сигнала.
2. Настроить параметры входа, усреднений, тейк-профита.
3. Указать настройки Telegram.
4. Нажать «ОК».
После этого на графике будут появляться метки входов, усреднений и выходов.
Оповещения
- Отправка в Telegram через webhook.
- Настройка кастомных алертов в TradingView.
Важные нюансы
- Новая сделка откроется только после закрытия предыдущей.
- Усреднения активируются при фактическом падении цены.
Итог
Красный — агрессивно и часто, Жёлтый — умеренно и надёжно. Индикатор автоматизирует процесс поиска входов, усреднений и выхода, отображая данные на графике.
Complete Horizontal Pivot Lines with Color Controlpivot max min (numberbar=?) select the number of candles you want to follow and focus on the max and min, the control points of the impulses, and see better what is happening by giving you the key levels
MASTER BUY & SELL 5m TFThe "MASTER BUY & SELL 5m TF" is a powerful trading indicator designed for the 5-minute timeframe, helping traders identify potential buy and sell opportunities in the market. This indicator combines the Exponential Moving Average (EMA), Relative Strength Index (RSI), and Vortex Indicator to generate reliable signals with confirmation, reducing false positives and enhancing trading decisions.
Opening Range Retest█ OVERVIEW
This indicator shows the opening range as a box. It also draws markers and triggers alerts when the opening range is retested. The opening range time is configurable, as is the period of time that must elapse before each return to the opening range is considered a retest.
█ FEATURES
Opening range time configurable in bars or minutes
Configurable "resting" period between the end of the opening range or since the last retest before a new retest is considered valid
Configurable tolerance so that a retest can trigger sooner
Active time range can be used to filter alerts and markers to a specific time window
Visual box showing the opening range, which can be optionally limited to the above-mentioned active time window
Well-documented, high-quality, open-source code for those interested
█ CONCEPTS
This indicator can be used for an opening range retest trading strategy, where long or short positions are taken on the retest of the opening range.
The opening range can be user-configured, so it is suitable for use with any opening range time period (e.g., 1-min, 5-min, 15-min, etc.).
The markers and alerts are equivalent, in the sense that whenever a marker appears, an alert will also trigger (assuming the user has set an alert up).
The alert active time range is simply used as a filter for markers and alerts, meaning that these will not draw or trigger outside of the specified time range.
█ LIMITATIONS
The indicator is intended for equities that have a highly active regular market open. For other security types, it will draw the opening range box from whenever TradingView specifies the market open time.
Price Compression & Expansion Bars (Final Adjusted)In price compression zones, bullish candles are displayed with a white border only, while bearish candles are filled with white.
In price expansion zones, bullish candles are displayed with a blue border only, while bearish candles are filled with blue.
In all other cases, bearish candles are shown in red and bullish candles in green.
The ATR multipliers used to define compression and expansion zones are set to 1 for compression and 1.5 for expansion.
Pro Trading Art - Swing Trading Master V2Pro Trading Art - Swing Trading Master V2
The Pro Trading Art - Swing Trading Master V2 is an exclusive, invite-only strategy crafted for traders aiming to master swing trading across various markets. This advanced strategy combines sophisticated price action analysis with momentum and volatility indicators to deliver precise entry and exit signals, optimized for both bullish and bearish market conditions.
Key Features:
Advanced Swing Detection: Employs a proprietary blend of moving averages, momentum oscillators, and volatility filters to identify high-probability swing trade setups.
Flexible Position Sizing: Allows customizable position sizes and risk-reward ratios, enabling traders to tailor the strategy to their risk tolerance.
Dynamic Exit Strategies: Includes adjustable take-profit and stop-loss levels, with options for percentage-based exits and an intelligent trailing stop to maximize gains.
User-Friendly Visuals: Provides clear buy and sell signals on the chart, enhanced by color-coded zones to highlight trending and ranging markets.
How to Use:
Apply the Swing Trading Master V2 strategy to your preferred chart on TradingView.
Configure input parameters, such as signal sensitivity, stop-loss, and take-profit levels, to match your trading preferences.
Watch for buy/sell signals and monitor color-coded chart zones to guide your trading decisions.
Leverage the trailing stop feature to protect profits during trending markets.
This strategy is perfect for traders seeking to capture medium-term price swings with a disciplined, systematic approach. Access is restricted to invited users, ensuring a premium and exclusive trading experience.