public RequestTrades(PairsBase pair)
 {
     this.RestResource = "/0/{scope}/{op}";
     this.RestResourceSegments = new Dictionary<string, string>() { { "scope", "public" }, { "op", "Trades" } };
     this.RestParameters = new Dictionary<string, string>();
     this.Pair = pair;
     this.SinceTimeUTC_Epoch_e9 = 0;
 }
 public RequestTrades(PairsBase pair, string since)
     : this(pair)
 {
     if (since != "")
         this.SinceTimeUTC_Epoch_e9 = Convert.ToInt64(since);
 }
 public RequestTrades(PairsBase pair, Int64 since)
     : this(pair)
 {
     this.SinceTimeUTC_Epoch_e9 = since;
 }