๐ŸŒ
GitHub
github.com โ€บ StockSharp โ€บ StockSharp
GitHub - StockSharp/StockSharp: Algorithmic trading and quantitative trading open source platform to develop trading robots (stock markets, forex, crypto, bitcoins, and options). ยท GitHub
Algorithmic trading and quantitative trading open source platform to develop trading robots (stock markets, forex, crypto, bitcoins, and options). - StockSharp/StockSharp
Starred by 10.3K users
Forked by 2.2K users
Languages ย  C#
๐ŸŒ
GitHub
github.com โ€บ georgezouq โ€บ awesome-ai-in-finance
GitHub - georgezouq/awesome-ai-in-finance: ๐Ÿ”ฌ A curated list of awesome LLMs & deep learning strategies & tools in financial market.
... ๐ŸŒŸ๐ŸŒŸ nofx - A multi-exchange Al trading platform with multi-Ai competition self-evolution, and real-time dashboard. TradingAgents - Multi-Agents LLM Financial Trading Framework. ๐ŸŒŸ FinRobot - An Open-Source AI Agent Platform for Financial ...
Starred by 6.2K users
Forked by 739 users
Discussions

I created an open-source AI trading algorithm, and released it on GitHub
Cool story, bruh. So how do you like working at Wendy's? More on reddit.com
๐ŸŒ r/ArtificialInteligence
9
45
May 16, 2024
An open-source python package for AI stock analysis
I like polygon and pandas-ta-classic More on reddit.com
๐ŸŒ r/algotrading
4
0
January 30, 2026
I just released my new open-source trading system using multi-agent AI approach
Serious question, what the benefit of using agents compared to say, regular data analysis, combined with sentiment analysis? More on reddit.com
๐ŸŒ r/algotrading
82
193
September 12, 2025
Thoughts on MSFT exposure to Open AI?
One angle worth considering is the compute economics. OpenAI's losses are driven primarily by inference costs on Azure, which means MSFT is effectively subsidizing OpenAI while locking them into Azure infrastructure. If OpenAI fails, MSFT still owns the GPU clusters and can pivot to hosting other models (Anthropic, Meta's Llama, their own Phi series). The RPO risk is real, but MSFT has been diversifying their AI bets specifically to avoid single-vendor dependency. Their recent deal restructuring allowing OpenAI to use Oracle compute is actually MSFT reducing their own exposure while maintaining equity upside. More on reddit.com
๐ŸŒ r/ValueInvesting
67
40
February 13, 2026
๐ŸŒ
Medium
medium.com โ€บ @kaveh.kamali โ€บ i-built-an-ai-powered-stock-analysis-platform-that-runs-entirely-on-open-source-4eddae5fd305
I Built an AI-Powered Stock Analysis Platform That Runs Entirely on Open Source | by Kaveh Kamali | Medium
April 4, 2026 - The AI tells you what to think about, and the platform shows you the data to verify it. The agent runs on TradingAgents, an open-source multi-agent trading framework, with Ollama serving the model locally. No API costs. No rate limits. No data leaving your infrastructure. Every broker has a stock screener. Most of them are terrible. They give you a table of numbers. Maybe some filters. You can sort by P/E ratio or market cap.
๐ŸŒ
QuantConnect
quantconnect.com
Open Source Algorithmic Trading Platform. - QuantConnect.com
QuantConnect is the world\'s leading open-source, multi-asset algorithmic trading platform, chosen by thousands of funds and more than 300,000 investors.
๐ŸŒ
GitHub
github.com โ€บ marketcalls โ€บ openalgo
GitHub - marketcalls/openalgo: Open Source Algo Trading Platform for Everyone ยท GitHub
May 17, 2026 - OpenAlgo is part of a larger open-source trading ecosystem: OpenAlgo Core: This repository (Python Flask + React) Historify: Stock market data management platform ยท Official SDKs: Python, Node.js, Java, Rust, .NET, Go (see above) Excel Add-in: Direct Excel integration ยท MCP Server: AI agents integration ยท
Starred by 2.2K users
Forked by 1.1K users
Languages ย  Python 76.4% | TypeScript 20.6% | Shell 1.7% | HTML 0.7% | Bru 0.3% | Batchfile 0.2%
๐ŸŒ
Open Apps Pro
openapps.pro โ€บ apps โ€บ openstock
OpenStock: Free Open Source AI Powered Stock Market Tracker
OpenStock is a free, open-source stock market platform with real-time prices, watchlists, AI alerts, and TradingView charts. Alternative to Bloomberg or Yahoo.
๐ŸŒ
Aibars
aibars.net โ€บ en โ€บ library โ€บ open-source-ai โ€บ details โ€บ 775669184469274624
OpenStock - Open-Source and Free Stock Market Tracking Platform
OpenStock is a modern open-source stock tracking application built with Next.js, providing real-time price monitoring, personalized alerts, detailed company analysis, and market overviewโ€”all completely free and open.
๐ŸŒ
Reddit
reddit.com โ€บ r/artificialinteligence โ€บ i created an open-source ai trading algorithm, and released it on github
r/ArtificialInteligence on Reddit: I created an open-source AI trading algorithm, and released it on GitHub
May 16, 2024 -

