Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -110,7 +110,7 @@ def run_historical_sentiment(ticker):
|
|
| 110 |
# Explanation of this page
|
| 111 |
#st.write("**Historical Sentiment**")
|
| 112 |
st.write(
|
| 113 |
-
"
|
| 114 |
"It retrieves past data on sentiment, posts, comments, likes, and impressions "
|
| 115 |
"from two social platforms. This can help spot long-term shifts or trends."
|
| 116 |
)
|
|
@@ -261,7 +261,7 @@ def run_trending_sentiment(top_n):
|
|
| 261 |
# Explanation of this page
|
| 262 |
#st.write("**Trending Sentiment**")
|
| 263 |
st.write(
|
| 264 |
-
"
|
| 265 |
"This helps pinpoint active tickers with strong positive or negative views."
|
| 266 |
)
|
| 267 |
|
|
@@ -364,7 +364,7 @@ def run_change_sentiment(top_n):
|
|
| 364 |
# Explanation of this page
|
| 365 |
st.write("**Sentiment Change**")
|
| 366 |
st.write(
|
| 367 |
-
"
|
| 368 |
"Compare the current sentiment to how much it has shifted. This can reveal rapid changes."
|
| 369 |
)
|
| 370 |
|
|
@@ -389,7 +389,7 @@ def main():
|
|
| 389 |
|
| 390 |
# Overall introduction to the app
|
| 391 |
st.write(
|
| 392 |
-
"
|
| 393 |
"**Historical Sentiment** shows how sentiment evolved over time for a specific stock. "
|
| 394 |
"**Trending Sentiment** highlights the most talked-about stocks right now. "
|
| 395 |
"**Sentiment Change** shows which stocks have had the biggest sentiment shifts recently. "
|
|
|
|
| 110 |
# Explanation of this page
|
| 111 |
#st.write("**Historical Sentiment**")
|
| 112 |
st.write(
|
| 113 |
+
"See how sentiment changes over time for a specific ticker. "
|
| 114 |
"It retrieves past data on sentiment, posts, comments, likes, and impressions "
|
| 115 |
"from two social platforms. This can help spot long-term shifts or trends."
|
| 116 |
)
|
|
|
|
| 261 |
# Explanation of this page
|
| 262 |
#st.write("**Trending Sentiment**")
|
| 263 |
st.write(
|
| 264 |
+
"See which symbols rank highest in bullish or bearish sentiment right now. "
|
| 265 |
"This helps pinpoint active tickers with strong positive or negative views."
|
| 266 |
)
|
| 267 |
|
|
|
|
| 364 |
# Explanation of this page
|
| 365 |
st.write("**Sentiment Change**")
|
| 366 |
st.write(
|
| 367 |
+
"See if sentiment is trending up or down for each ticker. "
|
| 368 |
"Compare the current sentiment to how much it has shifted. This can reveal rapid changes."
|
| 369 |
)
|
| 370 |
|
|
|
|
| 389 |
|
| 390 |
# Overall introduction to the app
|
| 391 |
st.write(
|
| 392 |
+
"Track social sentiment in three ways: "
|
| 393 |
"**Historical Sentiment** shows how sentiment evolved over time for a specific stock. "
|
| 394 |
"**Trending Sentiment** highlights the most talked-about stocks right now. "
|
| 395 |
"**Sentiment Change** shows which stocks have had the biggest sentiment shifts recently. "
|