I've recently upgraded Zorro to 2.44 and I've noticed an issue with the StartDate. It works well when I set this to the beginning of the year, but I get a 047 warning once I adjust it to a later date. As a result, Zorro starts reading my .t6 data for the following year.

Quote
function run()
{
History = ".t6";
BarPeriod = 1;
//StartDate = 20200101;//OK
StartDate = 20200201;//Warning 047: EUR/USD first bar on 2021-01-03...

if(Bar > 0)
{
//returns: 'Date: 210103 23:01:00 | Price: 1.22375' when StartDate = 20200201
printf("\nDate: %s | Price: %.5f",strdate(YMDHMS,ldate(UTC,0)), priceClose());
quit();
}
}