Class: Quickfix::Price

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Price

Returns a new instance of Price.



16126
16127
16128
16129
16130
16131
16132
# File 'lib/quickfix_fields.rb', line 16126

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

Class Method Details

.fieldObject



16123
16124
16125
# File 'lib/quickfix_fields.rb', line 16123

def Price.field
	return 44
end