diff --git a/CHANGELOG.md b/CHANGELOG.md index 090798514..31201ee2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Increased the historical data chart of the _Fear & Greed Index_ (market mood) to 180 days - Upgraded `chart.js` from version `3.7.0` to `3.8.0` - Upgraded `envalid` from version `7.2.1` to `7.3.1` diff --git a/apps/client/src/app/components/home-market/home-market.component.ts b/apps/client/src/app/components/home-market/home-market.component.ts index 9500c6e2d..8098ba5e5 100644 --- a/apps/client/src/app/components/home-market/home-market.component.ts +++ b/apps/client/src/app/components/home-market/home-market.component.ts @@ -25,7 +25,7 @@ export class HomeMarketComponent implements OnDestroy, OnInit { public historicalData: HistoricalDataItem[]; public info: InfoItem; public isLoading = true; - public readonly numberOfDays = 90; + public readonly numberOfDays = 180; public user: User; private unsubscribeSubject = new Subject();