
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
Another "little" help.......:
some weeks ago you do the following indicator for me named Cicle Lines2 and it is good.
Now...can you create a similar indicator but only with one line forward and with between fibo time retracement of 0.382-0.5-61.8?
example:
the distance of two original lines is 20 bars.....and then appear 0.382-0.5-0.618 and 1 of that distance.
here it is your original indicator:
hi mladen
could you help me to code this indicator? i get this information from this forum, could it change to apply to all timeframes instead just (daily charat) i.e. today compare to yesterday candlesticks? Many thanks for help.
CCI Coloured using the MACD
Hi mladen, is it possible to modify these 3 indicators which cannot show signal on current running candlestick, so that they can show signals on current running candlestick? Many thanks again 1. atr.mq4 2. atr_alert.mq4 3.atr_mtf.mq4
Hi mladen, is it possible to modify these 3 indicators which cannot show signal on current running candlestick, so that they can show signals on current running candlestick? Many thanks again 1. atr.mq4 2. atr_alert.mq4 3.atr_mtf.mq4
kenwa
Find these two lines (at the end of indicators - lines 126 and 127 in the "atr" indicator) :
ExtBuffer2[0]=0;
and delete them (or comment them out). That is all you have to do
hello mladen,
many thank. may i know what means by ' comment them out". I do not know coding.
by the way is it possible to code the above #822 , CCI and MACD indicator? many thanks.
hello mladen,
many thank. may i know what means by ' comment them out". I do not know coding.
by the way is it possible to code the above #822 , CCI and MACD indicator? many thanks."Comment them out" would be placing "//" at the beginning of those lines
Hi, coding guru,
could help me convert these to MTF versions? many thanks.
Hi, coding guru, could help me convert these to MTF versions? many thanks.
miss a file in above #827, please also convert to MTF, many thanks for help.
the stepchoopy above need the stepMa and steprsi to run.
"Comment them out" would be placing "//" at the beginning of those lines
Hi mladen
is it correct? thanks for advice. I do not know coding.
for(i=0; i<limit; i++)
{
ExtBuffer1=ExtBuffer3;
ExtBuffer2=ExtBuffer4;
// ExtBuffer1[0]=0;
// ExtBuffer2[0]=0;
}
//----
return(0);
}
//+------------------------------------------------------------------+
Hi mladen
is it correct? thanks for advice. I do not know coding.
for(i=0; i<limit; i++)
{
ExtBuffer1=ExtBuffer3;
ExtBuffer2=ExtBuffer4;
// ExtBuffer1[0]=0;
// ExtBuffer2[0]=0;
}
//----
return(0);
}
//+------------------------------------------------------------------+Yes, that is correct