OPEN-SOURCE SCRIPT

lidos Technical Indicator


// حساب المؤشرات الفنية
sma = ta.sma(close, sma_length)
rsi = ta.rsi(close, rsi_length)
[macd_line, signal_line, _] = ta.macd(close, macd_fast, macd_slow, macd_signal)
volume_normalized = na(volume) ? 0 : volume // تأكد من أن الحجم ليس NaN

Clause de non-responsabilité