50 Ways to use Chat GPT-3 for Finance. Part 2
If you haven’t read part 1, start here first!
As you know, the finance industry is constantly evolving, and staying ahead of the curve is key to success. One of the most exciting developments in recent years is the emergence of Chat GPT-3 — an advanced artificial intelligence tool that is revolutionizing the way finance professionals work.
This is the second part of the series in which we’ll take a deep dive into the world of Chat GPT-3 and explore 50 different ways that finance professionals can use this game-changing technology to improve their productivity and achieve better results.
6) Deliver a presentation on how to Prevent Fraud as a Finance Controller
Prompt: I am a finance controller and i need to deliver a presentation on how to leverage data analytics for fraud prevention in my company. I work for a multinational manufacturer of toys. Can you help me with some guidance?

As you prepare your presentation, Chat GPT3 also advices to be sure to tailor your message to the specific needs and priorities of your audience.
For example, if you’re speaking to executives, you may want to focus on the potential cost savings and risk reduction that data analytics can provide. If you’re speaking to front-line staff, you may want to emphasize the role that each individual can play in detecting and preventing fraud.
By framing your message in a way that resonates with your audience, you’ll be more likely to get buy-in for your data analytics program and drive meaningful change in your organization.
7) Forecast Sales as a Commercial Finance Analyst
Prompt: I am a commercial finance analyst and I need to create a model in Python that forecast our sales, can you give me some code to start

This is the code in case you want to copy-paste it and start using it!
# Import necessary libraries
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from sklearn.linear_model import LinearRegression
# Load sales data into a pandas dataframe
sales_data = pd.read_csv("sales_data.csv")
# Create a new column to represent the month and year of each data point
sales_data['Date'] = pd.to_datetime(sales_data['Date'])
sales_data['Month_Year'] = sales_data['Date'].dt.to_period('M')
# Group the data by month and calculate the total sales for each month
monthly_sales = sales_data.groupby(['Month_Year'])['Sales'].sum().reset_index()
# Split the data into training and testing sets
train_data = monthly_sales[monthly_sales['Month_Year'] < '2022-01']
test_data = monthly_sales[monthly_sales['Month_Year'] >= '2022-01']
# Fit a linear regression model to the training data
model = LinearRegression()
X_train = pd.DataFrame({'Month': range(len(train_data))})
y_train = train_data['Sales']
model.fit(X_train, y_train)
# Predict sales for the testing period
X_test = pd.DataFrame({'Month': range(len(train_data), len(monthly_sales))})
sales_predictions = model.predict(X_test)
# Plot the actual and predicted sales data
plt.plot(monthly_sales['Month_Year'], monthly_sales['Sales'], label='Actual Sales')
plt.plot(test_data['Month_Year'], sales_predictions, label='Predicted Sales')
plt.legend()
plt.show()In this example, we first import the necessary libraries and load the sales data into a pandas dataframe. We then create a new column to represent the month and year of each data point, group the data by month and calculate the total sales for each month.
Next, we split the data into training and testing sets, with the training data consisting of all months prior to January 2022 and the testing data consisting of all months from January 2022 onwards. We then fit a linear regression model to the training data and use it to predict sales for the testing period.
Finally, we plot the actual and predicted sales data to visually compare the two. Of course, this is just a basic example and there are many ways to refine and improve upon this model. Depending on the specific requirements of your sales forecast, you may need to experiment with different models, data sources, and feature engineering techniques.
8) Learn how to be a better Finance Business Partner
Prompt: How to be a good finance business partner?

9) Elaborate more on an idea: For example, About learning how to be a better Finance Business Partner by developing a Commercial Mindset
Prompt: Can you elaborate more on point 3. Show me some examples

I found it very useful that Chat GPT is smart enough that it can recognize that you have asked previous questions and add more detail to the answers. Unlike Google, all the questions that you ask will be totally linked.
10) Analyze Stocks and predict its future performance
Prompt: How to analyse tech stocks and predict its future performance

In terms of predicting future performance, it’s important to note that there are no guarantees when it comes to stock market investing. However, by carefully analyzing the above factors, you can gain a deeper understanding of the industry and individual companies, and make more informed investment decisions.
Additionally, you can use other prompts and use tools like technical analysis and trend analysis to identify potential patterns or signals in a stock’s performance. Ultimately, successful investing in tech stocks requires a combination of research, analysis, and a willingness to adapt to changing market conditions.
This is the end of part 2.
If you want to read part three and continue to learn how to leverage Chat GPT-3, come back tomorrow at this time and part 3 of the article will be published in my profile.
Click here to read every story from Christian Martinez Founder of The Financial Fox (and thousands of other writers on Medium).

