From 4b6999ce538fa12b492f7b4dbac4510f7c481a58 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sun, 24 Aug 2025 18:54:17 +0700 Subject: [PATCH] feat(lib): add trend200d and trend50d to WatchlistResponse --- .../lib/interfaces/responses/watchlist-response.interface.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/common/src/lib/interfaces/responses/watchlist-response.interface.ts b/libs/common/src/lib/interfaces/responses/watchlist-response.interface.ts index 6994d73f7..1c45d1e6f 100644 --- a/libs/common/src/lib/interfaces/responses/watchlist-response.interface.ts +++ b/libs/common/src/lib/interfaces/responses/watchlist-response.interface.ts @@ -8,5 +8,7 @@ export interface WatchlistResponse { marketCondition: Benchmark['marketCondition']; name: string; performances: Benchmark['performances']; + trend200d: Benchmark['trend200d']; + trend50d: Benchmark['trend50d']; })[]; }