good to know. Even though it makes it a bit harder to troubleshoot this issue
Desky. TDesk's trading drone.
- WorldsEnd
- Trader
- Posts: 97
- Joined: Fri Aug 29, 2014 7:36 pm
Re: Desky. TDesk's trading drone.
Thx gents,
good to know. Even though it makes it a bit harder to troubleshoot this issue
Does anybody have a good idea what could be the reason or how to handle it? I am kind of puzzled.
good to know. Even though it makes it a bit harder to troubleshoot this issue
-
pree876
- Trader
- Posts: 20
- Joined: Fri Oct 29, 2021 3:46 pm
Re: Desky. TDesk's trading drone.
Changing the broker time and local time from army time to normal time in the TDesk Trading Partner EA.mq4
Find this
Replace it with this
Find this
Code: Select all
screenMessage = "";
//screenMessage = StringConcatenate(screenMessage,gap + NL);
//SM(NL);
SM(""+NL);
SM("Broker time = "+TimeToStr(TimeCurrent(),TIME_DATE|TIME_SECONDS)+": Local time = "+TimeToStr(TimeLocal(),TIME_DATE|TIME_SECONDS)+NL);
SM(version + NL);
SM(NL);
Code: Select all
screenMessage = "";
//screenMessage = StringConcatenate(screenMessage, gap + NL);
//SM(NL);
datetime currentTime = TimeCurrent();
datetime localTime = TimeLocal(); // Use TimeLocal directly
int brokerYear = TimeYear(currentTime);
int brokerMonth = TimeMonth(currentTime);
int brokerDay = TimeDay(currentTime);
int brokerHour = TimeHour(currentTime);
int brokerMinute = TimeMinute(currentTime);
int brokerSecond = TimeSeconds(currentTime);
int localYear = TimeYear(localTime);
int localMonth = TimeMonth(localTime);
int localDay = TimeDay(localTime);
int localHour = TimeHour(localTime);
int localMinute = TimeMinute(localTime);
int localSecond = TimeSeconds(localTime);
string brokerTime = StringFormat("Broker time = %04d-%02d-%02d %02d:%02d:%02d %s", brokerYear, brokerMonth, brokerDay, brokerHour % 12, brokerMinute, brokerSecond, brokerHour >= 12 ? "PM" : "AM");
string localTimeString = StringFormat("Local time = %04d-%02d-%02d %02d:%02d:%02d %s", localYear, localMonth, localDay, localHour % 12, localMinute, localSecond, localHour >= 12 ? "PM" : "AM");
SM(""+NL);
SM(brokerTime + ": " + localTimeString + NL);
SM(version + NL);
SM(NL);
-
CoRi
- Trader
- Posts: 12
- Joined: Wed Nov 16, 2011 1:20 am
- Location: San José, Costa Rica
Individual basket trading
Hi everybody,
the 29th of June Wallywonka reported an issue regarding the single pair basket, which prevented orders to open.
Has there been any new development?
Saludos
the 29th of June Wallywonka reported an issue regarding the single pair basket, which prevented orders to open.
Has there been any new development?
Saludos
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Re: Individual basket trading
This prompted me to take another look. I still cannot see what is causing this.CoRi wrote: Fri Jan 12, 2024 1:59 am Hi everybody,
the 29th of June Wallywonka reported an issue regarding the single pair basket, which prevented orders to open.
Has there been any new development?
Saludos
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
-
Fabster76
- Posts: 3
- Joined: Tue Mar 10, 2020 7:04 pm
Re: Individual basket trading
hi Steve,SteveHopwood wrote: Sun Jan 14, 2024 3:11 pmThis prompted me to take another look. I still cannot see what is causing this.CoRi wrote: Fri Jan 12, 2024 1:59 am Hi everybody,
the 29th of June Wallywonka reported an issue regarding the single pair basket, which prevented orders to open.
Has there been any new development?
Saludos![]()
![]()
![]()
hope all is well!
apologies for being a pain. Would you have any updates on this please?
thanks a million
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Re: Individual basket trading
None at all. TreatIndividualPairsAsBasket is used 3 times:Fabster76 wrote: Fri Feb 23, 2024 2:59 pmhi Steve,SteveHopwood wrote: Sun Jan 14, 2024 3:11 pmThis prompted me to take another look. I still cannot see what is causing this.CoRi wrote: Fri Jan 12, 2024 1:59 am Hi everybody,
the 29th of June Wallywonka reported an issue regarding the single pair basket, which prevented orders to open.
Has there been any new development?
Saludos![]()
![]()
![]()
hope all is well!
apologies for being a pain. Would you have any updates on this please?
thanks a million
- In the chart feedback display.
When calling the function that calculates the basket TP.
When calling the function that examines the basket for possible closure.
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Re: Individual basket trading
SteveHopwood wrote: Sat Feb 24, 2024 3:15 pmNone at all. TreatIndividualPairsAsBasket is used 3 times:Fabster76 wrote: Fri Feb 23, 2024 2:59 pmhi Steve,SteveHopwood wrote: Sun Jan 14, 2024 3:11 pmThis prompted me to take another look. I still cannot see what is causing this.CoRi wrote: Fri Jan 12, 2024 1:59 am Hi everybody,
the 29th of June Wallywonka reported an issue regarding the single pair basket, which prevented orders to open.
Has there been any new development?
Saludos![]()
![]()
![]()
hope all is well!
apologies for being a pain. Would you have any updates on this please?
thanks a millionThe input is not referenced in any of the order sending decisions so I do not see how it can stop trading. The problem must have a different cause but I cannot find it.
- In the chart feedback display.
- When calling the function that calculates the basket TP.
- When calling the function that examines the basket for possible closure.
![]()
![]()
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Re: Individual basket trading
None at all. TreatIndividualPairsAsBasket is used 3 times:SteveHopwood wrote: Sat Feb 24, 2024 3:19 pmSteveHopwood wrote: Sat Feb 24, 2024 3:15 pmFabster76 wrote: Fri Feb 23, 2024 2:59 pmhi Steve,SteveHopwood wrote: Sun Jan 14, 2024 3:11 pmThis prompted me to take another look. I still cannot see what is causing this.CoRi wrote: Fri Jan 12, 2024 1:59 am Hi everybody,
the 29th of June Wallywonka reported an issue regarding the single pair basket, which prevented orders to open.
Has there been any new development?
Saludos![]()
![]()
![]()
hope all is well!
apologies for being a pain. Would you have any updates on this please?
thanks a million
- In the chart feedback display.
- When calling the function that calculates the basket TP.
- When calling the function that examines the basket for possible closure.
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
-
CoRi
- Trader
- Posts: 12
- Joined: Wed Nov 16, 2011 1:20 am
- Location: San José, Costa Rica
Individual basket trading
Steve,
I saved some older versions of Desky and tried some for Individual Basket Trading. Version 1m is still working fine.
Version q and following are not working. The big difference between those 2 versions is that in-between of the 2 you started with "Richard Specials". Maybe this information helps.
Saludos
I saved some older versions of Desky and tried some for Individual Basket Trading. Version 1m is still working fine.
Version q and following are not working. The big difference between those 2 versions is that in-between of the 2 you started with "Richard Specials". Maybe this information helps.
Saludos
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Re: Individual basket trading
Thanks. It gives me something to look into.CoRi wrote: Fri Mar 01, 2024 8:00 pm Steve,
I saved some older versions of Desky and tried some for Individual Basket Trading. Version 1m is still working fine.
Version q and following are not working. The big difference between those 2 versions is that in-between of the 2 you started with "Richard Specials". Maybe this information helps.
Saludos
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.