<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Fengyu WANG</title>
    <link>https://www.fengyuwang.com/en/blog/</link>
    <description>Fengyu WANG — Blog</description>
    <language>en</language>
    <generator>Hugo</generator>
    <atom:link href="https://www.fengyuwang.com/en/blog/" rel="self" type="application/rss+xml" />
    <lastBuildDate>Wed, 16 Sep 2026 16:50:24 &#43;0800</lastBuildDate>
    
    <item>
      <title>The Two-Layer Interface Principle: Software Interaction Architecture for the AI Era</title>
      <link>https://www.fengyuwang.com/en/blog/posts/two-layer-interface/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/two-layer-interface/</guid>
      <description>&lt;h2 id=&#34;abstract&#34;&gt;Abstract&lt;/h2&gt;
&lt;p&gt;Generative AI has pushed the graphical-interface paradigm of &amp;ldquo;operating software,&amp;rdquo; unchanged for four decades, to the point of paradigm replacement. Based on a complete audit and refactoring practice across a one-person software company (the FengProj ecosystem: investment research, content production, and private-cloud products — three real systems), this paper proposes and tests the &lt;strong&gt;Two-Layer Interface Principle (2LIP)&lt;/strong&gt;: any software system should keep only two interaction layers — (1) the &lt;strong&gt;conversation layer&lt;/strong&gt;, natural-language exchange between human and AI (with Skills as its scripted form), carrying all daily operations; (2) the &lt;strong&gt;viewing layer&lt;/strong&gt;, a read-only graphical interface that exists only for &amp;ldquo;people who do not operate.&amp;rdquo; Data always lives in local files, and interaction output flows into a backup-able pipeline. The paper places this principle against three parallel industry currents — YC&amp;rsquo;s &amp;ldquo;Chat is the interface,&amp;rdquo; Generative UI, and the MCP-UI architecture of the OpenAI Apps SDK — and shows that all three converge structurally on the same proposition. It further argues that when AI becomes the first operator, documents (AGENTS/MISSION/todo/logs) themselves constitute a &lt;strong&gt;third interface&lt;/strong&gt; — a governance interface facing the AI — extending &amp;ldquo;interface&amp;rdquo; from two ends, human and machine, into a triadic structure of human–AI–document. The case section presents a compliance audit of five systems and their consolidation paths, showing that the principle lands on both personal production systems and external commercial products.&lt;/p&gt;
&lt;h2 id=&#34;1-the-problem&#34;&gt;1. The Problem&lt;/h2&gt;
&lt;p&gt;The classic software interaction model is client-centric: users click and fill forms in a graphical interface, and results settle into the client&amp;rsquo;s database; the interface is both the operating entrance and the data container. Two premises implicit in this model no longer hold in 2026:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Operations must be initiated by humans.&lt;/strong&gt; Once an AI Agent can be entrusted with the full pipeline — topic selection, drafting, research, publishing, diagnostics — &amp;ldquo;humans press buttons&amp;rdquo; is demoted from necessity to option.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Results must stay in the client.&lt;/strong&gt; Once data has a local-file source of truth (Markdown/JSON/SQLite), the client degrades into a view, and backup and migration become file-level operations rather than database engineering.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;From this the author re-conceived the whole shape of software: &lt;strong&gt;I only need to talk to the AI — because most of the work was textual exchange to begin with; UI exists for two kinds of moments: letting people who don&amp;rsquo;t understand see it, and making it convenient for those who look.&lt;/strong&gt; This paper formalizes that intuition into an auditable engineering principle and validates it on a real multi-system ecosystem.&lt;/p&gt;
&lt;h2 id=&#34;2-the-two-layer-interface-principle&#34;&gt;2. The Two-Layer Interface Principle&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Principle (Two-Layer Interface Principle, 2LIP)&lt;/strong&gt;: a software system built for the AI era keeps only two interaction layers —&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Layer&lt;/th&gt;
          &lt;th&gt;Serves&lt;/th&gt;
          &lt;th&gt;Form&lt;/th&gt;
          &lt;th&gt;Duty&lt;/th&gt;
          &lt;th&gt;Anti-pattern&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;&lt;strong&gt;Conversation (L1)&lt;/strong&gt;&lt;/td&gt;
          &lt;td&gt;Operators (human) and AI&lt;/td&gt;
          &lt;td&gt;Natural language + Skills (scripted instructions)&lt;/td&gt;
          &lt;td&gt;All daily operations: CRUD, workflow triggers, exception handling&lt;/td&gt;
          &lt;td&gt;Burying operations in buttons the AI cannot reach&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;&lt;strong&gt;Viewing (L2)&lt;/strong&gt;&lt;/td&gt;
          &lt;td&gt;Watchers (human, usually non-operating)&lt;/td&gt;
          &lt;td&gt;Read-only Web UI / dashboards&lt;/td&gt;
          &lt;td&gt;Displaying state and results for understanding, acceptance, and external demo&lt;/td&gt;
          &lt;td&gt;Building write operations into the viewing layer&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Plus two resource constraints:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;C1 (data local)&lt;/strong&gt;: the source of truth is always a local file or local database; any client or cloud service holds only copies or views.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;C2 (output backup-able)&lt;/strong&gt;: all interaction output lands in a versionable, multi-replica sync pipeline (git dual-push, multi-device sync).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Whether a system complies with 2LIP takes four questions: Is the data local? Do daily operations go through conversation? Is the UI read-only? Can the output be backed up?&lt;/p&gt;
&lt;h2 id=&#34;3-industry-alignment-three-currents-converging&#34;&gt;3. Industry Alignment: Three Currents Converging&lt;/h2&gt;
&lt;h3 id=&#34;31-chat-is-the-interface&#34;&gt;3.1 &amp;ldquo;Chat is the interface&amp;rdquo;&lt;/h3&gt;
&lt;p&gt;In 2026, Y Combinator&amp;rsquo;s Gary Tan and Jared publicly revised their earlier stance, confirming that &amp;ldquo;conversation as the interface&amp;rdquo; is the correct form for AI applications (the Pete Koomen discussion spread widely). Products echo it: neww.ai&amp;rsquo;s slogan &amp;ldquo;Chat is the interface. The operating system is the product.&amp;rdquo;; arg.ai simply cancelled all feature pages, with the Agent reading and writing files directly through chat; XBuild, for contractors, made conversation the estimating flow itself. This shows 2LIP&amp;rsquo;s L1 layer has been accepted by the industry as the main channel, not a bolted-on chatbot.&lt;/p&gt;
&lt;h3 id=&#34;32-generative-ui-the-viewing-layer-need-not-be-pre-built&#34;&gt;3.2 Generative UI: the viewing layer need not be pre-built&lt;/h3&gt;
&lt;p&gt;The further question: does L2 require &amp;ldquo;careful development&amp;rdquo;? Generative UI answers no — the interface is assembled on demand by the Agent for the problem at hand (cards, charts, whole pages of HTML), not a fixed layout predefined by designers (definitions from Google Cloud, CopilotKit, and Decagon converge). Its argument: dashboards make people dig through filters for answers, while GenUI &amp;ldquo;turns the interface into a response, not a destination.&amp;rdquo; Yet 2026 practice reflection (e.g., the r/UXDesign community) points out equally: &lt;strong&gt;fixed dashboards that show everything at a glance are irreplaceable in predictability and glanceability&lt;/strong&gt;. The two combine into 2LIP&amp;rsquo;s position: keep the viewing layer, but skip the fine finish — fixed views cover &amp;ldquo;one glance a day,&amp;rdquo; generated views cover &amp;ldquo;details right now.&amp;rdquo;&lt;/p&gt;
&lt;h3 id=&#34;33-mcp-apps--openai-apps-sdk-growing-a-visualization-onto-the-customers-skill&#34;&gt;3.3 MCP Apps / OpenAI Apps SDK: growing a visualization onto the customer&amp;rsquo;s Skill&lt;/h3&gt;
&lt;p&gt;2LIP&amp;rsquo;s counterpart in external products has been platformized: the OpenAI Apps SDK lets an MCP server (that is, &amp;ldquo;a Skill given to the customer&amp;rdquo;) return UI resources rendered as React components inside the chat flow (such as Zillow listing cards). This is the official form of &amp;ldquo;a Skill inside the Web UI&amp;rdquo;: &lt;strong&gt;the Skill is the body; the UI is a visualization attachment returned by the Skill&lt;/strong&gt;, not an independent portal. For desktop/mobile native products the equivalent corollary: embed the customer conversation entrance in the product; operations go through conversation; panels retreat to display and fallback.&lt;/p&gt;
&lt;h3 id=&#34;34-local-first-industry-consensus-on-the-resource-constraints&#34;&gt;3.4 Local-first: industry consensus on the resource constraints&lt;/h3&gt;
&lt;p&gt;Constraints C1/C2 correspond to the local-first AI Agent current: agents read and write local data first, with asynchronous sync for backup (fast.io); local indexing plus on-demand cloud as a tiered data strategy (data placement decided by sensitivity, not by a &amp;ldquo;local&amp;rdquo; dogma); the runtime, memory, skills, and scheduled tasks of a personal agent fully localized (r3zz.io&amp;rsquo;s &amp;ldquo;boring architecture&amp;rdquo;). The consensus: full offline is unrealistic; the key is &lt;strong&gt;data tiering&lt;/strong&gt; — sensitive data never leaves the local machine. 2LIP adopts the same conclusion and goes further in a single-machine personal ecosystem: the source of truth can be 100% local.&lt;/p&gt;
&lt;h2 id=&#34;4-the-third-interface-documents-as-the-ais-governance-plane&#34;&gt;4. The Third Interface: Documents as the AI&amp;rsquo;s Governance Plane&lt;/h2&gt;
&lt;p&gt;2LIP answers &amp;ldquo;how do humans operate the software,&amp;rdquo; but leaves one question: &lt;strong&gt;how is the AI operated?&lt;/strong&gt; The answer grew out of practice long ago: not APIs, not a config center, but &lt;strong&gt;documents&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;The author&amp;rsquo;s multi-machine development ecosystem (FengASNI) ran a commonality analysis over 70 governance documents and converged on a &amp;ldquo;supervising-document paradigm&amp;rdquo;: a four-piece set of &lt;code&gt;AGENTS.md&lt;/code&gt; (rules, single source), &lt;code&gt;MISSION.md&lt;/code&gt; (north-star goal and DoD), &lt;code&gt;todo.md&lt;/code&gt; (task ledger), and &lt;code&gt;FENGMEM.md&lt;/code&gt; (session logs), supplemented by Skills (&lt;code&gt;SKILL.md&lt;/code&gt;) as reusable operation wrappers. Its mechanism: the AI reads documents before work to obtain identity, rules, and tasks; action results are written back to the ledger and logs; rule changes are written back to AGENTS. &lt;strong&gt;The document is the control plane&lt;/strong&gt; — the new role of Docs-as-Code after its confluence with agent-native development: documents&amp;rsquo; readers expanded from &amp;ldquo;humans&amp;rdquo; to &amp;ldquo;humans and AI,&amp;rdquo; and the AI is the stricter reader (it executes word for word).&lt;/p&gt;
&lt;p&gt;The core extended proposition follows: software interaction in the AI era is a &lt;strong&gt;triadic structure&lt;/strong&gt; —&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;human ──natural language──&amp;gt; AI ──tool calls──&amp;gt; system
│                                ↑
└──documents (rules/goals/ledger/logs)──────┘
        documents = the interface facing the AI (governance plane)
