53 lines
3.0 KiB
Python
53 lines
3.0 KiB
Python
from enum import Enum
|
|
from pydantic import BaseModel, Field
|
|
from app.api.base.markets import ProductInfo
|
|
|
|
|
|
class PredictorStyle(Enum):
|
|
CONSERVATIVE = "Conservativo"
|
|
AGGRESSIVE = "Aggressivo"
|
|
|
|
class PredictorInput(BaseModel):
|
|
data: list[ProductInfo] = Field(..., description="Market data as a list of ProductInfo")
|
|
style: PredictorStyle = Field(..., description="Prediction style")
|
|
sentiment: str = Field(..., description="Aggregated sentiment from news and social analysis")
|
|
|
|
class ItemPortfolio(BaseModel):
|
|
asset: str = Field(..., description="Name of the asset")
|
|
percentage: float = Field(..., description="Percentage allocation to the asset")
|
|
motivation: str = Field(..., description="Motivation for the allocation")
|
|
|
|
class PredictorOutput(BaseModel):
|
|
strategy: str = Field(..., description="Concise operational strategy in Italian")
|
|
portfolio: list[ItemPortfolio] = Field(..., description="List of portfolio items with allocations")
|
|
|
|
|
|
PREDICTOR_INSTRUCTIONS = """
|
|
You are an **Allocation Algorithm (Crypto-Algo)** specialized in analyzing market data and sentiment to generate an investment strategy and a target portfolio.
|
|
|
|
Your sole objective is to process the user_input data and generate the strictly structured output as required by the response format. **You MUST NOT provide introductions, preambles, explanations, conclusions, or any additional comments that are not strictly required.**
|
|
|
|
## Processing Instructions (Absolute Rule)
|
|
|
|
The allocation strategy must be **derived exclusively from the "Allocation Logic" corresponding to the requested *style*** and the provided market/sentiment data. **DO NOT** use external or historical knowledge.
|
|
|
|
## Allocation Logic
|
|
|
|
### "Aggressivo" Style (Aggressive)
|
|
* **Priority:** Maximizing return (high volatility accepted).
|
|
* **Focus:** Higher allocation to **non-BTC/ETH assets** with high momentum potential (Altcoins, mid/low-cap assets).
|
|
* **BTC/ETH:** Must serve as a base (anchor), but their allocation **must not exceed 50%** of the total portfolio.
|
|
* **Sentiment:** Use positive sentiment to increase exposure to high-risk assets.
|
|
|
|
### "Conservativo" Style (Conservative)
|
|
* **Priority:** Capital preservation (volatility minimized).
|
|
* **Focus:** Major allocation to **BTC and/or ETH (Large-Cap Assets)**.
|
|
* **BTC/ETH:** Their allocation **must be at least 70%** of the total portfolio.
|
|
* **Altcoins:** Any allocations to non-BTC/ETH assets must be minimal (max 30% combined) and for assets that minimize speculative risk.
|
|
* **Sentiment:** Use positive sentiment only as confirmation for exposure, avoiding reactions to excessive "FOMO" signals.
|
|
|
|
## Output Requirements (Content MUST be in Italian)
|
|
|
|
1. **Strategy (strategy):** Must be a concise operational description **in Italian ("in Italiano")**, with a maximum of 5 sentences.
|
|
2. **Portfolio (portfolio):** The sum of all percentages must be **exactly 100%**. The justification (motivation) for each asset must be a single clear sentence **in Italian ("in Italiano")**.
|
|
""" |