コード例 #1
0
 public BitCoinTicker(double upThreshold, double downThreshold)
 {
     SetMemberValue(upThreshold, downThreshold);
     ticker       = new TickerApi();
     errorCounter = new ErrorCounter(10, 4);
 }
コード例 #2
0
 public BitCoinTicker(Hashtable datas)
 {
     SetMemberValue(datas);
     ticker       = new TickerApi();
     errorCounter = new ErrorCounter(10, 4);
 }
コード例 #3
0
        }                                                       //上次询问的价格

        public BitCoinTicker()
        {
            SetMemberValue();
            ticker       = new TickerApi();
            errorCounter = new ErrorCounter(10, 4);
        }