admin管理员组

文章数量:1345285

Can't draw a line (line2) from the open bar where line1 ends... line2 starts at the right bar, but the starting point is not the same - you need to get open What I do wrong. The presented script is stable, but not correct...

//@version=6
indicator('Проба-2', overlay = true)
N_candele_for_Deleting_line = input(1, 'Кол-во свечей до удаления линии')



var BIG_NUMBER = 999999999 // safely bigger than any bar_index

//////////////////////////////////////////////////////////////  STEPS FOR SELL  /////////////////////////////////////////////////////////////////////////////////////////////

leftBars1 = input(20, 'для SELL баров слева')

maxHigh1 = ta.pivothigh(high[1], leftBars1, 0)

sravnenie_razmerov1 = math.abs(open[1] - close[1]) > math.abs(open - close) and
                      math.abs(open[1] - close[1]) > math.abs(open[2] - close[2]) and
                      low < open[1]

twocandlesbody1 = open[1] < close[1] and open > close and low < open[1]

twohigh1 = high[1] > high and high[1] > close[1] and high > open

summ = twocandlesbody1 and twohigh1 and bool(maxHigh1)

plotshape(summ, title = '2 свечи вход SELL', location = location.abovebar, color = color.red, style = shape.triangledown, text = ' 2 свечи', offset = -1)

Kol_Linii_for_SELL = input(7, 'Количество линий SELL')

var ArrayLine_for_SELL = array.new_line()
var Array_Line_Mark_For_Deletion_SELL = array.new_int()

if summ
    LINIA_for_SELL = line.new(bar_index[1], high[1], bar_index[1] + 1, high[1], extend = extend.right, color = color.red, width = 1)
    array.push(ArrayLine_for_SELL, LINIA_for_SELL)
    array.push(Array_Line_Mark_For_Deletion_SELL, BIG_NUMBER)

if array.size(ArrayLine_for_SELL) > 0
    for i = array.size(ArrayLine_for_SELL) - 1 to 0
        Line_for_SELL = array.get(ArrayLine_for_SELL, i)
        Line_Mark_SELL = array.get(Array_Line_Mark_For_Deletion_SELL, i)
        if line.get_y1(Line_for_SELL) < open and Line_Mark_SELL == BIG_NUMBER
            array.set(Array_Line_Mark_For_Deletion_SELL, i, bar_index)
            line.set_color(Line_for_SELL, color.blue)

        if bar_index - Line_Mark_SELL >= N_candele_for_Deleting_line
            line.delete(Line_for_SELL)
            array.remove(ArrayLine_for_SELL, i)
            array.remove(Array_Line_Mark_For_Deletion_SELL, i)

    if array.size(ArrayLine_for_SELL) > Kol_Linii_for_SELL
        ln = array.shift(ArrayLine_for_SELL)
        line.delete(ln)



// Получаем тикер текущего графика
symbol = syminfo.ticker

// Инициализируем переменную N_tiker
var int N_tiker = na

// Устанавливаем значения для N_tiker в зависимости от символа
if (symbol == "EURGBP" or symbol == "AUDCHF")
    N_tiker := 2
else if (symbol == "AUDCAD" or symbol == "AUDNZD" or symbol == "AUDUSD")
    N_tiker := 4
else if (symbol == "NZDUSD")
    N_tiker := 5

// Отображаем значение N_tiker на графике
//label.new(bar_index, close, "N_tiker: " + str.tostring(N_tiker), color=color.new(color.blue, 0), style=label.style_label_down)

// Новый массив для сделок
var float[] prices_entry = array.new_float(0)
var float[] prices_exit = array.new_float(0)
var int total_trades = 0
var int total_positive = 0
var int total_negative = 0

// Обработка "Стартового бара"
var int start_bar_index = na
var int second_bar_index = na
var int second_bar_bar = na
var int third_bar_index = na

var float line_start1 = na
var float line_start2 = na
var float line_start3 = na

// Логика для проведения линий
var line line1 = na
var line line2 = na
var line line3 = na

var float start_second = na


if array.size(ArrayLine_for_SELL) > 0
    First_start = array.get(ArrayLine_for_SELL, array.size(ArrayLine_for_SELL) - 1) // 
    if line.get_y1(First_start) < open // Если закрытие ниже линии
        start_bar_index := bar_index // Присваиваем индекс Стартового бара
        open_start = open//[start_bar_index]
        end_start = open[N_tiker]
        price_open_start = line.get_y1(First_start)
        
        
        // Добавляем линию и крест над "Стартовым баром"
        line1 := line.new(start_bar_index, open_start, start_bar_index + N_tiker, open_start, color=color.blue, width=3)
        
        //Определяемточку второго входа
        second_bar_index := start_bar_index + N_tiker
        start_second := open 
        line2 := line.new(second_bar_index, start_second, second_bar_index + N_tiker, start_second, color=color.black, width=3)

enter image description here

I tried to do the calculation of the entry point for line2 through the difference open [N _ tiker] - open, tried to apply the logic of finding the starting point through logical manipulations - such as if the first line ended, then the second line from open... begins. None of this worked - the script gave an error during testing.I also tried options with ta.barssciens and ta.valuewhen - but this did nothing at all...

本文标签: Determine starting point through N bars for future line drawing Pine ScriptStack Overflow