StockSharp.Strategies.0144_Hull_MA_Volume
5.0.2
Prefix Reserved
dotnet add package StockSharp.Strategies.0144_Hull_MA_Volume --version 5.0.2
NuGet\Install-Package StockSharp.Strategies.0144_Hull_MA_Volume -Version 5.0.2
<PackageReference Include="StockSharp.Strategies.0144_Hull_MA_Volume" Version="5.0.2" />
<PackageVersion Include="StockSharp.Strategies.0144_Hull_MA_Volume" Version="5.0.2" />
<PackageReference Include="StockSharp.Strategies.0144_Hull_MA_Volume" />
paket add StockSharp.Strategies.0144_Hull_MA_Volume --version 5.0.2
#r "nuget: StockSharp.Strategies.0144_Hull_MA_Volume, 5.0.2"
#:package StockSharp.Strategies.0144_Hull_MA_Volume@5.0.2
#addin nuget:?package=StockSharp.Strategies.0144_Hull_MA_Volume&version=5.0.2
#tool nuget:?package=StockSharp.Strategies.0144_Hull_MA_Volume&version=5.0.2
Hull Ma Volume Strategy (C# Version)
Strategy that uses Hull Moving Average for trend direction and volume confirmation for trade entries.
Testing indicates an average annual return of about 169%. It performs best in the crypto market.
The Hull moving average smooths out noise, and rising volume confirms conviction. Entries occur when price moves with the Hull slope backed by a volume surge.
This method targets traders watching for strong participation on breakouts. ATR-based stops defend against sudden reversals.
Details
- Entry Criteria:
- Long:
HullMA(t) > HullMA(t-1) && Volume > AvgVolume * VolumeMultiplier - Short:
HullMA(t) < HullMA(t-1) && Volume > AvgVolume * VolumeMultiplier
- Long:
- Long/Short: Both
- Exit Criteria:
- Long:
HullMA(t) < HullMA(t-1) - Short:
HullMA(t) > HullMA(t-1)
- Long:
- Stops:
StopLossAtrATR from entry - Default Values:
HullPeriod= 9VolumePeriod= 20VolumeMultiplier= 1.5mStopLossAtr= 2.0mAtrPeriod= 14CandleType= TimeSpan.FromMinutes(5).TimeFrame()
- Filters:
- Category: Breakout
- Direction: Both
- Indicators: Hull MA, Moving Average, Volume
- Stops: Yes
- Complexity: Intermediate
- Timeframe: Mid-term
- Seasonality: No
- Neural Networks: No
- Divergence: No
- Risk Level: Medium
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
fixes