<?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: Jsoned</title>
    <description>The latest articles on DEV Community by Jsoned (@jsoned).</description>
    <link>https://dev.to/jsoned</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3968966%2Fbac34fb1-8093-49d6-b9ed-1e67d883c4e2.png</url>
      <title>DEV Community: Jsoned</title>
      <link>https://dev.to/jsoned</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jsoned"/>
    <language>en</language>
    <item>
      <title>AutoWealth AI: An Open-Source Multi-Agent Investment Analysis Engine</title>
      <dc:creator>Jsoned</dc:creator>
      <pubDate>Fri, 05 Jun 2026 01:50:20 +0000</pubDate>
      <link>https://dev.to/jsoned/autowealth-ai-an-open-source-multi-agent-investment-analysis-engine-5ge8</link>
      <guid>https://dev.to/jsoned/autowealth-ai-an-open-source-multi-agent-investment-analysis-engine-5ge8</guid>
      <description>&lt;h2&gt;
  
  
  What is AutoWealth AI?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;AutoWealth AI&lt;/strong&gt; is an open-source, multi-agent investment analysis engine built entirely in Python. It uses three specialized AI agents that analyze stocks from different perspectives, then combines their signals through a weighted voting mechanism.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Jsoned/autowealth-ai" rel="noopener noreferrer"&gt;GitHub Repository&lt;/a&gt; | 482 tests passing | 11 major features&lt;/p&gt;

&lt;h2&gt;
  
  
  The Core Architecture
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Three AI Agents Working Together
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Technical Analyst Agent (35% weight)&lt;/strong&gt; - Analyzes price action using 12+ technical indicators: MACD, RSI, Bollinger Bands, KDJ, OBV, ATR, DMI, CCI, Williams %R, PSY, and moving average systems.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Fundamental Analyst Agent (35% weight)&lt;/strong&gt; - Evaluates valuation metrics including P/E ratio, P/B ratio, dividend yield, and growth trends.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Sentiment Analyst Agent (30% weight)&lt;/strong&gt; - Assesses market sentiment through price momentum, volume patterns, and volatility analysis.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Weighted Voting Decision System
&lt;/h3&gt;

&lt;p&gt;Each agent produces a signal (BUY/SELL/HOLD) with a confidence score. The coordinator aggregates these using configurable weights to produce a final investment decision with target price and stop-loss recommendations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Extended Technical Indicators&lt;/strong&gt;: OBV, ATR, DMI, CCI, Williams %R, PSY&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-Data Source Support&lt;/strong&gt;: Yahoo Finance, East Money (akshare), Binance API&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Machine Learning Prediction&lt;/strong&gt;: Random Forest + MLP Neural Network, 18-dimensional feature engineering&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backtesting System&lt;/strong&gt;: Strategy backtesting with performance metrics (Sharpe ratio, max drawdown, win rate)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Portfolio Optimization&lt;/strong&gt;: Markowitz mean-variance optimization, efficient frontier&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Real-Time Alert System&lt;/strong&gt;: 5 alert types, multi-channel notifications (DingTalk, Feishu, Slack)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Social Sentiment Analysis&lt;/strong&gt;: Twitter/X, Weibo, Reddit, 360+ sentiment words&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;FastAPI Web Service&lt;/strong&gt;: 7 RESTful endpoints with Pydantic models&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chinese NLP Interface&lt;/strong&gt;: Intent recognition, entity extraction, 80+ stock name mappings&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Flutter Mobile App&lt;/strong&gt;: Cross-platform iOS + Android, dark sci-fi theme&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Component&lt;/th&gt;
&lt;th&gt;Technology&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Core Engine&lt;/td&gt;
&lt;td&gt;Python 3.10+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Data Sources&lt;/td&gt;
&lt;td&gt;yfinance, akshare, Binance API&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ML Models&lt;/td&gt;
&lt;td&gt;scikit-learn&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Web UI&lt;/td&gt;
&lt;td&gt;Streamlit + Plotly&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;API&lt;/td&gt;
&lt;td&gt;FastAPI + Pydantic&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mobile&lt;/td&gt;
&lt;td&gt;Flutter + fl_chart&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Testing&lt;/td&gt;
&lt;td&gt;pytest (482 tests)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Quick Start
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;ngit clone https://github.com/Jsoned/autowealth-ai.git&lt;br&gt;
cd autowealth-ai&lt;br&gt;
pip install -r requirements.txt&lt;br&gt;
streamlit run examples/app.py&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Stats
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;482 tests all passing&lt;/li&gt;
&lt;li&gt;11 major features fully implemented&lt;/li&gt;
&lt;li&gt;12+ technical indicators&lt;/li&gt;
&lt;li&gt;3 data sources&lt;/li&gt;
&lt;li&gt;7 REST API endpoints&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;AutoWealth AI&lt;/strong&gt; is designed for educational and research purposes. It is not financial advice.&lt;/p&gt;

&lt;p&gt;If you find this project useful, please give it a star on &lt;a href="https://github.com/Jsoned/autowealth-ai" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;!&lt;/p&gt;

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