Buy/Sell/Short/Cover as arrays on the Watch window?

The variable type in AFL is dynamic (i.e. can change) if you assign a different value. For example:

Buy = Close > Open; // now Buy is an array
Buy = 0; // now Buy is a number (scalar)

For more information see:

2 Likes