4
Follow
26
Followers
学習環境,初心者向け - OKEXのBTC_USDTをPythonで設定し,bitmexのXBTUSDに配置し,exchange.GetTicker () を実行するとEOFErrorが表示されます.
完全なコードは以下の通りです.
'''backtest
start: 2019-09-12 00:00:00
end: 2019-10-11 00:00:00
period: 1h
exchanges: [{"eid":"Futures_BitMEX","currency":"XBT_USD"}]
'''
コメントは反測設定
from fmz import * # すべてのFMZ関数をインポートする
task = VCtx(doc# 初期化
ticker = exchange.GetTicker()
print(ticker)
print (('最新の取引価格:', ticker['Last'])
ありがとうございました.
Related Recommendations
Advanced Tutorial for FMZ Quant platform Strategy WritingElementary Tutorial for FMZ Quant platform Strategy WritingGet Started with FMZ Quant PlatformSECURITY BUGI keep getting error: Exchange_GetAccount: Invalid ContractTypeWe have an incredibly profitable market making algorithm for sideways markets on Bitmex - but need expert to help eliminate wait times during downward volatility in the marketError with deribitLimitations of the backtesting engineHow to install ta-lib on linux docker?5.5 Trading strategy optimization
Comment
All comments (1)
回测完成的时候是会抛出一个EOF异常作为回测结束。
这个是正常的。
但是您这个报错是因为,没有设置合约,需要在调用exchange.GetTicker()之前使用exchange.SetContractType("XBTUSD")设置一下合约,否则获取不到行情,回测就直接结束了,就抛出EOF异常了。
7 years ago
- 1
