TraderWeTraderWe Team· Aug 2026 ago· edited Aug 2026 ago
There are built-in lookback functions for this. `PriceN(p)` gives the price `p` ticks ago, and the same pattern exists for other series (`BuyVolN`, `Ask1N`, and so on). So a "higher than a minute ago" style condition is a direct comparison rather than something you need to store. For aggregate lookbacks over a window there are the `Sma(n)`, `HighestPrice(n)`, `LowestPrice(n)` style helpers. If you tell us the exact comparison you want, we can show the line.