Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonabreul committed Jan 14, 2025
1 parent 405a514 commit a5be6ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions Common/Market.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ public static class Market
Tuple.Create(Coinbase, 38),
Tuple.Create(InteractiveBrokers, 39),
Tuple.Create(EUREX, 40),
Tuple.Create(OSE, 41),
Tuple.Create(RUSSELL, 42)
Tuple.Create(OSE, 41)
};

static Market()
Expand Down Expand Up @@ -176,11 +175,6 @@ static Market()
/// </summary>
public const string OSE = "ose";

/// <summary>
/// FTSE Russell Exchange
/// </summary>
public const string RUSSELL = "russell";

/// <summary>
/// London International Financial Futures and Options Exchange
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion Common/Securities/Index/IndexSymbol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static class IndexSymbol
{ "SPXW", Market.CBOE },
{ "NQX", "NASDAQ" },
{ "VIXW", Market.CBOE },
{ "RUT", Market.RUSSELL }
{ "RUT", "RUSSELL" }
};

private static readonly Dictionary<string, string> _indexMarket = new(StringComparer.InvariantCultureIgnoreCase)
Expand Down

0 comments on commit a5be6ba

Please sign in to comment.