Class: Quickfix::UnderlyingStrikePriceBoundaryPrecision

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStrikePriceBoundaryPrecision



26513
26514
26515
26516
26517
26518
26519
# File 'lib/quickfix_fields.rb', line 26513

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