-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
149 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: Bug report | ||
description: File a new bug report. Please use the search | ||
title: "Short title loaded with keywords" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for putting in the effort to submit this bug report! Note, the | ||
best bug reports are accompanied with fixing patches / pull-requests. | ||
- type: checkboxes | ||
attributes: | ||
label: Contributing guidelines | ||
description: | | ||
I have read and will follow | ||
[Contributing Guidelines](https://github.com/kernc/backtesting.py/blob/master/CONTRIBUTING.md). | ||
options: | ||
- label: I agree to follow this project's Contributing Guidelines | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
validations: | ||
required: true | ||
attributes: | ||
label: Expected behavior | ||
description: You run the code below and expect what to happen? | ||
placeholder: When I run this code ... the program should ... | ||
|
||
- type: textarea | ||
id: code | ||
validations: | ||
required: false | ||
attributes: | ||
label: Code sample | ||
description: Code snippet that clearly reproduces the issue | ||
render: python | ||
placeholder: | | ||
from backtesting import Backtest, Strategy | ||
from backtesting.test import GOOG | ||
class Example(Strategy): | ||
... | ||
bt = Backtest(GOOG, Example) | ||
... | ||
- type: textarea | ||
id: actual | ||
validations: | ||
required: true | ||
attributes: | ||
label: Actual behavior | ||
description: What happened unexpectedly when you ran the code above? | ||
placeholder: When I ran the code above ... the program did ... | ||
|
||
- type: textarea | ||
id: steps | ||
validations: | ||
required: false | ||
attributes: | ||
label: Additional info, steps to reproduce, full crash traceback, screenshots | ||
description: | | ||
Attach any additional info you think might be helpful and | ||
result in quicker resolution of your bug. | ||
placeholder: | | ||
1. Do ... | ||
2. ... | ||
3. Boom. | ||
- type: textarea | ||
id: versions | ||
validations: | ||
required: false | ||
attributes: | ||
label: Software versions | ||
description: | | ||
Versions of the relevant software / packages. | ||
value: | | ||
<!-- From `backtesting.__version__`. If git, use commit hash --> | ||
- Backtesting version: 0.?.? | ||
- `bokeh.__version__`: | ||
- OS: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Enhancement proposal | ||
description: Describe the enhancement you'd like to see | ||
title: "Short title loaded with keywords" | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to give feedback on this software! | ||
- type: checkboxes | ||
attributes: | ||
label: Contributing guidelines | ||
description: | | ||
I have read and will follow | ||
[Contributing Guidelines](https://github.com/kernc/backtesting.py/blob/master/CONTRIBUTING.md). | ||
options: | ||
- label: I agree to follow this project's Contributing Guidelines | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
validations: | ||
required: true | ||
attributes: | ||
label: Enhancement description | ||
description: What would you want to see in the software that doesn't appear to be presently included? | ||
placeholder: I absolutely love your software, but I'm missing a way to ... | ||
|
||
- type: textarea | ||
id: code | ||
validations: | ||
required: false | ||
attributes: | ||
label: Code sample | ||
description: Code snippet relevant to the new feature | ||
render: python | ||
|
||
- type: textarea | ||
id: steps | ||
validations: | ||
required: false | ||
attributes: | ||
label: Additional info, images | ||
description: | | ||
Extra information you think might be helpful or interesting. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Reference documentation | ||
url: https://kernc.github.io/backtesting.py/doc/backtesting/ | ||
about: Please confirm you've checked here first. | ||
- name: FAQ | ||
url: https://github.com/kernc/backtesting.py/issues?q=label%3Aquestion%20 | ||
about: Frequently asked questions. Use search with potential keywords. | ||
- name: Discussion forum | ||
url: https://github.com/kernc/backtesting.py/discussions | ||
about: Other discussions. Make sure you've seen this too. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters