Skip to main content
PyneCore Logo

PyneCore™

Pine Script in Python - Without Limitations

Python License

🚀 Have Pine Script code? Get automatic Python translation →

What is PyneCore?

PyneCore brings TradingView's Pine Script capabilities to Python through a revolutionary approach - it transforms regular Python code to behave like Pine Script through AST transformations, while maintaining the full power of the Python ecosystem.

Instead of creating another object-oriented wrapper or a new language, PyneCore modifies your Python code at import time, giving you the intuitive bar-by-bar execution model of Pine Script without leaving Python's rich environment.

Key Features

  • Native Pine Script Semantics in Python: Write familiar Python code that runs with Pine Script's bar-by-bar execution model
  • AST Transformation Magic: Your code is transformed at import time to implement Pine Script behavior
  • High Performance: Zero mandatory external dependencies with highly optimized implementation
  • Series & Persistent Variables: Full support for Pine Script's time series and state persistence
  • Function Isolation: Each function call gets its own isolated persistent state
  • NA Handling: Graceful handling of missing data with Pine Script's NA system
  • Technical Analysis Library: Comprehensive set of Pine Script-compatible indicators and functions
  • Strategy Backtesting: Pine Script compatible framework for developing and testing trading strategies

Quick Example

"""
@pyne
"""
from pynecore import Series
from pynecore.lib import script, close, ta, plot, color, input

@script.indicator(title="Bollinger Bands")
def main(
    length=input.int("Length", 20, minval=1),
    mult=input.float("Multiplier", 2.0, minval=0.1, step=0.1),
    src=input.source("Source", close)
):
    # Calculate Bollinger Bands
    basis = ta.sma(src, length)
    dev = mult * ta.stdev(src, length)

    upper = basis + dev
    lower = basis - dev

    # Output to chart
    plot(basis, "Basis", color=color.orange)
    plot(upper, "Upper", color=color.blue)
    plot(lower, "Lower", color=color.blue)

Innovative Concepts

PyneCore introduces several revolutionary concepts:

1. Magic Comment & Import Hook

Identify your scripts with a simple magic comment:

"""
@pyne
"""

This activates PyneCore's import hook system which intercepts Python imports and applies AST transformations to recognized scripts.

2. Series Variables

Track historical data across bars, just like in Pine Script:

from pynecore import Series

price: Series[float] = close
previous_price = price[1]  # Access previous bar's price

3. Persistent Variables

Maintain state between bars with simple type annotations:

from pynecore import Persistent

counter: Persistent[int] = 0
counter += 1  # Increments with each bar

4. Function Isolation

Each call to a function maintains its own isolated state:

def my_indicator(src, length):
    # Each call gets its own instance of sum
    sum: Persistent[float] = 0
    sum += src
    return sum / length

Installation

# Basic installation
pip install pynesys-pynecore

# With CLI tools (recommended)
pip install pynesys-pynecore[cli]

# With all features including data providers
pip install pynesys-pynecore[all]

Note for Windows users: PyneCore requires timezone data that is not included in Windows by default. The [cli] and [all] installations automatically include the tzdata package. If you're using the basic installation and encounter timezone errors, install it manually with pip install tzdata.

Getting Started

Create a Simple Script

  1. Create a file with the @pyne annotation:
"""
@pyne
"""
from pynecore.lib import script, close, plot

@script.indicator("My First Indicator")
def main():
    # Calculate a simple moving average
    sma_value = (close + close[1] + close[2]) / 3

    # Plot the result
    plot(sma_value, "Simple Moving Average")
  1. Run your script with the PyneCore CLI:
# First, download some price data
pyne data download ccxt --symbol "BYBIT:BTC/USDT:USDT"

# Then run your script on the data
pyne run my_script.py ccxt_BYBIT_BTC_USDT_USDT_1D.ohlcv

Working with Pine Script Files

PyneCore also supports running Pine Script files directly with automatic compilation:

# Run a Pine Script file directly (requires PyneSys API key)
pyne run my_indicator.pine ccxt_BYBIT_BTC_USDT_USDT_1D.ohlcv --api-key YOUR_API_KEY

# Or compile Pine Script to Python first
pyne compile my_indicator.pine --api-key YOUR_API_KEY

# Then run the compiled Python file
pyne run my_indicator.py ccxt_BYBIT_BTC_USDT_USDT_1D.ohlcv

Note: Pine Script compilation requires a PyneSys API key. Get yours at pynesys.io.

Broker Plugins (this fork)

This fork adds venue plugins under plugins/, editable-installed and auto-discovered through the pyne.plugin entry-point group:

Plugin Entry points What it does
DNSEplugins/dnse dnse (data) · dnse_broker (broker) Vietnamese derivatives & stocks: OHLCV history + native STOP/OCO conditional orders on DNSE's OpenAPI, built on the vendored openapi-sdk 2.0.0. REST-only.
# historical / live data feed
pyne run my_strategy.py dnse:VN30F1M@5 --from -500

