Laguerre indicator - page 11

 
musclext:
Hello mladen,

Does this indicator repaint after the bar has closed? And how do I set up this option in the properties please?

Thank you

musclext

No. That Laguerre RSI does not repaint. The TMA used is the regular non-recalculating TMA not the centered TMA

 
Laguerre rsi and filter

laguerre_rsi.mq4

laguerrefilter.mq4

Files:
 

Any way to improve laguerre rsi?

 
on my own:
Any way to improve laguerre rsi?

They tried smoothing it but it only added lag

 
on my own:
Any way to improve laguerre rsi?

Not much can be done

 
on my own:
Any way to improve laguerre rsi?

Yes, substitute Laguerre with something different - stochastic and RSI is quite good.

 

Laguerre rsi variation

laguerre_rsi_variation.mq4

 

New version of Laguerre filter (with new mt4 possibilities) : laguerre_-_filter_2.mq4

Files:
 
mladen:
New version of Laguerre filter (with new mt4 possibilities) : laguerre_-_filter_2.mq4

Hi MLaden,

I think there is a small potential problem:

double workLag[][4];

Shouldn't the second index be multiplied by the maximum number of instances?

double workLag[][4 * _instances];

 
Tzuman:
Hi MLaden,

I think there is a small potential problem:

double workLag[][4];

Shouldn't the second index be multiplied by the maximum number of instances?

double workLag[][4 * _instances];

Tzuman

You can do it that way too, but no need in this case

Only one instance of Laguerre filter is used in this case and no need to use any maximal number of instances (in this indicator it will always be just 1 instance of Laguerre filter that will be calculated)

What is important is that Laguerre filter needs 4 arrays/buffers for calculation, and that is done with that function

Reason: