Cart

The marketplace for indicator creators

Your indicator.Your business.

Sell invite-only TradingView indicators under your own name. We bring storefront, payment, access verification and buyer support together in one dedicated marketplace.

Creator ownedAccess verified

A marketplace measured by real activity

...

Verified users

...

Approved creators

...

Published indicators

...

Verified access grants

You build the signal. We build the business around it.

PineScript Market connects discovery, checkout, access and support without taking the creator out of the picture.

01
Creator storefront

A storefront with your name on it.

Your profile, indicator media, plans and creator identity stay together in one moderated listing.

02
Access fulfillment

Payment connected to access.

Each order stays linked to the buyer, the script and the requested TradingView access period.

03
Order support

Support that knows the order.

Buyers and creators can resolve issues in context, while platform support can step in when needed.

04
Creator accounting

Accounting you can follow.

Sales, refunds, disputes and monthly payouts remain visible in a seller-level ledger.

Applications are reviewed manually

Connect the TradingView account you control, verify eligible scripts and submit each listing for review.

Open Seller Center

Browse approved storefronts with product media, creator identity and available access plans presented together.

View marketplace
Custom development service

You imagine it. We code it.

Turn your trading rules into a custom Pine Script indicator. The platform manages the brief, implementation and final source delivery from one request.

Your strategy stays yours

You receive the completed source code with exclusive ownership of the custom deliverable.

Professional Pine v6 code

Built around your documented rules, then reviewed and delivered with installation support.

Start your project $1,500 one-time
My_Custom_Strategy.pine
//@version=6
strategy("My Custom Strategy", overlay=true)
 
// Your trading rules, engineered in Pine
fastMA = ta.sma(close, 14)
slowMA = ta.sma(close, 50)
 
if ta.crossover(fastMA, slowMA)
strategy.entry("Long", strategy.long)
 
plot(fastMA, color=color.green)
plot(slowMA, color=color.red)
CompilationSuccessful