Skip to main content

leanpeek

leanpeek

LEAN 백테스트 결과, 한눈에.
Lean backtest results, at a glance.

CI PyPI License: MIT Python 3.9 through 3.12


leanpeek은 뭐예요? / What is leanpeek

한국어

leanpeekQuantConnect LEAN 백테스트 결과 JSON을 읽어 한 줄 요약과 터미널 스파크라인(순자산곡선, 낙폭)을 보여주는 CLI 도구입니다. 원하면 작은 리포트(summary.csv, report.md)와 차트(순자산곡선 + 낙폭, 선택으로 티커 종가 오버레이)도 함께 만들어 줍니다.

삼성전자 Buy & Hold 백테스트를 quantconnect/lean Docker 이미지로 실행하면서 시작했습니다. LEAN 엔진은 215KB짜리 결과 JSON만 남기는데, 이 도구로 그 결과가 어떻게 돌아갔는지 파일을 열지 않고도 한눈에 알 수 있습니다.

English

leanpeek reads a QuantConnect LEAN backtest result JSON and prints one human sentence plus a terminal sparkline of the equity curve and drawdown. On request it also writes a small report (summary.csv, report.md) and a chart (equity + drawdown, optional ticker close overlay).

It began with a Samsung Electronics Buy-and-Hold backtest run on the quantconnect/lean Docker image. The engine leaves behind a 215 KB result JSON; leanpeek is a small CLI that makes it legible without opening the file.

빠른 시작 / Quick Start

pip install leanpeek      # PyPI에서 설치 / install from PyPI
# 소스에서 직접 설치하려면 / or from source: pip install -e .

# 백테스트 결과가 담긴 폴더를 지정하세요
# Point it at a directory containing SamsungBuyAndHold.json (+ optional samsung.csv)
leanpeek -r sample

출력 예시, 아래 값은 테스트로 고정한 값입니다. (The output below is pinned by tests.)

[local] 2024-01-01 ~ 2025-01-01: 1,000,000 -> 973,600 (net -2.640%), max drawdown 3.800%, Sharpe -3.919 | 1 order(s) (first: 2024-01-03 Buy 1 @ 79,600)
    equity  ▆▆▅▅▅▅▅▅▅▅▅▅▅▆▇▇▇▇▆▆▆▇▆▆▆▅▆▆▇▇▇███▇▇▆▆▆▆▆▅▄▃▃▃▃▂▂▂▂▂▁▁▂▂  (min 970,300 / max 1,008,200)
  drawdown  █▇▇▇▇▇▇▇▇▇▇▇▇▇████▇▆▆▇▇▇▆▆▆▇▇▇▇███▇▇▆▅▆▆▅▅▄▃▃▃▃▂▂▂▂▂▁▁▂▂  (min -3.8 / max 0.0)
reports -> leanpeek-out

옵션 / Options

옵션 한국어 English
--banner ASCII 아트 워드마크 출력 print the ASCII-art wordmark
--ascii-plain 블록 글자 대신 순수 ASCII 스파크라인 use pure-ASCII sparklines
--spark-width N 스파크라인 길이 조절 (기본 56) sparkline width in characters
--ticker-csv <파일> 가격 오버레이용 OHLCV CSV 지정 OHLCV CSV for the price overlay
-o <폴더> 리포트 산출물 폴더 지정 (기본 leanpeek-out) output directory

생성되는 파일 / What you get

파일 한국어 English
summary.csv LEAN statistics/runtimeStatistics를 표로 정리 LEAN metrics flattened to a table
report.md 한 줄 요약 + 지표 표 + 데이터 노트 the one-liner, a metrics table, notes
lean_report.png 순자산곡선 + 낙폭 차트 (종가 오버레이 포함 가능) equity + drawdown chart (optional close overlay)

python -m leanpeek -r sample처럼 모듈 실행도 가능합니다.

읽는 데이터 / What it reads

LEAN 결과 JSON은 이렇게 생겼습니다.

  • 순자산곡선: charts.Strategy Equity.series.Equity.values ([timestamp, open, high, low, close])
  • 주문: order id를 키로 하는 dict
  • 지표: statistics / runtimeStatistics

leanpeek은 위 구조만 파싱합니다. QuantConnect 계정이나 데이터 제공자, 네트워크가 필요 없습니다. 어떤 LEAN -results 폴더든 가리키면 됩니다.

English. A LEAN result JSON stores the equity curve under charts.Strategy Equity.series.Equity.values ([timestamp, open, high, low, close] rows), orders as a dict keyed by order id, and metrics under statistics / runtimeStatistics. leanpeek parses exactly that shape. No QuantConnect account, no data provider, no network.

검증 / Verification

한국어. 이 README에 적힌 숫자는 모두 sample/에 커밋된 실제 백테스트 런에서 재생성되며, tests/test_sample.py가 그 값을 고정합니다. CI는 Python 3.10과 3.12에서 ruffpytest를 돌립니다. 네트워크도 Docker도 필요 없습니다. README에 적힌 숫자가 지어낸 게 아니라 실제 실행 결과라는 걸 테스트가 보장합니다.

English. Every number in this README is regenerated from the committed run in sample/ and pinned by tests/test_sample.py. CI runs ruff + pytest on Python 3.10 and 3.12. No network, no Docker. If a future LEAN version changes the result format, the tests notice before the README drifts.

제약사항 / Limitations

  • 교육용 예제이며 투자 조언이 아닙니다. This is an educational example, not investment advice.
  • 이 샘플 전략은 KRX 수수료, 배당, 거래일, 환율을 모델링하지 않습니다 (LEAN 샘플 전략과 동일). 숫자는 실제 성과가 아니라 엔진과 포맷을 검증하는 용도로 보세요.
  • The bundled sample strategy does not model KRX fees, dividends, calendar, or FX. Treat the numbers as engine/format verification, not realistic performance.

감사의 글 / Acknowledgements

샘플 런은 공식 quantconnect/lean Docker 이미지와 QuantConnect LEAN 엔진으로 만들었습니다.

라이선스 / License

MIT © 2026 Noah TaeHwan. 자세한 내용은 LICENSE 파일을 보세요.

Download files

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

Source Distribution

leanpeek-0.1.2.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

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

leanpeek-0.1.2-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

Details for the file leanpeek-0.1.2.tar.gz.

File metadata

  • Download URL: leanpeek-0.1.2.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"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 leanpeek-0.1.2.tar.gz
Algorithm Hash digest
SHA256 868ed4645c6e6f7657aefb05167f981ea4d3f2c6ce6afbd1a2e2a2d79d920224
MD5 9459cd90c83d4dc98291b5ce631be5c8
BLAKE2b-256 864d92403dfb3e9a618e1bf406404e0a4206d7502b8e1e892aa062dac1d8dafe

See more details on using hashes here.

File details

Details for the file leanpeek-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: leanpeek-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 13.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"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 leanpeek-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 24005901ec454b9940f2b36cda12d6721a5f6636ca3a3cdfbc69c4cafb910db8
MD5 5497053cf6e3d53630894fbc7c8cc4a4
BLAKE2b-256 c4f263916410f265073bef956f6092ea00ba5937e78dc31b7abea0227fff3f19

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