Multi Timeframe Indicators - page 805

 

Uni cross new metatrader compatible : uni_cross_histo_alerts__shift_nmc.mq4

 
mladen:
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

Files:
 
secretcode:
Dear Mladen

Is it possible to add 'ma option' separately for both ma (fast & slow) in attached indicator

Thanks for any help

secretcode

secretcode

Do you mean separate ma mode for both averages?

 
mladen:
secretcode Do you mean separate ma mode for both averages?

Yes Sir, separate ma mode for both averages

Thanks for consideration

 
secretcode:
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

Files:
 
mladen:
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 ..

Files:
 

Hi guys,

Could you please update this indicator obv_onbalancevolume_mtf.mq4

 
Rocktheedge:
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)

Reason: