Re: MT4 Indicator requests and ideas

10094
Jim67 wrote: Sun Jun 21, 2020 6:06 pm Hi Mr Tools,
Could this "Hill no repaint Arrows1" indicator be made to actually Not Repaint?
Buffer values also seem incorrect/repaint?
Many thanks,
Jim

Buys signals on 23/4, 24/4, 25/4 and 26/4 in below example not at buy levels?
Signal Arrows repaint in example below - 18/4/2018 Sell arrow appears on 2/5/2018.

Hill NRP 26042018.png
Hill NRP 2052018 Repaint Sell 18042018_LI.jpg
It's using what looks like a tma centered for the bands which makes it repaint, if I make it no repaint it won't be close to the same.


Re: MT4 Indicator requests and ideas

10096
kikoylim wrote: Mon Jun 22, 2020 1:14 am

Oops. My bad.

Added the mq4 source file!

Hope it will be fixed. Thanks mate!
Now see why it's different here

Code: Select all

MTM_Buffer[i] = iMACD(NULL, 0, Fast, Slow, Signal, PRICE_CLOSE, MODE_MAIN, i - 1) -iMACD(NULL, 0, Fast, Slow, Signal, PRICE_CLOSE, MODE_MAIN, i);  
should be

Code: Select all

MTM_Buffer[i] = iMACD(NULL, 0, Fast, Slow, Signal, PRICE_CLOSE, MODE_MAIN, i ) - iMACD(NULL, 0, Fast, Slow, Signal, PRICE_CLOSE, MODE_MAIN, i+1);  
that makes it repaint and could be why it doesn't work on some pairs.

Re: MT4 Indicator requests and ideas

10097
kikoylim wrote: Mon Jun 22, 2020 1:36 am Hi, mrtools!

I would appreciate it mate if you can also add all MA's on the "all averages" indi and a variable setting for "Apply to" and an option for "First Indicator's Data" for the two attached indis below.

This is so that I can finally add these MA indicators in a separate indicator window.

Thank you!
That's not possible in mt4.

Re: MT4 Indicator requests and ideas

10098
mrtools wrote: Mon Jun 22, 2020 4:17 am

It's using what looks like a tma centered for the bands which makes it repaint, if I make it no repaint it won't be close to the same.
Could you make a version of it not repaint anyway please - it's completely useless as it is ;-)
At least then I could test it knowing the the damn thing won't repaint all the time.
Many thanks,
Jim

Re: MT4 Indicator requests and ideas

10100
is it possible to combine these two indicators?

4tf waddah attar would only alert 'HowManyTimeFrameAligned' when standard 6 signals are 'HowManyTimeFrameAligned'.
also currently the waddah attar alerts every new candle. can this be to alert only once per alignment?

(if not, can standard 6 signals be given the arrows and alerts for 'HowManyTimeFrameAligned'?)