コード例 #1
0
ファイル: OrderList.cs プロジェクト: maThmatics/easybot
 public static Order ReadFromJObject(JObject o)
 {
     if (o == null)
     {
         return(null);
     }
     return(new Order()
     {
         Pair = BtcePairHelper.FromString(o.Value <string>("pair")),
         Type = TradeTypeHelper.FromString(o.Value <string>("type")),
         Amount = o.Value <decimal>("amount"),
         Rate = o.Value <decimal>("rate"),
         TimestampCreated = o.Value <UInt32>("timestamp_created"),
         Status = o.Value <int>("status")
     });
 }
コード例 #2
0
 public static Trade ReadFromJObject(JObject o)
 {
     if (o == null)
     {
         return(null);
     }
     return(new Trade
     {
         Pair = BtcePairHelper.FromString(o.Value <string>("pair")),
         Type = TradeTypeHelper.FromString(o.Value <string>("type")),
         Amount = o.Value <decimal>("amount"),
         Rate = o.Value <decimal>("rate"),
         Timestamp = o.Value <uint>("timestamp"),
         IsYourOrder = o.Value <int>("is_your_order") == 1,
         OrderId = o.Value <int>("order_id")
     });
 }