forked from StockSharp/StockSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PortfolioMessage.cs
164 lines (145 loc) · 4.33 KB
/
PortfolioMessage.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#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: PortfolioMessage.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>
/// Portfolio states.
/// </summary>
[DataContract]
[Serializable]
public enum PortfolioStates
{
/// <summary>
/// Active.
/// </summary>
[EnumMember]
[EnumDisplayNameLoc(LocalizedStrings.Str248Key)]
Active,
/// <summary>
/// Blocked.
/// </summary>
[EnumMember]
[EnumDisplayNameLoc(LocalizedStrings.Str249Key)]
Blocked,
}
/// <summary>
/// The message contains information about portfolio.
/// </summary>
[DataContract]
[Serializable]
public class PortfolioMessage : Message
{
/// <summary>
/// Portfolio code name.
/// </summary>
[DataMember]
[DisplayNameLoc(LocalizedStrings.NameKey)]
[DescriptionLoc(LocalizedStrings.Str247Key)]
[MainCategory]
public string PortfolioName { get; set; }
/// <summary>
/// Portfolio currency.
/// </summary>
[DataMember]
[DisplayNameLoc(LocalizedStrings.CurrencyKey)]
[DescriptionLoc(LocalizedStrings.Str251Key)]
[MainCategory]
public CurrencyTypes? Currency { get; set; }
/// <summary>
/// Electronic board code.
/// </summary>
[DataMember]
[DisplayNameLoc(LocalizedStrings.BoardKey)]
[DescriptionLoc(LocalizedStrings.BoardCodeKey, true)]
[MainCategory]
public string BoardCode { get; set; }
/// <summary>
/// Portfolio state.
/// </summary>
[DataMember]
[DisplayNameLoc(LocalizedStrings.StateKey)]
[DescriptionLoc(LocalizedStrings.Str252Key)]
[MainCategory]
public PortfolioStates? State { get; set; }
/// <summary>
/// ID of the original message <see cref="PortfolioMessage.TransactionId"/> for which this message is a response.
/// </summary>
[DataMember]
public long OriginalTransactionId { get; set; }
/// <summary>
/// Subscription/unsubscription portfolio changes transaction id.
/// </summary>
[DataMember]
[DisplayNameLoc(LocalizedStrings.TransactionKey)]
[DescriptionLoc(LocalizedStrings.TransactionIdKey, true)]
[MainCategory]
public long TransactionId { get; set; }
/// <summary>
/// Is the message subscription portfolio changes.
/// </summary>
[DataMember]
public bool IsSubscribe { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="PortfolioMessage"/>.
/// </summary>
public PortfolioMessage()
: base(MessageTypes.Portfolio)
{
}
/// <summary>
/// Initialize <see cref="PortfolioMessage"/>.
/// </summary>
/// <param name="type">Message type.</param>
protected PortfolioMessage(MessageTypes type)
: base(type)
{
}
/// <summary>
/// Returns a string that represents the current object.
/// </summary>
/// <returns>A string that represents the current object.</returns>
public override string ToString()
{
return base.ToString() + $",Name={PortfolioName}";
}
/// <summary>
/// Create a copy of <see cref="PortfolioMessage"/>.
/// </summary>
/// <returns>Copy.</returns>
public override Message Clone()
{
return CopyTo(new PortfolioMessage());
}
/// <summary>
/// Copy the message into the <paramref name="destination" />.
/// </summary>
/// <param name="destination">The object, to which copied information.</param>
/// <returns>The object, to which copied information.</returns>
protected PortfolioMessage CopyTo(PortfolioMessage destination)
{
destination.PortfolioName = PortfolioName;
destination.Currency = Currency;
destination.BoardCode = BoardCode;
destination.OriginalTransactionId = OriginalTransactionId;
destination.IsSubscribe = IsSubscribe;
destination.State = State;
destination.TransactionId = TransactionId;
this.CopyExtensionInfo(destination);
return destination;
}
}
}