forked from PickReaper/quantower
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsset.cs
More file actions
234 lines (212 loc) · 4.53 KB
/
Asset.cs
File metadata and controls
234 lines (212 loc) · 4.53 KB
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
using System;
using System.Runtime.CompilerServices;
using _003CPrivateImplementationDetails_003E_007B32439FAB_002DE055_002D4B6F_002D932A_002DAD6005671EA2_007D;
using TradingPlatform.BusinessLayer.Integration;
using TradingPlatform.BusinessLayer.Utils;
namespace TradingPlatform.BusinessLayer;
/// <summary>
/// Defines asset entity
/// </summary>
[Published]
public class Asset : BusinessObject, IComparable, IMessageBuilder<MessageAsset>
{
[CompilerGenerated]
private string 놄뇆;
[CompilerGenerated]
private string 놄뇉;
[CompilerGenerated]
private string 놄뇍;
private double 놄놙;
[CompilerGenerated]
private int 놄녰;
[CompilerGenerated]
private string 놄놚;
/// <summary>
/// Asset id bearer
/// </summary>
public string Id
{
[CompilerGenerated]
get
{
return 놄뇆;
}
[CompilerGenerated]
private set
{
놄뇆 = value;
}
}
/// <summary>
/// Asset name bearer
/// </summary>
public string Name
{
[CompilerGenerated]
get
{
return 놄뇉;
}
[CompilerGenerated]
private set
{
놄뇉 = value;
}
}
/// <summary>
/// Asset description
/// </summary>
public string Description
{
[CompilerGenerated]
get
{
return 놄뇍;
}
[CompilerGenerated]
private set
{
놄뇍 = value;
}
}
/// <summary>
/// Defines a number precision of the change value
/// </summary>
public double MinimumChange
{
get
{
return 놄놙;
}
set
{
if (놄놙 != value)
{
놄놙 = value;
Precision = CoreMath.GetValuePrecision((decimal)놄놙);
}
}
}
/// <summary>
/// Gets precision value
/// </summary>
public int Precision
{
[CompilerGenerated]
get
{
return 놄녰;
}
[CompilerGenerated]
private set
{
놄녰 = value;
}
}
/// <summary>
/// Gets asset ISO 4217 code
/// </summary>
public string IsoCode
{
[CompilerGenerated]
get
{
return 놄놚;
}
[CompilerGenerated]
private set
{
놄놚 = value;
}
}
/// <summary>
/// Creates an Asset instance
/// </summary>
/// <param name="connectionId">given connection Id</param>
[NotPublished]
public Asset(string connectionId)
: base(connectionId)
{
}
/// <summary>
/// Formats price into precision normalized string
/// </summary>
/// <param name="price"></param>
/// <returns></returns>
public string FormatPrice(double price)
{
if (!double.IsNaN(price))
{
return price.Format(Precision);
}
return _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.뇅();
}
/// <summary>
/// Formats price into concatenated string which contains the precision normalized value and Asset's name
/// </summary>
/// <param name="price"></param>
/// <returns></returns>
public string FormatPriceWithCurrency(double price)
{
if (!double.IsNaN(price))
{
return price.Format(Precision) + _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놂놀() + Name;
}
return _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.뇅();
}
public string FormatWithCurrency(double value)
{
DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(1, 2);
defaultInterpolatedStringHandler.AppendFormatted(value);
defaultInterpolatedStringHandler.AppendLiteral(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놂놀());
defaultInterpolatedStringHandler.AppendFormatted(Name);
return defaultInterpolatedStringHandler.ToStringAndClear();
}
internal void 녴(MessageAsset P_0)
{
Id = P_0.Id;
Name = P_0.Name;
Description = P_0.Description;
MinimumChange = P_0.MinimumChange;
IsoCode = P_0.IsoCode;
}
private MessageAsset 녴()
{
return new MessageAsset
{
Id = Id,
Name = Name,
Description = Description,
MinimumChange = MinimumChange,
IsoCode = IsoCode
};
}
MessageAsset IMessageBuilder<MessageAsset>.BuildMessage()
{
//ILSpy generated this explicit interface implementation from .override directive in 녴
return this.녴();
}
/// <summary>
/// Gets Asset name
/// </summary>
/// <returns></returns>
[NotPublished]
public override string ToString()
{
return Name;
}
/// <summary>
/// Uses comparison by Assets names
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
[NotPublished]
public int CompareTo(object obj)
{
if (!(obj is Asset asset))
{
return 1;
}
return Name.CompareTo(asset.Name);
}
}