Class: IB::Messages::Outgoing::BarRequestMessage
- Inherits:
-
AbstractMessage
- Object
- AbstractMessage
- IB::Messages::Outgoing::BarRequestMessage
- Defined in:
- lib/ib/messages/outgoing/bar_requests.rb
Overview
Messages that request bar data have special processing of @data
Instance Attribute Summary
Attributes inherited from AbstractMessage
Instance Method Summary collapse
-
#parse(data) ⇒ Object
Preprocessor for some data fields.
Methods inherited from AbstractMessage
data_map, message_id, #message_id, message_type, #message_type, #to_human, version
Instance Method Details
#parse(data) ⇒ Object
Preprocessor for some data fields
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/ib/messages/outgoing/bar_requests.rb', line 9 def parse data type = data[:data_type] || data[:what_to_show] data_type = DATA_TYPES.invert[type] || type unless DATA_TYPES.keys.include?(data_type) error ":data_type must be one of #{DATA_TYPES.inspect}", :args end #size = data[:bar_size] || data[:size] #bar_size = BAR_SIZES.invert[size] || size # unless BAR_SIZES.keys.include?(bar_size) # error ":bar_size must be one of #{BAR_SIZES.inspect}", :args # end contract = data[:contract].is_a?(IB::Contract) ? data[:contract] : IB::Contract.from_ib_ruby(data[:contract]) [data_type, nil, contract] end |