First implementation of an MVP

This commit is contained in:
Jenit Jain 2025-08-04 19:23:39 -07:00
parent 8abb6dce20
commit c40d1e42ad
1 changed files with 52 additions and 0 deletions

52
scripts/basic_run.ipynb Normal file
View File

@ -0,0 +1,52 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "6a0fe5b3",
"metadata": {},
"source": [
"# Basic Implementation for RDDT"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "23814bd1",
"metadata": {
"vscode": {
"languageId": "plaintext"
}
},
"outputs": [],
"source": [
"from tradingagents.graph.trading_graph import TradingAgentsGraph\n",
"from tradingagents.default_config import DEFAULT_CONFIG\n",
"\n",
"ta = TradingAgentsGraph(debug=True, config=DEFAULT_CONFIG.copy())\n",
"\n",
"# forward propagate\n",
"_, decision = ta.propagate(\"NVDA\", \"2024-05-10\")\n",
"print(decision)"
]
},
{
"cell_type": "markdown",
"id": "7d397e3f",
"metadata": {
"vscode": {
"languageId": "plaintext"
}
},
"source": [
"#"
]
}
],
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}