feat: rewrite analyze page with technical indicators column and signal summary

This commit is contained in:
2026-05-16 22:05:01 +02:00
parent 898f4f48dc
commit 046e81ffc1
4 changed files with 471 additions and 230 deletions
+8 -1
View File
@@ -2,9 +2,16 @@ export interface IndicatorData {
symbol: string;
indicators: {
sma: number;
ema: number;
sma50: number;
ema12: number;
ema26: number;
rsi: number;
macd: number;
bbUpper: number;
bbLower: number;
bbMiddle: number;
atr: number;
avgVolume: number;
};
}