A React Native stocks/ etfs broking platform, featuring real-time market data from Alpha Vantage API.
- 📊 Real-time market data with Top Gainers/Losers
- � Market status indicator (Open/Closed with trading hours)
- 🎯 Most actively traded stocks
- 📱 Clean, intuitive Groww-inspired UI design
- 📋 Create and manage multiple custom watchlists
- ⭐ Quick favorites system for instant access
- ➕ Easy stock addition with smart modal interface
- 🔄 Real-time price updates for tracked stocks
- 📺 Latest market news with sentiment analysis
- 🎯 Company-specific news filtering
- 📊 Bullish/Bearish sentiment indicators
- 🖼️ Rich news cards with images and summaries
- 🔗 Direct links to full articles
- 🏢 Comprehensive company overviews
- 📈 Multiple timeframe charts (Intraday, Daily, Weekly, Monthly)
- � Key financial metrics (P/E ratio, Market Cap, Dividend Yield)
- 📊 52-week high/low tracking
- 💼 Sector and industry information
- 🌙 Adaptive Light/Dark theme support
- � Native iOS/Android optimized interface
- ⚡ Smart caching for improved performance
- 🎪 Haptic feedback for enhanced interaction
- 🔄 Pull-to-refresh functionality
- 💾 Local data caching with AsyncStorage
- 🔧 TypeScript-first environment configuration
- ⚡ Optimized API calls with intelligent caching
- 🔐 Secure API key management
- Node.js (v16 or higher)
- iOS Simulator / Android Emulator (optional)
-
Clone & Install Dependencies
git clone <repository-url> cd growwStocksApp npm install
-
Configure API Access
Create your environment configuration:
cp env.example.ts env.ts
Edit
env.tswith your Alpha Vantage API credentials:export const ENV = { ALPHA_VANTAGE_API_KEY: 'your_api_key_here', ALPHA_VANTAGE_BASE_URL: 'https://www.alphavantage.co/query', CACHE_EXPIRATION_TIME: 300000, } as const;
🔑 Get your free API key: Alpha Vantage Registration
-
Launch the Application
npm start
Choose your preferred development environment:
- ⚛️ React Native
- 📘 TypeScript
📁 app/
📁 (tabs)/ # Tab-based navigation
🏠 index.tsx # Market dashboard
⭐ favorites.tsx # Favorites management
📰 news.tsx # Financial news feed
📋 watchlist.tsx # Watchlist management
📄 stock-details.tsx # Individual stock analysis
📄 view-all.tsx # Extended market views
📁 components/
📊 StockCard.tsx # Stock display cards
📰 NewsCard.tsx # News article cards
📋 AddToWatchlistModal.tsx
🌙 ThemeToggle.tsx
📁 services/
📈 alphaVantageAPI.ts # Alpha Vantage API client
📁 contexts/
🎨 ThemeContext.tsx # Theme management
📁 types/ # TypeScript definitions
- 🏗️ Clean Architecture: Separation of concerns with dedicated services, components and utilities
- 📱 Mobile-First: Optimized for React Native performance patterns
- 💾 Smart Caching: Local storage with configurable TTL to minimize API calls
- 🔧 Environment Management: TypeScript-based configuration for better IDE support
- 🎨 Theme-Aware: Comprehensive light/dark mode implementation
- ⚡ Intelligent data caching with AsyncStorage
- 🔄 Background refresh strategies
- 📱 Native platform optimizations
- 🎯 Lazy loading for improved startup time