You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are continuously working on improving the performance of the framework. If
242
242
you have any suggestions, please let us know.
243
243
244
-
## Download
244
+
## How to install
245
245
246
246
You can download the framework with pypi.
247
247
248
248
```bash
249
249
pip install investing-algorithm-framework
250
250
```
251
251
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
+
252
273
## Disclaimer
253
274
254
275
If you use this framework for your investments, do not risk money
0 commit comments