-
Notifications
You must be signed in to change notification settings - Fork 150
/
basic_order_with_cloid.py
35 lines (26 loc) · 1.17 KB
/
basic_order_with_cloid.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
import example_utils
from hyperliquid.utils import constants
from hyperliquid.utils.types import Cloid
def main():
address, info, exchange = example_utils.setup(constants.TESTNET_API_URL, skip_ws=True)
cloid = Cloid.from_str("0x00000000000000000000000000000001")
# Users can also generate a cloid from an int
# cloid = Cloid.from_int(1)
# Place an order that should rest by setting the price very low
order_result = exchange.order("ETH", True, 0.2, 1100, {"limit": {"tif": "Gtc"}}, cloid=cloid)
print(order_result)
# Query the order status by cloid
order_status = info.query_order_by_cloid(address, cloid)
print("Order status by cloid:", order_status)
# Non-existent cloid example
invalid_cloid = Cloid.from_int(2)
order_status = info.query_order_by_cloid(address, invalid_cloid)
print("Order status by cloid:", order_status)
# Cancel the order by cloid
if order_result["status"] == "ok":
status = order_result["response"]["data"]["statuses"][0]
if "resting" in status:
cancel_result = exchange.cancel_by_cloid("ETH", cloid)
print(cancel_result)
if __name__ == "__main__":
main()