-
Notifications
You must be signed in to change notification settings - Fork 202
/
main.py
38 lines (33 loc) · 1.17 KB
/
main.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
import os
import sys
import time
from ccapi import Event, SessionOptions, SessionConfigs, Session, EventHandler, Request
class MyEventHandler(EventHandler):
def __init__(self):
super().__init__()
def processEvent(self, event: Event, session: Session) -> bool:
print(f"Received an event:\n{event.toStringPretty(2, 2)}")
return True # This line is needed.
if __name__ == "__main__":
if not os.environ.get("BINANCE_US_API_KEY"):
print("Please set environment variable BINANCE_US_API_KEY", file=sys.stderr)
sys.exit(1)
if not os.environ.get("BINANCE_US_API_SECRET"):
print("Please set environment variable BINANCE_US_API_SECRET", file=sys.stderr)
sys.exit(1)
eventHandler = MyEventHandler()
option = SessionOptions()
config = SessionConfigs()
session = Session(option, config, eventHandler)
request = Request(Request.Operation_CREATE_ORDER, "binance-us", "BTCUSD")
request.appendParam(
{
"SIDE": "BUY",
"QUANTITY": "0.0005",
"LIMIT_PRICE": "20000",
}
)
session.sendRequest(request)
time.sleep(10)
session.stop()
print("Bye")