Indicators: Laguerre RSI with Laguerre filter

 

Laguerre RSI with Laguerre filter:

Laguerre RSI with Laguerre filter.

Author: Mladen Rakic

 

how to create an EA using the indicator?
 
Himuraken:

how to create an EA using the indicator?
Exactly the same as any other indicator is used from an EA
 
Mladen Rakic:
Exactly the same as any other indicator is used from an EA

Would you give me any example or tutorial sir?
 

no pink rsi show up. i used the default setting, only the no trade zone showed up. please advise on solution.

 
Lim Ling:

no pink rsi show up. i used the default setting, only the no trade zone showed up. please advise on solution.

That is an issue of build 1090. A quick and dirty fix for those issues - add this line of code as the first line in init() or OnInit() function when some lines are missing in display :

for (int _i=0; _i<indicator_buffers; _i++) SetIndexStyle(_i,DRAW_LINE);
Or make some code changes and then undo those changes - compiler will eventually get it right :)
 
Mladen Rakic:

That is an issue of build 1090. A quick and dirty fix for those issues - add this line of code as the first line in init() or OnInit() function when some lines are missing in display :

Or make some code changes and then undo those changes - compiler will eventually get it right :)
 
Lim Ling:
Hi thanks. I got the solution from forex station 
Reason: