Type/to search

Trend Trading Strategy Based on Triple Hull Moving Averages and Ichimoku Kinko Hyo

Common strategy
Created: 2023-12-25 13:40:10
Last modified: 3 years ago
1
Follow
1802
Followers

img

Overview

This strategy combines the Hull Moving Average and Ichimoku Kinko Hyo indicators to implement a trend-following trading system. The system can capture medium-term trends for trend trading.

Strategy Logic

This strategy uses the Hull Moving Average to determine the direction of the price trend. The Hull MA is an optimized version of the moving average that can respond more quickly to price changes. The strategy here employs a triple Hull MA system, containing 6-period, 3-period and 1.5-period Hull MAs.

In addition, the strategy also incorporates the Ichimoku Kinko Hyo conversion and lagging span lines. These two indicators reflect the medium to long term trend of the prices. The strategy combines the triple Hull MA and Ichimoku indicators to generate trading signals.

Specifically, the strategy calculates the triple Hull MA: n1, n2, n2ma. As well as two Ichimoku indicators: leadLine1 and leadLine2. It then computes post1 and post2 as the final trading metrics.

When post1 crosses over post2 upward, go long. When post1 crosses below post2, go short. This allows us to track and capture price medium-term trends for trend trading.

Advantage Analysis

The advantages of this strategy include:

  1. Combining dual indicators improves system stability.
  2. Hull MA responds fast and can capture trend changes.
  3. Ichimoku filters out false breakouts.
  4. The multiple Hull MAs can effectively track medium-term price trends.
  5. The strategy logic is simple and easy to understand and optimize.

Risk Analysis

There are also some risks with this strategy:

  1. It may generate multiple false signals during ranging markets.
  2. Inadequate parameter settings can lead to poor performance.
  3. Avoid using this strategy around major news events.

Countermeasures:

  1. Adjust parameters to filter out noise.
  2. Optimize parameters to find the best combination.
  3. Avoid trading around significant news releases.

Optimization Directions

This strategy can also be improved in the following aspects:

  1. Test Hull MA combinations of different lengths.
  2. Add or reduce Ichimoku indicators.
  3. Smooth optimizations for trading metrics post1 and post2.
  4. Incorporate stop loss to limit per trade loss.

Conclusion

This strategy combines the Hull MA and Ichimoku Kinko Hyo indicators to build a simple and practical trend following system. With fast responses, it can effectively capture medium-term price trends. Further testing and optimization, through parameter tuning and adding filters, can lead to better trading performance.
]

Source
Pine
/*backtest
start: 2023-12-17 00:00:00
end: 2023-12-24 00:00:00
period: 30m
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=3
//                                                HULL & ICHIMOKU & MATHS
strategy("3 HULLs & ICHIMOKU divided by PRICE", shorttitle="3H&I/P", overlay=true, default_qty_type=strategy.percent_of_equity, max_bars_back=720, default_qty_value=100, calc_on_order_fills=true, calc_on_every_tick=true, pyramiding=0)
keh=input(title="Hull MA period",defval=6)
Strategy parameters
Strategy parameters
Hull MA period
Conversion Line Periods
Base Line Periods
Lagging Span 2 Periods
Displacement
Comment
All comments (0)
No data
No data
  • 1
Forums
PINE Language
Get the app
iPhone Download
© 2015 - ∞ INVENTOR PTE LTD (SG)