forked from jmoral4/TradeStationWebApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Symbol.cs
28 lines (27 loc) · 899 Bytes
/
Symbol.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TradeStationWebApiDemo
{
class Symbol
{
public string Category { get; set; }
public string Country { get; set; }
public string Currency { get; set; }
public string Description { get; set; }
public object Error { get; set; }
public string Exchange { get; set; }
public int ExchangeID { get; set; }
public DateTime ExpirationDate { get; set; }
public string FutureType { get; set; }
public int LotSize { get; set; }
public int MinMove { get; set; }
public string Name { get; set; }
public string OptionType { get; set; }
public int PointValue { get; set; }
public string Root { get; set; }
public int StrikePrice { get; set; }
}
}