forked from jmoral4/TradeStationWebApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OrderDetail.cs
43 lines (42 loc) · 1.61 KB
/
OrderDetail.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TradeStationWebApiDemo
{
public class OrderDetail
{
public string AccountID { get; set; }
public string AdvancedOptions { get; set; }
public string Alias { get; set; }
public string AssetType { get; set; }
public decimal CommissionFee { get; set; }
public string ContractExpireDate { get; set; }
public decimal ConversionRate { get; set; }
public string Country { get; set; }
public string Denomination { get; set; }
public string DisplayName { get; set; }
public string Duration { get; set; }
public int ExecuteQuantity { get; set; }
public string FilledCanceled { get; set; }
public string FilledPriceText { get; set; }
public string GroupName { get; set; }
public Leg[] Legs { get; set; }
public string LimitPriceText { get; set; }
public int OrderID { get; set; }
public int Originator { get; set; }
public int Quantity { get; set; }
public int QuantityLeft { get; set; }
public string RejectReason { get; set; }
public string Routing { get; set; }
public string Spread { get; set; }
public string Status { get; set; }
public string StatusDescription { get; set; }
public string StopPriceText { get; set; }
public string Symbol { get; set; }
public string TimeStamp { get; set; }
public string TriggeredBy { get; set; }
public string Type { get; set; }
}
}