Files
gocryptotrader/cmd/documentation/backtester_templates/backtester_backtest_readme.tmpl
Scott b5aa3eddb2 backtester: Fix selling bug, add planned features list (#722)
* Fixes sell bug. Updates docs. Adds test

* Doc fixes

* reorder and lint

* Lint again!

* Minor improvement to ensure theoretical upsized orders don't exceed portfolio limits

* Fixes test error

* %vamoose!

* Fixes defaulting to int
2021-07-27 12:50:07 +10:00

22 lines
752 B
Cheetah

{{define "backtester backtest" -}}
{{template "backtester-header" .}}
## {{.CapitalName}} package overview
The backtest package is the most important package of the GoCryptoTrader backtester. It is the engine which combines all elements.
It is responsible for the following functionality
- Loading settings from a provided config file
- Retrieving data
- Loading the data into assessable chunks
- Analysing the data via the `handleEvent` function
- Looping through all data
- Outputting results into a report
A flow of the application is as follows:
![workflow](https://i.imgur.com/Kup6IA9.png)
### Please click GoDocs chevron above to view current GoDoc information for this package
{{template "contributions"}}
{{template "donations" .}}
{{end}}