StockSharp.Strategies.0056_Double_Bottom.py
5.0.1
Prefix Reserved
dotnet add package StockSharp.Strategies.0056_Double_Bottom.py --version 5.0.1
NuGet\Install-Package StockSharp.Strategies.0056_Double_Bottom.py -Version 5.0.1
<PackageReference Include="StockSharp.Strategies.0056_Double_Bottom.py" Version="5.0.1" />
<PackageVersion Include="StockSharp.Strategies.0056_Double_Bottom.py" Version="5.0.1" />
<PackageReference Include="StockSharp.Strategies.0056_Double_Bottom.py" />
paket add StockSharp.Strategies.0056_Double_Bottom.py --version 5.0.1
#r "nuget: StockSharp.Strategies.0056_Double_Bottom.py, 5.0.1"
#:package StockSharp.Strategies.0056_Double_Bottom.py@5.0.1
#addin nuget:?package=StockSharp.Strategies.0056_Double_Bottom.py&version=5.0.1
#tool nuget:?package=StockSharp.Strategies.0056_Double_Bottom.py&version=5.0.1
Double Bottom Pattern (Python Version)
This pattern-based strategy scans for two consecutive lows at roughly the same price separated by a set distance. After the second bottom forms, a bullish candle confirms the reversal.
Testing indicates an average annual return of about 55%. It performs best in the stocks market.
When confirmation occurs, the system buys with a stop below the pattern lows. The setup aims to capture sharp rebounds from exhausted selling.
Exits rely on a predefined stop-loss or manual profit targets.
Details
- Entry Criteria: Two bottoms form within
SimilarityPercent
afterDistance
bars. - Long/Short: Long only.
- Exit Criteria: Price fails or stop-loss.
- Stops: Yes.
- Default Values:
Distance
= 5SimilarityPercent
= 2.0mCandleType
= TimeSpan.FromMinutes(15)StopLossPercent
= 1.0m
- Filters:
- Category: Pattern
- Direction: Long
- Indicators: Price Action
- Stops: Yes
- Complexity: Intermediate
- Timeframe: Intraday
- Seasonality: No
- Neural Networks: No
- Divergence: Yes
- 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.
style: align C# strategies with tabs