Class: Quickfix::SellVolume

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

Returns a new instance of SellVolume.



4192
4193
4194
4195
4196
4197
4198
# File 'lib/quickfix_fields.rb', line 4192

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

Class Method Details

.fieldObject



4189
4190
4191
# File 'lib/quickfix_fields.rb', line 4189

def SellVolume.field
  return 331
end