Class: Quickfix::DerivativeStrikeValue

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ DerivativeStrikeValue

Returns a new instance of DerivativeStrikeValue.



16789
16790
16791
16792
16793
16794
16795
# File 'lib/quickfix_fields.rb', line 16789

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

Class Method Details

.fieldObject



16786
16787
16788
# File 'lib/quickfix_fields.rb', line 16786

def DerivativeStrikeValue.field
  return 1264
end