50 GPT-5.5 Prompts for Financial Analysts: Portfolio Modeling, Risk Assessment, Market Research, Earnings Analysis, and Investment Memo Generation

50 Production-Ready GPT-5.5 Prompts for Financial Analysts

50 GPT-5.5 Prompts for Financial Analysts: Portfolio Modeling, Risk Assessment, Market Research, Earnings Analysis, and Investment Memo Generation

Introduction

This guide provides 50 highly specific, production-ready GPT-5.5 prompts tailored for financial analysts. The prompts are organized into five practical categories: Portfolio Modeling, Risk Assessment, Market Research, Earnings Analysis, and Investment Memos. Each prompt is presented with the full prompt text, a concise explanation of why it works, the expected inputs, and practical tips for customization. Use these prompts as direct inputs to GPT-5.5 or as templates to incorporate into automation pipelines, internal tools, or analyst playbooks.

For teams building repeatable pipelines, the operational context matters: how prompts fit into a workflow, how they are versioned, and how outputs are validated. If you are designing integrated systems that combine data ingestion, model orchestration, and downstream reporting, the companion piece

For a deeper exploration of this topic, our comprehensive analysis on Codex Workflow Automation Masterclass: 30 Production-Ready Prompts for Building Multi-Step Pipelines, Scheduled Reports, and Cross-Platform Integrations provides detailed implementation strategies, real-world case studies, and actionable frameworks that complement the concepts discussed in this section.

is essential reading. That article walks through a pragmatic curriculum on automating prompt-driven processes, error handling, and CI/CD patterns for LLM-based analytics, which complements the production-ready prompt set here.

How to use this guide: copy any prompt verbatim to start, then iterate by adding constraints, expected output schemas, or domain-specific dictionaries (tickers, sector codes, internal rating scales). Where relevant, include a short example input to reduce ambiguity. Each prompt is intentionally prescriptive—structured to elicit parsable outputs suitable for programmatic consumption.

Portfolio Modeling

Portfolio Modeling covers prompts that help construct, analyze, and stress-test portfolios, asset allocation frameworks, and scenario-driven returns. The prompts target deterministic outputs suitable for integration into backtests, dashboards, and reconciliation routines.

Prompt 1 – Portfolio VaR Decomposition (Historical Simulation)

Prompt: “Given a portfolio described by a list of positions with ticker, quantity, and current price, and a time series of historical daily returns for each ticker over the past 5 years, compute the portfolio historical Value at Risk (VaR) at the 95th and 99th percentiles for a 1-day horizon. Provide (a) the dollar VaR, (b) percentage VaR, and (c) the top five contributors to VaR with contribution percentages and a short explanation of why those contributors dominate.”

Why this works

The prompt prescribes the method (historical simulation), percentiles, and output elements, helping the model return structured and explainable results. Naming specific output pieces makes it easier to parse and validate programmatically.

Expected inputs

  • List of positions: ticker, quantity, current price
  • Historical daily returns matrix for each ticker (CSV or JSON format)
  • Confidence levels (default 95, 99)

Customization

  • Change horizon (e.g., 10-day VaR) and indicate the scaling method.
  • Request output in JSON with exact field names for automated ingestion.
  • Specify substitution for missing data (e.g., fill-forward or exclude tickers below data threshold).

Prompt 2 – Multi-Period Return Attribution

Prompt: “For a portfolio with monthly holdings snapshots and monthly returns per security, compute multi-period attribution over a specified period (e.g., Jan 2021–Dec 2023) split into allocation effect, selection effect, and interaction effect. Provide a table for each month and a summarized cumulative attribution for the full period with key drivers highlighted.”

Why this works

Specifying the attribution framework and time grain ensures the model returns consistent, standardized metrics used in performance attribution workflows.

Expected inputs

  • Monthly holdings: security, weight/market value
  • Monthly returns per security and benchmark sector returns
  • Defined benchmark or category mapping

Customization

  • Support different attribution methodologies (Brinson vs. geometric attribution).
  • Request CSV output or JSON for automated reporting.

Prompt 3 – Factor Exposure Estimation (PCA + Regression)

Prompt: “Using the supplied daily returns for a universe of securities and a list of candidate factor time series (e.g., market, size, value, momentum, sector indices), estimate each portfolio’s exposures through a two-step approach: (1) run PCA to identify dominant components, (2) regress security returns on supplied factors plus top PCA components. Output estimated exposures per factor, t-stats, R-squared, and a short interpretation for each significant exposure.”

Why this works

Combining PCA with factor regression captures latent structure while anchoring to known factors. Requesting statistics enforces outputs that support hypothesis testing and governance.

