commit
67f626e152
@ -1,5 +1,7 @@
|
||||
# encoding: UTF-8
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
from csv import DictReader
|
||||
from datetime import datetime
|
||||
from collections import OrderedDict, defaultdict
|
||||
@ -306,7 +308,7 @@ class BacktestingEngine(object):
|
||||
#----------------------------------------------------------------------
|
||||
def output(self, content):
|
||||
"""输出信息"""
|
||||
print content
|
||||
print(content)
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
def getTradeData(self, vtSymbol=''):
|
||||
|
@ -263,11 +263,11 @@ class WebsocketClient(object):
|
||||
"""
|
||||
用于Debug: 记录最后一次发送出去的text
|
||||
"""
|
||||
self._lastSentText = text[:500]
|
||||
self._lastSentText = text[:1000]
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
def _recordLastReceivedText(self, text):
|
||||
"""
|
||||
用于Debug: 记录最后一次发送出去的text
|
||||
"""
|
||||
self._lastReceivedText = text[:500]
|
||||
self._lastReceivedText = text[:1000]
|
Loading…
Reference in New Issue
Block a user