์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array ๊ฐ์ฒด
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
- Today
- In Total
A Joyful AI Research Journey๐ณ๐
[6] 241106 Team Project Role: Stock Headline Sentiment Analysis [Goorm All-In-One Pass! AI Project Master 4๊ธฐ 6์ผ] ๋ณธ๋ฌธ
[6] 241106 Team Project Role: Stock Headline Sentiment Analysis [Goorm All-In-One Pass! AI Project Master 4๊ธฐ 6์ผ]
yjyuwisely 2024. 11. 6. 15:12๊ฐ์ฑ ๋ถ์ ์ด์
Neutral ์ ํด๋ด ํด๋ณด์! ๊ถ๊ธํ๋ค
์ค๋ฆฝ ๊ฐ์ฑ ๋ถ์์ ํน์ ํ ์คํธ๊ฐ ๊ธ์ ์ ์ด๊ฑฐ๋ ๋ถ์ ์ ์ธ ๊ฐ์ฑ์ ๊ฐ์ง ์๊ณ ์ค๋ฆฝ์ ์ธ ์ํ์์ ํ๊ฐํ๋ ๊ณผ์ ์ ๋๋ค. ๊ฐ์ฑ ๋ถ์์ ์ผ๋ฐ์ ์ผ๋ก ๊ธ์ , ์ค๋ฆฝ, ๋ถ์ ์ ์ธ ๊ฐ์ง ๋ฒ์ฃผ๋ก ๋๋ ์ ์์ผ๋ฉฐ, ์ค๋ฆฝ ๊ฐ์ฑ์ ์ฃผ๋ก ๊ฐ์ ์ด ๋ช ํํ๊ฒ ๋๋ฌ๋์ง ์๋ ๊ฒฝ์ฐ์ ํด๋นํฉ๋๋ค.
๊ณต๋ชจ์ฃผ ์์ฅ ์์ ๋ฑ
๊ฐ์ฑ ๋ถ์ -> ์์ง์! ๊ตฌํ (๋๋ฌด, ํ ์๋ฒ์ง)
ARIMA
https://github.com/yjyuwisely/AI_project_mastery_bootcamp/blob/main/241107_stock_sentiment.ipynb
์ฝ๋)
import requests
from bs4 import BeautifulSoup
from transformers import pipeline
import ipywidgets as widgets
def get_stock_buy_recommendation(stock_name):
"""
Fetch the top 10 news headlines related to the given stock, perform sentiment analysis using BERT, and provide a buy recommendation.
์ฃผ์ด์ง ์ฃผ์๊ณผ ๊ด๋ จ๋ ์์ 10๊ฐ์ ๋ด์ค ํค๋๋ผ์ธ์ ๊ฐ์ ธ์ค๊ณ , BERT๋ฅผ ์ฌ์ฉํ์ฌ ๊ฐ์ ๋ถ์์ ์ํํ ๋ค ๋งค์ ์ถ์ฒ์ ์ ๊ณตํฉ๋๋ค.
Parameters:
stock_name (str): The name of the stock to search for
์ฃผ์ ์ด๋ฆ (str): ๊ฒ์ํ ์ฃผ์์ ์ด๋ฆ
Returns:
tuple: (list of (headline, sentiment_emoji), buy_recommendation_str)
ํํ: (ํค๋๋ผ์ธ๊ณผ ๊ฐ์ ์ด๋ชจํฐ์ฝ์ ๋ฆฌ์คํธ, ๋งค์ ์ถ์ฒ ๋ฌธ์์ด)
"""
# Fetch news headlines from Naver search
# ๋ค์ด๋ฒ ๊ฒ์์์ ๋ด์ค ํค๋๋ผ์ธ ๊ฐ์ ธ์ค๊ธฐ
url = f'https://search.naver.com/search.naver?ie=utf8&sm=nws_hty&query={stock_name}'
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
# Extract the top 10 news headline text
# ์์ 10๊ฐ์ ๋ด์ค ํค๋๋ผ์ธ ํ
์คํธ ์ถ์ถ
headlines = [headline.get_text() for headline in soup.find_all('a', class_='news_tit')[:10]]
# Load the pre-trained BERT sentiment analysis model
# ์ฌ์ ํ์ต๋ BERT ๊ฐ์ ๋ถ์ ๋ชจ๋ธ ๋ก๋
sentiment_analyzer = pipeline('sentiment-analysis')
# Perform sentiment analysis on each headline using BERT
# ๊ฐ ํค๋๋ผ์ธ์ ๋ํด BERT๋ฅผ ์ฌ์ฉํ์ฌ ๊ฐ์ ๋ถ์ ์ํ
results = []
positive_count = 0
negative_count = 0
for headline in headlines:
sentiment = sentiment_analyzer(headline)[0]['label']
# Represent sentiment using emoji expressions
# ๊ฐ์ ์ ์ด๋ชจํฐ์ฝ์ผ๋ก ํํ
if sentiment == 'POSITIVE':
sentiment_emoji = '๐'
positive_count += 1
elif sentiment == 'NEGATIVE':
sentiment_emoji = '๐ฐ'
negative_count += 1
else:
sentiment_emoji = '๐'
results.append((headline, sentiment_emoji))
# Determine the buy recommendation based on sentiment
# ๊ฐ์ ๋ถ์ ๊ฒฐ๊ณผ์ ๋ฐ๋ผ ๋งค์ ์ถ์ฒ ๊ฒฐ์
if positive_count > negative_count:
buy_recommendation = f'{stock_name}์(๋ฅผ) ๋งค์ํ์ธ์ ๐'
elif positive_count < negative_count:
buy_recommendation = f'{stock_name}์(๋ฅผ) ๋งค์ํ์ง ๋ง์ธ์ ๐ฐ'
else:
buy_recommendation = f'{stock_name}์ ๋ํด ์ค๋ฆฝ์ ์ธ ์
์ฅ์
๋๋ค ๐'
return results, buy_recommendation
# Create a text input widget for the user to enter a stock name
# ์ฌ์ฉ์๊ฐ ์ฃผ์ ์ด๋ฆ์ ์
๋ ฅํ ์ ์๋ ํ
์คํธ ์
๋ ฅ ์์ ฏ ์์ฑ
stock_input = widgets.Text(
value='',
placeholder='์ข
๋ชฉ๋ช
์ ์
๋ ฅํ์ธ์.',
description='์ข
๋ชฉ๋ช
:',
disabled=False
)
# Create a button to trigger the sentiment analysis and recommendation
# ๊ฐ์ ๋ถ์๊ณผ ์ถ์ฒ์ ์คํํ ๋ฒํผ ์์ฑ
analyze_button = widgets.Button(description="ํฌ์์๊ฒฌ")
# Create an output widget to display the results
# ๊ฒฐ๊ณผ๋ฅผ ํ์ํ ์ถ๋ ฅ ์์ ฏ ์์ฑ
output = widgets.Output()
27.
# Define a function to handle the button click
# ๋ฒํผ ํด๋ฆญ์ ์ฒ๋ฆฌํ๋ ํจ์ ์ ์
def get_recommendation(button):
with output:
output.clear_output() # Clear previous output before displaying new results / ์ด์ ๊ฒฐ๊ณผ๋ฅผ ์ง์ฐ๊ณ ์ ๊ฒฐ๊ณผ ํ์
stock_name = stock_input.value
headline_results, buy_recommendation = get_stock_buy_recommendation(stock_name)
# Display the news headlines and sentiment
# ๋ด์ค ํค๋๋ผ์ธ๊ณผ ๊ฐ์ ๋ถ์ ๊ฒฐ๊ณผ ํ์
print(f'{stock_name}์ ๋ํ ์์ 10๊ฐ์ ๋ด์ค ํค๋๋ผ์ธ:')
for headline, emoji in headline_results:
print(f'{emoji} {headline}')
# Display the buy recommendation
# ๋งค์ ์ถ์ฒ ํ์
print()
print(buy_recommendation)
# Add the widgets to the Colab notebook
# Colab ๋
ธํธ๋ถ์ ์์ ฏ ์ถ๊ฐ
display(stock_input, analyze_button, output)
# Connect the button click to the get_recommendation function
# ๋ฒํผ ํด๋ฆญ์ get_recommendation ํจ์์ ์ฐ๊ฒฐ
analyze_button.on_click(get_recommendation)
๊ฒฐ๊ณผ)
๋ด์ค ๊ฐ์ ๋ถ์ ๋ฐ ์ด๋ฒคํธ ์ํฅ ํ์
- ๋ด์ค ํค๋๋ผ์ธ ๊ฐ์ ๋ถ์: ์ต๊ทผ ์ฃผ์๊ณผ ๊ด๋ จ๋ ๋ด์ค ๊ธฐ์ฌ๋ ์์ ๋ฏธ๋์ด ๋ฐ์ดํฐ๋ฅผ ์์งํ์ฌ, ๊ฐ์ ๋ถ์์ ํตํด ๊ธ์ ์ , ๋ถ์ ์ , ์ค๋ฆฝ์ ์ธ ์๊ฒฌ์ ๋ถ๋ฅํ ์ ์์ด์. ์ด๋ฅผ ํตํด ์ฌ์ฉ์์๊ฒ ์ต๊ทผ ๋ด์ค๊ฐ ์ฃผ์์ ์ด๋ค ์ํฅ์ ๋ฏธ์น๋์ง ๋ณด์ฌ์ค ์ ์์ต๋๋ค.
- ๋จ๊ธฐ ์์ธก ๋ชจ๋ธ ์ถ๊ฐ: ์ฃผ๊ฐ์ ๋จ๊ธฐ ์์ธก์ ์ํด ARIMA, LSTM, Prophet ๋ฑ์ ํ์ ์๋ฆฌ์ฆ ์์ธก ๋ชจ๋ธ์ ์ถ๊ฐํ์ฌ ์ฌ์ฉ์์๊ฒ ๋ฉฐ์น ๋ค ์ฃผ๊ฐ์ ๋ณ๋ ๊ฐ๋ฅ์ฑ์ ์ ๊ณตํ ์ ์์ต๋๋ค.
์์ ๋ฏธ๋์ด ํธ๋ ๋ ๋ถ์
- ํธ์ํฐ, Reddit, ๊ธฐํ SNS ๋ถ์: ํน์ ์ฃผ์์ ๋ํ ์์ ๋ฏธ๋์ด์ ๋ฐ์์ ์์งํ๊ณ ์ด๋ฅผ ๋ฐํ์ผ๋ก ํธ๋ ๋๋ฅผ ์๊ฐํํ์ฌ ์ฌ์ฉ์์๊ฒ ํธ๋ ์ด๋ฉ ์์ด๋์ด๋ฅผ ์ ๊ณตํ ์ ์์ต๋๋ค.
https://github.com/hello22433/AI_JooAU_firstproject
241106 Wed 6th class
http://data.krx.co.kr/contents/MDC/MAIN/main/index.cmd
์๋ํด๋ผ์ฐ๋ + ์ฃผ์ ๋งค์/๋งค๋์ ๋ํ ํ๊ฐ
์๋์ ๊ด๋ จ๋ ๋ด์ค๊ธฐ์ฌ์ ๋๊ธ ๊ฐ์ ๊ฒ ์์๊ฑด๋ฐ ๊ทธ ๋๊ธ์ ์ฌ๋์ ํ์ ์ผ๋ก ์๊ฐํ์ํค๋ ๊ฑด ์ด๋จ๊น์ ?
ํค์๋์ ๋ํ ์ฌ๋๋ค์ ๊ฐ์ ์ ํ๊ฐํ๋ ์๋ฃ๋ก ์ธ ์ ์์ง ์์๊น ์ถ์ต๋๋ค ์ง๊ด์ ์ผ๋ก
๊ทธ ๊ด๋ จ ๊ธฐ์ฌ ๋๋ ์ฌ๋๋ค ๋๊ธ์ ์น ์คํฌ๋กค๋งํด์ ์ฌ๋๋ค์ ๊ฐ์ฑ์ ์ด๋ชจํฐ์ฝ(๊ธ์ / ๋ถ์ )์ผ๋ก ํํํ๋ค
๊ทธ ๊ฐ์ ์ ๋ํ ํ๋จ๋ ๋ฐ์ดํฐ๋ถ์์ ์ด์ฉํ ์ ์์ ๊ฒ ๊ฐ์์์ ์ปดํจํฐ๊ฐ ๊ฐ์ ์ ์ธ์ํ๋ ์ผ์๊ฐ ์์ผ๋ ์ธ๊ณต์ง๋ฅ ์ฝ๋๋ฅผ ํ์ฉํ ์ ์์ ๊ฒ ๊ฐ์ต๋๋ค
- ๋ด์ค ํค๋๋ผ์ธ ๊ฐ์ ๋ถ์: ์ต๊ทผ ์ฃผ์๊ณผ ๊ด๋ จ๋ ๋ด์ค ๊ธฐ์ฌ๋ ์์ ๋ฏธ๋์ด ๋ฐ์ดํฐ๋ฅผ ์์งํ์ฌ, ๊ฐ์ ๋ถ์์ ํตํด ๊ธ์ ์ , ๋ถ์ ์ , ์ค๋ฆฝ์ ์ธ ์๊ฒฌ์ ๋ถ๋ฅํ ์ ์์ด์. ์ด๋ฅผ ํตํด ์ฌ์ฉ์์๊ฒ ์ต๊ทผ ๋ด์ค๊ฐ ์ฃผ์์ ์ด๋ค ์ํฅ์ ๋ฏธ์น๋์ง ๋ณด์ฌ์ค ์ ์์ต๋๋ค.
- ๊ธฐ์ ์ ์งํ ๊ณ์ฐ ๋ฐ ์๊ฐํ
- ์ด๋ ํ๊ท ์ (Moving Averages): ๋จ๊ธฐ ๋ฐ ์ฅ๊ธฐ ์ด๋ ํ๊ท ์ ์ ์ฐจํธ์ ํจ๊ป ํ์ํ์ฌ ๊ณจ๋ ํฌ๋ก์ค๋ ๋ฐ๋ ํฌ๋ก์ค๋ฅผ ํ์ธํ ์ ์๊ฒ ํ ์ ์์ต๋๋ค. ์ด๋ ์ฌ์ฉ์๊ฐ ํธ๋ ๋๋ฅผ ์ฝ๊ฒ ํ์ ํ๋ ๋ฐ ๋์์ ์ค๋๋ค.
- RSI (Relative Strength Index): RSI๋ ํน์ ์ฃผ์์ด ๊ณผ๋งค๋ ๋์๋์ง ๊ณผ๋งค์ ๋์๋์ง๋ฅผ ํ์ ํ๋ ๋ฐ ์ ์ฉํฉ๋๋ค. RSI ๊ทธ๋ํ๋ฅผ ์ถ๊ฐํ์ฌ ์ฌ์ฉ์์๊ฒ ๋งค์/๋งค๋ ํ์ด๋ฐ์ ๋ํ ์ถ๊ฐ์ ์ธ ์ ๋ณด๋ฅผ ์ ๊ณตํ ์ ์์ต๋๋ค.
- MACD (Moving Average Convergence Divergence): MACD๋ฅผ ์ถ๊ฐํ์ฌ ์ฌ์ฉ์๊ฐ ๋ชจ๋ฉํ ์ ๋ณํ๋ฅผ ์ฝ๊ฒ ํ์ ํ ์ ์๊ฒ ํ ์ ์์ต๋๋ค.
- ์์ ๋ฏธ๋์ด ํธ๋ ๋ ๋ถ์: ํธ์ํฐ, Reddit, ๊ธฐํ SNS ๋ถ์: ํน์ ์ฃผ์์ ๋ํ ์์ ๋ฏธ๋์ด์ ๋ฐ์์ ์์งํ๊ณ ์ด๋ฅผ ๋ฐํ์ผ๋ก ํธ๋ ๋๋ฅผ ์๊ฐํํ์ฌ ์ฌ์ฉ์์๊ฒ ํธ๋ ์ด๋ฉ ์์ด๋์ด๋ฅผ ์ ๊ณตํ ์ ์์ต๋๋ค.
ํ์ฌ ํ๋ก์ ํธ์ ์ถ๊ฐํ ์ ์๋ ํฅ๋ฏธ๋ก์ด ๊ธฐ๋ฅ๋ค์ด ๋ง์์. ์๋ํด๋ผ์ฐ๋์ ๋งค์/๋งค๋ ํ๊ฐ ์ธ์๋ ์ฌ์ฉ์์๊ฒ ๋ ํ๋ถํ ์ ๋ณด๋ฅผ ์ ๊ณตํ๊ณ ์ฃผ์ ํฌ์์ ๊ฒฐ์ ์ ๋์ธ ์ ์๋ ๋ช ๊ฐ์ง ์ถ๊ฐ ๊ธฐ๋ฅ์ ์ถ์ฒ๋๋ฆด๊ฒ์:
1. ๋ด์ค ๊ฐ์ ๋ถ์ ๋ฐ ์ด๋ฒคํธ ์ํฅ ํ์
- ๋ด์ค ํค๋๋ผ์ธ ๊ฐ์ ๋ถ์: ์ต๊ทผ ์ฃผ์๊ณผ ๊ด๋ จ๋ ๋ด์ค ๊ธฐ์ฌ๋ ์์ ๋ฏธ๋์ด ๋ฐ์ดํฐ๋ฅผ ์์งํ์ฌ, ๊ฐ์ ๋ถ์์ ํตํด ๊ธ์ ์ , ๋ถ์ ์ , ์ค๋ฆฝ์ ์ธ ์๊ฒฌ์ ๋ถ๋ฅํ ์ ์์ด์. ์ด๋ฅผ ํตํด ์ฌ์ฉ์์๊ฒ ์ต๊ทผ ๋ด์ค๊ฐ ์ฃผ์์ ์ด๋ค ์ํฅ์ ๋ฏธ์น๋์ง ๋ณด์ฌ์ค ์ ์์ต๋๋ค.
- ์ด๋ฒคํธ ๋งคํ: ํน์ ๋ ์ง์ ์ฃผ์ ์ด๋ฒคํธ(์: ์ค์ ๋ฐํ, ์ ์ฑ ๋ณ๊ฒฝ, ์ฃผ์ ํ์ฌ ๋ด์ค ๋ฑ)๊ฐ ์์๋์ง๋ฅผ ์ฐจํธ์ ํ์ํ๊ณ ํด๋น ์ด๋ฒคํธ๊ฐ ์ฃผ๊ฐ์ ๋ฏธ์น ์ํฅ์ ์๊ฐ์ ์ผ๋ก ๋ํ๋ผ ์ ์์ด์.
2. ๊ธฐ์ ์ ์งํ ๊ณ์ฐ ๋ฐ ์๊ฐํ
- ์ด๋ ํ๊ท ์ (Moving Averages): ๋จ๊ธฐ ๋ฐ ์ฅ๊ธฐ ์ด๋ ํ๊ท ์ ์ ์ฐจํธ์ ํจ๊ป ํ์ํ์ฌ ๊ณจ๋ ํฌ๋ก์ค๋ ๋ฐ๋ ํฌ๋ก์ค๋ฅผ ํ์ธํ ์ ์๊ฒ ํ ์ ์์ต๋๋ค. ์ด๋ ์ฌ์ฉ์๊ฐ ํธ๋ ๋๋ฅผ ์ฝ๊ฒ ํ์ ํ๋ ๋ฐ ๋์์ ์ค๋๋ค.
- RSI (Relative Strength Index): RSI๋ ํน์ ์ฃผ์์ด ๊ณผ๋งค๋ ๋์๋์ง ๊ณผ๋งค์ ๋์๋์ง๋ฅผ ํ์ ํ๋ ๋ฐ ์ ์ฉํฉ๋๋ค. RSI ๊ทธ๋ํ๋ฅผ ์ถ๊ฐํ์ฌ ์ฌ์ฉ์์๊ฒ ๋งค์/๋งค๋ ํ์ด๋ฐ์ ๋ํ ์ถ๊ฐ์ ์ธ ์ ๋ณด๋ฅผ ์ ๊ณตํ ์ ์์ต๋๋ค.
- MACD (Moving Average Convergence Divergence): MACD๋ฅผ ์ถ๊ฐํ์ฌ ์ฌ์ฉ์๊ฐ ๋ชจ๋ฉํ ์ ๋ณํ๋ฅผ ์ฝ๊ฒ ํ์ ํ ์ ์๊ฒ ํ ์ ์์ต๋๋ค.
3. ์ฃผ๊ฐ ์์ธก ๊ธฐ๋ฅ
- ๋จ๊ธฐ ์์ธก ๋ชจ๋ธ ์ถ๊ฐ: ์ฃผ๊ฐ์ ๋จ๊ธฐ ์์ธก์ ์ํด ARIMA, LSTM, Prophet ๋ฑ์ ํ์ ์๋ฆฌ์ฆ ์์ธก ๋ชจ๋ธ์ ์ถ๊ฐํ์ฌ ์ฌ์ฉ์์๊ฒ ๋ฉฐ์น ๋ค ์ฃผ๊ฐ์ ๋ณ๋ ๊ฐ๋ฅ์ฑ์ ์ ๊ณตํ ์ ์์ต๋๋ค.
- ์๋๋ฆฌ์ค ๊ธฐ๋ฐ ์์ธก: ์ฌ๋ฌ ๊ฐ์ง ์๋๋ฆฌ์ค (์: ๊ฒฝ์ ์ฑ์ฅ๋ฅ ๋ณํ, ๊ธ๋ฆฌ ์ธ์ ๋ฑ)์ ๊ฐ์ ์ธ๋ถ ์์ธ์ ๊ฐ์ ํ๊ณ ์ฃผ๊ฐ๊ฐ ์ด๋ป๊ฒ ๋ณํ ์ง ์์ธกํ๋ ์๋๋ฆฌ์ค ๋ถ์ ๊ธฐ๋ฅ์ ์ ๊ณตํ ์ ์์ต๋๋ค.
4. ํฌํธํด๋ฆฌ์ค ๊ด๋ฆฌ ๋ฐ ๋ฐฑํ ์คํ
- ๊ฐ์ ํฌํธํด๋ฆฌ์ค ๊ด๋ฆฌ: ์ฌ์ฉ์๊ฐ ๊ฐ์์ ์ฃผ์์ ๋งค์ํ๊ฑฐ๋ ๋งค๋ํด ํฌํธํด๋ฆฌ์ค๋ฅผ ๊ด๋ฆฌํ ์ ์๋๋ก ํด ๋ณด์ธ์. ์ด๋ฅผ ํตํด ์ฌ์ฉ์๋ ์์ ์ ์ ๋ต์ด ์ด๋ป๊ฒ ์๋ํ๋์ง ์๋ฎฌ๋ ์ด์ ํด๋ณผ ์ ์์ต๋๋ค.
- ๋ฐฑํ ์คํ ๊ธฐ๋ฅ: ํน์ ์ ๋ต์ ๋ฐ๋ผ ๊ฐ์์ผ๋ก ํฌ์ํ์ ๋ ๊ณผ๊ฑฐ ๋ฐ์ดํฐ์์ ์ด๋ค ์ฑ๊ณผ๋ฅผ ๋ณด์๋์ง๋ฅผ ํ๊ฐํ ์ ์๋๋ก ๋ฐฑํ ์คํ ๊ธฐ๋ฅ์ ์ถ๊ฐํด ๋ณด์ธ์. ์ด๋ฅผ ํตํด ์ฌ์ฉ์๋ ์ ๋ต์ ์ ํจ์ฑ์ ํ์ธํ ์ ์์ต๋๋ค.
5. ๋ฆฌ์คํฌ ํ๊ฐ ๋ฐ ๋ถ์ฐ ํฌ์ ์ถ์ฒ
- ๋ณ๋์ฑ ๋ถ์ (Volatility Analysis): ๊ฐ ์ฃผ์์ ๋ณ๋์ฑ์ ์๊ฐํํ์ฌ, ์ฌ์ฉ์๊ฐ ํฌ์ ๋ฆฌ์คํฌ๋ฅผ ์ดํดํ๋ ๋ฐ ๋์์ ์ค ์ ์์ต๋๋ค.
- ์คํ ์ง์ (Sharpe Ratio): ์ฃผ์์ ์์ต๋ฅ ๊ณผ ๋ณ๋์ฑ์ ๋ฐํ์ผ๋ก ์คํ ์ง์๋ฅผ ๊ณ์ฐํด ์ ๊ณตํจ์ผ๋ก์จ ๋ฆฌ์คํฌ ๋๋น ์์ต๋ฅ ์ ํ๊ฐํ๋ ๋ฐ ๋์์ ์ค ์ ์์ต๋๋ค.
- ๋ถ์ฐ ํฌ์ ์ถ์ฒ: ์ฃผ์ ์ธ์๋ ETF, ์ฑ๊ถ ๋ฑ ๋ถ์ฐ๋ ํฌ์ ํฌํธํด๋ฆฌ์ค๋ฅผ ์ถ์ฒํด ๋ฆฌ์คํฌ๋ฅผ ์ค์ด๋ ์ ๋ต์ ์ ์ํ ์ ์์ต๋๋ค.
6. ์ ์ ๊ฐ์ธํ ํผ๋๋ฐฑ ๋ฐ ํ์ต ๊ธฐ๋ฅ
- ๊ฐ์ธํ๋ ํฌ์ ์กฐ์ธ: ์ฌ์ฉ์์ ํฌ์ ์ฑํฅ์ ๋ถ์ํด ๊ฐ์ธํ๋ ํฌ์ ์กฐ์ธ์ ์ ๊ณตํด ๋ณด์ธ์. ์๋ฅผ ๋ค์ด, ์ฌ์ฉ์๊ฐ ์ฃผ์์ ๋ณ๋์ฑ์ ์ ํธํ์ง ์๋๋ค๋ฉด ์์ ์ ์ธ ์์ฐ ์ถ์ฒ์ ํ ์ ์์ต๋๋ค.
- ํ์ต ์๋ฃ ์ ๊ณต: ์ด๋ณด ํฌ์์๋ค์ด ๊ธฐ๋ณธ์ ์ธ ๊ธฐ์ ์ ๋ถ์์ด๋ ์ฌ๋ฌด ๋ถ์์ ์ดํดํ ์ ์๋๋ก ๊ด๋ จ ํ์ต ์๋ฃ๋ ๊ฐ๋จํ ํํ ๋ฆฌ์ผ์ ์ ๊ณตํ ์ ์์ต๋๋ค.
7. ์์ฅ ๋๋น ์ฑ๊ณผ ๋น๊ต
- ๋ฒค์น๋งํฌ ๋น๊ต: ์ฌ์ฉ์๊ฐ ์ ํํ ์ฃผ์์ ์ฑ๊ณผ๋ฅผ ์์ฅ ์ง์(์: KOSPI, S&P 500)์ ๋น๊ตํ์ฌ ํด๋น ์ฃผ์์ด ์์ฅ ๋๋น ์ผ๋ง๋ ์ข์ ์ฑ๊ณผ๋ฅผ ๋๋์ง ํ๋์ ๋ณผ ์ ์๋ ๊ธฐ๋ฅ์ ์ถ๊ฐํด ๋ณด์ธ์.
- ๋์ข ์ ๊ณ ๋น๊ต: ๋์ผ ์ ์ข ์ ๋ค๋ฅธ ์ฃผ์๊ณผ ๋น๊ตํ์ฌ ํด๋น ์ฃผ์์ ์๋์ ์์น๋ฅผ ํ๊ฐํ ์ ์๋๋ก ์๊ฐํ ์๋ฃ๋ฅผ ์ ๊ณตํ ์ ์์ต๋๋ค.
8. ์์ ๋ฏธ๋์ด ํธ๋ ๋ ๋ถ์
- ํธ์ํฐ, Reddit, ๊ธฐํ SNS ๋ถ์: ํน์ ์ฃผ์์ ๋ํ ์์ ๋ฏธ๋์ด์ ๋ฐ์์ ์์งํ๊ณ ์ด๋ฅผ ๋ฐํ์ผ๋ก ํธ๋ ๋๋ฅผ ์๊ฐํํ์ฌ ์ฌ์ฉ์์๊ฒ ํธ๋ ์ด๋ฉ ์์ด๋์ด๋ฅผ ์ ๊ณตํ ์ ์์ต๋๋ค.
๊ฒฐ๋ก
์ด๋ฌํ ๊ธฐ๋ฅ๋ค์ ์ฃผ์์ ๋ํ ์ดํด๋๋ฅผ ๋์ด๊ณ , ์ฌ์ฉ์๊ฐ ๋ ๋์ ๊ฒฐ์ ์ ๋ด๋ฆฌ๋ ๋ฐ ํฐ ๋์์ ์ค ์ ์์ ๊ฒ์ ๋๋ค. ์ถ์ฒ๋๋ฆฐ ๊ธฐ๋ฅ ์ค ์ผ๋ถ๋ ์ฌ์ฉ์ ์ธํฐํ์ด์ค๋ฅผ ํ๋ถํ๊ฒ ํ๊ณ , ์ผ๋ถ๋ ์ค์ง์ ์ธ ํฌ์ ๊ฒฐ์ ์ ์ค์ํ ํต์ฐฐ์ ์ค ์ ์๊ธฐ ๋๋ฌธ์, ์ด๋ค ์ค์์ ์ฌ๋ฌ๋ถ์ ํ ๋ชฉํ์ ์ฌ์ฉ์ ๋์ฆ์ ๋ง๋ ๊ธฐ๋ฅ์ ์ ํํด ๋ณด์๋ฉด ์ข๊ฒ ์ต๋๋ค.
์ด๋ค ๊ธฐ๋ฅ์ด ์ ์ผ ํฅ๋ฏธ๋กญ๊ฒ ๋๊ปด์ง๋์? ๊ตฌ์ฒด์ ์ผ๋ก ๊ตฌํํด๋ณด๊ณ ์ถ์ ๋ถ๋ถ์ด ์๋ค๋ฉด ์ถ๊ฐ์ ์ธ ์ค๋ช ์ด๋ ์ฝ๋ ์ํ๋ ๋์๋๋ฆด ์ ์์ด์!
It sounds like a great idea to enhance your Streamlit-based stock information website by incorporating an AI-driven recommendation system! Adding a "Buy" or "Sell" recommendation can add real value to users, making your platform more than just informational—it becomes a decision-making assistant. Here’s how you can go about it:
- Define the Scope of AI Recommendations:
- Determine the features that your AI model will use to predict whether a stock is a buy, hold, or sell. Common features include historical stock prices, technical indicators (e.g., moving averages, RSI), volume, recent news sentiment, or other financial ratios.
- Collect Relevant Data:
- You might need historical data for the stocks you're covering, including daily closing prices, volume, financial indicators, etc.
- You can get financial data from APIs like Yahoo Finance (yfinance), Alpha Vantage, or Quandl.
- If you plan to include news sentiment, you could use news APIs or scrape news websites to get recent articles and then perform sentiment analysis.
- Train the AI Model:
- Algorithm: Start simple, with a machine learning model like a Random Forest Classifier or an SVM, which can be a good baseline for classification.
- Alternatively, you could use a deep learning model if you have enough data or you want to try time series models (e.g., LSTMs).
- Training Data: Collect data for many stocks, including historical price, volume, and other technical indicators, to train your model to recognize patterns indicative of buy or sell signals.
- You can also use technical analysis metrics like RSI (Relative Strength Index) or MACD (Moving Average Convergence Divergence) to enhance your prediction capabilities.
- Integrate AI into the Streamlit App:
- Use sklearn or other machine learning libraries to load your trained model.
- Create an input section where users can provide data about a specific stock (e.g., recent trends, price history) or even allow them to select a stock and pull this data automatically.
- Make predictions in real-time when a user selects a stock and display the recommendation using a "Buy", "Sell", or "Hold" indicator.
- Enhance User Experience:
- Use Streamlit’s visualization capabilities to add charts and indicators that explain the AI's recommendation.
- For instance, you could show the stock’s recent trends, highlight key technical indicators used, and display a probability score from the model to show how confident it is in the recommendation.
- Example Layout of the App:
- Header: Brief introduction to what your website does.
- Sidebar: Selection of the stock, date range, and other relevant filters.
- Main Section:
- Stock Information: Show general information about the selected stock, including historical performance and ์๊ฐํ using tools like matplotlib or plotly.
- AI Recommendation: Show the recommendation (Buy, Sell, Hold) along with a confidence score.
- Graphs: Plot the stock's recent trend, along with technical indicators that the model is using to make predictions.
Tools and Technologies
- Data Collection: yfinance, Alpha Vantage API, Quandl.
- Machine Learning Model: Python (scikit-learn, TensorFlow, or PyTorch).
- Front-end: Streamlit for website building and visualization (matplotlib, plotly for charts).
- Deployment: Deploy the Streamlit app using services like Heroku or Streamlit Cloud.
import streamlit as st
import yfinance as yf
from sklearn.externals import joblib
# Load pre-trained model
model = joblib.load('stock_model.pkl')
st.title('Stock Information and AI Recommendation')
stock_symbol = st.text_input('Enter Stock Symbol', 'AAPL')
if st.button('Get Stock Info and Recommendation'):
stock_data = yf.Ticker(stock_symbol).history(period='1y')
st.line_chart(stock_data['Close'])
# Get some features for prediction (example)
features = [stock_data['Close'].iloc[-1], stock_data['Volume'].iloc[-1]]
recommendation = model.predict([features])[0]
if recommendation == 1:
st.write("**Recommendation: Buy**")
elif recommendation == -1:
st.write("**Recommendation: Sell**")
else:
st.write("**Recommendation: Hold**")
'๐ณAI Project Mastery Bootcamp 2024โจ > Project' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[8] 241108 Team Project Results: Stock Headline Sentiment Analysis [Goorm All-In-One Pass! AI Project Master 4๊ธฐ 8์ผ] (1) | 2024.11.08 |
---|