AI-Trading Apps¶
Disclaimer: I am the creator of 🐘
alphafund
“✔️” = SUPPORTED
“✖️” = NOT SUPPORTED
“➖” = NOT APPLICABLE
💡 Concepts Explained
Code-to-Trade Approach¶
This means asking an LLM to write Python code, either using a chosen algo-trading framework or writing ad-hoc code, so that a strategy can be backtested, traded deterministically, with reproducible results. A good visual example is QuantConnect’s agents (video).
Prompt-to-Trade Approach¶
This means giving a prompt to an LLM and letting it make trading decisions non-deterministically, meaning the same input may produce different results across runs. In other words, “Vibe-Trading”. Think of it as OpenClaw with trading ability. A good visual example is Alpha Arena, where agents trade based on prompts.
Running LLMs for free
Remarks
The creator of AI-Hedge-Fund and Dexter is also the founder of Financial Datasets, the financial data provider recommended in the projects’ READMEs, but this affiliation is not clearly disclosed.
AI-Trader is another project from the same organization behind Vibe-Trading, serving as a prompt-to-trade AI trading platform for AI agents such as OpenClaw, nanobot.
Optional
The frameworks below are only relevant if you want to assemble your own AI trading app
Agent Frameworks¶
LLM Frameworks¶
Agent vs. LLM frameworks — a fuzzy line
These two groups overlap, so don’t read the split as rigid. Many tools do
both — langchain, for instance, can create agents but is centered on LLM
applications. The grouping reflects each framework’s primary focus, not
its full capability:
LLM frameworks focus on connecting models to your data — retrieval (RAG), and ingesting/parsing/indexing documents into something an LLM can use (e.g.
llamaindex).Agent frameworks focus on agentic workflows — giving the model tools, memory, and multi-step autonomy to act.