// Calculate the 20-period Simple Moving Average (SMA) sma20 = ta.sma(close, 20)
// Calculate the 80-period Simple Moving Average (SMA) sma80 = ta.sma(close, 80)
// Plot the 20-period SMA plot(sma20, title="20 SMA", color=color.blue, linewidth=2)
// Plot the 80-period SMA plot(sma80, title="80 SMA", color=color.red, linewidth=2)
// Optional: Add background color when the 20 SMA crosses above the 80 SMA bgcolor(sma20 > sma80 ? color.new(color.green, 90) : na, title="Bullish Crossover Background")
// Optional: Add background color when the 20 SMA crosses below the 80 SMA bgcolor(sma20 < sma80 ? color.new(color.red, 90) : na, title="Bearish Crossover Background")
ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יוכלו להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אבל השימוש החוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.
המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.