Class | IB::Datatypes::ExecutionFilter |
In: |
datatypes.rb
|
Parent: | Object |
EClientSocket.java tells us: ‘Note that the valid format for m_time is "yyyymmdd-hh:mm:ss"’
acct_code | [RW] | |
client_id | [RW] | |
exchange | [RW] | |
sec_type | [RW] | |
side | [RW] | |
symbol | [RW] | |
time | [RW] |
# File datatypes.rb, line 213 213: def initialize(options_in) 214: options = StringentHash.new(options_in) 215: 216: @client_id = options[:client_id] 217: @acct_code = options[:acct_code] 218: @time = options[:time] 219: @symbol = options[:symbol] 220: @sec_type = options[:sec_type] 221: @exchange = options[:exchange] 222: @side = options[:side] 223: end