create_order
Create buy or sell orders on Upbit by specifying market, order type, and price. Supports limit, market buy, and market sell orders for efficient cryptocurrency trading.
Instructions
업비트에 주문을 생성합니다.
Args:
market (str): 마켓 코드 (예: KRW-BTC)
side (str): 주문 종류 - bid(매수) 또는 ask(매도)
ord_type (str): 주문 타입 - limit(지정가), price(시장가 매수), market(시장가 매도)
volume (str, optional): 주문량 (지정가, 시장가 매도 필수)
price (str, optional): 주문 가격 (지정가 필수, 시장가 매수 필수)
Returns:
dict: 주문 결과
Input Schema
Name | Required | Description | Default |
---|---|---|---|
market | Yes | ||
ord_type | Yes | ||
price | No | ||
side | Yes | ||
volume | No |