- Search Energy EXCH
-
RaptorUK replied Jan 25, 2014Just be prepared for bugs, try attaching an Indicator then check the Indicator list, you may well find two copies attached . . .
Problems compiling an indicator after new MetaEditor Update
-
RaptorUK replied Jan 25, 2014Incorrect, it's MetaQuotes gathering data . . . . . . if you want to go back to 509 then you can, apparently. . .
Problems compiling an indicator after new MetaEditor Update
-
RaptorUK replied Jan 25, 2014Only if you install the beta in a way that makes this happen. My beta installs have updated from 574 to 577 last night and my live 509 builds are unaffected. The "new" MT4 is due to go live on the 3rd Feb and I suspect, not been told anything ...
Problems compiling an indicator after new MetaEditor Update
-
RaptorUK replied Jan 7, 2014More bad code . . . Have a read: url and then read and implement: Loops and Closing or Deleting Orders What are Function return values ? How do I use them ?
Help with Money Money Management Please! (Free EA)
-
RaptorUK replied Jan 7, 2014No, unless you want to pay MetaQuotes to do it.
Fibonacci EXTENSION in MT4?
-
RaptorUK replied Nov 20, 2013You Buy at Ask and Sell at Bid . . . the chart is drawn by the Bid price.
Buying vs selling prices
-
RaptorUK replied Nov 18, 2013Is the Sleep() needed ? why is it there ? answer that and then you will know if it can be removed. If it can't be removed then you will need to find an alternative way of doing what is needed from the Sleep() . . . without decelerating the Interface ...
great indicator but crashes MT4
-
RaptorUK replied Nov 18, 2013Indicators cannot sleep . . . //---delay 5 seconds Sleep(5000); Sleep() "The Sleep() function cannot be called from custom indicators since they calculate in the interface thread and may not decelerate it. "
great indicator but crashes MT4
-
RaptorUK replied Nov 18, 2013Don't do stuff on each tick that you don't need to, if you are not looking at bar 0 then there is no point checking bar 1 and earlier each tick, nothing will have changed . . . Read this thread it may help: url
How to run Strategy Tester faster in MT4?
-
RaptorUK replied Nov 13, 2013What is Volume ? What is "volume" in MT4 ?
Volume Divergence Indicator - I need some Help
-
RaptorUK replied Nov 7, 2013Ooops, well spotted.

Looking for someone to add email function to this Indicator
-
RaptorUK replied Nov 6, 2013I found an issue with the formatting of the email, it wasn't splitting the lines, this version fixes that issue. (see latter message for revised code)
Looking for someone to add email function to this Indicator
-
RaptorUK replied Nov 6, 2013It will alert only at the first tick of a new candle so the email will be referring to bar 1.
Looking for someone to add email function to this Indicator
-
RaptorUK replied Nov 6, 2013OK, please test the attached, bear in mind you need to setup email in your Terminal for it to work . . . I haven't tested this part of it but it should work, please pay special attention to the formatting of the email Subject and Body, it should be ...
Looking for someone to add email function to this Indicator
-
RaptorUK replied Nov 6, 2013I decided to take pity on you . . . I'm testing the modification now.
Looking for someone to add email function to this Indicator
-
RaptorUK replied Nov 6, 2013You should do a little research before hurling unfounded accusations . . . url url url url url
Looking for someone to add email function to this Indicator
-
RaptorUK replied Nov 6, 2013You have a great way of encouraging people to help you . . . url
Looking for someone to add email function to this Indicator
-
RaptorUK replied Nov 6, 2013I don't have specific experience with MT4 and EAs trying to access the same file but I have experience with Windows apps trying to access the same file and I know it can be problematical if not handled with care, for example, the app reading should ...
How to write/read variables to/from a file?
-
RaptorUK replied Nov 6, 2013How does it determine if the file is open and being written to ?
How to write/read variables to/from a file?