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
iStoch txt
istochtxt.mq4
WVF stochastic
wvf_stochastic.mq4
I'm not able to load this folder onto my screen - is there anything special about this MTF stochs indicator that is preventing me from testng it?
I was looking for a MTF stochastics k/d cross alert/signal and this is all I could find.
If there are any others I'd appreciate the help as to where they are posted.
Thanks
TEAMTRADER
And this is the 3 state stochastic oscillator made as "zones" version. You can specify over bought and over sold levels (all between the 2 is "neutral" zone) and you can even specify 3 colors (default for the neutral is CLR_NONE which makes it invisible/transparent, but any color can be used for that purpose)
Dear Mladen
Is it possible to make 'Rsi zones' like stochastic zones indicator
Thanks for any help
secretcode
Dear Mladen
Is it possible to make 'Rsi zones' like stochastic zones indicator
Thanks for any help
secretcodesecretcode
Posted it here : https://www.mql5.com/en/forum/178733/page56
Weighted stochastic
stpmt.mq4
KprmSt indicator kprmst.mq4
I have tried to get 4 levels to appear on chart without the K/D lines with this indicator but all my mediocre efforts have come to nothing as I am not a coder.
The code does not accept the colour 'none' when it comes to the K and D line.
I do not want the stochs K/D on chart, only the colour coded levels of 25, 35, 5 and 95.
See attached chart as what it looks like.
And the indicator itself that I cannot change.
Thanks
TEAMTRADER
I have tried to get 4 levels to appear on chart without the K/D lines with this indicator but all my mediocre efforts have come to nothing as I am not a coder.
The code does not accept the colour 'none' when it comes to the K and D line.
I do not want the stochs K/D on chart, only the colour coded levels of 25, 35, 5 and 95.
See attached chart as what it looks like.
And the indicator itself that I cannot change.
Thanks
TEAMTRADERTry this one out : stochasticonchart_levels_1.01.mq4
But be careful : whenever new visible chart maximum or minimum are reached, the values of that indicator are going to be changed (you can see that if you scroll to the past and you will see what happens in those cases)
I have tried to get 4 levels to appear on chart without the K/D lines with this indicator but all my mediocre efforts have come to nothing as I am not a coder.
The code does not accept the colour 'none' when it comes to the K and D line.
I do not want the stochs K/D on chart, only the colour coded levels of 25, 35, 5 and 95.
See attached chart as what it looks like.
And the indicator itself that I cannot change.
Thanks
TEAMTRADERHi Teamtrader,
The stochastic is the percentage oscillator of the Donchian channel or Price channel.
The code of the stochastic is :
100 * ((close-Lowest [period] low) / (highest [period]high -Lowest[period] low)).
Lowest [period] low is low line of Donchian Channel and,
Highest [period]high is the high line of Donchian Channel.
So the easiest way to put stochastic on graph is : the Donchian price or the Price channel (on the graph).
Regards