Do you use Stochastic in your trade?
I think it is good indicator in flat but in powerfull trend it seems to me it does not work.
stoch candles
i know this can be done, can someone please make the Stochastic
indicator that paints candles on the main window like the below except one color for over 80 and another color for between 80-20 and another color for below 20
thanks alotI think this should be what you want.
stoch_candle_overbought-sold.mq4
cja
thanks
Wow got an answer
Thanks a lot I'll check it out and we will see
Stochastic cross alert error
I found Stochastic Cross Alert Indicator from some where.
It shows arrows on chart but today I found that the indicator is not showing arrow at the time of stochastic crossing.
I am using the standart MT4 stochastic and Stochastic Cross indicator.
GIF image and both indicators attached.
Can some body fix this error?
BEST WISHES,
NEWTRADER
Just bookmarking a great indicator by CJA....
CJA, can we make stochastic levels Cannel (chart window)? How2?
something like that (just messing quick&dirty) [levels20/80]
UpperBuffer=oldval+0.3*oldval*((stochK+50)/10000);
LowerBuffer=oldval- 0.3*oldval*((stochK+50)/10000);
UpperBuffer1=oldval+ oldval*(stochK1/10000);//
LowerBuffer1=oldval + oldval*((stochD1)/10000);
___________
double stochK = (iStochastic(NULL,0,KPeriod,DPeriod,Slowing,MAMethod,PriceField,0,i));
double stochK1 = (iStochastic(NULL,0,KPeriod,DPeriod,Slowing,MAMethod,PriceField,0,i)-50); - ...
__________
another way to do it wrong, but somehow its working 2 ...
______ just stoh hooked on bands instesd of diviation...
double Stoch_Main1[];
Stoch_Main1 =iStochastic(NULL,0,14,3,3,MODE_SMA,0,MODE_MAIN, i);
double Stoch_Main =iStochastic(NULL,0,14,3,3,MODE_SMA,0,MODE_MAIN, i);
double Stoch_SigL=(iStochastic(NULL,0,14,3,3,MODE_SMA,0,M ODE_SIGNAL, i));
double StochMain1=Stoch_Main1;
double StochMain=Stoch_Main;
double StochSigL=Stoch_SigL;
UpperBuffer=oldval +0.3*oldval*((100-StochMain1)/10000);
LowerBuffer=oldval - 0.3*oldval*((100-StochMain1)/10000);
UpperBuffer1=oldval + oldval*((StochMain-50)/10000);
LowerBuffer1=oldval + oldval*((StochSigL-50)/10000);
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
i know this can be done, can someone please make the Stochastic
indicator that paints candles on the main window like the below except one color for over 80 and another color for between 80-20 and another color for below 20
thanks alot