&lt;/code&gt;&lt;/pre&gt;&lt;ul&gt;
&lt;li&gt;The &lt;strong&gt;conversation layer&lt;/strong&gt; is the interface for &amp;ldquo;humans operating the AI&amp;rdquo;;&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;document layer&lt;/strong&gt; is the interface for &amp;ldquo;(humans, through the AI) governing the AI and the system&amp;rdquo;;&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;viewing layer&lt;/strong&gt; is the interface for &amp;ldquo;humans confirming system state,&amp;rdquo; visualizing the results of the first two.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The three layers are not parallel: the document layer constrains the conversation layer (Skills must obey the AGENTS iron rules), the conversation layer drives the system, and the viewing layer only reflects the output of the first two. This structure explains why a 2LIP system needs no complex permission backend — governance is already carried by the rules and ledgers of the document layer.&lt;/p&gt;
&lt;h2 id=&#34;5-case-study-audit-and-consolidation-of-a-real-ecosystem&#34;&gt;5. Case Study: Audit and Consolidation of a Real Ecosystem&lt;/h2&gt;
&lt;p&gt;The following is an audit of the author&amp;rsquo;s personal ecosystem (all local-first real production systems) against the four 2LIP questions:&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;System&lt;/th&gt;
          &lt;th&gt;Domain&lt;/th&gt;
          &lt;th&gt;UI status&lt;/th&gt;
          &lt;th&gt;Verdict&lt;/th&gt;
          &lt;th&gt;Action&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;FengInvest&lt;/td&gt;
          &lt;td&gt;Investment research (62 tools, 2.7 GB local market-data library)&lt;/td&gt;
          &lt;td&gt;Read-only report browser (fengweb)&lt;/td&gt;
          &lt;td&gt;✅ Benchmark: data local and gitignored, all operations through conversation, UI purely viewing, output git dual-pushed&lt;/td&gt;
          &lt;td&gt;Leave as is&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;FengMedia&lt;/td&gt;
          &lt;td&gt;Content production&lt;/td&gt;
          &lt;td&gt;Battle map + topic library / check-ins (has write operations)&lt;/td&gt;
          &lt;td&gt;⚠️ UI mixed with operations&lt;/td&gt;
          &lt;td&gt;Move write operations into conversation (&amp;ldquo;record a topic&amp;rdquo; writes JSON directly); UI retreats to read-only&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;FlyGo&lt;/td&gt;
          &lt;td&gt;Private-cloud product (external, commercial)&lt;/td&gt;
          &lt;td&gt;Panel + APK as the product itself&lt;/td&gt;
          &lt;td&gt;➖ Special: the UI is the deliverable; L2&amp;rsquo;s &amp;ldquo;retreat&amp;rdquo; clause does not apply; but lacks a customer conversation layer&lt;/td&gt;
          &lt;td&gt;Embed a &amp;ldquo;customer Skill&amp;rdquo; following the MCP Apps pattern; panel retreats to display&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;FengOS&lt;/td&gt;
          &lt;td&gt;Project command center&lt;/td&gt;
          &lt;td&gt;3D galaxy overview + system probes&lt;/td&gt;
          &lt;td&gt;✅ The ecosystem-level &amp;ldquo;viewing deck&amp;rdquo; itself&lt;/td&gt;
          &lt;td&gt;Upgrade to the unified viewing entrance (aggregate read-only views of each system, move no data)&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Pure tools (TTS-UI etc.)&lt;/td&gt;
          &lt;td&gt;Desktop utilities&lt;/td&gt;
          &lt;td&gt;GUI as the interaction itself&lt;/td&gt;
          &lt;td&gt;➖ Not applicable (no AI layer needed)&lt;/td&gt;
          &lt;td&gt;Leave as is&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;The audit reveals a universal decision order: &lt;strong&gt;first decide whether the system is a &amp;ldquo;self-use production system&amp;rdquo; or an &amp;ldquo;external product.&amp;rdquo;&lt;/strong&gt; The former strictly applies 2LIP; for the latter the UI is the product itself, and 2LIP&amp;rsquo;s application becomes &amp;ldquo;add a conversation layer inside the product, not cancel the UI.&amp;rdquo; Meanwhile, the ecosystem-level viewing deck (FengOS) should consolidate the viewing entrances of all systems while holding to &amp;ldquo;iframe/link aggregation, move no data,&amp;rdquo; guarding C1&amp;rsquo;s single source of truth.&lt;/p&gt;
&lt;h2 id=&#34;6-discussion-boundaries-and-costs&#34;&gt;6. Discussion: Boundaries and Costs&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;2LIP is not &amp;ldquo;abolishing the UI.&amp;rdquo;&lt;/strong&gt; Counter-evidence is real: glanceability scenarios — monitoring walls, cockpits, demoing to investors — favor fixed views over conversation; efficiency for unambiguous operations (volume should not be adjusted by typing). The correct reading of 2LIP is &lt;strong&gt;transfer of operating rights&lt;/strong&gt;, not the death of UI: operating rights go to the conversation layer; the UI keeps the right of confirmation.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The reproducibility of the conversation layer depends on the document layer.&lt;/strong&gt; The risk of pure conversation is &amp;ldquo;said and lost.&amp;rdquo; The document paradigm (tasks into the ledger, logs appended, DoD acceptance statements) is exactly the completion: every round of conversation&amp;rsquo;s instructions and results lands as machine-readable ledger entries, giving the conversation layer an auditability traditional GUI never had — the operation history is not a clickstream log but structured text.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The change in cost structure.&lt;/strong&gt; 2LIP shifts the development center of gravity from &amp;ldquo;front-end interface engineering&amp;rdquo; to &amp;ldquo;Skill engineering + document governance + on-demand generation of viewing pages.&amp;rdquo; For a one-person company, this means the largest non-outsourceable asset (the interface) is depreciating, while the hardest-to-copy assets (domain-rules documents, personas, judgment standards) are appreciating.&lt;/p&gt;
&lt;h2 id=&#34;7-conclusion&#34;&gt;7. Conclusion&lt;/h2&gt;
&lt;p&gt;The Two-Layer Interface Principle condenses the shape of software in the AI era into one sentence: &lt;strong&gt;the conversation layer does, the viewing layer shows, the document layer governs; data stays local, output goes to backup.&lt;/strong&gt; That three industry currents (chat-first, Generative UI, MCP Apps) and local-first practice converge structurally on this principle suggests it is not a personal preference but an early position on a paradigm direction. For individuals and small organizations, 2LIP offers an immediately executable refactoring path: audit existing systems&amp;rsquo; UI write operations and move them into conversation, aggregate viewing entrances into a single viewing deck, and embed a Skill-form customer conversation layer into external products — and the foundation of all of it is treating documents as first-class citizens facing the AI.&lt;/p&gt;
&lt;h2 id=&#34;references-retrieved-2026-09&#34;&gt;References (retrieved 2026-09)&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;YC &amp;ldquo;chat is the interface&amp;rdquo; stance shift: Pete Koomen interview coverage, biggo.com&lt;/li&gt;
&lt;li&gt;Google Cloud, &lt;em&gt;What is Generative UI?&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;CopilotKit, &lt;em&gt;Generative UI&lt;/em&gt;; Decagon, &lt;em&gt;What is Generative UI?&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Thesys, &lt;em&gt;From Static Dashboards to Generative UI&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Open Data Science, &lt;em&gt;Generative UI: When the Agent Builds the Interface for You&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;OpenAI, &lt;em&gt;Apps SDK / Add UI to your MCP server&lt;/em&gt; (developers.openai.com)&lt;/li&gt;
&lt;li&gt;Render, &lt;em&gt;Building with the OpenAI Apps SDK: A Field Guide&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;r3zz.io, &lt;em&gt;The Boring Architecture Behind a Useful Personal AI Agent&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;fast.io, &lt;em&gt;How to Implement Local-First Storage for AI Agents&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Medium/Data Science Collective, &lt;em&gt;My Local-First AI Agent Stack&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Reddit r/UXDesign, &lt;em&gt;Generative UI feels like the next &amp;ldquo;voice will replace screens&amp;rdquo;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Internal practice: FengASNI DocsParadigm (commonality analysis of 70 governance documents and paradigm proposal); FengOrchestrator five-layer architecture master plan and TTS-UI fleet battle retrospective&lt;/li&gt;
&lt;/ol&gt;
</description>
      <pubDate>Sun, 13 Sep 2026 00:00:00 &#43;0000</pubDate>
      <category>Tech</category><category>Business</category>
    </item>
    
    <item>
      <title>Leverage Can&#39;t Buy Time</title>
      <link>https://www.fengyuwang.com/en/blog/posts/leverage-cant-buy-time/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/leverage-cant-buy-time/</guid>
      <description>&lt;p&gt;Start with an idea that looks airtight: if I could borrow unlimited money and put all of it into Buffett&amp;rsquo;s company, then in theory, given enough time, I could earn unlimited money. Berkshire has compounded at nearly twenty percent annually for decades; once compounding rolls, the interest on my borrowing looks like pocket change. This isn&amp;rsquo;t speculation — this is standing next to history&amp;rsquo;s most successful compounding machine and collecting.&lt;/p&gt;
&lt;p&gt;Where does the arithmetic break?&lt;/p&gt;
&lt;p&gt;It breaks on treating time as free. Berkshire&amp;rsquo;s returns are lumpy: more than once in its history the stock has drawn down thirty to fifty percent — 2008 sits right there. That long-run twenty percent is the average after surviving every one of those craters. Your interest is not an average; it accrues every second of every day. Returns can wait ten years; interest waits for no one. A few years without positive returns and the snowballing interest eats you alive — you didn&amp;rsquo;t borrow money, you borrowed a countdown timer running by the second.&lt;/p&gt;
&lt;p&gt;The more direct layer is the margin call. When the stock falls thirty percent, the lender will not sit with you and discuss long-termism; they will demand more collateral, and if you can&amp;rsquo;t post it, they liquidate. At the moment of liquidation you haven&amp;rsquo;t merely lost — you are out of the game. Berkshire did come back, but the comeback no longer belongs to you. Leverage&amp;rsquo;s real killing power is not that it turns your return negative; it is that it guarantees you won&amp;rsquo;t survive to be proven right.&lt;/p&gt;
&lt;p&gt;Push one step further and the idea hits a ceiling of scale: the world&amp;rsquo;s pool of investable assets is finite. Pour unlimited money into any single company and marginal returns decay toward the market average. Infinite profit requires an infinite economy to pay it out, and there is only one Earth.&lt;/p&gt;
&lt;p&gt;So borrowing infinite money to make infinite money is not boldness — it is a structural error. Compare it with how genuinely successful people place bets: their gamble has a floored downside — the most they can lose is the money they put in — and an open-ended upside — if it works, it becomes a company, an industry. Now look at infinite leverage: unlimited upside in theory, unlimited downside in practice — at the blow-up you lose everything and still owe. That structure is identical to a gambler&amp;rsquo;s; only the table has been swapped for a brokerage account. Successful people win by making their bets asymmetric; leverage is precisely what hands the symmetry back.&lt;/p&gt;
&lt;p&gt;Here is where I land: time was always compounding&amp;rsquo;s friend, and that is the one thing leverage truly changes. Money can be borrowed; time cannot. And in investing, the final contest is simply over who is still at the table.&lt;/p&gt;
</description>
      <pubDate>Sat, 12 Sep 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category><category>Tech</category>
    </item>
    
    <item>
      <title>Holding Is Buying</title>
      <link>https://www.fengyuwang.com/en/blog/posts/hold-is-buy/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/hold-is-buy/</guid>
      <description>&lt;p&gt;Open any financial terminal and pull up the rating list for Hong Kong large caps, and you will see a spectacle: one company, Tencent, tracked by more than forty investment banks — forty-two of them rating it Buy or Strong Buy, two Hold, one Sell.&lt;/p&gt;
&lt;p&gt;Forty-five analysts study the same company. Why can almost none of them bring themselves to say the two words: don&amp;rsquo;t buy?&lt;/p&gt;
&lt;p&gt;Some say Hold is the neutral stance, refusing to pick a side. I find the idea of Hold strange — if you hold, aren&amp;rsquo;t you buying? A stock you bought yesterday now carries a Hold rating, meaning keep holding it; keeping holding it is staying long. The people who truly refuse to take sides sold long ago. So this list contains no neutral party: forty-four longs, and one person too frightened to speak.&lt;/p&gt;
&lt;p&gt;Analysts&amp;rsquo; track records are actually public. Dedicated platforms tie every analyst&amp;rsquo;s historical calls to the subsequent share price and score them; anyone can check online. The result: even the star analysts at the biggest banks hold a hit rate stuck between fifty and fifty-five percent — barely better than a coin flip — with anyone above sixty percent a rare exception. The statistics sit right there, and nobody is ever held accountable for being wrong. That is exactly the point: even when the record is one search away, why do they still have a market?&lt;/p&gt;
&lt;p&gt;Put yourself in the analyst&amp;rsquo;s chair and it becomes clear. Your price target was 550, and the market has now made a fool of you while the whole internet cheers that technology is changing the world. If you don&amp;rsquo;t raise your target now, your boss thinks you lack vision and your client thinks you&amp;rsquo;re a dinosaur. Run the thought the other way: if you had issued a Sell and the stock rose twenty percent, you&amp;rsquo;d be called blind. Bullish in rallies, bullish in drawdowns dressed as caution — that isn&amp;rsquo;t a judgment problem, it&amp;rsquo;s a livelihood problem. That is the real chase-highs-sell-lows, except it happens inside research reports.&lt;/p&gt;
&lt;p&gt;So a rating should not be read as research; it should be read as a product. Its customers are not retail investors but listed companies and big money: Buy maintains the relationship, and Hold is an escape pod delivered to large clients — the people who learn it&amp;rsquo;s time to leave before the crowd need an article to keep everyone else seated. The lone Sell is the one that takes real courage, which is why it is nearly extinct.&lt;/p&gt;
&lt;p&gt;For me the conclusion is simple. I don&amp;rsquo;t listen to what analysts say; I watch what companies do: are they paying real dividends, buying back and cancelling shares, is management putting its own money in or telling a story out. And one plainest question: if this stock goes nowhere for three years, how much cash will it hand me each year?&lt;/p&gt;
&lt;p&gt;Ask that question and the forty-two Buy ratings all fall silent. Ratings answer how others see it; cash answers what I do. Investing can only live on the second one.&lt;/p&gt;
</description>
      <pubDate>Thu, 10 Sep 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category><category>Marketing</category>
    </item>
    
    <item>
      <title>One Person, Hundreds of AI Employees: Translated into Engineering, It&#39;s Five Layers</title>
      <link>https://www.fengyuwang.com/en/blog/posts/opc-five-layers/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/opc-five-layers/</guid>
      <description>&lt;p&gt;The phrase &amp;ldquo;one-person company&amp;rdquo; sounds like a consolation prize — a dignified label for a startup that failed. My version is an engineering problem: a firm with exactly one human, running hundreds of AI employees, with AI leading AI. The chairman does two things only — sets targets, signs acceptances.&lt;/p&gt;
