Class: Quickfix::NoTrades

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NoTrades

Returns a new instance of NoTrades.



12135
12136
12137
12138
12139
12140
12141
# File 'lib/quickfix_fields.rb', line 12135

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

Class Method Details

.fieldObject



12132
12133
12134
# File 'lib/quickfix_fields.rb', line 12132

def NoTrades.field
  return 897
end