Expected inputs

  • Daily returns for securities and candidate factors
  • Parameters: number of PCA components, regression window

Customization

  • Specify robust regression or regularization (e.g., LASSO) to handle multicollinearity.
  • Ask for factor-neutralized returns or scenario impacts based on exposures.

Prompt 4 – Optimization with Transaction Costs

Prompt: “Construct a mean-variance optimization for a specified universe that maximizes expected return for a target risk (annualized volatility), explicitly modeling transaction costs. Inputs include expected returns, covariance matrix, current holdings, and per-security round-trip cost schedule. Provide optimized weights, estimated turnover, expected net return after costs, and constraints satisfied.”

Why this works

Explicit inclusion of transaction costs and current holdings makes the optimization practical and closer to a production rebalancing decision. Listing expected outputs guides the model to create actionable recommendations.

Expected inputs

  • Expected returns vector, covariance matrix
  • Current holdings and cost schedule (basis points or fixed fees)
  • Risk target and constraint set

Customization

  • Swap mean-variance for CVaR or Black-Litterman priors.
  • Ask for trade blotter style output with suggested buy/sell quantities.

Prompt 5 – Liquidity-Aware Stress Test

Prompt: “Simulate a stress event where liquidity deteriorates by pre-specified market depth and price impact functions for each asset. For the given portfolio, estimate realized P&L if the portfolio must be liquidated over a chosen time horizon (e.g., 5 trading days). Provide daily cash flows, cumulative loss, and recommended liquidation schedule that minimizes market impact subject to time constraints.”

Why this works

Modeling market depth and price impact makes stress testing realistic. Delivering a schedule ties analysis to practical execution planning and risk limits.

Expected inputs

  • Portfolio holdings, price impact functions or liquidity buckets, time-to-liquidate horizon
  • Assumptions about market regime and volatility

Customization

  • Integrate bid-ask curves or venue-specific filling probabilities.
  • Allow partial liquidation or block trade assumptions for large positions.

50 GPT-5.5 Prompts for Financial Analysts: Portfolio Modeling, Risk Assessment, Market Research, Earnings Analysis, and Investment Memo Generation - Section Illustration

Prompt 6 – Scenario-Based Portfolio Rebalancing Plan

Prompt: “Given a portfolio and a scenario (e.g., 30% drawdown in equities, 10% widening of credit spreads), produce a tactical rebalancing plan to restore target allocations over a three-month window. Explain trade-offs, expected transaction costs, and the impact on projected returns under both base-case and stressed-case scenarios.”

Why this works

Providing a scenario and a rebalancing window encourages the model to produce operationally bounded recommendations useful for portfolio committees and trading desks.

Expected inputs

  • Current holdings and allocation targets
  • Stress scenario definitions and time window

Customization

  • Adapt the horizon and allow for constraints like tax lot retention or liquidity minima.
  • Request pre- and post-trade risk metrics for governance.

Prompt 7 – Tax-Aware Rebalancing Optimization

Prompt: “Optimize a rebalancing plan that minimizes after-tax tracking error relative to a benchmark for a taxable portfolio. Inputs include cost basis per lot, realized/unrealized gain flags, and loss harvesting opportunities. Output recommended trades, expected after-tax return, and estimated tax liability.”

Why this works

Tax implications materially affect trade decisions for taxable accounts. Including lot-level cost data leads to recommendations aligned with client-focused outcomes.

Expected inputs

  • Holdings with lot-level cost basis and wash sale flags
  • Tax rate assumptions and benchmark

Customization

  • Incorporate jurisdiction-specific tax rules and time-based constraints (e.g., wash sale lookback).

Prompt 8 – Levered Portfolio Stress Sensitivity

Prompt: “For a portfolio that uses levered exposure (margin, derivatives), calculate sensitivities of NAV to underlying price moves, margin calls, and funding rate changes. Provide breakeven market moves that would trigger margin calls based on current leverage and recommend mitigations.”

Why this works

Explicitly modeling margin and funding risk provides a comprehensive view of levered exposure and operational thresholds for risk management teams.

Expected inputs

  • Portfolio leverage metrics, derivative notional and margin rules, funding rates

Customization

  • Include counterparty variation margin practices or collateral eligibility.

Prompt 9 – Dynamic Rebalancing Signal Generator

Prompt: “Create a rule-based signal generator for dynamic rebalancing where signals are triggered by deviations in risk parity weights, volatility regime shifts, or indicator thresholds (e.g., VIX > 25). Provide pseudo-code or structured logic, expected frequency of trades, and recommended guardrails to avoid over-trading.”

Why this works

Rule-based prompts that output logic or pseudo-code are easier to onboard into algorithmic engines and support transparent governance.

