TV

Admin Panel

Enter your passkey to continue.

TV Access Mgr
User Dashboard Scripts Stripe Logs Settings
No session

User Dashboard

Grant Access

Active Users

Username Script Expires Status Actions

No users found.

Loading users...

Scripts

Add New Script

Registered Scripts

No scripts registered yet.

Stripe

Customer Mappings

Map Stripe customers to TradingView usernames. Auto-created on checkout.

Product Mappings

Map Stripe products to Pine scripts + access duration.

Access Logs

Time Action Username Script Duration Source Status

No logs yet.

Loading logs...

Settings

TradingView Session

Extract your sessionid cookie from TradingView: DevTools (F12) → Application → Cookies → tradingview.com → copy sessionid.

Change Pass Key

Webhook Guide

1
Create Product Mappings

Go to the Stripe tab and map your Stripe products to Pine scripts with durations.

2
Pass TV Username in Checkout

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', });