mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
* docs: Create new CODING_GUIDELINES doc Rids excess contribution instructions from other packages Adds AGENTS.md file for the AI overlords Rids unused templates Updates ADD_NEW_EXCHANGE.md with minor fixes * docs: Fix linter issues and minor adjustments based on Copilot feedback * docs: Update coding guidelines for API parameters and testing practices * docs: Remove redundant GoDoc references Adds copilot-instructions.md * docs: Update CODING_GUIDELINES with export recommendations and test commentary * docs: Fix formatting inconsistencies in ADD_NEW_EXCHANGE.md links * docs: Update struct naming conventions for request and response types * docs: Improve clarity and consistency in ADD_NEW_EXCHANGE.md and CODING_GUIDELINES.md * refactor: Simplify error handling in QueryOrder method
29 lines
1.5 KiB
Cheetah
29 lines
1.5 KiB
Cheetah
{{define "backtester funding trackingcurrencies" -}}
|
|
{{template "backtester-header" .}}
|
|
## {{.CapitalName}} package overview
|
|
|
|
### What does the tracking currencies package do?
|
|
The tracking currencies package is responsible breaking up a user's strategy currencies into pairs with a USD equivalent pair in order to track strategy performance against a singular currency. For example, you are wanting to backtest on Binance using XRP/DOGE, the tracking currencies will also retrieve XRP/BUSD and DOGE/BUSD pair data for use in calculating how much a currency is worth at every candle point.
|
|
|
|
### What if the exchange does not support USD?
|
|
The tracking currencies package will check supported currencies against a list of USD equivalent USD backed stablecoins. So if your select exchange only supports BUSD or USDT based pairs, then the GoCryptoTrader Backtester will break up config pairs into the equivalent. See below list for currently supported stablecoin equivalency
|
|
|
|
| Currency |
|
|
|----------|
|
|
|USD |
|
|
|USDT |
|
|
|BUSD |
|
|
|USDC |
|
|
|DAI |
|
|
|TUSD |
|
|
|ZUSD |
|
|
|PAX |
|
|
|
|
### How do I disable this?
|
|
If you need to disable this functionality, for example, you are using Live, Database or CSV based trade data, then under `strategy-settings` in your config, set `disable-usd-tracking` to `true`
|
|
|
|
### Can I supply my own list of equivalent currencies instead of USD?
|
|
This is currently not supported. If this is a feature you would like to have, please raise an issue on GitHub or in our Slack channel
|
|
|
|
{{template "donations" .}}
|
|
{{end}} |