Sha256: 3ad6a0e21ced5c6da54bb66f84521993779ac07226d640d80e4b25ed040978ff

Contents?: true

Size: 1007 Bytes

Versions: 1

Compression:

Stored size: 1007 Bytes

Contents

#!/usr/bin/env ruby
#
# This script connects to IB API, subscribes to account info and prints out
# messages received from IB (update every 3 minute or so)

require 'pathname'
LIB_DIR = (Pathname.new(__FILE__).dirname + '../lib/').realpath.to_s
$LOAD_PATH.unshift LIB_DIR unless $LOAD_PATH.include?(LIB_DIR)

require 'rubygems'
require 'bundler/setup'
require 'ib-ruby'

# First, connect to IB TWS.
ib = IB::Connection.new

# Subscribe to TWS alerts/errors and order-related messages
ib.subscribe(:Alert, :OpenOrder, :OrderStatus) { |msg| puts msg.to_human }

wfc = IB::Symbols::Stocks[:wfc]
buy_order = IB::Models::Order.new :total_quantity => 100,
                                  :limit_price => 1 + rand().round(2),
                                  :action => 'BUY',
                                  :order_type => 'LMT'

sleep 0.5 # waiting for :NextValidId

ib.place_order buy_order, wfc

ib.send_message :RequestAllOpenOrders

puts "\n******** Press <Enter> to cancel... *********\n\n"
STDIN.gets

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ib-ruby-0.6.1 bin/place_order