New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

pinets-cli

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pinets-cli

A CLI wrapper for PineTS that lets you run Pine Script indicators directly from the command line.

latest
Source
npmnpm
Version
0.1.15
Version published
Maintainers
2
Created
Source

pinets-cli
Run Pine Script indicators from the command line

npm version License Powered by PineTS

Quick StartUsageOptionsExamplesFull Docs

What is pinets-cli?

pinets-cli is a command-line interface for PineTS, the open-source Pine Script transpiler and runtime. It lets you execute TradingView Pine Script indicators directly from your terminal, with live market data or custom JSON datasets.

pinets run rsi.pine --symbol BTCUSDT --timeframe 60

No code to write. No project to set up. Just point it at a .pine file and go.

Quick Start

Install

npm install -g pinets-cli

Or run directly without installing:

npx pinets-cli run sma_cross.pine --symbol BTCUSDT --timeframe 60

Run your first indicator

Create a file called sma_cross.pine:

//@version=5
indicator("SMA Cross", overlay=true)
fast = ta.sma(close, 9)
slow = ta.sma(close, 21)
plot(fast, "Fast SMA", color=color.blue)
plot(slow, "Slow SMA", color=color.red)

Run it:

pinets run sma_cross.pine --symbol BTCUSDT --timeframe 60

That's it. You'll get JSON output with the calculated SMA values for the last 500 hourly candles.

Usage

pinets run [options] [file]

The run command executes a Pine Script indicator and outputs the results as JSON.

Indicator source

Provide the indicator as a file argument or via piped stdin:

# From a file
pinets run my_indicator.pine --symbol BTCUSDT

# Piped from stdin (works on Linux, macOS, and Windows)
cat my_indicator.pine | pinets run --symbol BTCUSDT

Data source

Choose between live market data or a local JSON file:

# Live data from Binance
pinets run rsi.pine --symbol BTCUSDT --timeframe 60

# Custom data from a JSON file
pinets run rsi.pine --data ./my_candles.json

Options

Data Source

OptionShortDescriptionDefault
--symbol <ticker>-sSymbol to query (e.g., BTCUSDT, ETHUSDT.P)
--timeframe <tf>-tTimeframe: 1, 5, 15, 60, 240, 1D, 1W, 1M60
--data <path>-dPath to a JSON data file (alternative to --symbol)

Output

OptionShortDescriptionDefault
--output <path>-oWrite output to a file instead of stdoutstdout
--format <type>-fOutput format: default or fulldefault
--prettyForce pretty-printed JSONauto
--cleanFilter out null, false, and empty values from plots
--plots <names>Comma-separated list of plot names to includeall plots

Candle Control

OptionShortDescriptionDefault
--candles <count>-nNumber of candles in the output500
--warmup <count>-wExtra candles for indicator warmup (not included in output)0

Other

OptionShortDescription
--debugShow the transpiled code (for debugging)
--quiet-qSuppress all informational messages
--version-vShow version number
--help-hShow help

Examples

Basic indicator with live data

pinets run rsi.pine --symbol BTCUSDT --timeframe 1D --candles 100

Indicator warmup

Many indicators need historical data to initialize (e.g., a 200-period SMA needs at least 200 bars before producing meaningful output). Use --warmup to fetch extra candles that are processed but excluded from the output:

# Fetch 700 candles (200 warmup + 500 output), return only the last 500
pinets run ema200.pine --symbol ETHUSDT --timeframe 60 --candles 500 --warmup 200

Save output to a file

pinets run macd.pine --symbol BTCUSDT --timeframe 15 -o results.json

Pipe into other tools

# Pretty-print with jq
pinets run rsi.pine -s BTCUSDT -t 60 -q | jq '.plots'

# Extract last RSI value
pinets run rsi.pine -s BTCUSDT -t 60 -q | jq '.plots.RSI.data[-1].value'

Use custom JSON data

pinets run my_indicator.pine --data ./historical_btc.json --candles 50 --pretty

Pipe indicator from stdin

cat my_indicator.pine | pinets run --symbol BTCUSDT --timeframe 60

# Or on Windows PowerShell
Get-Content my_indicator.pine | pinets run --symbol BTCUSDT --timeframe 60

Full execution context

pinets run rsi.pine --symbol BTCUSDT --format full --pretty

Debug transpilation

pinets run my_indicator.pine --symbol BTCUSDT --debug

Filter signals with --clean

For indicators that generate signals (like crossovers), most candles will have false values. Use --clean to filter them out:

# Without --clean: 500 entries, mostly false
pinets run ma_cross.pine -s BTCUSDT -t 1D -n 500

# With --clean: Only actual signals
pinets run ma_cross.pine -s BTCUSDT -t 1D -n 500 --clean

Select specific plots

When you only need specific plots from an indicator:

# Get only the Fast SMA (ignore Slow SMA)
pinets run sma_cross.pine -s BTCUSDT --plots "Fast SMA"

# Get only Buy and Sell signals
pinets run signals.pine -s BTCUSDT --plots "Buy,Sell" --clean -q | jq '.plots'

Output Formats

default format

Contains the indicator metadata and all plot data:

{
  "indicator": {
    "title": "RSI",
    "overlay": false
  },
  "plots": {
    "RSI": {
      "title": "RSI",
      "options": { "color": "#7E57C2" },
      "data": [
        { "time": 1704067200000, "value": 65.42 },
        { "time": 1704070800000, "value": 62.18 }
      ]
    }
  }
}

full format

Everything in default, plus the raw execution result and market data:

{
  "indicator": { ... },
  "plots": { ... },
  "result": { ... },
  "marketData": [
    { "openTime": 1704067200000, "open": 42000, "high": 42500, "low": 41800, "close": 42300, "volume": 1234.5 },
    ...
  ]
}

JSON Data Format

When using --data, provide a JSON file with an array of candle objects:

[
  {
    "openTime": 1704067200000,
    "open": 42000.5,
    "high": 42500.0,
    "low": 41800.0,
    "close": 42300.0,
    "volume": 1234.56,
    "closeTime": 1704070799999
  }
]

Required fields: open, high, low, close, volume

Recommended fields: openTime, closeTime (millisecond timestamps)

How It Works

pinets-cli is a self-contained binary that bundles the PineTS library. When you run an indicator:

  • The Pine Script file is read and passed to the PineTS transpiler
  • Market data is fetched from Binance (or loaded from your JSON file)
  • The indicator is executed bar-by-bar with full time-series semantics
  • Plot data is collected and output as structured JSON

There are no runtime dependencies. The single bundled file includes everything needed.

Supported Timeframes

ValueDescription
11 minute
33 minutes
55 minutes
1515 minutes
3030 minutes
601 hour
1202 hours
2404 hours
1D or D1 day
1W or W1 week
1M or M1 month
  • PineTS : The underlying transpiler and runtime engine
  • QFChart : Charting library optimized for PineTS visualization

Contributing

Contributions are welcome! Please feel free to open issues or submit pull requests.

License

AGPL-3.0 - See LICENSE for details.

Built with PineTS by LuxAlgo

Keywords

Pine

FAQs

Package last updated on 02 Jun 2026

Related posts