You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Financial agents can now condense all three channels into a PDF that covers news context, buy/hold/sell guidance, risk mix, and multi-horizon price trends. Trend snapshots are limited to month/week/day/hour windows so the report explicitly reflects month-to-date momentum.
135
+
136
+
```bash
137
+
uv run tradegraph AAPL BTC-USD --analysis-type comprehensive --channel-report \
138
+
--pdf-path results/aapl_crypto_multichannel.pdf
105
139
```
106
140
107
141
### Python API Usage
@@ -284,7 +318,7 @@ GOOGL: HOLD (Confidence: 65.0%)
284
318
285
319
-**LangGraph**: Workflow orchestration and agent coordination
286
320
-**OpenAI GPT-4**: Natural language processing and analysis
287
-
-**yfinance**: Financial data retrieval
321
+
-**Finnhub** (equities) and **Binance** (crypto) for live/historical pricing
Snapshots are also available via `GET /channels/{channel_id}?symbols=AAPL,MSFT`.
140
+
141
+
### Multichannel PDF Reports
142
+
143
+
Generate investor-ready PDFs that merge channel summaries, recommendations, and the trend matrix (month/week/day/hour lookback so the results focus on month-to-date moves):
144
+
145
+
```bash
146
+
uv run tradegraph AAPL BTC-USD --analysis-type comprehensive --channel-report \
147
+
--pdf-path results/aapl_crypto_multichannel.pdf
148
+
```
149
+
150
+
The resulting file includes the ChannelReportAgent executive summary, news highlights, allocation guidance, and a multi-horizon trend table.
0 commit comments