Skip to main content

Core Python research engine for astro-financial pattern analysis.

Project description

Hermetic Alpha Library

Hermetic Alpha Library is the core research engine for exploring statistical relationships between astrological configurations and financial market behavior.

The library is designed to calculate planetary positions, derive astrological aspects, transform them into quantitative features, and evaluate their relationship with market outcomes such as bullish probability, local tops, local bottoms, and forward returns.

This project does not claim deterministic prediction. It provides transparent tools for statistical research, event studies, and reproducible backtesting.

Hermetic Alpha is not financial advice and should not be used as a standalone trading signal. Any observed relationship between astrological features and market outcomes must be interpreted as exploratory until it is supported by adequate sample size, baseline comparison, confidence intervals, and validation on data that was not used to discover the pattern.

See the anti-overfitting guide for the project rules on responsible probability reporting, leakage prevention, and cherry-picking control.

Goals

  • Compute planetary positions and astrological aspects for historical timestamps.
  • Convert chart configurations into machine-readable features.
  • Analyze whether specific aspects correlate with market behavior.
  • Support event-study workflows for assets such as Bitcoin.
  • Provide reusable Python APIs for CLI, notebooks, and future web applications.

Initial Scope

The first version focuses on:

  • Natal/transit-style chart calculation for timestamps.
  • Major aspects: conjunction, opposition, trine, square, sextile.
  • Configurable orb ranges.
  • Market return labels across multiple horizons.
  • Conditional probability analysis.
  • Event-study summaries.
  • Exportable CSV/JSON results.

Planned Python Package

from hermetic_alpha.analysis import summarize_event_study
from hermetic_alpha.astro import detect_aspect
from hermetic_alpha.labels import add_forward_returns

closes = [100, 110, 99, 120, 95, 128]
labels = add_forward_returns(closes, horizons=[1, 7, 30])

aspect = detect_aspect(
    body_a="sun",
    longitude_a=10,
    body_b="jupiter",
    longitude_b=12,
    aspect="conjunction",
    max_orb=3,
)

assert aspect is not None
result = summarize_event_study(labels, event_indexes=[0, 1], horizon=1)
print(result)

Export library result objects without adding runtime dependencies:

from hermetic_alpha.exports import to_csv, to_json

json_text = to_json(result)
csv_text = to_csv([result])

CSV export is intentionally limited to flat rows. Flatten nested research structures before writing CSV so downstream column names remain explicit.

Repository Role

This repository contains only the reusable core logic. User-facing tools such as command-line interfaces, APIs, and dashboards should call this library instead of duplicating analysis logic.

Development Quickstart

Install package

Jika hermetic-alpha sudah dipublish ke PyPI, ini adalah cara paling sederhana:

python3 -m pip install hermetic-alpha

Jika belum dipublish, install dari Git tag/repository GitHub:

python3 -m pip install "git+https://github.com/wauputr4/hermetic-alpha-library.git@v0.1.2"

Atau dari arsip tag GitHub (jika tersedia jaringan ke GitHub):

python3 -m pip install "https://github.com/wauputr4/hermetic-alpha-library/archive/refs/tags/v0.1.2.tar.gz"

Opsional fitur ephemeris nyata:

python3 -m pip install "git+https://github.com/wauputr4/hermetic-alpha-library.git@v0.1.2#egg=hermetic-alpha[ephemeris]"

Untuk kontribusi pengembangan:

python3 -m pip install -e ".[dev,ephemeris]"

Create a local development environment with uv when it is available:

uv venv
uv pip install -e ".[dev]"
uv run python3 -m pytest -q

Or use the standard library venv plus pip:

python3 -m venv .venv
. .venv/bin/activate
python3 -m pip install -U pip
python3 -m pip install -e ".[dev]"
python3 -m pytest -q

The pyproject.toml pytest configuration sets pythonpath = ["src"], so tests can import the package directly from the source tree even before an editable install is created.

python3 examples/basic_event_study.py

Fetch normalized BTC daily candles through the first market provider and write the local JSON cache with the library storage helper:

python3 examples/provider_to_cache.py data/btc-daily.json --start 2024-01-01 --end 2024-01-31

Yahoo Finance is a convenient research input, not an audit-grade market feed.

When the development extra is installed:

python3 -m pytest -q

Quick Start Penelitian

Langkah cepat untuk jalankan riset dari nol:

  1. Buat label market dari close:
python3 - <<'PY'
from hermetic_alpha.labels import add_forward_returns
returns = add_forward_returns([100, 110, 99, 120, 95, 128], [1, 7, 30])
print(returns)
PY
  1. Jalankan contoh alur sintetik lengkap (conjunction Sun-Moon vs return 1d):
python3 examples/synthetic_astronomy_return_case.py
  1. Jalankan contoh real-market (data harga nyata dari Yahoo Finance):
python3 examples/real_market_astronomy_return_case.py

Untuk mode yang lebih kuat (multi-asset dan walk-forward), jalankan:

python3 examples/real_market_astronomy_return_case.py \
  --assets BTC-USD,ETH-USD,SOL-USD \
  --start 2025-01-01 \
  --end 2026-01-01 \
  --horizon 1 \
  --aspects conjunction,square \
  --bodies sun,moon \
  --max-orb 1.0 \
  --walk-forward-train-size 200 \
  --walk-forward-test-size 60 \
  --walk-forward-step-size 60
  1. Baca flow riset + catatan anti-overfitting di:

License

MIT

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

hermetic_alpha-0.1.3.tar.gz (105.0 kB view details)

Uploaded Source

Built Distribution

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

hermetic_alpha-0.1.3-py3-none-any.whl (44.3 kB view details)

Uploaded Python 3

File details

Details for the file hermetic_alpha-0.1.3.tar.gz.

File metadata

  • Download URL: hermetic_alpha-0.1.3.tar.gz
  • Upload date:
  • Size: 105.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hermetic_alpha-0.1.3.tar.gz
Algorithm Hash digest
SHA256 7102ad8eb3425971877fa2c035d2ba6f1034c0643bebfe4917103c3e29a9dc2b
MD5 6618968e95a369ffde66692771b395e5
BLAKE2b-256 4c1be0587d1bc9902b62013997f441cb61422d73292b4c550c747fb33ba73ddc

See more details on using hashes here.

File details

Details for the file hermetic_alpha-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: hermetic_alpha-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 44.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hermetic_alpha-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9a86b93fb270350d9844cac7b8132aa2392126abf5e4f070cc62e9514ee99ed5
MD5 00f415a3f100ecc6614fa55a026c2db4
BLAKE2b-256 33c784b14557ad12e092c9041e6475c0dbf6bf3bb49b8fa615723ae609899501

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