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 = upbi..