Quote from Matcha:
Trade in the direction of stochastic on 5 min chart and %k %D cross but %K and %D are not in the OB/OS level. Enter on 1 or 2 min chart when %k%D cross then reverse to the same direction of the 5 min chart.
Problem is lately I have been watching 60, 15, 5, 2 min chart and 4 stochastics on each chart.
.....
No no.... no no!
My advice: Dump the stochastics. Reason: Stochastics changes too fast from "oversold" to "overbought". When price is in uptrend, it stays in "overbought" for a long time. (Vice versa.) Stochastics is like a "on/off" switch. It confirms that you are in an uptrend or downtrend. But doesn't give you much time to react.
Especially you look at the cross-over of the fast and slow. Happens too fast. IMO it is not good for intraday trading. If you look at the Stochastics on the daily charts that's a different story.
My advice: Use RSI. I have a modified version of RSI that I called "RSI3". Stolen from an article on Technical Analysis for Stocks and Commodities. It is simply the 3-period moving average of the RSI. It smooths out the RSI signal (which is a little bit jagged). It has worked wonder for me on 1-min through 60-min intraday charts. (See attached for my modified version of EasyLanguage).
My version paints the overbought with Red and oversold with Cyan by default. And if the RSI stays in the middle (>45 and <55) then it is painted as Yellow.
Here are some simple rules:
In a trending market:
Avoid buying when RSI3 is red (overbought).
Avoid selling when RSI3 is cyan (oversold).
Buy when price is in an uptrend: but buy only when RSI3 is yellow (these are retracements). Best to get in the trend early.
Sell when price is in an downtrend: but sell only when RSI3 is yellow (these are recoils). Best to get in the trend early.
Typically in an uptrend, RSI3 will hit red (overbought) 3 or more times without getting a cyan (oversold). (Maybe just down to mid band - yellow). If you are in a long position, prepare to get out at the 3rd (at least partially) overbought.
Typically in a downtrend, RSI3 will hit cyan (oversold) 3 or more times without getting a red (overbought). (Maybe just down to mid band - yellow). If you are in a short position, prepare to get out at the 3rd (at least partially) oversold.
In a range market:
Simply plan to buy the oversold (cyan) and sell the overbought (red). Especially with a Momentum Divergence on the RSI3.
Play with it a bit to see if this works better.
===================================
inputs:
Price( Close ),
Length( 5 ),
OverSold( 30 ),
OverBought( 70 ),
MidLow( 45 ),
MidHigh( 55 ),
OverSColor( Cyan ),
OverBColor( Red ),
MidColor( Yellow);
variables: MyRSI( 0 ), MyRSI3( 0 ) ;
MyRSI = RSI( Price, Length ) ;
MyRSI3 = AverageFC( MyRSI, 3);
Plot1( MyRSI3, "RSI3" ) ;
Plot2( OverBought, "OverBot" ) ;
Plot3( OverSold, "OverSld" ) ;
{ Color criteria }
SetPlotColor( 1, Darkgray);
if MyRSI3 > OverBought then
SetPlotColor( 1, OverBColor )
else if MyRSI3 < OverSold then
SetPlotColor( 1, OverSColor ) ;
if (MyRSI3 < MidHigh) and (MyRSI3 > MidLow) then
SetPlotColor( 1, MidColor );
{ Alert criteria }
if MyRSI3 crosses over OverSold then
Alert( "Indicator exiting oversold zone" )
else if MyRSI3 crosses under OverBought then
Alert( "Indicator exiting overbought zone" ) ;