Skip to content

Commit

Permalink
Merge pull request #23 from tkyn/master
Browse files Browse the repository at this point in the history
update readme example to create CHRIS/ under data/ if it doesn't exist.
  • Loading branch information
dysonance committed Aug 26, 2019
2 parents 1579c29 + fd48c9d commit 96e7fb2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ function datasource(asset::String; save_downloads::Bool=true)::TS
else
X = quandl(asset)
if save_downloads
if !isdir(dirname(savedata_path))
mkdir(dirname(savedata_path))
end
Temporal.tswrite(X, savedata_path)
end
return X
Expand Down Expand Up @@ -104,4 +107,3 @@ surface(x, y, z)
* Define a more diverse set of order types
- Limit orders
* Stop orders

0 comments on commit 96e7fb2

Please sign in to comment.