How can I make sure daily Forex bars do not span over a weekend? In other words, I'd like the first daily bar of the week to start with the first ticks of that week, and have the last bar of the week end with the last tick of the week.

Technically that means for Forex following the US daylight savings but offset to Asian session, so EST+5

Can you confirm that would mean this:
Code
BarPeriod = 1440;
BarZone   = EST;
BarOffset = 5*60;


Thanks,
Yoriz