Skip to main content

The easiest way to access and analyze Philippine stock data

Project description

psequant :nerd_face:

Build Status Code style: black License: GPL v3

Easiest way to access and analyze Philippine stock data

psequant (pronounced "see-kant") allows you easily access stock data from PSE Edge with as few as 2 lines of python code. Its goal is to promote data driven investments in the Philippines by making relevant information accessible to everyone.

Features

  1. Easy access to Philippine stock data
  2. Templates for backtesting trading strategies on Philippine stocks

Installation

pip install psequant

Get stock data from PSE

from psequant import get_pse_data
df = get_pse_data("JFC", "2018-01-01", "2019-01-01")
print(df.head())

#             open   high    low  close        value
#dt                                                 
#2018-01-03  253.4  256.8  253.0  255.4  190253754.0
#2018-01-04  255.4  255.4  253.0  255.0  157152856.0
#2018-01-05  255.6  257.4  255.0  255.0  242201952.0
#2018-01-08  257.4  259.0  253.4  256.0  216069242.0
#2018-01-09  256.0  258.0  255.0  255.8  250188588.0

Plot daily closing prices

from matplotlib import pyplot as plt

df.close.plot(figsize=(10, 6))
plt.title("Daily Closing Prices of JFC\nfrom 2018-01-01 to 2019-01-01", fontsize=20)

Analyze with a simple moving average (SMA) trading strategy

ma30 = df.close.rolling(30).mean()
close_ma30 = pd.concat([df.close, ma30], axis=1).dropna()
close_ma30.columns = ['Closing Price', 'Simple Moving Average (30 day)']

close_ma30.plot(figsize=(10, 6))
plt.title("Daily Closing Prices vs 30 day SMA of JFC\nfrom 2018-01-01 to 2019-01-01", fontsize=20)

Backtesting templates

Using the backtrader framework

Relative strength index (RSI) trading strategy (14 day window)

Daily Jollibee prices from 2017-01-01 to 2019-01-01

python examples/jfc_rsi.py

Min max support resistance trading strategy (30 day window)

Daily Jollibee prices from 2017-01-01 to 2019-01-01

python examples/jfc_support_resistance.py

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

psequant-0.1.2.4-py3-none-any.whl (20.0 kB view details)

Uploaded Python 3

File details

Details for the file psequant-0.1.2.4-py3-none-any.whl.

File metadata

  • Download URL: psequant-0.1.2.4-py3-none-any.whl
  • Upload date:
  • Size: 20.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.1

File hashes

Hashes for psequant-0.1.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 a6361383ba907636533dfe14f8f83b92a85d81d34cdb9222f5cfb99fe54c8aa5
MD5 37b2945a6a53450d3256a05978ac6c0c
BLAKE2b-256 eea5a7d22047120fc0c74a835dbfe178d9a4a796dca5a10e93c66876199d4d73

See more details on using hashes here.

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