|
| 1 | +name: Bug report |
| 2 | +description: File a new bug report. Please use the search |
| 3 | +title: "Short title loaded with keywords" |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Thanks for putting in the effort to submit this bug report! Note, the |
| 9 | + best bug reports are accompanied with fixing patches / pull-requests. |
| 10 | +
|
| 11 | + - type: checkboxes |
| 12 | + attributes: |
| 13 | + label: Contributing guidelines |
| 14 | + description: | |
| 15 | + I have read and will follow |
| 16 | + [Contributing Guidelines](https://github.com/kernc/backtesting.py/blob/master/CONTRIBUTING.md). |
| 17 | + options: |
| 18 | + - label: I agree to follow this project's Contributing Guidelines |
| 19 | + required: true |
| 20 | + |
| 21 | + - type: textarea |
| 22 | + id: expected |
| 23 | + validations: |
| 24 | + required: true |
| 25 | + attributes: |
| 26 | + label: Expected behavior |
| 27 | + description: You run the code below and expect what to happen? |
| 28 | + placeholder: When I run this code ... the program should ... |
| 29 | + |
| 30 | + - type: textarea |
| 31 | + id: code |
| 32 | + validations: |
| 33 | + required: false |
| 34 | + attributes: |
| 35 | + label: Code sample |
| 36 | + description: Code snippet that clearly reproduces the issue |
| 37 | + render: python |
| 38 | + placeholder: | |
| 39 | + from backtesting import Backtest, Strategy |
| 40 | + from backtesting.test import GOOG |
| 41 | +
|
| 42 | + class Example(Strategy): |
| 43 | + ... |
| 44 | +
|
| 45 | + bt = Backtest(GOOG, Example) |
| 46 | + ... |
| 47 | +
|
| 48 | + - type: textarea |
| 49 | + id: actual |
| 50 | + validations: |
| 51 | + required: true |
| 52 | + attributes: |
| 53 | + label: Actual behavior |
| 54 | + description: What happened unexpectedly when you ran the code above? |
| 55 | + placeholder: When I ran the code above ... the program did ... |
| 56 | + |
| 57 | + - type: textarea |
| 58 | + id: steps |
| 59 | + validations: |
| 60 | + required: false |
| 61 | + attributes: |
| 62 | + label: Additional info, steps to reproduce, full crash traceback, screenshots |
| 63 | + description: | |
| 64 | + Attach any additional info you think might be helpful and |
| 65 | + result in quicker resolution of your bug. |
| 66 | + placeholder: | |
| 67 | + 1. Do ... |
| 68 | + 2. ... |
| 69 | + 3. Boom. |
| 70 | +
|
| 71 | + - type: textarea |
| 72 | + id: versions |
| 73 | + validations: |
| 74 | + required: false |
| 75 | + attributes: |
| 76 | + label: Software versions |
| 77 | + description: | |
| 78 | + Versions of the relevant software / packages. |
| 79 | + value: | |
| 80 | + <!-- From `backtesting.__version__`. If git, use commit hash --> |
| 81 | + - Backtesting version: 0.?.? |
| 82 | + - `bokeh.__version__`: |
| 83 | + - OS: |
0 commit comments