No Result
View All Result
SUBMIT YOUR ARTICLES
  • Login
Sunday, September 21, 2025
TheAdviserMagazine.com
  • Home
  • Financial Planning
    • Financial Planning
    • Personal Finance
  • Market Research
    • Business
    • Investing
    • Money
    • Economy
    • Markets
    • Stocks
    • Trading
  • 401k Plans
  • College
  • IRS & Taxes
  • Estate Plans
  • Social Security
  • Medicare
  • Legal
  • Home
  • Financial Planning
    • Financial Planning
    • Personal Finance
  • Market Research
    • Business
    • Investing
    • Money
    • Economy
    • Markets
    • Stocks
    • Trading
  • 401k Plans
  • College
  • IRS & Taxes
  • Estate Plans
  • Social Security
  • Medicare
  • Legal
No Result
View All Result
TheAdviserMagazine.com
No Result
View All Result
Home Market Research Investing

ChatGPT: Copilot Today, Autopilot Tomorrow?

by TheAdviserMagazine
2 years ago
in Investing
Reading Time: 14 mins read
A A
ChatGPT: Copilot Today, Autopilot Tomorrow?
Share on FacebookShare on TwitterShare on LInkedIn


For more on artificial intelligence (AI) applications in investment management, read The Handbook of Artificial Intelligence and Big Data Applications in Investments, by Larry Cao, CFA, from CFA Institute Research Foundation.

ChatGPT and other large language models (LLMs) may someday automate many investment management and finance industry tasks. While that day is not here yet, LLMs are still useful additions to the analyst’s toolkit.

So, based on what we have learned about the new, dark art of prompt engineering, how can quant and fundamental analysts apply LLMs like ChatGPT? How effective a copilot can these technologies be?

Fundamental Analyst Copilot

Stock analysts generally know their companies from top to bottom, so ChatGPT may not reveal anything altogether new about their primary names. But LLMs can generate overviews of less well-known firms quickly and at scale.

Here are the ChatGPT prompts we’d deploy to analyze a hypothetical CompanyX.

Company Overview

“explain the business model of CompanyX”

“conduct SWOT analysis of CompanyX” (strengths, weaknesses, opportunities, threats)

“list 10 competitors of CompanyX”

“list the 10 main risks to an investment in CompanyX”

Environmental, Social, and Governance (ESG) Overview

“list and describe 10 key Environmental scandals of CompanyX”

“list and describe 10 key Governance scandals of CompanyX”

“list and describe 10 key Social scandals of CompanyX”

Drill down as appropriate

We’d also add a standard ending to each prompt to increase the chances of an accurate response: “list your sources; if you do not know an answer, write ‘Do not know.’”

Case Studies

Now we can test some of these prompts in two simple case studies:

“summarize: [web address of text document, or paste in the text]”

“list 10 key negatives” (risky unless we provide source text)

Drill down as appropriate

We ran the above ChatGPT analysis on two real-life companies — Mphasis, a lightly covered Indian mid-cap, and Vale, a very well-covered Brazilian mining company — and scored the results of each task on a one-to-five scale, with five being the highest. The answers were generated simply by prompting ChatGPT-4, but in actual practice, the highest-tech managers would automate much of this process. We would use multiple LLMs, which give us more control over the responses, greater validation and cross-checking, and much greater scale. Of course, like all ChatGPT-produced results, those below need to be treated with care and not taken at face value, especially if we are relying on the model’s training data alone.

Image of Data Science Certificate Launch Tile

1. Mphasis Company Overview

While the results are hardly revelatory, ChatGPT does provide an informative, high-level summary of Mphasis. We also prompt it for sources and explicitly instruct it not to make things up. Such measures improve accuracy but are not foolproof.

As we proceed, the LLM offers up more interesting insights.

Image of ChatGPT Query and Answer: Explain Mphasis Business Model

We can now drill down with a little SWOT analysis.

Image of ChatGPT query: Conduct SWOT Analysis on Mphasis, List Sources

Our SWOT analysis identifies “Dependencies on Certain Industries” as a potential weakness for the company. So, we pose additional questions to help understand the underlying context.

Image of Chat GPT Query: Explain More about Mphasis Weakness Dependence on Certain Industries

