Welcome! Fincept Terminal is an open-source financial intelligence platform with 80+ terminal tabs, 99 Rust commands, 119 Python scripts, and 42 UI components.
- Ways to Contribute
- Tech Stack
- Getting Started
- Project Architecture
- Development Workflow
- Pull Request Process
- Language-Specific Guides
- Getting Help
| Area | Examples |
|---|---|
| Code | Bug fixes, new features, new tabs, new analytics |
| Documentation | Improve guides, add examples, translations |
| Testing | Report bugs, write tests, review PRs |
| Design | UI/UX improvements, icons, themes |
| Data | New data sources, API integrations |
| Layer | Technologies |
|---|---|
| Frontend | React 19, TypeScript 5.8, TailwindCSS v4, Radix UI |
| Desktop | Tauri 2.x, Rust |
| Analytics | Python 3.11+ (embedded runtime) |
| Package Manager | Bun |
| Charts | Lightweight Charts, Recharts, Plotly, D3.js |
| AI/LLM | Langchain, Ollama, OpenAI, Anthropic, Google GenAI |
| Database | SQLite (via Tauri plugin) |
| State | React Context, Redux |
Language-Specific Guides:
- TypeScript/React Guide - 80 tabs, 42 UI components, 12 contexts
- Rust Guide - 99 commands, WebSocket, database
- Python Guide - 119 scripts, 34 Analytics modules
- Bun 1.0+ - bun.sh
- Rust 1.70+ - rust-lang.org
- Python 3.11+ (for analytics development)
- Git - git-scm.com
# Clone repository
git clone https://github.com/Fincept-Corporation/FinceptTerminal.git
cd FinceptTerminal/fincept-terminal-desktop
# Install dependencies
bun install
# Run development server
bun run tauri:devbun --version # 1.0+
rustc --version # 1.70+
python --version # 3.11+src/
├── components/
│ ├── tabs/ # 80 terminal tabs
│ │ ├── dashboard/ # Main dashboard
│ │ ├── markets/ # Market data
│ │ ├── portfolio-tab/ # Portfolio management
│ │ ├── algo-trading/ # Algorithmic trading
│ │ ├── ai-quant-lab/ # AI/ML analytics
│ │ ├── quantlib-*/ # 15+ QuantLib modules
│ │ ├── geopolitics/ # Geopolitical analysis
│ │ ├── crypto-trading/# Cryptocurrency
│ │ └── ... # 60+ more tabs
│ │
│ ├── ui/ # 42 UI components (shadcn/ui)
│ ├── auth/ # Authentication
│ ├── dashboard/ # Terminal shell
│ ├── charts/ # Chart components
│ ├── chat-mode/ # AI chat interface
│ ├── command-bar/ # Command palette
│ └── visualization/ # 3D visualizations
│
├── services/ # 35+ API services
│ ├── analytics/ # Analytics APIs
│ ├── trading/ # Trading APIs
│ ├── markets/ # Market data
│ ├── portfolio/ # Portfolio APIs
│ ├── mcp/ # MCP integration
│ └── ...
│
├── contexts/ # 12 React contexts
│ ├── AuthContext.tsx
│ ├── BrokerContext.tsx
│ ├── DataSourceContext.tsx
│ ├── NavigationContext.tsx
│ ├── ThemeContext.tsx
│ ├── WorkspaceContext.tsx
│ └── ...
│
├── brokers/ # Broker integrations
│ ├── crypto/ # Crypto exchanges
│ ├── india/ # Indian brokers
│ └── stocks/ # Stock brokers
│
├── hooks/ # 8 custom hooks
├── store/ # Redux store
├── i18n/ # Internationalization
└── paper-trading/ # Paper trading system
src-tauri/
├── src/
│ ├── lib.rs # Main library (130K+ lines)
│ ├── python.rs # Python runtime
│ ├── setup.rs # App initialization
│ ├── paper_trading.rs # Paper trading
│ │
│ ├── commands/ # 99 Tauri commands
│ │ ├── analytics.rs # Financial analytics
│ │ ├── agents.rs # AI agents
│ │ ├── algo_trading.rs# Algo trading
│ │ ├── databento.rs # Market data
│ │ ├── portfolio.rs # Portfolio
│ │ ├── brokers/ # Broker commands
│ │ └── ... # 90+ more
│ │
│ ├── database/ # SQLite operations
│ ├── services/ # Backend services
│ └── websocket/ # WebSocket handlers
│
└── resources/scripts/ # 119 Python scripts
├── Analytics/ # 34 analytics modules
├── agents/ # AI agents
├── strategies/ # Trading strategies
├── technicals/ # Technical analysis
└── *.py # 80+ data fetchers
feature/add-options-tab
fix/chart-rendering-bug
docs/update-python-guide
- Create branch from
main - Follow the appropriate language guide
- Test locally:
bun run build && bun run tauri:dev - Commit with clear messages
type: short description
Types: feat, fix, docs, refactor, test, chore
- Code builds without errors
- No console warnings
- Tested in development mode
- Follows existing patterns
- Documentation updated
## Description
Brief description
## Type
- [ ] Bug fix
- [ ] New feature
- [ ] Documentation
## Testing
How was this tested?
## Screenshots (if UI)| Guide | Coverage |
|---|---|
| TypeScript Guide | 80 tabs, 42 UI components, services, contexts, hooks |
| Rust Guide | 99 commands, WebSocket, database, Python execution |
| Python Guide | 119 scripts, 34 Analytics modules, data fetchers |
| Channel | Link |
|---|---|
| Issues | GitHub Issues |
| Discussions | GitHub Discussions |
| Discord | Join Discord |
| dev@fincept.in |
Look for labels: good first issue, help wanted, documentation
Repository: https://github.com/Fincept-Corporation/FinceptTerminal Version: 3.3.1 License: AGPL-3.0