Expected inputs

  • Current asset volatilities, target weights, signal thresholds

Customization

  • Calibrate thresholds using historical backtests or hit-rate targets.

Prompt 10 – Policy-Compliant Trade Blotter

Prompt: “Generate a trade blotter for the next rebalancing event that ensures compliance with hard constraints: max position change per security, sector concentration limits, and liquidity minimums. For each proposed trade include ticker, side, quantity, rationale, and which constraint it addresses.”

Why this works

Combining compliance constraints with trade-level outputs supports operations and compliance teams; the explicit format eases ingestion into OMS or execution systems.

Expected inputs

  • Proposed target weights, constraints, and current holdings

Customization

  • Request CSV or JSON format compatible with your execution management system.

Risk Assessment

Risk Assessment prompts cover stress testing, scenario analysis, counterparty credit review, and model validation. They are constructed to produce quantifiable outputs that feed into governance dashboards, compliance reporting, and board-level summaries.

Prompt 11 – Counterparty Credit Scoring

Prompt: “Using financial statement data, market indicators, and industry metrics for a counterparty, produce a credit score on a 1–100 scale with a short narrative explaining drivers. Include probability of default estimate over 1 year and an implied credit spread using a standard mapping methodology.”

Why this works

The numeric score plus a narrative enables both quantitative integration and human review. Asking for a standardized mapping (score to spread) yields actionable cost-of-capital insights.

Expected inputs

  • Income statement, balance sheet, cash flow, market-implied metrics
  • Industry comparators and macro assumptions

Customization

  • Adjust scoring rubric to internal risk categories and regulatory buckets.

Prompt 12 – Counterparty Netting and Exposure Simulation

Prompt: “For a portfolio of derivative trades across counterparties, compute net exposure after netting and collateral agreements under normal and stressed scenarios. Return exposure at default (EAD), expected exposure (EE), and a table of top exposures by counterparty.”

Why this works

Netting and collateral materially change risk. By requesting EAD and EE under scenarios, the prompt generates outputs ready for regulatory and internal capital calculations.

Expected inputs

  • Derivatives list, notional, collateral agreements, netting sets

Customization

  • Include collateral haircuts, margin frequencies, and threshold triggers.

Prompt 13 – Scenario Bank Run Liquidity Projection

Prompt: “Project liquidity over a 30-day horizon for an institutional treasury under a severe stress scenario (e.g., deposit outflows, credit line draws, dislocated funding markets). Provide daily cash balance projections, sources of funding, and recommended contingency actions ranked by cost and feasibility.”

Why this works

Detailed daily projections and contingency actions assist treasury teams in making contingency funding plans and communicate to risk committees the likely outcomes and mitigation steps.

Expected inputs

  • Current cash, committed lines, typical inflows/outflows, and funding instruments

Customization

  • Adjust stress severity, run-off rates, or include central bank facilities assumptions.

Prompt 14 – Model Validation Checklist for Pricing Models

Prompt: “Generate a model validation checklist for a proprietary pricing model (e.g., fixed income prepayment model), including data integrity checks, parameter stability tests, backtest design, sensitivity analysis, and governance documentation required for approval.”

Why this works

A comprehensive checklist ensures that model owners and validators have a consistent set of tests and documentation requirements to meet regulatory and internal audit expectations.

Expected inputs

  • Model description, asset class, critical parameters, and historical performance

Customization

  • Tailor tests to model complexity, e.g., include Monte Carlo convergence tests or calibration diagnostics.

Prompt 15 – Regulatory Capital Impact Assessment

Prompt: “Estimate the impact on regulatory capital ratios (e.g., CET1, Tier 1) for a set of transactions or portfolio changes. Input the change (e.g., increase in unsecured lending or a securitization purchase) and provide pro forma ratios and a narrative on capital adequacy effects.”

Why this works

Regulatory capital calculations require specific outputs and narratives. Framing the request as a pro forma impact assessment ensures clearly auditable outputs for governance discussions.

Expected inputs

  • Balance sheet composition, risk-weighted assets, proposed transactions

Customization

  • Customize for applicable regulatory frameworks (Basel III/IV, local regulators).

Prompt 16 – Credit Migration Scenario Generator

Prompt: “Create a set of plausible credit migration scenarios for a corporate credit portfolio over a 1-year horizon. For each scenario return the assumed migration matrix, macro drivers (e.g., GDP contraction, oil price shock), and expected P&L/credit loss estimate.”

Why this works

Linking macro drivers to migration matrices produces scenarios that are interpretable and actionable for provisioning and stress reporting.

Expected inputs

  • Portfolio composition by rating, historical migration matrices, macro baseline

