Python code for making price volume chart for bse scrip
I have written two python functions. First python function downloads price volume data for scrip from BSE. This function is available at following github
bse.py
It is invoked as follows:
bse(scripcode, fromdate , todate )
example bse ('RCOM', '12/03/2011', '12/03/2018')
Using selenium library and google chrome, this scrip downloads scrip's price volume data to chrome default download directory.
Then I have written second python function for making chart from this price volume data. It is available at following github repo.
bsechart.py
It is invoked as follows
chart (scripcode)
example chart('532712')
It takes downloaded PV data from directory and makes chart as below:
bse.py
It is invoked as follows:
bse(scripcode, fromdate , todate )
example bse ('RCOM', '12/03/2011', '12/03/2018')
Using selenium library and google chrome, this scrip downloads scrip's price volume data to chrome default download directory.
Then I have written second python function for making chart from this price volume data. It is available at following github repo.
bsechart.py
It is invoked as follows
chart (scripcode)
example chart('532712')
It takes downloaded PV data from directory and makes chart as below:

Comments
Post a Comment