Class: Quickfix::StrikePrice
- Inherits:
-
DoubleField
- Object
- DoubleField
- Quickfix::StrikePrice
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ StrikePrice
constructor
A new instance of StrikePrice.
Constructor Details
#initialize(data = nil) ⇒ StrikePrice
Returns a new instance of StrikePrice.
3035 3036 3037 3038 3039 3040 3041 |
# File 'lib/quickfix_fields.rb', line 3035 def initialize(data = nil) if( data == nil ) super(202) else super(202, data) end end |