OPEN-SOURCE SCRIPT

Time-Based High and Low Marker

//version=5
indicator("Time-Based Candle High & Low", overlay=true)

// Input: Specify the time for the 5-minute candle
input_time = input.time(timestamp("2025-01-01 09:00:00"), title="Select Candle Time")

// Variables to store the high and low of the specified candle
var float selected_high = na
var float selected_low = na

// Check if the current candle matches the input time
if (time == input_time)
selected_high := high
selected_low := low

// Plot the high and low values as horizontal lines
if not na(selected_high)
line.new(bar_index, selected_high, bar_index + 1, selected_high, color=color.green, width=2, extend=extend.right)
if not na(selected_low)
line.new(bar_index, selected_low, bar_index + 1, selected_low, color=color.red, width=2, extend=extend.right)

// Plot labels for better visibility
if not na(selected_high)
label.new(bar_index, selected_high, str.tostring(selected_high), style=label.style_label_up, color=color.green, textcolor=color.white)
if not na(selected_low)
label.new(bar_index, selected_low, str.tostring(selected_low), style=label.style_label_down, color=color.red, textcolor=color.white)
Bands and Channels

Скрипт с открытым кодом

В истинном духе TradingView автор этого скрипта опубликовал его с открытым исходным кодом, чтобы трейдеры могли понять, как он работает, и проверить на практике. Вы можете воспользоваться им бесплатно, но повторное использование этого кода в публикации регулируется Правилами поведения. Вы можете добавить этот скрипт в избранное и использовать его на графике.

Хотите использовать этот скрипт на графике?

Отказ от ответственности