RealizeAlpha supports deep linking for seamless navigation from external sources (emails, messages, web) directly into specific app content. It also includes a referral tracking system to reward users for inviting others.
The app responds to the realizealpha:// custom scheme. This is the most reliable way to trigger the app from non-browser environments.
The app is configured to intercept standard HTTPS links for the following domains:
https://realizealpha.comhttps://realizealpha.web.apphttps://realizealpha.firebaseapp.comThe following paths are supported across both custom schemes and universal links:
| Target | Path / Format | Example |
|---|---|---|
| Instrument Ticker | /instrument/{symbol} |
realizealpha://instrument/AAPL |
| Referral Code | /?ref={id} |
https://realizealpha.com/?ref=USER123 |
| Investor Group | /investors?groupId={id} |
https://realizealpha.com/investors?groupId=... |
| Watchlists | /watchlist |
realizealpha://watchlist |
| Group Watchlist | /group-watchlist?groupId={id}&watchlistId={id} |
realizealpha://group-watchlist?groupId=... |
| Trade Signals | /signals |
realizealpha://signals |
The app now supports easy sharing of key elements with deep link integration:
realizealpha://instrument/AAPL) that others can use to view the asset.Any supported link can include a referral code using the ref query parameter.
Example: https://realizealpha.com/instrument/TSLA?ref=USERNAME_OR_ID
ref parameter, the app captures the code.SharedPreferences.User document in Firestore is updated immediately.Native auto-routing is disabled (FlutterDeepLinkingEnabled: false) to prevent conflicts. All routing logic is managed manually in src/robinhood_options_mobile/lib/widgets/navigation_widget.dart via the app_links package.
investing-mobile:// scheme.Managed in AndroidManifest.xml via <intent-filter> blocks.
CFBundleURLTypes.applinks:realizealpha.com, etc./.well-known/apple-app-site-association on the web domains.