Mphasis Company Overview Score: 4

2. Vale ESG Overview

Vale’s record on ESG issues has generated headlines, and ChatGPT picks up on the major themes. A simple prompt for a specific aspect — “Social” — yields accurate results, even though the system cautions that it cannot attribute sources and recommends we cross-reference the response. To get into more detail, we need to delve deeper than ChatGPT allows.

Image of ChatGPT Query: List and Describe 10 Social Scandals of the Company Vale

Vale ESG Overview Score: 3

ESG Certificate ad from CFA Instiute

Ground Truthing: ChatGPT Interrogates and Summarizes

Latest Mphasis Data Summary

ChatGPT can summarize and interrogate a company’s latest earnings call, news flow, third-party analysis, or whatever data we provide — this information is called the “ground truth,” which is a different use of the expression than in supervised machine learning. But if we don’t specify and deliver the text for ChatGPT to analyze, as we saw above, it will rely only on its training data, which increases the risk of misleading “hallucinations.” Moreover, the end-date of the LLM’s training data will limit the possible insights.

Another point to keep in mind: Official company communications tend to be upbeat and positive. So rather than ask ChatGPT to “summarize” an earnings call, we might request that it “list 10 negatives,” which should yield more revealing answers. ChatGPT delivers fast and effective results. Though they are often obvious, they may reveal important weaknesses that we can probe further.

ChatGPT analyis of Mphasis ten negatives

Latest Mphasis Data Summary Score: 5

Quant Analyst Copilot

ChatGPT can write simple functions and describe how to produce particular types of code. In fact, “GPT codex,” a GPT-3 component trained on computer programming code, is already a helpful auto-complete coding tool in GitHub Copilot, and GPT-4 will be the basis of the forthcoming and more comprehensive GitHub Copilot X. Nevertheless, unless the function is fairly standard, ChatGPT-generated code nearly always requires tweaks and changes for correct and optimized results and thus serves best as a template. So at the moment, LLM autopilots appear unlikely to replace quant coders anytime soon.

A quant might use ChatGPT for the three tasks described below. Here we are simply prompting ChatGPT. In practice, we would access specific codex LLMs and integrate other tools to create far more reliable code automatically.

1. Develop an Entire Investment Pipeline

ChatGPT can partly execute complex instructions, such as “write python functions to drive quant equity investment strategy.” But again, the resulting code may need considerable editing and finessing. The challenge is getting ChatGPT to deliver code that is as close as possible to the finished article. To do that, it helps to deploy a numbered list of instructions with each list item containing important details.

In the example below, we prompt ChatGPT to create five functions as part of a factor-based equities investment strategy and score each function on our five-point scale. For slightly higher accuracy, we would also construct a prompt for the system to “ensure packages exist, ensure all code parses.”

1. Download Factor Time-Series Data

ChatGPT generates a decent function that downloads a zip file of factor data from the Kenneth R. French Data Library and extracts a CSV file. But we had to add nuanced instructions — “download zip file, unzip, read csv into Pandas DataFrame” — for ChatGPT to perform well.

Score: 4

2. Download Equity Returns Data

Again, the function ChatGPT writes does work. But again, we had to add more details, such as “using get_data_yahoo, read csv into Pandas DataFrame,” to make the function work properly.

Score: 4

3. Align the Dates in Our Downloaded Data

The data we downloaded, from the Kenneth R. French Data Library and Yahoo, have different date formats and frequencies. ChatGPT did not sort this issue for us, so we had to reformat dates and then write the code to align the two sets of data. This data wrangling is the most time-consuming and risky aspect of most data processes, and ChatGPT was of little help.

Score: 0

4. Use a Simple Factor Model to Forecast Returns

With ChatGPT, we can calculate stock-level factor loadings, but the expected returns are based on the factor returns we used to fit the model. This is not helpful. So, we have to investigate and understand where ChatGPT went awry and manually fix it.

Score: 2

5. Construct Portfolios and Run Simulations

The final simulation function misfires. It fails to generate expected returns for all of our stocks over all time periods in our data and isn’t an effective guide for portfolio construction decisions. It just calculates one expected return value for each stock.

