Lightweight financial indicators and signals (SMA, EMA, RSI, golden cross, etc.)
Project description
finind
Lightweight financial indicators and signals: SMA, EMA, RSI, Golden Cross.
Install (local)
pip install -e .
Usage
import pandas as pd
from finind import sma, ema, rsi, golden_cross
df = pd.read_csv("prices.csv") # must have Close column
df["SMA20"] = sma(df, 20)
df["EMA20"] = ema(df, 20)
df["RSI14"] = rsi(df, 14)
df["GoldenCross"] = golden_cross(df, 50, 200)
print(df.tail())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
finind-0.1.0.tar.gz
(4.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file finind-0.1.0.tar.gz.
File metadata
- Download URL: finind-0.1.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
160da2049c5f72e282f0fb1ba3efcd7f885a93cbcbeb7941cfb51ce1856c9643
|
|
| MD5 |
560256ff4214183276b8ac5acf37dd36
|
|
| BLAKE2b-256 |
0c15baa930b15819240cff421114acdf71afbb4cdfe1aad3e7aa68c7220c577d
|
File details
Details for the file finind-0.1.0-py3-none-any.whl.
File metadata
- Download URL: finind-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13eac1eb4c2475ddfc49f5a3d4c59bb6991212b17bc3837902ea703cc088a815
|
|
| MD5 |
49e94433c5f32dfa93eba9bcce385582
|
|
| BLAKE2b-256 |
9c3ade77a22679ebf11c195783db2feea29cc028f634578b79e96fddb0de25f9
|