Kraken Bitcoin exchange platform
Questions tagged [kraken.com]
63 questions
1
vote
2 answers
How to transfert From Kraken to Poloniex by API
i would like to know can you transfert some currencies from Kraken to Poloniex using API functions ?
Didn't see anything talking about that.
Thank a lot

M1n1M1n1ng
- 57
- 7
0
votes
1 answer
C# KrakenApi writing like "Invalid Key" but key is valid
[enter image description here][1]Help to correct it please
C# KrakenApi writing like "Invalid Key" but key is valid. I just have no idea how to fix it, but I need it so much.
MAIN:
Create a URL for the Kraken Balance API
var url =…

style
- 3
- 2
0
votes
2 answers
How to deserialize JSON array into type-safe c# class instance
this question is almost identical to the one here
I have tried translating the answer into C#, but I am not an expert in JSON and am a little lost.
I am attempting to deserialize this JSON response from the Kraken OHLC endpoint. Example response,…

Davy C
- 639
- 5
- 16
0
votes
1 answer
Adding a p12 certificate in krakenD gateway
I'm new to krakenD gateway, I want to add p12 certificate in krakenD gateway? Where can add it and how can I use it for particular api?

Anonymous
- 91
- 1
- 5
0
votes
0 answers
Asynchronous Kraken API updates every 5 minutes, not continuously (using NodeJS)
I'm using a public Kraken API to pull a small set of recent 1 minute bitcoin candles and put in an array.
I've defined the procedure as asynchronous, thinking that it'll be updated constantly (as it includes the working candle in the response). Or…

TheDude
- 3
- 2
0
votes
0 answers
Python code - unclear issue getting data from Kraken using krakenex library
Someone please help me with the following code? It aims to get data from kraken exchange account with api keys stored in an excel file.
Running it, return the following error, but I really do not understand how to solve the issue here.
value =…

Dek
- 1
- 1
0
votes
1 answer
How do I deal with nonce errors on the Kraken private HTTP API?
I am becoming extremely frustrated with the nonce issue on the Kraken private HTTP API.
I frequently get EAPI:Invalid nonce errors. The support is sketchy in this area: it could mean the nonce is not in sequence, or it could mean that there are too…

serlingpa
- 12,024
- 24
- 80
- 130
0
votes
2 answers
Python last index (not per number)
I'm trying to read the TradesHistory from krakenn but it doesn't work with the index. It only works if I enter the right trade. How can I step through each individual trade individually?
With the following command I get all the trades. It…

Crusha
- 3
- 1
0
votes
0 answers
How to get rsi with krakenex and talib?
I'm trying to implement a Trading bot in Kraken using Krakenex api and Talib, but the code does not work it has this error:
Traceback (most recent call last): File
"c:\Users\user1\OneDrive\tradingbot\krakenexBot.py", line 19, in
timestamps =…

Barak K
- 1
0
votes
1 answer
Why does Python-Process on ec2 stop
I have a python script running on a t2.micro EC2 instance on AWS.
I start the program with ./myscript > /dev/null 2>&1 & and than I check if my script is running with ps -elf | grep python. The problem is, after a certain and rather arbitrary time…

Charles1
- 57
- 8
0
votes
2 answers
Kraken API - ColdFusion
Trying to tackle the Kraken API. Using ColdFusion 2016.
I have a few tries in here, but can't seem to quite get it.
So testing message, message2, message3…

Merle_the_Pearl
- 1,391
- 3
- 18
- 25
0
votes
1 answer
Kraken API trades endpoint flawed data
i wrote a script to get historical data from the public trades endpoint of the Kraken API, code as follows:
import pandas as pd
import json
import time
import urllib.request
def get_data(pair, since, until):
global data
global query
…

Dalogh
- 11
- 1
0
votes
1 answer
How to limit open orders request to one pair with kraken api (python)?
In order to make my code more efficient, I'm trying to limit my api request for open orders to one single pair. I can't figure out how to correctly use the input parameters.
I'm using python3 and the krakenex package (which I could replace if there…
0
votes
1 answer
How to work with an API with WebSockets (example Kraken)?
I am trying to update a REST API to API with Websockets and I don't understand how to handle the responses.
With REST API and awaits is easily identify request with response.
But in WebSocket it seems that all the communication is treated in…

ephramd
- 561
- 2
- 15
- 41
0
votes
2 answers
Find entry in set of dicts with matching key
So I Have a set of dicts (this is a sample) see the code below for the full set
{
"XETHXXBT": {
"altname": "ETHXBT",
"wsname": "ETH/XBT",
"aclass_base": "currency",
"base": "XETH",
"aclass_quote": "currency",
"quote": "XXBT",
"lot":…

Matt
- 545
- 3
- 16