What about:
InsideDays = Sum(Low > Ref(Low, -1) AND High < Ref(High, -1), Length);
Mike
--- In amibroker@xxxxxxxxx ps..com, "swstevewong38" <swstevewong38@ ...>
wrote:
>
> New to Amibroker using it about a week.
>
> Translating a piece of code from EasyLanguge.
>
> InsideDays = CountIf(Low > Low[1] and High < High[1], Length);
>
> Think for a while maybe a combination of AFL's SUM, CUM, BarsSince
> function can do, but still can't get the correct formula.
>
> Is there an equivalent way to express that CountIf in AFL without
need
> to write loop?
>
> Thanks.
>