User Dashboard
Grant Access
Active Users
| Username | Script | Expires | Status | Actions |
|---|
Loading users...
Enter your passkey to continue.
| Username | Script | Expires | Status | Actions |
|---|
No users found.
Loading users...
No scripts registered yet.
Map Stripe customers to TradingView usernames. Auto-created on checkout.
Map Stripe products to Pine scripts + access duration.
| Time | Action | Username | Script | Duration | Source | Status |
|---|
No logs yet.
Loading logs...
Extract your sessionid cookie from TradingView: DevTools (F12) → Application → Cookies → tradingview.com → copy sessionid.
Go to the Stripe tab and map your Stripe products to Pine scripts with durations.
Option A — Payment Link: Add a custom field with key tvusername (text field) so buyers enter their TradingView username at checkout.
Option B — API/Code: Include in checkout session metadata:
const session = await stripe.checkout.sessions.create({
mode: 'subscription',
line_items: [{ price: 'price_xxx', quantity: 1 }],
metadata: { tv_username: 'customer_tv_name' },
success_url: 'https://yoursite.com/success',
cancel_url: 'https://yoursite.com/cancel',
});