AutomationIntermediate12 min read

Build a Live Finance Radar with WorldMonitor (Open-Source Dashboard)

Self-host WorldMonitor, an open-source real-time intelligence dashboard, and assemble a live Finance radar tracking stock exchanges, commodities, crypto, and a market composite.

Build a Live Finance Radar with WorldMonitor (Open-Source Dashboard)

Overview

Paid market terminals cost thousands a year. WorldMonitor — an open-source (82k-star) "real-time global intelligence dashboard" by developer koala73 — gives you a startlingly capable alternative you run yourself. It aggregates live news, geopolitical events, infrastructure, and markets into a single situational-awareness screen, with AI-written briefs that can run locally (via Ollama, no API keys). Best of all, it ships a dedicated finance build with a Finance radar that tracks stock exchanges, commodities, crypto, and a market composite — and in this guide you'll stand up your own in about 15 minutes.

The WorldMonitor finance dashboard — a real-time "GLOBAL SITUATION" map with stock-exchange, financial-center, and commodity-hub layers, plus live news feeds.
The WorldMonitor finance dashboard — a real-time "GLOBAL SITUATION" map with stock-exchange, financial-center, and commodity-hub layers, plus live news feeds.

WorldMonitor is one codebase that ships six site variants — world, tech, finance, commodity, happy, and energy — so the "finance" build is purpose-tuned for markets. It's free and AGPL-3.0 licensed, runs with no configuration out of the box, and you can try the hosted version before you clone a thing. This is an honest, hands-on tour — including where it is not a substitute for a professional trading terminal.


Difficulty: Intermediate (a little terminal) · You'll need: Node.js and a terminal; optionally Ollama for free local AI briefs · Cost: free and open-source; you only pay for optional premium data feeds · Updated: August 2026

