Skip to content

Commit ce511c8

Browse files
committed
Fix bug in backtest market data source service
1 parent 579b66c commit ce511c8

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,14 +241,35 @@ app.add_portfolio_configuration(
241241
We are continuously working on improving the performance of the framework. If
242242
you have any suggestions, please let us know.
243243

244-
## Download
244+
## How to install
245245

246246
You can download the framework with pypi.
247247

248248
```bash
249249
pip install investing-algorithm-framework
250250
```
251251

252+
## Installation for local development
253+
254+
The framework is built with poetry. To install the framework for local development, you can run the following commands:
255+
256+
> Make sure you have poetry installed. If you don't have poetry installed, you can find installation instructions [here](https://python-poetry.org/docs/#installation)
257+
258+
```bash
259+
git clone http
260+
cd investing-algorithm-framework
261+
poetry install
262+
```
263+
264+
### Running tests
265+
266+
To run the tests, you can run the following command:
267+
268+
```bash
269+
# In the root of the project
270+
python -m unittest discover -s tests
271+
```
272+
252273
## Disclaimer
253274

254275
If you use this framework for your investments, do not risk money

investing_algorithm_framework/services/market_data_source_service/backtest_market_data_source_service.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ def __init__(
6161
.get_config()[BACKTESTING_START_DATE],
6262
backtest_end_date=configuration_service
6363
.get_config()[BACKTESTING_END_DATE],
64-
market_credential_service=self._market_credential_service
6564
)
6665

6766
def get_data(self, identifier):

0 commit comments

Comments
 (0)