Class: Quickfix::LastShares

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) ⇒ LastShares

Returns a new instance of LastShares.



1267
1268
1269
1270
1271
1272
1273
# File 'lib/quickfix_fields.rb', line 1267

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

Class Method Details

.fieldObject



1264
1265
1266
# File 'lib/quickfix_fields.rb', line 1264

def LastShares.field
  return 32
end