# live broker — places REAL orders (implies --live)
pyne run my_strategy.py dnse_broker:VN30F1M@5 --broker

Unit tests: pytest plugins/dnse/tests/. The vendored SDK, a mirror of DNSE's OpenAPI docs (docs/dnse-openapi-documentation/) with a sync/verify tool, and the error-handling plan (docs/plan/) live alongside the plugin.

Reference plugins — the DNSE plugin follows PyneSys's official broker-plugin examples, kept as workspace siblings for pattern reference: pynecore-plugin-bybit, pynecore-plugin-capitalcom, pynecore-plugin-ctrader.

Why Choose PyneCore?

  • Beyond TradingView Limitations: No more platform restrictions, code size limits, or subscription fees
  • Python Ecosystem Access: Use Python's data science, ML, and analysis libraries alongside trading logic
  • Performance & Precision: Designed for speed and precision, the same results as Pine Script
  • Open Source Foundation: The core library and runtime is open source under Apache 2.0 license
  • Professional Trading Tools: Build institutional-grade systems with Pine Script simplicity
  • Advanced Backtesting: Run sophisticated strategy tests outside platform constraints

Pine Script Migration Made Easy

Have existing Pine Script code you want to run in Python? PyneSys now offers automatic Pine Script to PyneCore translation through our web platform and Discord bot.

🚀 Get Started Instantly

  • Try for free on Discord: Use /pine-help in our Discord for instant conversion - 3 free translations!
  • Full service: Visit pynesys.io for subscriptions and higher limits

💡 Support the Ecosystem

Love PyneCore and want to see it grow? Consider a Seed subscription or higher ($5+/mo) to support continued development:

  • Daily translations of your Pine Script files (5+ per day)
  • Larger script support for complex indicators and strategies
  • Direct contribution to keeping PyneCore open source and advancing

Every subscription helps maintain this free, open-source runtime and drives innovation in algorithmic trading tools.

Documentation & Support

Community

License

PyneCore is licensed under the Apache License 2.0.

Disclaimer

Pine Script™ is a trademark of TradingView, Inc. PyneCore is not affiliated with, endorsed by, or sponsored by TradingView. This project is an independent implementation that aims to provide compatibility with the Pine Script language concept in the Python ecosystem.

Risk Warning

Trading involves significant risk of loss and is not suitable for all investors. The use of PyneCore does not guarantee any specific results. Past performance is not indicative of future results.

  • PyneCore is provided "as is" without any warranty of any kind
  • PyneCore is not a trading advisor and does not provide trading advice
  • Scripts created with PyneCore should be thoroughly tested before using with real funds
  • Users are responsible for their own trading decisions
  • You should consult with a licensed financial advisor before making any financial decisions

By using PyneCore, you acknowledge that you are using the software at your own risk. The creators and contributors of PyneCore shall not be held liable for any financial loss or damage resulting from the use of this software.

Commercial Support

PyneCore is part of the PyneSys ecosystem. For commercial support, custom development, or enterprise solutions:


Elevate Your Trading with the Power of Python & Pine Script

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

opencode_pyneruntime-6.8.5.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

opencode_pyneruntime-6.8.5-py3-none-any.whl (1.2 MB view details)

Uploaded Python 3

File details

Details for the file opencode_pyneruntime-6.8.5.tar.gz.

File metadata

  • Download URL: opencode_pyneruntime-6.8.5.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"26.04","id":"resolute","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for opencode_pyneruntime-6.8.5.tar.gz
Algorithm Hash digest
SHA256 fd38d31908e43d94aada2d12ce0c62b9acf2b66279041e7e75dae9ac9f7364bf
MD5 6a518deded85f54dbc9b329d60168492
BLAKE2b-256 44902054563ed61743dd632348ecb35f880364692be2d3f60b69c126d1a53943

See more details on using hashes here.

File details

Details for the file opencode_pyneruntime-6.8.5-py3-none-any.whl.

File metadata

  • Download URL: opencode_pyneruntime-6.8.5-py3-none-any.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"26.04","id":"resolute","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for opencode_pyneruntime-6.8.5-py3-none-any.whl
Algorithm Hash digest
SHA256 1a72be328f2068a0138ecb0088200875b7dddbe25a5f528d21ec2bb3d8d69282
MD5 a04d4cc06fdcd3bd14737c9de3e3b5b8
BLAKE2b-256 0b1ee475720473592fea6a5d32eef886b4a8b879a9309a7f51c26d12254ad54a

See more details on using hashes here.

Release history Release notifications | RSS feed

6.9.2

2 files

6.9.1

2 files

6.8.7

2 files

This release

6.8.5 This release

2 files

6.6.4

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page