Ma Cci Strategy (C#)
Ma Cci Strategy Strategy combining Moving Average and CCI indicators. Buys when price is above MA and CCI is oversold. Sells when price is below MA and CCI is overbought. Testing indicates an average ...
Ma Cci Strategy
Strategy combining Moving Average and CCI indicators. Buys when price is above MA and CCI is oversold. Sells when price is below MA and CCI is overbought.
Testing indicates an average annual return of about 49%. It performs best in the crypto market.
A moving average guides the trend while CCI looks for deviations from that average. Entries happen on CCI extremes in the direction of the MA.
Ideal for swing traders entering on pullbacks. ATR stops guard against sudden whipsaws.
Details
- Entry Criteria:
- Long:
Close > MA && CCI < OversoldLevel - Short:
Close < MA && CCI > OverboughtLevel
- Long:
- Long/Short: Both
- Exit Criteria:
- CCI returns to zero line
- Stops: Percent-based using
StopLossPercent - Default Values:
MaPeriod= 20CciPeriod= 20OverboughtLevel= 100mOversoldLevel= -100mStopLossPercent= 2.0mCandleType= TimeSpan.FromMinutes(5).TimeFrame()
- Filters:
- Category: Mean reversion
- Direction: Both
- Indicators: Moving Average, CCI
- Stops: Yes
- Complexity: Intermediate
- Timeframe: Mid-term
- Seasonality: No
- Neural Networks: No
- Divergence: No
- Risk Level: Medium