var line_color_daily = color.new(color.blue, 50) // رنگ خطوط روزانه var line_color_weekly = color.new(color.green, 50) // رنگ خطوط هفتگی var line_color_monthly = color.new(color.red, 50) // رنگ خطوط ماهانه
// بررسی تایمفریم is_daily = timeframe.isintraday and timeframe.multiplier == 5 or timeframe.multiplier == 30 is_weekly = timeframe.isintraday and timeframe.multiplier == 60 is_monthly = timeframe.isintraday and timeframe.multiplier == 240
// رسم خطوط روزانه if is_daily and ta.change(time("D")) != 0 line.new(x1=bar_index, y1=high, x2=bar_index, y2=low, color=line_color_daily, width=1)
// رسم خطوط هفتگی if is_weekly and ta.change(time("W")) != 0 line.new(x1=bar_index, y1=high, x2=bar_index, y2=low, color=line_color_weekly, width=2)
// رسم خطوط ماهانه if is_monthly and ta.change(time("M")) != 0 line.new(x1=bar_index, y1=high, x2=bar_index, y2=low, color=line_color_monthly, width=3)
ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יוכלו להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אבל השימוש החוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.
המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.