SOV.AI
  • Data & Screens
  • GET STARTED
    • Blog (Screener)
    • 🚀Quick Start
    • ⭐Tutorials
    • 💻Installation
    • ⚒️Release Notes
    • 🔘About
  • REALTIME DATASETS
    • Equity Datasets
      • Accounting Data
      • Bankruptcy Predictions
      • Employee Visa
      • Earnings Surprise
      • Congressional Data
      • Factor Signals
      • Financial Ratios
      • Government Contracts
      • Institutional Trading
      • Insider Flow Prediction
      • Liquidity Data
      • Lobbying Data
      • News Sentiment
      • Price Breakout
      • Risk Indicators
      • SEC Edgar Search
      • SEC 10K Filings
      • Short Selling
      • Wikipedia Views
      • Patents Data
    • Economic Datasets
      • Asset Rotation
      • Core Economic Data
      • ETF Flows
      • Government Traffic
      • 🏳️Turing Risk Index
    • Sectorial Datasets
      • Airbnb Data
      • Box Office Stats
      • CFPB Complaints
      • Phrama Clinical Trials
      • Request Datasets
  • Asset Managment
    • Signal Evaluation
    • Weight Optimization
    • Screens and Filters
  • Pattern Recognition
    • Pairwise Distance
    • Anomaly Detection
    • Clustering Panels
  • Feature Processing
    • Extract Features
    • Neutralize Features
    • Select Features
    • Dimensionality Reduction
    • Feature Importance
  • Time Series
    • Nowcasting Series
    • TS Decomposition
    • Time Segmentation
  • Dashboard Examples
    • 🔰Bankruptcy Prediction
    • 🛰️Turing Risk Index
  • IMPORTANT LINKS
    • ⚙️Main Website
    • 👮Forum and Issues
    • 🙋Web Application
    • 📤LinkedIn
    • 🟢Buy Subscription
Powered by GitBook
On this page
  • Nowcasting Module
  • Setup
  • Nowcasting
  • Visualization
  • Notes

Was this helpful?

  1. Time Series

Nowcasting Series

This module provides functionality for nowcasting financial data using a Multi-Frequency Long-term and Event-based forecasting method.

PreviousFeature ImportanceNextTS Decomposition

Last updated 6 months ago

Was this helpful?

Tutorials are the best documentation —

Nowcasting Module

This module demonstrates how to use the sovai library for nowcasting financial data, particularly focusing on accounting data for mega-cap stocks.

Setup

First, import and authenticate with the sovai library:

Nowcasting

For a Specific Stock

To perform nowcasting for a particular stock (e.g., AAPL) and a specific accounting metric (e.g., accounts receivable):

df_accounting.query("ticker == 'AAPL'").nowcast("data", "accounts_receivable")

For All Stocks

To perform nowcasting for all stocks in the dataset:

df_accounting.nowcast("data", "accounts_receivable")

Visualization

To create a plot of the nowcasted data:

df_accounting.nowcast("plot")

Notes

  • The sovai library provides methods for data retrieval, stock selection, and nowcasting.

  • The nowcast method can be used with "data" parameter to return nowcasted data, or "plot" to generate a visualization.

  • Make sure you have the necessary permissions and a valid token to access the sovai library and its data.

This notebook demonstrates a streamlined approach to nowcasting financial data using the sovai library, allowing for quick analysis of accounting metrics for mega-cap stocks.

Nowcasting Series Tutorial