Laguerre indicator - page 6

 

Laguerre Indicators

Hi, can anybody please modify the Laguerre RSI to oscillate around a "0" level with no upper or lower boundries. Also would appreciate a Laguerre MA as per the attached document. This should not be to difficult, I think? All the reference I have is attached.

Thank You

 

...

Take a look at this thread for Laguerre (filter) : https://www.mql5.com/en/forum/174980

As of "no boundaries for RSI" : not sure if I understand what do you mean by "no boundaries". RSI is bounded by its nature. If you make it a no bound, than it will stop being RSI. Attached here is the one that can be shifted down so it will show values centered around zero line, but, as you will see, it will still have bounds

regards

mladen

 

i just don't get that what makes Laguerre RSI so superior against traditional RSI.

below screenshot shows Laguerre RSI vs traditional RSI with simple MAs

vertical red line = buy signal from traditional RSI

vertical blue line = sell signal from traditional RSI

as you see, traditional RSI is a bit faster.

Files:
lrvstr.jpg  153 kb
 

RSI with rainbow

r4bb1t:
i just don't get that what makes Laguerre RSI so superior against traditional RSI......

To r4bb1t :

Can you upload thist indicator: RSI with rainbow?

thanks

bbjurek

 

laguerre.mq4 and t3 combine

sorry ,i am MQL newbie,but i want to combine laguerre.mq4 with t3.mq4 to make laguerre.mq4 smooth,but i do not know how to program. i try to do it ,but not successful. hope some people can help me. thank you.

Files:
 
 

Adaptive Laguerre Filter

I was looking for Laguerre Adaptive Filter EA and got this code from a web site. Can someone pls verify this and make an EA for this indicator. Thanks.

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

//| AdaptiveLaguerreFilter.mq4

//|

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

#property indicator_chart_window

#include

#property indicator_buffers 6

extern int LookBack = 20;

extern int Median = 5;

extern int PriceType = PRICE_MEDIAN;

extern color Color1 = Black;

int ZeroCount;

int i,j;

double Price,HH,LL;

double alpha;

double Filter[];

double Diff[];

double L0[];

double L1[];

double L2[];

double L3[];

double sortDiff[];

int init()

{

IndicatorBuffers(6);

SetIndexBuffer(0,Filter);

SetIndexStyle(0,DRAW_LINE,0,1,Color1);

SetIndexLabel(0,"ALF");

SetIndexBuffer(1,Diff);

SetIndexStyle(1,DRAW_NONE);

SetIndexBuffer(2,L0);

SetIndexStyle(2,DRAW_NONE);

SetIndexBuffer(3,L1);

SetIndexStyle(3,DRAW_NONE);

SetIndexBuffer(4,L2);

SetIndexStyle(4,DRAW_NONE);

SetIndexBuffer(5,L3);

SetIndexStyle(5,DRAW_NONE);

ArrayResize(sortDiff,Median);

return (0);

}

int start()

{

int countedBars = IndicatorCounted();

int limit = Bars-countedBars-1;

for (i=limit;i>=0;i--)

{

Price = iMA(NULL,0,1,0,MODE_SMA,PriceType,i);

Diff = MathAbs(Price - Filter);

HH = Diff;

LL = Diff;

for (j=0;j<LookBack;j++)

{

if (Diff > HH)

{HH = Diff;}

if (Diff < LL)

{LL = Diff;}

}

if (!CompareDoubles(HH-LL,0))

{

for (int j=0;j<Median;j++)

{

sortDiff[j] = (Diff - LL) / (HH - LL);

}

ArraySort(sortDiff,WHOLE_ARRAY,0,MODE_ASCEND);

alpha = sortDiff[Median/2];

}

L0 = alpha*Price + (1 - alpha)*L0;

L1 = -(1 - alpha)*L0 + L0 + (1 - alpha)*L1;

L2 = -(1 - alpha)*L1 + L1 + (1 - alpha)*L2;

L3 = -(1 - alpha)*L2 + L2 + (1 - alpha)*L3;

Filter = (L0 + 2.0 * L1 + 2.0 * L2 + L3) / 6.0;

}

return (0);

}

 

Thanks a lot to mladen

mladen:
Take a look at this thread for Laguerre (filter) : https://www.mql5.com/en/forum/174980

As of "no boundaries for RSI" : not sure if I understand what do you mean by "no boundaries". RSI is bounded by its nature. If you make it a no bound, than it will stop being RSI. Attached here is the one that can be shifted down so it will show values centered around zero line, but, as you will see, it will still have bounds

regards

mladen

I know i am late but i want to say thanks to mladen for all the information he give us, i learn a lot with his knowledge and i want to ask what are your favorites indicators.

One more time Thaks a lot.

charritopemex

 

Laguerre EA: Scanner for overbought/oversold

I have idea to write an EA to scan Laguerre for overbought/oversold level from many pairs and timeframes. Traders can choose which parameter of the laguerre, set overboght/oversold level of Laguerre (0.15/0.85 or 0/1...); choose which pair to read...

If you can make an EA like that, you can help many traders to have good chance to enter market.

Thank you!

 

[REQ] Laguerre CCI

hi everyone,

i am looking for a working Laguerre CCI indicator.

the one i am downloading from this post is not working.

it just showing blank indicator window on the chart.

so, im requesting help from anyone that can help me to solve this problem.

actually i stumbled upon this website earlier today

The Dynamic Market Lab

it is not for mt4.

but i dont know if the one from tsd and the website above is the same Laguerre CCI.

perhaps any coders can help maybe?

thanks in advance.

Reason: