view_mode: drop rounding dispersions and "debug print"

basic_buy_bot
Tyler Goodlet 2023-06-19 14:34:47 -04:00
parent 80461e18a5
commit 736bbbff77
1 changed files with 3 additions and 4 deletions

View File

@ -358,9 +358,9 @@ def overlay_viewlists(
start_t = row_start['time'] start_t = row_start['time']
# returns scalars # returns scalars
r_up = (ymx - y_ref) / y_ref r_up: float = (ymx - y_ref) / y_ref
r_down = (ymn - y_ref) / y_ref r_down: float = (ymn - y_ref) / y_ref
disp = round(r_up - r_down, ndigits=16) disp: float = r_up - r_down
msg = ( msg = (
f'Viz[{viz.name}][{key}]: @{chart_name}\n' f'Viz[{viz.name}][{key}]: @{chart_name}\n'
@ -552,7 +552,6 @@ def overlay_viewlists(
mxmns_by_common_pi mxmns_by_common_pi
and not overlay_table and not overlay_table
): ):
print("WAATT THE FUCK")
# move to next chart in linked set since # move to next chart in linked set since
# no overlay transforming is needed. # no overlay transforming is needed.
continue continue