First implementation of an MVP
This commit is contained in:
parent
8abb6dce20
commit
c40d1e42ad
|
|
@ -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
|
||||
}
|
||||
Loading…
Reference in New Issue