- Search Crypto Craft
-
sangmane replied May 3, 2015Excel library for MT5 (export only)
Export to Excel in Real Time - library for MetaTrader 4
-
sangmane replied May 3, 2015Tt was coded for MT4. Did it work on MT5?
Export to Excel in Real Time - library for MetaTrader 4
-
sangmane replied May 1, 20151. On MT4: Tools - Options 2. Activate Expert Advisors tab 3. Make sure "Allow automated trading" and "Allow DLL import" checkboxes are ticked
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied May 1, 2015Can you provide more info about the problem? Error messages on experts tab? Screenshot?
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied May 1, 2015I prefer to store last known SL/TP size to global variable. So each time you set up a trade, EO will pick them. Wdyt?
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied May 1, 2015I've tested the latest script on Robo Forex, it works as expected.
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied May 1, 2015See update on page 1.
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Apr 27, 2015To allow trading in real account, add Global Variable "EO_ALLOWTRADING" and set it to 1. Please see screenshot in post #1
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Apr 27, 2015Which one that is not working? The old or the new version?
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Apr 23, 2015Update EasyOrder_Draw.ex4
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Apr 23, 2015Easy Order runs as script. It performs its task and quit immediately. To accomplish what you want, it needs an indicator that acting as a helper. Install EasyOrderInd.ex4 to Indicators folder and attach it on the chart.
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Apr 23, 2015Hi Pablo, MT4 allows you to modify SL / TP by dragging the corresponding SL / TP dotted lines without having to use EO. Check MT4 Tools - Options. Activate Charts tab "Show Trade levels"
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Apr 23, 2015Hi Vinie, 1. Make sure you have updated all the 4 EO scripts. 2. Double check your global variables name for order count. It must be in caps.
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Apr 23, 2015Hi classy, Based on your screenshot and that alert, I can tell you that you have installed Easy Order correctly. The problem is that your order was rejected by your broker. There is a chance that they don't allow automated trading or disable ...
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Apr 22, 2015EO Scripts updated. 1. To remove confirmation dialog: - On MT4 Window, press F3 to open Global Variables list - Add EO_NOCONFIRMATION and set its value to 1 2. To specify the number of orders opened at once: - On MT4 Window, press F3 to open Global ...
MT4 Order Plugin: Trade by lines with risk based lot sizing
-
sangmane replied Apr 19, 2015int OnInit() { //make sure that there are at least 2 daily bars ..... for (int i=0; i<iBars(Symbol(), PERIOD_D1)-1; i++) { if (iOpen(Symbol(), PERIOD_D1, i) - iClose(Symbol(), PERIOD_D1, i+1) > 0.0005) { Comment(i, " bars"); break; } } ...
Quick Programming question