Customization

  • Adjust severity levels and attach probability weights for scenario aggregation.

Prompt 17 – Counterparty Concentration Risk Dashboard Items

Prompt: “List and compute the top 12 dashboard metrics that should be presented weekly to monitor counterparty concentration risk across clients and sectors. For each metric provide a one-line rationale and recommended alert thresholds.”

Why this works

Generating a short list of dashboard metrics with rationales helps risk teams prioritize monitoring and set appropriate thresholds for escalation.

Expected inputs

  • Portfolio exposures by counterparty, sector breakdowns

Customization

  • Localize thresholds to firm-specific appetite and regulatory expectations.

Prompt 18 – Operational Risk Event Triage

Prompt: “Given a description of an operational risk event (data breach, failed settlement), produce a triage report with immediate containment actions, root cause hypotheses, potential financial and reputational impacts, and recommended next steps for incident response and internal reporting.”

Why this works

Prompting for a triage report yields structured steps for rapid action and aligns teams on short-term containment and longer-term remediation planning.

Expected inputs

  • Event description, affected systems, initial loss estimate

Customization

  • Include legal and regulatory reporting timelines if needed.

Prompt 19 – Market Liquidity Heatmap

Prompt: “Produce a market liquidity heatmap for a list of instruments and venues, scoring each instrument on a 1–10 liquidity scale based on bid-ask spreads, depth, recent trade frequency, and implied volatility. Provide a short methodology and an ordered list of instruments requiring attention.”

Why this works

Scoring liquidity with defined inputs produces a comparable metric for monitoring and prioritization; asking for methodology improves transparency and replicability.

Expected inputs

  • Bid-ask spreads, trade volumes, depth, implied volatility

Customization

  • Change scoring weights to emphasize certain liquidity dimensions (e.g., depth over spread).

Prompt 20 – Model Risk Change Log Generator

Prompt: “When a model parameter is updated or new data is introduced, produce a standardized model change log entry that includes change rationale, data source, tests performed, backtest summary, expected impact on outputs, and approval trace. Ensure the entry complies with internal model governance format.”

Why this works

Standardized logs facilitate auditability and regulatory compliance; instructing the model to follow governance format ensures consistency across updates.

Expected inputs

  • Description of change, data sources, test results

Customization

  • Provide the exact internal governance template to ensure field-level compliance.

Market Research

Market Research prompts focus on sourced intelligence, structured summaries, thematic analysis, competitor landscapes, and data-driven market sizing. These prompts are designed to produce referenceable outputs suitable for internal briefings and investment committees.

Prompt 21 – Thematic Trend Brief with Signal Strength

Prompt: “Create a 1-page thematic brief on [THEME], synthesizing public company filings, recent earnings transcripts, patent filings, and macro indicators. Provide three leading signals supporting the theme, one counterargument, and a measure of signal strength (weak/medium/strong) with rationale.”

Why this works

Specifying source types and asking for signals plus counterarguments forces balanced, evidence-backed outputs that are useful for thematic investment theses.

Expected inputs

  • Thematic keyword(s), time horizon, optional list of sources or company tickers

Customization

  • Request citations for each claim using provided source links or document references.

Prompt 22 – TAM (Total Addressable Market) Sizing Model

Prompt: “Build a TAM sizing model for [PRODUCT/INDUSTRY] with bottom-up and top-down calculations. Provide assumptions, data sources, sensitivity tables for ±10/20/50% assumption shifts, and a final TAM range with confidence levels.”

Why this works

Explicitly asking for both bottom-up and top-down approaches with sensitivity testing yields robust market sizing that supports valuation and go-to-market decisions.

Expected inputs

  • Target market definition, segmentation, available market data or proxy metrics

Customization

  • Request per-region breakouts and adoption curves for multi-year outlooks.

Prompt 23 – Competitive Positioning Matrix

Prompt: “For a set of competitors, produce a positioning matrix across dimensions such as price, feature completeness, distribution strength, and margin profile. Output an annotated 2×2 or 3×3 grid and a short recommendation on likely competitive winners under different scenarios.”

Why this works

Structured competitive matrices contextualize relative advantages and inform strategic recommendations; specifying dimensions produces comparable judgments across firms.

Expected inputs

  • List of competitors, dimension definitions, time horizon

Customization

  • Include market share proxies or NPS metrics if available to quantify dimensions.

Prompt 24 – Supply Chain Disruption Impact Assessment

Prompt: “Assess the impact of a specified supply chain disruption (e.g., semiconductor shortage in APAC) on target companies. Provide exposure mapping, estimated revenue impact by quarter, mitigation actions by companies, and a short risk score.”

Why this works

