New metatrader 4 compatible indicators - page 200

 
mladen:
Jasjit There is no need to change anything in the code. Here is how it looks on my terminal without any code changes :

Hi Mladen,

Thanks for having a look at this. Sorry I should have been clearer, I can only see Red bars - from the colors tab, its seems there should be green and yellow bars appearing to. I assumed that this was due to incompatibility with current version of MT4. I would appreciate it very much if you could fix this issue. Thank you.

Regards

Jasjit

 
electrical999:
Hi Mladen,

Thanks for having a look at this. Sorry I should have been clearer, I can only see Red bars - from the colors tab, its seems there should be green and yellow bars appearing to. I assumed that this was due to incompatibility with current version of MT4. I would appreciate it very much if you could fix this issue. Thank you.

Regards

Jasjit

Jasjit

Set the Continuation parameter to false and then you will get this :

I have no idea what did the author want to do with the Continuation parameter when set to true, but that part of code will never show 3 colors the way it was written

Files:
cont.gif  68 kb
 
mladen:
Jasjit

Set the Continuation parameter to false and then you will get this :

I have no idea what did the author want to do with the Continuation parameter when set to true, but that part of code will never show 3 colors the way it was written

Hi Mladen,

Thank you very much for sorting it out for me - much appreciated. Wishing you a very Happy New Year and a productive, healthy and prosperous one too.

Regards

Jasjit

 

hello dear friends

i have some excellent indicators that they do not observe in new mt4 ver

please help me rework them

thank you so muchtvi_2color.mq4bullnbear.mq4

Files:
bullnbear.mq4  13 kb
 
lionking2012:
hello dear friends

i have some excellent indicators that they do not observe in new mt4 ver

please help me rework them

thank you so muchtvi_2color.mq4bullnbear.mq4

Here is the bullnbear that works with the new versions : bullnbear_nmc.mq4

Files:
 
lionking2012:
hello dear friends

i have some excellent indicators that they do not observe in new mt4 ver

please help me rework them

thank you so muchtvi_2color.mq4bullnbear.mq4

TVI_2color needs "TVI" indicator too in order to work as it should

 

Hi dear Mladen

can you update vostro indicator for new meta trader? Whats the problem

this indicator dont refresh on any charts(renko, M1,M5,M15...)

Files:
xauusdm3.png  37 kb
 
Sbt Erturan:
Hi dear Mladen

can you update vostro indicator for new meta trader? Whats the problem

this indicator dont refresh on any charts(renko, M1,M5,M15...)

Sbt Erturan

Can you post the version that you use?

 

Sorry. I use to +765

vostro.mq4

Files:
vostro.mq4  4 kb
xauusdm3.png  37 kb
 
Sbt Erturan:
Sorry. I use to +765

vostro.mq4

Sbt Erturan

It is a decompiled code, but since it is a new year, do the following :

Replace lines 68 and 69 (these lines :

Low_Level = (Low - gd_128) / gd_136;

High_Level = (High - gd_128) / gd_136;

with these :

if (gd_136!=0)

{

Low_Level = (Low - gd_128) / gd_136;

High_Level = (High - gd_128) / gd_136;

}

and it will work

Reason: