Add implementation for submit_order, update_order and cancel_order endpoint handlers in BfxRestInterface.py.

This commit is contained in:
Davide Casale
2022-12-22 17:07:36 +01:00
parent 79ae0b48e0
commit d5ace49555
2 changed files with 20 additions and 8 deletions

View File

@@ -1,11 +1,5 @@
from decimal import Decimal
from datetime import datetime
from typing import Type, Tuple, List, Dict, TypedDict, Union, Optional, Any
from ..utils.integers import Int16, Int32, Int45, Int64
JSON = Union[Dict[str, "JSON"], List["JSON"], bool, int, float, str, Type[None]]
#region Type hinting for Rest Public Endpoints