- Search Crypto Craft
-
sangmane replied Sep 21, 2011Hi dogol, I havent had enough time to modify dll source. The simplest way to get Order Close All feature is to modify EasyOrder_Close script file. The attached EasyOrder_Close will close all orders having the same symbol with the current chart. To ...
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Sep 21, 2011this is just my opinion based on experiments: 1. by putting __declspec(dllexport) in front of function declaration OR using def file, you tell compiler to export that function. if you dont use def file nor __declspec(dllexport) keyword, your ...
.def file vs. __declspec(dllexport)
-
sangmane replied Sep 21, 2011Hi iddy, after you change risk value and press submit button, that value will be saved on a file named "EasyOrder.txt" in expertslibraries folder. From that time, the new risk value become default value.
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Sep 20, 2011from MQL reference: then use def file to avoid the function name from being decorated.
.def file vs. __declspec(dllexport)
-
sangmane replied Sep 20, 2011you should use: for(int i = totalHistory-1; i>=0; i--) instead of for(int i = 0; i<totalHistory; i++) as in the original code. edited to add: calculation should start from the newest entry in history pool. in my opinion, oldest order have index = 0. ...
Learning to Code Question (sangmane)
-
sangmane replied Sep 20, 2011eknockers, i'm shocked reading the thread title
you better not use member's handle as part of thread title, except it is your own handle. luckily the content is not something bad about me 
Learning to Code Question (sangmane)
-
sangmane replied Sep 8, 2011Hi arezab, I have modified the scripts for point 1, difference SL/TP color. Use the attached "EasyOrder.mq4". In the file, it uses Coral for SL and LimeGreen for TP. You can change the color by open the mq4 file in metaeditor and edit the following ...
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Sep 8, 2011Hi Clint, Open Easy_Draw.mq4 file in metaeditor, find these lines: switch(trade) { case 0: lines[0] = Ask-2.0*atr; lines[1] = 0; lines[2] = Ask+2.0*atr; break; case 1: lines[0] = Bid+2.0*atr; lines[1] = 0; lines[2] = Bid-2.0*atr; break; case 2: ...
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Aug 19, 2011right click on that small window drawn by EasyOrder. You'll see a pop up menu
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Aug 19, 2011EasyOrder only modify SL/TP if you drag and drop something on your chart . It modifies your order's SL/TP according to the level of TP/SL lines that were drawn by EasyOrder the first time you prepare your order. If you want to manage SL/TP levels ...
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Aug 17, 2011my understanding is that he owns the indicator but not the EA.
place trades by Reading data from the Experts tab
-
sangmane replied Aug 13, 2011you need to change decimal separator from "," to "." in Excel Options
Any indicators that calculate each pair's pip value?
-
sangmane replied Aug 4, 2011are you able to solve the problems? it will be helpful for others if you can post here the real cause of the problems and the way you solve it.
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Aug 4, 2011hi tod, lines get cancelled = lines dissapeared? normally the script will alert you if sl/tp lines position is incorrect. for example, for buy order, tp has to be higher than open price. check error messages in experts tab. regards
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Jul 23, 2011imo 00:00 is the first bar of today one bar before 00:00 is the last bar of yesterday
datetime StartTime Question