Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/8cda43bb6352c9442e60a7085821dfc75f0e68d3?style=split&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Bugfix/persist intraday market data only if market state is open ()

* Persist INTRADAY data only if market state is open

* Update changelog
pull/3514/head
Thomas Kaul 10 months ago committed by GitHub
parent c4499df74c
commit 8cda43bb63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- Changed the mechanism of the `INTRADAY` data gathering to persist data only if the market state is `OPEN`
## 2.90.0 - 2024-06-22 ## 2.90.0 - 2024-06-22
### Added ### Added

@ -516,7 +516,8 @@ export class DataProviderService {
.filter((symbol) => { .filter((symbol) => {
return ( return (
isNumber(response[symbol].marketPrice) && isNumber(response[symbol].marketPrice) &&
response[symbol].marketPrice > 0 response[symbol].marketPrice > 0 &&
response[symbol].marketState === 'open'
); );
}) })
.map((symbol) => { .map((symbol) => {

Loading…
Cancel
Save