Some checks failed
- Add buyPrice and buyDate to positions for PnL tracking - Implement backend analytics service for real-time portfolio performance - Add server-side security screener with filtering, sorting, and pagination - Update frontend UI with analytics summaries and sortable screener table - Optimize MOEX API calls with batch fetching and portfolio-specific caching - Add unit tests for analytics and screener services
14 lines
465 B
TypeScript
14 lines
465 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CacheModule } from '../cache/cache.module';
|
|
import { SecuritiesController } from './securities.controller';
|
|
import { SecuritiesService } from './securities.service';
|
|
import { ScreenerService } from './screener.service';
|
|
|
|
@Module({
|
|
imports: [CacheModule],
|
|
controllers: [SecuritiesController],
|
|
providers: [SecuritiesService, ScreenerService],
|
|
exports: [SecuritiesService],
|
|
})
|
|
export class SecuritiesModule {}
|