fixed up a few things

This commit is contained in:
Boki 2025-06-28 21:03:58 -04:00
parent c799962f05
commit 87b1cad4f5
3 changed files with 19 additions and 67 deletions

View file

@ -4,24 +4,23 @@ import {
Operation,
ScheduledOperation,
} from '@stock-bot/handlers';
import {
checkSessions,
createSession,
searchSymbols,
spiderSymbol,
getOperationStats,
updateSymbolInfo,
scheduleSymbolInfoUpdates,
updateFinancials,
scheduleFinancialsUpdates,
updateCorporateActions,
import {
checkSessions,
createSession,
scheduleCorporateActionsUpdates,
updateFilings,
scheduleFilingsUpdates,
updatePrices,
scheduleFinancialsUpdates,
scheduleIntradayUpdates,
schedulePriceUpdates,
scheduleSymbolInfoUpdates,
searchSymbols,
spiderSymbol,
updateCorporateActions,
updateFilings,
updateFinancials,
updateIntradayBars,
scheduleIntradayUpdates
updatePrices,
updateSymbolInfo
} from './actions';
import { initializeQMOperations } from './shared/operation-registry';
@ -138,10 +137,4 @@ export class QMHandler extends BaseHandler {
description: 'Check for symbols needing intraday updates every 30 minutes'
})
scheduleIntradayUpdates = scheduleIntradayUpdates;
/**
* MONITORING
*/
@Operation('get-operation-stats')
getOperationStats = getOperationStats;
}