- Search Crypto Craft
-
mladen replied Sep 24, 20171. That is the signal for long or short 2. No repainting whatsoever

Experiments - while waiting for an order to get closed
-
mladen replied Sep 23, 2017You should probably post an original code (since the is the decompiled one) - otherwise the chances that someone actually checks it are close to zero
MQL4 Programming
-
mladen replied Sep 22, 2017Did you try simply entering the symbol name with the suffix in the parameters input (with that suffix it should work, it will not work if suffix is with , (comma))?
Who can modify it: Rate Of Change (ROC) indicator?
-
mladen replied Sep 22, 2017Change that line from this : double firstLowPrice = Low [flshift];` to this double firstLowPrice = Low [flshift];
I will code your EAs and Indicators for no charge
-
mladen replied Sep 21, 2017Yep, one of those cases ... when one wonders how it did it But we should never rely on extrapolations as if they were signals. They are estimations only and it will stay an estimation (regardless of the new estimation seeming to be logical again ...
Experiments - while waiting for an order to get closed
-
mladen replied Sep 21, 2017Let me guess : build 1090
image Use this one thenI will code your EAs and Indicators for no charge
-
mladen replied Sep 19, 2017A bit more complicated (but just a bit) version of repeated median line A sort of Repeated median line channel that calculates 3 rpms - the default is using close, high and low for that, but you can chose which prices can be used for that. In some ...
Experiments - while waiting for an order to get closed
-
mladen replied Sep 18, 2017After 3 years what you can find on the net is almost all already converted to metatrader 4 builds compatible code (upgraded, if it needed an upgrade, to new mql requirements). Right now more of an issue is metatrader 4 to metatrader 5 transition ...
I will code your EAs and Indicators for no charge
-
mladen replied Sep 18, 2017Some more fooling around ... Repeated median line with a "future estimator". I hope I don't have to parrot the the future estimation is a subject of change (as any other estimation) image PS: some additional information on repeated median line can ...
Experiments - while waiting for an order to get closed
-
mladen replied Sep 18, 2017Btw: this is the latest version of that library (upgraded to be more compatible with all the new changes - in mt and windows)
I will code your EAs and Indicators for no charge
-
mladen replied Sep 17, 2017Metatrader 4 was "upgraded" to build 600 in 2014 (almost 3 years ago), and it is not novelty that some code written before that version needed some code changes in order to be able to work on new builds. Simply use the code (versions) that is ...
I will code your EAs and Indicators for no charge
-
mladen replied Sep 17, 2017Because you are using a "pre-build 600"version ( a very old version) Use newer (usually with "nmc" in name) version that is re-coded to be new metatrader 4 builds compatible
I will code your EAs and Indicators for no charge
-
mladen replied Sep 15, 2017That I would like to see (since the source of that dll exists on only one PC
)I will code your EAs and Indicators for no charge
-
mladen replied Sep 15, 2017There are already newer versions - and they were posted too
I will code your EAs and Indicators for no charge
-
mladen replied Sep 12, 2017Seems so
But that is a very old version ...I will code your EAs and Indicators for no charge
-
mladen replied Sep 12, 2017You can use iCustom() calls and add whatever functionality to it you need It can be used from any mql program type : EA, indicator or script. But that is another indicator (or EA or a script) then and in some cases they might interfere with each ...
I will code your EAs and Indicators for no charge
-
mladen replied Sep 11, 2017ex4 files can not be changed
I will code your EAs and Indicators for no charge
-
mladen replied Sep 8, 2017Build 1090
For quick (and dirty) fix of their bug, add this at the very beginning of the init() function : for (int i=0; i<indicator_buffers; i++) SetIndexStyle(i,DRAW_LINE);How is this channel indicator calculated?