Home > Net >  Is there a way to read stock charts with python?
Is there a way to read stock charts with python?

Time:11-20

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/

CodePudding user response:

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

  • Related