Fix backtests and indicators

This commit is contained in:
2025-10-16 20:06:47 +07:00
parent f49f75ede0
commit d6122aeb27
8 changed files with 60 additions and 60 deletions

View File

@@ -4070,6 +4070,8 @@ export interface Backtest {
requestId?: string;
metadata?: any | null;
scoreMessage?: string;
initialBalance: number;
netPnl: number;
}
export interface TradingBotConfig {
@@ -4355,6 +4357,8 @@ export interface LightBacktestResponse {
sharpeRatio: number;
score: number;
scoreMessage: string;
initialBalance: number;
netPnl: number;
}
export enum BacktestSortableColumn {
@@ -4389,6 +4393,8 @@ export interface LightBacktest {
scoreMessage?: string | null;
metadata?: any | null;
ticker?: string | null;
initialBalance?: number;
netPnl?: number;
}
export interface RunBacktestRequest {