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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="StockSharp.Strategies.0412_Bollinger_Aroon.py" Version="5.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="StockSharp.Strategies.0412_Bollinger_Aroon.py" Version="5.0.0" />
                    
Directory.Packages.props
<PackageReference Include="StockSharp.Strategies.0412_Bollinger_Aroon.py" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add StockSharp.Strategies.0412_Bollinger_Aroon.py --version 5.0.0
                    
#r "nuget: StockSharp.Strategies.0412_Bollinger_Aroon.py, 5.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package StockSharp.Strategies.0412_Bollinger_Aroon.py@5.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=StockSharp.Strategies.0412_Bollinger_Aroon.py&version=5.0.0
                    
Install as a Cake Addin
#tool nuget:?package=StockSharp.Strategies.0412_Bollinger_Aroon.py&version=5.0.0
                    
Install as a Cake Tool

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.
  • Exit Criteria:
    • Close touches upper band OR Aroon Up < stop level.
  • Stops: Indicator based; no fixed stop by default.
  • Default Values:
    • BBLength = 20
    • BBMultiplier = 2.0
    • AroonLength = 288
    • AroonConfirmation = 90
    • AroonStop = 70
  • Filters:
    • Category: Mean reversion within trend
    • Direction: Long only
    • Indicators: Bollinger Bands, Aroon
    • Complexity: Moderate
    • Risk level: Medium
There are no supported framework assets in this package.

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.