You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Anyway can you please add alert?
Alerts added : rsioma_v4_lines_amp_alerts_nmc.mq4
______________________
PS: in order to have alert, you have to have ShowLines set to true too
sir make it like this so that it can work like m1 and m5 tf for m15 m30 h1 h4 tf without repainting
hi, pawanrao
we have been checking that indicator. it repainted on any time frame. and we trying make indicator non-repaint, but it need to run some more tests.
there may be produce a new indicator
Regards
hi, pawanrao
we have been checking that indicator. it repainted on any time frame. and we trying make indicator non-repaint, but it need to run some more tests.
there may be produce a new indicator
RegardsAnyway
It would be nice to test the non repaint version!
Best regards
secretcode
Dear Mladen and MrTool
Are the arrows of the attached (WPRSI_signal_V.201 (SoundAlarm) mtf nmc.mq4) indicator repainting? they are almost very accurate for the given setting!!!
Talaat E
Dear Mladen and MrTool
Are the arrows of the attached (WPRSI_signal_V.201 (SoundAlarm) mtf nmc.mq4) indicator repainting? they are almost very accurate for the given setting!!!
Talaat ETalaat E
As far as I see it does not repaint
Talaat E As far as I see it does not repaint
Thanks great Mladen
hello again Gentlemen's,
May I please have this one (from MrTools) with a alert on slope? The indicator is already so complete that maybe there is no more buffers available to do it (I don't even know what I'm talking about hehehe ) but if any other alarm have to be sacrificed will be fine as I will then use two of them,
Thank you for all your great support,
All the best for you both,
Lima,
Can anyone add email alert to RSIOMA when cross above/below level 50
Thank you very much!!rsioma_2.mq4
hello again Gentlemen's,
May I please have this one (from MrTools) with a alert on slope? The indicator is already so complete that maybe there is no more buffers available to do it (I don't even know what I'm talking about hehehe ) but if any other alarm have to be sacrificed will be fine as I will then use two of them,
Thank you for all your great support,
All the best for you both,
Lima,Try this one out : wpr_adaptive_smoother_nrp_mtfalertsdivergence_1.01_nmc.mq4
Anyway
It would be nice to test the non repaint version!
Best regards
secretcodesecretcode
This is, I'm sorry to say, now '3.02' still repaint, may eventually make a completely different thing.
as mladen reply to your apply :
bar_cont = bar_shft - Period(); part is a nonsense : subtracting current chart minutes from bar shift is rather od. Also, that way it artificially start using future values too, and we come back to the eternal thing : if it is changed, it will be nothing like the original indicator (using future values and using past values changes the calculated values 100%
rather than what 12BPRO said like Bar - 1, (without any disrespect):
bar_time = iTime(Symbol(), 0, offset);
bar_shft = iBarShift(Symbol(), 0, bar_time, FALSE);
bar_cont = bar_shft - Period(); if (bar_cont < 0) bar_cont = 0;
for (int jdx = bar_shft; jdx >= bar_cont; jdx--) {
I think it is more like ArrayMaximum(num_array, - count, 0);
so mladen is right (he was always impeccably, in fact).
but that indicator is interesting to see what happens next...