Compare commits
1 Commits
bae69043f8
...
fix/line-l
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d6c0342c0f |
@@ -802,7 +802,9 @@ def print_detail(e: dict[str, Any], detail: DetailEvent) -> None:
|
|||||||
)
|
)
|
||||||
print(f"\n{detail['time_status']}")
|
print(f"\n{detail['time_status']}")
|
||||||
print(
|
print(
|
||||||
f"ML: {detail['outcomes'][0]} {format_odds(float(detail['prices'][0]))} vs {detail['outcomes'][1]} {format_odds(float(detail['prices'][1]))}"
|
f"ML: {detail['outcomes'][0]} "
|
||||||
|
f"{format_odds(float(detail['prices'][0]))} vs "
|
||||||
|
f"{detail['outcomes'][1]} {format_odds(float(detail['prices'][1]))}"
|
||||||
)
|
)
|
||||||
print(f"ML Vol: ${detail['volume']:,.0f} | {spread_str}")
|
print(f"ML Vol: ${detail['volume']:,.0f} | {spread_str}")
|
||||||
|
|
||||||
@@ -815,7 +817,9 @@ def print_detail(e: dict[str, Any], detail: DetailEvent) -> None:
|
|||||||
)
|
)
|
||||||
print(f" [{m['type']}]")
|
print(f" [{m['type']}]")
|
||||||
print(
|
print(
|
||||||
f" {m['outcomes'][0]} {format_odds(float(m['prices'][0]))} vs {m['outcomes'][1]} {format_odds(float(m['prices'][1]))}"
|
f" {m['outcomes'][0]} "
|
||||||
|
f"{format_odds(float(m['prices'][0]))} vs "
|
||||||
|
f"{m['outcomes'][1]} {format_odds(float(m['prices'][1]))}"
|
||||||
)
|
)
|
||||||
print(f" Vol: ${m['volume']:,.0f} | {spread_str}")
|
print(f" Vol: ${m['volume']:,.0f} | {spread_str}")
|
||||||
print(f" URL: {m['url']}")
|
print(f" URL: {m['url']}")
|
||||||
|
|||||||
Reference in New Issue
Block a user