New keyword added for the r2 32 beta.
A new keyword for the scans was added - it's DaysLoaded - it returns the actual number of days that the program loaded. This can be used to scan every day in the database.
For Example:
// ----------------------------------------------
output="test.lst";
integer i , StartIndex;
DaysToLoad=2200;
StartIndex := (DaysLoaded - 1) * -1;
for i = StartIndex to 0 do if ( Open(i) > 0 ) and (close(i) < low(i) or close(i) > high(i) or low(i) > high(i) or open(i) < low(i) or open(i) > high(i) ) then println Symbol , "," , Date(i) , "," , Open(i) , "," , High(i) , "," , Low(i) , "," , Close(i); endif; next i;
// ---------------------------------------------------- |