What is ChatGPT?#
You must have heard of ChatGPT, which has recently become popular. You can input a piece of text and let it do the work for you.
For example, you can ask it to write a timing strategy for you using Python, and you just need to input the text, and it will write the remaining code for you.
This is the code it wrote for me:
import pandas as pd
import numpy as np
def moving_average_strategy(data, short_window, long_window):
# Calculate the short-term moving average
short_rolling_mean = data['Close'].rolling(window=short_window).mean()
# Calculate the long-term moving average
long_rolling_mean = data['Close'].rolling(window=long_window).mean()
# Create a new DataFrame to store the buy/sell decisions for each day
signals = pd.DataFrame(index=data.index)
signals['Signal'] = 0.0
# Buy stocks when the short-term moving average is greater than the long-term moving average
signals['Signal'][short_window:] = np.where(short_rolling_mean[short_window:] > long_rolling_mean[short_window:], 1.0, 0.0)
# Sell stocks when the short-term moving average is less than the long-term moving average
signals['Signal'][short_window:] = np.where(short_rolling_mean[short_window:] < long_rolling_mean[short_window:], -1.0, signals['Signal'])
# Set the current signal to 0.0 if the previous day's signal is the same as the current signal
signals['Signal'] = signals['Signal'].diff()
signals.loc[signals['Signal'] == -1.0, 'Signal'] = 0.0
return signals
What is ChatGPT Plus?#
ChatGPT Plus is an upgraded version of ChatGPT. If you haven't upgraded, using it will be slow and laggy. After upgrading, you can experience the latest models and the response speed will be faster. It costs 20u per month, which is worth it for the efficiency improvement.
Prerequisites#
- Global United States 🪜
- Total cost of 35U. Future monthly cost of 22u (2u for card fee, 20u for ChatGPT Plus fee)
- Generate a US address (you can use Google Maps to find one)
1. Apply and register for depay#
What is depay? You can think of it as a virtual Mastercard.
Advantages: Low threshold, no regional restrictions, anonymous.
Disadvantages: If you use depay to bind with WeChat Pay or Alipay for daily consumption without going through KYC, the transaction fees will be higher. There is also a $2 monthly card fee.
If this article is helpful to you, you can use my referral link to apply, which will help me earn some rewards.
Click to register: https://depay.depay.one/
Transfer tokens from blockchain to depay#
Considering that it costs 10u to open a card and there is a 2% transaction fee, and the cost of chatgpt is 20u per month, I transferred 35U.
Recharge U#
As shown in the figure below, click on USDT to recharge TRC20 U.
Open a card#
- Click on this card on the homepage
- Choose to pay 10u to open a card
Convert UT to U#
After successfully opening the card, convert USDT to USD. You can use the one-click conversion inside, but there will be some transaction fees.
After the successful conversion, recharge it to the virtual card.
Log in and set up OPENAI#
Starting from this step, close all your browser tabs and make sure your global United States 🪜 is enabled.
Visit: ip.sb or ipip.net to confirm that your IP address is in the United States.
Then open your browser and go to OpenAI to log in.
Set up a credit card#
When setting up a credit card, please make sure that your global United States 🪜 is enabled.
You can search for an address on Google Maps.
- If you are subscribing to ChatGPT Plus, please use addresses from Oregon, Alaska, Delaware, Montana, and New Hampshire to avoid taxes.
Because as a regular user, you don't have the option to upgrade to plus. You need to bind a credit card in the account settings first. After successfully binding, the option to upgrade to plus will pop up.
Subscribe to ChatGPT Plus#
After successfully binding the credit card, open chat.openai.com/chat and you will see the option to upgrade. Pay $20 per month and you can subscribe to ChatGPT Plus for a smooth experience.