Class: Quickfix::MinPriceIncrementAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MinPriceIncrementAmount

Returns a new instance of MinPriceIncrementAmount.



15307
15308
15309
15310
15311
15312
15313
# File 'lib/quickfix_fields.rb', line 15307

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