Author

Topic: [ANN] KRAKEN.COM - Exchange with USD EUR GBP JPY CAD BTC LTC XRP NMC XDG STR ETH - page 197. (Read 629033 times)

legendary
Activity: 2968
Merit: 1133
kraken is hard to reach at the moment. loads very slow and I get alot of "read operation timed out" errors via API ( a time of 30 seconds)

edit: now ~ 30 minutes later it seems to work again
full member
Activity: 132
Merit: 100
It is back to normal again now. But there were issues about half an hour long with the website. The API worked most of the time (5 minute outage), though, also the mobile app.
newbie
Activity: 3
Merit: 0
It is back to normal. Quite ugly with an unusual +1.5% price move in between.

edit: and right back to malfunctioning.

Everything working for me. Are you having issues with website or API, too?
full member
Activity: 132
Merit: 100
It is back to normal. Quite ugly with an unusual +1.5% price move in between.

edit: and right back to malfunctioning.
hero member
Activity: 910
Merit: 1000
kraken was down for ~5 minutes for the order book and another 5 minutes for the trading tab. That is a long time in this highly active period.

Yeah, it's hit or miss right now for me too - pages aren't loading and when they do it takes an unusually long time.
full member
Activity: 132
Merit: 100
kraken was down for ~5 minutes for the order book and another 5 minutes for the trading tab. Plus another 8 minutes of very low performance. That is a long time in this highly active period.
full member
Activity: 132
Merit: 100
Trying to place a margin order I get the error message "invalid leverage", no matter which leverage I choose. I do not see any reason for a problem like missing funds or anything else.

Give it another go.  Thanks for the report!

Today it works without further ado.
vip
Activity: 302
Merit: 253
Trying to place a margin order I get the error message "invalid leverage", no matter which leverage I choose. I do not see any reason for a problem like missing funds or anything else.

Give it another go.  Thanks for the report!
full member
Activity: 132
Merit: 100
Trying to place a margin order I get the error message "invalid leverage", no matter which leverage I choose. I do not see any reason for a problem like missing funds or anything else.
full member
Activity: 132
Merit: 100
Would love to see in the open order tab, if an order is placed on margin or not.
legendary
Activity: 1820
Merit: 1000
Which are the margin fee now?

https://support.kraken.com/hc/en-us/articles/206161568-What-are-the-fees-for-margin-trading-

https://www.kraken.com/en-us/help/fees

None or 0.01% per 4 hours ?

EDIT:
I see 0.01% here:
https://www.kraken.com/help/fees

Maybe this is the right value.

Yes, it's 0.01% / 4 hours. For some reason it wasn't showing on our fees page, but I checked just now and it's showing.
staff
Activity: 4270
Merit: 1209
I support freedom of choice
legendary
Activity: 1820
Merit: 1000
Get deposit methods
URL: https://api.kraken.com/0/private/DepositMethods

Input:

aclass = asset class (optional):
    currency (default)
asset = asset being deposited

How to convert it in php Huh

is this correct Huh

$res = $kraken->QueryPrivate('DepositMethods', array('currency' => 'XBT'));

I haven't used the PHP or Kraken's PHP API but I assume it's:

Code:
$res = $kraken->QueryPrivate('DepositMethods', array('aclass' => 'currency', 'asset' => 'XXBT'));

and aclass should be optional anyway.

Either of these should work.
hero member
Activity: 910
Merit: 1000
Get deposit methods
URL: https://api.kraken.com/0/private/DepositMethods

Input:

aclass = asset class (optional):
    currency (default)
asset = asset being deposited

How to convert it in php Huh

is this correct Huh

$res = $kraken->QueryPrivate('DepositMethods', array('currency' => 'XBT'));

I haven't used the PHP or Kraken's PHP API but I assume it's:

Code:
$res = $kraken->QueryPrivate('DepositMethods', array('aclass' => 'currency', 'asset' => 'XXBT'));

and aclass should be optional anyway.
newbie
Activity: 9
Merit: 0
Get deposit methods
URL: https://api.kraken.com/0/private/DepositMethods

Input:

aclass = asset class (optional):
    currency (default)
asset = asset being deposited

How to convert it in php Huh

is this correct Huh

$res = $kraken->QueryPrivate('DepositMethods', array('currency' => 'XBT'));
legendary
Activity: 2968
Merit: 1133
going back to API specification sharing to community... if incorporating feedback it may turn into new standard of API infrastructure for cryptocurrency exchanges developed by kraken with the community. You have one of the bests api anyway, but I believe someday you will introduce new version so you may consider it.
1) the "available balance" is still missing in their API Wink
2) And you get no information about the rest amount, when you cancel an order.  (i need the rest amount in the response, when canceling an order).

But with these two things, it would be perfect from my point of view Wink
full member
Activity: 175
Merit: 100
going back to API specification sharing to community... if incorporating feedback it may turn into new standard of API infrastructure for cryptocurrency exchanges developed by kraken with the community. You have one of the bests api anyway, but I believe someday you will introduce new version so you may consider it.
newbie
Activity: 9
Merit: 0
$key = '********************************************';
$secret = 'YOUR API SECRET';

i have key how to get API SECRET KEY HELP

It should be visible right below API Key: Go to Settings->API and select your key. It will say 'Private Key' and be labeled 'Private key used to sign API messages.' That is your secret key. Do NOT share this with anyone!

Thanks for reply
newbie
Activity: 2
Merit: 0

This doesn't sound right, so we should take a closer look at the order(s) in question. Can you make a support request (https://support.kraken.com/hc/requests/new) and include the numbers of the order(s) that seemed to be skipped? The order numbers can be found in the left column under Trade > Orders in your account (only the first 6 digits of the order number are shown and you have to click to get the full number).
  

Ok, will do  Cheesy

edit:
Looks like the order finally completed at some point....good job I noticed before filling out support request  Grin


Yes, market orders match instantly against opposing orders on the book. There's no such thing as "the" market value. The average price you pay depends on your order size and on what orders are on the book to fill it. For example, suppose you sell 2 BTC at market and the highest buy order on the book is 1 BTC for 211 and the next highest buy order is 2 BTC for 210. Then your 2 BTC market order will get 1/2 filled by the order at 211 and the rest will get filled at 210. Then your average fill price on the sell order will be 210.5. In this case if you go to look at your trade history, you will actually see two trades (one at 211 and one at 210), since it took two trades with two different orders on the other side to fill your order.

Thanks also for the explanation.
hero member
Activity: 910
Merit: 1000
$key = '********************************************';
$secret = 'YOUR API SECRET';

i have key how to get API SECRET KEY HELP

It should be visible right below API Key: Go to Settings->API and select your key. It will say 'Private Key' and be labeled 'Private key used to sign API messages.' That is your secret key. Do NOT share this with anyone!
Jump to: