PROTECTED SOURCE SCRIPT
abusuhil zonewatch

**Detailed Description of the “abusuhil zonewatch” Indicator and How to Use It**
---
## 1. General Overview
The **“abusuhil zonewatch”** indicator on TradingView is a comprehensive tool that combines four main features:
1. **User-Defined Horizontal Price Lines (Price Lines)** – allows you to draw up to seven custom support/resistance levels and receive alerts when price breaks them.
2. **ZoneWatch Multi-Timeframe Table** – displays the status of several technical indicators across seven timeframes (from 1 minute to 1 day) for the current instrument, marking each as “✓” (positive) or “✗” (negative), plus a summary percentage of positive signals per timeframe.
3. **Dominance Watch Table** – applies the same set of indicators to a chosen “dominance symbol” (e.g., BTC.D, ETH.D, or ETH/BTC) across the same seven timeframes, again showing “✓/✗” and a summary percentage.
4. **Smart Alerts** – two types of alerts:
* **ZoneWatch Smart Technical Alert**: triggers when a predefined percentage of indicators are positive simultaneously in selected timeframes.
* **Any Line Break Alert**: triggers the moment price closes above any active horizontal price line.
Together, these features give you both a quick visual of where price is relative to your manually drawn levels and a multi-timeframe technical read on both the instrument itself and its market dominance, with built-in alert logic.
---
## 2. Horizontal Price Lines (Price Lines)
### 2.1. Available Settings
* **Seven Price Lines** (Line 1 through Line 7), each with:
1. **Enable/Disable Checkbox** “Enable Line X”
2. **Price Input** “Line X Price” (user enters the exact price level)
3. **Color Picker** “Line X Color”
### 2.2. How It Works
* When you enable a line and specify a price and color, the script draws a horizontal line on the chart that extends 500 bars to the left and 500 bars to the right.
* If the price closes above that line (a bullish crossover), a small triangle shape (▲) in the same color appears directly beneath the candle that closed above it.
### 2.3. Practical Benefit
* You can mark key support or resistance levels without manually drawing them each time.
* The triangle alert clearly shows the exact candle that broke your level, letting you enter a trade or adjust your stop-loss precisely when it happens.
---
## 3. ZoneWatch Multi-Timeframe Table
### 3.1. Table Settings
* **Table Position**: Default is Top Right (“top\_right”), but you can choose Top Left, Bottom Left, or Bottom Right.
* **Font Size**: Adjustable from 6 to 24 points for readability.
* **ADX Threshold**: Default is 25 (range 10–50). This threshold is used when evaluating the ADX indicator for strength of trend.
### 3.2. Indicators Included (User Can Show/Hide Each)
1. **RSI (Relative Strength Index)**: RSI(14) > 50
2. **MACD (Moving Average Convergence Divergence)**: MACD Line > Signal Line (from MACD(12,26,9))
3. **Volume**: Current Volume > SMA(Volume, 20)
4. **SMA50**: Close Price > SMA(Close, 50)
5. **SMA200**: Close Price > SMA(Close, 200)
6. **Stochastic RSI**: %K > %D (from stoch(close, high, low, 14) and its 3-period SMA)
7. **VWAP (Volume-Weighted Average Price)**: Close Price > VWAP
8. **ADX (Average Directional Index)**: ADX(14) > ADX Threshold
You can enable or disable any of these eight via checkboxes in the inputs.
### 3.3. Timeframes Covered
The table applies all chosen indicators to seven different timeframes, each via `request.security` calls:
* **1m** (1 minute)
* **5m** (5 minutes)
* **15m** (15 minutes)
* **30m** (30 minutes)
* **1h** (1 hour)
* **4h** (4 hours)
* **1D** (1 day)
### 3.4. Table Layout and Logic
* **Top Row (Column Headers)**: Lists the seven timeframes (1m, 5m, 15m, 30m, 1h, 4h, 1D).
* **Next Rows (Indicator Rows)**: Each row corresponds to one of the enabled indicators (e.g., RSI, MACD, Volume, etc.). For each timeframe column, it shows:
* “✓” if the indicator condition is positive (e.g., RSI > 50 in that timeframe).
* “✗” if the condition is negative.
* Background coloring:
* Green (semi-transparent) if “✓”
* Red (semi-transparent) if “✗”
* **Bottom Row (Summary)**: Calculates how many of the enabled indicators are positive (“✓”) in each column (timeframe), then converts to a percentage:
* Percentage = (Number of “✓” symbols ÷ Total Number of Enabled Indicators) × 100
* If the percentage ≥ 75%, the cell background is light green.
* If 50% ≤ percentage < 75%, the cell background is light orange.
* If percentage < 50%, the cell background is light red.
### 3.5. Practical Benefit of the ZoneWatch Table
1. **Instant Multi-Timeframe Snapshot**
* You don’t need to switch between seven separate charts to see whether RSI, MACD, Volume, etc., are positive or negative in each timeframe.
* The table consolidates everything into one compact view, saving time.
2. **Identify the Strongest Timeframe Quickly**
* If you see, for example, that the 1h column has 6 out of 8 indicators positive (75%), you know the 1h is currently showing strong bullish momentum.
* You can use that as your primary trading timeframe or to confirm a trade you plan to enter in a shorter timeframe.
3. **Quantified Trend Strength**
* The Summary percentage row gives you an at-a-glance score of how “in agreement” the indicators are.
* If Summary ≥ 75% on a timeframe, you might treat that timeframe as particularly strongly trending, and plan trades accordingly.
4. **Customize to Your Strategy**
* Disable indicators you don’t use (e.g., if you never trade based on VWAP, simply uncheck it).
* Adjust the ADX threshold based on how strong you want that filter to be.
---
## 4. ZoneWatch Alerts
### 4.1. Smart Technical Alert
* **Purpose**: To notify you the moment a specified percentage of indicators are positive simultaneously in chosen timeframes.
* **Configuration**:
* **Enable Alerts** checkbox toggles the feature on/off.
* For each monitored timeframe (15m, 1h, 4h), you specify a “Required %” (e.g., 80% for 15m, 70% for 1h, 60% for 4h).
* When the Summary percentage for **all** selected timeframes is at or above the designated “Required %,” the indicator triggers the “ZoneWatch Smart Technical Alert.”
* **Benefit**:
* Ensures you only get a pop-up/email/push notification when multiple indicators align across multiple timeframes, reducing “noise” from single-timeframe signals.
* Helpful for traders who want to be alerted the moment a multi-timeframe consensus forms, rather than checking each timeframe manually.
### 4.2. Any Line Break Alert
* **Purpose**: To notify you immediately when price closes above any active horizontal Price Line.
* **How It Works**:
* For each enabled line (Line 1–Line 7), the script checks `ta.crossover(close, priceX)` (meaning price closing above priceX).
* If a crossover occurs on a given bar, the “Any Line Break Alert” triggers.
* **Benefit**:
* You don’t have to watch the chart constantly. As soon as price closes above your chosen level, you get an alert and can act (enter a long, adjust a stop, etc.).
---
## 5. Dominance Watch Table
### 5.1. What Is “Dominance”?
* **Dominance (e.g., BTC.D, ETH.D)** measures the proportion of total cryptocurrency market capitalization represented by Bitcoin or Ethereum.
* If **BTC.D** (Bitcoin Dominance) rises, more capital is flowing into Bitcoin relative to Altcoins.
* If **BTC.D** falls, more capital is moving into Altcoins.
* **ETHBTC** is simply the ETH/BTC trading pair—when ETHBTC is strong, Ethereum is outperforming Bitcoin.
### 5.2. Table Settings for Dominance
* **Dominance Symbol**: You choose from a dropdown:
* `CRYPTOCAP:BTC.D` (Bitcoin Dominance)
* `CRYPTOCAP:ETH.D` (Ethereum Dominance)
* `ethbtc` (ETH vs. BTC)
* `CRYPTOCAP:TOTAL` (Total Crypto Market Dominance)
* `CRYPTOCAP:TOTAL2` (Dominance of certain Altcoin categories)
* **Font Size**: Adjustable 8–24.
* **Table Position**: Default Bottom Right, but you can move it to any corner.
* **ADX Threshold**: Set between 10 and 50 to define “strong trend” for dominance.
### 5.3. Indicators Applied to Dominance
Exactly the same eight indicators used in ZoneWatch are now applied to whichever dominance symbol you select, over the same seven timeframes:
1. **RSI(14) > 50** for dominance price.
2. **MACD(12,26,9): MACD Line > Signal Line**.
3. **Volume > SMA(Volume, 20)**.
4. **Close Price > SMA(Close, 50)**.
5. **Close Price > SMA(Close, 200)**.
6. **Stochastic RSI: %K > %D** (from `stoch` plus its 3-period SMA).
7. **Close Price > VWAP**.
8. **ADX(14) > Dominance ADX Threshold**.
Each is evaluated via `request.security(symbolDominance, timeframe, …)`.
### 5.4. Table Layout and Logic
* **Top-Left Cell**: Displays the chosen dominance symbol (e.g., `CRYPTOCAP:BTC.D`), so you immediately know which dominance metric the table refers to.
* **Top Row (Headers)**: The seven timeframes (1m, 5m, 15m, 30m, 1h, 4h, 1D).
* **Indicator Rows**: One row per indicator (RSI, MACD, Volume, SMA50, …, ADX).
* Each cell shows “✓” if that indicator is positive in that timeframe for the chosen dominance symbol, or “✗” if negative.
* Background: Light green if “✓,” light red if “✗.”
* **Bottom Row (“Result %”)**:
* Counts how many of the eight indicators show “✓” in that timeframe, then calculates a percentage out of eight:
* Result % = (Number of “✓” symbols ÷ 8) × 100
* If Result % ≥ 50%, the cell background is light green. Otherwise, it is light red.
### 5.5. Practical Benefit of the Dominance Watch Table
1. **Gauge Where Money Is Flowing**
* A high bullish Result % in BTC.D suggests capital is rotating into Bitcoin.
* A low BTC.D Result % suggests capital is moving into Altcoins.
* A high Result % in ETHBTC indicates Ethereum is outperforming Bitcoin at the moment.
2. **Confirm or Reject Trades**
* If you plan to buy an Altcoin, you might wait until BTC.D Result % is below 50%—meaning money is leaving Bitcoin for other cryptocurrencies.
* If you plan to buy Bitcoin, you’d like to see BTC.D Result % above 50% (signals aligning toward more Bitcoin dominance).
* To switch between BTC and ETH, use ETHBTC: if its Result % is above 50%, Ethereum strength is stronger than Bitcoin strength right now.
3. **Synergy with ZoneWatch**
* If ZoneWatch says BTC/USD is very bullish on 1h (for example, 70% of indicators positive), and BTC.D is also bullish (80% positive), that confirms broader Bitcoin strength—offering extra confidence in a Bitcoin trade.
* If ZoneWatch is bullish on an Altcoin pair but BTC.D is also strong, that may signal caution—money might flow back into Bitcoin before pumping Alts.
---
## 6. How to Use the Indicator in Practice
### 6.1. Choose Your Timeframes and Indicators
* Decide which timeframes are most relevant to your style (scalping—1m to 15m; swing—1h to 4h; position—1D).
* In **ZoneWatch settings**, enable only the indicators you actually use. For example, if you don’t trade based on VWAP, simply uncheck “Show VWAP.”
* Adjust the **ADX Threshold** to your preference: a higher threshold (e.g., 30) means you only count ADX as positive when trend strength is very strong; a lower threshold (e.g., 20) is more sensitive.
### 6.2. Draw and Monitor Price Lines
* Under “Price Lines,” enable the lines (1–7) that correspond to support/resistance levels you’ve identified on the chart. Enter their exact prices and pick distinct colors.
* When the price closes above a line (a bullish break), you’ll see a small ▲ marker beneath the candle. That is your cue to check the ZoneWatch and Dominance tables for confirmation before entering a trade.
### 6.3. Read the ZoneWatch Table for Multi-Timeframe Confirmation
* Look at the **Summary %** row to see which timeframes have the highest percentage of positive indicators.
* For instance:
* If **1h** is 75% (6 out of 8 indicators positive), that indicates a fairly strong bullish bias on the 1-hour chart.
* If **4h** is only 40%, that suggests the 4-hour timeframe isn’t confirming bullish momentum—proceed with caution on longer trades.
* Use this to choose the “main” timeframe for your trade or to confirm a pattern you see on the price chart.
### 6.4. Check the Dominance Watch Table for Liquidity Flow
* Select the dominance symbol you need: e.g., `CRYPTOCAP:BTC.D` if you’re deciding whether to trade Bitcoin or Altcoins.
* If **BTC.D Result % ≥ 60%** on the 4h or 1D timeframe, that signals that Bitcoin is currently commanding more market share, which is bullish for Bitcoin and potentially bearish for Altcoins.
* If **BTC.D Result % < 50%** while your ZoneWatch is bullish on an Altcoin pair, that means money is indeed flowing into Alts—reinforcing an Altcoin trade.
* For ETH vs. BTC decisions, use **ETHBTC**: if ETHBTC Result % ≥ 50%, Ethereum is stronger than Bitcoin right now.
### 6.5. Set Up Smart Alerts
1. **ZoneWatch Smart Technical Alert**:
* Enable it, then choose which timeframes you want to monitor (e.g., 15m and 1h).
* Set “Required % 15m = 80%,” “Required % 1h = 70%.”
* Once both 15m and 1h summary percentages meet or exceed those thresholds, you receive an on-screen alert or e-mail/push (depending on your TradingView alert settings).
2. **Any Line Break Alert**:
* As soon as price closes above any enabled line, you get a separate alert. No need to watch the chart continuously; you’ll be notified the instant a level breaks.
### 6.6. Entry, Stop-Loss, and Take-Profit Strategy
* **Entry**:
1. Price breaks your chosen horizontal line (look for ▲ marker).
2. ZoneWatch summary % for your target timeframe is above your desired threshold (e.g., ≥ 70%).
3. Dominance Watch is aligned (e.g., BTC.D ≥ 60% if buying Bitcoin, or BTC.D < 50% if buying Altcoins).
4. Then place your buy/sell order.
* **Stop-Loss**:
* Place just below (for longs) or above (for shorts) the last broken Price Line or a relevant moving average (e.g., SMA50) that is negative in ZoneWatch.
* **Take-Profit**:
* Monitor ZoneWatch: if summary % drops below a certain level (e.g., from 70% to 50%), that may signal waning momentum—consider taking profits.
* Also watch Dominance: if BTC.D surges while you hold an Altcoin, it may be time to exit or rotate to Bitcoin.
---
## 7. Key Takeaways and Benefits
1. **Integrated Price + Dominance Analysis**
* By combining user‐drawn support/resistance (Price Lines) with a multi-timeframe technical read and a dominance/market-share read, you get a full picture of both price action and where market liquidity is flowing—essential for high-probability trade setups.
2. **Quantified, Objective Signals**
* Instead of interpreting charts subjectively, ZoneWatch turns each indicator into a “✓/✗” binary, and the Summary % gives you a clear numerical score of how bullish or bearish each timeframe is.
* Dominance Watch does the same for market-share indicators—no guessing, just numbers.
3. **Time Savings & Simplicity**
* Rather than opening seven chart tabs and reviewing eight indicators on each, you get everything in two compact tables.
* You can immediately see whether, for example, the 1h is bullish or bearish across multiple metrics, plus whether Bitcoin or Ethereum dominance is going in your favor.
4. **Highly Customizable**
* Enable or disable any of the eight indicators.
* Adjust the ADX thresholds for either the instrument or the dominance symbol.
* Move and resize tables to fit your chart layout.
* Choose exactly which timeframes and percentage thresholds to use for smart alerts.
5. **Actionable Alerts**
* **Smart Technical Alerts** let you know the moment multiple indicators align across multiple timeframes.
* **Line Break Alerts** notify you instantly when price breaks your important levels.
6. **Multi-Strategy Compatibility**
* Scalpers can focus on 1m–15m signals.
* Swing traders can rely on 1h–4h signals.
* Position traders and investors can watch the daily (1D) summary.
* All with the same single Pine v6 script.
---
### In Summary
The **“abusuhil zonewatch”** indicator is a one-stop solution for:
* **Drawing and monitoring key price levels** with instant alerts on breaks.
* **Gauging technical momentum** across seven timeframes for any TradingView symbol.
* **Tracking market dominance metrics** (BTC.D, ETH.D, ETH/BTC, etc.) in parallel, using the same technical indicators.
* **Receiving intelligent, multi-timeframe alerts** when your predefined criteria are met.
By consolidating all of these functions into one Pine v6 script, you save hours of manual charting and multi-tab analysis—delivering a clear, actionable read on both price action and market liquidity flows. Whether you are a day trader, swing trader, or long-term investor, this tool empowers you with objective, quantified signals on both the instrument and its broader market context.
---------------------------------------------------------------------------------------------------------------------
**وصف دقيق وتفصيلي لمؤشر “abusuhil zonewatch” وخدماته وكيفية الاستفادة منه**
---
## ١. لمحة عامة عن المؤشر
“abusuhil zonewatch” هو أداة تقنية متكاملة مخصّصة لمنصّة TradingView، تجمع بين:
1. **رسم خطوط سعرية أفقية يحدّدها المستخدم** (Price Lines).
2. **جدول متعدّد الأُطُر الزمنية (ZoneWatch Table)** لعرض حالة مجموعة من المؤشرات الفنية عبر سبعة أُطر زمنية (من الدقيقة إلى اليومي).
3. **جدول دوميننس موازٍ (Dominance Watch Table)** لتحليل هيمنة البيتكوين/الإيثيريوم (أو “ethbtc”) باستخدام نفس المؤشرات الفنية على نفس الأُطر الزمنية.
4. **تنبيهات ذكية** تُنبّه عند تحقق شروط فنية محدّدة:
* توافق الأغلب من المؤشرات (ZoneWatch Smart Technical Alert).
* كسر السعر لأيٍّ من الخطوط الأفقية (Any Line Break Alert).
بهذه الوظائف، يمكّن المؤشر المتداول أو الباحث من تتبُّع مستويات سعرية أساسية يختارها بنفسه، وفحص حالة الزخم والاتجاه الفني لأصل معين (سعره) مع ربط ذلك بتحليل هيمنة السوق (Dominance) في آنٍ واحد.
---
## ٢. رسم الخطوط الأفقية (Price Lines)
* **الإعدادات المتوفرة**
* سبع مستويات سعرية (Line 1 إلى Line 7).
* لكل مستوى:
1. تفعيل/تعطيل (Enable Line X).
2. رقم السعر المطلوب (Line X Price).
3. لون الخط (Line X Color).
* **آلية العمل**
* إذا فعَّل المستخدم مستوى سعر وخطّ لونَّه، يُرسم هذا الخط أفقيًا على الشارت ممتدًّا 500 شمعة إلى اليسار و500 شمعة إلى اليمين.
* في لحظة اختراق السعر (إغلاق شمعة صاعدًا) للخارج أعلى الخط، تظهر علامة (مثلث صغير) أسفل الشمعة بلون الخط نفسه، دلالة على كسر المقاومة (أو إذا كان المستوى أردناً، دلالة على اختراقه صعودًا).
* **الفائدة العملية**
* رسم مستويين أو ثلاثة أو أكثر لتمثيل مناطق دعم/مقاومة يهمّك مراقبتها دون الحاجة للرسم يدويًا كلّ مرة.
* الإشارة المرئية (مثلث) تسهل عليك تحديد اللحظة الدقيقة لكسر السعر للمستوى، مما يتيح سرعة في فتح صفقة أو تعديل أوامر وقف الخسارة.
---
## ٣. جدول ZoneWatch الفني (ZoneWatch Table)
### ٣.١. مكونات الجدول
* **الموقع الافتراضي:** في الزاوية اليمنى العليا (Top Right) من الشارت (قابل للتعديل بين أعلى يسار، أعلى يمين، أسفل يسار، أسفل يمين).
* **حجم الخط:** قابل للتعديل بين 6 و24 نقطة حسب تفضيل المستخدم.
* **عتبة ADX (ADX Threshold):** قيمة يمكن ضبطها (افتراضيًا 25) لاستخدامها في اختبار قوة الاتجاه.
### ٣.٢. المؤشرات الفنية المدرجة
يمكن للمستخدم إظهار أو إخفاء كلٍ مما يلي بحسب رغبته، عبر مربعات اختيار (Checkboxes):
1. **RSI (Relative Strength Index):** يُختبر إذا كان RSI (14) > 50.
2. **MACD (Moving Average Convergence Divergence):** يُختبر إذا كان خط MACD > خط الإشارة.
3. **حجم التداول (Volume):** يُختبر إذا كان الحجم الحالي > متوسط SMA20 للحجم.
4. **SMA50:** يُختبر إذا كان سعر الإغلاق > متوسط SMA50.
5. **SMA200:** يُختبر إذا كان سعر الإغلاق > متوسط SMA200.
6. **Stochastic RSI:** يُختبر إذا كان خط %K > خط %D (من حساب Stoch RSI (14)).
7. **VWAP:** يُختبر إذا كان سعر الإغلاق > قيمة VWAP.
8. **ADX (Average Directional Index):** يُختبر إذا كانت قراءة ADX (من DMI (14,14)) > العتبة المحدّدة.
### ٣.٣. الأُطُر الزمنية المشمولة
يتم تطبيق كل مؤشر على سبعة أُطر زمنية منفصلة باستخدام دالة `request.security`، وهي:
* 1m (دقيقة واحدة)
* 5m (خمس دقائق)
* 15m (خمسة عشر دقيقة)
* 30m (ثلاثون دقيقة)
* 1h (ساعة واحدة)
* 4h (أربع ساعات)
* 1D (يومي)
### ٣.٤. طريقة العرض في الجدول
* **الصف الأول**: يحتوي على عناوين الأعمدة، وهي الأُطُر الزمنية (1m، 5m، …، 1D).
* **الصفوف التالية**: كل صف يخص مؤشرًا واحدًا (على سبيل المثال: صف RSI، صف MACD، صف Volume، …).
* تظهر في كل خلية علامة “✓” إذا كانت نتيجة المؤشر إيجابية في هذا الإطار، أو “✗” إذا كانت سلبية.
* لون خلفية الخلية يكون أخضر شفّاف عند الإشارة الإيجابية، أو أحمر شفّاف عند الإشارة السلبية.
* **الصف الأخير (Summary)**:
* يجمع عدد المؤشرات المفعّلة التي أظهرت علامة “✓” في كل عمود (أي في كل إطار).
* يحسب النسبة المئوية:
$$
\text{نسبة} = \bigl(\frac{\text{عدد العلامات الإيجابية (✓)}}{\text{إجمالي المؤشرات المفعّلة}}\bigr) \times 100
$$
* يُلوّن خلفية الخلية:
* أخضر شفاف إذا كانت النسبة ≥ 75%.
* برتقالي شفاف إذا كانت النسبة بين 50% و75%.
* أحمر شفاف إذا كانت النسبة < 50%.
### ٣.٥. الفائدة العملية من جدول ZoneWatch
1. **رؤية فورية لحالة الزخم والاتجاه متعدد الأُطُر الزمنية**:
* بدلاً من فتح سبع نوافذ مختلفة لكل إطار زمني، تحصل على ملخص مركّز باتجاه كل إطار ومؤشرات الزخم.
2. **تمييز الإطارات التي تشهد توافقًا فنيًا قويًا**:
* إذا رأيت عمود 1h يحتوي على ثلاث مؤشرات صاعدة من أصل أربعة أو خمسة مفعّلة، فهذا يعكس زخمًا إيجابيًا متوسّط الأجل.
3. **التخطيط واتخاذ القرار السريع**:
* يمكنك ـ على سبيل المثال ـ تأجيل فتح صفقة جديدة حتى يتحقق ملخص ≥ 70% على إطار 4h، ما يمنحك دلالة قوية على صعود/هبوط مستمر.
4. **تقليل “ضجيج” البيانات**:
* بدلاً من متابعة أرقام مؤشرات منفصلة في كل إطار، تكتفي بقراءة الرموز “✓/✗” والنسب المئوية، ما يسرّع عملية التحليل.
---
## ٤. تنبيهات ZoneWatch (Alerts)
### ٤.١. ZoneWatch ‒ Smart Technical Alert
* **الهدف:** إرسال إشعار عندما تكون نسبة الملخص (Summary) في إطار زمني معيّن أو أكثر أكبر من عتبة تحدّدها.
* **ضبط الإعدادات**:
* يمكن اختيار مراقبة ثلاثة أُطر زمنية بشكلٍ منفرد (15m، 1h، 4h).
* لكل إطار، تحدّد “Required %” (على سبيل المثال: 80% في 15m، 70% في 1h، 60% في 4h).
* إذا بلغت النسبة المئوية الملخّصة في كل إطار نشط القيمة المطلوبة أو أكثر، يُرسل التنبيه.
* **كيفية الاستفادة**:
* يسمح لك برفع الحدّ الأدنى المطلوب من اتفاق المؤشرات لكي تتلقى إشعارًا.
* يقلّص تنبيهات “الضجيج” ويُركّز على اللحظات التي يتحقق فيها توافق فني كبير عبر أكثر من إطار.
* بمجرد وصول النسب إلى العتبات المحددة، يمكنك فتح صفقة أو تعديل مراكزك مع العلم بأن الزخم موجود ومتوافق على أكثر من إطار.
### ٤.٢. ZoneWatch ‒ Any Line Break Alert
* **الهدف:** إرسال إشعار فوري عندما يخترق السعر أيًّا من الخطوط الأفقية المفعّلة إلى الأعلى.
* **آلية العمل**:
* لكل خط مفعّل، يُربط اختراق السعر (Crossover) بإشارة تنبيه.
* عند إغلاق شمعة يصعود فيها السعر فوق مستوى الخط، يُرسل التنبيه.
* **كيفية الاستفادة**:
* يتيح لك مراقبة مستويات دعم/مقاومة مهمة دون النظر المستمر إلى الشارت.
* بمجرد كسر السعر للمستوى، تحصل على تنبيه فوري بوقوع كسر مقاومة أو اختراق دعم، فتكون مستعدًا لدخول الصفقة أو تعديل وقف الخسارة.
---
## ٥. جدول Dominance Watch (Dominance Watch Table)
### ٥.١. مقدّمة حول “الدوميننس”
* **الدوميننس (Dominance)**: هو مصطلح يشير إلى نسبة سيولة سوقٍ محدّد (مثل سيولة البيتكوين) ضمن السوق الكلي للعملات الرقمية.
* إذا ارتفع “BTC.D” (هيمنة البيتكوين)، فهذا يعني أنّ سيولة أكبر تتدفق إلى البيتكوين مقارنةً بالعملات الأخرى.
* إذا انخفض “BTC.D”، فهذا يعكس أن السيولة تتحرك أكثر إلى العملات البديلة (Altcoins).
* **“ethbtc”**: هو ثنائي يعبّر عن سعر الإيثيريوم مقابل البيتكوين؛ ازدياده يعني أن الإيثيريوم يكسب زخمًا نسبيًّا مقابل البيتكوين.
### ٥.٢. إعدادات جدول Dominance Watch
* **رمز الدوميننس (Dominance Symbol)**:
* قائمة منسدلة تضمّ:
* `CRYPTOCAP:BTC.D` (هيمنة البيتكوين)،
* `CRYPTOCAP:ETH.D` (هيمنة الإيثيريوم)،
* `ethbtc` (سعر ETH مقابل BTC)،
* `CRYPTOCAP:TOTAL` (هيمنة سوق العملات الرقمية الكليَّة)،
* `CRYPTOCAP:TOTAL2` (هيمنة سوق العملات الخاصة/محدّدة).
* **حجم الخط (Font Size)**: قابل للتعديل بين 8 و24 نقطة.
* **موقع الجدول (Table Position)**: مثلاً “bottom\_right” أو أي زاوية أخرى يختارها المستخدم.
* **عتبة ADX (Dominance ADX Threshold)**: بين 10 و50 لتحديد قوة اتجاه الهيمنة.
### ٥.٣. المؤشرات الفنية المُطبَّقة على الدوميننس
يُطبَّق نفس ثمانية المؤشرات المُستعملة في ZoneWatch، ولكن على “قيمة الدوميننس/سعر ethbtc” عبر سبعة أُطر زمنية:
1. **RSI (14) > 50**.
2. **MACD (12,26,9): خط MACD > خط الإشارة**.
3. **حجم التداول > SMA20 للحجم** (للسعر/الدوميننس نفسه).
4. **سعر الإغلاق > SMA50**.
5. **سعر الإغلاق > SMA200**.
6. **Stochastic RSI: %K > %D**.
7. **سعر الإغلاق > VWAP**.
8. **ADX (DMI (14,14)) > العتبة المحددة**.
### ٥.٤. طريقة العرض في جدول Dominance Watch
* **الصف الأول**: يظهر في الخلية اليسرى العليا اسم رمز الدوميننس المختار (مثلاً `CRYPTOCAP:BTC.D`).
* **عناوين الأعمدة**: تبيّن الإطارات الزمنية (1m، 5m، 15m، 30m، 1h، 4h، 1D).
* **الصفوف التالية**: كل صف عبارة عن مؤشِّر (“RSI”، “MACD”، “Volume”، …).
* في كل خلية، تظهر “✓” إذا كانت نتيجة المؤشر إيجابية في ذلك الإطار (مثلاً: RSI > 50)، أو “✗” إذا كانت سلبية.
* لون خلفية الخلية: أخضر شفّاف للإيجابية، أحمر شفّاف للسلبية.
* **الصف الأخير (Result %)**:
* يجمع عدد “✓” من إجمالي 8 مؤشرات مُفعّلة، ثم يحسب النسبة المئوية.
$$
\text{نسبة DOM} = \bigl(\frac{\text{عدد العلامات الإيجابية}}{8}\bigr) \times 100
$$
* إذا كانت النسبة ≥ 50%، تُلوّن الخلفية أخضر شفاف؛ إذا أقلّ من 50%، تُلوَّن بالأحمر الشفاف.
### ٥.٥. الفائدة العملية من جدول Dominance Watch
1. **فهم اتجاه السيولة العام**:
* إذا كانت لوحة “BTC.D” اليومي فيها 6 أو 7 مؤشرات صاعدة (أي علامة “✓”)، فهذا دليل على زخم هيمنة البيتكوين وميول السوق للانتقال من العملات البديلة → البيتكوين.
* إذا كانت “ethbtc” 70% إيجابية على الإطار 1h، فهذا يعني أن قيمة الإيثيريوم تكسب زخمًا نسبيًّا أمام البيتكوين.
2. **دعم القرار**:
* عند شراء عملة بديلة (Altcoin)، يكون بعيدًا عن البيتكوين عمومًا؛ لذلك إذا انخفضت هيمنة البيتكوين (DOM أقلّ من 50–60%) وزادت إشارات “ethbtc”، قد تكون فرصة أفضل لدخول Altcoins.
* عند التفكير في شراء بيتكوين، فمن المفيد التأكد أن “BTC.D” إيجابي بمعظم مؤشرات RSI/ADX/… إلخ، للدلالة على مزيد من سيولة تدخل البيتكوين.
3. **التوقيت المشترك** مع ZoneWatch:
* استخدم “ملخص النسبة” في Dominance Watch لدعم أو رفض إشارة ZoneWatch.
* مثال عملي:
* إذا حضرنا إشارة ZoneWatch إيجابية 75% في إطار 1h للـ BTC/USD، ولكن Dominance Watch (BTC.D) سلبي بنسبة أقلّ من 40%، فقد يعكس هذا أن السيولة تتجه للـ Altcoins وليس للبيتكوين، وقد ننتظر تعديلًا أو نتوخّى الحذر.
---
## ٦. كيفية الاستفادة المتكاملة
1. **اختيار الإطار الزمني الرئيسي**
* قرّر ما إذا كنت متداولًا سريعًا (scalper) يركز على الإطارات 1m–15m، أو سوينغ تريدر يفضل 1h–4h، أو مستثمر يتابع الخلية اليومية (1D).
* فعّل أو أوقف مؤشرات ZoneWatch التي لا تتناسب مع استراتيجيتك (مثلاً، إذا كنت تعتمد فقط RSI و MACD و ADX في التداول اليومي، فأوقف “Volume” و“SMA200” إن لم تعدّها ضرورية).
2. **مراقبة Price Lines**
* حدد مستويات دعم/مقاومة حرجة تراها من تحليلك السابق على الشارت (مثل قمة تاريخية سابقة أو مستوى فيبوناتشي مهم).
* عندما يكسر السعر مستوى مفعّل صعودًا، سترى مثلثًا أخضر صغير أسفل الشمعة. هذا توقيت جيد لمراجعة قيمة المؤشرات في ZoneWatch وDominance Watch.
3. **قراءة ملخص ZoneWatch**
* اطلع على الصف الأخير (Summary) وقارن نسب “✓” بين الأعمدة.
* إذا كان عمود 4h عنده 70% من المؤشرات صاعدة (أي 5 من 7 أو 6 من 8)، فهذا يعني أن الإطار المتوسط الأمد يميل بقوة للاتجاه الصاعد، ويُعطيك ثقة أعلى في احتمال استمرار الصعود.
* بالمقابل، إذا كان ملخص 1h سلبيًا (أقل من 50% مؤشرات صاعدة)، قد يعني ذلك حدوث تصحيح جزئي قبل مواصلة الصعود.
4. **التأكد من Dominance Watch**
* إذا كنت تريد شراء بيتكوين، فتأكد من أن “BTC.D” يعرض نسبة ≥ 50–60% مشجّعًا على زيادة هيمنة البيتكوين.
* إذا كنت تفكر في Altcoins، افحص “BTC.D”: إذا ظهرت نسبة أقل من 50%، فهذا دليل على توزيع السيولة باتجاه Altcoins.
* إذا أردت التبديل من بيتكوين إلى إيثيريوم، يمكنك متابعة “ethbtc”: عندما يكون ملخص “ethbtc” على 4h ≥ 70%، يصبح انتقال السيولة إلى ETH محتملًا.
5. **ضبط التنبيهات الذكية**
* للاستخدام الأمثل لخاصية “Smart Technical Alert” في ZoneWatch، حدّد العتبات بناءً على مخاطرتك المقبولة.
* مثلاً:
* “Required %15m” = 75%،
* “Required %1h” = 65%،
* “Required %4h” = 60%.
* عندما تتحقق هذه النسب في الوقت نفسه، ستحصل على تنبيه، فتقوم بتفحُّص Dominance Watch بسرعة؛ إن كان الـ“BTC.D” أو “ethbtc” يدعم قرارك، تدخل الصفقة بثقة أعلى.
6. **قرارات الدخول والخروج**
* **دخول الصفقة (Long/Short):**
1. تأكّد من أن ملخص ZoneWatch في الإطار الذي تستهدفه أعلى من العتبة (على الأقل 60–70%).
2. تأكّد من أن Dominance Watch (التابع للرمز المناسب: BTC.D أو ethbtc) يظهر دعمًا سليماً (≥ 50–60% من المؤشرات إيجابية).
3. إذا كان السعر قد كسر مستوى مقاومة في Price Lines، فهذا يمثل تأكيدًا إضافيًا لفتح صفقة شراء.
* **وقف الخسارة (Stop Loss):**
* يُمكنك وضعه أسفل أحدث دعم في Price Lines، أو أسفل متوسط SMA50 أو SMA200 الذي يظهر سلبيًا في ZoneWatch.
* **جني الأرباح (Take Profit):**
* راقب لحظة انعكاس المؤشرات: إذا قلّت نسبة ملخص ZoneWatch (مثلاً من 80% إلى أقلّ من 50%)، فهذا مؤشر على انخفاض الزخم، يمكنك حينها جني الأرباح.
* إذا ارتفع DOM (مثل BTC.D) بشكل كبير، فقد يشير إلى عودة سيولة قوية للبيتكوين وضربة على عملات بديلة، لذا يمكنك الاستعداد لجني الأرباح أو الانتقال إلى BTC.
---
## ٧. نقاط مهمّة وملخّص الفوائد
* **تكامل بين السعر ودوميننس السوق**: يجمع المؤشر بين تحليل الشارت التقليدي (Price Lines وZoneWatch) وبين فهم توزيع السيولة عبر Dominance Watch، مما يوفّر رؤية شاملة ومتكاملة لاتجاهات السوق.
* **إشارات كمية موضوعية**: الاعتماد على “✓/✗” ونسب الـSummary يقلّل من الانحياز العاطفي، ويلزم المتداول باتّباع قواعد واضحة قبل الإقدام على الشراء أو البيع.
* **توفير الوقت وتبسيط التحليل**: بدلاً من فتح سبع نوافذ لكل إطار وإجراء اختبارات يدوية على ثمانية مؤشرات، تجد كل ذلك في جدول واحد، ويمكن للجدولين (ZoneWatch وDominance Watch) العمل المتوازي لتقديم نظرة شاملة في آن واحد.
* **مرونة عالية في الإعداد**:
* تستطيع تخصيص المؤشرات التي تهمّك فقط (مثلاً، إذا كنت لا تهتمّ بـSMA200 أو VWAP، كلّف بتعطيلها من الإعدادات).
* تستطيع تعديل حجم الخط وموقع الجدول ليتناسب مع دقة شاشتك ورغبتك.
* تضبط عتبات الـADX وعتبات النسبة في التنبيهات لمواءمة استراتيجياتك الشخصية.
* **إشعارات فورية لتسريع رد الفعل**:
* إشعار “Smart Technical” عندما تتوافق معظم المؤشرات عبر الأُطر الزمنية الحرجة.
* إشعار “Any Line Break” يساعدك على عدم فقدان لحظة اختراق مستويات الدعم/المقاومة الحرجة التي حددتها بيدك.
---
### في الختام
**مؤشر “abusuhil zonewatch”** هو أداة متعددة الجوانب تجمع بين رسم مستويات سعرية يدوية وجداول فنية متعدّدة الأُطُر الزمنية لمعرفة اتجاه الزخم، بالإضافة إلى جداول “دوميننس” لمتابعة حركة سيولة السوق. يساعد هذا الدمج المتزامن متخذي القرارات على تقييم فرص الشراء أو البيع بدقة أعلى، وتقليل الأخطاء المترتبة على التحليل الانعكاسي الجزئي.
باستخدامه، يستطيع المتداول:
* تحديد مناطق السعر الحرجة ومراقبتها تلقائيًا.
* قياس حالة أو قوة المؤشرات الفنية عبر أكثر من إطار زمني بجلسة واحدة.
* ربط تحركات السعر بحالة سيولة السوق (الهيمنة) لاتخاذ قرارات أكثر وعيًا.
* تلقّي تنبيهات ذكية تلائم استراتيجيته الخاصة لفتح الصفقات أو تعديلها بسرعة.
**كل ما يحتاجه المتداول هو ضبط الإعدادات (Price Lines، قائمة المؤشرات المفضّلة، عتبات ADX/النسب، رمز الدوميننس) لمتابعة السوق بشكلٍ متكامل دون عناء فتح نوافذ متعدّدة أو إجراء الاختبارات يدويًا.**
Korumalı komut dosyası
Bu komut dosyası kapalı kaynak olarak yayınlanmaktadır. Ancak, özgürce ve herhangi bir sınırlama olmaksızın kullanabilirsiniz – daha fazla bilgi burada.
Feragatname
Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.
Korumalı komut dosyası
Bu komut dosyası kapalı kaynak olarak yayınlanmaktadır. Ancak, özgürce ve herhangi bir sınırlama olmaksızın kullanabilirsiniz – daha fazla bilgi burada.
Feragatname
Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.