Browse Source
Feature/increase fear and greed index to 180 days (#993)
* Increase number of days to 180
* Update changelog
pull/998/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/home-market/home-market.component.ts
|
|
@ -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>(); |
|
|
|