Ruby Implementation of the Interactive Brokers Trader Workstation (TWS) API v.9.72+.
Copyright (C) 2006-2018 Paul Legato, Wes Devauld, Ar Vicco and Hartmut Bischoff.
https://github.com/ib-ruby/ib-ruby
WARNING: This software is provided AS-IS with NO WARRANTY, express or implied. Your use of this software is at your own risk. It may contain any number of bugs, known or unknown, which might cause you to lose money if you use it. You've been warned.
This code is not sanctioned or supported by Interactive Brokers.
The master-branch covers the most recent versions of Ruby and TWS. Ruby 2.4 and TWS Vers. 969 are needed. It provides active-model objects which behave as thread-safe and lightweight acitve-record's.
The IB::Connection-Application stores any response from the TWS in a received-Array. Its not intended for 24/7-applications but ideal for quick-queries. The IB::Gateway-Application provides a ready-to-go solution for reliable automated claims.
This is a pure Ruby implementation of Interactive Brokers API. It uses socket API directly. So it does not have any dependencies other than TWS/Gateway itself.
Why Ruby? Many people are put off by the amount of boilerplate code/plumbing required by Python, Java, ActiveX or C++ API to do even the simplest of things, like getting account data and placing/monitoring orders. This library intends to keep all the fluff away and let you focus on writing your business logics, rather than useless boilerplate.
No more endless definitions of obligatory methods you'd never need, no spaghetti code to divide your execution flow between multiple callbacks and interfaces.
Instead, a very simple paradigm is offered: your code interacts with the server (TWS or Gateway) via exchange of messages. You subscribe to the server messages that you're interested in, and send messages to server that request specific data from it. You wait for specific messages being received, or other conditions you define. The execution flow is under your control, rather than delegated somewhere.
Using this clear paradigm, you can hack together a simple automation of your daily TWS-related routine in just a couple of minutes. Alternatively, you can create a mechanical trading system with complex order processing logics, that contains 1/10th of code and is 500% more maintaineable than it is possible with other API implementations. The choice is yours.
$ sudo gem install ib-ruby [-v version]
$ git clone https://github.com/ib-ruby/ib-ruby
$ cd ib-ruby
$ bundle install; bundle update
-
A Ruby Interpreter, at least Version 2.4. We recommend Version 2.5 or above.
-
Install Interactive Brokers connectivity software: either TWS or Gateway
-
Configure the software to allow API connections from the computer you plan to run ib-ruby on, which is typically localhost (127.0.0.1) if you're running ib-ruby on the same machine as TWS/Gateway. Here you can see how this is done for TWS.
-
Make sure sure your ib-ruby gem version is compatible with your software version. As a rule of thumb, most recent ib-ruby gem only supports latest versions of TWS/Gateway API. Older versions of API are supported by previous gem versions:
ib-ruby gem TWS version API version 0.9.2 931- 967 final 0.9.5+ 968 971 master-branch 969 972+ -
Start Interactive Broker's Trader Work Station or Gateway before your code attempts to connect to it. Note that TWS and Gateway listen to different ports, this library assumes connection to Gateway on the same machine (localhost:4002) by default, this can be changed via :host and :port options given to IB::Connection.new.
To play around, a console-app is included. Change to the bin-directory and call
./console.rb ("t" if a tws(GUI) is running on localhost)
After startup, ib-ruby is running, the Connection ist active and accessible via the global Constant »C». Any message to the TWS, any subscription to incomming messages can initialized. (Details in Wiki(Console))
The results can be inspected with the power of the IRB-shell
By default, any response from the TWS is stored in the Received-Hash. It can easily inspected in the Console
C.received.keys
=> [:OpenOrder, :OrderStatus, :OpenOrderEnd, :ManagedAccounts, :NextValidId, :Alert]
C.received[:OpenOrder].size
=> 3
C.received[:OpenOrder].contract.to_human
=> ["<Stock: GE USD>", "<Bag: IECombo SMART USD legs: 9408|-1,43645865|1 >", "<Stock: WFC USD>"]
C.received[:OpenOrder].status
=> ["Submitted", "PreSubmitted", "PreSubmitted"]
This is an example of your script that requests and prints out account data, then places limit order to buy 100 lots of WFC and waits for execution. All in about 10 lines of code - and without sacrificing code readability or flexibility.
require 'ib'
ib = IB::Connection.new( port: 7497 ) do | gw |
gw.subscribe(:Alert, :AccountValue) { |msg| puts msg.to_human }
gw.subscribe(:OpenOrder) { |msg| puts "Placed: #{msg.order}!" }
gw.subscribe(:ExecutionData) { |msg| puts "Filled: #{msg.execution}!" }
end
ib.send_message :RequestAccountData, account_code: 'U123456'
ib.wait_for :AccountDownloadEnd
contract = IB::Stock.new symbol: 'WFC'
buy_order = IB::Limit.order total_quantity: 100, limit_price: 21.00,
action: :buy, tif: :good_till_cancelled, account_code: 'U123456'
ib.place_order buy_order, contract
ib.wait_for :ExecutionData
Your code interacts with TWS via exchange of messages. Messages that you send to TWS are called 'Outgoing', messages your code receives from TWS - 'Incoming'.
First, you need to subscribe to incoming message types you're interested in
using Connection#subscribe
. This can be done anywhere. Permanent subscriptions
can be entered before the connection itself is established. This is realized
through the block when instantiating the Object. The code block (or proc) given to #subscribe
will be executed when an incoming message of the this type is received from the TWS,
with the received message as its argument.
Then, you request specific data from TWS using Connection#send_message
or place
your order using Connection#place_order
. TWS will respond with messages that you
should have subscribed for, and these messages will be processed in a code block
given to #subscribe
.
In order to give TWS time to respond, you either run a message processing loop or just wait until Connection receives the messages type you requested.
See lib/ib/messages
for a full list of supported incoming/outgoing messages
and their attributes. The original TWS docs and code samples can also be found
in misc
directory.
Sample scripts in example
directory demonstrate common ib-ruby use cases. Examples
show you how to access account info, print real time quotes, retrieve historic or
fundamental data, request options calculations, place, list, and cancel orders.
You may also want to look into spec/integration
directory for more scenarios,
use cases and examples of handling IB messages.
The gem comes with a spec suit that may be used to test ib-ruby compatibility with your specific TWS/Gateway installation. Please read 'spec/Readme.md' for more details about running specs.
If you want to contribute to ib-ruby development:
- Make a fresh fork of ib-ruby (Fork button on top of Github GUI)
- Clone your fork locally (git clone /your fork private URL/)
- Add main ib-ruby repo as upstream (git remote add upstream git://github.com/ib-ruby/ib-ruby.git)
- Create your feature branch (git checkout -b my-new-feature)
- Modify code as you see fit
- Commit your changes (git commit -am 'Added some feature')
- Pull in latest upstream changes (git fetch upstream -v; git merge upstream/master)
- Push to the branch (git push origin my-new-feature)
- Go to your Github fork and create new Pull Request via Github GUI
... then proceed from step 5 for more code modifications...
This software is available under the LGPL.
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the file LICENSE for full licensing details of GNU Lesser General Public License.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA