getting a backtester import error
Closed this issue · 8 comments
Worked around it - FYI
Saw that this is fixed. But mentioning it anyways: you need the auquan toolbox (pip install -U auquan_toolbox) in the same path where you are running your notebook from.
from backtester.dataSource.yahoo_data_source import YahooStockDataSource
from datetime import datetime
startDateStr = '2007/12/01'
endDateStr = '2017/12/01'
cachedFolderName = 'yahooData/'
dataSetId = 'testPairsTrading'
instrumentIds = ['SPY','AAPL','ADBE','SYMC','EBAY','MSFT','QCOM',
'HPQ','JNPR','AMD','IBM']
ds = YahooStockDataSource(cachedFolderName=cachedFolderName,
dataSetId=dataSetId,
instrumentIds=instrumentIds,
startDateStr=startDateStr,
endDateStr=endDateStr,
event='history')
data = ds.getBookDataByFeature()['Adj Close']
ModuleNotFoundError Traceback (most recent call last)
in
----> 1 from backtester.dataSource.yahoo_data_source import YahooStockDataSource
2 from datetime import datetime
3
4 startDateStr = '2007/12/01'
5 endDateStr = '2017/12/01'
ModuleNotFoundError: No module named 'backtester'
ModuleNotFoundError Traceback (most recent call last)
in
----> 1 from backtester.dataSource.yahoo_data_source import YahooStockDataSource
2 from datetime import datetime
3
4 startDateStr = '2007/12/01'
5 endDateStr = '2017/12/01'
ModuleNotFoundError: No module named 'backtester'
you need the auquan toolbox (pip install -U auquan_toolbox) in the same path where you are running your notebook from.
@caseyyangsissi it seems that the toolbox might be installed in a different path compared to where you are running the notebook from. This sometimes happens if you have multiple versions of python installed. The path that the notebook is importing packages from is different from the path where the commandline is installing packages.
Please see a fix here: https://www.lucypark.kr/blog/2013/02/10/when-python-imports-and-ipython-does-not/