-
Notifications
You must be signed in to change notification settings - Fork 743
/
Copy pathPyCryptoBot.py
44 lines (34 loc) · 1.32 KB
/
PyCryptoBot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""Reusable utilities"""
import math
from typing import Union
def truncate(f: Union[int, float], n: Union[int, float]) -> str:
"""
Format a given number ``f`` with a given precision ``n``.
"""
if not isinstance(f, int) and not isinstance(f, float):
return "0.0"
if not isinstance(n, int) and not isinstance(n, float):
return "0.0"
if (f < 0.0001) and n >= 5:
return f"{f:.5f}"
# `{n}` inside the actual format honors the precision
return f"{math.floor(f * 10 ** n) / 10 ** n:.{n}f}"
def compare(val1, val2, label="", precision=2):
"""
Compare two values and print a message if they are not equal.
"""
if val1 > val2:
if label == "":
return f"{truncate(val1, precision)} > {truncate(val2, precision)}"
else:
return f"{label}: {truncate(val1, precision)} > {truncate(val2, precision)}"
if val1 < val2:
if label == "":
return f"{truncate(val1, precision)} < {truncate(val2, precision)}"
else:
return f"{label}: {truncate(val1, precision)} < {truncate(val2, precision)}"
else:
if label == "":
return f"{truncate(val1, precision)} = {truncate(val2, precision)}"
else:
return f"{label}: {truncate(val1, precision)} = {truncate(val2, precision)}"