Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
chenditc committed Jul 20, 2022
1 parent ea48f49 commit 8a9fe19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ RUN pip install numpy && pip install --upgrade cython \
&& cd /qlib/ && pip install . && pip install -r scripts/data_collector/yahoo/requirements.txt
COPY ./requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
COPY . /app
COPY . /investment_data/
WORKDIR /investment_data/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Follow https://github.com/dolthub/dolt

## Export to qlib format
```
docker run -v /<some output directory>:/output --it --rm chenditc/investment_data bash dump_qlib_bin.sh && cp ./qlib_bin.tar.gz /output/
docker run -v /<some output directory>:/output -it --rm chenditc/investment_data bash dump_qlib_bin.sh && cp ./qlib_bin.tar.gz /output/
```

## Daily Update
Expand All @@ -18,7 +18,7 @@ bash daily_update.sh

## Daily update and output
```
docker run -v /<some output directory>:/output --it --rm chenditc/investment_data bash daily_update.sh && bash dump_qlib_bin.sh && cp ./qlib_bin.tar.gz /output/
docker run -v /<some output directory>:/output -it --rm chenditc/investment_data bash daily_update.sh && bash dump_qlib_bin.sh && cp ./qlib_bin.tar.gz /output/
```


Expand Down

0 comments on commit 8a9fe19

Please sign in to comment.