Class: Quickfix::BidYield

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidYield

Returns a new instance of BidYield.



8521
8522
8523
8524
8525
8526
8527
# File 'lib/quickfix_fields.rb', line 8521

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