4
Follow
26
Followers
연구 환경, 초보자를 위한 안내- OKEX 거래소의 BTC_USDT를 파이썬에서, 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
