Ensure `Symbol` tick sizes are decoded as `Decimal`..

rekt_pps
Tyler Goodlet 2023-03-20 21:20:46 -04:00
parent 66782d29d1
commit 8fdff8769d
1 changed files with 2 additions and 2 deletions

View File

@ -421,8 +421,8 @@ class Symbol(Struct):
'''
key: str
tick_size: float = 0.01
lot_tick_size: float = 0.0 # "volume" precision as min step value
tick_size: Decimal = 0.01
lot_tick_size: Decimal = 0.0 # "volume" precision as min step value
suffix: str = ''
broker_info: dict[str, dict[str, Any]] = {}