Skip to content

Commit 79fc8d8

Browse files
author
jiwoomap
committed
chore: add CI workflow and README badges
1 parent 3ac195d commit 79fc8d8

2 files changed

Lines changed: 42 additions & 0 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Python CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: ["3.10", "3.11", "3.12"]
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Set up Python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v4
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
- name: Install dependencies
23+
run: |
24+
python -m pip install --upgrade pip
25+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
26+
- name: Syntax Check
27+
run: |
28+
# Check for syntax errors across all python files (doesn't check logic, just valid syntax)
29+
python -m compileall .

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# 📈 TradingAgents-Dashboard (Personal Trading Room)
22

3+
![Python](https://img.shields.io/badge/python-3.10%2B-blue)
4+
![License](https://img.shields.io/github/license/jiwoomap/TradingAgents-Dashboard)
5+
[![Python CI](https://github.com/jiwoomap/TradingAgents-Dashboard/actions/workflows/python-app.yml/badge.svg)](https://github.com/jiwoomap/TradingAgents-Dashboard/actions/workflows/python-app.yml)
6+
![GitHub Repo stars](https://img.shields.io/github/stars/jiwoomap/TradingAgents-Dashboard?style=social)
7+
38
> 🚀 **Your Personal AI Analyst with Long-term Memory.**
49
> A Dockerized dashboard that turns [TradingAgents](https://github.com/TauricResearch/TradingAgents) into a personalized trading assistant. It not only analyzes the market but also **remembers your insights via [Obsidian](https://obsidian.md).**
510
@@ -82,6 +87,14 @@ The enhanced Fact Checker agent now **physically pings** URLs cited in news repo
8287

8388
---
8489

90+
## 🗺️ Roadmap
91+
92+
- [ ] **Local LLM Support:** Integration with Ollama/Llama.cpp to run fully offline.
93+
- [ ] **Interactive Charts:** Replace static images with interactive TradingView widgets.
94+
- [ ] **Crypto Support:** Add connectors for Binance/Upbit to trade cryptocurrencies.
95+
- [ ] **More Data Sources:** Integrate alternative news APIs (e.g., Google News RSS).
96+
- [ ] **Backtesting Module:** Validate agent strategies against historical data.
97+
8598
## 🏗️ Architecture (Original)
8699
This project wraps the **TradingAgents** framework, a multi-agent system that simulates a real-world trading firm.
87100

0 commit comments

Comments
 (0)