如何从过去的事件中检索偏移量?松脚本 V5

How to retrieve an offset from a past event? Pine Script V5

SomethingHappens[0] 发生在现在,因此它与 close[0].

在同一根蜡烛线发生

但是 SomethingHappens[1](如果我没记错的话我们可以用这种方式处理一系列事件)发生在 close[x] 的时间,其中 x 是任何东西,例如2329 …等等——随着图表的流动,它一直在变化。我们想知道这个 close[x] 中的那个 x 是什么来解决那个 SomethingHappens[1].

的蜡烛

有没有办法检索该偏移量?

听起来你可以使用 ta.barssince()

x = ta.barssince(SomethingHappens)