Visualize

Your Trades on TradingView

Convert your Robinhood trading history into TradingView Pine Script code with just a few clicks. Completely free to use!

How It Works

Easy Upload

Simply upload your Robinhood CSV file with your trade history

Pine Script Generation

Automatically convert your trades to TradingView Pine Script

Visualize Trades

See your trades directly on TradingView charts

Instant Processing

Get your Pine Script code in seconds, no waiting

Convert Your Trades

Drag and drop your Robinhood CSV file here, or click to browse

Only CSV files are supported

Generated Pine Script
// TradeScript Converter - Robinhood Trades
// Generated on 9/24/2025

//@version=5
indicator("My Robinhood Trades", overlay=true)

// Trade Entry Points
longCondition = false
shortCondition = false

// Trade #1: AAPL Long
if (syminfo.ticker == "AAPL" and time >= timestamp(2023, 3, 15, 0, 0))
    longCondition := true
    label.new(bar_index, high, "Buy AAPL
$165.23", color=color.green, style=label.style_label_down, textcolor=color.white)

// Trade #2: TSLA Short
if (syminfo.ticker == "TSLA" and time >= timestamp(2023, 4, 2, 0, 0))
    shortCondition := true
    label.new(bar_index, low, "Sell TSLA
$185.75", color=color.red, style=label.style_label_up, textcolor=color.white)

// Plot signals
plotshape(longCondition, "Long Entry", shape.triangleup, location.belowbar, color.green, size=size.small)
plotshape(shortCondition, "Short Entry", shape.triangledown, location.abovebar, color.red, size=size.small)

// Alert conditions
alertcondition(longCondition, "Long Entry Alert", "Long position entered")
alertcondition(shortCondition, "Short Entry Alert", "Short position entered")