Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Community
/
Ideas
/
عيدالله
Amazon.com
عيدالله
By AbdullahAlraajh
Follow
Follow
2 days ago
2
2 days ago
//
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
Follow
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the
Terms of Use
.