- Search Energy EXCH
-
RaptorUK replied Jan 25, 2013Sorry but that code is horrible, time to string and then string to time . . . why not just use datetime from the start and avoid messing with strings ? working with ints (datetime) is much quicker than strings. Please show your code for start_time ...
I will code your EAs and Indicators for no charge
-
RaptorUK replied Jan 25, 2013It's very difficult to come to a conclusion without seeing the code from the OP in this thread or from the OP in the other thread mentioned. From what I have tried, and posted, it works just fine.
Problem capturing Indicator screen shot
-
RaptorUK replied Jan 25, 2013What is the value of a Volume indicator on a platform that does not have Volume information ?


Coding Volume Divergence Indicator in MT4
-
RaptorUK replied Jan 24, 2013I'm just trying to understand and replicate the problem, so far I don't see a problem.
Problem capturing Indicator screen shot
-
RaptorUK replied Jan 24, 2013Your previous post didn't mention the subwindow . . . but ever mind. If I add the same code to the ATR indicator I get chart grabs of both the ATR in the sub/other window and the MA in the chart window . . .
Problem capturing Indicator screen shot
-
RaptorUK replied Jan 24, 2013OK, so this Indicator will not work as it's taking a screenshot on the first tick of a new bar ? . . . yet it does seem to work.
Problem capturing Indicator screen shot
-
RaptorUK replied Jan 24, 2013I have read that thread before and it never established what the issue was. Was the code that produced the problem ever presented so the issue could be reproduced ? I have an Indicator which outputs Objects to the chart window and buffer values to a ...
Problem capturing Indicator screen shot
-
RaptorUK replied Jan 23, 2013You might be interested in this thread: http://forum.mql4.com/48594
EA opens but won't close all trades
-
RaptorUK replied Jan 23, 2013It's because EA creators are generally pretty rubbish . . . if you want to code learn to code.
EA opens but won't close all trades
-
RaptorUK replied Jan 23, 2013Isn't acceleration rate of change of velocity ? and velocity rate of change of distance ?
Progress - The System
-
RaptorUK replied Jan 22, 2013OK, daft mistake on my part, the Red histogram bars are -ve
This version is giving me alerts. Note: Fixed a little bugette in the original code, SetIndexStyle(0,DRAW_HISTOGRAM, 0, 3); // RaptorUK changed 3rd parameter from EMPTY to 0I will code your EAs and Indicators for no charge
-
RaptorUK replied Jan 22, 2013Please let me know if it does what you wanted, as I said, I haven't tested it.

I will code your EAs and Indicators for no charge
-
RaptorUK replied Jan 22, 2013Try this . . . I have compiled it but not tested. New parameters: extern bool SoundAlertOnClr = true; // RaptorUK - if true Alert once when color changes extern bool EmailOnAlert = false; // RaptorUK - if true email when an Alert occurs NOTE: for ...
I will code your EAs and Indicators for no charge
-
RaptorUK replied Jan 21, 2013Glad it's working for you
Any other mods, feel free to ask here, can't make any promises though . . .I will code your EAs and Indicators for no charge
-
RaptorUK replied Jan 21, 2013Enter this on your calculator . . . 0.00206 * 10 * 10 * 10 * 10 = ? My code will work . . .
Floating point question
-
RaptorUK replied Jan 21, 2013Try this . . . int DigitsToshift = 4; double ShiftedP1P2; ShiftedP1P2 = (p1-p2) * MathPow(10, DigitsToshift) ObjectSetText(no+"pd", DoubleToStr(ShiftedP1P2, 1) );
Floating point question
-
RaptorUK replied Jan 21, 2013OK, this should do what you want and it should only Alert/Send email once per bar maximum. I added 2 new parameters so you can turn the Alerts and Email on or off. . . extern bool SoundAlertOnArrow = true; // RaptorUK - if true Alert once when an ...
I will code your EAs and Indicators for no charge
-
RaptorUK replied Jan 21, 2013So when the arrow re-paints you are going to get many Alerts, when it is removed and re-drawn it will alert each time ? is that really what you want/need ?
I will code your EAs and Indicators for no charge