Class: Quickfix::Price2

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Price2

Returns a new instance of Price2.



3763
3764
3765
3766
3767
3768
3769
# File 'lib/quickfix_fields.rb', line 3763

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

Class Method Details

.fieldObject



3760
3761
3762
# File 'lib/quickfix_fields.rb', line 3760

def Price2.field
	return 640
end