Class: Quickfix::DiscretionPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DiscretionPrice

Returns a new instance of DiscretionPrice.



3100
3101
3102
3103
3104
3105
3106
# File 'lib/quickfix_fields.rb', line 3100

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

Class Method Details

.fieldObject



3097
3098
3099
# File 'lib/quickfix_fields.rb', line 3097

def DiscretionPrice.field
  return 845
end