&lt;p&gt;Slogans are cheap. The trouble is they have to land. Hundreds of employees: how are they staffed? Who approves when work goes wrong? How are lessons reviewed? Staffing, approval, review — all of them organizational problems, not intelligence problems. Org theory was written for people; software engineering was written for code. Hundreds of AI employees sit stuck in between: they need organizational discipline, yet can only be implemented as code.&lt;/p&gt;
&lt;h2 id=&#34;one-sentence-of-vision-five-layers-of-engineering&#34;&gt;One sentence of vision, five layers of engineering&lt;/h2&gt;
&lt;p&gt;Break the vision down and the pain points fall into three: AI employees don&amp;rsquo;t know how to organize themselves, don&amp;rsquo;t know how to collaborate with humans, don&amp;rsquo;t know where to look things up. Translate further and the answer converges into five layers. Skip any one and the structure falls:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Intent: one target from the chairman, plus a signature;&lt;/li&gt;
&lt;li&gt;Organization: the brain that has AI lead AI — who works, how they are staffed, how work is handed over, how it is accepted;&lt;/li&gt;
&lt;li&gt;Talent: where qualified &amp;ldquo;people&amp;rdquo; for each specialty come from;&lt;/li&gt;
&lt;li&gt;Execution: the command-line engines that actually do the work;&lt;/li&gt;
&lt;li&gt;Safeguards: approval, memory, notification, knowledge.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;the-waist-is-what-goes-missing-first&#34;&gt;The waist is what goes missing first&lt;/h2&gt;
&lt;p&gt;The list reads backward too. The earliest mistake was treating a parts list as the architecture: picking approval tools, memory tools, notification tools one by one — dressing up layer-five patches as the whole design. Once that was seen clearly, the order fixed itself: patches are layer five&amp;rsquo;s business; the main course is layer two.&lt;/p&gt;
&lt;p&gt;Of the five layers, the organization layer is the one most often skipped. This pit was paid for: talent library and execution engine both in hand, work dispatched straight past staffing, batch-summoning the same generic &amp;ldquo;developer.&amp;rdquo; Talent became a crowd of day laborers; strong execution made them no less headless. The organization layer is the waist of the whole structure.&lt;/p&gt;
&lt;p&gt;The open-source organization manual found later had a command structure isomorphic to chairman → CEO → specialist AI, and staffing in three sizes: 5 to 10 roles for micro, 15 to 25 for a sprint, and full. How to staff hundreds of AI employees — those three sizes are the answer. No fourth needs inventing.&lt;/p&gt;
&lt;h2 id=&#34;275-roles-21-hired&#34;&gt;275 roles, 21 hired&lt;/h2&gt;
&lt;p&gt;The talent layer paid tuition in plainer numbers. A library of 275 specialist roles in Chinese, reviewed one by one: one third gems, two thirds empty shells. In the end 21 were hired — 25 slots in total inside the orchestrator. From 275 down to 21, with no mercy for the cut. &amp;ldquo;Rather none than mediocre&amp;rdquo; applies to AI employees as much as to people.&lt;/p&gt;
&lt;h2 id=&#34;cost-is-a-hard-constraint&#34;&gt;Cost is a hard constraint&lt;/h2&gt;
&lt;p&gt;Execution closed the loop first: chosen from 40-plus candidate projects after source-level review; an official example run cost $0.0095 — under a cent. Cheap as it is, cost stays a hard constraint: API balances burned out, prepaid subscriptions burned out, and at the tightest moments free models served as the bypass for verification. A small-field exercise with three selected roles still hasn&amp;rsquo;t been fought — it waits on one thing: a ruling on cost accounting. Every step the blueprint takes, an invoice follows.&lt;/p&gt;
&lt;h2 id=&#34;safeguards-first-name-what-is-being-defended-against&#34;&gt;Safeguards: first, name what is being defended against&lt;/h2&gt;
&lt;p&gt;The collaboration pain point lands on the approval gate. In the vision the chairman only signs; in engineering, a signature means: before an AI takes a high-risk action — emailing a client, spending budget, dropping a database — it asks first, and the ask arrives as an approval card pushed to a phone. A policy engine auto-allows and auto-denies by rule; the rest goes to a human, with an audit log throughout.&lt;/p&gt;
&lt;p&gt;A one-person company has no colleagues watching; internal control matters more, not less. Signing authority is an organizational problem, not a technical one. Fixed flows go through a manual approval gate in the pipeline; fluid scenarios go through runtime approval. Two legs, each covering half the ground.&lt;/p&gt;
&lt;p&gt;The other four safeguards answer four kinds of failure. Memory, against AI forgetting when done — a stated reply preference should already be known to the next recruit on the first day. Notification, against work finished and no one knowing — a contract cleared at midnight should reach the chairman&amp;rsquo;s phone for a signature. Knowledge supply, against blindness — ask a finance AI about last month&amp;rsquo;s spending and it digs the ledger, instead of asking back where the data is. Acceptance benchmarks, against good-enough-by-whose-standard — the same task graded against an industry benchmark, role by role; only passing scores become permanent. The first three layers are offense; the safeguard layer is defense: able to work, and also unable to fail silently, run wasted, go unheard, or forget.&lt;/p&gt;
&lt;h2 id=&#34;review-the-shopping-list-cut-to-one-line&#34;&gt;Review: the shopping list cut to one line&lt;/h2&gt;
&lt;p&gt;The safeguard layer deserves the best review. At stocktaking, four layers were closed; the fifth was the gap. The first move was shopping to fill blanks — approval, memory, notification, knowledge, acceptance: five gaps, five open-source projects, a tidy list. The search was honest: current reality checked by search, not old memory, each project matched to its gap after reading.&lt;/p&gt;
&lt;p&gt;The review flipped the conclusion. Four of the five exist natively in the platform — approval is the CEO asking directly before a high-risk action; memory is the project&amp;rsquo;s memory files; notification is a written polling script; acceptance swaps in another agent to grade. One true gap remained: letting every AI employee read the company&amp;rsquo;s documents.&lt;/p&gt;
&lt;p&gt;A shopping list cut to one line. The lesson, on record: attitude is not review — the list has to be re-audited against the ground.&lt;/p&gt;
&lt;h2 id=&#34;locked-into-one-skill&#34;&gt;Locked into one Skill&lt;/h2&gt;
&lt;p&gt;The organization layer finally hardened into a manual packed into a single Skill. Give it a target in one sentence — review this contract, produce a risk assessment — and it judges staffing on its own, summons a legal-review role that ships with acceptance criteria, splits the work across seven phases, gates each one, and aggregates reports up to a signature. The discipline is written hard: evidence outranks claims; fail the gate and the work goes back, three strikes at most; handovers must carry templates — a number in the org manual puts 73 percent of collaboration failures at the handover boundary. One iron rule presses on the bottom: the CEO never writes code. It orchestrates.&lt;/p&gt;
&lt;h2 id=&#34;where-this-does-not-apply&#34;&gt;Where this does not apply&lt;/h2&gt;
&lt;p&gt;The five layers have clear edges. They answer one question: how to staff hundreds of AI employees. One human with one AI doing scattered tasks needs one layer, not five — everything past the first is a sledgehammer on a chicken. Nor is this an automation utopia: the chairman&amp;rsquo;s two jobs — setting targets, signing — are the only parts of the design not outsourced. The more automatic the five layers become, the heavier those two get.&lt;/p&gt;
&lt;p&gt;One question is left: where does the human stand in the five layers? Not inside a layer — at every layer&amp;rsquo;s door. The target enters at the intent layer; rejected work goes back at the gate; the signature happens at the approval door. Task-level human-AI collaboration already has a standard answer in the open-source world; the organization-level link is what remains — the structure is laid out on the site&amp;rsquo;s &lt;a href=&#34;https://www.fengyuwang.com/en/human-in-the-loop.html&#34;&gt;Feng Human-in-the-Loop&lt;/a&gt; page.&lt;/p&gt;
</description>
      <pubDate>Thu, 10 Sep 2026 00:00:00 &#43;0000</pubDate>
      <category>Tech</category><category>Business</category>
    </item>
    
    <item>
      <title>Loud in the Mall, Silent on the Tag</title>
      <link>https://www.fengyuwang.com/en/blog/posts/zara-anonymous/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/zara-anonymous/</guid>
      <description>&lt;p&gt;Walk into a shopping mall and the Zara logo sits where the foot traffic is thickest. Open a garment tag and not one designer&amp;rsquo;s name appears. Bright in the open, hidden at the bottom — the same company, the same people. Against its peers the contrast is sharper: H&amp;amp;M and Gap spend heavily on promotions, while Zara barely runs any. One company manages to be loud and silent at the same time, — not a split personality, but bookkeeping. Exposure is a budget: the bright parts go into the acquisition column, the hidden parts go into the risk column, and the two ledgers are kept apart. The customer positioning sits in plain view as well — middle class and above, relatively high income. Those shoppers trust location and storefront more than promotional flyers, so the budget belongs where they walk.&lt;/p&gt;
&lt;h2 id=&#34;exposure-was-never-cut-it-changed-accounts&#34;&gt;Exposure Was Never Cut; It Changed Accounts&lt;/h2&gt;
&lt;p&gt;Some say skipping ads is stinginess and the brand will suffer for it sooner or later. Settle the account first: not one unit of exposure budget was saved — it changed accounts. Where peers pay media, Zara pays for location: the stores always sit in the mall&amp;rsquo;s most popular spot, and the logo is built big enough that passing shoppers cannot miss it. The store itself is the advertising space, and it produces news on the side — a location like that is a story, and the media writes it for free. Budgets paid to media depreciate every year; exposure paid for in location stands on the street every day. The same money, one account burning, one account standing. Promotions manufacture waves of store visits; location manufactures the habit of walking in daily — the first must be paid for again and again, the second, once, and then it stays. The promotions budget saved and the storefront standing firm both land on the plus side of the ledger.&lt;/p&gt;
&lt;h2 id=&#34;the-other-end-of-a-byline-is-the-defendants-seat&#34;&gt;The Other End of a Byline Is the Defendant&amp;rsquo;s Seat&lt;/h2&gt;
&lt;p&gt;Others say keeping designers anonymous mistreats creators, that good design should never go unnamed. For an individual creator, a byline is an honor — that holds, and deserves saying on their behalf. But Zara&amp;rsquo;s situation carries another layer: lawsuits over copied designs arrive in waves, and once a designer&amp;rsquo;s name goes out, the design language becomes identifiable evidence. The other end of a byline is the defendant&amp;rsquo;s seat. Anonymity here is not posturing but risk pricing. The gains from exposure go to the stores; the litigation risk stays with the design line; the two ledgers do not mix. Revenue and risk already grow in different departments — only when the accounts are separated can responsibility be separated too. Hiding the name protects specific people.&lt;/p&gt;
&lt;h2 id=&#34;hiding-the-name-does-not-stop-the-lawsuits&#34;&gt;Hiding the Name Does Not Stop the Lawsuits&lt;/h2&gt;
&lt;p&gt;A third line calls this stealing a bell while covering one&amp;rsquo;s own ears — the brand gets sued all the same. Correct, and conceded first: hiding names does not stop lawsuits. Anonymity was never a shield against liability. What it lowers is a second cost: pinning a specific person to a specific design, letting a corporate case burn down to the personal level. The risk column never went to zero; it simply was never magnified. The lawsuits keep coming, the penalties keep getting paid, nothing shrinks at the corporate level; what disappears is the path from a name to a person, and from a person through an entire design line. The distinction is cold, and it matters — damage control and immunity have always been two separate accounts. Only with both pages on the table does the ledger read in full: the bright book earns exposure, the hidden book contains risk, and either page missing makes the real Zara impossible to compute.&lt;/p&gt;
&lt;h2 id=&#34;ask-about-the-accounts-before-judging-character&#34;&gt;Ask About the Accounts Before Judging Character&lt;/h2&gt;
&lt;p&gt;Before judging any company&amp;rsquo;s loudness or silence, ask one question first: which account is being displayed, and which is being hidden. There is only one budget, and every account carries its own price. Read them backwards and business strategy turns into a character flaw, and risk control into a moral stain; read them correctly and the craft shows — one budget shuttled between two accounts. A boundary belongs here too: whether the copying lawsuits are right or wrong is a matter for the courts; what gets recorded here is only the accounting logic of exposure. Before the fast-fashion ledger closes, the old question stands — the next mall visit, the logo at the most expensive corner: how much advertising has it saved the company, and how many subpoenas kept away from how many people.&lt;/p&gt;
</description>
      <pubDate>Tue, 08 Sep 2026 00:00:00 &#43;0000</pubDate>
      <category>Marketing</category>
    </item>
    
    <item>
      <title>Pull the Weeds, Water the Flowers</title>
      <link>https://www.fengyuwang.com/en/blog/posts/weeds-and-flowers/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/weeds-and-flowers/</guid>
      <description>&lt;p&gt;A holding drops twenty percent. What is the first reaction? For most people it is averaging down. Buy the dip, lower the cost basis, recover faster when it bounces. The impulse arrives fast and feels self-evident. But price movement, by itself, has never been a reason to add or trim. The real question is different: what is the money sitting on?&lt;/p&gt;
