//SetStopPx sets StopPx, Tag 99
func (m NewOrderSingle) SetStopPx(value decimal.Decimal, scale int32) {
	m.Set(field.NewStopPx(value, scale))
}
//SetStopPx sets StopPx, Tag 99
func (m OrderCancelReplaceRequest) SetStopPx(v float64) {
	m.Set(field.NewStopPx(v))
}
//SetStopPx sets StopPx, Tag 99
func (m NewOrderSingle) SetStopPx(v float64) {
	m.Set(field.NewStopPx(v))
}
示例#4
0
func queryStopPx() field.StopPxField {
	return field.NewStopPx(queryDecimal("Stop Price"), 2)
}
//SetStopPx sets StopPx, Tag 99
func (m ExecutionReport) SetStopPx(value decimal.Decimal, scale int32) {
	m.Set(field.NewStopPx(value, scale))
}
//SetStopPx sets StopPx, Tag 99
func (m OrderCancelReplaceRequest) SetStopPx(value decimal.Decimal, scale int32) {
	m.Set(field.NewStopPx(value, scale))
}
//SetStopPx sets StopPx, Tag 99
func (m NewOrderList) SetStopPx(v float64) {
	m.Set(field.NewStopPx(v))
}
//SetStopPx sets StopPx, Tag 99
func (m ExecutionReport) SetStopPx(v float64) {
	m.Set(field.NewStopPx(v))
}
//SetStopPx sets StopPx, Tag 99
func (m NoOrders) SetStopPx(v float64) {
	m.Set(field.NewStopPx(v))
}
示例#10
0
func queryStopPx() field.StopPxField {
	return field.NewStopPx(queryFloat("Stop Price"))
}