Fix second half of the CA1051 warnings (#8140)

* Fix second half of the CA1051 warnings

* Address requested changes
This commit is contained in:
Ricardo Andrés Marino Rojas
2024-07-05 11:54:03 -05:00
committed by GitHub
parent 574eafd00d
commit 0a0c012ae9
97 changed files with 406 additions and 408 deletions
@@ -139,10 +139,10 @@ namespace QuantConnect.Algorithm.CSharp
{
public static string CustomDataKey { get; set; }
public decimal Open;
public decimal High;
public decimal Low;
public decimal Close;
public decimal Open { get; set; }
public decimal High { get; set; }
public decimal Low { get; set; }
public decimal Close { get; set; }
public override SubscriptionDataSource GetSource(SubscriptionDataConfig config, DateTime date, bool isLiveMode)
{