Demanding exposure mapping and quarter-level revenue impact enables investment teams to model near-term earnings risk and operational response capability.

Expected inputs

  • List of companies, supplier lists, revenue dependencies by region

Customization

  • Incorporate public supplier disclosures, subpoenaed customs data, or alternative inputs for deeper analysis.

Prompt 25 – Regulatory Change Impact Summary

Prompt: “Summarize the strategic and financial impacts of a specified regulatory change on an industry (e.g., new emissions standards, changes to data privacy rules). Provide affected business lines, short-term compliance costs, and long-term competitive incumbency effects.”

Why this works

Regulatory shifts often re-rate industries; a focused summary with tangible impacts assists scenario planning and policy risk assessment.

Expected inputs

  • Regulatory text or summary, targeted industry and companies

Customization

  • Request jurisdictional differentials if the regulation passes unevenly across geographies.

Prompt 26 – Primary Research Discussion Guide

Prompt: “Draft a structured discussion guide for 30-minute primary research interviews with channel partners or customers for [PRODUCT]. Include screening questions, core thematic questions to validate demand drivers, and probes for pricing sensitivity and switching costs.”

Why this works

Providing a well-structured guide improves data quality and comparability across interviews—critical for market validation exercises supporting investment theses.

Expected inputs

  • Target respondent profile, research objectives, confidentiality constraints

Customization

  • Localize language, add compliance or vendor-specific screening items, or include incentives framework.

Prompt 27 – Newsflow Sentiment Extractor

Prompt: “Given a set of recent news articles and earnings call transcripts for a company, extract sentiment scores for themes: demand, supply chain, pricing power, and regulation. Provide a short time-series summary (last 6 months) and highlight any material changes.”

Why this works

Theme-level sentiment extraction enables targeted monitoring and helps correlate sentiment shifts with price movements or revisions to forecasts.

Expected inputs

  • Text corpus (news, transcripts), time stamps, theme keywords

Customization

  • Calibrate sentiment thresholds to your firm’s internal lexicon or signal validation rules.

Prompt 28 – Channel Mix and Distribution Economics

Prompt: “Analyze the distribution strategy for a company by estimating channel mix (direct vs. partner vs. retail), margins by channel, and customer acquisition costs. Provide sensitivity to channel shift assumptions and the likely impact on gross margins.”

Why this works

Detailing channel economics translates strategic observations into margin mechanics, which are central to valuation and margin sustainability analysis.

Expected inputs

  • Revenue breakdowns, channel-specific unit economics, industry benchmarks

Customization

  • Request per-region breakdowns or cohort-based lifetime value calculations.

Prompt 29 – Patent and IP Competitive Analysis

Prompt: “For a given firm, summarize recent patent filings and map them to product lines and competitors. Identify potential infringements, defensive filings, or areas where patents create moat-like behavior.”

Why this works

Patent analysis provides forward-looking signals about product roadmaps and barriers to entry; structured mapping enables legal and strategy teams to assess competitive positioning.

Expected inputs

  • Patent text or identifiers, product mapping, competitor lists

Customization

  • Include patent family citations and filing jurisdictions for legal risk assessments.

Prompt 30 – Channel Partner Risk Report

Prompt: “Create a risk profile for key channel partners, assessing financial stability, exclusivity dependence, strategic alignment, and operational risk. Provide a red/amber/green rating for each partner and recommended escalation protocols.”

Why this works

Channel partners can pose concentrated counterparty and operational risk; a concise risk profile equips commercial teams with monitoring priorities.

Expected inputs

  • List of partners, revenue dependency metrics, public financial indicators

Customization

  • Adjust rating criteria to reflect your firm’s commercial risk tolerance.

Earnings Analysis

Earnings Analysis prompts extract insights from public disclosures, build models, and produce forecasts that are defensible in investment discussions. Emphasis is on transparent assumptions, reconcileable calculations, and sensitivity ranges.

Prompt 31 – Earnings Call Key Takeaways with Action Items

Prompt: “From the attached earnings call transcript, extract top 6 takeaways prioritized by impact on revenue, margins, and guidance credibility. For each takeaway include an action item for the analyst (e.g., adjust forecast, seek clarification, initiate channel checks).”

Why this works

Prioritizing takeaways by impact turns busy transcripts into analyst workflows and eliminates noise, enabling faster reaction to important disclosures.

Expected inputs

  • Earnings call transcript text, company name, relevant prior quarter notes

Customization

  • Score takeaways by materiality thresholds tied to expected EPS or revenue deltas.

Prompt 32 – Consensus vs. Internal Model Reconciliation

