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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
罗磊的独立博客
B
Blog
博客园_首页
A
About on SuperTechFans
有赞技术团队
有赞技术团队
V
V2EX
U
Unit 42
I
InfoQ
IT之家
IT之家
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
H
Help Net Security

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 应用商店
GitHub - Efixdata/exeria-charts: The high-performance ope...
katomek · 2026-06-23 · via Hacker News: Show HN
Exeriachartsok.mp4

Source-available, high-performance financial charting libraries for self-hosted web applications, trading platforms, and data-rich dashboards.

🚀 Live Playground📚 Documentation💻 Data Connectors

NPM Version License PRs Welcome Winner of the Benzinga Fintech Awards


✨ Why Exeria Charts?

Building a trading interface shouldn't require compromising on performance or user experience. Exeria Charts gives you the power of professional-grade financial charts, directly inside your application.

  • ⚡️ Native Integration: Render directly inside your app (Canvas/WebGL) instead of relying on sluggish <iframe> embeds.
  • 📊 Versatile Views: Ship candlestick, line, bar, and histogram views using a single, unified runtime.
  • Real-time Ready: Seamlessly update charts with historical candle batches or stream real-time ticks with sub-millisecond latency.
  • 🎨 Fully Customizable: Layer drawing tools, technical indicators, and UI controls perfectly themed to match your product shell.
  • 🔒 Self-Hosted & Secure: Keep your users' data secure by hosting the runtime entirely within your own infrastructure.

📦 Ecosystem

Exeria provides a robust ecosystem tailored to both framework-agnostic developers and React teams.

Core Libraries

Package Purpose License
@efixdata/exeria-chart Core chart runtime for vanilla JS or framework-managed integrations AGPL-3.0
@efixdata/exeria-chart-ui-react React toolbar & menu layer with prebuilt chart controls AGPL-3.0

Data Connectors

Connect to your favorite exchanges out-of-the-box.

Free & Open Source (MIT):
@efixdata/connector-binance, @efixdata/connector-bybit, @efixdata/connector-okx, @efixdata/connector-kraken, @efixdata/connector-kucoin, @efixdata/connector-coinbase, @efixdata/connector-gate, @efixdata/connector-ccxt, @efixdata/connector-coingecko.

Premium Vendor Connectors (EULA, source-available):
@efixdata/connector-twelve-data, @efixdata/connector-finage, @efixdata/connector-finnhub, @efixdata/connector-eodhd, @efixdata/connector-massive.

🚀 Quick Start

1. Installation

Install the core runtime and a data connector:

npm install @efixdata/exeria-chart @efixdata/connector-binance

(Optional: Add @efixdata/exeria-chart-ui-react for the React UI layer)

2. Basic Setup (Vanilla JS/TS)

import { createChart, type Candle, type Interval } from "@efixdata/exeria-chart";

// 1. Prepare your data
const candles: Candle[] = [
  { stamp: 1715472000000, o: 101.2, h: 103.1, l: 100.9, c: 102.8, v: 3200 },
  { stamp: 1715475600000, o: 102.8, h: 104.2, l: 102.1, c: 103.9, v: 2950 },
];

const interval: Interval = { symbol: "1h", milis: 60 * 60 * 1000 };

// 2. Initialize the chart
const container = document.getElementById("chart-root");
if (!container) throw new Error("Missing chart container");

const chart = createChart({ container });

// 3. Mount and render
await chart.setMainSeriesData(candles, interval);
chart.init();

📖 Documentation & Resources

🛠 Development

Want to build Exeria locally or contribute? This repository is a monorepo powered by Turbo.

# Install dependencies
npm install

# Build all packages
npm run build

# Run local playground
npm --prefix apps/web run dev

# Run local docs site
npm --prefix apps/docs run dev

See our CONTRIBUTING.md for detailed guidelines.

⚖️ Licensing

Exeria Charts operates under a dual-license model to support both the open-source community and commercial platforms.

  • Open Source (AGPL-3.0-or-later): Use the core freely for projects that comply with the AGPL v3 (including source obligations for distributed or network-facing use).
  • Commercial License: Required for closed-source products. Purchasing a commercial license from Efix Data Sp. z o. o. removes the AGPL restrictions. Contact us for startup-friendly pricing!

Note: Data connectors have their own licenses (MIT for public exchanges, EULA for premium vendors).

Please read LICENSE, LICENSING.md, and our Licensing Guide carefully before shipping to production.


Made with ❤️ by the Exeria Team.