sharebook-kr / pybithumb

python wrapper for bithumb API
MIT License
94 stars 55 forks source link

BTC 마켓 API 에러 #19

Open mr-yoo opened 3 years ago

mr-yoo commented 3 years ago

BTC 시장의 매수/매도 API를 호출하면 다음과 같은 에러가 출력된다.

b = Bithumb(con_key, priv_key)
result = b.buy_limit_order("XRP", 0.00000909, 22, payment_currency="BTC")
print(result)
{'status': '5500', 'message': 'Invalid Parameter'}
hastalamuerte commented 3 years ago

plz plz fix got the same trouble ((

hastalamuerte commented 3 years ago

https://cafe.bithumb.com/view/board-contents/1641439 maybe it will help

mr-yoo commented 3 years ago

다음 코드가 정상 동작하는 것을 확인 했습니다.

b = Bithumb(apiKey, secKey)
result = b.buy_market_order("XRP", 100, payment_currency="BTC")
result = b.buy_limit_order("XRP", 0.00000888, 100, payment_currency="BTC")
print(result)

('bid', 'XRP', 'C0106000000143510587', 'BTC')

모듈 업데이트하고 테스트 한 번 부탁드립니다.

hastalamuerte commented 3 years ago

limit and market in 1 request?

mr-yoo commented 3 years ago

@hastalamuerte Could you be more specific about your problem?