|
| 1 | +=============================================================== |
| 2 | +Binance Python API – A Step-by-Step Guide - AlgoTrading101 Blog |
| 3 | +=============================================================== |
| 4 | + |
| 5 | +This is the code used in `Binance Python API – A Step<https://algotrading101.com/learn/binance-python-api/>`_ published on the Algotrading101 Blog |
| 6 | + |
| 7 | +----------------- |
| 8 | +Table of Contents |
| 9 | +----------------- |
| 10 | + |
| 11 | +* `What is the Binance API? <https://algotrading101.com/learn/binance-python-api/#what-is-the-binance-api>`_ |
| 12 | +* `Why should I use the Binance API? <https://algotrading101.com/learn/binance-python-api/#why-should-i-use-the-binance-api>`_ |
| 13 | +* `Why shouldn’t I use the Binance API? <https://algotrading101.com/learn/binance-python-api/#why-should-i-not-use-the-binance-api>`_ |
| 14 | +* `What are the alternatives to using the Binance API? <https://algotrading101.com/learn/binance-python-api/#what-are-alternatives-to-binance-api>`_ |
| 15 | +* `Are there any Python libraries available for the Binance API? <https://algotrading101.com/learn/binance-python-api/#are-there-python-libraries-binance-api>`_ |
| 16 | +* `How do I get started with the Binance API? <https://algotrading101.com/learn/binance-python-api/#how-do-start-with-binance-api>`_ |
| 17 | +* `Does Binance offer a demo account? <https://algotrading101.com/learn/binance-python-api/#does-binance-offer-a-demo-account>`_ |
| 18 | +* `How do I retrieve my account balance using the Binance API? <https://algotrading101.com/learn/binance-python-api/#how-do-i-retrieve-account-balance>`_ |
| 19 | +* `How can I retrieve the latest price for Bitcoin? <https://algotrading101.com/learn/binance-python-api/#how-do-i-get-latest-bitcoin-price>`_ |
| 20 | +* `How can I get Bitcoin’s historical price data in CSV format? <https://algotrading101.com/learn/binance-python-api/#how-do-i-get-bitcoin-historical-csv-data>`_ |
| 21 | +* `Should I trade futures or spot? What is the difference? <https://algotrading101.com/learn/binance-python-api/#should-i-trade-spot-or-futures>`_ |
| 22 | +* `How to access technical indicators such as the 20 SMA? <https://algotrading101.com/learn/binance-python-api/#technical-indicators-binance-api>`_ |
| 23 | +* `How to fire an order for Ethereum using the Binance API? <https://algotrading101.com/learn/binance-python-api/#fire-an-ethereum-order-binance-api>`_ |
| 24 | +* `How to implement a stop loss or take profit using the Binance API? <https://algotrading101.com/learn/binance-python-api/#implement-stop-loss-binance-api>`_ |
| 25 | +* `How to use Binance Coin (BNB) for discounted trading commissions? <https://algotrading101.com/learn/binance-python-api/#use-bnb-for-discount-trading-fees>`_ |
| 26 | +* `How to execute a trade on ETH when BTC hits a certain price? <https://algotrading101.com/learn/binance-python-api/#execute-eth-trade-on-bitcoin-price>`_ |
| 27 | +* `How to execute an ETH trade when BTC moves 5% in the last 5 minutes? <https://algotrading101.com/learn/binance-python-api/#execute-eth-trade-on-btc-price-movement>`_ |
| 28 | +* `Final Thoughts <https://algotrading101.com/learn/binance-python-api/#final-thoughts>`_ |
| 29 | + |
| 30 | +------------ |
| 31 | +Requirements |
| 32 | +------------ |
| 33 | + |
| 34 | +* `python <https://www.python.org>`_ >= 2.7, 3.4+ |
| 35 | +* `python_binance <https://github.com/sammchardy/python-binance>`_ (tested to work with >= 0.7.5 ) |
| 36 | +* `bta_lib <https://github.com/mementum/bta-lib>`_ (tested to work with >= 1.0.0 ) |
| 37 | +* `pandas <https://github.com/pandas-dev/pandas>`_ (tested to work with >= 1.0.3 ) |
| 38 | +* Twisted (tested to work with >= 20.3.0 ) |
| 39 | +* binance (tested to work with >= 0.3 ) |
| 40 | + |
| 41 | +----------- |
| 42 | +Author Info |
| 43 | +----------- |
| 44 | + |
| 45 | +:author: Jignesh Davda |
| 46 | +:author page: https://algotrading101.com/learn/author/jdavda/ |
| 47 | +:published: 2020-06-30 |
0 commit comments