Sha256: bf50e3469ac816dd69c1bb85a7668b6c10e35fc25845c8af58cfb980a5160d62
Contents?: true
Size: 761 Bytes
Versions: 1
Compression:
Stored size: 761 Bytes
Contents
module IB module Messages module Incoming # The server sends this message upon accepting a Delta-Neutral DN RFQ # - see API Reference p. 26 DeltaNeutralValidation = def_message 56, [:request_id, :int], [:contract, :under_con_id, :int], [:contract, :under_delta, :decimal], [:contract, :under_price, :decimal] class DeltaNeutralValidation def contract @contract = IB::Contract.build @data[:contract].merge(:under_comp => true) end end # DeltaNeutralValidation end # module Incoming end # module Messages end # module IB
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ib-ruby-0.7.6 | lib/ib-ruby/messages/incoming/delta_neutral_validation.rb |