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
7
votes
2 answers

how to handle bash with multiple arguments for multiple options

I need to download chart data from poloniex rest client with multiple options using bash only. I tried getopts but couldn't really find a way to use mutliple options with multiple parameters. here is what I want to achieve ./getdata.sh -c currency1…
hevi
  • 2,432
  • 1
  • 32
  • 51
7
votes
2 answers

Poloniex api also taking us to the security check page

I have been using this Java poloniex api project for few months but i am facing some issue from last month. I know this is nothing to do with this project but with Poloniex. And because of the issue i am not able to use this project. The issue is…
santhosh kumar
  • 1,981
  • 1
  • 9
  • 28
5
votes
1 answer

Poloniex Push WAMP API through Autobahn dropping connection to peer tcp

I tried to connect to the Push API in poloniex using python and followed the instructions on the answer here: How to connect to poloniex.com websocket api using a python library However I keep getting this error: 2017-06-25T04:07:04 dropping…
James Pinkerton
  • 161
  • 2
  • 14
4
votes
1 answer

How to write websocket push api output to text file?

I'm using a python script to get realtime updates from an orderbook on the cryptocurrency exchange Poloniex. Currently it prints the information pushed by the websocket to stdout, what do I need to do to print it into a file instead? I'm using…
AFAbyss
  • 195
  • 2
  • 10
4
votes
2 answers

Python - Poloniex Push API

I am trying to get live data in Python 2.7.13 from Poloniex through the push API. I read many posts (including How to connect to poloniex.com websocket api using a python library) and I arrived to the following code: from autobahn.twisted.wamp…
riccio777
  • 167
  • 4
  • 19
3
votes
3 answers

Poloniex & websockets

===SIMPLE & SHORT=== Does anybody have working application that talks with Poloniex through WAMP in these days (January, 2018)? ===MORE SPECIFIC=== I used several info sources to make it work using combo: autobahn-cpp & C++. Windows 10 OS. I was…
Anton Kasabutski
  • 355
  • 5
  • 16
3
votes
1 answer

Poloniex API error using postman

Step1-Body Step2-Pre-req script to apply HMACSHA512. Step3-Headers for the POST Request. The hmacd in Step2 is applied to the request as header. I am facing a 403 Forbidden { "error": "Invalid API key/secret pair." } as above. Any suggestions to…
Sai
  • 598
  • 4
  • 14
3
votes
2 answers

HTTP 502 bad gateway c# with wamp on poloniex

I want to retrieve ticks from Poloniex in real time. They use wamp for that. I installed via nugget WampSharp and found this code : static async void MainAsync(string[] args) { var channelFactory = new DefaultWampChannelFactory(); …
ronki
  • 43
  • 4
3
votes
1 answer

returnTradeHistory in poloniex always returns empty list

I'm using the python wrapper provided by poloniex: wrapper The method I'm trying to run now is: def returnTradeHistory(self,currencyPair): return self.api_query('returnTradeHistory',{"currencyPair":currencyPair}) But the method…
Yuri Waki
  • 663
  • 1
  • 11
  • 25
3
votes
1 answer

Poloniex API - Invalid API key\/secret pair

I can't generate simple private request. After 4 hour using Swift for it, I start trying to generate request in browser. So I want to get all balances. command=returnBalances Randome integer nonce=23455 That info together I have to convert to…
VladyslavPG
  • 557
  • 1
  • 8
  • 19
2
votes
1 answer

Is there any way to subscribe and to listen feed in boost beast websocket?

I am using an example from boost beast documentation for async websocket client. The to send some command to subscribe and then to listen feed until it is terminated manually (preferably with other function or else) Standard examples aren't applied…
2
votes
1 answer

Method seems unavailable for 403 response body in C#

Here is my web request code block, scroll down to the bottom of it to the catch exception try { var webRequest = System.Net.WebRequest.Create (WEBSERVICE_URL); if (webRequest != null) { webRequest.Method = "POST"; …
2
votes
1 answer

I am trying to Access the private Poloniex trading API in Unity C# but am getting the error "invalid command"

I am trying to Access the private Poloniex trading API in Unity C# but am getting the error "invalid command" I have my API Key and Secret authorized on Poloniex for the Trading API but can't seem to get access with my current code: using…
DroneLord
  • 53
  • 12
2
votes
1 answer

Converting Poloniex API Callback JSON into format suitable for Highcharts.Stockchart

I am trying to get JSON from Poloniex's public API method (specifically the returnChartData method) to display chart history of cryptocurrencies against one another into a Highchart Stockchart graph (looking like the demo one here.). This is part…
user9159857
2
votes
1 answer

Python Poloniex API Call

I have the following code that I am trying to make an API call to Poloniex according to their instructions import urllib import urllib.request import json import time import hashlib import codecs import hmac import time Key = "whatever your key…
Jo3Dirt
  • 109
  • 1
  • 9
1
2 3 4 5 6 7