Ara
Ürünler
Topluluk
Piyasalar
Haberler
Aracı kurum
Daha Fazla
TR
Şimdi başlat
Topluluk
/
Fikirler
/
عيدالله
Amazon.com
عيدالله
AbdullahAlraajh tarafından
Takip Et
Takip Et
evvelsi gün
2
evvelsi gün
//
version
=5
indicator("استراتيجية تقاطع المتوسط المتحرك على فريم 5 دقائق", overlay=true)
// إعدادات المتوسطات المتحركة
shortLength = input(9, title="طول المتوسط المتحرك القصير")
longLength = input(21, title="طول المتوسط المتحرك الطويل")
// حساب المتوسطات المتحركة
shortSMA = ta.sma(close, shortLength)
longSMA = ta.sma(close, longLength)
// رسم المتوسطات المتحركة على الشارت
plot(shortSMA, color=color.blue, title="المتوسط المتحرك القصير")
plot(longSMA, color=color.red, title="المتوسط المتحرك الطويل")
// شروط الدخول والخروج
longCondition = ta.crossover(shortSMA, longSMA) // تقاطع صعودي (شراء)
shortCondition = ta.crossunder(shortSMA, longSMA) // تقاطع هبوطي (بيع)
// تنفيذ أوامر الدخول
if (longCondition)
strategy.entry("شراء", strategy.long)
if (shortCondition)
strategy.entry("بيع", strategy.short)
// إعدادات الخروج
strategy.close("شراء", when=shortCondition)
strategy.close("بيع", when=longCondition)
Technical Indicators
AbdullahAlraajh
Takip Et
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.