Donchian Seasonal Filter (C#)
Donchian Seasonal Filter The Donchian Seasonal Filter strategy is built around Donchian Channels with seasonal filter. Testing indicates an average annual return of about 70%. It performs best in the ...
Install-Package StockSharp.Strategies.0323_Donchian_Seasonal_Filter -Version 5.0.2
Donchian Seasonal Filter
The Donchian Seasonal Filter strategy is built around Donchian Channels with seasonal filter.
Testing indicates an average annual return of about 70%. It performs best in the stocks market.
Signals trigger when Donchian confirms filtered entries on intraday (15m) data. This makes the method suitable for active traders.
Stops rely on ATR multiples and factors like DonchianPeriod, SeasonalThreshold. Adjust these defaults to balance risk and reward.
Details
- Entry Criteria: see implementation for indicator conditions.
- Long/Short: Both directions.
- Exit Criteria: opposite signal or stop logic.
- Stops: Yes, using indicator-based calculations.
- Default Values:
DonchianPeriod = 20SeasonalThreshold = 0.5mCandleType = TimeSpan.FromMinutes(15).TimeFrame()
- Filters:
- Category: Trend following
- Direction: Both
- Indicators: Donchian, Seasonal
- Stops: Yes
- Complexity: Intermediate
- Timeframe: Intraday (15m)
- Seasonality: Yes
- Neural Networks: No
- Divergence: No
- Risk Level: Medium