Matthias
ef9977fc1e
Make stake_amount + stake_currency mandatory for backtesting
2021-03-10 10:43:44 +01:00
Matthias
0db5c9746f
Merge pull request #4454 from freqtrade/backtest_compound_speed
...
Backtest compound, wallet, ...
2021-03-10 10:07:40 +01:00
Matthias
60f6b998d3
Update logo with smiling one
2021-03-10 09:27:03 +01:00
dependabot[bot]
a9c114d301
Bump mkdocs-material from 7.0.3 to 7.0.5
...
Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material ) from 7.0.3 to 7.0.5.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases )
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/docs/changelog.md )
- [Commits](https://github.com/squidfunk/mkdocs-material/compare/7.0.3...7.0.5 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-03-08 05:28:27 +00:00
Matthias
a405d578da
Introduce forcebuy ordertype to allow specifiying a different ordertype for forcebuy / forcesells
2021-03-05 20:22:04 +01:00
Matthias
bc05d03126
Make best / worst day absolute
2021-03-05 19:21:09 +01:00
JoeSchr
dfeafc2204
Update docs/strategy-customization.md
...
Co-authored-by: Matthias <xmatthias@outlook.com>
2021-03-04 20:05:27 +01:00
JoeSchr
161a4656d5
Update docs/strategy-advanced.md
...
Co-authored-by: Matthias <xmatthias@outlook.com>
2021-03-04 20:05:21 +01:00
Joe Schr
1304918a29
fix(docs/strategy-advanced/custom_info-storage/example): only add to "custom_info" in backtesting and hyperopt
2021-03-04 20:03:43 +01:00
Joe Schr
900deb663a
fix(docs/strategy-advanced/custom_stoploss/example): check if "pair" exists in "custom_info" before requesting
2021-03-04 20:03:43 +01:00
Joe Schr
c56b9cd751
fix(docs/strategy-advanced): add warnings
2021-03-04 20:03:43 +01:00
Joe Schr
a6ef354a5f
fix(docs/strategy-advanced): use get_analyzed_dataframe()
instead of custom_info.iloc
2021-03-04 20:03:43 +01:00
Joe Schr
22a558e331
fix(docs/strategy-advanced): fix link to custom_info storage
2021-03-04 20:03:42 +01:00
Joe Schr
1a02a146a1
feature(docs/strategy-advanced/custom_info-storage/example): add ATR column calculation
2021-03-04 20:03:42 +01:00
Joe Schr
4064f856d1
fix(docs/strategy-customization): add "hyperopt" to runmode check for custom_info in custom_stoploss example
2021-03-04 20:03:42 +01:00
Joe Schr
b52698197b
refactor(docs/strategy-advanced): extract "Storing information" section from strategy-customization.md
2021-03-04 20:03:42 +01:00
Joe Schr
d05acc30fa
fix(docs/strategy-customization): remove superflous prints
from example code
2021-03-04 20:03:42 +01:00
Joe Schr
32f35fcd90
fix(docs/strategy-customization): "custom_stoploss indicator" example need to check for RUN_MODE
2021-03-04 20:03:42 +01:00
Joe Schr
c5900bbd38
feature(docs/strategy-customization): add example "Custom stoploss using an indicator from dataframe"
2021-03-04 20:03:42 +01:00
Joe Schr
cc4e84bb70
feature(docs/strategy-customization): add example how to store indicator with DatetimeIndex into custom_info
2021-03-04 20:03:42 +01:00
Joe Schr
5cf3194fab
chore(docs/strategy-customization): clean up left over trailing whitespaces
2021-03-04 20:03:42 +01:00
Joe Schr
d5993db064
refactor(docs/strategy-customization): change variable name for better readability
...
`cust_info` -> `custom_info`
2021-03-04 20:03:42 +01:00
Matthias
6eb253c31e
Merge pull request #4469 from freqtrade/rpc/locks
...
Add RPC methods to remove locks
2021-03-02 10:41:08 +01:00
Matthias
007ac7abb5
Add telegram pair unlocking
2021-03-01 20:09:40 +01:00
Matthias
6640156ac7
Support deleting locks via API
2021-03-01 19:50:39 +01:00
Matthias
4e51364057
Add warning about sandboxes
...
closes #4468
2021-03-01 19:12:02 +01:00
Matthias
64ef7becc7
Update styles to work with new mkdocs version
2021-03-01 09:35:35 +01:00
dependabot[bot]
00747a3bc3
Bump mkdocs-material from 6.2.8 to 7.0.3
...
Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material ) from 6.2.8 to 7.0.3.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases )
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/docs/changelog.md )
- [Commits](https://github.com/squidfunk/mkdocs-material/compare/6.2.8...7.0.3 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-03-01 05:31:43 +00:00
Matthias
54ccbd9370
Merge pull request #4391 from squat0001/develop
...
Add dust level to balance command in telegram
2021-02-28 10:36:44 +01:00
Matthias
a13dc3cdde
Use sensible defaults for balance_dust_level
2021-02-28 09:57:52 +01:00
JoeSchr
e791ff6042
Fix: custom_stoploss returns typo
...
Afaik it should return -0.07 for 7% instead of -0.7.
As a side note, really interesting would also be an example for greater than 100% profits. especially when trailing stoploss, like
* Once profit is > 200% - stoploss will be set to 150%.
I assume it could be as simple as
```py
if current_profit > 2:
return (-1.50 + current_profit)
````
to achieve it
But I'm not quite confident, if the bot can handle stuff smaller than `-1`, since `1` and `-1` seem to have some special meaning and are often used to disable stoploss etc.
2021-02-27 23:28:26 +01:00
Matthias
d9d5617432
UPdate backtesting doc for total profit calc
2021-02-27 20:26:13 +01:00
Matthias
6018a05343
Improve backtest documentation
2021-02-27 10:45:22 +01:00
Matthias
f5bb5f56f1
Update documentation with backtesting compounding possibilities
2021-02-27 09:33:00 +01:00
Matthias
d3fb473e57
Improve backtesting documentation
2021-02-27 09:33:00 +01:00
Matthias
f04f07299c
Improve backtesting metrics
2021-02-27 09:33:00 +01:00
Matthias
72f21fc5ec
Add trade-volume metric
2021-02-27 09:32:59 +01:00
Matthias
35e6a9ab3a
Backtest-reports should calculate total gains based on starting capital
2021-02-27 09:32:59 +01:00
Matthias
959ff99046
Add Dry-run wallet CLI option
2021-02-27 09:32:59 +01:00
Matthias
20455de2a9
Small enhancements to docs
2021-02-27 09:32:59 +01:00
Matthias
9968e4e49c
Add warning about downloading data from kraken
...
closes #4449
2021-02-27 08:26:13 +01:00
Matthias
0bb80d1442
Merge pull request #4446 from Xanders/patch-1
...
Webhook JSON format
2021-02-26 20:03:07 +01:00
Matthias
7d87c44c35
Merge pull request #4436 from Th0masL/forcesell_type
...
Allow changing the order_type for forcesell
2021-02-26 19:42:00 +01:00
Xanders
f0391d3761
Better JSON webhook result description
2021-02-26 21:40:45 +03:00
Xanders
984e70d4e8
Add webhook result example to documentation
2021-02-26 21:15:40 +03:00
Xanders
a2cd3ed5ba
Add documentation for JSON webhook format
2021-02-26 17:59:38 +03:00
Marco Seguri
51d73a5889
Fix #4441
2021-02-26 11:11:27 +01:00
Matthias
1b3b389109
Remove binanceje, add ftx to config selector
...
closes #4441
2021-02-26 07:58:15 +01:00
Matthias
c4979fd87f
Add note to check configuration settings to docker quickstart
...
part of #4441
2021-02-26 06:57:51 +01:00
Matthias
6d38a2e659
Small enhancements to docs
2021-02-25 19:57:09 +01:00