Open-source GitHub Repo | Paper Describing the Process

Aside: If you want to take the course I did online, the full course is available for free on YouTube.

When I was a graduate student at Carnegie Mellon University, I took this course called Intro to Deep Learning. Don't let the name of this course fool you; it was absolutely one of the hardest and most interesting classes I've taken in my entire life. In that class, I fully learned what "AI" actually means. I learned how to create state-of-the-art AI algorithms โ€“ including training them from scratch using AWS EC2 clusters.

But, I loved it. At this time, I was also a trader. I had aspirations of creating AI-Powered bots that would execute trades for me.

And I had heard of "reinforcement learning" before.. I took an online course at the University of Alberta and received a certificate. But I hadn't worked with "Deep Reinforcement Learning" โ€“ combining our most powerful AI algorithm (deep learning) with reinforcement learning

So, when my Intro to Deep Learning class had a final project in which I could create whatever I wanted, I decided to make a Deep Reinforcement Learning Trading Bot.

Background: What is Deep Reinforcement Learning

Deep Reinforcement Learning (DRL) involves a series of structured steps that enable a computer program, or agent, to learn optimal actions within a given environment through a process of trial and error. Hereโ€™s a concise breakdown:

  1. Initialize: Start with an agent that has no knowledge of the environment, which could be anything from a game interface to financial markets.

  2. Observe: The agent observes the current state of the environment, such as stock prices or a game screen.

  3. Decide: Using its current policy, which initially might be random, the agent selects an action to perform.

  4. Act and Transition: The agent performs the action, causing the environment to change and generate a new state, along with a reward (positive or negative).

  5. Receive Reward: Rewards inform the agent about the effectiveness of its action in achieving its goals.

  6. Learn: The agent updates its policy using the experience (initial state, action, reward, new state), typically employing algorithms like Q-learning or policy gradients to refine decision-making towards actions that yield higher returns.

  7. Iterate: This cycle repeats, with the agent continually refining its policy to maximize cumulative rewards.

This iterative learning approach allows DRL agents to evolve from novice to expert, mastering complex decision-making tasks by optimizing actions based on direct interaction with their environment.

How I applied it to the stock market

My team implemented a series of algorithms that modeled financial markets as a deep reinforcement learning problem. While I won't be super technical in this post, you can read exactly what we did here. Some of the interesting experiments we tried included using convolutional neural networks to generate graphs, and use the images as features for the model.

However, despite the complexity of the models we built, none of the models were able to develop a trading strategy on SPY that outperformed Buy and Hold.

I'll admit the code is very ugly (we were scramming to find something we could write in our paper and didn't focus on code quality). But if people here are interested in AI beyond Large Language Models, I think this would be an interesting read.

Open-source GitHub Repo | Paper Describing the Process

Happy to get questions on what I learned throughout the experience!

