Class: Quickfix::LegPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegPrice

Returns a new instance of LegPrice.



7715
7716
7717
7718
7719
7720
7721
# File 'lib/quickfix_fields.rb', line 7715

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