What You'll Be Able To Do

  • Run WorldMonitor's finance variant locally (or use the hosted demo first)
  • Turn on map layers for stock exchanges, financial centers, and commodity hubs
  • Add live panels for markets, commodities, and crypto — and read the market composite
  • Get AI-written market briefs running locally with no API keys
  • Understand the honest limits — this is aggregated intelligence, not trading advice
  • Why This Matters

    A situational-awareness dashboard used to mean a Bloomberg terminal and a five-figure invoice. WorldMonitor puts a comparable layout — a live map, curated newswires, AI briefs, and a market watchlist — into an app you own and can extend. Because it's open-source, nothing is locked behind a subscription, and because the AI summaries can run on local models via Ollama, your briefs cost nothing and your data stays on your machine.

    For a solo founder, trader-hobbyist, or analyst, that's leverage: one screen that ties markets to the news and events moving them, self-hosted and hackable, with a programmatic MCP server, REST API, and CLI if you want to build on top of it.

    The Finance radar rolls stock exchanges, commodities, and crypto into a single market-composite read.
    The Finance radar rolls stock exchanges, commodities, and crypto into a single market-composite read.

    The honest frame, up front: this is a monitoring tool, not a money machine. It aggregates public feeds into a great overview — it does not give you an edge, real-time tick-level execution data, or investment advice. Treat it as a radar for awareness, and keep every trading decision (and its risk) firmly your own.

    Before You Start


    koala73/worldmonitor (GitHub)

    Open-source (AGPL-3.0) real-time global intelligence dashboard — AI news aggregation, geopolitical monitoring, and markets in one interface. 82k+ stars.

    github.com

    Build Your Finance Radar

    Step 1: Try the hosted demo, then clone

    The fastest look is the hosted finance build at finance.worldmonitor.app — no install. When you're ready to run your own, clone and start the finance variant:

    
    git clone https://github.com/koala73/worldmonitor.git
    cd worldmonitor
    npm install
    npm run dev:finance
    

    That's it — open http://localhost:3000 (change the port with DEV_PORT if needed) and you have the finance dashboard running locally. There are sibling variants too — npm run dev:commodity, npm run dev:tech — from the same codebase.

    WorldMonitor on GitHub — 82k+ stars, AGPL-3.0, and tagged agent / ai / dashboard / mcp / osint. The <code class=data, cli, and docs folders are worth a look." title="" loading="lazy" class="w-full h-auto rounded-lg border border-border" />
    WorldMonitor on GitHub — 82k+ stars, AGPL-3.0, and tagged agent / ai / dashboard / mcp / osint. The data, cli, and docs folders are worth a look.

    Step 2: Read the map — turn on the finance layers

    The centerpiece is the GLOBAL SITUATION map. Toggle on the layers that matter for markets: STOCK EXCHANGES, FINANCIAL CENTERS, and COMMODITY HUBS (there are more — central banks, chokepoints, undersea cables, sanctions). Switch between the 2D flat map and 3D globe, and use the time range (1H / 6H / 24H / 48H / 7D) to see how activity clusters.

    Step 3: Add the Markets watchlist

    Open the MARKETS panel to get a live watchlist of global indices and equities — S&P 500, NASDAQ, Dow, Hang Seng, Sensex, Nifty 50, Shanghai Composite, and dozens of large-caps — each with price and daily change. This is your stock-exchange layer of the radar.

    Step 4: Add commodities and crypto panels

    WorldMonitor is panel-based — use + ADD PANEL to build out the rest of the radar:

  • Commodities: add METALS & MATERIALS, ENERGY COMPLEX, and COMMODITIES NEWS
  • Crypto: add CRYPTO & DIGITAL ASSETS (plus CRYPTO SECTORS and AI TOKENS if you want the granularity)
  • Now stock exchanges, commodities, and crypto are all on one screen.

    Step 5: Read the market composite (and macro stress)

    The Finance radar's point is synthesis: it rolls those asset classes into a market composite view so you can read the whole market's posture at a glance rather than ticker-by-ticker. Add the MACRO STRESS panel alongside it for an aggregate risk read, and let the composite — not any single line — set your sense of the day.

    Step 6 (optional): Local AI briefs with Ollama

    The AI INSIGHTS panel writes a live World Brief from the aggregated stories. Point it at a local model through Ollama and those summaries cost nothing and never leave your machine — the open-source, privacy-friendly version of an analyst desk.

    WorldMonitor — live finance build (hosted demo)

    The finance variant running live: global-situation map, markets watchlist, AI world brief, and addable commodity/crypto/macro panels. Try it before you clone.

    finance.worldmonitor.app

    3 Common Mistakes to Avoid


  • Mistaking a radar for advice. WorldMonitor aggregates public feeds for awareness. It is not investment advice, not a signal service, and not real-time execution data — every trade and its risk stay yours.

  • Ignoring the AGPL-3.0 license. It's free to run and modify, but AGPL has real obligations if you host a modified version for others (you must share your source). Fine for personal use; read the license before you deploy it publicly.

  • Assuming every feed is gospel. Data sources vary in latency, coverage, and reliability; some need API keys (see .env.example), some are rate-limited. Cross-check anything you'd act on.
  • Pro Tips

  • Start hosted, then self-host. Kick the tires on finance.worldmonitor.app first; only clone once you know you want your own instance to customize.
  • Run Ollama for free briefs. Local AI means no per-summary cost and no data leaving your machine — the single biggest reason to self-host this.
  • Keep the radar focused. Add only the panels you'll actually watch (markets + one commodities + crypto + composite). A cluttered dashboard is a dashboard you stop reading.
  • Build on the API. There's an MCP server, a REST API (OpenAPI), and a CLI (npx worldmonitor tools) — wire the composite into your own alerts or scripts.
  • Your Challenge


    Summary

    WorldMonitor turns a five-figure market terminal into a free, open-source dashboard you own — and its finance build gives you a real Finance radar spanning stock exchanges, commodities, crypto, and a market composite, with local AI briefs on top. Clone it, add the panels you'll watch, read the composite, and remember what it is: a radar for awareness, not advice. The overview is powerful; the decisions stay yours.

    koala73/worldmonitor (GitHub)

    Star it, read the docs and data-sources catalog, and explore the MCP server, REST API, and CLI to build on top of your Finance radar.

    github.com

    Sources: koala73/worldmonitor (GitHub) · WorldMonitor — hosted app · Finance build

    Learn AI, after work

    Track your progress, earn XP, and unlock more free tutorials in the AfterWork Bytes app.

    Open this tutorial in the app

    More AI tutorials