Class: Quickfix::SecondaryHighLimitPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecondaryHighLimitPrice

Returns a new instance of SecondaryHighLimitPrice.



1982
1983
1984
1985
1986
1987
1988
# File 'lib/quickfix_fields.rb', line 1982

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

Class Method Details

.fieldObject



1979
1980
1981
# File 'lib/quickfix_fields.rb', line 1979

def SecondaryHighLimitPrice.field
  return 1230
end