Set Filter to Status("lastbarinrange") as follows:
Closes = Cum(IIF(Status("barinrange"), Close, 0));
Filter = Status("lastbarinrange");
AddColumn(Closes, "Closes");
Mike
--- In [email protected], "progster01" <progs...@...> wrote:
>
> Hi.
>
> Suppose one is doing a daily exploration over the course of a date range.
>
> It's easy to calculate anything and show the value each and every day using
> AddColumn().
>
> However, suppose one is calculating rolling statistics and has no interest in
> seeing any values but the final values when the exploration is run.
>
> Is there a technique whereby one can have the exploration visit all the bars
> across the date range but only display the final value?
>
> IOW, the running the exploration in the AA window would display one row per
> symbol, where that row contains the summary stat(s) which is (are), in fact,
> the last value of a continuously calculated array.
>