You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.rst
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -8,16 +8,31 @@ This is the code used in `Interactive Brokers Python API (Native) <https://algot
8
8
Table of Contents
9
9
-----------------
10
10
11
+
* `What is the Interactive Brokers Python native API? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#what-is-ib-python-api-native>`_
12
+
* `Why should I learn the IB Python Native API? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#why-should-I-learn-ib-python-native-api>`_
13
+
* `Why shouldn’t I learn the IB Python Native API? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#why-shouldnt-I-learn-ib-python-native-api>`_
14
+
* `IB Python native API vs Third Party Libraries (IBridgePy, IbPy etc) <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#ib-python-api-vs-ibridgepy-ibpy>`_
15
+
* `How to set up the IB native Python API? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#how-to-set-up-the-ib-native-python-api-on-windows>`_
16
+
* `How to retrieve the current ask price of Apple’s Stock (AAPL) <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#retrieve-ask-price-aapl>`_
17
+
* `Retrieving market data for other assets – EUR/USD, Bitcoin & Gold <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#retrieve-market-data>`_
18
+
* `How to retrieve the last 10 hourly candlebars using the native Python API? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#retrieve-historical-data>`_
19
+
* `What’s the best way to store historical data for later use? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#ib-store-historical-data>`_
20
+
* `3 ways to calculate the 20 SMA <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#calculate-moving-average>`_
21
+
* `How to fire an order using the native Python API? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#fire-trade-ib-python-api>`_
22
+
* `How to implement a stop loss or take profit? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#implement-stop-loss-take-profit>`_
23
+
* `How to fire an order for Apple when Google hits a certain price? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#how-do-I-use-ib-python-api-price-condition-to-trade>`_
24
+
* `How to fire an order for Apple when Google moves more than 5% within the last 5 minutes? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#how-can-I-execute-aapl-trade-when-goog-moves-5-percent>`_
25
+
* `How to send notifications via telegram? <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#send-notifications-telegram>`_
26
+
* `Common Errors with the IB Python Native API v9.76 <https://algotrading101.com/learn/interactive-brokers-python-api-native-guide/#common-errors-with-ib-python-native-api-v976>`_
11
27
12
28
------------
13
29
Requirements
14
30
------------
15
31
16
32
* `python <https://www.python.org>`_ >= 2.7, 3.4+
17
-
* `ibapi.egg <url_goes_here>`_ (tested to work with >= info )
18
-
* `pandas <url_goes_here>`_ (tested to work with >= 1.0.3 )
19
-
* `requests <url_goes_here>`_ (tested to work with >= 2.22.0 )
20
-
* `ibapi <url_goes_here>`_ (tested to work with >= 9.76.1 )
33
+
* `pandas <https://github.com/pandas-dev/pandas>`_ (tested to work with >= 1.0.3 )
34
+
* `requests <https://github.com/psf/requests>`_ (tested to work with >= 2.22.0 )
35
+
* `ibapi <https://interactivebrokers.github.io/>`_ (tested to work with >= 9.76.1 )
0 commit comments