PROTECTED SOURCE SCRIPT

Trading TP SL

### Detailed Explanation of the "Trading TP SL" Indicator:

#### 1. **Main Purpose of the Indicator**:
This Pine Script strategy is designed to automate trading decisions by using predefined Take Profit (TP) and Stop Loss (SL) levels for both buy and sell orders. It allows for visual representation of these levels on the chart through lines and labels.

---

#### 2. **Key Variables**:

- **Candle_length**: Specifies the number of candles used for calculating the Simple Moving Average (SMA).
- **Quantity_of_deals**: Defines the number of consecutive price conditions needed to trigger a trade.
- **SLbuy and SLsell**: Inputs for setting the stop loss level for buy and sell trades.
- **TPbuy1 - TPbuy4 and TPsell1 - TPsell4**: Inputs for specifying up to four take profit levels for buy and sell trades.
- **show_SL_buy and show_TP1_buy (and others)**: These options control whether the lines and labels for the specified levels are shown on the chart.

---

#### 3. **Buy Logic**:

- The script calculates the Simple Moving Average (SMA) using the number of candles specified by **Candle_length**.
- A condition is checked to see if the current price is above the SMA (**bcond = price > ma**).
- If this condition holds true for a number of candles equal to **Quantity_of_deals**, a buy trade is triggered with the command: `strategy.entry("BUY", strategy.long)`.
- The stop loss and take profit levels are calculated based on user inputs (in ticks).

##### Example:
- If the price is above the 50-period SMA, and this happens for 30 consecutive candles, a buy order will be triggered, with the corresponding SL and TP levels plotted on the chart.

---

#### 4. **Sell Logic**:

- The opposite logic applies for sell trades. If the price is below the SMA (**scond = price < ma**) for a number of candles equal to **Quantity_of_deals**, a sell trade is triggered using: `strategy.entry("SELL", strategy.short)`.
- Stop loss and take profit levels are calculated and displayed in the same way as for buy trades.

---

#### 5. **Displaying Lines and Labels**:

- Lines and labels are drawn on the chart to represent the SL and TP levels using the `line.new` and `label.new` functions.
- The visibility of these lines and labels is controlled by options like **show_SL_buy**, **show_TP1_buy**, **show_SL_sell**, etc.

##### Example:
- If **show_SL_buy** is enabled, a red line and label for the buy stop loss will appear on the chart, labeled "SL".
- The same applies for the take profit levels (TP1, TP2, etc.) and the sell orders.

---

#### 6. **Color Customization**:

- The script allows for customization of colors for different components:
- **SL_1**: The color of the buy stop loss line (red).
- **TP_1**: The color of the first take profit line for buy orders (green).
- **short1**: The color of the sell order line.

---

### Advantages:
- Full control over profit and stop loss levels.
- Flexibility to define the number of conditions required to trigger a trade.
- Options to show or hide levels on the chart, providing visual clarity.

---

### Conclusion:
This strategy is built around using the Simple Moving Average (SMA) to identify entry signals for both buy and sell trades. The stop loss and take profit levels are user-defined, with significant flexibility to customize and visualize them on the chart.


### شرح تفصيلي لمؤشر "Trading TP SL" المكتوب بلغة Pine Script:

#### 1. **الهدف الأساسي للمؤشر**:
المؤشر مصمم كاستراتيجية تداول مبنية على أوامر الشراء والبيع مع إعدادات خاصة بأهداف الربح (TP) ومستويات إيقاف الخسارة (SL). يتم تحديد هذه المستويات بشكل يدوي عن طريق المدخلات، مع إمكانية إظهار الخطوط والملصقات على الرسم البياني لتوضيح تلك المستويات.

---

#### 2. **المتغيرات الأساسية**:

- **Candle_length**: عدد الشموع المستخدمة لحساب المتوسط المتحرك البسيط (SMA).
- **Quantity_of_deals**: عدد الصفقات المطلوبة قبل تفعيل إشارة الدخول.
- **SLbuy و SLsell**: مستوى إيقاف الخسارة للشراء والبيع.
- **TPbuy1 - TPbuy4 و TPsell1 - TPsell4**: مستويات الربح المستهدفة (TP) للشراء والبيع.
- **show_SL_buy و show_TP1_buy (وما إلى ذلك)**: هذه الخيارات تظهر أو تخفي الخطوط والملصقات على الرسم البياني لكل مستوى من المستويات المحددة.

