1 Star 0 Fork 1

jufeng9318/StockSharp

forked from yu3a/StockSharp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
OrderGroupCancelMessage.cs 2.16 KB
一键复制 编辑 原始数据 按行查看 历史
StockSharp Dev1 提交于 2019-10-13 00:34 +08:00 . Messages. CopyTo methods added.
#region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/StockSharp/StockSharp/blob/master/LICENSE
Removal of this comment is a violation of the license agreement.
Project: StockSharp.Messages.Messages
File: OrderGroupCancelMessage.cs
Created: 2015, 11, 11, 2:32 PM
Copyright 2010 by StockSharp, LLC
*******************************************************************************************/
#endregion S# License
namespace StockSharp.Messages
{
using System;
using System.Runtime.Serialization;
using StockSharp.Localization;
/// <summary>
/// The message containing the order group cancel filter.
/// </summary>
[DataContract]
[Serializable]
public class OrderGroupCancelMessage : OrderMessage
{
/// <summary>
/// <see langword="true" />, if cancel only a stop orders, <see langword="false" /> - if regular orders, <see langword="null" /> - both.
/// </summary>
[DataMember]
[DisplayNameLoc(LocalizedStrings.Str226Key)]
[DescriptionLoc(LocalizedStrings.Str227Key)]
[MainCategory]
public bool? IsStop { get; set; }
/// <summary>
/// Order side. If the value is <see langword="null" />, the direction does not use.
/// </summary>
[DataMember]
[DisplayNameLoc(LocalizedStrings.Str128Key)]
[DescriptionLoc(LocalizedStrings.Str228Key)]
[MainCategory]
public Sides? Side { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="OrderGroupCancelMessage"/>.
/// </summary>
public OrderGroupCancelMessage()
: base(MessageTypes.OrderGroupCancel)
{
}
/// <inheritdoc />
public override string ToString()
{
return base.ToString() + $",IsStop={IsStop},Side={Side}";
}
/// <summary>
/// Create a copy of <see cref="OrderGroupCancelMessage"/>.
/// </summary>
/// <returns>Copy.</returns>
public override Message Clone()
{
var clone = new OrderGroupCancelMessage
{
IsStop = IsStop,
Side = Side,
};
CopyTo(clone);
return clone;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/jufeng9318/StockSharp.git
git@gitee.com:jufeng9318/StockSharp.git
jufeng9318
StockSharp
StockSharp
master

搜索帮助