Help Modify an indicator

 

Is there any benefit to counting bars like this:


for(i = limit; i >= 1; i--)

or this

for(i = 0; i <= limit; i++)
?


Should I have all of my indicators counting bars the same way? If so, how do I convert it from counting bars using one method to the other?


Thanks in advance.

Reason: