pinets 0.8.6 → 0.8.8
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 +16 -0
- package/dist/pinets.min.browser.es.js +25 -18
- package/dist/pinets.min.browser.es.js.map +1 -1
- package/dist/pinets.min.browser.js +25 -18
- package/dist/pinets.min.browser.js.map +1 -1
- package/dist/pinets.min.cjs +25 -18
- package/dist/pinets.min.cjs.map +1 -1
- package/dist/pinets.min.es.js +25 -18
- package/dist/pinets.min.es.js.map +1 -1
- package/dist/types/namespaces/Core.d.ts +23 -23
- package/dist/types/namespaces/strategy/StrategySimulator.d.ts +84 -0
- package/dist/types/namespaces/strategy/closedtrades/index.d.ts +18 -0
- package/dist/types/namespaces/strategy/methods/any.d.ts +5 -0
- package/dist/types/namespaces/strategy/methods/cancel.d.ts +1 -0
- package/dist/types/namespaces/strategy/methods/cancel_all.d.ts +1 -0
- package/dist/types/namespaces/strategy/methods/cash.d.ts +5 -0
- package/dist/types/namespaces/strategy/methods/close.d.ts +1 -0
- package/dist/types/namespaces/strategy/methods/close_all.d.ts +1 -0
- package/dist/types/namespaces/strategy/methods/closedtrades.d.ts +4 -0
- package/dist/types/namespaces/strategy/methods/entry.d.ts +3 -0
- package/dist/types/namespaces/strategy/methods/equity.d.ts +4 -0
- package/dist/types/namespaces/strategy/methods/exit.d.ts +3 -0
- package/dist/types/namespaces/strategy/methods/fixed.d.ts +5 -0
- package/dist/types/namespaces/strategy/methods/long.d.ts +4 -0
- package/dist/types/namespaces/strategy/methods/netprofit.d.ts +4 -0
- package/dist/types/namespaces/strategy/methods/opentrades.d.ts +4 -0
- package/dist/types/namespaces/strategy/methods/order.d.ts +6 -0
- package/dist/types/namespaces/strategy/methods/param.d.ts +5 -0
- package/dist/types/namespaces/strategy/methods/percent_of_equity.d.ts +5 -0
- package/dist/types/namespaces/strategy/methods/position_avg_price.d.ts +5 -0
- package/dist/types/namespaces/strategy/methods/position_entry.d.ts +5 -0
- package/dist/types/namespaces/strategy/methods/position_entry_name.d.ts +5 -0
- package/dist/types/namespaces/strategy/methods/position_size.d.ts +5 -0
- package/dist/types/namespaces/strategy/methods/short.d.ts +4 -0
- package/dist/types/namespaces/strategy/models/Order.d.ts +31 -0
- package/dist/types/namespaces/strategy/models/Position.d.ts +16 -0
- package/dist/types/namespaces/strategy/models/Trade.d.ts +45 -0
- package/dist/types/namespaces/strategy/opentrades/index.d.ts +10 -0
- package/dist/types/namespaces/strategy/risk/index.d.ts +11 -0
- package/dist/types/namespaces/strategy/strategy.index.d.ts +53 -0
- package/dist/types/namespaces/strategy/types.d.ts +92 -0
- package/dist/types/namespaces/strategy/utils.d.ts +28 -0
- package/dist/types/transpiler/analysis/ScopeManager.d.ts +4 -0
- package/dist/types/transpiler/pineToJS/ast.d.ts +2 -1
- package/dist/types/transpiler/pineToJS/codegen.d.ts +1 -0
- package/dist/types/transpiler/pineToJS/parser.d.ts +3 -1
- package/package.json +11 -5
package/README.md
CHANGED
|
@@ -386,6 +386,22 @@ Please feel free to open issues or submit pull requests.
|
|
|
386
386
|
|
|
387
387
|
---
|
|
388
388
|
|
|
389
|
+
## Contributors
|
|
390
|
+
|
|
391
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for the full guidelines.
|
|
392
|
+
|
|
393
|
+
Thanks to all PineTS contributors:
|
|
394
|
+
|
|
395
|
+
<p align="left">
|
|
396
|
+
<a href="https://github.com/alaa-eddine"><img src="https://avatars.githubusercontent.com/u/1016513?v=4&s=64" width="64" height="64" alt="alaa-eddine" title="alaa-eddine" style="border-radius: 50%;"/></a>
|
|
397
|
+
<a href="https://github.com/dcaoyuan"><img src="https://avatars.githubusercontent.com/u/271571?v=4&s=64" width="64" height="64" alt="dcaoyuan" title="dcaoyuan" style="border-radius: 50%;"/></a>
|
|
398
|
+
<a href="https://github.com/C9Bad"><img src="https://avatars.githubusercontent.com/u/57975070?v=4&s=64" width="64" height="64" alt="C9Bad" title="C9Bad" style="border-radius: 50%;"/></a>
|
|
399
|
+
<a href="https://github.com/aakash-code"><img src="https://avatars.githubusercontent.com/u/71116743?v=4&s=64" width="64" height="64" alt="aakash-code" title="aakash-code" style="border-radius: 50%;"/></a>
|
|
400
|
+
|
|
401
|
+
</p>
|
|
402
|
+
|
|
403
|
+
---
|
|
404
|
+
|
|
389
405
|
## License
|
|
390
406
|
|
|
391
407
|
AGPL-3.0 - See [LICENSE](LICENSE) for details.
|