| stevehopwoodforex.com https://www.stevehopwoodforex.com/phpBB3/ Print view |
|
| Desky. TDesk's trading drone. https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=5545 |
Page 27 of 50 |
| Author: | wojtek_amm [ Wed Mar 13, 2019 5:36 pm ] |
| Post subject: | Desky. TDesk's trading drone. |
Hey Steve, Many thanks for the hard work for the whole team. I think that it would be a useful option to stop EA after close, for example, 8 (xx) baskets a day. What do you think? Would this be useful? Can you add it to Drone? Best Regards Wojtek |
|
| Author: | SteveHopwood [ Wed Mar 13, 2019 6:47 pm ] |
| Post subject: | Desky. TDesk's trading drone. |
V 3d is in post 1. I have rewritten the swap filter code. To DIY, go to this function: void TradeDirectionBySwap(string symbol) Replace it with this one: Code: Select all Delete TradeLong and TradeShort. Compiling will throw up two error, so go to them and delete the lines of code that contain them. --------------- I have added gap filling to the grid trading section. From the updated user guide:
Scroll down the the grid inputs section of the inputs. I have rearranged the order as well as adding the fill the gap input. so replace the entire block with this: Code: Select all Look up a few lines until you see: }//if (!StopTrading) Insert this immediately above: Code: Select all Code: Select all |
|
| Author: | JockTrader [ Thu Mar 14, 2019 7:46 pm ] |
| Post subject: | Desky. TDesk's trading drone. |
Hi Steve i think i might have found an issue with new gap feature, when you go Short, it seams to add orders until your account cant take no more, it does not do this every time, i'm sure its only when the first grid has not been hit, Long seams fine, i have uploaded 2 video of Long and Short - please note i had to shoehorn your code into my dashboard so that i can test it out but i'm sure ive not f8cked any thing up in the new code. Seems the videos wont upload, is 6MB to big. |
|
| Author: | SteveHopwood [ Thu Mar 14, 2019 8:25 pm ] |
| Post subject: | Desky. TDesk's trading drone. |
Thanks. I found the bloop within seconds of starting to look. Fix is in post 1. This is one of my usual copy/paste/forgot-to-edit thingies. The DIY fix makes it obvious. Do a search for: hiLowestPrice = MathMin(HighestSellPrice, HighestSellStopPrice); You folks probably don't need to read any further but just in case, replace it with: hiLowestPrice = MathMax(HighestSellPrice, HighestSellStopPrice); |
|
| Author: | SteveHopwood [ Sun Mar 24, 2019 10:54 am ] |
| Post subject: | Desky. TDesk's trading drone. |
V 3e is in post 1. The next version of TDesk will include the facility to generate an EXIT signal, so 3e includes the option to act on this. The new input is in the trade exits section - CloseOnEXITSignal. This has no effect at the moment; it will start to work as soon as Thomas releases his next version. Some folks like to be alerted when Desky does anything major, so I have added a mass of alerts options. You will find these right at the end of the inputs. There is a section in the user guide about them but their use should be obvious from their names. You can have a screen alert and a smart phone 'push' alert:
extern bool CloseOnEXITSignal=false; Copy the input into your file. Searching for, "CloseOnEXITSignal" will take you to the code in OnTimer() that calls the void DoExitSignalClosure(string symbol, int pairIndex, int signal) to do the work. Copy it all into your file. Copy this little lot to the end of your inputs: //Alerts extern string sep18="================================================================"; extern string ale="---- Alerts ----"; extern bool ShowFlatClosureAlert=false; extern bool SendFlatClosureAlertPush=false; extern bool ShowOppositeSignalClosureAlert=false; extern bool SendOppositeSignalClosureAlertPush=false; extern bool ShowEXITSignalClosureAlert=false; extern bool SendEXITSignalClosureAlertPush=false; extern bool ShowMarginLevelClosureAlert=false; extern bool SendMarginLevelClosureAlertPush=false; extern bool ShowPendingDeltionAlert=false; extern bool SendPendingDeltionAlertPush=false; extern bool ShowRolledTradesSentAlert=false; extern bool SendRolledTradesSentAlertPush=false; extern bool ShowCloseGridAtMrtPlusOneLevelAlert=false; extern bool SendCloseGridAtMrtPlusOneLevelAlertPush=false; extern bool ShowIndividualBasketCloseAlert=false; extern bool SendIndividualBasketCloseAlertPush=false; extern bool ShowGlobalBasketCloseAlert=false; extern bool SendGlobalBasketCloseAlertPush=false; extern bool ShowRecoveryCloseAlert=false; extern bool SendRecoveryCloseAlertPush=false; extern bool ShowHedgeSendAlert=false; extern bool SendHedgeSentAlertPush=false; extern bool ShowHedgeClosedAlert=false; extern bool SendHedgeClosedAlertPush=false; extern bool ShowShirtProtectionAlert=false; extern bool SendShirtProtectionAlertPush=false; Then go to 3f and search for each of the inputs in turn to find the code to copy and where to copy it. A DIY here is going to be a bit of a faff. It might be quicker to make your own changes to 3f rather than try to edit your own file. |
|
| Author: | SteveHopwood [ Sat Mar 30, 2019 12:16 pm ] |
| Post subject: | Desky. TDesk's trading drone. |
Thomas has released TDesk 6 viewtopic.php?p=166863#p166863 Desky 3g is in post 1 here. Amongst other stuff, 3g will respond to EXIT signals by closing your position. 3g and future releases will have the over-trading filters enabled by default, so you will need to turn them off if you do not want them. Noobs, leave them alone. This is not a version to DIY folks. It will be easier to download 3g and make your own changes to the inputs etc than to try to add the changes. Plus, I cannot be arsed to describe them. |
|
| Author: | vinayakshanbhag [ Mon Apr 01, 2019 7:56 am ] |
| Post subject: | Desky. TDesk's trading drone. |
can't load the TDesk trading partner ea on the chart, that is downloaded from post 1 of TDesk trading Drone. Can you help me with this matter please and let me know if i am on the right page Regards : |
|
| Author: | SteveHopwood [ Mon Apr 01, 2019 3:50 pm ] |
| Post subject: | Desky. TDesk's trading drone. |
Most of you will have read this post: viewtopic.php?p=166881#p166881 I checked and have not made the same mistake in Desky's code. |
|
| Author: | SteveHopwood [ Fri Apr 05, 2019 12:46 pm ] |
| Post subject: | Desky. TDesk's trading drone. |
I just received this PM from Bob, so I am posting it in all the most active threads: The best way to get in touch will be by PM. |
|
| Author: | SteveHopwood [ Mon Apr 08, 2019 4:47 pm ] |
| Post subject: | Desky. TDesk's trading drone. |
V 3h is in post 1. It incorporates an exit strategy based on an idea linked by LittleCaro at http://www.stevehopwoodforex.com/phpBB3 ... 66#p166966 From the updated user guide trade exit strategies section:
|
|
| All times are UTC | Page 27 of 50 |
|
Powered by phpBB® Forum Software © phpBB Limited |
|