Bitcoin Forum
May 08, 2024, 02:07:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Problem Creating Simple Bittrex Bot in Python  (Read 1110 times)
virtfund (OP)
Sr. Member
****
Offline Offline

Activity: 672
Merit: 253



View Profile
May 31, 2015, 02:31:51 PM
 #1

Wrote a simple bot to automate a task for Bittrex trading. Here is the source code:

from Bittrex import Bittrex
import time

trader = Bittrex(APIKEYS)

while True:
   while trader.get_balance('LDOGE')['result']['Available'] is None:
      time.sleep(15)
      print "1"

   bal=trader.get_balance('LDOGE')['result']['Available']
   print '2'
   trader.sell_limit('BTC-LDOGE', 0.00000004, bal)
   print '3'

whenever I run each command through the command line I get this output from trader.sell_limit (and .buy_limit just to see if that was the problem):

{u'message': u'ZERO_OR_NEGATIVE_NOT_ALLOWED', u'result': None, u'success': False}

Any ideas why? I have a high enough balance for the trade.
1715177250
Hero Member
*
Offline Offline

Posts: 1715177250

View Profile Personal Message (Offline)

Ignore
1715177250
Reply with quote  #2

1715177250
Report to moderator
1715177250
Hero Member
*
Offline Offline

Posts: 1715177250

View Profile Personal Message (Offline)

Ignore
1715177250
Reply with quote  #2

1715177250
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
tidus1097
Sr. Member
****
Offline Offline

Activity: 434
Merit: 252


View Profile
May 31, 2015, 05:55:56 PM
 #2

I'm not sure why you posted this in currency exchange. This is just for trading currencies with someone. You probably will have better luck if you move this to the appropriate board. Maybe try Technical Discussion. I'm not even sure thats the right board, but you'll probably get more hits there than in here. You can move the topic at the bottom left of the page.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!