We must intervene to loop through each time period and engineer the function to do what we want it to. A better prompt makes for better results.

Score: 1

Image of Chat GPT Query: Write Python Functions to Drive Quant Equity Investment Strategy

Develop an Entire Investment Pipeline Score: 1

2. Create a Machine-Learning, Alpha-Forecasting Function

Follow-up requests give us a simple machine-learning function, or template, to forecast stock returns. ChatGPT does a reasonable job here. It provides a function that we can then adjust and offers advice on how to apply it, recommending cross-validation for a random forest.

ChatGPT Python Code for Random Forest Learner

Create a Machine-Learning, Alpha-Forecasting Function Score: 4

3. Create a Useful Function: Target Shuffling

We next ask ChatGPT to write a helpful and moderately complex function to conduct target shuffling. Target shuffling is a method to help verify an investment model’s outcomes. A simple request to “write Python code for a target shuffling function” does not give us much. Again, we had to input a detailed list outlining what we want for ChatGPT to produce a reasonable template.

Image of ChatGPT Query: Write Python Function to Run Target Shuffling on an Index of Equities

Create a Useful Function: Target Shuffling Score: 5

Graphic for Handbook of AI and Big data Applications in Investments

Copilot Performance

As an adjunct to a fundamental analyst, ChatGPT functions reasonably well. Though detail is sometimes lacking on less-well-covered companies, the stock summaries demonstrate ChatGPT’s speed and precision as an aggregator — when queries require no reasoning, subjectivity, or calculation. For ESG applications, ChatGPT has great potential, but once we identified a controversy, we could only drill down so far as the system only had so much data.

ChatGPT excels at quickly and precisely summarizing earnings transcripts and other long-form text about companies, sectors, and products, which should free up time for human analysts to dedicate to other tasks.

While ChatGPT seems to disappoint as a quant copilot, it does add some value. To produce complex pipelines, ChatGPT needs precise prompts that require considerable time and intervention to construct. But with more specific functions, ChatGPT is more reliable and can save time. So overall, ChatGPT’s effectiveness as a copilot is largely a function of how well we engineer the prompts.

However, if we step things up and build an application on top of GPT-4, with refined prompts, cross-validated results, and structured outputs, we could significantly improve our results across the board.

Professional Standards, Regulation, and LLMs

What sort of implications do LLMs have for professional standards and regulation? In “Artificial Intelligence and Its Potential Impact on the CFA Institute Code of Ethics and Standards of Professional Conduct,” CFA Institute raised important questions about LLMs’ investment management applications, and there are obvious concerns about appropriate risk management, interpretability, auditability, and accountability around LLMs.

This is why the direct and uncontrolled application of ChatGPT responses to investment decision making is currently a nonstarter. But the technology is moving fast. Alphabet, for example, is working to provide sources for LLM responses. Further developments in so-called machine reasoning and causal machine learning may widen LLMs’ applications still further. Nevertheless, current, raw LLM technology cannot satisfy the duty of care obligations intrinsic to investment management. Which is why — absent access to the most sophisticated resources that can implement cross-validated and checked LLM responses — we advise against anything but the most peripheral use of LLMs.

LLMs: Future Applications in Investment Management

If analysis and investment indeed compose a mosaic, LLMs provide managers who understand the technology with a powerful tile. The examples above are simply ChatGPT prompts, but developers and managers with class-leading technology are already working to apply LLMs to investment management workflows.

In investment management, LLMs may already be at work on the following tasks:

Sense Checking

Portfolio managers could sense check investments with LLMs at a portfolio or even asset allocation level based on such criteria as ESG scandals or investment risks. This could ultimately be extended to institutional investing and robo-advisers.

Analyst Copilot

LLMs can help fundamental analysts quickly acquire basic knowledge about many companies at once. And quant analysts can use them to develop and debug code. Of course, there are risks and drawbacks that need to be carefully managed. The ChatGPT prompts we use above show one way to do this manually, but apps that write prompts automatically are likely to be available soon and should help achieve more detailed and specific objectives. Indeed, we expect a new tech arms race to develop.

Ad tile for Artificial Intelligence in Asset Management

Analyst Automation

