OPEN-SOURCE SCRIPT

MA 20, 50, 200

//version=5
indicator("MA 20, 50, 100", overlay=true)

// Calculate the 20-period, 50-period, and 100-period Simple Moving Averages
ma20 = ta.sma(close, 20)
ma50 = ta.sma(close, 50)
ma100 = ta.sma(close, 200)

// Plot the moving averages on the chart
plot(ma20, color=color.red, linewidth=2, title="MA 20")
plot(ma50, color=color.green, linewidth=2, title="MA 50")
plot(ma100, color=color.blue, linewidth=2, title="MA 200")
Moving Averages

סקריפט קוד פתוח

ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יוכלו להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אבל השימוש החוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.

רוצה להשתמש בסקריפ זה בגרף?

כתב ויתור