Giter Site home page Giter Site logo

sos GET OPEN ORDERS about python-poloniex HOT 5 CLOSED

s4w3d0ff avatar s4w3d0ff commented on May 22, 2024
sos GET OPEN ORDERS

from python-poloniex.

Comments (5)

Al13n0 avatar Al13n0 commented on May 22, 2024 1

now everthing works good
thank you so much !!

i really suggest to use this library

from python-poloniex.

s4w3d0ff avatar s4w3d0ff commented on May 22, 2024

If you use this repo:

pip install git+https://github.com/s4w3d0ff/python-poloniex.git

To get the public order book for a market:

import poloniex
polo = poloniex.Poloniex()
orders = polo.marketOrders(pair='BTC_CGA', depth=10)
print(orders)
#or
orders = polo.api('returnOrderBook', { 'currencyPair': 'BTC_CGA', 'depth': '10' } )
print(orders)

To get your personal order book:

import poloniex
polo = poloniex.Poloniex('YOUR-TRADE-API-KEY-HERE', 'YourApiSecretKeyGoesHere')
orders = polo.myOrders(pair='all')
print(orders)
#or
orders = polo.api('returnOpenOrders', {'currencyPair': 'all'})
print(orders)

from python-poloniex.

s4w3d0ff avatar s4w3d0ff commented on May 22, 2024

Everything you are trying to write code for has already been done for you. You just need to install and use an api wrapper (like this repo!).

from python-poloniex.

Al13n0 avatar Al13n0 commented on May 22, 2024

ok i will do it is better dont reinvent the wheeil

from python-poloniex.

s4w3d0ff avatar s4w3d0ff commented on May 22, 2024

This function is probably what you are looking for. It identifies the command as public or private, then encodes the command as a url and posts the request. If the command is "private" then the function will sign the headers and send the request with the encoded url and signed headers. It is all wrapped in a class called Poloniex that holds the api key and secret. It also keeps nonces in order and has a call limiter called coach.

from python-poloniex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.