What is a variable period?

Hi.
Reading through AFL reference guide. I came up to this section. Didnt find anything that explained what it is, why we need it ect.

Variable period functions

Functions accepting variable periods....

Cheers

Variable periods are periods that are of type ARRAY.
Such periods may be different per each element of array.
Here is example where period is variable one:

new_day = Datenum() != Ref(DateNum(),-1);
period = BarsSince(new_day)+1;
x = Sum(V, period);

Non-variable (fix) period (-> just single value):

period = 10;
x = Sum(V, period);
5 Likes

Thank you for taking the time to answer my question

This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.