Questions tagged [poloniex]

Poloniex is a US exchange trading in numerous virtual currencies, including Bitcoin, Ethereum, Litecoin and Dogecoin. The tag should be used when referring to Poloniex API, independently of the implementation.

Poloniex is a US exchange trading in numerous virtual currencies, including Bitcoin, Ethereum, Litecoin and Dogecoin. The tag should be used when referring to Poloniex API - https://poloniex.com/support/api/, independently of the implementation.

93 questions
0
votes
0 answers

Poloniex api error while downloading data using python3

I am trying to run the Speculator library. While trying to run I came across the following error: PC@PC:~/Speculator/speculator$ python3 main.py INFO:requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1):…
Jaffer Wilson
  • 7,029
  • 10
  • 62
  • 139
0
votes
1 answer

POLONIEX API Connect

I'm trying to connect to POLONIEX API using powershell. I've tried different variation of the following code without any luck. Could anyone take a look to see what I'm missing? [Net.ServicePointManager]::SecurityProtocol =…
ASorin
  • 3
  • 1
0
votes
3 answers

Poloniex Python Wrapper

I am fairly new to Python and I have been trying to get the Python Poloniex wrapper to work but am a little unsure about the usage. The Code is posted on Github here Is someone able to shed a little light on firstly where I put my API Key &…
Parad0x
  • 1
  • 3
0
votes
1 answer

XChange java Poloniex: Hot to set price for Limit Order

I cannot figure out how to set the selling/buying price for my limit order for Poloniex Exchange using XChange java library. Bellow is initialization and my method for placing Bids but there is not price for setting. ExchangeSpecification exSpec =…
Beerius
  • 1
  • 1
0
votes
1 answer

Requests for Poloniex API

I trying work with Poloniex API. And I try get balances via Trading API methods. And I try do it with requests library like this: import requests import hmac import hashlib import time import urllib def setPrivateCommand(self): poloniex_data =…
Alex
  • 685
  • 3
  • 9
  • 20
0
votes
1 answer

Making a POST HTTP Request To The Poloniex API

I'm using the site https://www.hurl.it/#top to make a POST HTTP request to the Poloniex Exchange API. Note that I have generated my Sign by going to https://www.freeformatter.com/hmac-generator.html#ad-output putting my SECRET and API_KEY into the…
John
  • 1
  • 2
0
votes
0 answers

What I need for the callback parameter for returnCharData function?

N need some help here using this API. I'm trying to get data from Poloniex API for NodeJS (npm Install) I'm confuse with which parameter i have to pass here in the callback parameter, I'm new in nodeJS, so maybe im getting wrong what i need as a…
0
votes
1 answer

Issues using Starscream with the Poloniex WAMP API

I'm trying to use Starscream (which is great) to connect to the Poloniex (cryptocurrency exchange) API to retrieve live quotes for prices over socket connection. I have been successful using Autobahn, in connecting and subscribing in Python. Now on…
Woodstock
  • 22,184
  • 15
  • 80
  • 118
0
votes
1 answer

How to get trade history from Poloniex about BTC to USD in Python?

I would like to get whole trade history from Poloniex about BTC to USD in Python. I have entered my key and secret. I have got the code like below: import urllib import urllib2 import json import time import hmac,hashlib def…
user2856064
  • 541
  • 1
  • 8
  • 25
0
votes
2 answers

How do the poloniex JSON API weblinks work?

I've been trying to fetch historical data for the last few months of a particular pair, using 4 hours intervals. I was directed to the following format to fetch data: https://poloniex.com/public?command=returnOrderBook¤cyPair=BTC_ETH But is…
0
votes
0 answers

Poloniex trading API error in Swift

I am trying to post a buy or sell order through Poloniex's trading API, the problem is that I keep getting the following error: { error = "Invalid API key/secret pair."; } The code for posting the order is the following: func postOrder(type:…
0
votes
1 answer

Why is my Poloniex lending bot failing to returnBalances?

Recently, as a bit of a personal curiosity project, I have been writing an incredibly simple bot to use on Poloniex (a cryptocurrency exchange). I have been able to get the public API to work properly, but when I started testing the trading API,…
0
votes
1 answer

Poloniex APi to Google Sheet CSV via Json

I've got the following script that pulls keys from the Poloniex JSON output, but doesn't put the actual data that corresponds to the keys into the actual sheet...it only puts the keys as titles at the top of the sheet. I'm new to API's, and GAS, and…
0
votes
1 answer

Poloniex api error - Invalid API key/secret pair

I'm using the Poloniex PHP wrapper yet I can't seem to get it to accept my keys without throwing an error. Poloniex PHP Wrapper: https://pastebin.com/iuezwGRZ For fast tests I use the following code:
Colwin
  • 1
  • 1
0
votes
1 answer

How to call poloniex trading api in scala

My code is following. import org.apache.commons.codec.binary.Hex import akka.actor.ActorSystem import akka.http.scaladsl.Http import akka.http.scaladsl.model.headers.RawHeader import akka.http.scaladsl.model._ import…
hidechae
  • 675
  • 1
  • 6
  • 11