Prompt: “Compare consensus analyst estimates to the internal model for the next four quarters. Highlight line items where the internal forecast differs by more than X% and provide rationale for each variance. Output a reconciliation table and recommended next steps (e.g., adjust model, contact IR).”

Why this works

Reconciling internal and consensus estimates with explicit thresholds surfaces where the market view diverges from internal thinking and provides concrete actions for alignment or distinction.

Expected inputs

  • Internal forecast model outputs, consensus estimates, materiality threshold X

Customization

  • Set different thresholds per line item (e.g., revenue vs. non-operating items).

Prompt 33 – Normalization Adjustments for One-Off Items

Prompt: “Identify and quantify one-off items in the income statement and adjust historical and forward-looking metrics to produce normalized EBITDA. Provide a list of adjustments with rationale and the pro forma impact on margins.”

Why this works

Explicit normalization improves comparability and valuation accuracy; requiring itemized adjustments supports auditability and discussion with company management.

Expected inputs

  • Income statements, footnotes, and management commentary

Customization

  • Apply company-specific definitions for recurring vs. non-recurring costs.
50 GPT-5.5 Prompts for Financial Analysts - Section Illustration

Prompt 34 – Revenue Cohort Build-Up

Prompt: “Decompose revenue into cohorts (by vintage, geography, or product) using provided billing or subscription data and estimate cohort-level retention and monetization trends. Output cohort charts and an explanation of drivers for cohort expansion or contraction.”

Why this works

Cohort analysis reveals structural revenue dynamics beyond headline growth and supports LTV and churn modeling for subscription businesses.

Access 40,000+ AI Prompts for ChatGPT, Claude & Codex — Free!

Subscribe to get instant access to our complete Notion Prompt Library — the largest curated collection of prompts for ChatGPT, Claude, OpenAI Codex, and other leading AI models. Optimized for real-world workflows across coding, research, content creation, and business.

Get Free Access Now →

Expected inputs

  • Transaction or subscription-level data with dates, product, and geography

Customization

  • Build cohorts by user acquisition channel or initial contract size for deeper unit economics insights.

Prompt 35 – Gross Margin Decomposition

Prompt: “Break down the change in gross margin between two periods into price/mix, input cost, and operational efficiency effects. Provide a waterfall table and a short narrative on likely persistence of each element.”

Why this works

Decompositions with waterfall outputs translate accounting movements into business drivers and help determine which margin shifts are transitory vs. structural.

Expected inputs

  • Revenue and cost of goods sold breakdowns by product or geography for two periods

Customization

  • Incorporate hedging or commodity exposure as separate adjustment line items.

Prompt 36 – Free Cash Flow Sensitivity Table

Prompt: “Generate a sensitivity table for unlevered free cash flow (FCF) to changes in revenue growth, gross margin, and capex as percentage of sales. Present a 5×5 grid and explain which levers most materially affect valuation under a DCF framework.”

Why this works

Sensitivity grids focus attention on the most value-driving assumptions and are practical for communicating risk to stakeholders and stress-testing valuations.

Expected inputs

  • Base forecast for revenue, margin, capex, discount rate

Customization

  • Replace grid axes with alternative levers like tax rate or working capital days.

Prompt 37 – Earnings Revision Signal for Long/Short Decisions

Prompt: “Based on recent data (orders, bookings, channel checks) produce a short signal indicating the likelihood (low/medium/high) of a downward earnings revision for the next quarter and provide top three supporting and three opposing indicators.”

Why this works

Binary or ternary signals with supporting indicators are suitable for rapid portfolio decisioning and monitoring. The explicit ask for opposing indicators reduces confirmation bias.

Expected inputs

  • Recent indicators: orders, channel checks, macro datapoints, management commentary

Customization

  • Quantify the implied EPS delta tied to the signal for more actionable sizing guidance.

Prompt 38 – Expense Run-Rate Normalization

Prompt: “Normalize operating expenses by separating steady-state expenses from one-time restructuring or pandemic-related items. Provide an adjusted operating expense run-rate and indicate areas where discretionary savings are likely sustainable.”

Why this works

Normalizing expenses clarifies sustainable margins and helps forecast future profitability accurately by removing noise from exceptional items.

Expected inputs

  • Expense line items, notes on one-offs, management guidance

Customization

  • Use internal policy on capitalization vs. expensing for more precise adjustments.

Prompt 39 – Dealer and Channel Inventory Check

Prompt: “Estimate dealer and channel inventory levels for a manufacturer using shipment, build, and sell-through data. Explain inventory risk (overhang vs. tightness) and the expected impact on near-term shipments and dealer discounts.”

Why this works

Channel inventory is a crucial leading indicator for revenue recognition in many industries; translating inventory signals into expected revenue impacts supports timing decisions for forecasts.

