Trading agreement fix for Germans (#7)

As a German trying to place an order via the API you will get an
exception: 'EOrder:Trading agreement required'.
You have to set the 'trading_agreement' parameter to 'agree' (see
https://support.kraken.com/hc/en-us/articles/360000920026--Trading-agreement-required-error-for-German-residents).
This commit is contained in:
sstoefe
2021-04-03 18:33:35 +02:00
committed by GitHub
parent 89f7d4b020
commit 62409bb4a2
2 changed files with 9 additions and 0 deletions

View File

@@ -41,6 +41,10 @@ KRAKEN_BUY_AMOUNT=21 # fiat amount you trade for the future of money
KRAKEN_MAX_REL_FEE=0.5 # maximum fee in % that you are willing to pay
KRAKEN_WITHDRAW_KEY="descriptionOfWithdrawalAddress"
# set this if you live in Germany and get the 'EOrder:Trading agreement required' error
# see https://support.kraken.com/hc/en-us/articles/360000920026--Trading-agreement-required-error-for-German-residents
KRAKEN_GERMANY_TRADING_AGREEMENT="agree"
# remove this line after verifying everything works
KRAKEN_DRY_RUN_PLACE_NO_ORDER=1
```