Skip to content

Commit ddd93a6

Browse files
authored
Merge pull request #77 from Arkoniak/76-deprecation-fix
csv deprecation fix (#76)
2 parents 22be718 + 467dfcd commit ddd93a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MarketData"
22
uuid = "945b72a4-3b13-509d-9b46-1525bb5c06de"
33
authors = ["JuliaQuant <https://github.com/JuliaQuant>"]
4-
version = "0.13.8"
4+
version = "0.13.9"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"

src/downloads.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function yahoo(sym::AbstractString = "^GSPC", opt::YahooOpt = YahooOpt())
9595
url = "https://$host.finance.yahoo.com/v7/finance/download/$sym"
9696
res = HTTP.get(url, query = opt)
9797
@assert res.status == 200
98-
csv = CSV.File(res.body, missingstrings = ["null"])
98+
csv = CSV.File(res.body, missingstring = "null")
9999
sch = TimeSeries.Tables.schema(csv)
100100
TimeArray(csv, timestamp = first(sch.names)) |> cleanup_colname!
101101
end

0 commit comments

Comments
 (0)