<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Felixwang007</title>
    <description>The latest articles on DEV Community by Felixwang007 (@felixwang007).</description>
    <link>https://dev.to/felixwang007</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4050246%2F367055f4-756f-41a0-96f9-b2b5447699ae.png</url>
      <title>DEV Community: Felixwang007</title>
      <link>https://dev.to/felixwang007</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/felixwang007"/>
    <language>en</language>
    <item>
      <title>I Built an AI That Analyzes Chinese A-Share Stocks Using a Three-Pillar System — Here's What It Caught Today</title>
      <dc:creator>Felixwang007</dc:creator>
      <pubDate>Thu, 30 Jul 2026 04:10:35 +0000</pubDate>
      <link>https://dev.to/felixwang007/i-built-an-ai-that-analyzes-chinese-a-share-stocks-using-a-three-pillar-system-heres-what-it-28cf</link>
      <guid>https://dev.to/felixwang007/i-built-an-ai-that-analyzes-chinese-a-share-stocks-using-a-three-pillar-system-heres-what-it-28cf</guid>
      <description>&lt;p&gt;Last week, I open-sourced an AI-powered stock analysis system for the Chinese A-share market. Today I want to show you what it actually does — with real data from the July 30 trading session.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Most A-share analysis tools fall into one camp: purely technical (MACD/KDJ/RSI overlays), purely fundamental (PEG/ROE screens), or purely sentiment-based (social media buzz). None of them talk to each other. Retail investors are left stitching three separate dashboards together.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: Three-Pillar Scoring
&lt;/h2&gt;

&lt;p&gt;The system (called &lt;strong&gt;A-Share Stock Analysis Expert&lt;/strong&gt;) runs three independent analysis pipelines on every stock in the watchlist:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Technical Analysis (10 pts)
&lt;/h3&gt;

&lt;p&gt;Python-native MACD, KDJ, RSI, Bollinger Bands, and moving average systems — all matching Tongdaxin (通达信) calculation standards. No external dependencies, no API keys needed.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Fundamental Analysis (10 pts)
&lt;/h3&gt;

&lt;p&gt;DuPont ROE decomposition, PEG valuation, and Buffett-style "three ratios" screening with industry-specific weighting.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Intelligence Analysis (10 pts)
&lt;/h3&gt;

&lt;p&gt;Majors capital flow tracking, Xueqiu sentiment, dragon-and-tiger list monitoring, institutional position changes, and policy timing.&lt;/p&gt;

&lt;p&gt;Total score: 30 points. Only stocks scoring 12+ trigger a buy signal.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Flagged Today (July 30, 2026)
&lt;/h2&gt;

&lt;p&gt;Today was a rough session — Shanghai Composite -1.15%, Shenzhen Component -3.79%. But the system spotted several interesting moves:&lt;/p&gt;

&lt;h3&gt;
  
  
  Limit Up Signal: 闰土股份 (002440) +10.00%
&lt;/h3&gt;

&lt;p&gt;Technical score: 4/10 — Bullish MACD, golden cross on KDJ, touching upper Bollinger. The system flagged the bullish alignment before the breakout.&lt;/p&gt;

&lt;h3&gt;
  
  
  Confirmed Uptrend: 龙佰集团 (002601) +0.36%
&lt;/h3&gt;

&lt;p&gt;Scored 5/10 technically — bullish MACD, bullish KDJ, neutral-bullish RSI. Not an explosive play, but steady accumulation in an otherwise red market.&lt;/p&gt;

&lt;h3&gt;
  
  
  Limit Down Warning: 兴业科技 (002674) -10.00%
&lt;/h3&gt;

&lt;p&gt;The intelligence layer flagged "4 consecutive up days" (连涨4天) — a classic exhaustion signal. The system was already on watch for a reversal.&lt;/p&gt;

&lt;h3&gt;
  
  
  Pattern Recognition Samples
&lt;/h3&gt;

&lt;p&gt;From the training pipeline (36 samples collected across 5 patterns):&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Pattern&lt;/th&gt;
&lt;th&gt;Example&lt;/th&gt;
&lt;th&gt;Signal&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Breakout&lt;/td&gt;
&lt;td&gt;中国中免 +3.37%&lt;/td&gt;
&lt;td&gt;Bullish breakout with volume — buy on confirmation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Trend&lt;/td&gt;
&lt;td&gt;隆基绿能 +1.03%&lt;/td&gt;
&lt;td&gt;Healthy uptrend channel — hold and add on dips&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pullback&lt;/td&gt;
&lt;td&gt;北方华创 -1.20%&lt;/td&gt;
&lt;td&gt;Low-volume pullback — accumulation zone&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Training Pipeline
&lt;/h2&gt;

&lt;p&gt;The system runs a daily cron job at 15:10 (market close +10min) to collect real-time quotes via the free Sina Finance API for 12 core A-share stocks. Each day's data is classified into one of 5 pattern types:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;放量突破 (Breakout with Volume)&lt;/li&gt;
&lt;li&gt;缩量回调 (Low-Volume Pullback)&lt;/li&gt;
&lt;li&gt;高位放量下跌 (High-Level Volume Selloff)&lt;/li&gt;
&lt;li&gt;趋势追踪 (Trend Following)&lt;/li&gt;
&lt;li&gt;横盘震荡 (Sideways Consolidation)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal: accumulate 200+ labeled samples for QLoRA fine-tuning.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Fine-tune a LLaMA model on the accumulated training data for better pattern recognition&lt;/li&gt;
&lt;li&gt;Integrate the iTick API for real-time data without scraping&lt;/li&gt;
&lt;li&gt;Add portfolio tracking with stop-loss alerts&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It Yourself
&lt;/h2&gt;

&lt;p&gt;The complete source code and tools are available:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/Felixwang007" rel="noopener noreferrer"&gt;github.com/Felixwang007&lt;/a&gt; (repo: daily-stock-analysis)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Xiaping Marketplace&lt;/strong&gt;: Search "A-Share Stock Analysis Expert" on xiaping.coze.com for the ready-to-use skill&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Whether you trade A-shares or just want to understand how AI agents can analyze financial markets, I hope this gives you a practical starting point. Pull requests and ideas welcome!&lt;/p&gt;




</description>
      <category>ai</category>
      <category>python</category>
      <category>opensource</category>
      <category>stocks</category>
    </item>
    <item>
      <title>I Built a Free A-Share Stock Analysis Tool for AI Coding Agents (24 Indicators)</title>
      <dc:creator>Felixwang007</dc:creator>
      <pubDate>Mon, 27 Jul 2026 23:09:35 +0000</pubDate>
      <link>https://dev.to/felixwang007/i-built-a-free-a-share-stock-analysis-tool-for-ai-coding-agents-24-technical-indicators-3in7</link>
      <guid>https://dev.to/felixwang007/i-built-a-free-a-share-stock-analysis-tool-for-ai-coding-agents-24-technical-indicators-3in7</guid>
      <description>&lt;h2&gt;
  
  
  Test
&lt;/h2&gt;

&lt;p&gt;Updated content.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>python</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
