Files
desartstudio95 75db8e2ec0 feat: add multi-account and advanced analytics
Integrated Multi-Account Manager, Auto Scanner, and Economic Calendar modules. Refined UI with a institutional design language, enhanced visual consistency via global styles, and improved error handling for third-party API services. Added date filtering presets to the signal history module.
2026-06-13 22:47:55 -07:00

5 lines
307 B
TypeScript

import axios from 'axios';
axios.get("https://financialmodelingprep.com/api/v3/economic_calendar?from=2024-01-01&to=2024-01-10&apikey=e3143522be4c4aac89e1f9a39925ed80")
.then(r => console.log('FMP success', r.status, Object.keys(r.data[0] || {})))
.catch(e => console.log('FMP error', e.response?.status));