Bands and Channels
Signal buy and sell (Simple Signals)إعدادات المؤشرات
ema_length = input.int(50, title="EMA Length"):
يسمح للمستخدم بتحديد طول المتوسط المتحرك الأسي (EMA) الافتراضي (القيمة الافتراضية هي 50).
هذه القيمة تمثل عدد الشموع المستخدمة لحساب المتوسط المتحرك الأسي.
حساب المتوسط المتحرك الأسي (EMA)
ema_value = ta.ema(close, ema_length):
ta.ema: دالة من مكتبة TradingView تحسب المتوسط المتحرك الأسي.
close: السعر الإغلاق لكل شمعة.
ema_length: طول المتوسط المتحرك (عدد الشموع المستخدم).
إشارات الشراء والبيع
buy_signal = ta.crossover(close, ema_value):
ta.crossover: يتحقق مما إذا كان السعر (close) قد اخترق خط EMA صعودًا.
إذا تحقق الشرط، يتم توليد إشارة شراء (buy_signal).
sell_signal = ta.crossunder(close, ema_value):
ta.crossunder: يتحقق مما إذا كان السعر (close) قد اخترق خط EMA هبوطًا.
إذا تحقق الشرط، يتم توليد إشارة بيع (sell_signal).
رسم المتوسط المتحرك الأسي
plot(ema_value, color=color.yellow, linewidth=2, title="EMA"):
يرسم خط المتوسط المتحرك الأسي (EMA) على الرسم البياني.
color=color.yellow: يحدد اللون الأصفر للخط.
linewidth=2: يحدد سمك الخط ليكون أكثر وضوحًا.
title="EMA": يظهر كاسم للخط عند عرض تفاصيل المؤشر.
رسم إشارات الشراء والبيع
plotshape(series=buy_signal, location=location.belowbar, color=color.green, style=shape.triangleup, title="Buy Signal", text="BUY"):
يظهر سهم أخضر (شكل مثلث) أسفل الشمعة التي تولدت عندها إشارة الشراء.
plotshape(series=sell_signal, location=location.abovebar, color=color.red, style=shape.triangledown, title="Sell Signal", text="SELL"):
يظهر سهم أحمر (شكل مثلث مقلوب) أعلى الشمعة التي تولدت عندها إشارة البيع.
إشعارات التنبيه
if (buy_signal) alert("Buy Signal detected on Gold!", alert.freq_once_per_bar):
عند ظهور إشارة شراء، يتم إرسال تنبيه مكتوب: "Buy Signal detected on Gold!".
alert.freq_once_per_bar: يضمن إرسال التنبيه مرة واحدة لكل شمعة.
if (sell_signal) alert("Sell Signal detected on Gold!", alert.freq_once_per_bar):
عند ظهور إشارة بيع، يتم إرسال تنبيه مكتوب: "Sell Signal detected on Gold!".
الهدف من المؤشر:
المؤشر يساعد المتداولين في تحديد نقاط الشراء والبيع استنادًا إلى تقاطع السعر مع المتوسط المتحرك الأسي (EMA).
يوفر رؤية بصرية واضحة بفضل الأسهم الملونة، ويتيح إشعارات تنبيه لتجنب تفويت الإشارات أثناء التداول.
كيفية تحسين المؤشر:
إضافة فلاتر إضافية مثل RSI أو تحليل الاتجاه العام لتحسين دقة الإشارات.
استخدام أطوال متعددة للـ EMA لتأكيد الاتجاه.
تعديل التنبيهات لتشمل المزيد من التفاصيل مثل السعر الحالي.
Bollinger Bands Strategy by NJBollinger Bands Strategy," leverages Bollinger Bands to make trading decisions. Bollinger Bands consist of three key components: a basis line (moving average), an upper band, and a lower band, which are calculated using the standard deviation of price movements.
Logic:
Entry Condition (Long): A long position is entered when the close price rises above the upper Bollinger Band, signaling a potential breakout or strong upward momentum.
Exit Condition: The long position is closed when the close price falls below the lower Bollinger Band, indicating potential downward pressure.
Features:
Users can adjust the moving average type, lookback length, and standard deviation multiplier to fit their trading style.
Trades are executed within a specified date range, which can be customized via inputs.
The strategy uses 100% of capital for each trade and incorporates commission and slippage into the performance calculation.
This strategy is suitable for trend-following traders looking to capture significant price movements using Bollinger Bands as the primary indicator.
Bull Market Support Band buy - NJThis strategy buys when the weekly 21-period EMA (Exponential Moving Average) crosses above the weekly 20-period SMA (Simple Moving Average), signaling potential bullish momentum. It closes the position (sells) when the EMA crosses below the SMA, indicating a potential trend reversal.
Estrategia Avanzada para Opciones - MejoradaEste indicador avanzado está diseñado para traders que buscan optimizar su análisis en opciones sobre acciones. Combina medias móviles exponenciales (EMA), análisis de volatilidad, señales basadas en Bandas de Bollinger, y confirmaciones mediante el Índice de Fuerza Relativa (RSI).
Las señales de compra y venta están cuidadosamente filtradas para eliminar el ruido y solo operar en condiciones de mercado óptimas, lo que lo convierte en una herramienta ideal para traders que buscan precisión y efectividad.
Características principales:
Filtrado de Señales con EMA: Detecta tendencias claras eliminando fluctuaciones menores.
Análisis de Volatilidad: Evita operar en mercados laterales o con movimientos erráticos.
Bandas de Bollinger: Identifica zonas clave para rupturas y retrocesos.
Confirmación con RSI: Evita operar en zonas de sobrecompra o sobreventa extremas.
Alertas Personalizadas: Recibe notificaciones automáticas para señales de compra y venta.
Estadísticas en el Gráfico: Monitorea en tiempo real el desempeño de tu estrategia.
Ideal para traders de opciones, swing traders, y scalpers que buscan decisiones más informadas en el mercado.
S & R - Trend Lines & Channels (Prince of Arabs)Support and Resistance with Trend Channels
This indicator identifies key support and resistance levels based on swing highs and lows over a user-defined lookback period. It also visualizes dynamic trend channels to help traders understand price ranges and market structure.
Key features include:
Support Level: Marked with a green line and labeled "Support," indicating potential buying areas.
Resistance Level: Marked with a red line and labeled "Resistance," indicating potential selling areas.
Trend Channels: Dashed blue (upper) and purple (lower) lines show the price range above resistance and below support, helping to identify overbought and oversold conditions.
Clear Entry Signals: A "Buy" label is displayed near the price when it approaches the support level within a user-defined backtesting range.
Stop Loss and Take Profit Levels: Automatically calculated based on customizable percentages and visualized on the chart for each trade.
Risk-to-Reward Visualization: The indicator simplifies risk management by showing trade levels dynamically.
resistance lineمرحبا متداوين
طول الفترة للمقاومة والدعم: تحدد عدد الفترات (الأشرطة) المستخدمة لحساب أعلى وأدنى الأسعار لتحديد مستويات المقاومة والدعم.
طول المتوسط المتحرك: عدد الفترات المستخدمة لحساب المتوسط المتحرك البسيط (SMA).
حساب مستويات الدعم والمقاومة
ta.highest(high, resistance_length): يحسب أعلى سعر خلال فترة معينة لتحديد مستوى المقاومة.
ta.lowest(low, support_length): يحسب أدنى سعر خلال فترة معينة لتحديد مستوى الدعم.
isBullOrderBlock: تحديد كتل الطلب (Bull Order Block) بناءً على:
السعر الأدنى الحالي أعلى من السعر الأدنى للفترة السابقة.
سعر الإغلاق أعلى من سعر الفتح.
سعر الإغلاق الحالي أعلى من سعر الإغلاق للفترة السابقة.
isBearOrderBlock: تحديد كتل العرض (Bear Order Block) بناءً على:
السعر الأعلى الحالي أقل من السعر الأعلى للفترة السابقة.
سعر الإغلاق أقل من سعر الفتح.
سعر الإغلاق الحالي أقل من سعر الإغلاق للفترة السابقة.
الخلاصة
هذا المؤشر يجمع بين عدة أدوات تحليل فني لتقديم رؤية شاملة للسوق:
مستويات الدعم والمقاومة: تساعد في تحديد مستويات الأسعار الهامة التي قد يتفاعل معها السوق.
المتوسط المتحرك: يوفر اتجاهًا عامًا للسوق ويساعد في تحديد نقاط الدخول والخروج.
كتل الطلب والعرض: تشير إلى مناطق قوة المشترين والبائعين.
مناطق السيولة: تحدد المناطق التي قد يشهد فيها السوق تقلبات كبيرة بسبب تجمع السيولة.
الفجوات السعرية العادلة: تشير إلى الفجوات بين الأسعار التي قد تُستغل في التداول.
إشارات الدخول: توفر إشارات تلقائية للدخول في صفقات شراء أو بيع بناءً على تفاعل السعر مع كتل الطلب والعرض.
Bitcoin Scalping Buy/Sell SignalsI’ve created a TradingView Pine Script indicator for Bitcoin scalping, which provides buy and sell signals based on RSI, EMA crossovers, and ATR-based stop-loss/take-profit levels. Let me know if you’d like any adjustments or additional features!
RSI Bands and extreme zones[Pr]Merhaba indikatörümüzde Rsı değerlerinin grafiğe yansımasını göstermiş bulunmaktayım.
BK BB Horizontal LinesIndicator Description:
I am incredibly proud and excited to share my second indicator with the TradingView community! This tool has been instrumental in helping me optimize my positioning and maximize my trades.
Bollinger Bands are a critical component of my trading strategy. I designed this indicator to work seamlessly alongside my previously introduced tool, "BK MA Horizontal Lines." This indicator focuses specifically on the Daily Bollinger Bands, applying horizontal lines to the bands which is displayed in all timeframes. The Daily bands in my opinion hold a strong significance when it comes to support and resistance, knowing your current positioning and maximizing your trades. The settings are fully adjustable to suit your preferences and trading style.
If you find success with this indicator, I kindly ask that you give back in some way through acts of philanthropy, helping others in the best way you see fit.
Good luck to everyone, and always remember: God gives us everything. May all the glory go to the Almighty!
Heikin-Ashi with 200 EMA, 20 SMA and Buy/Sell Signals by HaryKey Components:
Heikin-Ashi Candles:
The script calculates and plots Heikin-Ashi candles, which smooth price action and help identify trends.
200-period EMA & 20-period SMA:
The 200 EMA indicates long-term trends, while the 20 SMA shows short-term price movements.
Buy/Sell Signals:
A buy signal is generated when the Heikin-Ashi close is above both the 20 SMA and 200 EMA.
A sell signal occurs when the Heikin-Ashi close is below both the 20 SMA and 200 EMA.
These signals are displayed as green (buy) and red (sell) triangles on the chart.
Multiple Symbols:
The script allows tracking up to 7 symbols (like AUDUSD, EURUSD, GBPJPY, etc.), which can be set by the user.
Multiple Timeframes:
Signals are calculated for 3 different timeframes: 5-minute, 15-minute, and 60-minute charts for each symbol.
Alerts:
Alerts are configured for each symbol and timeframe combination. Alerts are triggered when a buy or sell condition is met.
Customizable:
Users can enable or disable buy/sell alerts for each symbol using toggle switches.
FİBO#0"yatırım tavsiyesi değildir"
fibonacci seviyelerini otomatik olarak bulan bir hazır paket indikatördür.Geliştimelere devam edilecektir.
Bull Market Support Band Strategy rbsemteiThis strategy uses the weekly 20-period SMA and 21-period EMA to determine buy and sell signals. It buys when the EMA crosses above the SMA and sells (or closes the position) when the EMA crosses below the SMA. The strategy uses 100% of available equity for trades, includes a 10% equity stop-loss, and accounts for a commission of 0.1% and slippage of 3 ticks. It is designed to match weekly calculations on a daily timeframe without peeking ahead at future data.
ORB opening range breakThis indicator plots the high/low for a user-selected period of time in minutes after the market opens on an intraday chart to allow the user to visualize the high and low of the opening range.
Features:
Able to plot the opening range for timeframes that are higher as well as lower than the main chart.
Customizable time range in minutes
Customizable ORB region, price level, price axis, label
How to use:
Input the opening time range of interest in minutes
Check the "ORB region" checkbox to shade the ORB region
Check the "PRICE LEVEL" checkbox to draw a horizontal line of the high and low
Check the "PRICE AXIS" checkbox to plot the values on the price axis
Check the "LABEL" checkbox to draw a label of the high and low
Range Channel by Atilla YurtsevenThis script creates a dynamic channel around a user-selected moving average (MA). It calculates the relative difference between price and the MA, then finds the average of the positive differences and the negative differences separately. Using these averages, it plots upper and lower bands around the MA as well as a histogram-like oscillator to show when price moves above or below the average thresholds.
How It Works
Moving Average Selection
The indicator allows you to choose among multiple MA types (SMA, EMA, WMA, Linear Regression, etc.). Depending on your preference, it calculates the chosen MA for the selected lookback period.
Relative Difference Calculation
It then computes the percentage difference between the source (typically the closing price) and the MA. (diff = (src / ma - 1) * 100)
Positive & Negative Averages
- Positive differences are averaged and represent how far the price typically moves above the MA.
- Negative differences are similarly averaged for when price moves below the MA.
Range Channel & Oscillator
- The channel is plotted around the MA using the average positive and negative differences (Upper Edge and Lower Edge).
- The “Untrended” histogram plots the difference (diff). Green bars occur when price is above the MA on average, and red bars when below. Two additional lines mark the upper and lower average thresholds on this histogram.
How to Use
Identify Overbought/Oversold Zones: The upper edge can serve as a dynamic overbought level, while the lower edge can suggest potential oversold conditions. When the histogram approaches or crosses these levels, it may signal price extremes relative to its average movement.
Trend Confirmation: Compare price action relative to the channel. If price and the histogram consistently remain above the MA and upper threshold, it could indicate a stronger bullish trend. If they remain below, it might signal a prolonged bearish trend.
Entry/Exit Timings:
- Entry: Traders can look for moments when price breaks back inside the channel from an extreme, anticipating a mean reversion.
- Exit: Watching how price interacts with these dynamic edges can help define stop-loss or take-profit points.
Because these thresholds adapt over time based on actual price behavior, they can be more responsive than fixed-percentage bands. However, like all indicators, it’s most effective when used in conjunction with other technical and fundamental tools.
Disclaimer
This script is provided for educational and informational purposes only. It does not guarantee any specific outcome or profit. Use it at your own discretion and risk.
Trade smart, stay safe.
Atilla Yurtseven
XAU Trend مرحبا يا متداولين
معلومات عن المؤشر
1. المتوسطات المتحركة (Moving Averages)
يتم استخدام متوسطين متحركين:
المتوسط المتحرك القصير (50 شمعه): يتم حسابه باستخدام ta.sma(close, 50).
المتوسط المتحرك الطويل (200 شمعه): يتم حسابه باستخدام ta.sma(close, 200).
الاتجاه:
إذا كان المتوسط المتحرك القصير أكبر من المتوسط المتحرك الطويل، يُعتبر السوق في اتجاه صاعد (Trend Up).
إذا كان المتوسط المتحرك القصير أصغر من المتوسط المتحرك الطويل، يُعتبر السوق في اتجاه هابط (Trend Down).
2. إشارات الشراء والبيع
إشارة شراء (buySignal): تحدث عندما يتقاطع المتوسط المتحرك القصير للأعلى مع المتوسط المتحرك الطويل (تقاطع صاعد).
إشارة بيع (sellSignal): تحدث عندما يتقاطع المتوسط المتحرك القصير للأسفل مع المتوسط المتحرك الطويل (تقاطع هابط).
يتم عرض إشارات الشراء (BUY) باللون الأخضر تحت الشمعة، وإشارات البيع (SELL) باللون الأحمر فوق الشمعة باستخدام plotshape.
ملاحظة :
تستطيع تعديل عليه او اضافه علي هو متاح للجميع
towards the candlesمرحبا يا متداولين
. تعريف الموجات:
تم تعريف أربعة متغيرات تمثل القيم العليا والدنيا لأربع موجات مختلفة باستخدام دوال مثل ta.highest و ta.lowest.
تم تعريف أربعة متغيرات تمثل القيم العليا والدنيا لأربع موجات مختلفة باستخدام دوال مثل ta.highest و ta.lowest.
wave1: يمثل أعلى قمة في الـ 10 شموع الأخيرة.
wave2: يمثل أدنى قاع في الـ 10 شموع الأخيرة.
wave3: يمثل أعلى قمة في الـ 5 شموع الأخيرة.
wave4: يمثل أدنى قاع في الـ 5 شموع الأخيرة.
wave1: يتم رسمه باللون الأحمر.
wave2: يتم رسمه باللون الأخضر.
wave3: يتم رسمه باللون الداكن.
wave4: يتم رسمه باللون البرتقالي.
linewidth=2: تعني أن سماكة الخط ستكون 2.
title: هذا هو الاسم الذي سيظهر بجانب كل موجة.
تخصيص الخلفية:
هذه الوظيفة تغير لون الخلفية إلى الأسود لكي تبرز الموجات بشكل أفضل على الرسم البياني.
الخلاصة:
الكود يقوم بتحديد ورسم أربع "موجات" تعتمد على أعلى وأدنى الأسعار للشموع في فترات زمنية محددة. يتم رسم هذه الموجات بألوان مختلفة، مع خلفية سوداء لتحسين الرؤية والوضوح.