It is understood from Can't save data from yfinance into a CSV file, that ticks can be downloaded from yfinance and it can be saved in csv format using python.
Please guide me in achieving the same using Julia.
It is understood from Can't save data from yfinance into a CSV file, that ticks can be downloaded from yfinance and it can be saved in csv format using python.
Please guide me in achieving the same using Julia.
What have you tried, what isn't working?
There currently isn't a working Julia package that wraps the Yahoo Finance API, so you can either write one yourself using HTTP.jl
or use the Python library you linked via PyCall.jl
or an R library (e.g. described here) via RCall.jl
.
Once you have the data you can do using CSV; CSV.write("/path/to/file.csv", downloaded_data)
to write it to csv.