Skip to content

Dockerized IQFeed client with X11VNC for remote viewing

Notifications You must be signed in to change notification settings

kvokka/docker-iqfeed

 
 

Repository files navigation

Dockerized IQFeed client with X11VNC for remote viewing

CircleCI

See CHANGELOG for a list of notable changes

Usage

Clone this repository and build the image:

git clone https://github.com/kvokka/iqfeed-docker.git
cd iqfeed-docker
docker build . -t iqfeed-docker

Run your image with docker run

docker run -e IQFEED_LOGIN=CHANGEME \
    -e IQFEED_PASSWORD=CHANGEME \
    -p 5009 -p 9100 -p 9200 -p 9300 -p 9400 \
    -p 5901:5901 -p 8088:8080 \
    -v /var/log/iqfeed:/root/DTN/IQFeed \
    -d iqfeed-docker

OR you can directly run my image from dockerhub with docker run

docker run -e IQFEED_LOGIN=CHANGEME \
    -e IQFEED_PASSWORD=CHANGEME \
    -p 5009:5010 -p 9101:9100 -p 9201:9200 -p 9301:9300 -p 9401:9400\
    -p 5901:5901 -p 8088:8088 \
    -v /var/log/iqfeed:/root/DTN/IQFeed \
    -d kvokka/iqfeed

With docker-compose edit the docker-compose.yml with your iqfeed credentials, then run

docker-compose -f docker-compose.yml up -d iqfeed

In docker logs of the container and you should see

...
2020-03-03 05:52:11,281 INFO supervisord started with pid 1
...
2020-03-03 05:52:12,521 INFO pyiqfeed_admin_conn.<module>.64:  PyIQFeed admin conn started.
2020-03-03 05:52:12,524 INFO pyiqfeed_admin_conn.<module>.144:  iqfeed service not running.
2020-03-03 05:52:13,822 INFO success: iqfeed-proxy entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-03-03 05:52:13,822 INFO success: Xvfb entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-03-03 05:52:13,822 INFO success: wine-iqfeed-startup entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-03-03 05:52:13,822 INFO success: pyiqfeed-admin-conn entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
..
2020-03-03 05:52:30,221 INFO pyiqfeed_admin_conn.<module>.136:  iqfeed service running.
...

If you see iqfeed service running. it means it all good.

You can also see a very chatty version of whats going on with iqfeed client if you tail tail -f /var/log/iqfeed/pyiqfeed-admin-conn.log.

SideNotes:

  • As of right now for some reason not known to me the iqfeed client will crash every few days or hours :( I have worked around it by building the docker container health check script that monitors for wine crashes in the wine.log file and will mark the conatainer as unhealthy. Once this is done the container can be restarted by an external service, most popular ways are either docker stacks or docker-autoheal. I use autoheal becasue its simpler and good enough for my usecase. See docker-compose.yml file for details.
docker-compose -f docker-compose.yml up -d autoheal
  • use IQFEED_PRODUCT_ID variable to set product id if you have its value
  • Dockerfile already includes the patch which allows to connect to iqfeed from any IP

This is fairly a opinionated configuration based on my own needs, if you dont like it fork it!

Also some of the code is borrowed and/or inspired from in no particular order

About

Dockerized IQFeed client with X11VNC for remote viewing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 74.8%
  • Dockerfile 22.7%
  • Shell 2.5%