Skip to content

Commit

Permalink
Fix crypto symbol market
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Molinero committed Jul 22, 2024
1 parent 077b6ee commit 41cab4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public Symbol GetLeanSymbol(AssetClass brokerageAssetClass, string brokerageSymb
case AssetClass.UsOption:
return ParseOptionTicker(brokerageSymbol);
case AssetClass.Crypto:
return Symbol.Create(brokerageSymbol.Replace("/", ""), SecurityType.Crypto, Market.USA);
return Symbol.Create(brokerageSymbol.Replace("/", ""), SecurityType.Crypto, Market.Coinbase);
default:
throw new NotSupportedException($"Conversion for the asset class '{brokerageAssetClass}' is not supported.");
}
Expand Down

0 comments on commit 41cab4e

Please sign in to comment.