Find elsewhere
๐ŸŒ
GitHub
github.com โ€บ HKUDS โ€บ AI-Trader
GitHub - HKUDS/AI-Trader: "AI-Trader: 100% Fully-Automated Agent-Native Trading" ยท GitHub
1 month ago - AI-Trader (GitHub - Open Source) โ”œโ”€โ”€ skills/ # Agent skill definitions โ”œโ”€โ”€ docs/api/ # OpenAPI specifications โ”œโ”€โ”€ service/ # Backend & frontend โ”‚ โ”œโ”€โ”€ server/ # FastAPI backend โ”‚ โ””โ”€โ”€ frontend/ # React frontend โ””โ”€โ”€ assets/ # Logo and images ... Vibe-Trading โ€” a companion project from HKUDS exploring agent-native trading workflows. If AI-Trader helps empower AI agents in financial markets...
Starred by 20.7K users
Forked by 3.2K users
Languages ย  Python 72.6% | TypeScript 22.9% | CSS 4.5%
๐ŸŒ
Reddit
reddit.com โ€บ r/algotrading โ€บ an open-source python package for ai stock analysis
r/algotrading on Reddit: An open-source python package for AI stock analysis
January 30, 2026 -

Hey folks!

I am looking for some good stock+AI packages in Python for my project. I have tried multiple open-source Python packages and so far found investormate as reliable. Itโ€™s not meant to replace low-level data providers like yFinance โ€” it sits a layer above that and focuses on turning market + financial data into analysis-ready objects.

Things I am looking for:

  • Normalised income statement, balance sheet, and cash flow data

  • 60+ technical indicators (RSI, MACD, Bollinger Bands, etc.)

  • Auto-computed financial ratios (P/E, ROE, margins, leverage)

  • Stock screening (value, growth, dividend, custom filters)

  • Portfolio metrics (returns, volatility, Sharpe ratio)

  • Sentiment Analysis

  • Back Testing

  • AI layer (OpenAI / Claude / Gemini)

Packages so far tried - defectbeta-api, yfinance, investormate.

Open to any better suggestions.

๐ŸŒ
Reddit
reddit.com โ€บ r/algotrading โ€บ i just released my new open-source trading system using multi-agent ai approach
r/algotrading on Reddit: I just released my new open-source trading system using multi-agent AI approach
September 12, 2025 -

I want to share my new open-source project, which I've been working on as part of my research. I previously posted about another open source project here that received huge success (see here), so I decided to share this one with you as well.

This concept follows a similar approach, but it utilizes a multi-agent system with LangGraph for agent orchestration. The system includes four agents:

  • Data Collection Agent - gathers data from multiple sources

  • Technical Analysis Agent - performs classical technical indicator calculations

  • News Intelligence Agent - based on the PrimoGPT idea, creates seven custom NLP features

  • Portfolio Manager Agent - takes everything into account and makes recommendations

I built the entire system to be easily extensible, whether adding new agents, new tools, or changing prompts.

Everything is open source with very simple instructions on how to run it, so you can easily test it and see the results.

GitHub repository: https://github.com/ivebotunac/PrimoAgent/

I know there will be both good and bad comments, but with this project, I wanted to give the community an idea and example of how such multi-agent AI systems can be used to help with financial analysis. This is intended exclusively for educational purposes.

If you find any bugs or have ideas on how to improve the system, feel free to contribute to the project.

Thanks, everyone, for the support!

