Add example to submit, cancel, edit order and adjust issue in labeler.py

This commit is contained in:
itsdeka
2023-01-06 18:22:39 +01:00
committed by Davide Casale
parent ef836bbe1a
commit 22f6fe01fd
4 changed files with 48 additions and 8 deletions

4
bfxapi/utils/cid.py Normal file
View File

@@ -0,0 +1,4 @@
import time
def generate_unique_cid(multiplier: int = 1000) -> int:
return int(round(time.time() * multiplier))