Class: Quickfix::FairValue

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ FairValue

Returns a new instance of FairValue.



16451
16452
16453
16454
16455
16456
16457
# File 'lib/quickfix_fields.rb', line 16451

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

Class Method Details

.fieldObject



16448
16449
16450
# File 'lib/quickfix_fields.rb', line 16448

def FairValue.field
	return 406
end