-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAccountStatus.cs
More file actions
37 lines (36 loc) · 1.24 KB
/
AccountStatus.cs
File metadata and controls
37 lines (36 loc) · 1.24 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
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MTsocketAPI.MT4
{
public class AccountStatus
{
public string COMPANY { get; set; }
public string CURRENCY { get; set; }
public string NAME { get; set; }
public string SERVER { get; set; }
public int LOGIN { get; set; }
public int TRADE_MODE { get; set; }
public int LEVERAGE { get; set; }
public int LIMIT_ORDERS { get; set; }
public int MARGIN_SO_MODE { get; set; }
public int TRADE_ALLOWED { get; set; }
public int TRADE_EXPERT { get; set; }
public double BALANCE { get; set; }
public double CREDIT { get; set; }
public double PROFIT { get; set; }
public double EQUITY { get; set; }
public double MARGIN { get; set; }
public double MARGIN_FREE { get; set; }
public double MARGIN_LEVEL { get; set; }
public double MARGIN_SO_CAL { get; set; }
public double MARGIN_SO_SO { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this);
}
}
}