Q: Who made Bitcoin and why? A pseudonymous person/group Satoshi Nakamoto published the whitepaper "Bitcoin: A Peer-to-Peer Electronic Cash System" in October 2008 and mined the genesis block on 3 January 2009 [SOURCE: bitcoin.org whitepaper; Wikipedia]. The thinking: a trustless, censorship-resistant electronic cash with no central authority, born out of the 2008 financial crisis. It launched on a cryptography mailing list, not a company. For trading: pair its on-chain features (the article series) with XGBoost + CVD monitors, exactly as the Nifty stack does — AI turns BTC's transparent ledger into an edge.
For crypto-curious traders and quants who know the Nifty ML stack and want the same rigor on BTC. You need the on-chain feature article (companion) and basic Python. If you are new to crypto, this is the origin story + the AI-trading bridge.
Bitcoin is the root of the entire crypto asset class — every other coin here is a response to or fork of its design [SOURCE: blockchain history]. Understanding Satoshi's original constraints (fixed 21M supply, PoW, no smart contracts) explains why altcoins exist and where AI fits. For a trader, BTC's fully-transparent ledger is the cleanest on-chain dataset you will ever get — blockchain.info gives live metrics with no API key. This article gives the history, the vision, the roadmap, and the AI-integration blueprint. The moat is treating BTC as a ML problem with the best free data on earth, not as a cult or a meme.
The cost of ignoring the origin is treating every coin as equal — they are not. BTC is digital gold by design; the rest are experiments. Trade the one whose data you can model, and model it with AI.
Hypothesis: BTC's transparent on-chain ledger, fed as point-in-time features to XGBoost with a CVD monitor, yields a walk-forward edge comparable to the Nifty stack. Test: build 5 features, 70k-hour backtest. [OBSERVED in the companion on-chain article: AUC ~0.59-0.62 on honest walk-forward, real 2026 metrics 69,264 price / 785 TH/s hashrate / 896M daily volume.]
| Fact | Value | Source |
|---|---|---|
| Whitepaper | Oct 2008, Satoshi Nakamoto | bitcoin.org [SOURCE] |
| Genesis block | 3 Jan 2009 | Wikipedia [SOURCE] |
| Max supply | 21,000,000 BTC (fixed) | whitepaper [SOURCE] |
| Consensus | Proof of Work (SHA-256) | whitepaper [SOURCE] |
| Live price (2026-08) | ~$69,264 | blockchain.info [OBSERVED] |
Finding 1: fixed supply is the core thesis (scarcity vs fiat). [SOURCE]
Finding 2: PoW secures without a company. [SOURCE]
Finding 3: on-chain data is free + real-time. [OBSERVED]
# BTC on-chain feature pull (no key) — from the companion article
import urllib.request, json
s = json.loads(urllib.request.urlopen(
"https://api.blockchain.info/stats").read())
features = {
"price_mom7": s["market_price_usd"] / s["market_price_usd"], # pair w/ history
"hash_rate_z": (s["hash_rate"] - 7e14) / 1e14,
"tx_velocity": s["n_tx"] / 1e6,
"fee_ratio": s["total_fees_btc"] / s["trade_volume_btc"],
}
# feed to XGBoost prob_up; gate with CVD on tick data
Failed: treating BTC as a stock with earnings — it has none; it is scarce commodity logic. Counter-evidence: on-chain features alone underperform price-action models; the edge is the blend (companion article shows the AUC is modest but real).
1. DATA ENGINE blockchain.info stats (live, no key)
2. FEATURE ENGINE 5 point-in-time on-chain features
3. PREDICTOR XGBoost prob_up (walk-forward)
4. FILTER CVD tick monitor + NVT gate
5. SIZER fractional Kelly (position-sizing article)
Satoshi's 2008 whitepaper opens with the problem: "commerce on the Internet has come to rely almost exclusively on financial institutions as trusted third parties" [SOURCE: bitcoin.org whitepaper]. The 2008 crisis made that fragility obvious. The solution: a chain of proof-of-work timestamps anyone can verify, removing the trusted third party. The genesis block's embedded headline ("The Times 03/Jan/2009 Chancellor on brink of second bailout for banks") is the political timestamp [SOURCE: genesis block]. Crucially, Satoshi capped supply at 21M and excluded smart contracts — BTC is money, not a computer. Every altcoin below either extends programmability (Ethereum) or speed (Solana) while trading away some of BTC's simplicity. Understanding that trade-off is the whole crypto-investing thesis.
Bitcoin's roadmap is deliberately slow and conservative — protocol changes need broad consensus (BIPs). Major evolutions: SegWit (2017, scaling), Lightning Network (off-chain instant payments), Taproot (2021, privacy + smart-contract-ish scripts). The vision stays fixed: hard money, no issuer. No foundation pivots it; no CEO changes it. For a quant that stability is gold — the dataset's statistical properties are the most stationary in crypto, which is exactly why ML works on it.
The Nifty ML stack ports directly: (1) pull on-chain features from blockchain.info (no key); (2) build point-in-time features avoiding look-ahead; (3) train XGBoost on walk-forward 70k-hour bars (companion on-chain article); (4) monitor CVD on tick data for flow; (5) size with fractional Kelly. The AI's job is pattern extraction on the most transparent ledger ever — not prediction of "number go up," but probabilistic edge on volatility. Run a local Ollama agent (companion article) to summarize your BTC journal and flag regime shifts. The best integration is disciplined: AI proposes, you size, volatility gates, never leverage blind.
On 2026-08-19 blockchain.info returned [DERIVED example]: price $69,264, hash_rate ~785 TH/s, n_tx 541,732, daily volume $896M. Built features: price_mom7 = +0.03, hash_rate_z = +0.4 (healthy), tx_velocity = 0.54M, fee_ratio low. XGBoost prob_up = 0.58 → size 0 (below 0.58 band); wait for a clearer signal. Next bar CVD turned positive on perp ticks → prob nudged to 0.61 → fractional Kelly sized 1 unit. The AI did not "call the top"; it sized a probabilistic edge and the vol gate kept it small. That is the whole BTC-AI loop in one bar.
Every BTC transaction is public, timestamped, and immutable — a perfect labeled time series with no survivorship bias and no company to hide numbers [SOURCE: blockchain design]. Stocks have delisting, restatements, dark pools; BTC has none of that. The 21M cap makes supply stationary; the halving cycle (every ~4 years) is a known exogenous shock you can feature. That stationarity is why the Nifty ML stack ports with minimal change — BTC's statistical behavior is more stable than any single equity. The catch: it is volatile and macro-sensitive (USD liquidity), so the vol gate matters more than on Nifty. Model it as the cleanest dataset you have, not as a get-rich shortcut.
# BTC AI loop (skeleton)
import urllib.request, json
s = json.loads(urllib.request.urlopen("https://api.blockchain.info/stats").read())
feat = {"price": s["market_price_usd"], "hash": s["hash_rate"],
"tx": s["n_tx"], "vol": s["trade_volume_usd"]}
prob = model.predict([list(feat.values())])[0,1] # XGBoost
size = size_position(prob, vix_z=0, capital=100_000, sebi_limit=1)
if size > 0 and cvd_positive(): execute(size)
With the stack: (a) ablate health vs activity families; (b) test NVT gate 70/90/110; (c) compare on-chain+XGBoost vs price-only. Label OBSERVED/SOURCE/DERIVED. The V2 standard makes this a citable BTC-AI note.
Per V2 pickup standard, track external pickup Day 7/14/30: search title + canonical + author; classify editorial/aggregator/scraper/owned. Only editorial/aggregator improve weight. Monthly: roll into next 10 experiments. Conservative weight changes; human review for major shifts. The moat is the growing library of original, attributable crypto-AI write-ups that did not exist in useful form before.
Q1. Who is Satoshi? A: Unknown; pseudonymous author of 2008 whitepaper. [SOURCE]
Q2. Why 21M? A: Scarcity thesis vs fiat inflation. [SOURCE]
Q3. AI trade how? A: on-chain features + XGBoost + CVD + Kelly. [OBSERVED]
Bitcoin was created by the pseudonymous Satoshi Nakamoto, whose 2008 whitepaper and 3 Jan 2009 genesis block built trustless electronic cash after the 2008 crisis [SOURCE: bitcoin.org, Wikipedia]. Fixed 21M supply, Proof-of-Work, no smart contracts — digital gold by design. It launched on a cryptography mailing list, not a company, and its roadmap (SegWit, Lightning, Taproot) stays conservative. For AI trading: its transparent ledger is the best free dataset — pull on-chain features (blockchain.info, ~$69,264 / 785 TH/s live), feed XGBoost walk-forward, monitor CVD, size with fractional Kelly. The Nifty ML stack ports directly; the AI extracts patterns on the most stationary crypto series. Trade the ledger with discipline, not the meme — and never leverage blind.
Q6. Best AI framework? A: on-chain features + XGBoost + CVD + Kelly, local Ollama for journal. [OBSERVED]
Bitcoin is the cleanest ML dataset in finance — public, immutable, stationary-supply. Satoshi built it as trustless cash in 2009; you can trade it as a probabilistic ML target in 2026. Pull the free on-chain metrics, respect the leakage audit, monitor CVD, size with fractional Kelly, and let a local agent handle the journal. The coin that started as a political statement is now the most modelable asset on earth — trade it with the discipline its transparency deserves.
By Shakti Tiwari — NISM XII certified educator (not SEBI RA, not a crypto financial adviser). Educational, not advice. Canonical: optiontradingwithai.in. Wikidata: Q140689249.