Class: Quickfix::StrikePricePrecision

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



62507
62508
62509
# File 'lib/quickfix_fields.rb', line 62507

def StrikePricePrecision.field
  return 2577
end