&lt;p&gt;One system sorts position moves into three actions, with a single criterion — is the underlying getting better, or getting worse?&lt;/p&gt;
&lt;p&gt;First, pull the weeds. Names that are weakening and overvalued get trimmed step by step. Not dumped at once — trimmed. Second, water the flowers. Lines of business that are booming and undervalued get added to continuously. Continuously — not in one lump. Third, build positions in a pyramid, in batches; going all-in in one shot is strictly off the table. As prices fall, keep adding — and the amounts get smaller as the fall deepens. One more rule across all three: no spreading money evenly across everything. Capital is allocated by quality, not by existing weight.&lt;/p&gt;
&lt;p&gt;This sounds simple. Run it into instinct and each rule meets a strongest counterargument, each sounding reasonable. One at a time.&lt;/p&gt;
&lt;p&gt;Averaging down lowers the cost basis; that is the plainest arithmetic there is. The deeper it falls, shouldn&amp;rsquo;t one buy more?&lt;/p&gt;
&lt;p&gt;The arithmetic is right. The direction is wrong. Lowering the cost basis is real; the cost of averaging shows up elsewhere: the harder one averages down, the less room for error remains. In extreme volatility, no cushion left, one deep drop nails a full position. Rushing to load up is queuing up to die. The pyramid works the other way — the deeper the fall, the smaller each addition, keeping room for error for the case where the call is wrong. The instinct and the discipline twist in opposite directions: instinct buys more the lower it goes, discipline buys less. Where instinct feels best is precisely where risk is largest. Plenty of accounts die not on judgment but on averaging down, harder and harder, into a fall. So much for the instinct; back to the analysis.&lt;/p&gt;
&lt;p&gt;If the game is long-term, hold and do nothing; adding and trimming repeatedly is itchy hands, working for the broker. Is that right?&lt;/p&gt;
&lt;p&gt;Half right. Holding still is indeed a virtue — provided what is held deserves it. Pulling weeds is not high-frequency fiddling. The action targets exactly one kind of holding: the kind whose fundamentals have deteriorated and whose valuation has run up. Not yet deteriorated? Hands off. Deteriorated? No dawdling. Holding a flower still is correct. Holding a weed as a long-term position is the most expensive laziness. Between the hand that works for the broker and the hand that never moves lies a third hand — it moves when the situation demands, and idles otherwise. The craft of long-term investing is not stillness. It is knowing what deserves stillness.&lt;/p&gt;
&lt;p&gt;Lurking in a valuation trough, at bottom, is bottom-fishing; guess wrong and one is trapped all the same. Does that objection stand?&lt;/p&gt;
&lt;p&gt;It does not, because the trough method does not guess the turning point. The left-side contrarian standard reads: when the market falls systematically and a sector enters a historically cheap valuation trough, deploy in multiple slow batches, wait for capital to flow back, and no urgency to cash out early. The strength of this routine sits at both ends. The part guessed wrong gets diluted across batches, so the loss is bounded. The part guessed right never needs a forecast of when to exit — the capital comes back on its own. The goal was never to buy at the bottom. It is to buy low enough. That is the difference between guessing a single moment and spreading across a range of prices. One boundary remains: waiting for signals is right-side discipline, governing when to confirm. The trough is a left-side sizing standard, governing how to ambush. One manages confirmation, the other manages position. Each governs its own stretch; neither replaces the other.&lt;/p&gt;
&lt;p&gt;Finally, the limits. This system does not solve everything. What to do after gains arrive — letting winners run, cashing out the principal in batches, keeping a zero-cost profit position for the long haul — another set of rules, covered elsewhere; one line here, no more. Position limits per stock or per sector are not here either. No stock picks, no price targets, no calls on the present market; the pyramid gives a direction, never a ratio.&lt;/p&gt;
&lt;p&gt;What remains is one question. When things fall, the money has to go somewhere — onto the weeds, or onto the flowers?&lt;/p&gt;
</description>
      <pubDate>Sun, 06 Sep 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>Wait for Confirmation</title>
      <link>https://www.fengyuwang.com/en/blog/posts/wait-for-confirmation/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/wait-for-confirmation/</guid>
      <description>&lt;p&gt;Why do people call the direction right and still lose money? Break the loss open and the biggest piece is usually not a wrong call. It is jumping the gun — acting before the turning point has produced a single piece of evidence. Right direction, wrong exit, same loss. The heaviest loss an ordinary investor takes is rarely a wrong judgment; it is an early one.&lt;/p&gt;
&lt;p&gt;A turning point cannot be predicted, but it can be confirmed. One system states this with unusual severity. After buyers and sellers have fought it out, the market walks the path of least resistance: in a one-sided advance, good news gets amplified and bad news gets ignored; in a one-sided decline, the reverse. If direction is decided by the outcome of that fight, then forecasting when the fight ends is a guessing game. So the rule is one line: do not call the turning point in advance — wait for a valid breakout of the range, then follow. New low, cut without conditions; new high, never blindly short. Do not predict the market; verify it.&lt;/p&gt;
&lt;p&gt;Confirmation is not a single signal either. Moving averages, valuations, capital flows — any breakout among them is the market speaking for itself. Refusing to call tops and bottoms means refusing to speak before it has.&lt;/p&gt;
&lt;p&gt;The strongest counterargument strikes straight at the profit statement: by the time the breakout can be bought, the body of the move is gone. Real profit sits before the turning point. Only the early mover earns. Bold, but the premise is broken. Before a turning point there are no signals, only opinions. The difference is simple: a signal comes from facts the price has already produced; an opinion comes from hope. Calling the direction right is not calling the moment right; the road from turning point to confirmation charges everyone who walks it early. Jumping the gun wins an imaginary body of the move and pays a very real confirmation cost, in cash. Worse still is that unconditional stop: a knife caught halfway down the slope gets no exemption when support breaks. The waiting skipped comes back as losses — that is the early mover&amp;rsquo;s bill.&lt;/p&gt;
&lt;p&gt;The second round asks from another angle. Confirmation signals are visible to everyone. Once the pattern completes, is there any excess return left? This question aims at the right place — where excess return lives — but misreads the barrier. The barrier was never seeing the signal; it is executing it. The 2B exit happens while consensus still says this is just a pullback. By the time pullback becomes consensus, the price has already charged the hesitant their tuition. What a confirmation structure really does is convert “should I cut?” from an emotional question into a checklist question: breakout, pullback, failure to make a new high, exit. Three checks. No courage required, only obedience. The mirror holds too: a break of support that fails to make a new low is a bottom signal — build positions in batches. This system does not bet on an information edge. It bets on discipline that writes the action down first.&lt;/p&gt;
&lt;p&gt;The third round is the most technical. A pullback that fails to make a new high marks a top; a break of support that fails to make a new low marks a bottom. Both hold in hindsight — so how does anyone tell pullback from reversal in advance? The answer is that the distinction does not exist in advance. Before the fact occurs — a pullback that cannot make a new high — there is no judgment to make. After it occurs, only action remains. Trying to decide in advance means putting the stake back on prediction, and the system&amp;rsquo;s whole point is showing prediction the door. Rules written down beforehand replace explanations afterward. The structure never hands out answers early; it hands over the action when the answer arrives.&lt;/p&gt;
&lt;p&gt;This confirmation structure has boundaries. It governs price-structure confirmation, not sentiment signals, and not the temperament of waiting. It offers no view on the present moment: no stock picks, no price targets. It does not promise to be right every time — breakouts can fail, pullbacks can run deep; what it promises is the same actions, with the market settling the score. Outside its signals, it stays silent.&lt;/p&gt;
&lt;p&gt;Being half a step slow costs the short stretch of price after the breakout, and saves the entire confirmation cost. The market never punishes waiting. It punishes moving early without evidence.&lt;/p&gt;
</description>
      <pubDate>Fri, 04 Sep 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>Verify, Don&#39;t Forecast</title>
      <link>https://www.fengyuwang.com/en/blog/posts/verify-not-forecast/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/verify-not-forecast/</guid>
      <description>&lt;p&gt;The same moving-average line: why does one person see risk, another see opportunity, a third see nothing at all? The line hasn&amp;rsquo;t moved. The people have. The difference isn&amp;rsquo;t eyesight; it&amp;rsquo;s craft. Two crafts circulate in markets: forecasting and verification — they look alike and point in opposite directions.&lt;/p&gt;
&lt;h2 id=&#34;two-crafts&#34;&gt;Two crafts&lt;/h2&gt;
&lt;p&gt;Forecasting works like this: conclusion first, evidence second. Bulls collect good news, bears collect bad news; the verdict arrives before the materials. Verification runs the other way: fix the criteria first, then wait for the market to speak. There is a system that states this rule bluntly: don&amp;rsquo;t predict the market, verify it. Refuse to call tops and bottoms by judgment; wait for clear signals from moving averages, valuations, and fund flows, then act. Calling moves on tips and gut feeling is gambling, not investing.&lt;/p&gt;
&lt;p&gt;That stings. The instinctive rebuttal: investing profits from prediction — know the turning point one step early, buy at the bottom, sell at the top; one step late leaves only scraps. Folklore is full of such stories, complete with beginnings and endings. What the stories omit: behind every legend of catching the exact bottom stand countless silent buys on the way down. Silence makes no stories, which is why the legends never seem to miss.&lt;/p&gt;
&lt;h2 id=&#34;verifiable-criteria&#34;&gt;Verifiable criteria&lt;/h2&gt;
&lt;p&gt;The verifier holds no forecast, only rules written down in advance. What do they look like? Moving averages give direction, valuation gives range, fund flows give confirmation. Above the annual moving average, conditions are bullish — holding and adding are permitted. Below it, a long bear market&amp;rsquo;s main down-leg — positions contract sharply. This is not mysticism; it is a boundary set in advance. The Shanghai index&amp;rsquo;s 2,638 level in 2018 is one such historical dividing line: below the line, position discipline tightened — no exceptions.&lt;/p&gt;
&lt;p&gt;Another rule concerns direction. Once bulls and bears have fought it out, the one-sided move becomes the path of least resistance: rising, good news gets amplified and bad news ignored; falling, the reverse. So no calling turning points early — wait for a confirmed break of the range, then follow. Notice the order: set the criteria first, then read the market, and the market&amp;rsquo;s word is final. Forecasting reverses it — read the market first, reach a conclusion, then gather only the evidence that favors it.&lt;/p&gt;
&lt;h2 id=&#34;the-cost-of-being-late&#34;&gt;The Cost of Being Late&lt;/h2&gt;
&lt;p&gt;The strongest objection to this system: acting only on signals means always arriving late. By the time a breakout is confirmed, part of the rally is gone. Verification&amp;rsquo;s returns are structurally trimmed at the head, while a correct forecaster captures the whole arc. This bill is real. The cost must be admitted; there is no dodging it.&lt;/p&gt;
&lt;p&gt;But the ledger must be complete. Whether a forecast is right is unknowable in advance — the same judgment can be right once and wrong the next; it cannot be written into a rule. A verification standard can be fixed in advance, and only what is fixed can be executed, and only what is executed can be reviewed. The trimmed head is the premium paid for &amp;ldquo;not blowing up.&amp;rdquo; What this system wins is not any single level; it is the absence of fatal errors. What the trimmed head buys is this: every error stays small, and every survival is intact.&lt;/p&gt;
&lt;h2 id=&#34;between-knowing-and-doing&#34;&gt;Between knowing and doing&lt;/h2&gt;
&lt;p&gt;One more objection: everyone can see the signals. Who doesn&amp;rsquo;t know about a moving-average breakout? Where is the edge? The question lands in the right place, but the answer isn&amp;rsquo;t an information edge. Of course the breakout is easy to understand. The hard part is whether the hand actually contracts when the trend turns bearish; whether there is still the nerve to add on the pullback after the breakout. Between knowing and doing sits emotion — and in front of it, everyone believes they are the exception. This system never gambled on information asymmetry; it gambles on discipline.&lt;/p&gt;
&lt;p&gt;Draw the boundary too: no indicator tutorials, no view on today&amp;rsquo;s levels, no stock picks. As for which side of the annual line the market sits on right now, this article gives no answer — what it offers is a method, not the answer. The market accepts no debate, only verification. Quit the urge to forecast, and whatever actions remain become reliable.&lt;/p&gt;
</description>
      <pubDate>Wed, 02 Sep 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>The Answer in Four SIM Slots</title>
      <link>https://www.fengyuwang.com/en/blog/posts/users-not-tech/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/users-not-tech/</guid>
      <description>&lt;p&gt;The number-one mobile phone brand in Africa is a Chinese company. Transsion: shipments grew year after year for a decade, from 2006 to 2016, until it held first place across the continent — the king of mobile phones there. On what? Its handsets are neither the cheapest nor the most advanced. The answer is almost embarrassingly small: four SIM slots, a battery that lasts thirty days on one charge, a camera tuned for dark skin. None of it is a technical breakthrough. Every piece is the result of thinking through who the user actually is.&lt;/p&gt;
