Championship server Day light savings time

 

My question is about Daylight savings time.

If I have market hours coded in my expert like below:

int TradingOpenHour=0;
int TradingCloseHour=22;
// Tokyo Open 07:00 PM EST (00:00 GMT)
// Close 04:00 AM EST (09:00 GMT)
int TokyoOpenHour=0;
int TokyoCloseHour=9;
// London Open 03:00 AM EST (08:00 GMT)
// Close 12:00 PM EST (17:00 GMT)
int LondonOpenHour=8;
int LondonCloseHour=17;
// New York Open 08:00 AM EST (13:00 GMT)
// Close 05:00 PM EST (22:00 GMT)
int NewYorkOpenHour=13;
int NewYorkCloseHour=21;

Right now this matches GMT time on your server for the Championship contest. After the day light savings time change happens will this still be valid market hours or do I need to code for the change?

 

Anyone know the answer to this?

 
everlongh:

Anyone know the answer to this?

GMT does not have Daylight Savings Time

However, that does not guarantee the server won't change its time...

 
 
wackena:
DST is discussed on this page in thread 'Registration to Automated Trading Championship 2006 is opened!'

Thanks!