def parseResponse(self, body_buf): pos = 0 (num, ) = struct.unpack("<H", body_buf[:2]) pos += 2 ticks = [] last_price = 0 for i in range(num): ### ?? get_time # \x80\x03 = 14:56 hour, minute, pos = get_time(body_buf, pos) price_raw, pos = get_price(body_buf, pos) vol, pos = get_price(body_buf, pos) num, pos = get_price(body_buf, pos) buyorsell, pos = get_price(body_buf, pos) _, pos = get_price(body_buf, pos) last_price = last_price + price_raw tick = OrderedDict([ ("time", "%02d:%02d" % (hour, minute)), ("price", float(last_price) / 100), ("vol", vol), ("num", num), ("buyorsell", buyorsell), ]) ticks.append(tick) return ticks
def parseResponse(self, body_buf): pos = 0 (num, ) = struct.unpack("<H", body_buf[:2]) pos += 2 ticks = [] # skip 4 bytes pos += 4 last_price = 0 for i in range(num): ### ?? get_time # \x80\x03 = 14:56 hour, minute, pos = get_time(body_buf, pos) price_raw, pos = get_price(body_buf, pos) vol, pos = get_price(body_buf, pos) buyorsell, pos = get_price(body_buf, pos) _, pos = get_price(body_buf, pos) last_price = last_price + price_raw tick = OrderedDict( [ ("time", "%02d:%02d" % (hour, minute)), ("price", float(last_price)/100), ("vol", vol), ("buyorsell", buyorsell), ] ) ticks.append(tick) return ticks