<?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: Jaeil Woo</title>
    <description>The latest articles on DEV Community by Jaeil Woo (@jiwoomap).</description>
    <link>https://dev.to/jiwoomap</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%2F3705060%2Ff85c9e90-0fa5-43d0-b655-25e88d4137ec.png</url>
      <title>DEV Community: Jaeil Woo</title>
      <link>https://dev.to/jiwoomap</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jiwoomap"/>
    <language>en</language>
    <item>
      <title>Building a "Remembering" AI Trading Agent with Python, LangGraph, and Obsidian</title>
      <dc:creator>Jaeil Woo</dc:creator>
      <pubDate>Sun, 11 Jan 2026 09:52:16 +0000</pubDate>
      <link>https://dev.to/jiwoomap/building-a-remembering-ai-trading-agent-with-python-langgraph-and-obsidian-30hn</link>
      <guid>https://dev.to/jiwoomap/building-a-remembering-ai-trading-agent-with-python-langgraph-and-obsidian-30hn</guid>
      <description>&lt;p&gt;Hello DEV community!&lt;/p&gt;

&lt;p&gt;I'm excited to share an open-source project I've been working on: &lt;strong&gt;TradingAgents-Dashboard&lt;/strong&gt;.&lt;br&gt;
It's a Dockerized AI trading assistant that not only analyzes the market but &lt;strong&gt;remembers your insights forever&lt;/strong&gt; using a local knowledge base (RAG).&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem: "Stateless" AI
&lt;/h2&gt;

&lt;p&gt;Most AI trading bots today are "stateless". They run an analysis, give you a result, and then &lt;strong&gt;forget everything&lt;/strong&gt; the moment you close the terminal.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  "Wait, didn't we decide last week that inflation correlates with this stock?"&lt;/li&gt;
&lt;li&gt;  "Where is that news link I saw yesterday?"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As a developer and trader, I wanted an agent that &lt;strong&gt;grows smarter&lt;/strong&gt; over time, just like a human analyst.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: AI + Obsidian (RAG)
&lt;/h2&gt;

&lt;p&gt;I built a dashboard wrapping the &lt;a href="https://github.com/TauricResearch/TradingAgents" rel="noopener noreferrer"&gt;TradingAgents&lt;/a&gt; framework, adding a persistent memory layer using &lt;strong&gt;Obsidian&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Github Repo:&lt;/strong&gt; &lt;a href="https://github.com/jiwoomap/TradingAgents-Dashboard" rel="noopener noreferrer"&gt;jiwoomap/TradingAgents-Dashboard&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How it works:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Analyze:&lt;/strong&gt; Agents (Bull, Bear, Risk Manager) debate market conditions using LangGraph.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Persist:&lt;/strong&gt; All insights and debates are auto-saved to your local &lt;strong&gt;&lt;a href="https://obsidian.md" rel="noopener noreferrer"&gt;Obsidian Vault&lt;/a&gt;&lt;/strong&gt; as Markdown files.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Recall (RAG):&lt;/strong&gt; Before making a new decision, the agents search your vault (via ChromaDB) to retrieve past lessons and context.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foe2imql6s1bubc1if40u.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foe2imql6s1bubc1if40u.gif" alt="Demo Animation" width="600" height="324"&gt;&lt;/a&gt;&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Framework:&lt;/strong&gt; LangChain / LangGraph (Multi-Agent Orchestration)&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;UI:&lt;/strong&gt; Streamlit (Web Dashboard)&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Database:&lt;/strong&gt; ChromaDB (Vector Store for RAG)&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Memory:&lt;/strong&gt; Obsidian (Markdown-based Knowledge Base)&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Infrastructure:&lt;/strong&gt; Docker &amp;amp; Docker Compose&lt;/li&gt;
&lt;/ul&gt;

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

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Interactive Debate UI:&lt;/strong&gt; Watch the "Bull" and "Bear" agents fight it out in real-time.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Fact Checker:&lt;/strong&gt; Prevents hallucinations by validating news URLs (200 OK checks).&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Dockerized:&lt;/strong&gt; Get started in 1 minute with &lt;code&gt;docker-compose up&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Data Sovereignty:&lt;/strong&gt; Your financial data and strategies live on &lt;strong&gt;your disk&lt;/strong&gt;, not in a cloud database.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it out!
&lt;/h2&gt;

&lt;p&gt;I'd love to get your feedback. If you're interested in AI Agents or FinTech, give it a spin!&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Clone the repo:
git clone &lt;a href="https://github.com/jiwoomap/TradingAgents-Dashboard.git" rel="noopener noreferrer"&gt;https://github.com/jiwoomap/TradingAgents-Dashboard.git&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;

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