Page 289 of 323
Re: RSI Indicators for MT4
Posted: Sat Jul 06, 2024 6:24 pm
by kvak
timballingall67 wrote: Sat Jul 06, 2024 10:36 am
Hello all
Has anyone used this RSI 1.1 ?
It has some good potential... From reading the code, it looks like there is a "hidden" buffer referred to as "slope"... i cant see this in the visible buffers. Digging further into code i dont think enough buffers are declared in the code. However, when i change the indicator_buffers property to 6, the program misbehaves - the chart doesnt work for me unless i change the chart timeframe to be greater than current timeframe... I think the RSI scale gets messed up - but i'm learning mq4 so not smart enough to work it out over the last 2 weeks of trial and error
I'm hoping someone, maybe @mladen could fix this please ? I was hoping to see the slope value ( 1,0,-1) visible in the buffers, as well as the chart functioning correctly.
thanks
t
Hello.
I am not sure if there is any better help but you can try this...
SetIndexBuffer(0,rsi); SetIndexStyle(3,DRAW_LINE);
SetIndexBuffer(1,rsida); SetIndexStyle(3,DRAW_LINE);
SetIndexBuffer(2,rsidb); SetIndexStyle(3,DRAW_LINE);
SetIndexBuffer(3,prices); SetIndexStyle(3,DRAW_NONE);
SetIndexBuffer(4,volume); SetIndexStyle(4,DRAW_NONE);
SetIndexBuffer(5,slope); SetIndexStyle(5,DRAW_NONE);
Re: RSI Indicators for MT4
Posted: Sun Jul 07, 2024 12:24 pm
by timballingall67
kvak wrote: Sat Jul 06, 2024 6:24 pm
Hello.
I am not sure if there is any better help but you can try this...
SetIndexBuffer(0,rsi); SetIndexStyle(3,DRAW_LINE);
SetIndexBuffer(1,rsida); SetIndexStyle(3,DRAW_LINE);
SetIndexBuffer(2,rsidb); SetIndexStyle(3,DRAW_LINE);
SetIndexBuffer(3,prices); SetIndexStyle(3,DRAW_NONE);
SetIndexBuffer(4,volume); SetIndexStyle(4,DRAW_NONE);
SetIndexBuffer(5,slope); SetIndexStyle(5,DRAW_NONE);
Worked a treat - thanks
corrected code attached
( excuse my versioning )
Re: RSI Indicators for MT4
Posted: Mon Jul 15, 2024 10:59 am
by talaate
Dear mrtools
Would you please add the options of
- Time Frame To Use and
- Vertical line on First Bar
to the following indicators
Many Thanks
Files are in PM
Re: RSI Indicators for MT4
Posted: Tue Jul 16, 2024 2:04 am
by mrtools
talaate wrote: Mon Jul 15, 2024 10:59 am
Dear mrtools
Would you please add the options of
- Time Frame To Use and
- Vertical line on First Bar
to the following indicators
Many Thanks
Files are in PM
RSI Smoothed (set) with Vertical Entry Lines + MTF & Alerts
This set of Smoothed RSI's will display the entry lines on:
- Break of the RSI Levels
- Retrace of the RSI from the levels
Try.
Note: Fixed versions available
here.
Re: RSI Indicators for MT4
Posted: Tue Jul 16, 2024 2:54 am
by talaate
mrtools wrote: Tue Jul 16, 2024 2:04 amTry.
Dear mrtools
Many Many Thanks, No words can express may thankful
My Regards
Re: RSI Indicators for MT4
Posted: Wed Jul 17, 2024 3:57 am
by mrtools
RSI Efficiency Ratio with Wilder's Double Smoothed EMA & Bollinger Bands
This is an efficiency ratio adaptive wilder's dsema with bollinger bands. Has choices of slope, outer level cross, or middle line cross coloring with matching alerts.
Re: RSI Indicators for MT4
Posted: Wed Jul 17, 2024 8:35 pm
by Jimmy
mrtools wrote: Wed Jul 17, 2024 3:57 am
RSI Efficiency Ratio with Wilder's Double Smoothed EMA & Bollinger Bands
This is an efficiency ratio adaptive wilder's dsema with bollinger bands. Has choices of slope, outer level cross, or middle line cross coloring with matching alerts.
Mrtools thank you brother. This is a strong indicator for scalping the Bollinger Bands's breakouts and compared it to
your legendary TDI using a 13-period RSI for both indicators the RSI ER produces almost identical entries but is much smoother and easier on the eyes (especially for new traders).
Re: RSI Indicators for MT4
Posted: Tue Jul 23, 2024 2:38 am
by Cleiton Brocanelli
moey_dw wrote: Thu Oct 15, 2020 12:49 am
wonderful wonderful wonderful work mrtoolz...........
Poderia compartilhar o mql4 desse RSI ma 13 nmc 6 linhas, por favor?
Re: RSI Indicators for MT4
Posted: Tue Jul 23, 2024 3:18 am
by mrtools
Cleiton Brocanelli wrote: Tue Jul 23, 2024 2:38 am
Could you share the mql4 of this RSI ma 13 nmc 6 lines please??
Please follow our sites
rules you agreed to when joining.
Re: RSI Indicators for MT4
Posted: Tue Jul 23, 2024 5:29 am
by kvak
This is combination of RSI and Stochastic with smoothing adjustment ( I saw this version on TV platform).
Indicator have AHTF, arrows, alerts and list of RSI to choose.