import pyupbit
import pprint
f = open("upbit.txt")
lines = f.readlines()
access = lines[0].strip() # access_key
secrets = lines[1].strip() # secret key
f.close()
upbit = pyupbit.Upbit(access, secrets)
balance = upbit.get_balance("KRW-SOL")
# 시장가 매수 (티커, 주문량)
resp = upbit.sell_market_order("KRW-SOL", balance)
pprint.pprint(resp)
import pprint
f = open("upbit.txt")
lines = f.readlines()
access = lines[0].strip() # access_key
secrets = lines[1].strip() # secret key
f.close()
upbit = pyupbit.Upbit(access, secrets)
balance = upbit.get_balance("KRW-SOL")
# 시장가 매수 (티커, 주문량)
resp = upbit.sell_market_order("KRW-SOL", balance)
pprint.pprint(resp)
'재테크•투자•경제•주식' 카테고리의 다른 글
피벗 포인트(Pivot Points) (0) | 2024.02.19 |
---|---|
[pyupbit] 주문 취소 (0) | 2024.02.18 |
[pyupbit] 시장가 매수 (0) | 2024.02.18 |
[pyupbit] 지정가 매도 (0) | 2024.02.18 |
[pyupbit] 지정가 주문하기 (0) | 2024.02.18 |