Feature/increase fear and greed index to 180 days (#993)

* Increase number of days to 180

* Update changelog
pull/998/head
Thomas Kaul 2 years ago committed by GitHub
parent 5263fba64e
commit d2f8e3d645
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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`

@ -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<void>();

Loading…
Cancel
Save