Class: Quickfix::SecondaryHighLimitPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecondaryHighLimitPrice

Returns a new instance of SecondaryHighLimitPrice.



16282
16283
16284
16285
16286
16287
16288
# File 'lib/quickfix_fields.rb', line 16282

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