pinets 0.1.1 → 0.1.33
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 +8 -0
- package/dist/pinets.dev.browser.js +10700 -0
- package/dist/pinets.dev.cjs +818 -273
- package/dist/pinets.dev.cjs.map +1 -1
- package/dist/pinets.dev.es.js +872 -172
- package/dist/pinets.dev.es.js.map +1 -1
- package/dist/pinets.min.browser.js +12 -12
- package/dist/pinets.min.cjs +12 -12
- package/dist/pinets.min.es.js +2 -2
- package/dist/types/Context.class.d.ts +24 -2
- package/dist/types/PineTS.class.d.ts +1 -1
- package/dist/types/marketData/Binance/BinanceProvider.class.d.ts +3 -0
- package/dist/types/namespaces/Core.d.ts +3 -0
- package/dist/types/namespaces/PineArray.d.ts +62 -0
- package/dist/types/namespaces/PineColor.d.ts +0 -0
- package/dist/types/namespaces/PineMath.d.ts +20 -19
- package/dist/types/namespaces/PineRequest.d.ts +2 -1
- package/dist/types/namespaces/TechnicalAnalysis.d.ts +5 -1
- package/dist/types/transpiler/ScopeManager.class.d.ts +2 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -11,6 +11,14 @@ PineTS is an independent project and is not affiliated with, endorsed by, or ass
|
|
|
11
11
|
|
|
12
12
|
PineTS enables seamless conversion of Pine Script indicators to JavaScript/TypeScript code. 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.
|
|
13
13
|
|
|
14
|
+
## See it in action
|
|
15
|
+
|
|
16
|
+
Bellow are two ports of Pine Script indicators running in the browser.
|
|
17
|
+
PineTS is used to generate plot data, and tradingview light weight chart is used to display the plot.
|
|
18
|
+
|
|
19
|
+
- [Williams Vix Fix](https://alaa-eddine.github.io/PineTS/indicators/willvixfix/)
|
|
20
|
+
- [Squeeze Momentum](https://alaa-eddine.github.io/PineTS/indicators/sqzmom/)
|
|
21
|
+
|
|
14
22
|
## Key Features
|
|
15
23
|
|
|
16
24
|
- **Pine Script Compatibility**: Supports Pine Script v5+ syntax and functionality
|