Hi,
Does calling the following function - lowest(5,low()) - inside function Main() triggers the Main() to be called for every each and every historical bar?
And if I have the following two lines inside the Main(),
lp = lowest(5,low());
hp = highest(5,high());
Will the Main() be called twice for each and every historical bar?
Is it true that for every series function I call, like the one above, the Main() is called for each and every historical bar? If so, how can I avoid that?
Thank you.
William
Does calling the following function - lowest(5,low()) - inside function Main() triggers the Main() to be called for every each and every historical bar?
And if I have the following two lines inside the Main(),
lp = lowest(5,low());
hp = highest(5,high());
Will the Main() be called twice for each and every historical bar?
Is it true that for every series function I call, like the one above, the Main() is called for each and every historical bar? If so, how can I avoid that?
Thank you.
William
Comment