Class: Quickfix::Price2

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

Instance Method Summary collapse

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