openpondai/agents/signal-bot
OpenTool app
typescript
import type { IndicatorType } from "../config";
export type TradeSignal = "buy" | "sell" | "hold" | "unknown";
export type BacktestDecisionPoint = {
ts: string;
price: number;
signal: TradeSignal;
targetSize: number;
budgetUsd: number;
indicator: IndicatorType;
indicators: Record<string, unknown>;
};