&lt;h2 id=&#34;four-sim-slots-hold-tariffs-not-technology&#34;&gt;Four SIM Slots Hold Tariffs, Not Technology&lt;/h2&gt;
&lt;p&gt;Take the three pieces one at a time. First, the slots. African carriers price calls differently: talking within one network is cheap, calling across networks is expensive, so a single round of calls can mean swapping cards. Four slots let one person hold several networks at once — one card per carrier. A single call saves little; over a month it adds up to money ordinary people genuinely care about. Second, the battery. Power supply across the continent is unstable, and blackouts of two or three days are ordinary. Rival phones last a day; a Transsion battery rides out thirty. Thirty days against three days of darkness — the arithmetic is not hard. Third, the camera. On ordinary phones, photographs of dark-skinned people come out too dark, faces collapsing into shadow; Transsion retuned its camera around dark-skinned faces. A course in innovation management lays out the three pieces and asks which one counts as a technical breakthrough. Not one. What did arrive is light for a face that mainstream camera tuning had simply left out.&lt;/p&gt;
&lt;h2 id=&#34;the-strongest-objection-a-generic-brand-that-got-lucky&#34;&gt;The Strongest Objection: a Generic Brand That Got Lucky&lt;/h2&gt;
&lt;p&gt;The objection deserves a straight answer. This, the critics say, is the localization playbook of a no-name brand: four SIM slots are a compromise rather than an invention, camera tuning is parameter fiddling, nothing has a technical moat, anyone could copy it — winning was luck, stepping into an empty market. Industry common sense tells the same story: Africa is a market of low prices and distribution depth, phones for the poor involve no &amp;ldquo;need understanding&amp;rdquo; worth the name, and units move because they are cheap. By that script, Transsion&amp;rsquo;s win should be credited to shelves and price tags. But neither &amp;ldquo;cheapest&amp;rdquo; nor &amp;ldquo;most advanced&amp;rdquo; holds up. In a market of fierce competition and different tariffs, four slots mean one card per network; the too-dark photograph was repaired by fixing a user trait mainstream makers ignored. These answers live in the user&amp;rsquo;s circumstances, not in a laboratory roadmap. Parameters can be copied. Knowing which parameters to copy cannot. Luck decides who steps into an empty market; it does not decide who completes the answers inside it.&lt;/p&gt;
&lt;h2 id=&#34;apple-never-made-four-sim-slots-and-still-rules&#34;&gt;Apple Never Made Four SIM Slots, and Still Rules&lt;/h2&gt;
&lt;p&gt;Push the objection one layer further and it sharpens: Apple never shipped four SIM slots and still rules the premium end — so user knowledge matters less than product definition. The objection can be met, because the two things never conflicted. Apple defined a different kind of user: the person unwilling to swap cards for a cheaper call. Two sets of knowledge about users, each governing its own territory, neither a rebuttal of the other. Pitting them against each other is a scheduling error. The genuinely dangerous combination is a different one: product-definition power in the hands of a team with no knowledge of its users — a flawless machine with no one inside it. Transsion ran the opposite play: ordinary technology, and people everywhere in the details.&lt;/p&gt;
&lt;h2 id=&#34;no-parameter-table-has-a-row-for-skin-color&#34;&gt;No Parameter Table Has a Row for Skin Color&lt;/h2&gt;
&lt;p&gt;Innovation needs knowledge, and above all knowledge about users — that is where the course lands. Said plainly: what innovation lacks has never been technical knowledge; what it lacks is knowledge of the user. No parameter table carries a row for SIM slots or skin color; the user&amp;rsquo;s circumstances do. Anyone can fill in a parameter table; the circumstances ask that a team stoop down to see them. The same logic travels. Ten years ago India looked like China in the eighties — construction everywhere, dust in the air — so Transsion shipped phones with dust jackets and signed film stars as spokespeople. One stroke, same logic: first learn what circumstances people live in, then build. The answer in four SIM slots comes down to a single line — knowing users is hard craft in its own right, and harder to copy than any parameter.&lt;/p&gt;
</description>
      <pubDate>Mon, 31 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Marketing</category>
    </item>
    
    <item>
      <title>Waves Follow the Soil</title>
      <link>https://www.fengyuwang.com/en/blog/posts/universal-wave/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/universal-wave/</guid>
      <description>&lt;p&gt;Why does the same wave theory count so neatly in US stocks, yet fail everywhere in A-shares? The first reaction is that the theory is outdated, or that the counting was wrong. Neither. A wave pattern is not universal truth; it grows out of a market&amp;rsquo;s soil. Change the soil, and the waves that grow out of it must change.&lt;/p&gt;
&lt;p&gt;One framework puts this plainly: traditional wave theory fits the US registration-based system — scarce share supply, a seller&amp;rsquo;s market. Under the A-share approval-based system, supply is abundant — a buyer&amp;rsquo;s market — and traditional waves fail there. The difference is not in the charts; it is in the supply structure of chips. A market with scarce supply and a market with abundant supply are two different games: in one, goods are few and money is plenty, and participants bid against each other; in the other, goods are many and money is scarce, and prices are pressed down by supply. Feed the same rule into two structures, and the price action that grows out of it wears two faces. This is not a national trait; it is structural. Waves record the game between chips and money. When the raw material of the game changes, the shape of the record changes with it.&lt;/p&gt;
&lt;p&gt;On the soil of a buyer&amp;rsquo;s market, this framework builds a different, four-segment structure: the bottom range, the main advance, the second rebound, and the main decline — built specifically for judging the large cycles of indices and sectors. Its use has nothing to do with prophecy: it does not forecast the market, it only verifies it — refusing to call tops and bottoms in advance, waiting for signals to appear, checking against them, then acting.&lt;/p&gt;
&lt;p&gt;Now the strongest counterargument: counting waves is mysticism. The same price action can be counted into whatever shape the counter wants to see; building another wave set for a buyer&amp;rsquo;s market is a prettier mysticism. The blow lands hard, but on the wrong target. The problem with mysticism is not the waves; it is treating waves as prophecy — conclusion first, then bend the count to fit, and any count can be squared. The four-segment structure works in the opposite way: it is checked after the fact. Does the bottom range have a boundary? Has the main advance actually run? Has the second rebound confirmed? Has the main decline broken down? Every segment has observable edges. Miscount, admit it; no rewriting the count to save face. To call a checkable structure mysticism is to put a ruler and a fortune-telling stick into the same drawer.&lt;/p&gt;
&lt;p&gt;Second objection, from another direction: a tool should be universal. Tailoring a wave set to one market is cutting the foot to fit the shoe, pandering to the local — hardly a theory. That sounds fair, but it reads the causality backwards. The foundation of wave patterns is not aesthetics; it is chip supply. Different supply, different game; different game, different price structure. A tool following the structure is not pandering — it is calibration. Measure a tree with a ruler made for the wrong soil, and the error belongs to the ruler, not the tree. Admitting that structures have soil is the honesty a theory owes; claiming one ruler measures all soils is turning theory into faith.&lt;/p&gt;
&lt;p&gt;Third objection is the most practical: even if the four segments can be told apart, so what? Judging the large cycles of indices and sectors has no direct use for stock picking. This question strikes the foundation of the framework. The framework&amp;rsquo;s order is indices and sectors first, individual stocks second, and waves govern exactly the first layer: where the market sits in its large cycle determines the direction of flexible positions and the pacing of adding to core positions. If the first layer is wrong, the second layer can be picked perfectly and still fail to recover the direction missed at the first layer. The bill for skipping the first layer was settled long ago by the market — winning the index while losing the stock is a bill the market settled long ago. The pity is not being wrong; it is being right in an order that never mattered.&lt;/p&gt;
&lt;p&gt;So: waves follow the soil. A seller&amp;rsquo;s market grows traditional waves; a buyer&amp;rsquo;s market grows the four-segment structure; tools calibrate to structure, and that is all. A ruler does not prophesy how tall the tree will grow; it only measures. Before measuring, ask one question: what soil is underfoot.&lt;/p&gt;
</description>
      <pubDate>Sat, 29 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>Treating Everyone Equally Punishes the Best Customers</title>
      <link>https://www.fengyuwang.com/en/blog/posts/unequal-by-design/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/unequal-by-design/</guid>
      <description>&lt;p&gt;Call an airline for help, and how fast a human picks up depends on the membership tier. Diamond members reach a person right away; gold members wait; everyone else stays in the queue and finally hears that all lines are busy. Some find this outrageous: everyone paid for a ticket, so why the difference in treatment? The objection sounds principled, but it rests on a more basic fact it refuses to see.&lt;/p&gt;
&lt;h2 id=&#34;differential-treatment-is-the-industry-default&#34;&gt;Differential Treatment Is the Industry Default&lt;/h2&gt;
&lt;p&gt;Almost every company treats different customers differently. Frequent flyer programs are sorted into diamond, gold, and green tiers; insurers, banks, and hotels each keep their own ladders. So the question was never whether to segment, but whether the segmentation makes sense. First class and economy fly on the same plane with different prices, different seats, and different service, and nobody calls it an insult, because the difference sits in the open: money in, service out, the books balance. Equal treatment sounds fair and works out as the opposite — putting the best and the worst customers into the same queue is a punishment aimed at the ones who pay more. Real fairness is proportional fairness: those who give more get treated better. Forcing everyone level is not fairness; it is a levy on the generous. Customers already vote on service with their wallets every time they buy a ticket or a policy; pretending all votes are equal amounts to declaring them void, and that is the deepest betrayal of the good customer.&lt;/p&gt;
&lt;h2 id=&#34;a-price-hike-is-an-honest-repricing&#34;&gt;A Price Hike Is an Honest Repricing&lt;/h2&gt;
&lt;p&gt;Others call it snobbery to price customers out. An insurance executive once described the practice from his own career: identify the customers the company wants to shed, then raise their premiums sharply when the policy comes up for renewal. Most left. Those who stayed paid the higher price, and the company at least earned a little. The mechanism is cold, but it is not malice. Dropping a customer is not a wallet decision; it is a capacity decision — keeping mismatched customers on the books wears both sides down, and renewal turns into a ritual of mutual deception. The hike is an honest repricing: either the policy no longer makes sense for the customer, or the customer needs another company. The ones who stayed voted with their renewals, which means the pricing was right; the ones who left walked away with clear information instead of guessing whether the coverage still fit.&lt;/p&gt;
&lt;h2 id=&#34;the-diamond-card-is-flown-not-born&#34;&gt;The Diamond Card Is Flown, Not Born&lt;/h2&gt;
&lt;p&gt;Another worry: segmentation slides into discrimination — attitudes toward bad customers harden into attitudes toward a kind of person. The dividing line is actually clear. Segmentation sorts behavior, not identity: repeat purchases, service costs, claims records, all verifiable actions. The diamond card is flown, not born. The threshold is written in behavior, and anyone can cross it. Discrimination locks onto who a person is; segmentation measures the relationship between a person and one company. The first conclusion travels with the person; the second holds only inside the relationship. Confusing the two means confusing a ledger with a verdict.&lt;/p&gt;
&lt;h2 id=&#34;the-pub-owner-needs-no-software&#34;&gt;The Pub Owner Needs No Software&lt;/h2&gt;
&lt;p&gt;Still others call this a data game for giants, out of reach for small business. But segmentation never needed software. The pub owner remembers who comes every Thursday, which stool, which drink — that memory is the oldest customer segmentation. CRM platforms only scale it, letting a company remember hundreds of thousands of people instead of a few dozen familiar faces. A shop without a system still segments; it just segments wrongly with no one to notice. The system does not invent segmentation; it makes the mistakes checkable.&lt;/p&gt;
&lt;p&gt;Differential treatment is not rudeness. It is honest bookkeeping. Being dismissed gently is at least a confession; being neglected equally is neglect without a confession. The deepest injustice happens exactly where everyone pretends to be equal — the people who paid more, came back more, and entrusted more get served like the most ordinary passers-by. Tiers are not arrogance. Pretending there are no tiers is.&lt;/p&gt;
</description>
      <pubDate>Thu, 27 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Marketing</category>
    </item>
    
    <item>
      <title>Drops Are the Fuel of Drip Investing</title>
      <link>https://www.fengyuwang.com/en/blog/posts/ubw-index-drip/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/ubw-index-drip/</guid>
      <description>&lt;p&gt;Why do retail investors hold the best card at the table, then fold first the moment markets fall? The card is called no leverage, and long capital horizons — the house&amp;rsquo;s money has a deadline; a retail investor&amp;rsquo;s money does not. But a good card is not the same as knowing how to play it. There is a system that turns this card into a set of rules for index drip investing, under a theatrical name borrowed from anime — Unlimited Blade Works. The name doesn&amp;rsquo;t matter. The rules do. Four of them, one at a time.&lt;/p&gt;
