Skip to content

Commit

Permalink
v1.16.0-beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
EmersonDove committed Feb 25, 2022
1 parent bbc91e3 commit c50d6e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
11 changes: 3 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,12 @@ organized, and you make the changes where they make sense and are easy to mainta
The first step to getting started is to install from source. Our best suggestions is to use this in conjunction with an anaconda environment or a venv to make sure that you separate the production blankly from your local source.

1. First [fork](https://help.github.com/articles/fork-a-repo/) the repo to your own GitHub and then [clone](https://help.github.com/articles/cloning-a-repository/) it locally.

2. Create a new branch that highlights what you plan on changing:
```bash
$ git checkout -b MY_BRANCH_NAME
```

4. Install testing dependencies
2. Install testing dependencies
```bash
$ pip install pytest pytest_mock
```
5. Ensure that you have proper API keys on the various exchanges to run the test, or submit a PR, and we can run them.
3. Ensure that you have proper API keys on the various exchanges to run the test, or submit a PR, and we can run them.
1. Note that the keys should be placed inside `keys.json` at `./tests/config`

Now you should be up and running and installed from source.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ For more info, and ways to do more advanced things, check out our [getting start
| FTX | 🟢 | 🟢 | 🟢 | 🟢 |
| KuCoin | 🟢 | 🟡 | 🟢 | 🟢 |
| Kraken | 🟡 | 🟡 | 🟡 | 🟡 |
| Keyless Backtesting | | | 🟢 | 🟢 |
| Keyless Backtesting | | | | 🟢 |
| TD Ameritrade | 🔴 | 🔴 | 🔴 | 🔴 |
| Webull | 🔴 | 🔴 | 🔴 | 🔴 |
| Robinhood | 🔴 | 🔴 | 🔴 | 🔴 |
Expand All @@ -189,7 +189,7 @@ For more info, and ways to do more advanced things, check out our [getting start

We have a pre-built cookbook examples that implement strategies such as RSI, MACD, and the Golden Cross found in our [examples](https://docs.blankly.finance/examples/golden-cross).

The model below will run an RSI check every 30 minutes - **buying** below **30** and **selling** above **70** .
The model below will run an RSI check every 30 minutes - **buying** below **30** and **selling** above **70**. Try switching the exchange and assets and see how it instantly works on Binance, Coinbase Pro or anything else you trade on.

```python
import blankly
Expand Down

0 comments on commit c50d6e7

Please sign in to comment.