Indicators: Keltner Channel

 

Keltner Channel:

Keltner channel with some additional options

Author: Mladen Rakic

 
Can you help me how to include it in the graph using the ICUSTOM function?
 

Is there a script that makes MT5 make entries based on this indicator?


Like, closed below the line, sell and so on.

 
Diego Jaques Tinoco:
Can you help me how to include it in the graph using the ICUSTOM function?

I think you're confusing the creation of the indicator handler with adding it to the chart.

int xxx = iCustom(name, PERIOD_CURRENT, "keltner", PERIOD_CURRENT, 20 /*, other inputs */);

dai

ChartIndicatorAdd(0, 0, xxx);

I also think you might be thinking that it's mandatory to include something that can only be customised via script. But you can download the code, save it and then just double-click on the indicator like any other.
 
very important information!
 
I can't get the Buffer values for this indicator. Can someone show me an example?
 
Setting for ATR vs Range does not change the bands, how do I get it to correctly reflect ATR?
 
how to limit number of bars for the indicator 
 
Etc Ex #:
how to limit number of bars for the indicator 

Why would you limit it? It takes a couple of microseconds on new tick to calculate it - so what would be the purpose of limiting it?

 
Mladen Rakic #:

Why would you limit it? It takes a couple of microseconds on new tick to calculate it - so what would be the purpose of limiting it?

thank you for response sir    

i want to limit it to 100 bars so i can use clealry see the rest of the history bars to do analysis   

thanks 

 
Mladen Rakic #:

Why would you limit it? It takes a couple of microseconds on new tick to calculate it - so what would be the purpose of limiting it?

sir    kindly reply