0

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.

AVA
  • 2,474
  • 2
  • 26
  • 41

1 Answers1

0

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.

Nils Gudat
  • 13,222
  • 3
  • 39
  • 60