Skip to main content

Technical analysis and quantitative trading toolkit for retail investors taking on the market

Project description

dumbmoney

dumbmoney is a technical analysis and quantitative trading toolkit designed for retail investors. The current version provides a unified, transparent interface to fetch daily stock prices across A-shares, H-shares, and US markets by abstracting popular data packages like massive, tushare, and akshare, hiding their implementation complexity.

To use the massive or tushare providers, you must set the required environment variables MASSIVE_KEY or TUSHARE_TOKEN.

📦 Installation

Install only the core:

pip install dumbmoney

🚀 Quick Start

OHLCV Data & Charts

from dumbmoney import get_ohlcv, plot

os.environ["TUSHARE_TOKEN"] = "xxxxxx"
os.environ["MASSIVE_KEY"] = "yyyyyy"

ohlcv = get_ohlcv("AAPL.US")
print(ohlcv.tail())

from dumbmoney.indicators import MovingAverage, MACD, RSI

ma5 = MovingAverage(name="MA5", window=5, ma_type="SMA")
ma5.compute(ohlcv)

ma20 = MovingAverage(name="MA20", window=20, ma_type="SMA")
ma20.compute(ohlcv)

ma60 = MovingAverage(name="MA60", window=60, ma_type="SMA")
ma60.compute(ohlcv)

vol_ma20 = MovingAverage(name="Vol_MA20", window=20, ma_type="SMA", input_col="volume")
vol_ma20.compute(ohlcv)

macd = MACD()
macd.compute(ohlcv)

rsi = RSI()
rsi.compute(ohlcv)

plot(
  ohlcv,
  indicators=[ma5, ma20, ma60, vol_ma20, macd, rsi],
  panels=[0, 0, 0, 1, 2, 3],
  title="AAPL Stock Price with Indicators (mplfinance)",
  backend="mpl", # available backends: "mpl", "plotly"
)

Strategy, Policy & Backtest

from dumbmoney import get_ohlcv
from dumbmoney.strategies import MACrossParams, MACrossStrategy
from dumbmoney.policies import LongFlatAllInConfig, LongFlatAllInPolicy
from dumbmoney.backtests.single_asset import SingleAssetBacktester

ohlcv = get_ohlcv("AAPL.US")
strategy = MACrossStrategy(MACrossParams(fast_window=20, slow_window=60))
policy = LongFlatAllInPolicy(LongFlatAllInConfig(max_long_pct=1.0, min_strength=0.5))
backtester = SingleAssetBacktester(initial_cash=100_000.0)
result = backtester.run(symbol="AAPL", ohlcv=ohlcv, strategy=strategy, policy=policy)
print(result.metrics)

✨ Features

  • 🔌 One function to fetch ohlcv data: get_ohlcv(symbol, start, end)
  • 🌏 Multiple markets supported
    • A-shares (.SH, .SZ)
    • H-shares (.HK)
    • US stocks (.US)
  • ⚙️ Automatic provider routing
    • A-shares → TuShare → AkShare
    • H-shares → TuShare → AkShare
    • US stocks → Massive → AkShare
  • 📐 Unified normalized output
    • open, high, low, close, volume
  • 🔁 Fallback logic
    • If one provider fails, the next takes over
  • 🧩 Extensible architecture (plug in new providers)

Important Notice

  • massive's free api key only supports retrieving data of US stocks from the most recent two years.
  • tushare's free token only supports retrieving data of A-shares.
  • akshare is free but depends on third-party data sources that may have variable reliability.

🏷️ Symbol Format

dumbmoney uses suffix-based symbol conventions:

Market Example Symbol
SH 600519.SH or 600519
SZ 000001.SZ or 000001
KCB 688235.SH or 688235
ETF_SH 513090.SH or 513090, 562500.SH or 562500, 588080.SH or 588080
ETF_SZ 159652.SZ or 159652
HK 0700.HK
US AAPL.US

Suffixes for H-shares and US stocks are required. A-share symbols may omit suffixes; however, if they are present, they must be valid and correct.

📘 API Reference

get_ohlcv(symbol, start, end, adjust="none")

Fetch normalized daily OHLCV prices.

  • Parameters
Name Type Description
symbol str Stock symbol with suffix (600519.SH, 0700.HK, AAPL.US)
start str Start time, e.g. "2025-01-01"
end str End time, e.g. "2025-12-01"
adjust str Adjustment mode, "none" | "forward" | "backward"
  • Returns

A pandas.DataFrame with:

Column Description
open Opening price
high High
low Low
close Close
volume Traded volume

Index is a DatetimeIndex named date.

plot(ohlcv, indicators=None, panels=None, title=None, backend="mpl", **kwargs)

Plot chart using the provided ohlcv data.

  • Parameters
Name Type Description
ohlcv pandas.DataFrame DataFrame containing OHLCV columns (open, high, low, close, volume)
indicators list or None List of technical indicators to plot. Default is None.
panels list or None List of panel where the indicators will be plotted on. The ohlcv data will be plotted on the first two panels.
title str or None Chart title. Default is None.
backend str Plotting backend to use. Currently support "mpl" (mplfinance, default) and "plotly" (plotly).
**kwargs - Additional keyword arguments passed to the plotting backend.
  • Returns

The plotter object which can be used to get the figure object by plotter.fig.

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

dumbmoney-0.3.0.tar.gz (18.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dumbmoney-0.3.0-py3-none-any.whl (30.8 kB view details)

Uploaded Python 3

File details

Details for the file dumbmoney-0.3.0.tar.gz.

File metadata

  • Download URL: dumbmoney-0.3.0.tar.gz
  • Upload date:
  • Size: 18.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for dumbmoney-0.3.0.tar.gz
Algorithm Hash digest
SHA256 ba6bba95d56ea10a394b020b04eebd0bf92194be7c9476514db4013cf2d241ee
MD5 b6806b3ef3ae600cae27a6927e8ebe12
BLAKE2b-256 4788466ba168f8a13c324b46a20a1a4185feef870f4f835b981e23e1326e3340

See more details on using hashes here.

File details

Details for the file dumbmoney-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: dumbmoney-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for dumbmoney-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 17da3e43f1e60587abe8045bc8d3f0c720df4d5632934ec59735f5ed686289f0
MD5 cf4d96466eeeb864a09634aff8f939fc
BLAKE2b-256 61917b42ef0a4948adb911f28fd3cbc44d528a6e94f306069034bfd0ee3ac4f6

See more details on using hashes here.

Supported by

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