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
Currently, exchange volume data is saved to a delimited (using ;) text file. Instead, we can save it as a CSV file. This will also reduce one dependency since DelimitedFiles.jl will no longer be needed.
In src/getdataCG.jl:
function get_vol_chart(exchange)
...
open(filepath, "w") do f
for chart in ex_vol_chart
writedlm(f, [chart], ";")
end
end
...
The text was updated successfully, but these errors were encountered:
Currently, exchange volume data is saved to a delimited (using
;
) text file. Instead, we can save it as a CSV file. This will also reduce one dependency sinceDelimitedFiles.jl
will no longer be needed.In
src/getdataCG.jl
:The text was updated successfully, but these errors were encountered: