ReportOrder
StockSharp.Reporting
レポートの注文データ。
実装: IEquatable<ReportOrder>
コンストラクター
ReportOrder
public ReportOrder(long? Id, long TransactionId, SecurityId SecurityId, Sides Side, DateTime Time, decimal Price, OrderStates? State, decimal? Balance, decimal? Volume, OrderTypes? Type)
reportOrder = ReportOrder(Id, TransactionId, SecurityId, Side, Time, Price, State, Balance, Volume, Type)
レポートの注文データ。
- Id
- 注文ID。
- TransactionId
- トランザクションID。
- SecurityId
- 金融商品ID。
- Side
- サイド(buy/sell)。
- Time
- 注文時間。
- Price
- 注文価格。
- State
- 注文状態。
- Balance
- バランス。
- Volume
- ボリューム。
- Type
- 注文タイプ。
プロパティ
Balance
public decimal? Balance { get; set; }
value = reportOrder.Balance
reportOrder.Balance = value
バランス。
SecurityId
public SecurityId SecurityId { get; set; }
value = reportOrder.SecurityId
reportOrder.SecurityId = value
金融商品ID。
Side
public Sides Side { get; set; }
value = reportOrder.Side
reportOrder.Side = value
サイド(buy/sell)。
State
public OrderStates? State { get; set; }
value = reportOrder.State
reportOrder.State = value
注文状態。
TransactionId
public long TransactionId { get; set; }
value = reportOrder.TransactionId
reportOrder.TransactionId = value
トランザクションID。
Volume
public decimal? Volume { get; set; }
value = reportOrder.Volume
reportOrder.Volume = value
ボリューム。