pinets 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/pinets.min.browser.es.js +14 -14
- package/dist/pinets.min.browser.es.js.map +1 -1
- package/dist/pinets.min.browser.js +1 -1
- package/dist/pinets.min.browser.js.map +1 -1
- package/dist/pinets.min.cjs +1 -1
- package/dist/pinets.min.cjs.map +1 -1
- package/dist/pinets.min.es.js +1 -1
- package/dist/pinets.min.es.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ This makes it possible to run Pine Script indicators in Node.js, browsers, and o
|
|
|
17
17
|
|
|
18
18
|
## Overview
|
|
19
19
|
|
|
20
|
-
PineTS is a
|
|
20
|
+
PineTS is a runtime + transpiler that converts Pine Script (or PineTS syntax) into executable JavaScript. It preserves the original functionality and behavior while providing robust handling of time-series data processing, technical analysis calculations, and Pine Script's distinctive scoping mechanisms.
|
|
21
21
|
|
|
22
22
|
### Input Format Support
|
|
23
23
|
|
|
24
|
-
- **Native Pine Script** _(
|
|
24
|
+
- **Native Pine Script** _(experimental)_: Run original Pine Script v5 and v6 indicators directly. Note that some indicators may fail if they use Pine Script API features not yet implemented in PineTS. Check the [API coverage badges](#pine-script-api-coverage) below to verify compatibility.
|
|
25
25
|
- **PineTS Syntax**: A JavaScript/TypeScript syntax that mirrors Pine Script closely, requiring minimal conversion effort from original Pine Script code.
|
|
26
26
|
|
|
27
27
|
## See it in action
|