Macd Cci Strategy (C#)

by StockSharp

Macd Cci Strategy Implementation of strategy - MACD + CCI. Buy when MACD is above Signal line and CCI is below -100 (oversold). Sell when MACD is below Signal line and CCI is above 100 (overbought). T...

1.6K Downloads
☆☆☆☆☆ Rating
0 Reviews
NuGet 5.0.2 Install-Package StockSharp.Strategies.0161_MACD_CCI -Version 5.0.2
Macd Cci Strategy (C#)

Macd Cci Strategy

Implementation of strategy - MACD + CCI. Buy when MACD is above Signal line and CCI is below -100 (oversold). Sell when MACD is below Signal line and CCI is above 100 (overbought).

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

MACD swings highlight momentum shifts; CCI helps time pullback entries in that direction. Both long and short trades are possible.

Traders who blend momentum with oscillators may like this technique. Risk control uses an ATR stop.

Details

  • Entry Criteria:
    • Long: MACD > Signal && CCI < CciOversold
    • Short: MACD < Signal && CCI > CciOverbought
  • Long/Short: Both
  • Exit Criteria: MACD cross in opposite direction
  • Stops: Percent-based using StopLoss
  • Default Values:
    • FastPeriod = 12
    • SlowPeriod = 26
    • SignalPeriod = 9
    • CciPeriod = 20
    • CciOversold = -100m
    • CciOverbought = 100m
    • StopLoss = new Unit(2, UnitTypes.Percent)
    • CandleType = TimeSpan.FromMinutes(5).TimeFrame()
  • Filters:
    • Category: Mean reversion
    • Direction: Both
    • Indicators: MACD, CCI
    • Stops: Yes
    • Complexity: Intermediate
    • Timeframe: Mid-term
    • Seasonality: No
    • Neural Networks: No
    • Divergence: No
    • Risk Level: Medium

User Reviews

Login to write a review

No reviews yet