Class: Quickfix::SettlPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SettlPrice

Returns a new instance of SettlPrice.



10003
10004
10005
10006
10007
10008
10009
# File 'lib/quickfix_fields.rb', line 10003

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