Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save exchange volume data as a CSV file #41

Closed
vnegi10 opened this issue Jan 21, 2024 · 0 comments · Fixed by #43
Closed

Save exchange volume data as a CSV file #41

vnegi10 opened this issue Jan 21, 2024 · 0 comments · Fixed by #43
Labels
enhancement New feature or request

Comments

@vnegi10
Copy link
Owner

vnegi10 commented Jan 21, 2024

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
...
@vnegi10 vnegi10 added the enhancement New feature or request label Jan 21, 2024
@vnegi10 vnegi10 linked a pull request Feb 9, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant