Subthread: Dolly 2nd Clone Project - page 17

 
et_phonehome_2:
Since some of you here have MIG as your broker, can you tell me what the settings should be for Dolly Trading Times #3 indicator?

You can use the Dolly Trading Times #4 and TradingHours1 for

following brokers:

Admiral Investments & Securities Ltd. GMT+0 2006.12.26

FastBrokersFX.com GMT+0 2006.12.26

Interbank FX, LLC. GMT+0 2006.12.26

North Finance Co Ltd GMT+0 2006.12.26

Forex Liquidity LLC GMT+0 2006.12.26

Velocity4x GMT+0 2006.12.26

CFGTrader, LLC GMT+1 2006.12.26

FIBO Group, Ltd. GMT+1 2006.12.26

Alpari (UK) Ltd. GMT+1 2006.12.26

MIG Investments SA GMT+1 2006.12.26

MetaQuotes Software Corp. GMT+1 2006.12.26

Spacevision Switzerland SA GMT+1 2006.12.26

SpotTrader GMT+1 2006.12.26

Alpari Ltd. GMT+1 2006.12.26

X-Trade Brokers GMT+1 2006.12.26

Gimex Group GMT+1 2006.12.26

Forex Gen LLC GMT+2 2006.12.26

FXDirectDealer GMT+2 2006.12.26

EuroForex Development LLC. GMT+2 2006.12.26

SNC Investments, Inc. GMT+2 2006.12.26

 

time

barnix:
You can use the Dolly Trading Times #4 and TradingHours1 for

following brokers:

Admiral Investments & Securities Ltd. GMT+0 2006.12.26

FastBrokersFX.com GMT+0 2006.12.26

Interbank FX, LLC. GMT+0 2006.12.26

North Finance Co Ltd GMT+0 2006.12.26

Forex Liquidity LLC GMT+0 2006.12.26

Velocity4x GMT+0 2006.12.26

CFGTrader, LLC GMT+1 2006.12.26

FIBO Group, Ltd. GMT+1 2006.12.26

Alpari (UK) Ltd. GMT+1 2006.12.26

MIG Investments SA GMT+1 2006.12.26

MetaQuotes Software Corp. GMT+1 2006.12.26

Spacevision Switzerland SA GMT+1 2006.12.26

SpotTrader GMT+1 2006.12.26

Alpari Ltd. GMT+1 2006.12.26

X-Trade Brokers GMT+1 2006.12.26

Gimex Group GMT+1 2006.12.26

Forex Gen LLC GMT+2 2006.12.26

FXDirectDealer GMT+2 2006.12.26

EuroForex Development LLC. GMT+2 2006.12.26

SNC Investments, Inc. GMT+2 2006.12.26

I am using FXDD...

I set up BROKER GMT OFFSET value to 2

but still on my chart it seems start of the day is at 0h00 (fxdd server time)...

is it normal?

happy new year to all

emeric

 
elepoutre:
I am using FXDD...

I set up BROKER GMT OFFSET value to 2

but still on my chart it seems start of the day is at 0h00 (fxdd server time)...

is it normal?

happy new year to all

emeric

For Dolly Trading Times #4 and TradingHours1

you don't need set anything all settings is automated.

All days in all timezones begins with 00h:00m.

 

Dolly Trading Times #4 and TradingHours1

Hi Barnix,

Thank you for your great indicators!

May I have a question though: When I last time (before Christmas) checked North Finance worked at GMT+2. Have they changed their broker time?

Happy New Year to You and every Forex-TSD Members!

barnix:
You can use the Dolly Trading Times #4 and TradingHours1 for

following brokers:

Admiral Investments & Securities Ltd. GMT+0 2006.12.26

FastBrokersFX.com GMT+0 2006.12.26

Interbank FX, LLC. GMT+0 2006.12.26

North Finance Co Ltd GMT+0 2006.12.26

Forex Liquidity LLC GMT+0 2006.12.26

Velocity4x GMT+0 2006.12.26

CFGTrader, LLC GMT+1 2006.12.26

FIBO Group, Ltd. GMT+1 2006.12.26

Alpari (UK) Ltd. GMT+1 2006.12.26

MIG Investments SA GMT+1 2006.12.26

MetaQuotes Software Corp. GMT+1 2006.12.26

Spacevision Switzerland SA GMT+1 2006.12.26

SpotTrader GMT+1 2006.12.26

Alpari Ltd. GMT+1 2006.12.26

X-Trade Brokers GMT+1 2006.12.26

Gimex Group GMT+1 2006.12.26

Forex Gen LLC GMT+2 2006.12.26

FXDirectDealer GMT+2 2006.12.26

EuroForex Development LLC. GMT+2 2006.12.26

SNC Investments, Inc. GMT+2 2006.12.26
 
chrisstoff:
Hi Barnix,

Thank you for your great indicators!

May I have a question though: When I last time (before Christmas) checked North Finance worked at GMT+2. Have they changed their broker time?

Happy New Year to You and every Forex-TSD Members!

Can you check the GMT with DollyClock.mq4.

Please verify this indicator.

Files:
nf.gif  22 kb
dollyclock.mq4  18 kb
 

Barnix

Thanks for the files. Do you know if these files have the correction for DST changes which will be changing starting in March of 2007? I believe that it will be extended by one week.....

 
et_phonehome_2:
Barnix Thanks for the files. Do you know if these files have the correction for DST changes which will be changing starting in March of 2007? I believe that it will be extended by one week.....

The algorithm is valid olso after 2007:

int GMT_5(datetime dt1)

{

//US

//-----------------------------------------------------------------

//Eastern Standard Time (EST) = GMT-5

//Eastern Daylight Time (EDT) = GMT-4

//-----+--------------------------+----------------------------------

//Year | DST Begins 2 a.m. | DST Ends 2 a.m.

//1990-| |

//2006 | (First Sunday in April) | (Last Sunday in October)

//-----+--------------------------+----------------------------------

//-----+--------------------------+----------------------------------

//Year | DST Begins 2 a.m. | DST Ends 2 a.m.

//2007-| (Second Sunday in March)| (First Sunday in November)

//-----+--------------------------+----------------------------------

if(TimeYear(dt1)<2007)

if ((dt1>first_sunday(TimeYear(dt1),4))&&(dt1<last_sunday(TimeYear(dt1),10)))

return(-4);

else

return(-5);

else

if ((dt1>second_sunday(TimeYear(dt1),3))&&(dt1<first_sunday(TimeYear(dt1),11)))

return(-4);

else

return(-5);

}

 

Verification

Please find the screen shot attached.

GMT, Local Time, Broker Time, etc. all are correct except for this statement: North Finance Co. Ltd: GMT+1.

You can also check it from Broker: 17:45 - GMT: 15:45 = 2 hours

barnix:
Can you check the GMT with DollyClock.mq4. Please verify this indicator.
Files:
dollyclock.gif  26 kb
 
chrisstoff:
Please find the screen shot attached.

GMT, Local Time, Broker Time, etc. all are correct except for this statement: North Finance Co. Ltd: GMT+1.

You can also check it from Broker: 17:45 - GMT: 15:45 = 2 hours

You have different broker time because NF are 3 servers.

Files:
nf_servers.jpg  30 kb
 
barnix:
You have different broker time because NF are 3 servers.

Thank you for the answer.

Hm, interesting. I did not know that they use different time settings on their different servers.

The image I attached to my earlier post was taken from a demo account but I also have a live account with NF, both the accounts use the same time zone.

Thanks again for the hard work.

Reason: