All Projects → ig-python → Ig Markets Api Python Library

ig-python / Ig Markets Api Python Library

Licence: other
A lightweight wrapper for the IG Markets API written in Python

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Ig Markets Api Python Library

Tradzqai
Trading environnement for RL agents, backtesting and training.
Stars: ✭ 150 (-14.77%)
Mutual labels:  trading
Bot18
Bot18 is a high-frequency cryptocurrency trading bot developed by Zenbot creator @carlos8f
Stars: ✭ 157 (-10.8%)
Mutual labels:  trading
Mixture model trading public
Stars: ✭ 166 (-5.68%)
Mutual labels:  trading
Quiksharp
Коннектор к торговому терминалу ARQA QUIK (Квик), который делает доступным весь функционал QLUA из .NET (C#)
Stars: ✭ 152 (-13.64%)
Mutual labels:  trading
Pipeline Live
Pipeline Extension for Live Trading
Stars: ✭ 154 (-12.5%)
Mutual labels:  trading
Stock market indicators
A small Python library with most common stock market indicators
Stars: ✭ 162 (-7.95%)
Mutual labels:  trading
T 1000
⚡️ ⚡️ 𝘋𝘦𝘦𝘱 𝘙𝘓 𝘈𝘭𝘨𝘰𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘸𝘪𝘵𝘩 𝘙𝘢𝘺 𝘈𝘗𝘐
Stars: ✭ 143 (-18.75%)
Mutual labels:  trading
Interactive Broker Python Api
A python client library for the different APIs offered by Interactive Broker including the Trader Workstation API, Client Portal Web API, and Client Portal Streaming Web API.
Stars: ✭ 165 (-6.25%)
Mutual labels:  trading
Squant
SQuant是使用scala语言编写的量化开发工具箱,提供开箱即用的A股股票数据和外汇数据(docker镜像),以及高效的回测框架与交易模块。方便Java/Scala爱好者进行量化投资研究。 QQ群:281599099,微信公众号:Python量化交易实战。对,我已经转python了。。。
Stars: ✭ 155 (-11.93%)
Mutual labels:  trading
Bitprophet
Node crypto trading platform for Binance exchange.
Stars: ✭ 166 (-5.68%)
Mutual labels:  trading
Bursatil Argentina Python
Guia de ejemplos didácticos en python temática finanzas bolsa trading argentina usa
Stars: ✭ 153 (-13.07%)
Mutual labels:  trading
Py Market Profile
A library to calculate Market Profile (aka Volume Profile) for financial data from a Pandas DataFrame.
Stars: ✭ 153 (-13.07%)
Mutual labels:  trading
Ta
Technical Analysis Library using Pandas and Numpy
Stars: ✭ 2,649 (+1405.11%)
Mutual labels:  trading
Interactivebrokers Algo System
Java/MySQL live algorithmic trading using Interactive Brokers API
Stars: ✭ 151 (-14.2%)
Mutual labels:  trading
Binance Rs
Rust Library for the Binance API
Stars: ✭ 164 (-6.82%)
Mutual labels:  trading
Financial News Dataset
Reuters and Bloomberg
Stars: ✭ 147 (-16.48%)
Mutual labels:  trading
Openalgo
💹 openAlgo is a public repository for various work product relavant to algorithms and the high frequency low latency electronic trading space with a bias toward market microstructure as well as exchange traded futures and options.
Stars: ✭ 158 (-10.23%)
Mutual labels:  trading
Cbpro Trader
Automated cryptocurrency trading on Coinbase Pro (formerly gdax-trader)
Stars: ✭ 171 (-2.84%)
Mutual labels:  trading
React Trading Ui
Component library for trading applications 😰📉💸
Stars: ✭ 166 (-5.68%)
Mutual labels:  trading
Crex
A Golang cryptocurrency trading API & Library. Support Binance, BitMEX, Deribit, Bybit, Huobi DM, OKEX Futures and more.
Stars: ✭ 166 (-5.68%)
Mutual labels:  trading

.. image:: https://img.shields.io/pypi/v/trading_ig.svg :target: https://pypi.python.org/pypi/trading_ig/ :alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/trading_ig.svg :target: https://pypi.python.org/pypi/trading_ig/ :alt: Supported Python versions

.. image:: https://img.shields.io/pypi/wheel/trading_ig.svg :target: https://pypi.python.org/pypi/trading_ig/ :alt: Wheel format

.. image:: https://img.shields.io/pypi/l/trading_ig.svg :target: https://pypi.python.org/pypi/trading_ig/ :alt: License

.. image:: https://img.shields.io/pypi/status/trading_ig.svg :target: https://pypi.python.org/pypi/trading_ig/ :alt: Development Status

.. image:: https://img.shields.io/pypi/dm/trading_ig.svg :target: https://pypi.python.org/pypi/trading_ig/ :alt: Downloads monthly

.. image:: https://requires.io/github/ig-python/ig-markets-api-python-library/requirements.svg?branch=master :target: https://requires.io/github/ig-python/ig-markets-api-python-library/requirements/?branch=master :alt: Requirements Status

.. image:: https://travis-ci.org/ig-python/ig-markets-api-python-library.svg?branch=master :target: https://travis-ci.org/ig-python/ig-markets-api-python-library

.. image:: https://readthedocs.org/projects/trading-ig/badge/?version=latest :target: https://trading-ig.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

trading_ig

A lightweight wrapper for the IG Markets API written in Python. Simplifies access to the IG REST and streaming APIs with a live or demo account.

What is it?

IG Markets <https://www.ig.com/>_ provides financial spread betting and CFD platforms for trading equities, forex, commodities, indices, cryptocurrencies, bonds, rates, options and more.

IG provide APIs so that developers can access their platforms programmatically. Using the APIs you can get live and historical data, automate your trades, or create apps. For details about the IG APIs please see their site:

https://labs.ig.com/

NOTE: this is not an IG project. Use it at your own risk

Installation

From Python package index <https://pypi.org/project/trading_ig/>_

::

$ pip install trading_ig

From source

::

$ git clone https://github.com/ig-python/ig-markets-api-python-library
$ cd ig-markets-api-python-library
$ python setup.py install

or

::

$ pip install git+https://github.com/ig-python/ig-markets-api-python-library

Dependencies

  • requests <https://pypi.org/project/requests/>_
  • pycryptodome <https://pypi.org/project/pycryptodome/>_
  • pandas 1.0.5 <https://pypi.org/project/pandas/1.0.5/>_

For full details, see requirements.txt <https://github.com/ig-python/ig-markets-api-python-library/blob/master/requirements.txt>_

Docs

<https://trading_ig.readthedocs.io/>_

License

BSD (See LICENSE <https://github.com/ig-python/ig-markets-api-python-library/blob/master/LICENSE>_)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].