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

Script open-source

Dans le plus pur esprit TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par nos Règles. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Vous voulez utiliser ce script sur un graphique ?

Clause de non-responsabilité