OPEN-SOURCE SCRIPT

1-Minute Precision Indicator

//version=5
indicator("1-Minute Precision Indicator", overlay=true)

// تنظیمات ورودی
length_rsi = input(14, "RSI Length")
rsi_buy_level = input(30, "RSI Buy Level")
rsi_sell_level = input(70, "RSI Sell Level")
box_length = input(5, "Structure Box Length")

// محاسبه RSI
rsi_value = ta.rsi(close, length_rsi)

// شناسایی باکس‌های استراکچر
highest_high = ta.highest(high, box_length)
lowest_low = ta.lowest(low, box_length)

// شرایط خرید و فروش
buy_signal = close < lowest_low and rsi_value < rsi_buy_level
sell_signal = close > highest_high and rsi_value > rsi_sell_level

// رسم باکس‌های استراکچر
bgcolor(buy_signal ? color.new(color.green, 90) : na)
bgcolor(sell_signal ? color.new(color.red, 90) : na)

// رسم سیگنال‌ها روی نمودار
plot
Bands and Channels

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

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

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

כתב ויתור