get_most_active
Identify stocks with the highest trading volume to analyze market activity and liquidity trends for investment decisions.
Instructions
Get most actively traded stocks by volume
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/market.ts:95-109 (handler)The tool 'get_most_active' is registered and implemented in src/tools/market.ts. The handler fetches data from the '/most-actives' endpoint of the FMP API.
server.registerTool( 'get_most_active', { description: 'Get most actively traded stocks by volume', inputSchema: z.object({}), }, async () => { try { const data = await fetchFMP<MarketMover[]>('/most-actives'); return jsonResponse(data); } catch (error) { return errorResponse(error); } } );