&lt;h2 id=&#34;first-cash-for-the-fall&#34;&gt;First: cash for the fall&lt;/h2&gt;
&lt;p&gt;The least glamorous rule comes first: before any operation, hold enough cash in reserve. This system treats it as a premise, not an option — when the market crashes and you have no cash, no amount of theory means anything. In other words, a fully invested person doesn&amp;rsquo;t even qualify to drip-feed into the market.&lt;/p&gt;
&lt;p&gt;That sounds like a riddle: isn&amp;rsquo;t drip investing just buying all along? It is — but the ammunition is never the moment your salary arrives; it is what you still have in hand on the day the market drops. In a rally, everyone has a drip-investing plan. A drawdown is the reveal — the people with cash are accumulating, and the fully invested are playing dead. For those who learn about drip investing only after going all-in, what&amp;rsquo;s missing isn&amp;rsquo;t a method. It&amp;rsquo;s bullets.&lt;/p&gt;
&lt;h2 id=&#34;second-broad-indexes-only-never-individual-stocks&#34;&gt;Second: broad indexes only, never individual stocks&lt;/h2&gt;
&lt;p&gt;Some say you should stop buying in a decline and wait for a confirmed bottom — isn&amp;rsquo;t buying into a fall just losing more efficiently? It sounds prudent, but it has a hole: on the left side of a bear market, there is no confirmed bottom to wait for. By the time the signal is clear and the trend has turned, the cheapest stretch is already behind you. That cheapest stretch is exactly what drip investing buys — and it belongs only to those who don&amp;rsquo;t wait.&lt;/p&gt;
&lt;p&gt;Does that mean anything can be drip-fed in? No. This is the system&amp;rsquo;s hardest line: broad-based indexes only; individual stocks are forbidden. The reasoning is hard: a stock can fall and never come back. Companies delist, blow up, become footnotes to an era. Pick the wrong ticker and the better your discipline, the more evenly your losses get spread — the machine that averages down your cost becomes a machine that averages down your ruin. An index has no such problem: it cannot delist, and a single-stock black swan cannot kill it. What falls is valuation, not survival. The ready-made list is the STAR 50, the CSI 300, the CSI 500 — not recommendations, just examples of the category.&lt;/p&gt;
&lt;h2 id=&#34;third-fixed-schedule-flexible-size-heavier-as-it-falls&#34;&gt;Third: fixed schedule, flexible size, heavier as it falls&lt;/h2&gt;
&lt;p&gt;Drip investing with a twist: fixed dates, unfixed amounts. Through sideways grinds and slow bleeds you keep buying on schedule, and the deeper the fall, the more composed the buying. Cost is thinned on the days the market drops, not chased on the days it rallies.&lt;/p&gt;
&lt;p&gt;And on a crash day? The answer is counterintuitive: a crash day is precisely a day for a small additional buy. In a systemic crash like early 2020, the method is pyramid accumulation — add in small tranches as it falls, never in one bottom-fishing shot. Why not deploy everything at once? Because while the knife is falling, nobody knows which floor it stops on. A one-shot bottom call bets on reflexes; a pyramid bets on bullets. Only those still holding bullets once the selling has exhausted itself have earned the word cheap.&lt;/p&gt;
&lt;h2 id=&#34;fourth-core-and-satellite-kept-apart&#34;&gt;Fourth: core and satellite, kept apart&lt;/h2&gt;
&lt;p&gt;The last rule governs structure: the core position and the trading position live in separate rooms. The core is broad indexes, fed one spoonful at a time by drip investing, meant to sit untouched. The satellite is individual stocks, diversified across sectors, each single position strictly capped. The two sums of money have different temperaments — the core&amp;rsquo;s temperament is endurance, the satellite&amp;rsquo;s is movement. Mixed in one account, a drawdown makes it impossible to tell which to hold and which to move, and in the end both tend to get sold at the same bottom.&lt;/p&gt;
&lt;h2 id=&#34;the-boundary&#34;&gt;The boundary&lt;/h2&gt;
&lt;p&gt;This system does not answer which fund to buy, how much, or when to sell — picks, price targets, and return projections are outside its jurisdiction. It answers one question: when the market falls, those with cash are restocking, and the fully invested are watching from the sidelines.&lt;/p&gt;
&lt;p&gt;What drip investing buys has never been the lowest price. It buys the fact that you are still in the game.&lt;/p&gt;
</description>
      <pubDate>Tue, 25 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>One Ledger, Two Pages</title>
      <link>https://www.fengyuwang.com/en/blog/posts/two-tracks/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/two-tracks/</guid>
      <description>&lt;p&gt;Holding one company for years while trading around corporate events in the same market — is that a contradiction? It sounds like one: how can someone committed to a business also chase the money in merger rumors? Push it one level down, though, and it becomes a different question: why must profit come from exactly one source?&lt;/p&gt;
&lt;h2 id=&#34;one-system-two-workflows&#34;&gt;One System, Two Workflows&lt;/h2&gt;
&lt;p&gt;One framework puts it bluntly: investing as the main line, speculation as the auxiliary, the two combined. That is not fence-sitting; it is division of labor. The base position earns the margin of safety — the gap between price and value, realized through time. The event sleeve earns the event itself — the repair of a ratio gone askew, the spread around an announcement window. Two kinds of money arrive by different routes; they demand two workflows. Forcing one workflow onto both jobs is like signing a construction contract with a bookkeeping pen: the pen is fine, the job does not get done.&lt;/p&gt;
&lt;p&gt;The real difference is not the moves. It is the ledger. Gains, losses, stops, top-ups — each stays on its own page. Two tracks run in parallel only because each is complete in itself; once they share a page, parallel turns into dragging each other down.&lt;/p&gt;
&lt;h2 id=&#34;speculation-is-speculation-why-the-packaging&#34;&gt;Speculation Is Speculation. Why the Packaging?&lt;/h2&gt;
&lt;p&gt;One objection lands hard: calling itself investment-led while running short-term arbitrage — speculation is speculation, and dressing it up as a side line is just an excuse for itchy hands.&lt;/p&gt;
&lt;p&gt;The answer is in how firmly the framework defines itself. It never relabels speculation as investment: investing primary, speculation auxiliary, hierarchy, proportion, and placement all on record. Where does an excuse differ from a sanctioned side line? At the moment of loss. The excuse loses, then quietly reaches for main-line funds to fill the hole. The side line takes the stop right there, and never touches the main force&amp;rsquo;s granary. Does the itchy hand keep separate books? No. Separate books are a line one is not allowed to retreat across.&lt;/p&gt;
&lt;h2 id=&#34;money-is-money-why-split-the-accounts&#34;&gt;Money Is Money. Why Split the Accounts?&lt;/h2&gt;
&lt;p&gt;A smoother objection follows: since it is all the same money, why separate accounts? Roll the arbitrage profits into the base position, and compounding runs faster.&lt;/p&gt;
&lt;p&gt;The trouble is loss contagion. When funds are pooled, a failed arbitrage trade does not stay politely in its own column; it spreads across the mixed account and shakes the holding logic of the base position. The saddest cases are not wrong judgments but main positions — the ones that should never move — paying for an auxiliary sleeve&amp;rsquo;s loss. That is letting the auxiliary corps command the main army: a skirmish goes badly, and the whole front withdraws. Separate ledgers quarantine a loss; a merged ledger lets it walk.&lt;/p&gt;
&lt;h2 id=&#34;secondhand-news--can-it-still-work&#34;&gt;Secondhand News — Can It Still Work?&lt;/h2&gt;
&lt;p&gt;The most practical objection: event trades run on announcements and timing, and by the time news reaches an ordinary holder it is secondhand — a small position is just donating money. Half of this is true. In a contest of speed, the retail holder queues last, and that slice of money is genuinely out of reach. But the ledger records a different page. The event sleeve&amp;rsquo;s reference book is not speed; it is ratio and statistics: within one industry chain, comparable companies hold a stable market-cap ratio; when it drifts, the trade is the repair — a structural spread, not a race against the wire. Fast money belongs to the fastest; structural money belongs to whoever can compute the ratio. The part that cannot be won on speed is answered by size, not by speed: the small position itself is half the answer.&lt;/p&gt;
&lt;h2 id=&#34;two-ledgers-never-merged-into-one&#34;&gt;Two Ledgers, Never Merged into One&lt;/h2&gt;
&lt;p&gt;In the end, the precondition for two tracks is a single rule: the two ledgers never become one. Funds separated, portfolios separated, stops on each side; the base page turns only on value, the event page only on events. Fundamentals set the value anchor; technicals read when money enters — neither commanding across the divide.&lt;/p&gt;
&lt;p&gt;This structure is not for everyone. Without time to watch events, one value ledger is enough; unable to keep the books apart, keep only one. Here is the boundary: not a universal machine, but a division-of-labor chart for someone who genuinely has both capabilities. One sum of money, two sources of return; one ledger, two pages — each page clean, and only then does the account stand.&lt;/p&gt;
</description>
      <pubDate>Sun, 23 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>Two Trades, One Incomplete Education</title>
      <link>https://www.fengyuwang.com/en/blog/posts/two-masters/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/two-masters/</guid>
      <description>&lt;p&gt;Learn valuation until it is second nature, and a bear market will still take half the account. Where does the failure sit? Not in the wrong book — in reading only one. Both books sit on the shelf; many finish the first and enter the market anyway. Stock picking and market timing are two separate trades, and a single teacher cannot cover both.&lt;/p&gt;
&lt;h2 id=&#34;one-course-finds-the-goods-one-keeps-the-practitioner-alive-on-the-road&#34;&gt;One course finds the goods; one keeps the practitioner alive on the road&lt;/h2&gt;
&lt;p&gt;One framework puts it bluntly: Graham finds the bargains, Livermore tells the moment when picking them up will not end in death on the way down. Graham&amp;rsquo;s course covers selection, valuation, margin of safety, and left-side positioning — the question of which assets are worth buying and at what price the principal is protected. Livermore&amp;rsquo;s course covers market trend, entry timing, position sizing, and right-side confirmation — the question of when to act, when to stay in cash, and when not to fight the tape. One course locates the goods; the other prevents death on the road home. In other words, valuation answers whether it is worth it; the broad market answers whether now will do. Someone who enters the market after the first course is not poorly trained. He is half trained.&lt;/p&gt;
&lt;h2 id=&#34;cheap-is-not-the-same-as-finished-falling&#34;&gt;Cheap is not the same as finished falling&lt;/h2&gt;
&lt;p&gt;The objection is loud: do the valuation properly, buy what is cheap and hold it, ignore the index — value investing means buying more as prices fall. The sentence carries truth, and a price. Cheap does not mean the falling has stopped. Valuation produces a price range, not a calendar. Cheap is measured with a ruler, not with a calendar — the ruler gives no date. Intrinsic value computes as a band, but over the short run the market is a voting machine, so order matters: the line of least resistance in the broad market first, the worth of an individual stock after. People who did every piece of homework still die in a long, slow decline; what they lacked was rarely diligence — it was a calendar. The waiting saved by holding stubbornly on the left side gets collected later, to the last cent, through the grind of a bear market.&lt;/p&gt;
&lt;h2 id=&#34;if-the-trend-is-all-who-protects-the-principal&#34;&gt;If the trend is all, who protects the principal?&lt;/h2&gt;
&lt;p&gt;The other side is just as loud: read the trend right and nothing else matters; fundamentals are a slow variable, and the chart already reflects everything. A chart reflects price, not value; the trend supplies an entry — it supplies no protection for principal. Trading pure price patterns is a bet on sentiment: right on rhythm, wrong on discount. Every entry needs a margin of safety underneath. When the trend runs out, anyone without a discount underneath cannot absorb the drawdown. Timing is a valve; behind the valve there must be pipes. With no water in the pipes, opening the valve yields nothing.&lt;/p&gt;
&lt;h2 id=&#34;two-trades-at-once-master-of-neither&#34;&gt;Two trades at once, master of neither?&lt;/h2&gt;
&lt;p&gt;A third objection: chasing both value and technique means mastering neither. That sentence fuses two practices into one. In this framework the division is not a blend — it amounts to a schedule. During the panic at the bottom of a bear market, Graham works the shift: screen for undervalued names, compute the discount to intrinsic value. Once a key turning point breaks through and the trend confirms, Livermore opens the gate. No blind left-side holding; the broad-market trend filter screens out the long grind downward. And every single entry carries a valuation discount underneath, never a naked bet on direction. Graham sets the floor of the discount; Livermore confirms the direction. The courses do not overlap; only then is wanting both legitimate. One chart plus one discount — remove either half and the practitioner limps.&lt;/p&gt;
&lt;h2 id=&#34;when-to-pick-up-the-bargains-is-the-second-course&#34;&gt;When to pick up the bargains is the second course&lt;/h2&gt;
&lt;p&gt;The difficulty of this craft was never the precision of the valuation. It is finishing both courses and still being willing to wait. The work happens at the bottom of the bear market: screening in the panic, computing the discounts, entering only after the turning point confirms. Reverse the order, and however thorough the homework, it goes to waste. One course is taught in the bear market, the other at the turning point; skip either and the exam is failed. When bargains litter the ground, one question comes first: pick one up now, and will the falling road be fatal? Graham does not answer that. The answer sits in another book. When to pick up the bargains is the second course.&lt;/p&gt;
</description>
      <pubDate>Fri, 21 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>The Strongest Businesses Fall First</title>
      <link>https://www.fengyuwang.com/en/blog/posts/two-broken-modes/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/two-broken-modes/</guid>
      <description>&lt;p&gt;Thousands of business models, sorted by what lasts, come in only three kinds. One framework puts it cleanly: the first collects a toll — customers have plenty of options, yet this is the best one, so they pay willingly (that kind gets its own essay; one line of contrast here). The second levies a monopoly tax: customers have no choice, only a price to accept. The third resembles a rhinoceros beetle: burning cash for scale, trading losses for market share. The latter two faces are the market&amp;rsquo;s most celebrated — and the ones whose deaths were written in advance. Why do the strongest businesses have their endings drafted first?&lt;/p&gt;
