Julian
Julian

Reputation: 27

Is there a way to read stock charts with python?

I would like my python program to look at a Bitcoin chart and search the price of Bitcoin at a certain time. So it should search that time in the x-axis of the chart and print the price of one Bitcoin at that time. The chart I would like to be read by python: https://www.bitstamp.net/markets/btc/eur/

Upvotes: 1

Views: 772

Answers (1)

Roger
Roger

Reputation: 36

I found a good resource online that outlines how you can extract data from bitmap graphs using python. I have linked the article below:Reading Bitmap with Python

Upvotes: 2

Related Questions