OPEN-SOURCE SCRIPT

ATR

//version=6
indicator("ATR", "", true)

// Настройки
atrPeriodInput = input.int(24, "Кол-во свечей", minval = 1, maxval = 24)
atrStopInput = input.int(10, "Stop ATR input")

// Переменные для хранения значений
var float thirdHigh = na
var float curentATR = na

// Получаем данные о дневных свечах
[highDaily, lowDaily, closeDaily] = request.security(syminfo.tickerid, "1D", [high, low, close])

// Условие для обновления thirdHigh
isNewDay = ta.change(time("D")) != 0 // Проверяем, изменился ли день
if (isNewDay or na(thirdHigh)) // Проверяем, если значение na или день изменился
thirdHigh := highDaily[5] // Индекс 2 соответствует третьей свече с конца



// Создание таблицы для отображения
var table atrDisplay = table.new(position.top_right, 2, 5, bgcolor=#4b6ad8, frame_width=2, frame_color=color.black)

if barstate.islast
// Заполняем таблицу
table.cell(atrDisplay, 1, 0, str.tostring(thirdHigh, format.mintick), text_color=color.white, bgcolor=color.rgb(233, 153, 32))


table.cell(atrDisplay, 0, 0, "ATR 1D", text_color=color.white, bgcolor=color.rgb(233, 153, 32))
Bill Williams IndicatorsCandlestick analysisChart patterns

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é