Uses of Class
com.raphaelsalles.backend.api.dto.MarketDataDTO
Packages that use MarketDataDTO
Package
Description
-
Uses of MarketDataDTO in com.raphaelsalles.backend.api.controller
Methods in com.raphaelsalles.backend.api.controller that return types with arguments of type MarketDataDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<MarketDataDTO>> FavoriteController.getFavoritesForDashboard(org.springframework.security.core.Authentication authentication) Retorna a lista de favoritos com dados de mercado completos (Preço, Variação).org.springframework.http.ResponseEntity<List<MarketDataDTO>> MarketController.getTickerTape()Retorna uma lista de cotações para o Ticker Tape (faixa de cotações).org.springframework.http.ResponseEntity<List<MarketDataDTO>> WalletController.getWalletsForDashboard(org.springframework.security.core.Authentication authentication) Retorna a lista de ativos da carteira com dados de mercado completos (Preço, Variação). -
Uses of MarketDataDTO in com.raphaelsalles.backend.api.dto
Fields in com.raphaelsalles.backend.api.dto declared as MarketDataDTOModifier and TypeFieldDescriptionprivate final MarketDataDTOStockAnalysisDTO.marketDataThe field for themarketDatarecord component.Methods in com.raphaelsalles.backend.api.dto that return MarketDataDTOModifier and TypeMethodDescriptionMarketDataDTO.MarketDataDTOBuilder.build()StockAnalysisDTO.marketData()Returns the value of themarketDatarecord component.Constructors in com.raphaelsalles.backend.api.dto with parameters of type MarketDataDTOModifierConstructorDescriptionStockAnalysisDTO(StockAnalysis entity, MarketDataDTO marketData) Construtor inteligente que mapeia a Entidade de Domínio e o DTO de Mercado.StockAnalysisDTO(String companyName, String ticker, String sector, int referenceYear, BigDecimal netMargin, BigDecimal roe, String healthStatus, String aiSummary, boolean isDataAudited, MarketDataDTO marketData) Creates an instance of aStockAnalysisDTOrecord class. -
Uses of MarketDataDTO in com.raphaelsalles.backend.domain.service.financial
Methods in com.raphaelsalles.backend.domain.service.financial that return MarketDataDTOModifier and TypeMethodDescriptionValuationService.enrichWithValuation(MarketDataDTO marketData, FinancialStatement statement) Enriquece um DTO de mercado com indicadores de valuation.Methods in com.raphaelsalles.backend.domain.service.financial with parameters of type MarketDataDTOModifier and TypeMethodDescriptionValuationService.enrichWithValuation(MarketDataDTO marketData, FinancialStatement statement) Enriquece um DTO de mercado com indicadores de valuation. -
Uses of MarketDataDTO in com.raphaelsalles.backend.domain.service.market
Methods in com.raphaelsalles.backend.domain.service.market that return MarketDataDTOModifier and TypeMethodDescriptionMarketDataService.getMarketData(String ticker) Obtém dados de mercado para um ativo específico.private MarketDataDTOMarketDataService.parseJsonNode(com.fasterxml.jackson.databind.JsonNode result) Methods in com.raphaelsalles.backend.domain.service.market that return types with arguments of type MarketDataDTOModifier and TypeMethodDescriptionMarketDataService.getTickerTapeData()Obtém dados de mercado para uma lista pré-definida de ativos (Ticker Tape). -
Uses of MarketDataDTO in com.raphaelsalles.backend.domain.service.user
Methods in com.raphaelsalles.backend.domain.service.user that return MarketDataDTOModifier and TypeMethodDescriptionprivate MarketDataDTOUserFavoriteService.processTicker(String ticker) private MarketDataDTOUserWalletService.processTicker(String ticker) Methods in com.raphaelsalles.backend.domain.service.user that return types with arguments of type MarketDataDTOModifier and TypeMethodDescriptionUserFavoriteService.getUserFavoritesWithPrice(User user) Retorna a lista de favoritos enriquecida com preço e valuation.UserWalletService.getUserWalletsWithPrice(User user) Retorna a lista de ativos da carteira enriquecida com preço e valuation.