惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
Vercel News
Vercel News
U
Unit 42
L
LangChain Blog
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
I
InfoQ
P
Proofpoint News Feed
D
DataBreaches.Net
Martin Fowler
Martin Fowler
H
Help Net Security
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
Custom Portfolio Rebalance Alerts | AlgorithmicFIRE
algorithmicf · 2026-06-11 · via Hacker News: Show HN

Query the live status endpoint programmatically to retrieve target allocations for all your subscribed portfolios consolidated in one single request:

curl -X GET "https://algorithmicfire.com/custom-portfolio/status?key=YOUR_KEY"

Response payload contains a consolidated list of your portfolios, rebalance change flags, and pre-formatted HTML email bodies.

JSON Response Fields

Field Description
email User email address linked to the API Key.
any_portfolio_changed Boolean flag indicating if any portfolio target weights shifted since the last query.
changed_portfolio_names Comma-separated friendly names of portfolios that changed.
email_body_html Pre-formatted HTML email summary table with rebalance updates. (Do NOT parse this - format and contents are subject to change)
is_trading_day_today Whether today is a US stock market trading day (computed in Eastern Time). Warning: Do not use this to gate scheduler executions. If you check this flag past midnight Eastern Time, or on a weekend or market holiday, it may flip to false (even if the calculations for the prior trading day are complete). To avoid missing updates, always gate scheduler executions with daily_update_complete_today instead.
daily_update_complete_today Whether today's post-market-close calculations have completed (typically around 4:30 PM EST). Always wait for this to be `true` before acting on signal changes.
portfolios List of portfolio status objects containing name, change flags, and allocations.

Sample JSON Response Payload

{
  "email": "user@example.com",
  "any_portfolio_changed": true,
  "changed_portfolio_names": "My Retirement Mix",
  "email_body_html": "<p>Consolidated email body summary table...</p>",
  "is_trading_day_today": true,
  "daily_update_complete_today": true,
  "portfolios": [
    {
      "portfolio_name": "My Retirement Mix",
      "portfolio_state_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
      "has_changed": true,
      "target_weights": {
        "SPY": 60.0,
        "QQQ": 20.0,
        "CASH": 20.0
      },
      "allocations": [
        {
          "ticker": "SPY",
          "strategy": "ER_MMA",
          "style": "investing",
          "weight": 60.0,
          "signal": 1.0,
          "signal_desc": "100% Invested"
        },
        {
          "ticker": "QQQ",
          "strategy": "ER_MMA",
          "style": "investing",
          "weight": 40.0,
          "signal": 0.5,
          "signal_desc": "50% Invested"
        }
      ]
    }
  ]
}