Skip to main content

IG Markets Trading API

Project description

This is a fork from ig-markets-api-python-library

Added support for asyncio and aiohttp

Usage

import logging
from pyIG.rest import IGParams, IGClient, Order, OrderType, Side, Money
import os
import asyncio

logger = logging.getLogger()
logger.setLevel(logging.INFO)

params = IGParams()
params.Url = os.environ['IG_URL']
params.Key = os.environ['X_IG_API_KEY']
params.Identifier = os.environ['IDENTIFIER']
params.Password = os.environ['PASSWORD']


async def main():
    async with IGClient(params, logger) as client:
        auth = await client.Login()
        print(auth)

        order = Order('IX.D.SPTRD.DAILY.IP', Side.Buy, Money(100, 'GBP'), OrderType.Market, 'DFB')

        deal = await client.CreatePosition(order)
        print(deal)

        await client.Logout()

if __name__ == '__main__':
    app_loop = asyncio.get_event_loop()
    app_loop.run_until_complete(main())

More

Full details about the API along with information about how to open an account with IG can be found at the link below:

http://labs.ig.com/

Install

From Python package index

$ pip install pyIG

Thanks to

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyIG-1.0.0.tar.gz (16.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page