Sha256: 54dcddc58f9cba6038ce80c8cc400b1fa3d7ab5e4dbf7cb201b99b47d606a5c4

Contents?: true

Size: 1.38 KB

Versions: 1

Compression:

Stored size: 1.38 KB

Contents

#!/usr/bin/env ruby
#
# This script connects to IB API and subscribes to L2 (depth of market) data for
# specific symbols

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

# Definition of what we want L2 data for.  We have to keep track of what ticker id
# corresponds to what symbol ourselves, because the ticks don't include any other
# identifying information. The choice of ticker ids is, as far as I can tell, arbitrary.
@market = {123 => IB::Symbols::Stocks[:wfc],
           456 => IB::Symbols::Futures[:es],
           789 => IB::Symbols::Forex[:gbpusd]
}

# First, connect to IB TWS.
ib = IB::Connection.new :client_id => 1112 #, :port => 7496 # TWS

# Subscribe to TWS alerts/errors
ib.subscribe(:Alert) { |msg| puts msg.to_human }

# Subscribe to MarketDepth events.
ib.subscribe(:MarketDepth) do |msg|
  puts @market[msg.request_id].description + ": " + msg.to_human
end

# Now we actually request L2 market data for the symbols we're interested in.
@market.each_pair do |id, contract|
  ib.send_message :RequestMarketDepth,
                  :id => id,
                  :contract => contract,
                  :num_rows => 5
end

puts "\nSubscribed to market data"
puts "\n******** Press <Enter> to cancel... *********\n\n"
STDIN.gets
puts "Cancelling market data subscription.."

@market.each_pair { |id, contract| ib.send_message :CancelMarketDepth, :id => id }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ib-ruby-0.7.4 bin/depth_of_market