Pullback Score Oscillator - Options 1M### Code Explanation for Pullback Score Oscillator - Options 1M
#### Overview
The **Pullback Score Oscillator - Options 1M** is a custom Pine Script v5 indicator designed for 1-minute charts of BankNifty and Nifty options on TradingView. It helps traders identify pullback opportunities near the Exponential Moving Average (EMA) with a scoring system, providing visual and analytical tools to time entries and exits during the NSE trading session (9:15 AM–3:30 PM IST). Ideal for options traders, it combines trend, bias, and momentum analysis to filter noise and enhance decision-making.
#### Purpose
This oscillator detects pullbacks—price reversals toward the EMA (50 or 200 periods, user-selectable)—and assigns a score (0–130) based on multiple factors. It visually highlights strong buy/sell signals with a histogram and table, offering a rule-based approach to trading BankNifty/Nifty options, adaptable to changing strike prices.
#### Key Features
1. **Trend Analysis**:
- Based on EMA (50 or 200, selectable via settings).
- Up (green) if `close >= EMA - 0.3%`, Down (red) if `close < EMA + 0.3%`, Neutral (gray) within ±0.3%.
- Purpose: Filters pullbacks by trend direction, reducing false signals in sideways markets.
2. **Bias Indicator**:
- Linked to VWAP and opening price (9:15 AM IST).
- Bearish (red) if `close < VWAP` and `close < openPrice`, Bullish (green) if `close > VWAP` and `close > openPrice`, Neutral (gray) otherwise.
- Toggleable volume-weighted momentum with ROC (Rate of Change, 5-period) and 3-bar volume spikes (`volume > SMA(indexVolume, 10) * 1.5`) for reversals.
- Purpose: Provides market context, confirming pullback strength with momentum shifts.
3. **Signal Generation**:
- “Buy Pullback” (lime) or “Short Pullback” (fuchsia) when score ≥50 and price is within 2.5% of EMA, with matching trend (Up/Down).
- Other states: “Wait”, “Near Pullback”, “No Pullback”, or “No Trend” for weaker conditions.
- Purpose: Pinpoints actionable pullback entries near EMA, aligned with trend.
4. **Score Calculation**:
- Range: 0–130, combining EMA proximity (40/20), Volume (20/0), ADX (10/0), Waldo RSI (40/20/0), and Fair Value Gap (FVG, 20/0).
- Colors: Dark Green (≥70, buy), Green (50–69, buy), Dark Red (≥70, sell), Orange (50–69, sell), Gray (<50, neutral).
- Purpose: Quantifies pullback strength, guiding trade confidence.
5. **Histogram Visualization**:
- Plots score (scaled 0–50) as a histogram: lime for `buyScore ≥ 50`, fuchsia for `sellScore ≥ 50`, gray otherwise.
- Includes green (buy) and purple (sell) triangles for pullback signals.
- Flashes for 3 bars on color change (gray to lime, gray to fuchsia, lime/fuchsia to gray) if `histogramFlashing=true`.
- Purpose: Offers a quick visual cue for momentum shifts, adjustable via toggle.
6. **Table Display**:
- 3 rows, 3 columns: Signal, Score, Bias | Trend.
- Font size toggle (`tiny`/`small`, default `small`), no borders for compactness.
- Purpose: Summarizes key data in a glance, color-coded for clarity.
7. **Customization**:
- Trading Style: Aggressive (lower thresholds), Moderate (default), Conservative (higher thresholds).
- EMA Period: 50 or 200.
- RSI Periods: 25/125 or 50/200.
- Volume Multiplier: 1.3 or 1.5.
- ADX Threshold: 20 or 25.
- FVG Lookback: 3 or 5 bars.
- Chart Type: Options or Futures.
- Extend Signals: Toggle to extend beyond 11:00 AM IST.
- Debug Plots: Show component scores (EMA, Volume, ADX, RSI, FVG).
- Flashing Toggle: Enable/disable histogram flashing.
#### How to Use
1. **Setup**:
- Add the indicator to a 1-minute BankNifty/Nifty options chart in TradingView.
- Ensure `NSE:BANKNIFTY` or `NSE:NIFTY` index data is available.
- Set `Chart Type` to “Options” for call/put signals.
2. **Configuration**:
- Select `EMA Period` (50 or 200) based on your trend preference.
- Choose `Trading Style` (Moderate recommended for balance).
- Enable `Histogram Flashing` for visual alerts on color shifts.
- Customize `Score Colors` for visibility.
3. **Trading**:
- Watch for “Buy Pullback” (lime) or “Short Pullback” (fuchsia) in the Signal row, confirmed by Bias (Bullish/Up or Bearish/Down) and Trend.
- Check Score ≥50 (Green/Orange) for strength, flashing histogram for momentum shifts.
- Enter buy calls on “Buy Pullback” with Bullish/Up, short calls on “Short Pullback” with Bearish/Down.
- Set stop-loss (5–10 points) and target (20–50 points) based on volatility.
4. **Alerts**:
- Set alerts for “Buy Pullback” and “Sell Pullback” in TradingView, active during trading hours.
#### Notes
- Optimized for NSE options trading (9:15 AM–3:30 PM IST).
- Flashing enhances visibility but can be disabled if distracting.
- No per-strike setup needed—works across strike changes.
- Debug plots help fine-tune components (EMA, Volume, ADX, RSI, FVG).
#### Version History
- Developed: July 2025 by .
- Last Updated: July 22, 2025.
#### Customization Tips for Users
- **Trend Sensitivity**: Use EMA 200 for longer trends, 50 for short-term moves.
- **Noise Reduction**: Toggle `useVolumeMomentum=false` in choppy markets.
- **Visual Preference**: Switch `tableFontSize` to `tiny` for compact displays, disable `histogramFlashing` if needed.
指標和策略
Advanced VWAP & FVG with ICT Market Structure by NabsAdvanced VWAP & FVG with ICT Market Structure by Nabs
FVG 9:31–10:00 AM ETFVG 9:31–10:00 AM ET - Script Description
What This Script Does
This indicator finds **Fair Value Gaps (FVGs)** that form during the first 29 minutes of the U.S. stock market (9:31 AM to 10:00 AM Eastern Time). A Fair Value Gap is a price imbalance where there's a gap between candles that often becomes an important support or resistance level.
Key Features:
- **Time Window**: Only looks for FVGs between 9:31-10:00 AM ET (most important opening period)
- **One Per Day**: Finds only the first FVG that forms in this time window each day
- **Visual Display**: Draws a purple box around the gap with a clear "FVG" label
- **Price Tracking**: Monitors when price comes back to test the gap level
- **Alert System**: Sends notifications when price returns to the FVG zone
How FVGs Are Detected:
- **Bullish FVG**: When there's a gap up (low of middle candle is above high of 3rd candle back)
- **Bearish FVG**: When there's a gap down (high of middle candle is below low of 3rd candle back)
The 9:31-10:00 AM window is chosen because this is when institutions and algorithms create their biggest price moves right after market open, making these gaps very reliable.
Customization Options
User Settings
Extend FVG Box (Bars)
- **What it does**: Makes the purple box longer to the right
- **Default**: 0 (box ends right after the gap forms)
- **Options**: Any number from 0 to 100+
- **When to use**:
- Keep at 0 for clean historical view
- Set to 10-20 to track the gap during the current session
- Set higher for longer reference
Code Settings (Can Be Changed)
Time Window
- **Start**: 9:31 AM Eastern Time
- **End**: 10:00 AM Eastern Time
- **Can modify**: Change the hour/minute numbers in the code
Visual Style
- **Color**: Purple with see-through background
- **Label**: Shows "FVG" text in white
- **Can modify**: Change colors and transparency in the code
How to Use:
Setup
Chart Settings
1. Use 1-minute, 5-minute, or 15-minute charts (works best on these timeframes)
2. Apply to liquid markets like ES, NQ, major stocks, or forex pairs
3. Set the "Extend FVG Box" to your preference (start with 0 or 10)
What You'll See
- A purple box appears when an FVG forms during 9:31-10:00 AM
- Box shows the exact price levels of the gap
- "FVG" label appears on the box
- Only one FVG per day will be marked
Trading Strategies
Basic FVG Trading
1. **Wait for Formation**: Let the purple box appear during 9:31-10:00 AM
2. **Watch Price Movement**: See if price moves away from the gap
3. **Enter on Retest**: When price comes back to the purple box area, consider entering
4. **Trade Direction**:
- Bullish FVG = look for long opportunities when price retests
- Bearish FVG = look for short opportunities when price retests
Entry Methods
- **Bounce Play**: Enter when price touches the FVG box and bounces away
- **Break Play**: Enter if price strongly breaks through the FVG box
- **Rejection Play**: Enter opposite direction if price gets rejected at the FVG
Risk Management
Stop Losses
- Place stops just outside the FVG box (a few ticks beyond the gap)
- If trading a bounce, stop goes on opposite side of the gap
- If trading a break, stop goes back inside the gap
Position Sizing
- Start small until you understand how FVGs work in your market
- Bigger gaps = smaller position size (more risk)
- Smaller gaps = can use larger position size
Profit Targets
- Take profits at obvious levels like round numbers, previous highs/lows
- Consider taking half profits at 1:1 risk/reward ratio
- Let some position run if the move is strong
Best Practices
When It Works Best
- High-volume stocks and futures (ES, NQ work great)
- Normal market days without major news during the 9:31-10:00 window
- When there's clear institutional activity in the opening period
When to Be Careful
- Low-volume stocks or markets
- Major economic news releases during the time window
- Market holidays when volume is low
- Very choppy or sideways days
Alert Usage
- The script will alert you when price comes back to test the FVG
- Don't trade the alert blindly - always check the current market situation
- Use the alert as a heads-up to start watching the setup more closely
Tips for Success
- The earlier the FVG forms in the 9:31-10:00 window, often the more significant it is
- FVGs that form with high volume are usually more reliable
- Always consider the overall market direction - don't fight the main trend
- Practice on paper first to understand how FVGs behave in your chosen market
🔗 Works Best With:
✅ Liquidity Levels — Smart Swing Lows: Spot key structural lows that can fuel stop hunts and reversals.
✅ ICT Turtle Soup — Liquidity Reversal: Add a classic reversal pattern to your toolkit to catch fakeouts cleanly.
✅ ICT SMC Liquidity Grabs and OBs- Liquidity Grabs, Order Block Zones, and Fibonacci OTE Levels, allowing traders to identify institutional entry models with clean, rule-based visual signals.
This script is most valuable for day traders who want to catch institutional moves right after market open, but it can also help swing traders identify important intraday levels.
✅ ICT Macro Zones (Grey Box Version)- It tracks real-time highs and lows for each Silver Bullet session.
✅ Weekly Opening Gap (cryptonnnite)
Trendex SignalSuite by JaeheeTrendex SignalSuite — by Jaehee
An all-in-one visual signal system designed to clearly display entry signals, profit/loss zones, and short-term momentum in one clean layout.
Key Features
- ATR-based trailing logic generates long and short signals after momentum shifts
- Auto-drawing TP/SL boxes with exact price levels and percentage labels
- Fixed risk-reward system for each position, calculated using ATR
- Elegant twisted ribbon that flows with price trend and adds visual direction
- Signal markers (✧) appear when price crosses the adaptive trailing line
How to Use
Watch for ✧ symbols to enter trades.
Each signal draws a complete risk zone (entry, TP, SL) for intuitive trade management.
Ribbons support directional bias; boxes help estimate risk/reward visually.
- Designed for discretionary trading
- Signal-based only — no alerts
- Does not repaint
⚠️ This indicator is not a strategy and does not support automated trading.
It is intended for educational purposes and discretionary trade planning, by visually displaying entry, take-profit, and stop-loss zones, for manual use only.
SPZ/DMZ DSI Digital Smart Invest v3DSI DIGITAL SMART INVEST v3 is a powerful Smart Money tool that auto-detects and draws Supply Zones (SPZ) and Demand Zones (DMZ) based on multi-timeframe candle logic (LTF, 1H, 1D).
📌 What it does:
Highlights institutional areas of interest (accumulation/distribution);
Higher timeframe zones = stronger influence;
Retested zones are updated dynamically;
Fully customizable visual styles and labels.
🎯 How to use:
SPZ above price = look for short on retest;
DMZ below price = long entry on bounce;
Combine with CHoCH/BOS for entry confirmation;
Works on crypto, forex, and stock markets.
💡 Perfect for: Order Block / Smart Money / ICT / PA-based trading strategies.
DSI DIGITAL SMART INVEST v3 — профессиональный индикатор, который автоматически определяет и строит зоны спроса (DMZ) и предложения (SPZ) на основе свечных паттернов. Использует таймфреймы: LTF, 1H и 1D, что позволяет учитывать как локальные, так и глобальные уровни SMC (Smart Money Concepts).
📌 Что умеет:
Выделяет области, откуда крупные игроки могут набирать или распределять позицию;
Учитывает силу зоны в зависимости от ТФ (чем выше — тем сильнее);
Обновляет зоны при ретесте;
Настраиваемые цвета и подписи на графике.
🎯 Как использовать:
SPZ выше цены — ищем short при ретесте;
DMZ ниже цены — ищем long при отскоке;
Совмещайте с CHoCH/BOS для подтверждения;
Работает на всех рынках: крипта, форекс, фондовый.
💡 Подходит для торговли по стратегии: Order Block / SMC / ICT / Price Action.
The Oracle by JaeheeThe Oracle — by Jaehee
A clean and intuitive signal engine that identifies directional shifts using a smooth range filter.
Rather than reacting to every minor fluctuation, this indicator waits for confirmed momentum transitions and marks them with minimal ✧ symbols on the chart.
### Key Features
- Adaptive range filter that smooths volatility while retaining directional intent
- Long/short signal logic that filters out noise and focuses on sustained bias
- Minimal chart interference — no overlays, no background fills, just simple entry markers
- Configurable sensitivity for tuning to different asset volatility levels
### How to Use
Use the ✧ symbols to identify when momentum has genuinely flipped after a trend.
Combine with your own strategy or as a confirmation layer within multi-timeframe systems.
- No repainting
- No alerts
- Discreet, signal-only design
CryptoNomad's BTCUSDT.P Binance Futures 10m Strategy V2.0Welcome to Version 2 – the ultimate evolution of our TradingView strategy, crafted for serious traders who demand precision, automation, and adaptability. Built to work seamlessly with 3Commas, this script delivers rapid-fire alerts with advanced features for dynamic markets.
🚀 What’s New in V2?
✅ Non-repainting entry system — laser-precise entries, confirmed only after the candle closes.
✅ DCA Safety Orders — average down like a boss with programmable scaling.
✅ Multi-level Take Profits — partial exits at calculated levels for maximum gains.
✅ Smart Trailing Stops — automatic trailing exits that lock in profits as trends grow.
✅ Visual Trade Labels — see everything happening live on your chart (entries, exits, TPs, SLs).
✅ 3Commas-compatible alert engine — send fully customizable signals directly to your bots.
💡 Why V2?
Markets change fast. So should your strategy. V2 introduces better control over trade entries, exits, and dynamic position management — all without repainting, and built for automation.
Whether you're swing trading or bot-slinging, V2 keeps you ahead of the herd.
🔗 Try it now on TradingView. Connect it to 3Commas. Watch it work.
🚫 No repainting.
🧠 Built with logic, math, and a touch of madness.
⚡️ استراتيجية التداول – الإصدار الثاني: أذكى، أسرع، وأقوى
مرحبًا بك في النسخة الثانية من استراتيجيتنا المتطورة على TradingView – مصممة خصيصًا للمتداولين الجادين الذين يبحثون عن الدقة، الأتمتة، والمرونة الكاملة. هذه النسخة تتكامل بشكل كامل مع منصة 3Commas وتقدم تنبيهات سريعة وفعالة بخصائص ذكية.
🚀 ما الجديد في الإصدار الثاني؟
✅ نظام دخول غير قابل لإعادة التلوين (No Repainting) – نقاط دخول مؤكدة بعد إغلاق الشمعة لضمان أقصى دقة.
✅ طلبات دعم DCA – قم بتعزيز صفقاتك تلقائيًا بذكاء عند التراجع.
✅ مستويات جني أرباح متعددة – صفقات جزئية تُغلق تدريجيًا لتحقيق أقصى استفادة من الحركة.
✅ وقف خسارة متحرك ذكي – يلاحق الربح تلقائيًا ويحمي رأس المال من الانعكاسات.
✅ علامات مرئية على الرسم البياني – شاهد كل صفقة مباشرة على الشارت (الدخول، الخروج، الربح، الخسارة).
✅ تنبيهات متوافقة مع 3Commas – أرسل إشاراتك مباشرة إلى روبوتات التداول الخاصة بك دون عناء.
💡 لماذا الإصدار الثاني؟
الأسواق تتغير بسرعة... واستراتيجيتك يجب أن تواكب. هذا الإصدار يقدم تحكماً أفضل في نقاط الدخول والخروج، مع إدارة ديناميكية للصفقات، وكل ذلك دون إعادة التلوين، ومُصمم خصيصًا للأتمتة.
سواء كنت تتداول يدويًا أو باستخدام روبوتات، هذه الاستراتيجية تمنحك ميزة على السوق.
🔗 جربها الآن على TradingView. اربطها بـ 3Commas. وشاهد السحر يحدث.
🚫 بدون إعادة تلوين
🧠 مبنية على المنطق، الرياضيات، وقليل من الجنون
Release Notes: CryptoNomad BTCUSDT.P Binance Futures 10m Strategy V2.0
The updated "CryptoNomad BTC Strategy V2.0" introduces significant enhancements over the original script, focusing on improved risk management, advanced trade execution, and refined entry conditions. Below is a concise overview of the new features and changes, emphasizing functionality without delving into technical specifics.
Dynamic Position Sizing
New Functionality: The strategy now calculates trade sizes based on user-defined account balance and risk percentage per trade, with an option to adjust sizes according to market volatility.
Impact: Enhances risk management by tailoring position sizes to account size and market conditions, replacing the original script’s fixed full-equity allocation.
Dollar-Cost Averaging (DCA) Support
New Functionality: Added the ability to scale into positions with additional "safety" trades when the price moves against the initial entry. Users can set the number of safety trades, the price movement trigger, and the size increase for each additional trade.
Impact: Improves trade resilience by allowing the strategy to average into positions during adverse price movements, unlike the original’s single-entry approach.
Multiple Take-Profit Levels
New Functionality: Introduced multiple take-profit levels, allowing partial position exits at different price targets. Users can configure the number of levels and their spacing.
Impact: Enhances profitability by capturing gains at various price points, offering more flexibility than the original single take-profit level.
Trailing Stop-Loss
New Functionality: Added trailing stop-loss functionality that activates when the price moves favorably, locking in profits as the market trends.
Impact: Provides dynamic profit protection, allowing the strategy to secure gains during strong price movements, unlike the original static stop-loss.
Enhanced Entry Conditions
New Functionality: Incorporated open interest data to evaluate market participation, adding a new condition to the entry scoring system to confirm trades during rising interest.
Impact: Improves trade timing by ensuring entries align with stronger market activity, refining the original entry logic.
Adjusted Trade Entry Sensitivity
New Functionality: Lowered the thresholds for entry signals to allow more frequent trades while maintaining quality filters.
Impact: Increases trading opportunities in favorable conditions, making the strategy more active compared to the original.
Improved Visual Feedback
New Functionality: Enhanced chart visuals with clearer indicators for take-profit levels, stop-losses, and trade entries/exits. Labels now include trade size details for better tracking.
Impact: Makes it easier to monitor trade actions and strategy performance directly on the chart, improving user experience over the original visuals.
Bug Fixes and Stability
New Functionality: Fixed issues with take-profit and stop-loss calculations to ensure they update correctly during trades. Improved entry and exit state tracking to prevent unintended trade triggers.
Impact: Increases reliability and ensures smoother operation compared to the original script.
Summary of Key Changes
Risk Management: Dynamic position sizing and DCA scaling reduce risk exposure and improve capital efficiency.
Profit Optimization: Multiple take-profit levels and trailing stops enhance profit capture and flexibility.
Trade Timing: Open interest integration and adjusted entry thresholds improve signal quality and frequency.
User Experience: Enhanced visuals and labels provide clearer trade insights.
Reliability: Bug fixes ensure consistent and accurate trade execution.
This updated version transforms the original strategy into a more robust and adaptable trading system, offering better risk management, profit potential, and user-friendly monitoring for BTC trading.
ملاحظات الإصدار: استراتيجية CryptoNomad BTCUSDT.P Binance Futures 10m V2.0
تمثل النسخة المحدثة من "استراتيجية CryptoNomad BTC V2.0" تحسينات كبيرة مقارنة بالسكربت الأصلي، مع التركيز على تحسين إدارة المخاطر، تنفيذ التداول المتقدم، وتهيئة شروط الدخول. فيما يلي نظرة عامة موجزة على الميزات والتغييرات الجديدة، مع التركيز على الوظائف دون الخوض في التفاصيل التقنية.
تحجيم المراكز الديناميكي
الوظيفة الجديدة: تحسب الاستراتيجية الآن أحجام التداول بناءً على رصيد الحساب المحدد من قبل المستخدم ونسبة المخاطرة لكل صفقة، مع خيار لتعديل الأحجام وفقًا لتقلبات السوق.
التأثير: يعزز إدارة المخاطر من خلال تهيئة أحجام المراكز حسب حجم الحساب وظروف السوق، ليحل محل التخصيص الثابت بنسبة 100% من رأس المال في السكربت الأصلي.
دعم متوسط التكلفة الدولارية (DCA)
الوظيفة الجديدة: تم إضافة القدرة على التوسع في المراكز من خلال صفقات "الأمان" الإضافية عندما يتحرك السعر عكس الدخول الأولي. يمكن للمستخدمين تحديد عدد صفقات الأمان، ومحفز حركة السعر، وزيادة الحجم لكل صفقة إضافية.
التأثير: يحسن مرونة التداول من خلال السماح للاستراتيجية بالتوسط في المراكز خلال تحركات الأسعار الضارة، على عكس نهج الدخول الواحد في السكربت الأصلي.
مستويات جني الأرباح المتعددة
الوظيفة الجديدة: تم إدخال مستويات جني أرباح متعددة، مما يسمح بالخروج الجزئي من المراكز عند أهداف أسعار مختلفة. يمكن للمستخدمين تهيئة عدد المستويات وتباعدها.
التأثير: يعزز الربحية من خلال تسجيل الأرباح عند نقاط أسعار مختلفة، مما يوفر مرونة أكبر من مستوى جني الأرباح الواحد في السكربت الأصلي.
وقف الخسارة المتحرك
الوظيفة الجديدة: تم إضافة وظيفة وقف الخسارة المتحرك التي تُفعّل عندما يتحرك السعر لصالح الصفقة، مما يؤمن الأرباح مع استمرار اتجاه السوق.
التأثير: يوفر حماية ديناميكية للأرباح، مما يتيح للاستراتيجية تأمين المكاسب خلال تحركات الأسعار القوية، على عكس وقف الخسارة الثابت في السكربت الأصلي.
شروط دخول محسنة
الوظيفة الجديدة: تم دمج بيانات الفائدة المفتوحة لتقييم مشاركة السوق، مع إضافة شرط جديد إلى نظام تسجيل الدخول لتأكيد الصفقات خلال زيادة الفائدة.
التأثير: يحسن توقيت الصفقات من خلال ضمان توافق الدخول مع نشاط السوق الأقوى، مما يحسن منطق الدخول الأصلي.
تعديل حساسية دخول الصفقات
الوظيفة الجديدة: تم خفض العتبات لإشارات الدخول للسماح بصفقات أكثر تكرارًا مع الحفاظ على فلاتر الجودة.
التأثير: يزيد من فرص التداول في الظروف المواتية، مما يجعل الاستراتيجية أكثر نشاطًا مقارنة بالسكربت الأصلي.
تحسين التغذية البصرية
الوظيفة الجديدة: تم تحسين العناصر البصرية على الرسم البياني مع مؤشرات أوضح لمستويات جني الأرباح، ووقف الخسارة، ودخول/خروج الصفقات. تتضمن التسميات الآن تفاصيل حجم التداول لتتبع أفضل.
التأثير: يسهل مراقبة إجراءات التداول وأداء الاستراتيجية مباشرة على الرسم البياني، مما يحسن تجربة المستخدم مقارنة بالعناصر البصرية الأصلية.
إصلاح الأخطاء والاستقرار
الوظيفة الجديدة: تم إصلاح مشكلات حسابات جني الأرباح ووقف الخسارة لضمان تحديثها بشكل صحيح أثناء التداولات. تم تحسين تتبع حالة الدخول والخروج لمنع إطلاق صفقات غير مقصودة.
التأثير: يزيد من الموثوقية ويضمن تشغيلًا أكثر سلاسة مقارنة بالسكربت الأصلي.
ملخص التغييرات الرئيسية
إدارة المخاطر: تحجيم المراكز الديناميكي وتوسع متوسط التكلفة يقللان من التعرض للمخاطر ويحسنان كفاءة رأس المال.
تحسين الأرباح: مستويات جني الأرباح المتعددة ووقف الخسارة المتحرك يعززان من تسجيل الأرباح والمرونة.
توقيت التداول: دمج الفائدة المفتوحة وتعديل عتبات الدخول يحسنان من جودة الإشارات وتكرارها.
تجربة المستخدم: العناصر البصرية والتسميات المحسنة توفر رؤى أوضح للتداول.
الموثوقية: إصلاح الأخطاء يضمن تنفيذ صفقات متسق ودقيق.
هذا الإصدار المحدث يحول الاستراتيجية الأصلية إلى نظام تداول أكثر قوة وقابلية للتكيف، مع توفير إدارة مخاطر أفضل، وإمكانيات ربح محسنة، ومراقبة سهلة الاستخدام لتداول البيتكوين.
IST TimezoneTime zone :
1. Editable start/end hours for both timezones in IST.
2. Toggle second session on/off (enableSecondSession).
3. Slightly different grey tone (silver) for second session
4. Automatically respects TradingView's bar-by-bar time in IST.
5. Alert for time season start and end
DSI-OBL OBHDSI-DIGITAL SMART INVEST — OBL / OBH Zones
Smart multi-timeframe indicator for visualizing Order Blocks — Demand (OBL) and Supply (OBH) — with precise entry, stop-loss, and take-profit levels.
📌 How It Works:
Detects bullish (OBL) and bearish (OBH) blocks using candlestick patterns.
Displays zones across 3 timeframes: LTF (current), 1H, and 1D.
Zones are updated dynamically and adapt to price action.
Shows trade signals with RR calculation when strong patterns are confirmed.
🟢 OBL (Order Block Long) — potential buy area
🔴 OBH (Order Block High/Sell) — potential sell area
🎯 Use it to:
Spot high-probability support/resistance zones
Plan entries with pre-set TP/SL
Trade trend reversals and retests
🛠️ Customizable Inputs:
Block Power (sensitivity)
Enable/disable zones per timeframe
Custom zone colors
DSI-DIGITAL SMART INVEST — Зоны OBL / OBH
Интеллектуальный мультитаймфрейм индикатор, отображающий блоки спроса и предложения (OBL/OBH) с расчётом входа, стопа и тейка.
📌 Как работает:
Определяет бычьи зоны спроса (OBL) и медвежьи зоны предложения (OBH) по свечным паттернам.
Работает на трёх ТФ: текущий, 1 час и 1 день.
Зоны обновляются в реальном времени и подстраиваются под цену.
При подтверждении построения — выдаёт сигнал с входом, SL и TP.
🟢 OBL (Order Block Long) — зона спроса, лонг
🔴 OBH (Order Block High/Sell) — зона предложения, шорт
🎯 Используйте для:
Поиска сильных уровней поддержки и сопротивления
Построения сетапов на вход
Торговли от зон или по развороту
🛠️ Гибкие настройки:
Чувствительность блоков
Отображение зон по таймфреймам
Цвета для каждой зоны
Support and resistance lines by JaeheeSupport and resistance lines — by Jaehee
This indicator automatically identifies and visualizes key horizontal support and resistance zones based on pivot clustering.
### Core Features
- Pivot-based level detection: Tracks recent pivot highs and lows
- Zone clustering: Groups nearby pivot points into zones using a user-defined width
- Strength filtering: Retains only the most frequently-reacted zones
- Visual clarity: Displays resistance (red) and support (blue) lines with glow effects
- Dynamic updates: Levels update in real time as new pivots form
### Use Case
This tool is ideal for traders looking to identify areas where price has historically bounced or stalled. It removes noisy levels and focuses only on the zones with statistically significant reactions.
Designed for clarity and performance, it helps traders:
- Spot high-confidence S/R zones without clutter
- Observe how current price interacts with proven historical levels
- Avoid manual zone drawing
### Notes
- No buy/sell signals
- No repainting
- Fully customizable via input settings
checklist by jaeheeChecklist by Jaehee
This indicator displays a real-time checklist label on the chart, summarizing key market conditions in a compact, actionable format. It does not produce buy/sell signals but instead functions as a **decision support tool** for active traders.
### Included Metrics
- ADX Value: Current trend strength based on ADX(14)
- EMA Structure: Detects trend alignment across 5 key EMAs (5, 20, 60, 120, 240)
→ Output: `Uptrend`, `Downtrend`, or `Mixed`
- Volatility Condition: Measures current ATR(14) vs 20-period average ATR
→ Output: `High`, `Normal`, or `Low`
- Volume Analysis: Compares current volume to 20-bar average
→ Output: `High`, `Normal`, or `Low` with spike ratio
- RSI Value: Standard RSI(14) reading
- Price Zone: Where current price is relative to recent 20-bar high/low
→ Output: `Near High`, `Mid`, `Near Low`
- MACD Momentum Slope: Slope direction of MACD histogram
→ Output: `Rising`, `Falling`, or `Flat`
### Use Case
This tool is designed for traders who prefer to make manual decisions based on multiple factors. Instead of cluttering the chart with individual indicators, **all essential metrics are consolidated into a single floating label** that updates in real time.
The checklist provides a snapshot of:
- Trend direction and strength
- Volatility regime
- Relative price level
- Momentum direction
- Volume dynamics
It is particularly useful for:
- Evaluating market context before entering a trade
- Filtering out suboptimal setups
- Enhancing discretionary trading frameworks
### Notes
- No signals, no repainting
- Purely visual and informational
- Fully customizable if extended
Midnight 30min High/LowMidnight 30min High/Low — Overnight Liquidity Range Tracker
Capture the Overnight Session: A Strategic Level Identification Tool from Professional Trading Methodology
This indicator captures the high and low prices during the critical 30-minute midnight session (12:00-12:30 AM EST) and projects these levels forward as key support and resistance zones. These overnight ranges often contain significant liquidity and serve as crucial reference points for intraday price action, representing areas where institutional activity may have established important levels.
🔍 What This Script Does:
Identifies Critical Overnight Session Levels
- Automatically detects the 12:00-12:30 AM EST session window
- Captures the highest and lowest prices during this 30-minute period
- Projects these levels forward for multiple trading days
Creates Dynamic Support/Resistance Zones
- Extends midnight high/low levels as horizontal lines with customizable projection periods
- Fills the area between high and low to create a visual trading range
- Updates automatically each trading day with new overnight levels
Provides Clear Visual Reference Points
- Optional session start markers (●) highlight when the midnight session begins
- Color-coded lines distinguish between high and low levels
- Transparent fill area creates an easy-to-identify trading zone
Real-Time Level Tracking
- Updates levels in real-time during the active midnight session
- Maintains historical levels for reference and backtesting
- Compatible with data window for precise level values
⚙️ Customization Options:
Extend Days (1-30):** Control how many days forward the levels are projected (default: 5 days)
High Line Color:** Customize the midnight high line color (default: blue)
Low Line Color:** Customize the midnight low line color (default: orange)
Fill Color:** Adjust the transparency and color of the range area (default: light aqua, 80% transparency)
Show Session Markers:** Toggle yellow session start indicators on/off (default: enabled)
💡 How to Use:
Deploy on lower timeframes (1m-15m) for precise level identification and reaction monitoring**
Watch for key price interactions:
- Rejection at midnight high levels (potential resistance)
- Bounce from midnight low levels (potential support)
- Range-bound trading between the high and low levels
Combine with liquidity concepts:
- Monitor for stop hunts above/below these levels
- Look for false breakouts that snap back into the range
- Use as confluence with other ICT concepts like FVGs and Order Blocks
Strategic Applications:
- Range trading between midnight levels
- Breakout confirmation when price closes decisively outside the range
- Support/resistance validation for entry and exit planning
🔗 Combine With These Tools for Complete Market Structure Analysis:
✅ First FVG — Opening Range Fair Value Gap Detector.
✅ ICT Turtle Soup (Liquidity Reversal)— Spot stop hunts and false breakout scenarios.
✅ ICT Macro Zones (Grey Box Version)- It tracks real-time highs and lows for each Silver Bullet session.
✅ ICT SMC Liquidity Grabs and OBs- Liquidity Grabs, Order Block Zones, and Fibonacci OTE Levels, allowing traders to identify institutional entry models with clean, rule-based visual signals.
Together, these tools create a comprehensive Smart Money Concepts (SMC) framework — helping traders identify, anticipate, and capitalize on institutional-level price movements with precision and confidence during critical overnight sessions. Also, dont forget to not over-trade.
Midnight 30min High/LowMidnight 30min High/Low — Overnight Liquidity Range Tracker
Capture the Overnight Session: A Strategic Level Identification Tool from Professional Trading Methodology
This indicator captures the high and low prices during the critical 30-minute midnight session (12:00-12:30 AM EST) and projects these levels forward as key support and resistance zones. These overnight ranges often contain significant liquidity and serve as crucial reference points for intraday price action, representing areas where institutional activity may have established important levels.
🔍 What This Script Does:
Identifies Critical Overnight Session Levels
- Automatically detects the 12:00-12:30 AM EST session window
- Captures the highest and lowest prices during this 30-minute period
- Projects these levels forward for multiple trading days
Creates Dynamic Support/Resistance Zones
- Extends midnight high/low levels as horizontal lines with customizable projection periods
- Fills the area between high and low to create a visual trading range
- Updates automatically each trading day with new overnight levels
Provides Clear Visual Reference Points
- Optional session start markers (●) highlight when the midnight session begins
- Color-coded lines distinguish between high and low levels
- Transparent fill area creates an easy-to-identify trading zone
Real-Time Level Tracking
- Updates levels in real-time during the active midnight session
- Maintains historical levels for reference and backtesting
- Compatible with data window for precise level values
⚙️ Customization Options:
Extend Days (1-30):** Control how many days forward the levels are projected (default: 5 days)
High Line Color:** Customize the midnight high line color (default: blue)
Low Line Color:** Customize the midnight low line color (default: orange)
Fill Color:** Adjust the transparency and color of the range area (default: light aqua, 80% transparency)
Show Session Markers:** Toggle yellow session start indicators on/off (default: enabled)
💡 How to Use:
Deploy on lower timeframes (1m-15m) for precise level identification and reaction monitoring**
Watch for key price interactions:
- Rejection at midnight high levels (potential resistance)
- Bounce from midnight low levels (potential support)
- Range-bound trading between the high and low levels
Combine with liquidity concepts:
- Monitor for stop hunts above/below these levels
- Look for false breakouts that snap back into the range
- Use as confluence with other ICT concepts like FVGs and Order Blocks
Strategic Applications:
- Range trading between midnight levels
- Breakout confirmation when price closes decisively outside the range
- Support/resistance validation for entry and exit planning
🔗 Combine With These Tools for Complete Market Structure Analysis:
✅ First FVG — Opening Range Fair Value Gap Detector.
✅ ICT Turtle Soup (Liquidity Reversal)— Spot stop hunts and false breakout scenarios.
✅ ICT Macro Zones (Grey Box Version)- It tracks real-time highs and lows for each Silver Bullet session.
✅ ICT SMC Liquidity Grabs and OBs- Liquidity Grabs, Order Block Zones, and Fibonacci OTE Levels, allowing traders to identify institutional entry models with clean, rule-based visual signals.
Together, these tools create a comprehensive Smart Money Concepts (SMC) framework — helping traders identify, anticipate, and capitalize on institutional-level price movements with precision and confidence during critical overnight sessions. Also, dont forget to not over-trade.
Midnight 30min High/LowMidnight 30min High/Low — Overnight Liquidity Range Tracker
Capture the Overnight Session: A Strategic Level Identification Tool from Professional Trading Methodology
This indicator captures the high and low prices during the critical 30-minute midnight session (12:00-12:30 AM EST) and projects these levels forward as key support and resistance zones. These overnight ranges often contain significant liquidity and serve as crucial reference points for intraday price action, representing areas where institutional activity may have established important levels.
🔍 What This Script Does:
Identifies Critical Overnight Session Levels
- Automatically detects the 12:00-12:30 AM EST session window
- Captures the highest and lowest prices during this 30-minute period
- Projects these levels forward for multiple trading days
Creates Dynamic Support/Resistance Zones
- Extends midnight high/low levels as horizontal lines with customizable projection periods
- Fills the area between high and low to create a visual trading range
- Updates automatically each trading day with new overnight levels
Provides Clear Visual Reference Points
- Optional session start markers (●) highlight when the midnight session begins
- Color-coded lines distinguish between high and low levels
- Transparent fill area creates an easy-to-identify trading zone
Real-Time Level Tracking
- Updates levels in real-time during the active midnight session
- Maintains historical levels for reference and backtesting
- Compatible with data window for precise level values
⚙️ Customization Options:
Extend Days (1-30):** Control how many days forward the levels are projected (default: 5 days)
High Line Color:** Customize the midnight high line color (default: blue)
Low Line Color:** Customize the midnight low line color (default: orange)
Fill Color:** Adjust the transparency and color of the range area (default: light aqua, 80% transparency)
Show Session Markers:** Toggle yellow session start indicators on/off (default: enabled)
💡 How to Use:
Deploy on lower timeframes (1m-15m) for precise level identification and reaction monitoring**
Watch for key price interactions:
- Rejection at midnight high levels (potential resistance)
- Bounce from midnight low levels (potential support)
- Range-bound trading between the high and low levels
Combine with liquidity concepts:
- Monitor for stop hunts above/below these levels
- Look for false breakouts that snap back into the range
- Use as confluence with other ICT concepts like FVGs and Order Blocks
Strategic Applications:
- Range trading between midnight levels
- Breakout confirmation when price closes decisively outside the range
- Support/resistance validation for entry and exit planning
🔗 Combine With These Tools for Complete Market Structure Analysis:
✅ First FVG — Opening Range Fair Value Gap Detector.
✅ ICT Turtle Soup (Liquidity Reversal)— Spot stop hunts and false breakout scenarios
✅ ICT Macro Zones (Grey Box Version)- It tracks real-time highs and lows for each Silver Bullet session
✅ ICT SMC Liquidity Grabs and OBs- Liquidity Grabs, Order Block Zones, and Fibonacci OTE Levels, allowing traders to identify institutional entry models with clean, rule-based visual signals.
Together, these tools create a comprehensive Smart Money Concepts (SMC) framework — helping traders identify, anticipate, and capitalize on institutional-level price movements with precision and confidence during critical overnight sessions.
Investpro:Gold Sniper - Price Action + MACD StrategyThis strategy is designed specifically for Gold (XAUUSD) on the 15-minute timeframe, combining classic price action candlestick patterns with MACD confirmation to generate high-probability trade setups. It is ideal for intraday traders who prefer structured entries with clear risk-reward logic.
Visuals on Chart:
🟡 Yellow Line = Entry
🔴 Red Line = Stop Loss
🔵 Blue Line = Take Profit
Price labels shown for Entry, SL, and TP on every signal
This strategy provides a disciplined framework to capture momentum after clear price action patterns, confirmed by MACD, with risk clearly defined and reward targets structured. Perfect for traders looking to reduce noise and increase precision.
aurora cloud by jaeheeAurora Cloud by Jaehee
This indicator visualizes trend momentum by layering five exponential moving averages (EMAs) with a dynamic cloud fill between the outermost EMAs.
### Concept
Rather than relying on a single crossover or basic ribbon alignment, this tool emphasizes momentum strength by measuring the distance between short-term (EMA7) and longer-term (EMA50) trends. The cloud between them serves as a dynamic buffer zone that expands and contracts with volatility.
- EMA 7, 14, 21, 35, and 50 are plotted as layered ribbons
- Each line has gradually increasing transparency to create a smooth cloud effect
- The filled region between EMA7 and EMA50 highlights short- to mid-term trend zones
### Use Case
The cloud is useful for:
- Spotting when trends are compressing (cloud narrows)
- Confirming trend expansion (cloud widens)
- Identifying periods of consolidation versus breakout
Unlike traditional moving average ribbons, Aurora Cloud emphasizes visual clarity and works across all timeframes. It does not generate trading signals directly but helps filter entries and exits based on momentum flow.
### No repainting.
This script is simple by design, but built to serve as a lightweight and visually elegant tool for momentum-based trading.
DSI Support/Resistence [DSI]Description and user guide for TradingView (ENG)
🧠 Description:
This indicator automatically draws psychological support and resistance zones based on repetitive candle patterns. After a series of same-direction candles followed by a reversal candle, the indicator marks a level of potential interest by institutional traders.
📉 Support — after bullish candles followed by a bearish one.
📈 Resistance — after bearish candles followed by a bullish one.
It displays:
Zone boxes with volume inside;
Auto-removal when broken;
Extension of the level into the future (dashed line).
⚙️ How to use:
Add the indicator to your chart.
In settings:
Set the number of candles in the sequence (Number of sequential candle);
Set the number of zones shown (Box);
Choose the calculation base: Avg, Open, or Close.
Use zones for entries, exits, or stop-loss levels.
Works best on timeframes from M15 to D1.
Описание:
Этот индикатор автоматически строит психологические уровни поддержки и сопротивления на графике, основываясь на повторяющихся паттернах свечей. После серии направленных свечей с подтверждением в противоположную сторону формируется потенциальный уровень интереса крупных игроков.
📉 Поддержка — формируется после бычьих свечей и медвежьей в конце.
📈 Сопротивление — после медвежьих свечей и бычьей в конце.
Индикатор показывает:
Зоны (боксы) с объёмом;
Автоматическое удаление при пробое;
Расширение уровня пунктирной линией в будущее.
⚙️ Как использовать:
Добавьте индикатор на график.
В настройках укажите:
Кол-во свечей в серии (Number of sequential candle);
Кол-во отображаемых зон (Box);
Источник для расчёта уровня: Avg, Open, Close.
Используйте зоны как уровни входа, выхода или стопа.
Оптимально применять на таймфреймах от M15 до D1.
📊 Bot-Activated Signal OverlayThis script blends momentum, volume confirmation, and trend analysis to make signals more reliable — especially for flagged tickers you’re watching closely. You could even layer in alerts or refine the thresholds if you want a tighter grip on signal quality.
Days Since –1% Down Close“Days since last down 1% close” indicator
This is a useful tool for investors and analysts to gauge market momentum, volatility, and potential risk:
1. Measuring Market Stability and Momentum
2. Identifying Potential Overbought Conditions
3. Volatility Assessment
4. Contextualizing Seasonal or External Factors
5. Risk Management and Timing
Actionable Insight: Combine this with real-time data (e.g., VIX levels or economic releases like tomorrow’s potential market-moving news)
In summary, the "Days since last down 1% close" indicator helps investors monitor market health, spot overextension, and manage risk by providing a historical benchmark for volatility.
EMA9 vs EMA20 (Estilo MACD, eje acotado)🔷 What does it do?
Plots a moving line that represents the difference between the 9-period EMA and the 20-period EMA.
The zero level acts as the baseline (i.e., EMA20).
Every time the line crosses zero:
📈 Bullish crossover → EMA9 crosses above EMA20.
📉 Bearish crossover → EMA9 crosses below EMA20.
🔒 Visual clarity:
The chart is locked between -600 and +600, making crossovers easy to see without scaling issues.
Perfect for confirming trend direction or momentum shifts.
🔔 Built-in alerts:
You can set alerts for both bullish and bearish crossovers directly in TradingView.
🧠 MACD-inspired, but cleaner:
Instead of multiple lines and a histogram, you get one clean line moving around a fixed axis. Simple and powerful.
⚙️ Works with:
✅ TradingView (Pine Script v5)
✅ Any asset and any timeframe
📩 Want the source code? DM me and I’ll send it to you 🔧
Let me know if you'd like me to make a flyer or visual version of this too!
DSI - SMCPrice Action & Smart Money Concepts (PA+SMC)
📍 Platform: TradingView
📜 Language: Pine Script v5
🔍 Overview:
The PA+SMC indicator combines market structure (CHoCH, BOS), supply/demand zones, Order Blocks, Fair Value Gaps, and key liquidity levels & candle patterns.
📈 It helps traders analyze smart money behavior and identify high-probability trade setups.
🔧 Settings:
🔹 Show CHoCH / BOS — toggle market structure shifts
🔹 Draw OB Zones — visualize Order Blocks based on price action
🔹 Draw FVG / Imbalance — mark inefficient price areas
🔹 Premium / Discount Zones — show OTE levels (0.5, 0.705, 0.79)
🔹 Liquidity Lines — plot equal highs/lows (EQH/EQL)
🔹 Candle Confirmations — display pinbars, engulfings, etc.
📌 How to Use:
Identify structure:
Look for CHoCH (trend change) or BOS (trend continuation)
Find Entry Zone:
Wait for price to form an OB and pull back into it
Entry Confirmation:
Look for candle confirmation (e.g. pinbar or engulfing)
Define TP & SL:
TP = next liquidity or FVG
SL = beyond the OB
📈 Best Timeframes:
Entry: 15m / 1h
Structure: 4h / Daily
💡 Example:
CHoCH → OB formed → pullback → candle pattern → enter
SL behind OB, TP to FVG or BOS for 1:3 RR
Описание:
Индикатор «PA + SMC» совмещает структурный анализ (CHoCH, BOS), зоны спроса/предложения, Order Blocks, FVG/Imbalance, а также визуализирует ключевые уровни ликвидности и свечные паттерны.
📈 Он помогает быстро определить рыночную фазу, подготовить сценарий входа и отследить поведение цены в рамках концепции Smart Money.
🔧 Настройки:
🔹 Show CHoCH / BOS — включение отображения смены структуры
🔹 Draw OB Zones — показывает Order Blocks на основе свечей
🔹 Draw FVG / Imbalance — строит зоны неэффективности
🔹 Premium / Discount Zones — визуализирует уровни OTE (0.5, 0.705, 0.79)
🔹 Liquidity Lines — отображает зоны снятия ликвидности (EQH, EQL)
🔹 Candle Confirmations — включает отображение пинбаров, engulfing и др.
📌 Как пользоваться:
Определи структуру:
Жди появления CHoCH или BOS на нужном таймфрейме.
CHoCH ➜ сигнал смены тренда
BOS ➜ подтверждение импульса
Найди зону входа:
Индикатор автоматически выделяет Order Block после импульса.
Подтверждение входа:
Цена возвращается в блок ➜ рисует паттерн или свечу (pinbar / engulfing)
Цели и стоп:
TP ➜ на снятии внешней ликвидности или в зоне FVG
SL ➜ за пределами Order Block'а
📈 Рекомендуемые ТФ:
15m / 1h для торговли
4h / 1D для структуры
💡 Пример сценария:
CHoCH → Цена рисует OB → Возврат в OB → Pinbar → Вход
Стоп за OB, тейк на 1:3 RR в зону FVG или до BOS