//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

Pernyataan Penyangkalan