@@ -4,33 +4,31 @@ title: "Short title loaded with keywords"
4
4
body :
5
5
- type : markdown
6
6
attributes :
7
- value : |
7
+ value : >+
8
8
Thanks for putting in the effort to submit this bug report! Note, the
9
9
best bug reports are accompanied with fixing patches / pull-requests. 🙏
10
10
11
- - type : checkboxes
11
+ - type : markdown
12
12
attributes :
13
- label : Contributing guidelines
14
- description : |
15
- Please kindly follow this project's
16
- [Contributing Guidelines](https://github.com/kernc/backtesting.py/blob/master/CONTRIBUTING.md).
17
- The guidelines contain short technical notes on how to best contribute to this project.
18
- options :
19
- - label : |
20
- I agree to follow this project's
21
- [Contributing Guidelines](https://github.com/kernc/backtesting.py/blob/master/CONTRIBUTING.md)
22
- which, I understand, contain short technical notes on how to best contribute to this project.
23
- required: true
13
+ value : >+
14
+ **Contributing guidelines** $\color{red}{*}$
24
15
25
- - type : checkboxes
16
+ - [x] I agree to follow this project's
17
+ [Contributing Guidelines](https://github.com/kernc/backtesting.py/blob/master/CONTRIBUTING.md)
18
+ which, I understand, contain short technical notes on how to best contribute to this project.
19
+
20
+ - type : markdown
26
21
attributes :
27
- label : Own due diligence
28
- options :
29
- - label : |
30
- I verify my due dilligence—I have went through the **tutorials** and the **API docs** and
31
- have used the **search** on **Issues** and GitHub **Disucussions**, as well all Google,
32
- with all the relevant search keywords.
33
- required: true
22
+ value : >+
23
+ **Own due diligence** $\color{red}{*}$
24
+
25
+ - [x] I verify my due dilligence—I have went through the
26
+ [**tutorials**](https://kernc.github.io/backtesting.py/doc/backtesting/#manuals) and the
27
+ [**API docs**](https://kernc.github.io/backtesting.py/doc/backtesting/backtesting.html) and
28
+ have used the
29
+ [**search** on **Issues**](https://github.com/kernc/backtesting.py/issues?q=(is%3Aissue%20OR%20is%3Apr)%20) and
30
+ [GitHub **Disucussions**](https://github.com/kernc/backtesting.py/discussions), as well as Google,
31
+ with all the relevant search keywords that also comprise the title (see above) of the new issue I'm opening.
34
32
35
33
- type : textarea
36
34
id : expected
39
37
attributes :
40
38
label : Expected behavior
41
39
description : You run the code below and expect what to happen?
42
- placeholder : When I run this code ... the program should ...
40
+ placeholder : When I run the code below ... the program should ...
43
41
44
42
- type : textarea
45
43
id : code
53
51
from backtesting import Backtest, Strategy
54
52
from backtesting.test import GOOG
55
53
56
- class Example (Strategy):
54
+ class MinimalExample (Strategy):
57
55
...
58
56
59
57
bt = Backtest(GOOG, Example)
0 commit comments