Sha256: 1ed4d522385a8e68c3424a3b0f6ad9ac35a0ea50ef547c29ac7659f273eb20f5
Contents?: true
Size: 1.75 KB
Versions: 7
Compression:
Stored size: 1.75 KB
Contents
#!/usr/bin/env ruby # # This script connects to IB API and subscribes to market data for specific symbols 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' # Definition of what we want market 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 = {13 => IB::Symbols::Options[:wfc20], 15 => IB::Symbols::Options[:z50], 17 => IB::Symbols::Options[:spy75], 19 => IB::Symbols::Options[:spy100]} # First, connect to IB TWS. ib = IB::Connection.new ## Subscribe to TWS alerts/errors ib.subscribe(:Alert) { |msg| puts msg.to_human } # Subscribe to Ticker... events. The code passed in the block will be executed when # any message of that type is received, with the received message as its argument. # In this case, we just print out the tick. # # (N.B. The description field is not from IB TWS. It is defined # locally in forex.rb, and is just arbitrary text.) ib.subscribe(:TickPrice, :TickSize, :TickOption, :TickString) do |msg| puts @market[msg.data[:id]].description + ": " + msg.to_human end # Now we actually request market data for the symbols we're interested in. @market.each_pair do |id, contract| ib.send_message :RequestMarketData, :id => id, :contract => contract end puts "\nSubscribed to market data" puts "\n******** Press <Enter> to cancel... *********\n\n" gets puts "Cancelling market data subscription.." @market.each_pair { |id, contract| ib.send_message :CancelMarketData, :id => id }
Version data entries
7 entries across 7 versions & 1 rubygems