Create Account
Log In
Dark
chart
exchange
Premium
Terminal
Screener
Stocks
Crypto
Forex
Trends
Depth
Close
Check out our Level2View

AAPL
Apple Inc.
stock NASDAQ

At Close
May 16, 2025 3:59:30 PM EDT
211.19USD-0.123%(-0.26)54,737,850
0.00Bid   0.00Ask   0.00Spread
Pre-market
May 16, 2025 9:28:30 AM EDT
212.37USD+0.435%(+0.92)1,277,721
After-hours
May 16, 2025 4:58:30 PM EDT
210.12USD-0.507%(-1.07)2,075,659
OverviewOption ChainMax PainOptionsPrice & VolumeSplitsDividendsHistoricalExchange VolumeDark Pool LevelsDark Pool PrintsExchangesShort VolumeShort Interest - DailyShort InterestBorrow Fee (CTB)Failure to Deliver (FTD)ShortsTrendsNewsTrends
AAPL Reddit Mentions
Subreddits
Limit Labels     

We have sentiment values and mention counts going back to 2017. The complete data set is available via the API.
Take me to the API
AAPL Specific Mentions
As of May 17, 2025 5:48:23 AM EDT (<1 min. ago)
Includes all comments and posts. Mentions per user per ticker capped at one per hour.
1 hr ago • u/False_Comedian_6070 • r/investing • if_you_could_only_invest_in_5_companies_for_the • C
Thanks for the comment. I’m thinking of which one to choose between AAPL, MSFT, and GOOG. I’m leaning MSFT even though I feel the other two are solid choices and will likely do better in the near future. Im more of a buy and hold investor, though, and trying to get away from the behavior of wanting to own a little of everything. The sectors I am most bullish on are tech and retail, so I’ll probably stick with those. COST and AMZN for retail. MSFT and NVDA for tech. BRK-B for stability. Though I will likely also keep Palantir and Boston Scientific for at least five years. I got a bunch of Palantir in the dip.
sentiment 0.89
8 hr ago • u/Heyhayheigh • r/investing • does_anyone_here_use_their_bank_for_investing • C
Just a cleaner more updated UI and functionality.
In Robinhood, even Cashapp, you can set it to be like: buy $100 every Friday of VOO or AAPL, take the money from my checking account. Boom. Done. Runs until you turn it off. If the money is not enough to buy a whole share, it will just buy a fraction of a share. Super powerful, how most should be investing anyway.
You can’t do that in Chase or Merrill.
sentiment 0.93
8 hr ago • u/TheMadMurdoc • r/Daytrading • anyone_here_successfully_built_a_trading_bot • C
Made a bot that took a little bit. But basically this is what it does
I asked gpt to look over my code and explain to me like im slow what the entire bot does basically.
Its trainings been going very well so far! Will have to see in a couple weeks really.
What Does SHODAN Actually Do?
1. Data Collection (Scanners & Backtesters)
Collects Recent Market Data:
Pulls daily and minute-by-minute price/volume/action data for your target stocks (e.g., NVDA, AMD, AAPL, MSFT, TSLA).
Stores this as CSV files for later training and research.
Backtesting:
Analyzes historical trades and strategies using your backtest log files to see what worked and what failed.
Overnight Data:
After the market closes, SHODAN pulls the newest data (daily candles, news, earnings, etc.) for use in “overnight research mode.”
---
2. Model Training (Machine Learning & AI Brains)
Reads all collected data (from scanner_data and backtest_results folders).
Cleans and fills missing values: Makes sure each data sample has everything the models expect (price, volume, technical indicators, etc.).
Trains Multiple AI Models on the Data:
LSTM Models (Long Short-Term Memory):
What they do: Learn to spot trends, patterns, and momentum in time-series data. Used for short-term and longer-term price prediction.
How SHODAN uses them: Three versions—one for 20-bar (short), 50-bar (medium), and 100-bar (long) “lookback windows.”
GRU Models (Gated Recurrent Unit):
What they do: Similar to LSTM, but simpler and faster, used for sequence prediction.
How SHODAN uses them: Trained on the biggest window (usually 100 bars) to predict future prices.
CNN Models (Convolutional Neural Networks):
What they do: Pick up “shapes” or patterns in sequences, just like how image AI sees features in a picture.
How SHODAN uses them: Looks for technical chart patterns and price movement signatures.
Bi-CLSTM Models (Bidirectional LSTM):
What they do: Look at data “forward and backward” in time for richer pattern detection.
How SHODAN uses them: Used for advanced trend/pattern recognition on longer sequences.
XGBoost Models:
What they do: A powerful non-neural machine learning method—great for ranking, regression, and “tabular” prediction.
How SHODAN uses them: Adds another voice to the prediction “committee,” especially good at using lots of mixed features.
Each model type gets its own saved file (e.g., lstm_20.h5, gru_100.h5, cnn_50.h5, etc.).
Models are re-trained on command (at startup, if you say “y” to retraining prompt).
---
3. Ensemble Prediction (“Brain Committee Voting”)
When making a trade prediction, SHODAN runs the latest data through all trained models.
Each model gives its “opinion” (prediction) about future price.
SHODAN averages the predictions to get a final answer—this is called an “ensemble” method and is more robust than trusting just one brain.
---
4. Live Trading Engine
During market hours, SHODAN continuously:
Grabs the latest price data for each stock.
Runs predictions and pattern scans using all models.
Looks for technical signals (moving averages, crossovers, RSI, volume spikes, etc.).
Checks news and sentiment (every 30 minutes, not every second, to avoid API limits).
Calculates “confidence” for each possible trade.
Risk Controls:
Never trades if there’s a big earnings report due, if you’re over your max open trades, or if you already hold that stock.
Uses dynamic position sizing (based on cash, risk, and volatility).
Places bracket orders (automatic stop-loss and take-profit) for every trade.
All trade decisions, results, and confidence values are logged for later review.
---
5. Pattern Detection & Strategy Memory
Scans for common market patterns: (bullish, bearish, neutral, crossovers, etc.).
Remembers which patterns worked best.
Overnight, analyzes all logged patterns to optimize future strategies.
---
6. Overnight Research Mode (“AI Night Desk”)
After market closes, SHODAN:
Reads and syncs any new PDFs or research documents for knowledge updates.
Pulls the latest market/news/fundamental data for all your symbols using your FMP (Financial Modeling Prep) premium API.
Runs the overnight_strategy_investigator:
Pulls news, sentiment, analyst ratings, insider trades, earnings, dividends, SEC filings, ETF holdings, sector performance, macro events, and price history for each symbol.
Auto-generates and backtests simple strategies (like moving average crossovers, insider cluster buys, etc.) using this new data.
Ranks and logs the most promising strategies for you to review the next day.
Results are saved to shodan_strategy_investigator_YYYY-MM-DD.json for you to review or auto-integrate.
---
7. RL (Reinforcement Learning) Training
Keeps a simulated “game” of trading running in the background.
AI tries out different trading behaviors, learning to maximize rewards or minimize drawdowns, then saves its progress.
This is continuous and helps SHODAN adapt over time.
---
8. Dashboard and Monitoring
Dash web dashboard: Live status, RL status, hot-patch status, market sentiment, system resource usage, and more.
Writes system diagnostics (CPU, memory, threads) to file for health checks.
Can be expanded to display live trading stats, overnight research results, etc.
---
9. Hot Patch & Status Update Loops
Periodically checks for updates, system health, and other diagnostics.
Keeps everything running smoothly and ready to reload/fix on the fly.
---
10. Modular, Self-Healing Architecture
Every error, exception, or missing data is safely logged and handled—
Never crashes from a single failed API call or empty file.
You can add/remove new strategies, data sources, or models easily (just copy the pattern).
Threaded background tasks—trading, research, analysis, RL, and more all run in parallel, so nothing blocks your core
sentiment 1.00
8 hr ago • u/Alternative-Neat1957 • r/dividends • anyone_here_living_off_dividends • C
Yes. We have retired early and are living off the dividends from our taxable account. They cover our basic expenses and are increasing faster than long-term inflation.
Because we are recently retired early, the portfolio is in the process of migrating from Dividend Growth to Dividend Income.
Growth: GOOGL AMZN AAPL NVDA V
Dividend Growth: HD LOW PEP PG CVX AMP BX FITB JPM PRU STT AMGN JNJ CAT CMI LMT UNP AVGO MSFT QCOM EGP ATO CPK ES EVRG NEE WEC
Dividend Income: VZ BKE CNQ EPD HESM MPLX AB AFG O VICI EOI EOS GPIQ QQQH QQQI SPYH SPYI UTG
This is our taxable account only. Retirement accounts can’t be touched for a few years still.
sentiment 0.86
9 hr ago • u/Odd_Entrepreneur2815 • r/options • favorite_strategy • C
Personally I’m not very sophisticated. Generally if the market is getting “too hot” in my opinion I start taking small positions against the market. Generally 4-12 months out. I’ve made decent money off AAPL shorts somehow. Whenever it gets to a new ATH or really high compared to last bit I buy a few puts 5%-10% otm and it generally pays out a decent return most times.
Another strategy I use is when I am bullish a stock/commodity and think it will have potential for quick movement I will buy calls and then continually roll up. Do this with GLD last 18 months for example. Before that did it with oil and gas companies I really wanted to earn but didn’t have the money to buy it yet.
sentiment 0.05
9 hr ago • u/testercheong • r/investing • which_stocks_have_you_recently_sold_out • C
Sold off all my AAPL to reallocate to index funds and a few select stocks (ASML,SPGI, BRK)
sentiment 0.00
13 hr ago • u/Chazzyboi69 • r/investing • if_you_could_only_invest_in_5_companies_for_the • C
MSFT, AAPL, AVGO, WM, COST
sentiment 0.00
14 hr ago • u/carbonreplica • r/ValueInvesting • buffett_just_sold_100_of_his_citigroup_stake_is • C
I honestly can't believe I've sold my entire stake in AAPL and C on the same exact days Warren did.
sentiment 0.46
15 hr ago • u/The_Albertino • r/wallstreetbets • daily_discussion_thread_for_may_16_2025 • C
Why did I sell my calls an hour ago AAPL
sentiment 0.25
16 hr ago • u/Key_Pizza_8372 • r/investing • if_you_could_only_invest_in_5_companies_for_the • C
I've been there, wanting to trim down the number of stocks for simplicity. If I had to choose just 5, I'd go with AMZN and COST like you, maybe add AAPL, MSFT, and GOOG. They all seem like solid bets for the long haul, especially with tech still driving so much growth.
I tried something a bit different with my friends, using this app called Hedge to invest as a group. It's kind of fun to bounce ideas off each other and reach a decision together. But yeah, focusing on companies with strong fundamentals and a track record of weathering economic storms seems key.
Also, consider which sectors you're most bullish on for the distant future. Diversifying among different industries might also help mitigate some risk. Just my two cents, though. Curious to see what others might pick too!
sentiment 0.97
16 hr ago • u/hepukesyoudie • r/wallstreetbets • daily_discussion_thread_for_may_16_2025 • C
AAPL LMAO
sentiment 0.00
16 hr ago • u/purpleinme • r/wallstreetbets • daily_discussion_thread_for_may_16_2025 • C
You’re so right. I moved my that money to AAPL longs. That’s bound to go to 220 by Dec.
sentiment 0.00
17 hr ago • u/richtopia • r/fidelityinvestments • hey_rfidelityinvestments_im_adam_benjamin_i • C
I've been skimming FSELX's assets and I'm curious if you can give any hints how holdings are selected. In the top 25 I don't see some big names: INTC, AMD, ADI, KLAC for example.
Naturally, I have to ask about INTC specifically. They definitely are in the dog house due to their losses and struggle to remain competitive, but they still have a massive manufacturing base world wide. Any comments on stock valuation or the company as a whole?
Related to Intel, any comments on advanced packaging? Backside power and packaging seems to be Intel's value proposition on upcoming devices but the whole industry seems to be migrating to some flavor of these technologies.
Your holdings list looks very pure play semi. Where do you draw the line? I don't see any wafer companies such as SUMCO in your holdings. Similarly I don't see EDA companies such as CDNS or SNPS. Then, towards the end user side I don't see system integrators like DELL, SMCI, or (debatably) IBM and AAPL.
Regarding where you focus your fund I'm curious how AI is changing your calculus. PLTR gets a lot of attention for its valuation. And tons of articles have discussed the supporting infrastructure for AI; nuclear, electrical suppliers, copper are all turning into AI stories supporting the fab build out envisioned.
sentiment 0.98
18 hr ago • u/Upstairs_Whole_580 • r/investing • thoughts_on_investing_in_googl_after_8_drop_today • C
They're just going to start going with companies like OKLO, small Nuclear plants.
But I think the threat of breaking Googl up, it's still cheap and that won't happen. I talk to someone on here... they argued with me about META when they were the target of the DOJ, and...I don't recall what it was trading at, but I bought at 200 and then I wasn't real liquid, but bought 250 more last month at ~490. Now he says it was obvious, but nobody investing in tech is investigating in Googl.
I don't know why.
Also, ChatGTP won't generate the revenue that Google does. I want to buy a...TV, I want to buy a Shark(vacuum). I buy it. They get money for that. ChatGTP can't match that.
YT, Cloud is growing. They have 100B on hand. I still love NVDA and think it's going to catapult past AAPL, but...I wouldn't be buying now. AMD, definitely...
But yeah, I love Google. I think it's going to see a 10-15% move when the legal stuff ends and they report another strong quarter of Cloud Growth.
And Waymo is already doing what Tesla has said for years they WOULD do...
sentiment 0.99
19 hr ago • u/Mbags1106 • r/wallstreetbets • daily_discussion_thread_for_may_16_2025 • C
AAPL poised for big pop next week especially if South Korea & Japan trade deals announced this weekend
sentiment 0.25
19 hr ago • u/MoreAnchovies • r/ETFs • why_etfs_and_not_brk • C
Besides the businesses side that BRK owns, it also holds a massive portfolio of stocks such as AAPL, AXP, CVX, and OXY, to name a few.
Personally, I’m 50/50 in VOO and BRK/B.
sentiment 0.00
19 hr ago • u/BSBootyBandit • r/wallstreetbets • daily_discussion_thread_for_may_16_2025 • C
Believe it or not. AAPL calls for 2 weeks out. PT 219
sentiment -0.28
19 hr ago • u/The_Albertino • r/wallstreetbets • daily_discussion_thread_for_may_16_2025 • C
Hello AAPL?
sentiment 0.00
19 hr ago • u/purpleinme • r/wallstreetbets • daily_discussion_thread_for_may_16_2025 • C
Apparently, buying AAPL calls was stupid.
sentiment -0.23
19 hr ago • u/saw-it • r/wallstreetbets • daily_discussion_thread_for_may_16_2025 • C
AAPL the only thing that hasn’t moved all week
sentiment 0.00


Share
About
Pricing
Policies
Markets
API
Info
tz UTC-4
Connect with us
ChartExchange Email
ChartExchange on Discord
ChartExchange on X
ChartExchange on Reddit
ChartExchange on GitHub
ChartExchange on YouTube
© 2020 - 2025 ChartExchange LLC