Skip to content

Latest commit

 

History

History

ib_insync

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Example for starting up & connect IB Gateway

This example showing how to using ib_insync library to connect IB Gateway

Python script

File Description
connect_gateway.py connect IB Gateway and retrieve historical data

Docker run command

export TRADING_MODE=#paper or live
export IB_ACCOUNT=# your interactive brokers account name
export IB_PASSWORD=# your interactive brokers account password

docker run --rm \
-e IB_ACCOUNT=$IB_ACCOUNT \
-e IB_PASSWORD=$IB_PASSWORD \
-e TRADING_MODE=$TRADING_MODE \
-p 4001:4002 \
-d \
manhinhang/ib-gateway-docker:latest

pip install ib_insync pandas
python ib_insync/scripts/connect_gateway.py