This strategy generates trading signals based on the golden cross and death cross of %K line and %D line of the Stochastic indicator. It goes short when %K line crosses below %D line while both are in the overbought area, and goes long when %K line crosses above %D line while both are in the oversold area. The strategy captures the reversal characteristic of Stochastic indicator and forms trading signals around trend turning points.
The strategy utilizes two lines, %K and %D, of the Stochastic indicator. %K line shows the current closing price relative to the highest and lowest prices over a certain period, and %D line is the M-day simple moving average of %K line.
When %K line crosses below %D line, it indicates the start of a downward trend, and together with both lines in the overbought area, it signals the critical point for price reversal, so a short position is taken.
When %K line crosses above %D line, it indicates the start of an upward trend, and together with both lines in the oversold area, it signals the critical point for price reversal, so a long position is taken.
By capturing the reversal moments of Stochastic indicator, trading signals can be generated around trend turning points.
The main advantages of this strategy are:
The main risks of this strategy are:
Corresponding solutions:
The strategy can be optimized from the following aspects:
This strategy generates trading signals based on the crossover of the short and long lines of the Stochastic indicator, aiming to capture reversals for contrarian trading. The logic is simple and clear, easy to implement, but also has some flaws. Better results can be achieved through parameter tuning, indicator combinations, risk control etc. It is a short-term trading strategy suitable for high frequency trading.
/*backtest start: 2022-12-08 00:00:00 end: 2023-12-14 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=2 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 11/01/2017 // This back testing strategy generates a long trade at the Open of the following // bar when the %K line crosses below the %D line and both are above the Overbought level. // It generates a short trade at the Open of the following bar when the %K line // crosses above the %D line and both values are below the Oversold level. // // You can change long to short in the Input Settings // Please, use it only for learning or paper trading. Do not for real trading. //////////////////////////////////////////////////////////// strategy(title="Strategy Stochastic Crossover", shorttitle="Strategy Stochastic Crossover1", overlay = true ) Length = input(7, minval=1) DLength = input(3, minval=1) Oversold = input(20, minval=1) Overbought = input(70, minval=1) reverse = input(false, title="Trade reverse") vFast = stoch(close, high, low, Length) vSlow = sma(vFast, DLength) pos = iff(vFast < vSlow and vFast > Overbought and vSlow > Overbought, 1, iff(vFast >= vSlow and vFast < Oversold and vSlow < Oversold, -1, nz(pos[1], 0))) possig = iff(reverse and pos == 1, -1, iff(reverse and pos == -1, 1, pos)) if (possig == 1) strategy.entry("Long", strategy.long) if (possig == -1) strategy.entry("Short", strategy.short) barcolor(possig == -1 ? red: possig == 1 ? green : blue )