Class: Quickfix::StrikePricePrecision

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikePricePrecision

Returns a new instance of StrikePricePrecision.



62510
62511
62512
62513
62514
62515
62516
# File 'lib/quickfix_fields.rb', line 62510

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