1Branch0Tags
GL
glucryptoFix exact Hyperliquid symbols
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>; };