Ichimoku Cloud Quant Strategy
Overview
This is a long-only Ichimoku cloud quant strategy. The strategy judges the trend direction through the Ichimoku indicator, combined with K-line patterns, moving averages and the Stochastic RSI indicator to filter signals and go long at better entry points when the trend goes up.
Strategy Principle
The main judgment criteria of the strategy are:
- Ichimoku lead line 1 crosses above lead line 2, indicating an upward trend
- K-line close price crosses above lead line 1, meeting the condition to follow the trend
- K-line is a green candle, the trend goes up
- When moving averages are enabled, fast MA crosses above slow MA
- When Stochastic RSI is enabled, %K line crosses above %D line
When all the above conditions are met at the same time, the strategy will open long positions. When the price drops below lead line 1, the strategy will close positions.
The strategy mainly uses the Ichimoku cloud to determine the main trend direction, combined with auxiliary indicators to filter signals and go long at better points when the trend goes up.
Advantages of the Strategy
- Use Ichimoku cloud to determine main trend, backtest shows high accuracy
- Combined with multiple auxiliary indicators to filter entry points, can significantly improve profit rate
- Long-only strategy, suitable for currencies judged to be in a bull market
- Large space for parameter optimization, can adjust indicator parameters for further optimization
Risks of the Strategy
- There is a probability of Ichimoku cloud judging the trend wrongly
- Stop loss point may be broken during sudden market changes, leading to enlarged losses
- Designed for bull markets, not suitable for currencies with hidden signs of trend reversal
- Improper parameter settings may lead to over-aggressive entries or over-conservative actions
Countermeasures:
- Combine more indicators to judge the trend, improve accuracy
- Set reasonable stop loss points to strictly control single loss
- Select suitable strategies according to market conditions of different currencies
- Carefully test and optimize parameters to make the strategy more stable
Directions for Strategy Optimization
- Optimize parameter settings of auxiliary indicators to further improve stability
- Add stop loss mechanisms such as trailing stop loss, exponential moving average stop loss, etc.
- Add position management like fixed position sizing, position averaging, etc.
- Make parameter adjustments and optimizations for specific currencies
Summary
This Ichimoku cloud quant strategy achieves a high win rate yet risk-controllable only-long strategy by judging trend directions. The advantages of the strategy are obvious and it shows outstanding performance in bull markets. The next step is to improve aspects like indicator optimization, stop loss mechanism, position management to make the strategy more comprehensive and stable.
/*backtest
start: 2022-11-17 00:00:00
end: 2023-11-23 00:00:00
period: 1d
basePeriod: 1h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=4
strategy(title="Ichimoku only Long Strategy", shorttitle="Ichimoku only Long", overlay = true, pyramiding = 0, calc_on_order_fills = false, commission_type = strategy.commission.percent, commission_value = 0, default_qty_type = strategy.percent_of_equity, default_qty_value = 100, initial_capital=10000, currency=currency.USD)
- 1

