Skip to main content

Financial Python. Using python to do stock analysis.

Project description

finpy
=====
Financial Python
=====
To install
=====
Requirement: Python 3

pip install finpy

You can also download the window install package if you're using windows.
Introduction
=====

I plan to expand the capabilities. Please let me know if you have
any suggestions.
You can reach me at blacksburg98 (at) yahoo dot com

I've tried to use docstring as much as possible, so you can try these commands
in python shell to get more information.

::
from finpy.utils import get_tickdata
from finpy.equity import Equity
help(Equity)
from finpy.portfolio import Portfolio
help(Portfolio)

Please go to https://github.com/blacksburg98/finpy to file a issue if you have
any problems.

Recommend:
This will be the area where the downloaded stock data are stored.

setenv FINPYDATA ~/stock_data

Tutorial 1
=====
"""
Tutorial 1
Load stock data and print
"""
import matplotlib
matplotlib.use('Agg') # fix for matplotlib under multiprocessing
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
import datetime as dt
from finpy.utils import get_tickdata

import finpy.fpdateutil as du
if __name__ == '__main__':
dt_timeofday = dt.timedelta(hours=16)
dt_start = dt.datetime(2010, 1, 1)
dt_end = dt.datetime(2010, 12, 31)
ls_symbols = ['AAPL','GOOG', 'IBM', 'MSFT']
ldt_timestamps = du.getNYSEdays(dt_start, dt_end, dt_timeofday)
all_stocks = get_tickdata(ls_symbols=ls_symbols, ldt_timestamps=ldt_timestamps)
fig = plt.figure()
ax = fig.add_subplot(111)
for tick in ls_symbols:
ax.plot(ldt_timestamps, all_stocks[tick].normalized())
legend = ls_symbols
ax.legend(legend, loc=2)
fig.autofmt_xdate()
svg_file = 'tutorial1.pdf'
fig.savefig(svg_file)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

FinPy-0.5.tar.gz (71.8 kB view hashes)

Uploaded Source

Built Distributions

FinPy-0.5.win-amd64.exe (218.1 kB view hashes)

Uploaded Source

FinPy-0.5-py3-none-any.whl (81.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page