-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathQuote.cs
More file actions
36 lines (33 loc) · 933 Bytes
/
Quote.cs
File metadata and controls
36 lines (33 loc) · 933 Bytes
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
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MTsocketAPI.MT4
{
public class Quote
{
public string SYMBOL { get; set; }
public double ASK { get; set; }
public double BID { get; set; }
public int FLAGS { get; set; }
public string TIME { get; set; }
public int VOLUME { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this);
}
}
public class OHLC_Msg
{
//public string MSG { get; set; }
public string SYMBOL { get; set; }
public string PERIOD { get; set; }
public List<Rates> OHLC { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this);
}
}
}