Fix most of CA1725 warnings (#8154)

* Fix CA1725 warning

* Address requested changes
This commit is contained in:
Ricardo Andrés Marino Rojas
2024-07-05 14:19:56 -05:00
committed by GitHub
parent ee35c75e62
commit 16a737ee26
249 changed files with 681 additions and 677 deletions
@@ -49,7 +49,7 @@ namespace QuantConnect.Algorithm.CSharp
/// OnData event is the primary entry point for your algorithm. Each new data point will be pumped in here.
/// Slice object keyed by symbol containing the stock data
public override void OnData(Slice data)
public override void OnData(Slice slice)
{
if (!Portfolio.Invested)
{
@@ -63,4 +63,4 @@ namespace QuantConnect.Algorithm.CSharp
}
}
}
}
}