StockSharp.Strategies.0423_Flawless_Victory.py 5.0.0

Prefix Reserved
dotnet add package StockSharp.Strategies.0423_Flawless_Victory.py --version 5.0.0
                    
NuGet\Install-Package StockSharp.Strategies.0423_Flawless_Victory.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.0423_Flawless_Victory.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.0423_Flawless_Victory.py" Version="5.0.0" />
                    
Directory.Packages.props
<PackageReference Include="StockSharp.Strategies.0423_Flawless_Victory.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.0423_Flawless_Victory.py --version 5.0.0
                    
#r "nuget: StockSharp.Strategies.0423_Flawless_Victory.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.0423_Flawless_Victory.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.0423_Flawless_Victory.py&version=5.0.0
                    
Install as a Cake Addin
#tool nuget:?package=StockSharp.Strategies.0423_Flawless_Victory.py&version=5.0.0
                    
Install as a Cake Tool

Flawless Victory Strategy (Python Version)

Flawless Victory is a modular momentum system that blends oscillators with Bollinger Bands. Depending on the selected version it can operate with simple RSI signals, apply fixed take-profit and stop-loss targets, or demand confirmation from the Money Flow Index. The goal is to exploit exhaustion at the edges of volatility bands and ride mean-reversion swings.

Version 1 enters when RSI leaves oversold or overbought zones near the Bollinger extremes. Version 2 adds explicit risk control via percentage based targets. Version 3 requires both RSI and MFI to agree, filtering out weak reversals.

The strategy performs best on intraday markets with clear volatility boundaries.

Details

  • Entry Criteria:
    • Long: see version rules (RSI ❤️0 near lower band; version 3 also MFI < 20)
    • Short: RSI >70 near upper band (version 3 also MFI > 80)
  • Long/Short: Both sides
  • Exit Criteria:
    • Version 1: opposite RSI signal
    • Version 2: take-profit or stop-loss percentages
    • Version 3: opposite RSI/MFI combo
  • Stops: Optional in version 2
  • Default Values:
    • RSI_length = 14
    • MFI_length = 14
    • BBLength = 20
    • BBMultiplier = 2.0
    • TakeProfitPct = 1.5
    • StopLossPct = 1.0
  • Filters:
    • Category: Mean reversion
    • Direction: Both
    • Indicators: RSI, MFI, Bollinger Bands
    • Stops: Optional
    • Complexity: Medium
    • Timeframe: Short-term
    • Seasonality: No
    • Neural networks: No
    • Divergence: Yes
    • 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 243 8/7/2025

fixes