&lt;h2 id=&#34;customers-have-no-choice--choice-will-come-anyway&#34;&gt;Customers Have No Choice — Choice Will Come Anyway&lt;/h2&gt;
&lt;p&gt;Start with the monopoly tax. On the surface it is wildly profitable: name any price, and customers swallow it whole. The problem hides in that swallowing. Customers accept the price not because it is fair, but because no second price exists. The essence of this model is harvesting customers through a monopoly position. It looks sturdiest and is most fragile, because it stands on the opposite side of its own users. What does that mean? Profit fed by an adversarial position will see its supplier find an exit: regulators step in, or competitors break in with substitutes. A monopoly was never an invariant; it can break at any time. Valeant hoarded old drugs to jack up prices; Danke cornered listings to squeeze tenants. Naming them is enough: the death sentence was written long ago; only the delivery takes time.&lt;/p&gt;
&lt;p&gt;One line of accounting for the customers: drug money and rent were collected from those with the least bargaining power in the world. Counted; back to the structure.&lt;/p&gt;
&lt;h2 id=&#34;horns-fed-by-funding-growing-on-their-own-lifeline&#34;&gt;Horns Fed by Funding, Growing on Their Own Lifeline&lt;/h2&gt;
&lt;p&gt;Now the money-burning kind. The story is seductive: losses buy the market, scale buys the future. Yet these companies tell a story of future monopoly while holding no real moat. Their expansion has a harsher name: suicidal expansion. Why? For scale to become a moat, what the money bought must stay — technology, network effects, cost structure; at least one must stick. Scale that buys no core competitiveness holds up no moat, only losses. Once funding is interrupted, the cash chain snaps, with a lifecycle too short to outlast one cycle. Pseudo-unicorns in private markets and storytelling concept stocks in public markets share this face. Their growth burns on the income statement, never rooting in the business.&lt;/p&gt;
&lt;h2 id=&#34;profit-is-profit--why-ask-where-it-came-from&#34;&gt;Profit Is Profit — Why Ask Where It Came From&lt;/h2&gt;
&lt;p&gt;The first objection is the bluntest: whatever the model, high margins and fast growth make a good business; customers grumble but pay. The flaw? Treating two kinds of profit as one. Profits differ in durability: profit fed by an adversarial position will see its supplier find an exit — regulation is one road, substitution another, competition the third. The number stays; the structure propping it up has changed.&lt;/p&gt;
&lt;p&gt;The second is harder: scale bought with burned cash is itself a moat — outlast your rivals and you win; every winner got here that way. It sounds like a law of history but drops half the sentence. The winners&amp;rsquo; scale rests on a moat, so burning was investment; pseudo-growth&amp;rsquo;s scale rests on losses, so burning is bleeding. Both are called scale; what lies underneath differs, and so does fate.&lt;/p&gt;
&lt;p&gt;The third pulls out the floor: good models and bad cannot be told apart in advance; it is all hindsight. This must be met head-on — they can be told apart, and the answer can be asked for in advance. Only two questions: Do customers have a choice? Is the moat technology, or subsidy? Neither needs forecasting, only verification. Open the books; the answer is already there, before the fact.&lt;/p&gt;
&lt;h2 id=&#34;the-death-is-written-reading-it-is-optional&#34;&gt;The Death Is Written; Reading It Is Optional&lt;/h2&gt;
&lt;p&gt;Strength and fragility in business are not temperament but structure. The monopoly tax is strong because customers have no way out, and fragile because they will find one. The burning horns are strong while the scale still inflates, and fragile because funding can stop any moment. The willingly-paying model, by contrast, grows slowly on paper yet never gambles on anyone&amp;rsquo;s next quote or next financing round. So the question was never whose story is louder; it is whether those two questions have answers: Do customers have a choice? Is the moat technology, or subsidy? The answer is not in the forecast; it is in the books, readable in advance.&lt;/p&gt;
</description>
      <pubDate>Wed, 19 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>Five Signals of a Top, Five Signals of a Bottom</title>
      <link>https://www.fengyuwang.com/en/blog/posts/top-bottom-signals/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/top-bottom-signals/</guid>
      <description>&lt;p&gt;Every time a market reaches an extreme, someone starts guessing price targets. Guessing a target means predicting a number produced by the combined behavior of hundreds of millions of people, armed with nothing but mood and old charts. I don&amp;rsquo;t guess targets. I count signals. There are five for a top and five for a bottom, all observable behaviors, none of them price prophecies. A position counted from a checklist is far more reliable than a target guessed from a hunch.&lt;/p&gt;
&lt;h2 id=&#34;the-top-five-signals-count-how-many-you-see&#34;&gt;The top: five signals, count how many you see&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&amp;ldquo;This time is different&amp;rdquo; becomes the consensus view — it appears at every top, without exception.&lt;/li&gt;
&lt;li&gt;People around you who know nothing about investing start talking stocks, and talking with confidence.&lt;/li&gt;
&lt;li&gt;The whole industry expands capacity recklessly; new players pour in, capacity blueprints stacking up one after another.&lt;/li&gt;
&lt;li&gt;Valuations break all historical records, explained away by &amp;ldquo;traditional valuation methods no longer apply.&amp;rdquo;&lt;/li&gt;
&lt;li&gt;Upstream infrastructure companies report explosive profit growth — the water reaches the shovel sellers first.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;None of these requires a model. All they require is open eyes. I ran this checklist against today&amp;rsquo;s market, specifically the AI industry: this-time-is-different is the consensus, people who know nothing about investing are all discussing it, new players are still pouring in — three or more, already hit. Hitting three does not mean a crash tomorrow. It means you are not buying low at this moment; you are standing exactly where someone needs to hand off their bags.&lt;/p&gt;
&lt;h2 id=&#34;the-bottom-the-same-list-inverted&#34;&gt;The bottom: the same list, inverted&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&amp;ldquo;This industry will never recover&amp;rdquo; becomes the consensus judgment.&lt;/li&gt;
&lt;li&gt;The whole industry loses money; the leaders start laying people off and cutting output.&lt;/li&gt;
&lt;li&gt;Nobody wants to talk about it; the media has all but stopped covering it.&lt;/li&gt;
&lt;li&gt;Capacity clears out; smaller players go bankrupt and exit in batches.&lt;/li&gt;
&lt;li&gt;Valuations sit in the lowest historical range, and still nobody buys.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;There is a living sample of the bottom signals right in front of us: hardly anyone talks about Chinese liquor anymore, and the market&amp;rsquo;s hot theme has moved on to tech stocks. Did the fundamentals of liquor disappear? No. Only the people discussing it changed. At the top of the last cycle, liquor was what everyone talked about — the same emotion, just attached to a different asset.&lt;/p&gt;
&lt;h2 id=&#34;do-signals-stop-working&#34;&gt;Do signals stop working&lt;/h2&gt;
&lt;p&gt;The strongest objection goes like this: signals are visible to everyone, markets learn, and once everyone trades off the same checklist, the signals should arrive early or stop working. It sounds convincing, but it aims at the wrong target. The content of the signals changes; the mechanism that produces them does not. Greed and fear do not change, capital&amp;rsquo;s pursuit of profit does not change, and so people will believe &amp;ldquo;this time is different&amp;rdquo; at the top and &amp;ldquo;it will never recover&amp;rdquo; at the bottom, cycle after cycle. As long as human nature holds, there will always be someone filling out this checklist for you. What changes is only the vocabulary: liquor gives way to tech stocks, tech stocks give way to AI.&lt;/p&gt;
&lt;h2 id=&#34;a-sense-of-position-not-a-timing-tool&#34;&gt;A sense of position, not a timing tool&lt;/h2&gt;
&lt;p&gt;The boundary deserves to be drawn explicitly: signals give you a sense of position, not a timing tool. Three top signals mean you are in overvalued territory; they do not tell you which day to sell. All five bottom signals can line up and the market can keep grinding down for another year. This list does not apply to V-shaped reversals caused by sudden events — war, abrupt policy shifts — where the market&amp;rsquo;s leg breaks and resets before any observation of behavioral temperature can register. A sense of position tells you winter is coming; it cannot stop a cold snap from arriving overnight. So my conclusion is simple: targets are guessed, positions are counted. Guessing right once is luck; counting right across a cycle is a checklist. The next time everyone says this time is different — will you count first, or believe first?&lt;/p&gt;
</description>
      <pubDate>Mon, 17 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>Telling Time Is Free, What Gets Worn Is Not</title>
      <link>https://www.fengyuwang.com/en/blog/posts/time-is-free/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/time-is-free/</guid>
      <description>&lt;p&gt;Two taps on a phone return the time in any city on earth. By that logic, the wristwatch should have died as a category long ago. It did not. Does anyone truly need a watch? No. Yet watches still sell for twenty-five thousand dollars. In the same collection, a watch bought for five thousand decades ago now stands at twenty-five thousand; the alternative back then was a forty-dollar Swatch, still worth a few dozen dollars today. Both do the same job: showing the time. The function has been free for years, the business is still alive — where does the money come from?&lt;/p&gt;
&lt;h2 id=&#34;the-most-accurate-timekeeping-never-sold-a-watch&#34;&gt;The Most Accurate Timekeeping Never Sold a Watch&lt;/h2&gt;
&lt;p&gt;The question has to be asked from the other side: has any brand ever sold a watch on the claim of keeping the most accurate time? One company keeps its own advertising history unusually honest. The most accurate timekeeping — never mentioned. An invitation to buy — never made either. The entire film says one thing only: the watch will never truly be owned; its holder merely looks after it for the next generation. The company named the series: legacy. Telling time is free; legacy charges.&lt;/p&gt;
&lt;h2 id=&#34;eighty-dollars-and-fifty-thousand-the-same-contents&#34;&gt;Eighty Dollars and Fifty Thousand, the Same Contents&lt;/h2&gt;
&lt;p&gt;A Swatch sells in Hong Kong for about eighty dollars. A Hermes Birkin sells for fifty thousand. What the Birkin holds is exactly what a cheap bag holds. A gap of several hundred times cannot be explained by function — not one cent of it. The basis of pricing moved long ago: no longer what the product does, but who the product lets a person become. This is value-based pricing — the value is not locked in the case, but in the wearer&amp;rsquo;s self-description. Function answers what the thing is; meaning answers who the person wearing it is. The premium lives in the second answer.&lt;/p&gt;
&lt;h2 id=&#34;the-stupidity-tax-charge-reads-the-wrong-ledger&#34;&gt;The Stupidity-Tax Charge Reads the Wrong Ledger&lt;/h2&gt;
&lt;p&gt;Some say that since eighty dollars and fifty thousand both tell the time, the expensive one is pure stupidity tax, and vanity pricing cannot last. That criticism rests on one premise: the product being sold is time-telling. The premise is gone. After all these years of free time-telling, the fifty-thousand-dollar bag still sells out — the money was never paid for the function in the first place. Whether it is a tax depends on which account it is booked to. Function is a purchase; so is meaning. Different accounts, different arithmetic for expensive and cheap. Audit a purchase of meaning with the ledger of function, and the verdict always reads stupidity tax.&lt;/p&gt;
&lt;h2 id=&#34;a-slogan-fools-once-a-legacy-must-pay-out-every-generation&#34;&gt;A Slogan Fools Once; a Legacy Must Pay Out Every Generation&lt;/h2&gt;
&lt;p&gt;Others say the legacy advertising is just rhetoric — the watch is the same watch, and the premium is a marketing illusion. An illusion cannot carry decades. From the most accurate timekeeping to looking after the next generation, the brand moved the promise&amp;rsquo;s term from the product&amp;rsquo;s lifespan to beyond the buyer&amp;rsquo;s own — a day the buyer will never see, yet the promise must keep holding. A sentence nobody can verify became the most expensive part, precisely because it cannot be walked back. A slogan that deceives once is rhetoric; one that pays out generation after generation is an asset.&lt;/p&gt;
&lt;h2 id=&#34;appreciation-is-the-effect-not-the-cause&#34;&gt;Appreciation Is the Effect, Not the Cause&lt;/h2&gt;
&lt;p&gt;Still others say a watch bought for a few thousand that rose to twenty-five thousand reflects investment skill, with nothing to do with psychological value. The order is reversed. Precisely because the narrative held — never truly owned, merely kept in trust — the resale market was willing to pay a premium for passing it to the next generation. Meaning comes first; the paper number is downstream. Count the gain and ignore the source, and cause and effect will never line up.&lt;/p&gt;
&lt;p&gt;The person whose budget was forty dollars, who ended up paying a hundred times more and still felt ahead — what that person bought was indeed more than a watch.&lt;/p&gt;
&lt;h2 id=&#34;where-the-function-is-still-scarce-skip-this&#34;&gt;Where the Function Is Still Scarce, Skip This&lt;/h2&gt;
&lt;p&gt;This logic has a premise: the function is already free. Where the function remains scarce — medicine, compute — the price still rests on the function, and meaning cannot carry it. Function gets people through the door; meaning gets people to pay. The day the function turns free, the price has nowhere to go but into meaning. Where it cannot move, the function has not turned free yet: the function itself is still collecting admission.&lt;/p&gt;
</description>
      <pubDate>Sat, 15 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Marketing</category>
    </item>
    
    <item>
      <title>Three Sentences or Pass</title>
      <link>https://www.fengyuwang.com/en/blog/posts/three-sentence-test/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/three-sentence-test/</guid>
      <description>&lt;p&gt;Why does research produce longer stories the longer it runs? An earnings call runs an hour, the report runs thirty pages, and the business model reads more like a novel with every draft. The longer the story, the more it asks one to believe; every extra layer of belief leaves the judgment hanging somewhere new. The problem is not whether the story is well told; it is that almost nobody asks whether all of it can be cut to three sentences.&lt;/p&gt;