---

#### 3. **المنطق وراء الشراء**:

- يتم حساب المتوسط المتحرك البسيط (SMA) باستخدام الشموع المحددة في المتغير **Candle_length**.
- يتم التأكد مما إذا كان السعر الحالي أعلى من هذا المتوسط المتحرك البسيط (**bcond = price > ma**).
- إذا تحقق هذا الشرط لعدد من الشموع يساوي **Quantity_of_deals**، يتم تفعيل صفقة شراء باستخدام أمر: `strategy.entry("BUY", strategy.long)`.
- يتم حساب مستويات إيقاف الخسارة وأهداف الربح بناءً على القيمة المدخلة من المستخدم (القيمة بالنقاط).

##### مثال:
- إذا كان السعر الحالي أكبر من المتوسط المتحرك لمدة 50 شمعة، وحدث ذلك على التوالي لـ 30 شمعة، سيتم تفعيل صفقة شراء مع مستويات إيقاف الخسارة وأهداف الربح المعروضة على الرسم البياني.

---

#### 4. **المنطق وراء البيع**:

- يحدث العكس في حالة البيع. إذا كان السعر أقل من المتوسط المتحرك البسيط (**scond = price < ma**) وتحقق هذا الشرط لعدد من الشموع يساوي **Quantity_of_deals**، يتم تفعيل صفقة بيع باستخدام أمر: `strategy.entry("SELL", strategy.short)`.
- يتم حساب مستويات إيقاف الخسارة وأهداف الربح وفقًا للقيم المدخلة من المستخدم، وتظهر هذه المستويات على الرسم البياني.

---

#### 5. **إظهار الخطوط والملصقات**:

- يتم رسم الخطوط والملصقات على الرسم البياني لإيضاح المستويات (SL و TP) باستخدام دوال `line.new` و `label.new`.
- يمكنك التحكم في إظهار أو إخفاء هذه الخطوط والملصقات عن طريق الخيارات **show_SL_buy**, **show_TP1_buy**, **show_SL_sell**, إلخ.

##### مثال:
- إذا تم تفعيل خيار **show_SL_buy**، سيظهر خط إيقاف الخسارة للشراء على الرسم البياني بلون أحمر مع ملصق يُظهر "SL".
- يتم تكرار نفس الشيء لأهداف الربح (TP1, TP2, إلخ) وخطوط البيع.

---

#### 6. **ألوان المكونات**:

- الألوان لكل مستوى يمكن تخصيصها. على سبيل المثال:
- **SL_1**: لون إيقاف الخسارة للشراء (أحمر).
- **TP_1**: لون هدف الربح الأول للشراء (أخضر).
- **short1**: لون صفقة البيع.

---

### المزايا:
- التحكم الكامل في مستويات الربح والخسارة.
- إمكانية تخصيص عدد الصفقات المطلوبة لتفعيل إشارة الدخول.
- إظهار أو إخفاء المستويات على الرسم البياني وفقًا لرغبة المستخدم.

---

### الخلاصة:
هذه الاستراتيجية تعتمد على المتوسط المتحرك البسيط (SMA) لعدد معين من الشموع كإشارة دخول، سواء للشراء أو البيع. يتم تعيين مستويات الربح والخسارة يدويًا، مع توفير مرونة عالية في إظهار الخطوط والملصقات على الرسم البياني.
Exponential Moving Average (EMA)

Korumalı komut dosyası

Bu komut dosyası kapalı kaynak olarak yayınlanmıştır ve özgürce kullanabilirsiniz. Bir grafikte kullanmak için favorilerinize ekleyebilirsiniz. Kaynak kodunu görüntüleyemez veya değiştiremezsiniz.

Bu komut dosyasını bir grafikte kullanmak ister misiniz?


قناتي شخصي
t.me/Trading_Elliot
حسابي شخصي
t.me/omaryunus21
Aynı zamanda::

Feragatname