Skip to content

Commit

Permalink
minor editing.
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiktraxl committed Mar 30, 2021
1 parent 5f029fa commit a5a0947
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,19 @@ See the docstrings of the methods of the KrakenAPI class.
>>> from pykrakenapi import KrakenAPI
>>> help(KrakenAPI)


FAQ
---

* **Why is my order not executed ? Why can't I see my order in Kraken ?**
* **Why is my order not executed? Why can't I see my order in Kraken?**

Kraken's API "Add standard order" call enables a validate only feature that
*defaults to True* here. In order to have your order executed, try with
``validate=False``.

Kraken's API "Add standard order" call enables a validate only feature that is *DEFAULTED TO YES* here. In order to have your order executed, try with ``validate=None``.
.. code:: python
>>> k.add_standard_order(pair="ATOMXBT", type="buy", ordertype="limit", volume="420.0", price="0.00042", validate=None)
k.add_standard_order(pair="ATOMXBT", type="buy", ordertype="limit", volume="420.0", price="0.00042", validate=False)
Development
Expand Down

0 comments on commit a5a0947

Please sign in to comment.