Class: Quickfix::PriceDelta

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriceDelta

Returns a new instance of PriceDelta.



1332
1333
1334
1335
1336
1337
1338
# File 'lib/quickfix_fields.rb', line 1332

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

Class Method Details

.fieldObject



1329
1330
1331
# File 'lib/quickfix_fields.rb', line 1329

def PriceDelta.field
  return 811
end