Nonlagging Tools - page 39

 

Do you have indicator for the blue and red candlesticks?

Do you have indicator for the blue and red candlesticks?

 
bigsteely101:
Hey guys, I have had little response to my earlier question, and thought I would add a screenshot of some of the long and short triggers that would be activated on the Eur/USD with the strategy that I have described. Is this a popular website for forex trading, or are there other sites that maybe I should be making my inquiries? I thought that this would be the best site considering that the MTF non lag moving average indicator was developed here by Igorad. Unfortunately, I am too new of a member to this site to be able to contact Igorad directly. So, I have attached a screenshot which shows where a long and short trigger wold occur if the conditions that I mentioned earlier are met. The vertical lines (red = short and green=long) indicate when either three (thin line) or four (thick line) MTF Non lag MA lines begin to move in the same direction. I hope the added screenshot can show the potential of this setup!!

what is this indicator plz

thank you

 
mrtools:
This non lag bulls bears multi timeframe with alerts, couldn't decide if its useful or not, maybe you all can decide.

Hello mrtools,

I find this indicator very useful and I'm coding ea's myself. so my question: Is it possible for you to extract the bulls and bears signal for me? I want to implement it into my ea and give a try.

If you want to test my EA also I will send you a link through pm.

Regards,

Banzak

 
banzak:
Hello mrtools,

I find this indicator very useful and I'm coding ea's myself. so my question: Is it possible for you to extract the bulls and bears signal for me? I want to implement it into my ea and give a try.

If you want to test my EA also I will send you a link through pm.

Regards,

Banzak

Hello Banzak,

Hopefully I understood right, I removed the mtf and alerts

Files:
 
mrtools:
Hello Banzak, Hopefully I understood right, I removed the mtf and alerts

Hello mrtools,

I want to build this indicator directly into my ea, so my question is if I take

nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);

bears = nlm - Low;

bulls = High - nlm;

trend = trend;

if (bulls > bears) trend = 1;

if (bulls < bears) trend =-1;[/CODE]

and adapt it only for the actual value - this only 50%, cause in the

double iNonLagMa(double price, double length, int r, int instanceNo=0)

-function there is a lot of stuff I didn't really unterstand at the moment..

The code above it's a normal calculation for bears & bulls. It's look in my ea like this:

[CODE]//+------------------------------------------------------------------+

// Function Bears_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BearsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bears;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bears = iLow(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bears);

//+-- End of Result

}

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

// Function Bulls_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BullsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bulls;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bulls = iHigh(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bulls);

//+-- End of Result

}

//+------------------------------------------------------------------+

What I need is the extension with the Nonlag...

Regards,

Banzak

 
banzak:
Hello mrtools,

I want to build this indicator directly into my ea, so my question is if I take

nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);

bears = nlm - Low;

bulls = High - nlm;

trend = trend;

if (bulls > bears) trend = 1;

if (bulls < bears) trend =-1;[/CODE]

and adapt it only for the actual value - this only 50%, cause in the

double iNonLagMa(double price, double length, int r, int instanceNo=0)

-function there is a lot of stuff I didn't really unterstand at the moment..

The code above it's a normal calculation for bears & bulls. It's look in my ea like this:

[CODE]//+------------------------------------------------------------------+

// Function Bears_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BearsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bears;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bears = iLow(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bears);

//+-- End of Result

}

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

// Function Bulls_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BullsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bulls;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bulls = iHigh(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bulls);

//+-- End of Result

}

//+------------------------------------------------------------------+

What I need is the extension with the Nonlag...

Regards,

Banzak

Banzak, think I know but not sure enough about it enough to give the advise, and how it would work in an Ea, to me its much easier all the way around to just call the indicator, just using the trend buffer >< zero.

 
mrtools:
Banzak, think I know but not sure enough about it enough to give the advise, and how it would work in an Ea, to me its much easier all the way around to just call the indicator, just using the trend buffer >< zero.

hello sir,

pls help me i want arrow in this indicator when blue and yellow line cross each other

Files:
 

Please can someone add method / mode in the non lag histo

had a quick try but must be missing abit somewhere as nothing changes

thanks alot

nonlag_ma_histo_mtfalerts.mq4

 

added mode (i think)

had mode in the order, does nt make much difference, but always worth a try

nonlag_ma_histo_mtfalerts.1.mq4

 

Thanks Mr Tools,

just trying to find the last indi for my system

then i'll try to learn to code

Reason: