- Search Crypto Craft
-
mladen replied Aug 21, 2018Why don't you use some of the already coded newer multiple choice moving average indicators (which are non-repainting)?
XP Moving Average!
-
mladen replied Aug 15, 2018That became a "product" on the market? Strange world ...
Timeframe and symbol changer for MT5
-
mladen replied Aug 6, 2018Add something like SetIndexStyle(nnn,DRAW_LINE); for drawing buffers 0,1 and 2
I will code your EAs and Indicators for no charge
-
mladen replied Jul 2, 2018The way it is messed up (including the usage of iCustom() calls for rsi and cci which are not necessary at all) 5 bars back Forget about it - that indicator is a (bad) joke
Repainting Question about this Indicator
-
mladen replied Jun 15, 2018And just one more reminder why some properly coded hull should be used
Slope direction line code will repaint in some casesI will code your EAs and Indicators for no charge
-
mladen replied Jun 13, 2018Apply same fix as it is for all indicators to be build 1090 compatible : set the drawing style to DRAW_LINE to each buffer that does not show
Quantile bands...
-
mladen replied May 28, 2018I think that everybody should adjust the indicators usage to their own trading style(s) Does not matter who made the indicators - unless there is a trading system (a sound trading system) underneath, it will not matter what indicator(s) are used
TOP 100 best indicators: post good indicators here
-
mladen replied May 27, 2018Search for linear regression channel - a lot of free versions posted
regression channel in mt4
-
mladen replied May 23, 2018Check the state of the object - do not assume the state and then it will work
Help with EA buttons, please
-
mladen replied May 19, 2018Seems that, as the time passes by, my name evaporates from the code. Must be the heat
In any case change line 50 from this SetIndexBuffer(0,buffer1); to this : SetIndexBuffer(0,buffer1); SetIndexStyle(0,DRAW_LINE); That is a known issue with ...I will code your EAs and Indicators for no charge
-
mladen replied May 17, 2018Why? Posting about systems like that is mostly spamming (ie: some "secret" indicator that is making small losses when it loses and big profit when it gains - btw : almost any moving average will do the same, and any trend trading system will do ...
Experiments - while waiting for an order to get closed
-
mladen replied May 16, 2018If all that is as you describe, seems like you should hire a coder that will code all that you are talking about for you
Experiments - while waiting for an order to get closed
-
mladen replied Apr 29, 2018Nothing to do with open positions (when you see a % oscillator and someone tells you that it is based on positions, run away from whoever tells that - there is no such thing as a possibility to accurately know % of open positions in forex, let alone ...
Need Pros Help! Retail Position Indicator Mt4
-
mladen replied Apr 29, 2018image You can see it's name on the picture

Need Pros Help! Retail Position Indicator Mt4
-
mladen replied Apr 27, 2018I do that all the time - but what does that have to do with the thread topic?
MetaQuotes "This is the last MT4 upgrade"
-
mladen replied Apr 27, 2018Metatrader 4 build 1121 (beta) upgraded yesterday image
MetaQuotes "This is the last MT4 upgrade"
-
mladen replied Apr 26, 2018Neither method is complicated : static datetime _prevTime = 0; datetime _currTime = iTime(NULL,desired time frame,0); bool _isNewBar = (_prevTime != _currTime); if (_isNewBar) _prevTime = _currTime;
MQL4 Script - open on new bar question