Expected inputs

  • Shipments, production schedules, sell-through rates, dealer inventory samples

Customization

  • Request probabilistic outcomes or bucketed scenarios for inventory depletion timelines.

Prompt 40 – Earnings Call Tone and Credibility Assessment

Prompt: “Analyze the CEO and CFO tone in the latest earnings call transcript for indicators of confidence, evasiveness, or inconsistency. Score credibility on a 1–5 scale, highlight contradictory statements, and recommend follow-up questions for investor relations.”

Why this works

Assessing tone and contradictions can surface areas where guidance credibility may be weak; recommended follow-ups operationalize IR engagement for analysts.

Expected inputs

  • Earnings call transcript, historical guidance vs. outturns

Customization

  • Link tone analysis to subsequent stock performance as part of a validation exercise.

Investment Memos

Investment Memos prompts are focused on producing polished, decision-grade write-ups, including deal rationales, investment risks, exit scenarios, sensitivities, and operational plans. Each prompt is formatted to produce memos that can be quickly adapted for committees, CIO reviews, or term sheets.

Prompt 41 – One-Page Investment Memo Template

Prompt: “Produce a one-page investment memo for [COMPANY/TARGET] that includes concise fields: Investment Thesis, Key Catalysts, Valuation Summary, Key Risks (top five), Deal Structure Notes, and Ideal Exit Scenarios. Use bullet points and include recommended next steps for due diligence.”

Why this works

A one-page memo forces clarity and prioritization. Specifying fields ensures consistency across deals and enables quick review by investment committees.

Expected inputs

  • Company summary, valuation snapshot, target investment size

Customization

  • Embed pre-filled templates for internal approval flows or signature lines for committee signoff.

Prompt 42 – Deal-Level Sensitivity Analysis

Prompt: “Create a sensitivity table for an LBO or growth equity deal showing IRR and MOIC across ranges of revenue growth, exit multiple, and margin expansion assumptions. Provide a short interpretation of breakeven cases and downside protection metrics.”

Why this works

Sensitivities around key deal assumptions explain how robust returns are to realistic shifts and inform pricing and covenant negotiation strategies.

Expected inputs

  • Base case financial model, capital structure, assumption ranges

Customization

  • Include waterfall outputs showing returns per tranche and sponsor return dilution impacts.

Prompt 43 – Exit Strategy and Timeline

Prompt: “Draft a multi-path exit strategy for a private investment with timelines and expected valuation ranges for each path (strategic sale, IPO, recapitalization). For each path, list the preconditions and operational milestones required to achieve a target multiple.”

Why this works

Explicit exit planning aligns operational KPIs with value creation and helps set realistic performance targets for portfolio companies and investors.

Expected inputs

  • Investment thesis, expected holding period, industry comps

Customization

  • Include estimated costs and timeline sensitivities for each exit route.

Prompt 44 – Integration Playbook for Acquisitions

Prompt: “Create a 90-day integration playbook post-acquisition focused on value capture levers: cost synergies, revenue cross-sell, and systems consolidation. Include RACI, milestones, and KPIs tied to expected synergy realization.”

Why this works

An actionable integration plan ties financial assumptions to operational execution and clarifies who is responsible for delivering synergies.

Expected inputs

  • Transaction summary, targeted synergy areas, organizational chart

Customization

  • Adjust the horizon to 180 or 365 days for larger transformational integrations.

Prompt 45 – ESG Risk and Value Integration

Prompt: “Produce a section for an investment memo that evaluates ESG risks and value-creation opportunities for the target. Include material ESG factors, potential regulatory headwinds, and suggested KPIs to be tracked post-investment.”

Why this works

Integrating ESG into investment decisioning is necessary for many institutional investors; structuring the section makes it easy to compare across opportunities with standardized KPIs.

Expected inputs

  • Company ESG disclosures, industry-specific ESG frameworks

Customization

  • Map ESG factors to EBITDA or capex impacts for quantification where possible.

Prompt 46 – Covenant and Legal Risk Review

Prompt: “Summarize key covenant and legal risks for the proposed financing structure. Highlight restrictive covenants, events of default, and investor protective provisions. Recommend negotiation points to improve downside protection.”

Why this works

Legal and covenant risks directly influence downside protection and therefore pricing; presenting recommended negotiation points converts legal review into commercial actions.

Expected inputs

  • Draft term sheet or credit agreement clauses, proposed covenants

Customization

  • Include jurisdiction-specific legal risk considerations and precedent clauses that improve outcomes.

Prompt 47 – Post-Investment KPI Dashboard Specification

