RSI Hull MA Strategy (C#)

by StockSharp

RSI Hull MA Strategy This strategy uses RSI Hull MA indicators to generate signals. Long entry occurs when RSI < 30 && HMA(t) > HMA(t-1) (oversold with rising HMA). Short entry occurs when RSI > 70 &&...

1.9K Downloads
☆☆☆☆☆ Rating
0 Reviews
NuGet 5.0.2 Install-Package StockSharp.Strategies.0207_RSI_Hull_MA -Version 5.0.2
RSI Hull MA Strategy (C#)

RSI Hull MA Strategy

This strategy uses RSI Hull MA indicators to generate signals. Long entry occurs when RSI < 30 && HMA(t) > HMA(t-1) (oversold with rising HMA). Short entry occurs when RSI > 70 && HMA(t) < HMA(t-1) (overbought with falling HMA). It is suitable for traders seeking opportunities in mixed markets.

Testing indicates an average annual return of about 58%. It performs best in the stocks market.

Details

  • Entry Criteria:
    • Long: RSI < 30 && HMA(t) > HMA(t-1) (oversold with rising HMA)
    • Short: RSI > 70 && HMA(t) < HMA(t-1) (overbought with falling HMA)
  • Long/Short: Both sides.
  • Exit Criteria:
    • Long: Exit long position when RSI returns to neutral zone
    • Short: Exit short position when RSI returns to neutral zone
  • Stops: Yes.
  • Default Values:
    • RsiPeriod = 14
    • HullPeriod = 9
    • AtrPeriod = 14
    • AtrMultiplier = 2m
    • CandleType = TimeSpan.FromMinutes(5)
  • Filters:
    • Category: Mixed
    • Direction: Both
    • Indicators: RSI Hull MA
    • Stops: Yes
    • Complexity: Intermediate
    • Timeframe: Intraday
    • Seasonality: No
    • Neural networks: No
    • Divergence: No
    • Risk Level: Medium

User Reviews

Login to write a review

No reviews yet