Ultimately higher-tech systematic managers will harness LLMs to automate the research that fundamental analysts would otherwise conduct. But they will use this output as another input to their stock selection and investment models. For this to work, LLMs’ flaws, particularly those related to timeliness and logical or causal reasoning, will have to be addressed.

But even in their current form, well-integrated LLMs can create significant efficiencies if applied in the right way. And they hint at the technology’s vast potential.

In its next generation, LLM technology will become an indispensable investment management tool. By automating information gathering and other tasks, human analysts will have more time and bandwidth to focus on the reasoning and judgment side of the investment process. This is only the beginning.

For further reading on this topic, check out The Handbook of Artificial Intelligence and Big Data Applications in Investments, by Larry Cao, CFA, from CFA Institute Research Foundation.

If you liked this post, don’t forget to subscribe to the Enterprising Investor.

All posts are the opinion of the author(s). As such, they should not be construed as investment advice, nor do the opinions expressed necessarily reflect the views of CFA Institute or the author’s employer.

Image credit: ©Getty Images / Olivier Le Moal

Professional Learning for CFA Institute Members

CFA Institute members are empowered to self-determine and self-report professional learning (PL) credits earned, including content on Enterprising Investor. Members can record credits easily using their online PL tracker.



Source link

Tags: AutopilotChatGPTCopilottodayTomorrow
ShareTweetShare
Previous Post

Partnering for Impact: Institutional Investors and the Net-Zero Transition

Next Post

Book Review: The Little Book of Picking Top Stocks

Related Posts

edit post
As Rhode Island’s “Taylor Swift Tax” on Vacation Homes Spreads, Here’s What Short-Term Rental Owners Need to Know

As Rhode Island’s “Taylor Swift Tax” on Vacation Homes Spreads, Here’s What Short-Term Rental Owners Need to Know

by TheAdviserMagazine
September 19, 2025
0

In This Article Short-term landlords might not be able to sh-sh-shake it off when it comes to the additional taxes...

edit post
Who Needs to Rate Lock and Refinance ASAP

Who Needs to Rate Lock and Refinance ASAP

by TheAdviserMagazine
September 19, 2025
0

The Federal Reserve has finally cut rates. Will mortgage rates follow? If you’ve been waiting to rate lock or refinance,...

edit post
“Rent Freeze” in New York Could Cripple Mom-and-Pop Landlords. Will It Catch on Nationwide?

“Rent Freeze” in New York Could Cripple Mom-and-Pop Landlords. Will It Catch on Nationwide?

by TheAdviserMagazine
September 18, 2025
0

In This Article The New York real estate community choked on their spreadsheets when mayoral candidate Zohran Mamdani proposed rent...

edit post
Monthly Dividend Stock In Focus: Mesa Royalty Trust

Monthly Dividend Stock In Focus: Mesa Royalty Trust

by TheAdviserMagazine
September 18, 2025
0

Published on September 18th, 2025 by Bob Ciura Monthly dividend stocks have instant appeal for many income investors. Stocks that...

edit post
Quarterly Earnings: Signal vs. Noise, Cost vs. Benefit

Quarterly Earnings: Signal vs. Noise, Cost vs. Benefit

by TheAdviserMagazine
September 18, 2025
0

With the White House downplaying the value of quarterly reporting for companies, investors face a familiar question: does the cost...

edit post
Fed Cuts Rates as Employment Softens, But Real Estate Recovery Remains Uncertain

Fed Cuts Rates as Employment Softens, But Real Estate Recovery Remains Uncertain

by TheAdviserMagazine
September 17, 2025
0

In This Article Following a weakening labor market, the Federal Reserve’s announcement that it will cut interest rates by 0.25%...

Next Post
edit post
Book Review: The Little Book of Picking Top Stocks

Book Review: The Little Book of Picking Top Stocks

edit post
The 10 Greatest US Investors and the Virtues That Made Them

The 10 Greatest US Investors and the Virtues That Made Them

  • Trending
  • Comments
  • Latest
edit post
What Happens If a Spouse Dies Without a Will in North Carolina?

What Happens If a Spouse Dies Without a Will in North Carolina?

September 14, 2025
edit post
California May Reimplement Mask Mandates

California May Reimplement Mask Mandates

