Nonlagging Tools - page 22

 
ok7222000:
NonLagma Very powerfull to make this with EA, can Anybody help me?

I love V5 more than other versions

Rules :

when the bar ends, if color is blue, then buy, if the color is red, closed the buy and sell, vice visa

have mm with percent

can use in different timeframe

sorry if my english very bad...

agree with this too..

 

MTF Absolute Strength

Hello,

I've downloaded MTF_AbsoluteStrength_v1 indicator from the top message here. Looks like a very good indicator.

But when I add it to Metatrader, I got an empty window. I tried to change timeframe number in the settings from zero to 15 or 30 - no use

Could please anyone point me in the right direction, please?

 
SVGuss:
Hello,

I've downloaded MTF_AbsoluteStrength_v1 indicator from the top message here. Looks like a very good indicator.

But when I add it to Metatrader, I got an empty window. I tried to change timeframe number in the settings from zero to 15 or 30 - no use

Could please anyone point me in the right direction, please?

You need this one in the same folder.

 
Linuxser:
You need this one in the same folder.

Thank you VERY VERY VERY MUCH, mate!

 

MTF_AbsoluteStrength_v1 mtf standalone

https://www.mql5.com/en/forum/173574

interpretation

https://www.mql5.com/en/forum/general

Files:
abs_str_mtf.gif  24 kb
 

NonLagMA_v7.1 does not work

Hi,

i have an EA with NonLagMA_v7.1 tested.

NLMA=iCustom(Symbol(),0,"NonLagMA_v7.1",Price,Length,Displace,PctFilter,Color,ColorBarBack,Deviation,0,1);

NL_Long=iCustom(Symbol(),0,"NonLagMA_v7.1",Price,Length,Displace,PctFilter,Color,ColorBarBack,Deviation,1,1);

NL_Shgort=iCustom(Symbol(),0,"NonLagMA_v7.1",Price,Length,Displace,PctFilter,Color,ColorBarBack,Deviation,2,1);

(The characters are empty is in the EA not there!)

if (NL_Long >0 ) return(LONG);

if (NL_Short <0 ) return(SHORT);

In the journal of the Strategietesters is the following:

At the beginning

17:09:55 2005.01.26 21:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:09:55 2005.01.26 21:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:09:55 2005.01.26 21:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:09:56 2005.01.26 22:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:09:56 2005.01.26 22:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:09:56 2005.01.26 22:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:09:56 2005.01.27 10:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:09:56 2005.01.27 10:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

Later

17:10:22 2005.02.22 08:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:10:22 2005.02.22 08:00 NonLagMA_v7.1 GBPUSD,H1: removed

17:10:22 2005.02.22 08:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:10:22 2005.02.22 08:00 NonLagMA_v7.1 GBPUSD,H1: removed

17:10:23 2005.02.22 10:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:10:23 2005.02.22 10:00 NonLagMA_v7.1 GBPUSD,H1: removed

17:10:23 2005.02.22 10:00 NonLagMA_v7.1 GBPUSD,H1: loaded successfully

17:10:23 2005.02.22 10:00 NonLagMA_v7.1 GBPUSD,H1: removed

If the EA an order opens, it also closed the same again.

What is wrong?

Another question: How do I integrate NonLagZigZag_v4 into a EA?

up=iCustom........?

down=iCustom....?

if (up ......?

if (down...?

Can you help me?

Thanks

derumuro

Sorry for my bad english !

 

You should use following code:

NLMA=iCustom(Symbol(),0,"NonLagMA_v7.1",Price,Length,Displace,PctFilter,Color,ColorBarBack,Deviation ,0,0,0,1);

or

you could use other value

trend = iCustom(Symbol(),0,"NonLagMA_v7.1",...,3,1);

 

Hi Igorad,

thank you for your quick response!

I have the EA changed:

trend_NL = iCustom (symbol (),0,"NonLagMA_v7.1",Price,Length,Displace,PctFilter,Color,ColorBarBack,Deviation,0,0,3,1);

It has unfortunately not changed. The problem is still there.

Regards

derumuro

 
derumuro:
Hi,

i have an EA with NonLagMA_v7.1 tested.

Can you help me?

Thanks

derumuro

Sorry for my bad english !

Hi Derumuro.

I am also interested in an EA based on NonLagMa_v7.1 - So I hope that someone can help us put one together.

Meanwhile, I have added an email alert to the indicator for those who wish to use it with higher TFs. It is possible to forward the email to your cell phone and not be glued to the monitor.

Hope it is useful and I hope it meets Igorad's approval. After all, I am not a coder so pls don't ask me to add any more bells/whistles

Cheers

++++++

 

You should use something like this:

trend_NL = iCustom (symbol (),0,"NonLagMA_v7.1",Price,Length,Displace,PctFilter,Color,ColorBarBack,Deviation,0,0,3,1);

prevtrend_NL = iCustom (symbol (),0,"NonLagMA_v7.1",Price,Length,Displace,PctFilter,Color,ColorBarBack,Deviation,0,0,3,2);

if(trend_NL==1 && prevtrend_NL<0) return (long);

if(trend_NL==-1 && prevtrend_NL>0)return(short);

Also try to use some prints for trend_NL to debug.

derumuro:
Hi Igorad,

thank you for your quick response!

I have the EA changed:

trend_NL = iCustom (symbol (),0,"NonLagMA_v7.1",Price,Length,Displace,PctFilter,Color,ColorBarBack,Deviation,0,0,3,1);

It has unfortunately not changed. The problem is still there.

Regards

derumuro
Reason: