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
1
vote
1 answer

Poloniex C# Trading API webRequest comes back (403) Forbidden

I have my code down to the essentials for testing access, but am receiving the good old error(403) from the server, I have verified for double-sure I am using the correct API Key/Secret pair. My Code (C# via Unity 3D) is as follows: using…
DroneLord
  • 53
  • 12
1
vote
0 answers

Can't connect to wss://api.poloniex.com

I try to connect to wss://api.poloniex.com I'm using https://websocket.org/echo.html to test connection, but I got ERROR: undefined What I'm doing wrong? Are they have any updates or something?
Mowshon
  • 939
  • 9
  • 16
1
vote
1 answer

Trade API Poloniex Python 3.5

Help me log in to the api poloniex. Below is written my code with which I am trying to log in, but it gives me an error! Python version 3.5. Help me please understand what I'm doing wrong! import urllib import requests import json import time import…
1
vote
0 answers

urllib2.HTTPError: HTTP Error 422

I am trying to utilize https://poloniex.com/support/api/ Python wrapper by oipminer: self.p.api_query('buy', {"currencyPair":'BTC_STEEM', "rate":str(0.00020410), "amount":str(0.0001)}) But I always get 422 error: urllib2.HTTPError: HTTP Error…
user2950593
  • 9,233
  • 15
  • 67
  • 131
1
vote
1 answer

Poloniex api 403 error

I am using this code to write a bottrader,in python3 (converted 2to3) https://pastebin.com/fbkheaRb except that i have change secret string and post_data string to byte sign = hmac.new(self.Secret.encode("ASCII"), post_data.encode("ASCII"),…
Abhishek
  • 519
  • 1
  • 6
  • 24
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
1
vote
2 answers

The poloniex Push API through websocket always close in nodejs

I got one problem when using the Push API of poloniex. Currently im testing on nodejs version 8. This is my package.json { "name": "abc", "private": true, "version": "1.0.0", "description": "abc", "keywords": [], "dependencies": { …
Nguyen Le
  • 31
  • 2
1
vote
0 answers

Using autobahn websockets to subscribe to Poloniex feeds

I am trying to use autobahn websockets to connect to the poloniex feeds. Poloniex provides API information here -- https://poloniex.com/support/api/ I am also using the examples on the Autobahn github page. I am able to make a transport layer…
user1373317
  • 106
  • 1
  • 10
1
vote
1 answer

Is there an API for Poloniex Lending Fees?

I'm attempting to reconcile trading activity across accounts on several crypto trading platforms including Poloniex. Poloniex provides the following API https://poloniex.com/support/api/ Using this api I've sourced: Buys & Sells -…
Scott Page
  • 33
  • 1
  • 5
1
vote
1 answer

No response from poloniex api

The issue I'm facing now is related to poloniex public API. For some reason I get the error on web browser on ask reCAPTCHA option. [3463] BasicNetwork.performRequest: Unexpected response code 403 for…
Joice
  • 11
  • 4
1
vote
1 answer

Keep attempting urlopen until a connection is established - Python 2

I'm having a problem with my program freezing, I think it is due to no connection to the Poloniex server. How do I keep looping the urlopen request until a connection is established? Here is what I have: elif(command == "returnOrderBook"): try: …
mattstack
  • 51
  • 1
  • 12
1
vote
2 answers

How to create real time order book since Poloniex exchange WAMP Api sequence number is not correlating with the sequence number got from the REST Api?

I am using C# WAMP client to connect to the Poloniex exchange to get the real time Market data.AS per the documentation provided by the exchange in order to create a real time order book we have to first get the snapshot of the order book through…
Dhinesh
  • 325
  • 1
  • 6
  • 17
1
vote
1 answer

Python Socket Connect poloniex

Hi I Want Python Socket Connect Poloniex API. I ran the code. But I can not get the results I want. I Made Code: =================================================================== import requests import socket s=socket.socket(socket.AF_INET,…
Euneet1a2a
  • 13
  • 2
1
vote
4 answers

I am getting HTTP Error 422 for Poloniex Buy request

I am using a python wrapper from the above script import urllib import urllib2 import json import time import hmac,hashlib def createTimeStamp(datestr, format="%Y-%m-%d %H:%M:%S"): return time.mktime(time.strptime(datestr, format)) class…
Ninad Nehete
  • 540
  • 6
  • 15
1
vote
0 answers

import external js library to ionic 2 app

i would like to import the poloniex api into my service to use the returnTicker() function but whenever i console log the received data it's always undefined that's my Poloniex.ts code : import {Injectable,Inject} from '@angular/core'; import…
sinosabri
  • 11
  • 1