Very Nice...
Does this indicator have a version for MT4?The indicator is a little bit wrong. It needs to be corrected.
this
double Max=MathMax(ExtOpenBuffer[bar],ExtCloseBuffer[bar]); double Min=MathMin(ExtOpenBuffer[bar],ExtCloseBuffer[bar]); ExtHighBuffer[bar]=MathMax(Max,ExtHighBuffer[bar]); ExtLowBuffer[bar]=MathMin(Min,ExtLowBuffer[bar]);
this
double Max = MathMax(ExtOpenBuffer[bar], ExtCloseBuffer[bar]); Max = MathMax(Max, ExtLowBuffer[bar]); Max = MathMax(Max, ExtHighBuffer[bar]); double Min = MathMin(ExtOpenBuffer[bar], ExtCloseBuffer[bar]); Min = MathMin(Min, ExtHighBuffer[bar]); Min = MathMin(Min, ExtLowBuffer[bar]); ExtHighBuffer[bar] = Max; ExtLowBuffer[bar] = Min;
In this form, the display of candlesticks is correct.
I have attached the file of the correct indicator. If you do not see the attached file, click on Go to the discussion on the traders forum
Files:
RSICandleKeltner.mq5
20 kb
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
RSICandleKeltner:
The RSI indicator in a candlestick form with the Keltner channel calculated relative to RSI averaging.
Author: Nikolay Kositsin