Class: Quickfix::InTheMoneyCondition

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ InTheMoneyCondition

Returns a new instance of InTheMoneyCondition.



75393
75394
75395
75396
75397
75398
75399
# File 'lib/quickfix_fields.rb', line 75393

def initialize(data = nil)
  if( data == nil )
    super(2681)
  else
    super(2681, data)
  end
end