Uses of Class
com.bluebell.greenhouse.platform.models.api.dto.symbol.SymbolDTO
Packages that use SymbolDTO
Package
Description
Contains controllers for handling symbols and equities.
Contains the symbol orchestrators.
Contains the classes that implement DTO representations of
Symbol-related entities.Contains DTOs for symbol analysis API responses.
-
Uses of SymbolDTO in com.bluebell.greenhouse.planter.controllers.symbol
Methods in com.bluebell.greenhouse.planter.controllers.symbol that return types with arguments of type SymbolDTOModifier and TypeMethodDescriptionSymbolApiController.getAvailableSymbolsForAssignment()Returns a list ofSymbolDTOs ready for assignment.org.springframework.http.ResponseEntity<SymbolDTO> SymbolApiController.getSymbolDetails(String query) Returns aResponseEntitycontaining aSymbolDTO.org.springframework.http.ResponseEntity<SymbolDTO> SymbolApiController.postCreateNewSymbol(@Valid CreateUpdateSymbolDTO data) Creates a newSymbol.org.springframework.http.ResponseEntity<SymbolDTO> SymbolApiController.putUpdateSymbol(@Valid CreateUpdateSymbolDTO data, String symbolId) Updates an existingSymbol. -
Uses of SymbolDTO in com.bluebell.greenhouse.planter.converters.symbol
Subclasses with type arguments of type SymbolDTO in com.bluebell.greenhouse.planter.converters.symbolMethods in com.bluebell.greenhouse.planter.converters.symbol that return SymbolDTOModifier and TypeMethodDescriptionprotected SymbolDTOSymbolDTOConverter.convertNonNull(Symbol entity) protected SymbolDTOSymbolDTOConverter.createEmptyDTO()Creates the empty DTO returned for a null source. -
Uses of SymbolDTO in com.bluebell.greenhouse.planter.orchestrators.symbol
Methods in com.bluebell.greenhouse.planter.orchestrators.symbol that return SymbolDTOModifier and TypeMethodDescriptionSymbolOrchestrator.createNewSymbol(CreateUpdateSymbolDTO data) Creates a newSymbol.SymbolOrchestrator.getSymbolDetails(String query) Obtains theSymbolmatching the given query.SymbolOrchestrator.updateSymbol(CreateUpdateSymbolDTO data, String symbolId) Updates theSymbolmatching the given identifier.Methods in com.bluebell.greenhouse.planter.orchestrators.symbol that return types with arguments of type SymbolDTOModifier and TypeMethodDescriptionSymbolOrchestrator.getAvailableSymbolsForAssignment()Obtains every approved, activeSymbolavailable for assignment. -
Uses of SymbolDTO in com.bluebell.greenhouse.platform.models.api.dto.symbol
Subclasses with type arguments of type SymbolDTO in com.bluebell.greenhouse.platform.models.api.dto.symbolMethod parameters in com.bluebell.greenhouse.platform.models.api.dto.symbol with type arguments of type SymbolDTOModifier and TypeMethodDescriptionstatic PaginatedSymbolDTOPaginatedSymbolDTO.from(PaginatedEntityDTO<SymbolDTO> source) Narrows a generic page into its typed equivalent. -
Uses of SymbolDTO in com.bluebell.greenhouse.platform.models.api.dto.symbol.analysis
Methods in com.bluebell.greenhouse.platform.models.api.dto.symbol.analysis that return SymbolDTOModifier and TypeMethodDescriptionSymbolAnalysisContextDTO.symbol()Returns the value of thesymbolrecord component.Constructors in com.bluebell.greenhouse.platform.models.api.dto.symbol.analysis with parameters of type SymbolDTOModifierConstructorDescriptionSymbolAnalysisContextDTO(SymbolDTO symbol, SymbolAliasDTO requestedAlias, SymbolAliasDTO resolvedAlias, EnumDisplay dataSource, EnumDisplay timeInterval, String startDateTime, String endDateTime, int requestedBars, int resolvedBars, boolean usedFallbackAlias, boolean usedFallbackWindow) Creates an instance of aSymbolAnalysisContextDTOrecord class.