๐ŸŒ
GitHub
github.com โ€บ LexiestLeszek โ€บ InvestorGPT
GitHub - LexiestLeszek/InvestorGPT: InvestorGPT is an AI agent that analyzes the stock that dropped in its price recently and calculates chance for the company to recover the stock price back. ยท GitHub
InvestorGPT is open-source software licensed under the MIT License. See the LICENSE file for more details. InvestorGPT is a powerful tool for investors and financial analysts, providing a comprehensive analysis and predictive modeling for stock ...
Starred by 80 users
Forked by 28 users
Languages ย  Python
๐ŸŒ
NautilusTrader
nautilustrader.io
NautilusTrader: open-source algorithmic trading platform
Open-source algorithmic trading platform with a Rust-native core, Python strategy API, deterministic backtesting, and live deployment across asset classes and venues.
๐ŸŒ
Medium
medium.com โ€บ @austin-starks โ€บ i-created-an-open-source-automated-trading-platform-heres-how-much-it-s-improved-in-a-year-317b6e068254
I created an open-source automated trading platform. Hereโ€™s how much itโ€™s improved in a year. | by Austin Starks | Medium
July 8, 2024 - I created an open-source automated trading platform. Hereโ€™s how much itโ€™s improved in a year. NexusTrade AI-Powered Finance. The fastest, most configurable, no-code platform to exist. Express โ€ฆ
๐ŸŒ
GitHub
github.com โ€บ Open-Dev-Society โ€บ OpenStock
GitHub - Open-Dev-Society/OpenStock: OpenStock is an open-source alternative to expensive market platforms. Track real-time prices, set personalized alerts, and explore detailed company insights โ€” built openly, for everyone, forever free.
Siray.ai ensures our market insights never sleep. Huge thanks to Adrian Hajdin (JavaScript Mastery) โ€” his excellent Stock Market App tutorial was instrumental in building OpenStock for the open-source community under the Open Dev Society.
Starred by 13.8K users
Forked by 1.8K users
Languages ย  TypeScript 91.7% | JavaScript 4.5% | CSS 3.6% | Dockerfile 0.2%
๐ŸŒ
Golden Owl
goldenowl.asia โ€บ home โ€บ blog โ€บ top 10 ai stock trading bots free for beginners in 2026
Top 10 AI Stock Trading Bots Free for beginners in 2026 - Golden Owl
Connects via API (using the CCXT ... traditional stock brokers. Superalgos is an open-source platform that provides a powerful entry point for individuals who want to harness AI without any cost....
๐ŸŒ
Quora
quora.com โ€บ What-is-the-best-open-source-trading-software-that-uses-machine-learning-and-artificial-intelligence
What is the best open source trading software that uses machine learning and artificial intelligence? - Quora
Answer: โ€œWhat it does is it sucks something from you,โ€ he said of A.I. โ€œIt takes something from your soul or psyche; that is very disturbing, especially if it has to do with you. Itโ€™s like a robot taking your humanity, your soul.โ€ Tim Burton Artificial Intelligence is not real.
๐ŸŒ
OpenBB
openbb.co โ€บ blog โ€บ ai-powered-stock-analysis-agent
Building an AI Stock Analysis Agent using our open source Platform | OpenBB
July 23, 2024 - In his Swapping Symbols blog series, Seth demonstrates how OpenBB's comprehensive data services can be leveraged to build advanced AI-driven financial analysis tools that not only mirror the multi-faceted approach of seasoned market participants but also integrate smoothly with custom-developed trading software. Throughout the articles, he showcases how OpenBB's robust APIs serve as a powerful complement to creating trading tools. ... By integrating OpenBB with custom-built systems, he has made a sample AI stock analysis agent that combines the depth and breadth of OpenBB's data with the specialized functionality of tooling some would consider proprietary knowledge.
๐ŸŒ
Medium
medium.com โ€บ coding-nexus โ€บ openstock-the-free-open-source-stock-market-app-built-for-everyone-af6ae05b87de
OpenStock โ€” The Free, Open-Source Stock Market App Built for Everyone | by Tattva Tarang | Coding Nexus | Medium
November 5, 2025 - Whether youโ€™re exploring the depths of Python, diving into data science, mastering web development, or staying updated on the latest trends in AI, Coding Nexus has something for you.
๐ŸŒ
OpenBB
openbb.co
OpenBB - Build your own financial workspace
Your vendors, your databases, your internal models, your files. OpenBB connects to all of them, so you stop rebuilding the same integrations every time you need a new view. ... Turn any analysis into an interactive dashboard your whole team can use. Analysts, PMs, and AI agents included.