Feature/increase fear and greed index to 10 days (#525)
* Increase to 10 days * Update changelog
This commit is contained in:
parent
4d9a223491
commit
069660afe4
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Increased the historical data chart of the _Fear & Greed Index_ (market mood) to 10 days
|
||||||
- Upgraded `prisma` from version `2.30.2` to `3.6.0`
|
- Upgraded `prisma` from version `2.30.2` to `3.6.0`
|
||||||
|
|
||||||
## 1.86.0 - 04.12.2021
|
## 1.86.0 - 04.12.2021
|
||||||
|
@ -32,7 +32,7 @@ export class SymbolService {
|
|||||||
let historicalData: HistoricalDataItem[];
|
let historicalData: HistoricalDataItem[];
|
||||||
|
|
||||||
if (includeHistoricalData) {
|
if (includeHistoricalData) {
|
||||||
const days = 7;
|
const days = 10;
|
||||||
|
|
||||||
const marketData = await this.marketDataService.getRange({
|
const marketData = await this.marketDataService.getRange({
|
||||||
dateQuery: { gte: subDays(new Date(), days) },
|
dateQuery: { gte: subDays(new Date(), days) },
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div class="no-gutters row w-100">
|
<div class="no-gutters row w-100">
|
||||||
<div class="col-xs-12 col-md-8 offset-md-2">
|
<div class="col-xs-12 col-md-8 offset-md-2">
|
||||||
<div class="mb-2 text-center text-muted">
|
<div class="mb-2 text-center text-muted">
|
||||||
<small i18n>Last 7 Days</small>
|
<small i18n>Last 10 Days</small>
|
||||||
</div>
|
</div>
|
||||||
<gf-line-chart
|
<gf-line-chart
|
||||||
class="mb-5"
|
class="mb-5"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user