Skip to content

Commit 8993773

Browse files
Fix option mapping
1 parent 29b5935 commit 8993773

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

QuantConnect.Wolverine/WolverineSymbolMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public WolverineSymbolMapper(IMapFileProvider mapFileProvider)
4242

4343
public string GetBrokerageSymbol(Symbol symbol)
4444
{
45-
if (symbol.ID.SecurityType != SecurityType.Equity)
45+
if (symbol.ID.SecurityType != SecurityType.Equity && symbol.ID.SecurityType != SecurityType.Option)
4646
{
4747
throw new ArgumentException("Invalid security type: " + symbol.ID.SecurityType);
4848
}

0 commit comments

Comments
 (0)