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"’

Methods

new   new  

Attributes

acct_code  [RW] 
client_id  [RW] 
exchange  [RW] 
sec_type  [RW] 
side  [RW] 
symbol  [RW] 
time  [RW] 

Public Class methods

[Source]

     # File datatypes.rb, line 209
209:       def initialize
210:         @client_id = 0
211:       end

[Source]

     # 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

[Validate]