Prompt: “Design a post-investment KPI dashboard for monitoring a growth-stage company. List required metrics, data cadence, visualization suggestions, and thresholds that should trigger board review or management intervention.”

Why this works

Clear dashboard specifications enable consistent reporting from management and form the basis for governance and early warning systems for investors.

Expected inputs

  • Business model details, reporting frequency preferences, target KPIs

Customization

  • Include automated data validation checks and reconciliation procedures to ensure data integrity.

Prompt 48 – Deal Origination Shortlist and Prioritization

Prompt: “From a pipeline list, prioritize top targets using a scoring rubric that includes strategic fit, valuation gap, time-to-close, and management quality. Produce a ranked shortlist with a concise justification for each rank.”

Why this works

A scoring rubric reduces subjectivity in origination and helps allocate limited diligence resources to the highest-potential opportunities.

Expected inputs

  • Pipeline list, scoring weights and definitions

Customization

  • Adjust weights for firm-specific strategic priorities or current portfolio exposures.

Prompt 49 – Investment Committee Presentation Slides Outline

Prompt: “Generate a slide-by-slide outline for a 10-slide investment committee presentation for the proposed investment. Include recommended visuals, one-line speaker notes per slide, and appendices that should accompany the deck.”

Why this works

Standardizing the deck structure accelerates committee review and ensures all material topics are covered with the right level of detail and backup materials.

Expected inputs

  • Investment memo content, required approval thresholds

Customization

  • Specify the committee’s typical questions or past objections to pre-emptively address them in speaker notes.

Prompt 50 – Post-Mortem Analysis Template

Prompt: “Create a post-mortem template to analyze investments that underperformed relative to the thesis. Include sections for hypothesis vs. actuality, timeline of events, root cause analysis, lessons learned, and changes to process to prevent recurrence.”

Why this works

Systematic post-mortems help firms learn from outcomes and refine underwriting criteria and monitoring processes. A reproducible template supports institutional knowledge transfer.

Expected inputs

  • Investment thesis, realized performance data, key events and management commentary

Customization

  • Embed quantitative checklists and risk-control measures tied to the original approval conditions to highlight governance gaps.

Operational note: when integrating these prompts into automated systems, consider cost control and governance. The piece

For a deeper exploration of this topic, our comprehensive analysis on The Enterprise Guide to OpenAI Spend Controls and Usage Analytics: How to Monitor, Optimize, and Govern AI Costs Across Your Organization in 2026 provides detailed implementation strategies, real-world case studies, and actionable frameworks that complement the concepts discussed in this section.

outlines pragmatic approaches to monitoring usage, implementing hard and soft limits, and applying prompt batching techniques to reduce redundant calls while preserving analytical fidelity. It explains how to set up role-based cost dashboards, implement staged rollout of high-cost prompts, and employ caching for deterministic outputs to optimize spend.

Implementation tips: wrap each prompt in a template that specifies output schema (JSON), sampling temperature (0.0–0.3 for deterministic analytic outputs), token limits, and failover rules (e.g., retry with stricter parsing on partial responses). For sensitive financial outputs, always include validation rules and reconciliation tests before publication. Where results drive trading or client decisions, maintain human-in-the-loop signoff and version-control prompts for audit trails.

Acknowledgments: This guide is intended to accelerate analyst productivity and standardize best practices for deploying GPT-5.5 in financial analysis workflows. Use these prompts as starting points; maintain governance, testing, and human oversight when operationalizing results. For teams building automation around these prompts, pair them with robust logging, input/output validation, and access controls as described in the internal operational guidance resources referenced above.

Get Free Access to 40,000+ AI Prompts for ChatGPT, Claude & Codex

Subscribe for instant access to the largest curated Notion Prompt Library for AI workflows.

More on this

The Complete Guide to Codex Sites: How to Build Hosted Web Applications, Dashboards, and Internal Tools from Plain Language Prompts Without Writing Code

Reading Time: 19 minutes
Codex Sites for Business Teams: A Practical Guide to Building Dashboards, Trackers, and Workflow Tools without Engineering Sprints This guide explains how Codex Sites (launched June 2, 2026) enables business teams—writers, researchers, project managers, financial planners, and operations leads—to convert…

How to Deploy GPT-5.5 on Amazon Bedrock for Multi-Cloud Enterprise AI: Complete Setup Guide with IAM Policies, Cost Controls, and Production Patterns

Reading Time: 17 minutes
Deploying GPT-5.5 on Amazon Bedrock: End-to-End Guide for IAM, Cross-Account Access, Cost Optimization, and Multi-Cloud Routing This technical, hands-on tutorial takes you from planning to production: configuring IAM for Bedrock, enabling cross-account access patterns, implementing cost controls (including prompt caching…