I'm hoping someone can help me out getting a backtest scenario going. I've read #59 and looked at docs from the linked forks but I'm still a bit lost.
I'm running Tribeca through the compiled JS files in Tribeca/service with a MongoDB instance running in a docker container.
I've set my ENV flags to
TRIBECA_BACKTEST_MODE=true
and set flags for
MD_FILE = {Path to a Mongoexport --arrayJSON output.json from collected websocket market data}
This is where my confusion starts. What kind of format is PARAM_FILE looking for? I took a look at backtest.ts + models.ts so I tried something like:
in a .json file, however, any arrangement of parameters I've tried thus far cannot produce anything in /result from the backtest service. The backtest service will take in an enumerate my parameters but will hang at "done" (from recieving parameters) and not produce any output files.
Can anyone shed some light on this? Maybe show me another way of implementing backtesting altogether? I'm sure the way I'm going about it is a little backwards...
I'm hoping someone can help me out getting a backtest scenario going. I've read #59 and looked at docs from the linked forks but I'm still a bit lost.
I'm running Tribeca through the compiled JS files in Tribeca/service with a MongoDB instance running in a docker container. I've set my ENV flags to
TRIBECA_BACKTEST_MODE=true
and set flags forMD_FILE = {Path to a Mongoexport --arrayJSON output.json from collected websocket market data}
This is where my confusion starts. What kind of format is PARAM_FILE looking for? I took a look at backtest.ts + models.ts so I tried something like:in a .json file, however, any arrangement of parameters I've tried thus far cannot produce anything in /result from the backtest service. The backtest service will take in an enumerate my parameters but will hang at "done" (from recieving parameters) and not produce any output files.
Can anyone shed some light on this? Maybe show me another way of implementing backtesting altogether? I'm sure the way I'm going about it is a little backwards...