structureLookback = input(title="Lookback", type=input.integer, defval=7, group=trs)
targetBarIndex = input(title="Bar Index", type=input.integer, defval=0, group=trs)
//bar_index low high
n = bar_index < targetBarIndex ? na : bar_index - targetBarIndex
pivotLowHigh = tradeType == "Long" ? (bar_index < targetBarIndex ? na : low[n]) : bar_index < targetBarIndex ? na : high[n]
//Fib Trailing variablen
var Price = 0.0
t_Price = tradeType == "Long" ? highest(high, structureLookback) : lowest(low, structureLookback)
//Berechnung des Fib-Levels
fib_m23 = Price-(Price-pivotLowHigh)*(-0.236)
//Update Price aufgrund von Price Action
if ((bar_index >= targetBarIndex and targetBarIndex != 0)or targetBarIndex==0)
//long version
if (t_Price > Price or Price == 0.0) and tradeType == "Long"
Price := t_Price
plot(pivotLowHigh, color=color.gray, title="SwingLow")
バーインデックスを設定してピボットを低くする関数のこの部分は機能しますが、10〜20秒後にランタイムエラーが発生します。
Pine は、シリーズの参照長を決定できません。max_bars_back を使用してみてください
なぜこのエラーが発生するのですか? 私が変更しなければならない提案はありますか?