- Search Energy EXCH
-
RaptorUK replied Oct 14, 2013Just a suggestion . . . It's a good idea to comment the changes you make to someone else's code so that anyone else can tell the original from your modified version, ideally it should be possible to reverse your changes by following your comments.
Kilian's programming corner
-
RaptorUK replied Oct 12, 2013Or just check your code for any loops (for or while) that may get stuck and loop infinitely.
Restarting a "Running" EA
-
RaptorUK replied Oct 11, 2013url Do you have an infinite loop ? when the EA has "gone to sleep" how much CPU ( check in Task Manager ) is MT4 using ? if it's using 100% of one core ( or hyper thread ) then it's likely that you have an infinite loop.
Restarting a "Running" EA
-
RaptorUK replied Oct 10, 2013It might help if you said what platform you are using ? Ninja, MT4, MT5 ?
Maximum trade triggers of an EA
-
RaptorUK replied Oct 7, 2013Bandwidth is not the only/main issue, you need to investigate latency.
Best laptop for trading forex?
-
RaptorUK replied Oct 7, 2013What is wrong with i5 ? 2 core or 4 core i7 ? isn't 8GB a better fit for dual channel reasons ?
Best laptop for trading forex?
-
RaptorUK replied Oct 1, 2013Live and learn eh
just keep an open mind and you will keep finding the solutions to any problems you have 
Unexpected splitting of trade volume
-
RaptorUK replied Oct 1, 2013Specify what you want correctly and someone may help . . . you have already had something coded for you . . . how much time do you want ?
Yearly opening horizontal line indicator
-
RaptorUK replied Oct 1, 2013I suspect you aren't selected Order correctly, I think you have the wrong Order sselected . . . before you close the Order Print() the ticket number by printing OrderTicket() this will tell you which Order you have selected . . . you also need to ...
Unexpected splitting of trade volume
-
RaptorUK replied Sep 30, 2013Try the attached, it compiles but I haven't tested it, all changes are commented. Let me know when you have tested it even if it's just to say that it works as requested. file
I will code your EAs and Indicators for no charge
-
RaptorUK replied Sep 30, 2013Try the attached . . . it compiles but I haven't tested it. All my modifications are commented, I have added an input: int RecordingPeriodMins = 0; set it to 0 (default) for the code to work as it does currently, set it to 999 to have it write the ...
Spread Recorder
-
RaptorUK replied Sep 30, 2013The Spread is recorded for each tick not for any predetermined time period . . .
Spread Recorder
-
RaptorUK replied Sep 25, 2013Yep, basically you have to code it yourself, search the MQL5 Forum, it's been discussed.
iMAOnArray, MQL4 --> MQL5
-
RaptorUK replied Sep 25, 2013After these three lines . . . ObjectSet("Fibo1", OBJPROP_FIBOLEVELS, level_count); ObjectSet("Fibo2", OBJPROP_FIBOLEVELS, level_count); ObjectSet("Fibo3", OBJPROP_FIBOLEVELS, level_count); add these three lines . . . ObjectSet("Fibo1", OBJPROP_RAY, ...
I will code your EAs and Indicators for no charge
-
RaptorUK replied Sep 25, 2013You can turn RAY off for the Fibs, use ObjectSet(fib_name, OBJPROP_RAY, false) but this probably won't help too much . . . the length of the Fib lines is set at 10x the time between the 0% and 100% anchors, if they are close the lines won't be very ...
I will code your EAs and Indicators for no charge
-
RaptorUK replied Sep 19, 2013What platform ? MT4 doesn't have "Volume" information just tick counts.
Futures/Options Volume
-
RaptorUK replied Sep 18, 2013Ah I see . . . I don't think you can, you could use a utility like the one I have on my chart to show the price, the size, position (left or right side of chart) and colour are configurable
Bid Price Line in MT5
-
RaptorUK replied Sep 17, 2013I set the Bid and Ask line colours to none . . . what is the BIG problem ?
Bid Price Line in MT5