Matthias
e79e651836
Document usage of open_date_utc
...
closes #4580
2021-03-20 18:46:57 +02:00
Matthias
5c0067b508
Update docs/strategy-advanced.md
2021-03-20 18:46:57 +02:00
Brook Miles
2bb4cca775
revert "Trailing stoploss with positive offset" example as stoploss_from_open() wasn't adding value
2021-03-20 18:46:57 +02:00
Matthias
3e24b365d0
Add link between stoploss_from_open and custom_stop documentation
2021-03-20 18:46:57 +02:00
Brook Miles
e9be5e8d06
update stoploss_from_open examples to use helper function
2021-03-20 18:46:57 +02:00
Brook Miles
d41255e30d
correct math used in examples and clarify some terminology regarding custom stoploss functions
2021-03-20 18:46:57 +02:00
JoeSchr
cb130ee9a7
Update docs/strategy-advanced.md
...
Co-authored-by: Matthias <xmatthias@outlook.com>
2021-03-20 18:46:57 +02:00
Joe Schr
b62662f882
fix(docs/strategy-advanced/custom_info-storage/example): only add to "custom_info" in backtesting and hyperopt
2021-03-20 18:46:57 +02:00
Joe Schr
97da000b3d
fix(docs/strategy-advanced/custom_stoploss/example): check if "pair" exists in "custom_info" before requesting
2021-03-20 18:46:57 +02:00
Joe Schr
b2dc29f66f
fix(docs/strategy-advanced): add warnings
2021-03-20 18:46:57 +02:00
Joe Schr
3a7a7c6ad9
fix(docs/strategy-advanced): use get_analyzed_dataframe()
instead of custom_info.iloc
2021-03-20 18:46:57 +02:00
Joe Schr
9920959950
fix(docs/strategy-advanced): fix link to custom_info storage
2021-03-20 18:46:57 +02:00
Joe Schr
55388ef825
feature(docs/strategy-advanced/custom_info-storage/example): add ATR column calculation
2021-03-20 18:46:57 +02:00
Joe Schr
341ce4d405
fix(docs/strategy-customization): add "hyperopt" to runmode check for custom_info in custom_stoploss example
2021-03-20 18:46:57 +02:00
Joe Schr
699dcbdb4d
refactor(docs/strategy-advanced): extract "Storing information" section from strategy-customization.md
2021-03-20 18:46:57 +02:00
Joe Schr
ea89c839d4
fix(docs/strategy-customization): remove superflous prints
from example code
2021-03-20 18:46:57 +02:00
Joe Schr
6b4b3bb964
fix(docs/strategy-customization): "custom_stoploss indicator" example need to check for RUN_MODE
2021-03-20 18:46:57 +02:00
Joe Schr
7961fe5810
feature(docs/strategy-customization): add example "Custom stoploss using an indicator from dataframe"
2021-03-20 18:46:57 +02:00
Joe Schr
65653378b8
chore(docs/strategy-customization): clean up left over trailing whitespaces
2021-03-20 18:46:57 +02:00
JoeSchr
a275d8defa
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-03-20 18:46:57 +02:00
Matthias
a9f1c871dd
Add path loading snippet to derived strategies
...
closes #4279
2021-02-01 19:48:29 +01:00
Matthias
30e5c01cb1
Improve formatting of custom_stoploss docs
2021-01-30 19:59:14 +01:00
Matthias
86b3306a3b
Small doc refactoring
2021-01-19 22:07:10 +01:00
hoeckxer
1cf6e2c957
Changed documentation based on review comments
...
Signed-off-by: hoeckxer <hawkeyenl@yahoo.com>
2021-01-04 14:37:22 +01:00
hoeckxer
0704cfb05b
Added an example with a positive offset for a custom stoploss
...
Signed-off-by: hoeckxer <hawkeyenl@yahoo.com>
2021-01-04 14:14:52 +01:00
Matthias
11f36fbaee
Fix all custom stoploss samples
2021-01-02 09:14:31 +01:00
Erwin Hoeckx
67ced6a53c
Update docs/strategy-advanced.md
...
Co-authored-by: Matthias <xmatthias@outlook.com>
2021-01-01 20:49:04 +01:00
hoeckxer
e5840abaf9
Added imports to documentation for clarification when using custom stoploss
...
Signed-off-by: hoeckxer <hawkeyenl@yahoo.com>
2020-12-31 21:05:47 +01:00
Matthias
512e163355
change docstring to better reflect what the method is for
2020-12-31 09:48:49 +01:00
Matthias
fc0d14c1b5
Improve documentation
2020-12-20 19:14:18 +01:00
Matthias
676dd0d664
Improve documentation
2020-12-20 11:22:15 +01:00
Matthias
9d5961e224
Rename method to custom_stoploss
2020-12-20 11:17:50 +01:00
Matthias
277342f167
Rename flag to "use_custom_stoposs"
2020-12-20 11:12:22 +01:00
Matthias
8574751a07
Add stoploss_value to strategy template
2020-12-20 10:49:22 +01:00
Matthias
11e2915621
Fix documentation problem
2020-12-19 17:44:39 +01:00
Matthias
b2c1098316
more docs for dynamic stoploss method
2020-12-19 12:03:18 +01:00
Matthias
f7b54c2415
Allow and document time-based custom stoploss
...
closes #3206
2020-12-19 11:46:49 +01:00
Matthias
f235ab8cf4
Fix some typos in docs
2020-12-19 11:39:21 +01:00
Matthias
18795844d8
Add initial set of custom stoploss documentation
2020-12-19 11:37:20 +01:00
Matthias
768a24c375
Add stoplossvalue interface
2020-12-18 06:56:56 +01:00
Matthias
5e1032c4af
Simplify strategy documentation, move "substrategies" to advanced page
2020-08-08 17:08:38 +02:00
Matthias
75318525a9
Update docs/strategy-advanced.md
...
Co-authored-by: hroff-1902 <47309513+hroff-1902@users.noreply.github.com>
2020-07-04 16:41:19 +02:00
Matthias
c4a9a79be0
Apply suggested documentation changes from code review
...
Co-authored-by: hroff-1902 <47309513+hroff-1902@users.noreply.github.com>
2020-07-04 09:43:49 +02:00
Matthias
eef3c01da7
Fix function header formatting
2020-06-18 19:49:05 +02:00
Matthias
e5f7610b5d
Add bot basics documentation
2020-06-18 06:50:06 +02:00
Matthias
8b186dbe0e
Add additional test scenarios
2020-06-18 06:50:06 +02:00
Matthias
84329ad2ca
Add confirm_trade* methods to abort buying or selling
2020-06-18 06:50:06 +02:00
Matthias
bc821c7c20
Add documentation for bot_loop_start
2020-06-18 06:50:06 +02:00
hroff-1902
f1367b38a4
Docs: Fix the fix
2020-05-12 14:42:33 +03:00
hroff-1902
e2b9c24856
Docs: Fix sample in strategy-advanced
2020-05-12 13:54:13 +03:00