I see, Thanks for the clarification!

I get this behavior when I connect to the IB API and run this script:
Code:
// Update M1 price history of all assets
function run()
{
  NumYears = 1;
  assetList("Strategy\AssetsZ9.csv");
  while(loop(Assets))
    assetHistory(Loop1,1);
  quit();
}


where "AssetsZ9.csv" contains the assets of Z9 strategy. As Zorro works on downloading the different assets, it reports the number of bars read in each case. (Each bar is one minute for this M1 setting.) And the number of bars read seems to differ for each asset, sometimes by thousands of minutes.

Last edited by Hredot; 02/09/18 19:41.