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
Uni cross new metatrader compatible : uni_cross_histo_alerts__shift_nmc.mq4
Rocktheedge Try it out : sidus_v3_mtf.mq4
Dear Mladen
Is it possible to add 'ma option' separately for both ma (fast & slow) in attached indicator
Thanks for any help
secretcode
Dear Mladen
Is it possible to add 'ma option' separately for both ma (fast & slow) in attached indicator
Thanks for any help
secretcodesecretcode
Do you mean separate ma mode for both averages?
secretcode Do you mean separate ma mode for both averages?
Yes Sir, separate ma mode for both averages
Thanks for consideration
Yes Sir, separate ma mode for both averages Thanks for consideration
secretcode
Here you go (option for separate prices added too) : sidus_v3.01_mtf.mq4
secretcode Here you go (option for separate prices added too) : sidus_v3.01_mtf.mq4
Nice Thanks a lot Mladen for indicator
Respectfully
secretcode
4_time_frame_heiken_ashi_nmc.mq4
Coders,
I found this MTF HA indicator and like it but I tried to make one of the time frames less than the current one and it will not let me. For example if I am on a 1 hour chart and make the timeframe4 30, it comes out 1 hour. Maybe I am doing something wrong. If not can someone make one time from the next one lower from current and keep the current time frame and other upper two? Hope this makes sense but I want the next lower TF, current TF, next 2 upper TF.
Thanks
int limit = Bars - counted_bars;
if (TimeFrame != Period())
{
limit = MathMax(limit,TimeFrame/Period());
for(index=0, int y=0; index<limit; index++)
{
y = iBarShift(NULL,TimeFrame,Time);
Mladen i am getting this error in loads of indicator .. i dont know what is wrong in this code please help me out ..
Hi guys,
Could you please update this indicator obv_onbalancevolume_mtf.mq4
int limit = Bars - counted_bars;
if (TimeFrame != Period())
{
limit = MathMax(limit,TimeFrame/Period());
for(index=0, int y=0; index<limit; index++)
{
y = iBarShift(NULL,TimeFrame,Time);
Mladen i am getting this error in loads of indicator .. i dont know what is wrong in this code please help me out ..The "int" part in this line
for(index=0, int y=0; index<limit; index ++ )
has to be removed and the declaration of the y variable has to be done outside of the for (best at the same place where "i" variable is declared)