dominiktraxl/pykrakenapi

Add standard order

Closed this issue · 1 comments

iq commented

Having issues placing an order on Kraken.

My code:
`buyOrder = k.add_standard_order(pair="XXRPXXBT", type="buy", ordertype="market", volume="31", price = "0.00009160")
print(buyOrder)

orders = k.get_open_orders()
print(orders)`

There's no orders getting placed, and no errors messages.

Hi iq, for the order to actually get placed on Kraken you need to add the argument
validate = False
Good luck.