Ah i see, the imported files i have are from Gekko itself which on my VPS are running in the background, this maybe why its calling back as busy. is there a way form me to change the import file location for the backtest tool so i do not need to stop my bots to run the back test?
Would this work?
Current:
config.adapter = 'sqlite';
config.sqlite = {
path: 'plugins/sqlite',
dataDirectory: 'history',
version: 0.1,
dependencies: []
Suggested:
config.adapter = 'sqlite';
config.sqlite = {
path: 'plugins/sqlite',
dataDirectory: 'Newfile',
version: 0.1,
dependencies: []
Lines from backtest.pl lines 396 to 401
Would this work?
Current:
config.adapter = 'sqlite';
config.sqlite = {
path: 'plugins/sqlite',
dataDirectory: 'history',
version: 0.1,
dependencies: []
Suggested:
config.adapter = 'sqlite';
config.sqlite = {
path: 'plugins/sqlite',
dataDirectory: 'Newfile',
version: 0.1,
dependencies: []
Lines from backtest.pl lines 396 to 401