forked from ISM6225/Assignment_5_ActiveCloudSite_Example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEquityModelUpdate
More file actions
33 lines (31 loc) · 1.14 KB
/
EquityModelUpdate
File metadata and controls
33 lines (31 loc) · 1.14 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
namespace IEXTrading.Models
{
public class ChartRoot
{
public Equity[] chart { get; set; }
}
public class Equity
{
public int EquityId { get; set; }
public string date { get; set; }
public float open { get; set; }
public float high { get; set; }
public float low { get; set; }
public float close { get; set; }
public int volume { get; set; }
public int unadjustedVolume { get; set; }
public float change { get; set; }
public float changePercent { get; set; }
public float vwap { get; set; }
public string label { get; set; }
public float changeOverTime { get; set; }
public string symbol { get; set; }
public string latestVolume { get; set; }
public string peRatio { get; set; }
public float week52High { get; set; }
public float week52Low { get; set; }
}
}
/**********************************************
I transferred the bottom four variables from the Company Model. The Company Model is returned to the templates original variables.
***********************************************/