Programmatic Usage docs + Examples repo

Many of you asked how to run PyneCore scripts from Python code (not just the CLI). There’s now proper documentation and runnable examples for this:

Documentation: https://pynecore.org/docs/programmatic/

  • ScriptRunner API — run indicators and strategies from Python code
  • Data & SymInfo — data sources (CSV, API, DataFrame, CCXT)
  • Integration Patterns — FreqTrade, live data feeds, parameter optimization

Examples: https://github.com/PyneSys/pynecore-examples

  • Every example is self-contained, runs with uv run (zero setup)
  • CSV, custom data, live CCXT, FreqTrade integration (indicators + strategy signals)

If you want to use Pine Script indicators inside FreqTrade, check 05-freqtrade-indicators — grab any indicator and write the trading logic in Python.

Also in v6.3.9: NA values now work in f-strings (f"{rsi:.2f}" returns "NaN" during warmup instead of crashing).