Class: Quickfix::Price2

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ Price2

Returns a new instance of Price2.



8625
8626
8627
8628
8629
8630
8631
# File 'lib/quickfix_fields.rb', line 8625

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

Class Method Details

.fieldObject



8622
8623
8624
# File 'lib/quickfix_fields.rb', line 8622

def Price2.field
  return 640
end