BITCOIN

[bitcoin] pyupbit 함수 소개_2

mle21 2022. 8. 21. 06:00
반응형

EXCHANGE API : 업비트에서 API 신청 후 사용할 수 있는 API이다. 주문, 출금, 입금, 자산 조회가 가능하다. upbit 홈페이지를 통해서 access key, secret key를 발급 받아야 사용 가능하다.


1. 자산 - 전체 계좌 조회

import pyupbit

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)

balance = upbit.get_balances()
print(balance)

 

2. 주문 - 주문 가능 정보

import pyupbit

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)

chance = upbit.get_chance("KRW-BTC")
print(chance)

 

3. 주문 - 주문 취소 접수

import pyupbit

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)

uuid = "uuid"  # 취소하고자하는 주문의 uuid
cancel_result = upbit.cancel_order(uuid)
print(cancel_result)

 

4. 출금 - 출금 리스트 조회

import pyupbit

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)

currency = "KRW"    # 조회하려는 화폐 정보
withdraw_list = upbit.get_withdraw_list(currency)
print(withdraw_list)

 

728x90

'BITCOIN' 카테고리의 다른 글

[bitcoin] pandas dataframe 제어  (0) 2022.08.22
[bitcoin] pyupbit 함수 소개_1  (0) 2022.08.20