pinets 0.9.18 → 0.9.20
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/dist/pinets.min.browser.es.js +30 -30
- package/dist/pinets.min.browser.es.js.map +1 -1
- package/dist/pinets.min.browser.js +30 -30
- package/dist/pinets.min.browser.js.map +1 -1
- package/dist/pinets.min.cjs +30 -30
- package/dist/pinets.min.cjs.map +1 -1
- package/dist/pinets.min.es.js +30 -30
- package/dist/pinets.min.es.js.map +1 -1
- package/dist/types/Context.class.d.ts +4 -0
- package/dist/types/Indicator/Indicator.class.d.ts +100 -0
- package/dist/types/Indicator/inputProxy.d.ts +14 -0
- package/dist/types/Indicator/keyedProxy.d.ts +43 -0
- package/dist/types/Indicator/propProxy.d.ts +16 -0
- package/dist/types/Indicator/propsSchema.d.ts +8 -0
- package/dist/types/Indicator/scanDeclaration.d.ts +29 -0
- package/dist/types/Indicator/scanInputs.d.ts +5 -0
- package/dist/types/Indicator/types.d.ts +90 -0
- package/dist/types/Indicator.d.ts +3 -5
- package/dist/types/PineTS.class.d.ts +1 -20
- package/dist/types/index.d.ts +2 -0
- package/dist/types/namespaces/strategy/methods/avg_losing_trade_percent.d.ts +6 -2
- package/dist/types/namespaces/strategy/methods/convert_to_account.d.ts +10 -4
- package/dist/types/namespaces/strategy/methods/convert_to_symbol.d.ts +4 -1
- package/dist/types/namespaces/strategy/methods/margin_liquidation_price.d.ts +16 -6
- package/dist/types/namespaces/strategy/methods/max_drawdown_percent.d.ts +12 -3
- package/dist/types/namespaces/strategy/methods/max_runup_percent.d.ts +15 -3
- package/dist/types/namespaces/strategy/types.d.ts +11 -0
- package/dist/types/namespaces/strategy/utils.d.ts +95 -3
- package/dist/types/transpiler/settings.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ export declare const KNOWN_NAMESPACES: string[];
|
|
|
2
2
|
export declare const NAMESPACES_LIKE: string[];
|
|
3
3
|
export declare const ASYNC_METHODS: string[];
|
|
4
4
|
export declare const VIEWPORT_DEPENDENT_BUILTINS: string[];
|
|
5
|
+
export declare const CALLSITE_ID_NAMESPACES: string[];
|
|
5
6
|
export declare const FACTORY_METHODS: string[];
|
|
6
7
|
export declare const NAMESPACE_COLLISION_NAMES: Set<string>;
|
|
7
8
|
export declare const JS_RESERVED_WORDS: Set<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pinets",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.20",
|
|
4
4
|
"description": "Run Pine Script anywhere. PineTS is an open-source transpiler and runtime that brings Pine Script logic to Node.js and the browser with 1:1 syntax compatibility. Reliably write, port, and run indicators or strategies on your own infrastructure.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Pine Script",
|