34 lines
945 B
Python
34 lines
945 B
Python
# TradingAgents/graph/signal_processing.py
|
|
|
|
from langchain_openai import ChatOpenAI
|
|
from tradingagents.i18n import get_prompts
|
|
|
|
prompts = get_prompts()
|
|
|
|
class SignalProcessor:
|
|
"""Processes trading signals to extract actionable decisions."""
|
|
|
|
def __init__(self, quick_thinking_llm: ChatOpenAI):
|
|
"""Initialize with an LLM for processing."""
|
|
self.quick_thinking_llm = quick_thinking_llm
|
|
|
|
def process_signal(self, full_signal: str) -> str:
|
|
"""
|
|
Process a full trading signal to extract the core decision.
|
|
|
|
Args:
|
|
full_signal: Complete trading signal text
|
|
|
|
Returns:
|
|
Extracted decision (BUY, SELL, or HOLD)
|
|
"""
|
|
messages = [
|
|
(
|
|
"system",
|
|
prompts["signal_processor"]["system_message"],
|
|
),
|
|
("human", full_signal),
|
|
]
|
|
|
|
return self.quick_thinking_llm.invoke(messages).content
|