Make vlm a float; discrete is so 80s

incremental_update_paths
Tyler Goodlet 2022-05-16 14:31:04 -04:00
parent 27ee9fdc81
commit b236dc72e4
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ ohlc_fields = [
('high', float),
('low', float),
('close', float),
('volume', int),
('volume', float),
('bar_wap', float),
]