September 5, 2025
edit post
Who Needs a Trust Instead of a Will in North Carolina?

Who Needs a Trust Instead of a Will in North Carolina?

September 1, 2025
edit post
Does a Will Need to Be Notarized in North Carolina?

Does a Will Need to Be Notarized in North Carolina?

September 8, 2025
edit post
DACA recipients no longer eligible for Marketplace health insurance and subsidies

DACA recipients no longer eligible for Marketplace health insurance and subsidies

September 11, 2025
edit post
Big Dave’s Cheesesteaks CEO grew up in ‘survival mode’ selling newspapers and bean pies—now his chain sells a  cheesesteak every 58 seconds

Big Dave’s Cheesesteaks CEO grew up in ‘survival mode’ selling newspapers and bean pies—now his chain sells a $12 cheesesteak every 58 seconds

August 30, 2025
edit post
Proposed Rules are a Mixed Bag but Take Important Steps to Bolster Primary Care 

Proposed Rules are a Mixed Bag but Take Important Steps to Bolster Primary Care 

0
edit post
Trump calls Kirk ‘martyr’ as his wife forgives shooter

Trump calls Kirk ‘martyr’ as his wife forgives shooter

0
edit post
Earnings Summary: FactSet Systems Q4 adjusted earnings rise on higher revenues

Earnings Summary: FactSet Systems Q4 adjusted earnings rise on higher revenues

0
edit post
US plans b weapons sales to Israel – report

US plans $6b weapons sales to Israel – report

0
edit post
The Sunday Morning Movie Presents: The Shooting (1966) Run Time 1H 21M

The Sunday Morning Movie Presents: The Shooting (1966) Run Time 1H 21M

0
edit post
PUMP Price Prediction as Whale Buys 1B Tokens: 65% Rally Next?

PUMP Price Prediction as Whale Buys 1B Tokens: 65% Rally Next?

0
edit post
Trump calls Kirk ‘martyr’ as his wife forgives shooter

Trump calls Kirk ‘martyr’ as his wife forgives shooter

September 21, 2025
edit post
5 Passive Income Streams for Retirees To Build Wealth

5 Passive Income Streams for Retirees To Build Wealth

September 21, 2025
edit post
The Weekly Notable Startup Funding Report: 9/22/25 – AlleyWatch

The Weekly Notable Startup Funding Report: 9/22/25 – AlleyWatch

September 21, 2025
edit post
Gen Z job crisis: Maybe there are just too many college graduates now

Gen Z job crisis: Maybe there are just too many college graduates now

September 21, 2025
edit post
One of the key business stories to watch in 2026

One of the key business stories to watch in 2026

September 21, 2025
edit post
Argentine central bank intervenes as peso hits record lows

Argentine central bank intervenes as peso hits record lows

September 21, 2025
The Adviser Magazine

The first and only national digital and print magazine that connects individuals, families, and businesses to Fee-Only financial advisers, accountants, attorneys and college guidance counselors.

CATEGORIES

  • 401k Plans
  • Business
  • College
  • Cryptocurrency
  • Economy
  • Estate Plans
  • Financial Planning
  • Investing
  • IRS & Taxes
  • Legal
  • Market Analysis
  • Markets
  • Medicare
  • Money
  • Personal Finance
  • Social Security
  • Startups
  • Stock Market
  • Trading

LATEST UPDATES

  • Trump calls Kirk ‘martyr’ as his wife forgives shooter
  • 5 Passive Income Streams for Retirees To Build Wealth
  • The Weekly Notable Startup Funding Report: 9/22/25 – AlleyWatch
  • Our Great Privacy Policy
  • Terms of Use, Legal Notices & Disclosures
  • Contact us
  • About Us

© Copyright 2024 All Rights Reserved
See articles for original source and related links to external sites.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Home
  • Financial Planning
    • Financial Planning
    • Personal Finance
  • Market Research
    • Business
    • Investing
    • Money
    • Economy
    • Markets
    • Stocks
    • Trading
  • 401k Plans
  • College
  • IRS & Taxes
  • Estate Plans
  • Social Security
  • Medicare
  • Legal

© Copyright 2024 All Rights Reserved
See articles for original source and related links to external sites.