A lightweight, production-ready Python library for computing core financial technical indicators such as SMA, EMA, and RSI using numerically stable and vectorized pandas operations. Designed for quantitative research, algorithmic trading, and machine learning pipelines.
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
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.1.tar.gz.
File metadata
- Download URL: finind-0.1.1.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d73ad8dec1a973f520b9d7011fd39f517b4c448e05e99504e4457acf5c318269
|
|
| MD5 |
e27af99b2e21ec00a46fccd95143e49b
|
|
| BLAKE2b-256 |
e82de7bd02ae40db47b95889344ffe1ea0f37efea8c3e9eda85bf570868a6d91
|
File details
Details for the file finind-0.1.1-py3-none-any.whl.
File metadata
- Download URL: finind-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.4 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 |
42f4c6e18be292d3a52de19e2cd70512d54e1f15f169c7ed558021b16e52b860
|
|
| MD5 |
bfb990b22de571b5b061c7124e417cdf
|
|
| BLAKE2b-256 |
f41fb195b88048e69cbe769fbde1568c1a5564a987548a6922494b030b17ab96
|