Class: Quickfix::ClearingTradePrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ClearingTradePrice

Returns a new instance of ClearingTradePrice.



21911
21912
21913
21914
21915
21916
21917
# File 'lib/quickfix_fields.rb', line 21911

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