Class: Quickfix::PeggedPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PeggedPrice

Returns a new instance of PeggedPrice.



6337
6338
6339
6340
6341
6342
6343
# File 'lib/quickfix_fields.rb', line 6337

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

Class Method Details

.fieldObject



6334
6335
6336
# File 'lib/quickfix_fields.rb', line 6334

def PeggedPrice.field
	return 839
end