StockSharp.Strategies.0412_Bollinger_Aroon.py
5.0.0
Prefix Reserved
dotnet add package StockSharp.Strategies.0412_Bollinger_Aroon.py --version 5.0.0
NuGet\Install-Package StockSharp.Strategies.0412_Bollinger_Aroon.py -Version 5.0.0
<PackageReference Include="StockSharp.Strategies.0412_Bollinger_Aroon.py" Version="5.0.0" />
<PackageVersion Include="StockSharp.Strategies.0412_Bollinger_Aroon.py" Version="5.0.0" />
<PackageReference Include="StockSharp.Strategies.0412_Bollinger_Aroon.py" />
paket add StockSharp.Strategies.0412_Bollinger_Aroon.py --version 5.0.0
#r "nuget: StockSharp.Strategies.0412_Bollinger_Aroon.py, 5.0.0"
#:package StockSharp.Strategies.0412_Bollinger_Aroon.py@5.0.0
#addin nuget:?package=StockSharp.Strategies.0412_Bollinger_Aroon.py&version=5.0.0
#tool nuget:?package=StockSharp.Strategies.0412_Bollinger_Aroon.py&version=5.0.0
Bollinger Aroon (Python Version)
The Bollinger Aroon strategy searches for pullbacks inside a strong uptrend.
When price stretches beneath the lower Bollinger Band but the Aroon Up value
remains elevated, the system assumes the trend is intact and looks for a
reversion toward the mean. It only trades long, seeking to capture the snap
back after a temporary dip.
The setup triggers after a finished candle closes below the lower band while Aroon Up exceeds the confirmation level. The position remains open until the Aroon reading drops under a stop threshold or price rallies to the upper band. The band width adapts to volatility, allowing the strategy to trade quiet and active markets alike.
Backtests on major crypto pairs show the approach excels during strong trends with occasional shakeouts. Because entries require both volatility expansion and a persistent Aroon Up reading, false signals are reduced compared with a plain Bollinger reversal.
Details
- Data: Price candles.
- Entry Criteria:
- Long: Close below lower band AND
Aroon Up
> confirmation level. - Short: not used.
- Long: Close below lower band AND
- Exit Criteria:
- Close touches upper band OR
Aroon Up
< stop level.
- Close touches upper band OR
- Stops: Indicator based; no fixed stop by default.
- Default Values:
BBLength
= 20BBMultiplier
= 2.0AroonLength
= 288AroonConfirmation
= 90AroonStop
= 70
- Filters:
- Category: Mean reversion within trend
- Direction: Long only
- Indicators: Bollinger Bands, Aroon
- Complexity: Moderate
- 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.
Version | Downloads | Last Updated |
---|---|---|
5.0.0 | 230 | 8/7/2025 |
fixes.