barbagrigia / trade-frame

c++ based application for testing options based automated trading ideas using DTN IQ real time data feed and Interactive Brokers (TWS API) for trade execution.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

trade-frame

Introduction

This is an application I use for automated trading securities.
C++ is used throughout for building high-capacity, low-latency trading applications.

A C++17 compiler is used to build the libraries and code.

CMake is used for build the projects and libraries.

Example

Picture from the ComboTrading project showing an instrument list, with a chart for one of the listed instruments. Bid, ask, spread, and greeks are charted for the option (charted real-time).

Option Greeks Timeline

More pictures under ComboTrading

Building

Scripts are library version specific. I use Debian Buster x64. Build notes are as of 2016/09/25. There are some wxWidget requirements for using a GTK variation of video drivers (I've used Nvidia and Radeon cards successfully).

You'll need to Have about 10G free to build the project and related libraries and installs (from my libs-build repository).

Debian Stretch netinst (daily snapshot usually works): [since Buster is now 'stable', these links now refer to Bullseye] https://www.debian.org/devel/debian-installer/ http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/

# run with bash
# create working directory
mkdir rburkholder
cd rburkholder
# git for latest code, wine for IQFeed daemon
sudo apt-get update && apt-get install git wine wget
sudo dpkg --add-architecture i386 && apt-get install wine32
wget http://www.iqfeed.net/iqfeed_client_5_2_5_0.exe
wine iqfeed_client_5_2_5_0.exe

# interactive brokers Java for linux
wget https://download2.interactivebrokers.com/installers/tws/stable/tws-stable-linux-x64.sh
sh tws-stable-linux-x64.sh

# initial library install
git clone https://github.com/rburkholder/libs-build.git
cd libs-build
./build.sh tradeframe
cd ..

# main trade-frame code
git clone https://github.com/rburkholder/trade-frame.git

# pre-build some of the example apps 
# (first example built will take a while as most support libraries are built as well)
pushd trade-frame
cd ArmsIndex
make
cd IQFeedMarketSymbols
make
cd ../IQFeedGetHistory
make
cd ../Hdf5Chart
make
cd ../LiveChart
make
cd ../ComboTrading
make
#cd ../StickShift2 <-- does not currently build
#make
cd ../HedgedBollinger
make
cd ../BasketTrading
make
cd ../Weeklies
make
cd ../Scanner
make
popd

Starting Up

  • Start the IQFeed daemon by starting Apps -> Wine -> Programs -> IQFeed -> IQWatchQuote (may need to start twice, and then watch a symbol) [or from the command line: IQConnect.exe ... -autoconnect & ]
  • Start Interactive Brokers TWS and connect to a paper trading account .* do not use an active account for testing .* when connecting via an application, you will need to go into the settings to enable the API, and to activate the port
  • IQFeedMarketSymbols project:
    • run the app:
      • Actions -> New Symbol List Remote
      • the program will spend a few minutes downloading, parsing, and saving the latest IQFeed symbol list
      • lots of messages will be generated, no need to evaluate them, other than the summary stats at the end
      • File -> Exit
  • IQFeedGetHistory project:
    • obtains daily ohlc values, used to refresh data
    • repeats the symbol download, which was done with IQFeedMarketSymbols
    • run the app:
      • ensure the iqfeed daemon is running (you should see active updates in the quote monitor)
      • 'turn on' IQF
      • Actions -> download n # of days:
        • 0 to download full history of symbol, can take a while
        • 10 to try a test
        • a symbol download will commence
        • there will be a couple of minutes of no activity while the symbol list is scanned
        • data for a series of symbols will start
        • once the message 'Process Complete' shows, the download is complete
      • 'turn off' IQF
      • File -> Exit
  • BasketTrading project:
    • runs a Darvas selection process on daily bars retrieved by IQFeedGetHistory
    • runs an automated buy/sell/stop process from market open to market close on a basket of instruments
  • more apps to be described here ...

Background

Current Market Data Providers and Execution vendors:

  • IQFeed: real time market data and historical data
  • Interactive Brokers: real time market data, real time order execution

Securities types:

  • Equities
  • Options
  • Futures
  • Futures Options

Libraries used (use my lib-build respository to download and build the various dependencies):

  • wxWidgets
  • boost
  • curl
  • zlib
  • hdf5
  • sqlite (included in source)
  • exelformat (included in source)

The libraries are cross platform capable: Linux and Windows

The code started out on Windows using Visual Studio, and is now predominately tested on Linux Debian. Some work is required to port back to Windows.

The lib directory has a series of libraries I use throughout the various applications. Primary libraries include:

  • TFTimeSeries - manage trades, quotes, greeks
  • TFSimulation - simulation engine
  • TFIQFeed - engine to talk to DTNIQ Feed (ask me for a referral)
  • TFInteractiveBrokers - engine to talk to IB
  • TFIndicators - some indicators
  • TFHDF5TimeSeries - wraps the HDF5 library for storing time series
  • TFOptions - options calculations
  • TFTrading - manages orders, executions, portfolios, positions, accounts,
  • OUCharting - wrapper around ChartDirector for plots and charts
  • OUSqlite - database for maintaining trading records

During its infancy, the code used MFC (Microsoft Foundation Classes), some Berkeley DB code, and various other modules, which I now no longer support. The code remains in the repository for historical value, and for the time it might be re-written for current use.

These are some of the currently supported applications:

  • IQFeedMarketSymbols - automatically download and decompress the latest mkt_symbol.txt file from dtn,iq
  • IQFeedGetHistory - load up with historical data for looking for trading ideas
  • Hdf5Chart - view the contents of the hdf5 data set
  • LiveChart - view an instrument in real time
  • ComboTrading - basics of trading multiple securities, such as various options strategies
  • StickShift2 - some rough code for some option trading ideas
  • HedgedBollinger - some experiments in futures, mostly tracking at the money implied volatility

The announcement on my blog: http://blog.raymond.burkholder.net/index.php?/archives/679-trade-frame-c++-securities-trading-software-development-framework.html

Some other, possibly, related entries: http://blog.raymond.burkholder.net/index.php?/categories/23-Trading

Testing

  • IQFeed testing: you can utilize the symbol TST$Y, this symbol sends a loop of data 24/7. (2019/03/12)
  • Interactive Brokers: use edemo/demouser as a signin - random data on many symbols 24/7.

About

c++ based application for testing options based automated trading ideas using DTN IQ real time data feed and Interactive Brokers (TWS API) for trade execution.

License:Other


Languages

Language:C++ 57.0%Language:C 41.0%Language:HTML 1.0%Language:CMake 0.5%Language:C# 0.4%Language:Objective-C 0.0%Language:Makefile 0.0%Language:Shell 0.0%