Add brokers list field to symbol type

basic_alerts
Tyler Goodlet 2021-01-04 14:45:59 -05:00
parent 3c424a153f
commit 4d6b1d4bb1
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@
""" """
numpy data source coversion helpers. numpy data source coversion helpers.
""" """
from typing import List
import decimal import decimal
from dataclasses import dataclass from dataclasses import dataclass
@ -81,6 +82,7 @@ class Symbol:
""" """
key: str = '' key: str = ''
brokers: List[str] = None
min_tick: float = 0.01 min_tick: float = 0.01
contract: str = '' contract: str = ''