&lt;p&gt;One fundamental-research framework sets the first screen brutally hard: state a company&amp;rsquo;s core, unchanging asset in three sentences — whatever remains after short-term noise is stripped away. If three sentences suffice, the simpler the logic, the more reliable it is. If they do not — complicated story, layered segments, a bet on some future pie — pass. Complexity is not depth; it is a source of error. The framework&amp;rsquo;s own first step is to strip away short-term noise and extract that unchanging core; the three-sentence test measures exactly this step&amp;rsquo;s output.&lt;/p&gt;
&lt;p&gt;Luckin in its early years is the textbook case screened out by this standard: burning cash to expand, no stable moat, judged a value-destroying asset. One entry; no need to walk through the financials or the share price afterward. The opposite case: CIMC — global container capacity, explainable in one sentence. A business that can be stated clearly earns the next round of research. One that cannot sits on sand, and every valuation and model built on top of it sits there too.&lt;/p&gt;
&lt;p&gt;First objection: what three sentences cannot hold is the real substance; a complicated logic means the research went deep. This reads the direction backwards. Reciting complexity as complexity is not research; it is restatement, not analysis. The depth of research shows in peeling complexity down to simplicity — stripping the noise, stripping the narrative, until what remains is the thing that does not change. Every link in a chain that cannot be stated is a point of failure; the more links, the higher the odds the judgment collapses. Research that goes deep ends with fewer words, not more. A restatement can be memorized; a judgment cannot.&lt;/p&gt;
&lt;p&gt;Second objection: some good businesses are genuinely layered, and a three-sentence test kills them unfairly. Layered businesses can be taken apart, one layer explained at a time; if every layer reads clearly once separated, the business passes the screen. If it still cannot be stated after being taken apart, the problem is not that the business is complex — it is that no core can be isolated, and the act of taking apart is itself the stripping. If the researcher cannot isolate it, who else is expected to? A layered business that reads clearly and one that does not are two different things; the screen stops the second kind.&lt;/p&gt;
&lt;p&gt;Third objection, the most cutting: companies built on a future pie rally the hardest, so passing on them means missing the biggest moves. Yes, it does mean missing them. But ask one more question: can anyone actually earn an advance they do not understand? And having earned it, can they hold it? What is given up was never the stock; it is the right to understand. Money outside one&amp;rsquo;s understanding cannot be held on the way up and cannot be bought on the way down — on the account it is not return, it is luck. The framework&amp;rsquo;s own rule says so plainly: what cannot be understood, pass on, never force. Missing out is not the cost of this system; it is the design.&lt;/p&gt;
&lt;p&gt;The pity is for the people trapped by complicated stories: one story told for three years, and the storyteller cashed out long ago.&lt;/p&gt;
&lt;p&gt;So three sentences come first, before valuation — the sharpest valuation coordinates are only for businesses that can be stated clearly. If three sentences cannot be produced, the fault is usually not in the mouth; the business itself has no unchanging core. If it cannot be said, pass. Passing is not defeat; it is the first move of research — and outside the door, no money is lost. This screen only judges formed businesses: for an early-stage company, failing three sentences is no sin — the core has not grown out yet. The screen issues no verdict on them; it only asks one to wait.&lt;/p&gt;
</description>
      <pubDate>Thu, 13 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>Match the Ruler to the Asset</title>
      <link>https://www.fengyuwang.com/en/blog/posts/three-rulers/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/three-rulers/</guid>
      <description>&lt;p&gt;Why does one ruler produce two answers? The same company: one person reads the price-to-earnings ratio and says cheap; another reads the same statements and says expensive. The problem is rarely in the eyes; it is in the ruler. Take a chemical company sitting at the top of its cycle — its profit belongs to the past, its capacity to the present, and the cheapness computed from last year&amp;rsquo;s profit measures a move already played out. The ruler is not broken; it was matched to the wrong asset.&lt;/p&gt;
&lt;p&gt;One valuation framework puts this bluntly: classify the asset first, then match the yardstick — cyclical, growth, value, each with its own ruler. What to measure is decided by what the asset is; only then does the how carry meaning. The ruler follows the asset; the asset does not bend to the ruler.&lt;/p&gt;
&lt;p&gt;The cyclical ruler measures capacity and the supply cycle. Nonferrous metals, chemicals, shipping: profit follows price, price follows supply, and while supply is still expanding, today&amp;rsquo;s profit is tomorrow&amp;rsquo;s reversion to the mean. A statically low earnings multiple often stands exactly at the cycle&amp;rsquo;s peak — the cheapness it measures is false cheapness. So the cyclical ruler carries no static-earnings marking at all — not because the ruler is inaccurate, but because that marking should not exist. The question is not how much the company earns now; it is whether capacity is still being added: has supply been cleared, has the industry structure settled. Only when those answers change does the quality of the profit change.&lt;/p&gt;
&lt;p&gt;The defense ruler measures injections and orders. How much quality asset the group still holds for injection, and how stable the long-term orders are — that sets the floor of the business. AVIC and CASC: the injection space on the ledger is a marking on this ruler; the current quarter&amp;rsquo;s reported profit is secondary. Orders are profit that has not happened yet; injections are assets not yet on the books. Measured with numbers already on the books, only half of them shows.&lt;/p&gt;
&lt;p&gt;The consumer and pharma ruler measures brand, licenses, and the installed base of customers. A brand brings repeat purchases; a license keeps others outside; the installed base is the future already banked. All three are accumulated — a little each year, for a decade — and destroyed in a single stroke. Their valuations run naturally high, because what is being measured is not this year&amp;rsquo;s revenue flow but the stock of accumulated equity. Measured with a flow ruler, the verdict is always the same: too expensive. What is expensive is actually a different scale.&lt;/p&gt;
&lt;p&gt;First objection: one ruler for every company is simple and saves effort. The saving is real, and so is the error. The unchanging side of each asset class differs by nature — for cyclicals it is the law of supply; for defense, the group and its order structure; for consumer and pharma, the accumulated stock. When the anchors differ, uniform standards are the mistake. And when the measured bargain is false, the effort saved is paid back with interest.&lt;/p&gt;
&lt;p&gt;Second objection: different standards for different assets is subjectivity. The order is reversed. Standards follow anchors; anchors differ, so rulers differ — that is not subjectivity, that is correspondence. The real subjectivity is gripping one ruler in advance and combing the market for companies that fit it. Letting the ruler pick the assets is what deserves the word.&lt;/p&gt;
&lt;p&gt;Third objection: brands and licenses are the old way; the current way is traffic and growth. A traffic platform is a different asset class with a different ruler — users, retention, monetization. That ruler is not wrong; what is wrong is forcing it onto cyclicals. A ruler matches an asset class, not an era. Stripping the old ruler of its outdated label and raising another misapplied one is not an update; it is measuring wrongly in a new direction.&lt;/p&gt;
&lt;p&gt;The pity is for those who pick the wrong ruler: watching the cheapest reading, they catch the most expensive asset.&lt;/p&gt;
&lt;p&gt;So the order runs the other way: first ask what kind of asset this is, then ask what it is worth. The asset fixes the ruler; the ruler fixes the reading. With the reading wrong, the more precisely the rest is computed, the more thoroughly it errs. These rulers govern the choice of scale, not the timing of trades; when to act is another subject. The next time a bargain appears, before computing the discount, ask first: which ruler measured it?&lt;/p&gt;
</description>
      <pubDate>Tue, 11 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
    <item>
      <title>Tracks Are Rented, Discipline Is Yours</title>
      <link>https://www.fengyuwang.com/en/blog/posts/switching-lanes/</link>
      <guid isPermaLink="true">https://www.fengyuwang.com/en/blog/posts/switching-lanes/</guid>
      <description>&lt;p&gt;The last time a lane was switched, what was the basis? The leaderboard of gainers, or something else? For most people the moment of switching lanes is exactly when the old lane runs hottest — the rise becomes unbearable to sit through, so the cold position is sold to chase the hot one. That is not rotation; that is moving house, toward the crowded side. In another framework, rotation has exactly one definition: when two triggers fire — a reversal in interest rates, a reversal in industry momentum — switch lanes and redeploy the positions. Two bases only; nothing else counts.&lt;/p&gt;
&lt;p&gt;The first trigger is interest rates. Rates are the master switch for every asset. The lower the rate, the less remarkable cash becomes, and the better the value proposition of equity valuations — that ledger was already run in the earlier rate-price principle; here it serves only as a switch. In a rate-cutting, low-rate cycle, equities as a whole gain in value for money, and the base position plus the flexible position get built together. In a rate-hiking, high-rate cycle, total exposure contracts, keeping only a minimal base. The direction is not guessed; it is reported by the rate.&lt;/p&gt;
&lt;p&gt;The second trigger is industry momentum. Momentum in an industry reverses. Until the reversal arrives, the lane stays rented; once the reversal is confirmed, the lease is handed back. After rates rose in 2021, the overvalued new-energy and baijiu crowded trades were pared down step by step — the ignition comes first, the switch follows, and the order cannot be flipped. Remembering rates only after prices fall is not rotation; it is cleaning up.&lt;/p&gt;
&lt;p&gt;Between the two triggers, one governs total exposure and one governs the occupancy of a lane. Rates decide entering and retreating; momentum decides staying and leaving. When neither rings, the most rational action is no action at all.&lt;/p&gt;
&lt;p&gt;Redeployment is an operation, not an opinion. Opinions can change daily; the bell of an operation rings only a few times a year. While the trigger stays silent, not one step. Once it fires, what moves is the position, not the mood.&lt;/p&gt;
&lt;p&gt;First objection: rotation is just a respectable name for chasing rises and selling dips, and retail rotation only gets hit on both ends. Getting hit on both ends is the fate of rotation without a trigger — switching stocks off the leaderboard, buying at the top of sentiment, cutting at its bottom. The triggers are rates and momentum, not the leaderboard. Whatever sits first on that board is precisely what the trigger should not be pointing at. A switch made on triggers usually enters a lane while it is still cold — and cold is where the value for money lives.&lt;/p&gt;
&lt;p&gt;Second objection: a good lane should be held without moving, and constant switching cuts compounding to pieces. Half right. What does not move is the discipline of the base position: while the rate environment holds, the base holds. What moves is the occupancy of the lane: once the reversal in momentum is confirmed, the old lane is given up. Mixing the two is what truly damages compounding — holding a lane that should not be held, waiting for a recovery, waits away an entire rate cycle. Compounding is not cut away by switching; it is ground away by holding on.&lt;/p&gt;
&lt;p&gt;Third objection: triggers lag — by the time rates confirm and momentum reverses, the move is half over. Granted. Positioning, not forecasting; missing the first leg is the fixed cost of this system. The price of that cost was posted long ago: what it buys is standing on the right side without needing to predict. Earning the later leg covers the fee. To catch the first leg, forecasting must be brought in — and the bankruptcy rate of forecasting has its own ledger.&lt;/p&gt;
&lt;p&gt;The pity is for those waiting in the old lane for a rebound: the reversal came long ago, and the position is still parked where it was, waiting for a rebound that is not coming.&lt;/p&gt;
&lt;p&gt;So it comes down to one line: the lane changes; the ruler and the discipline do not. Rates give the master switch, momentum gives the lane switch, and discipline governs when to move and how much. The lane is rented — returned when the term ends. The ruler is one&amp;rsquo;s own — carried for life. Next time the itch to switch lanes comes, stay off the leaderboard — ask first: has the trigger fired?&lt;/p&gt;
</description>
      <pubDate>Sun, 09 Aug 2026 00:00:00 &#43;0000</pubDate>
      <category>Investing</category>
    </item>
    
  </channel>
</rss>
