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.
Files changed (47) hide show
  1. package/README.md +16 -0
  2. package/dist/pinets.min.browser.es.js +25 -18
  3. package/dist/pinets.min.browser.es.js.map +1 -1
  4. package/dist/pinets.min.browser.js +25 -18
  5. package/dist/pinets.min.browser.js.map +1 -1
  6. package/dist/pinets.min.cjs +25 -18
  7. package/dist/pinets.min.cjs.map +1 -1
  8. package/dist/pinets.min.es.js +25 -18
  9. package/dist/pinets.min.es.js.map +1 -1
  10. package/dist/types/namespaces/Core.d.ts +23 -23
  11. package/dist/types/namespaces/strategy/StrategySimulator.d.ts +84 -0
  12. package/dist/types/namespaces/strategy/closedtrades/index.d.ts +18 -0
  13. package/dist/types/namespaces/strategy/methods/any.d.ts +5 -0
  14. package/dist/types/namespaces/strategy/methods/cancel.d.ts +1 -0
  15. package/dist/types/namespaces/strategy/methods/cancel_all.d.ts +1 -0
  16. package/dist/types/namespaces/strategy/methods/cash.d.ts +5 -0
  17. package/dist/types/namespaces/strategy/methods/close.d.ts +1 -0
  18. package/dist/types/namespaces/strategy/methods/close_all.d.ts +1 -0
  19. package/dist/types/namespaces/strategy/methods/closedtrades.d.ts +4 -0
  20. package/dist/types/namespaces/strategy/methods/entry.d.ts +3 -0
  21. package/dist/types/namespaces/strategy/methods/equity.d.ts +4 -0
  22. package/dist/types/namespaces/strategy/methods/exit.d.ts +3 -0
  23. package/dist/types/namespaces/strategy/methods/fixed.d.ts +5 -0
  24. package/dist/types/namespaces/strategy/methods/long.d.ts +4 -0
  25. package/dist/types/namespaces/strategy/methods/netprofit.d.ts +4 -0
  26. package/dist/types/namespaces/strategy/methods/opentrades.d.ts +4 -0
  27. package/dist/types/namespaces/strategy/methods/order.d.ts +6 -0
  28. package/dist/types/namespaces/strategy/methods/param.d.ts +5 -0
  29. package/dist/types/namespaces/strategy/methods/percent_of_equity.d.ts +5 -0
  30. package/dist/types/namespaces/strategy/methods/position_avg_price.d.ts +5 -0
  31. package/dist/types/namespaces/strategy/methods/position_entry.d.ts +5 -0
  32. package/dist/types/namespaces/strategy/methods/position_entry_name.d.ts +5 -0
  33. package/dist/types/namespaces/strategy/methods/position_size.d.ts +5 -0
  34. package/dist/types/namespaces/strategy/methods/short.d.ts +4 -0
  35. package/dist/types/namespaces/strategy/models/Order.d.ts +31 -0
  36. package/dist/types/namespaces/strategy/models/Position.d.ts +16 -0
  37. package/dist/types/namespaces/strategy/models/Trade.d.ts +45 -0
  38. package/dist/types/namespaces/strategy/opentrades/index.d.ts +10 -0
  39. package/dist/types/namespaces/strategy/risk/index.d.ts +11 -0
  40. package/dist/types/namespaces/strategy/strategy.index.d.ts +53 -0
  41. package/dist/types/namespaces/strategy/types.d.ts +92 -0
  42. package/dist/types/namespaces/strategy/utils.d.ts +28 -0
  43. package/dist/types/transpiler/analysis/ScopeManager.d.ts +4 -0
  44. package/dist/types/transpiler/pineToJS/ast.d.ts +2 -1
  45. package/dist/types/transpiler/pineToJS/codegen.d.ts +1 -0
  46. package/dist/types/transpiler/pineToJS/parser.d.ts +3 -1
  47. 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.