Class: Quickfix::BuyVolume

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

Returns a new instance of BuyVolume.



4179
4180
4181
4182
4183
4184
4185
# File 'lib/quickfix_fields.rb', line 4179

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

Class Method Details

.fieldObject



4176
4177
4178
# File 'lib/quickfix_fields.rb', line 4176

def BuyVolume.field
  return 330
end