pinets 0.9.15 → 0.9.17

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 (72) hide show
  1. package/README.md +14 -11
  2. package/dist/pinets.min.browser.es.js +24 -23
  3. package/dist/pinets.min.browser.es.js.map +1 -1
  4. package/dist/pinets.min.browser.js +23 -22
  5. package/dist/pinets.min.browser.js.map +1 -1
  6. package/dist/pinets.min.cjs +24 -23
  7. package/dist/pinets.min.cjs.map +1 -1
  8. package/dist/pinets.min.es.js +24 -23
  9. package/dist/pinets.min.es.js.map +1 -1
  10. package/dist/types/Context.class.d.ts +9 -3
  11. package/dist/types/PineTS.class.d.ts +92 -4
  12. package/dist/types/namespaces/Ticker.d.ts +104 -0
  13. package/dist/types/namespaces/line/LineHelper.d.ts +9 -0
  14. package/dist/types/namespaces/linefill/LinefillHelper.d.ts +11 -0
  15. package/dist/types/namespaces/polyline/PolylineObject.d.ts +3 -3
  16. package/dist/types/namespaces/strategy/methods/account_currency.d.ts +5 -0
  17. package/dist/types/namespaces/strategy/methods/any.d.ts +5 -0
  18. package/dist/types/namespaces/strategy/methods/avg_losing_trade.d.ts +6 -0
  19. package/dist/types/namespaces/strategy/methods/avg_losing_trade_percent.d.ts +5 -0
  20. package/dist/types/namespaces/strategy/methods/avg_trade.d.ts +5 -0
  21. package/dist/types/namespaces/strategy/methods/avg_trade_percent.d.ts +6 -0
  22. package/dist/types/namespaces/strategy/methods/avg_winning_trade.d.ts +5 -0
  23. package/dist/types/namespaces/strategy/methods/avg_winning_trade_percent.d.ts +5 -0
  24. package/dist/types/namespaces/strategy/methods/cancel.d.ts +1 -0
  25. package/dist/types/namespaces/strategy/methods/cancel_all.d.ts +6 -0
  26. package/dist/types/namespaces/strategy/methods/cash.d.ts +5 -0
  27. package/dist/types/namespaces/strategy/methods/close.d.ts +1 -0
  28. package/dist/types/namespaces/strategy/methods/close_all.d.ts +1 -0
  29. package/dist/types/namespaces/strategy/methods/closedtrades.d.ts +15 -0
  30. package/dist/types/namespaces/strategy/methods/convert_to_account.d.ts +9 -0
  31. package/dist/types/namespaces/strategy/methods/convert_to_symbol.d.ts +5 -0
  32. package/dist/types/namespaces/strategy/methods/default_entry_qty.d.ts +8 -0
  33. package/dist/types/namespaces/strategy/methods/entry.d.ts +1 -0
  34. package/dist/types/namespaces/strategy/methods/equity.d.ts +5 -0
  35. package/dist/types/namespaces/strategy/methods/eventrades.d.ts +2 -0
  36. package/dist/types/namespaces/strategy/methods/exit.d.ts +1 -0
  37. package/dist/types/namespaces/strategy/methods/fixed.d.ts +5 -0
  38. package/dist/types/namespaces/strategy/methods/grossloss.d.ts +5 -0
  39. package/dist/types/namespaces/strategy/methods/grossloss_percent.d.ts +4 -0
  40. package/dist/types/namespaces/strategy/methods/grossprofit.d.ts +5 -0
  41. package/dist/types/namespaces/strategy/methods/grossprofit_percent.d.ts +4 -0
  42. package/dist/types/namespaces/strategy/methods/initial_capital.d.ts +2 -0
  43. package/dist/types/namespaces/strategy/methods/long.d.ts +4 -0
  44. package/dist/types/namespaces/strategy/methods/losstrades.d.ts +2 -0
  45. package/dist/types/namespaces/strategy/methods/margin_liquidation_price.d.ts +13 -0
  46. package/dist/types/namespaces/strategy/methods/max_contracts_held_all.d.ts +2 -0
  47. package/dist/types/namespaces/strategy/methods/max_contracts_held_long.d.ts +2 -0
  48. package/dist/types/namespaces/strategy/methods/max_contracts_held_short.d.ts +2 -0
  49. package/dist/types/namespaces/strategy/methods/max_drawdown.d.ts +5 -0
  50. package/dist/types/namespaces/strategy/methods/max_drawdown_percent.d.ts +5 -0
  51. package/dist/types/namespaces/strategy/methods/max_runup.d.ts +5 -0
  52. package/dist/types/namespaces/strategy/methods/max_runup_percent.d.ts +5 -0
  53. package/dist/types/namespaces/strategy/methods/netprofit.d.ts +5 -0
  54. package/dist/types/namespaces/strategy/methods/netprofit_percent.d.ts +5 -0
  55. package/dist/types/namespaces/strategy/methods/openprofit.d.ts +5 -0
  56. package/dist/types/namespaces/strategy/methods/openprofit_percent.d.ts +5 -0
  57. package/dist/types/namespaces/strategy/methods/opentrades.d.ts +9 -0
  58. package/dist/types/namespaces/strategy/methods/order.d.ts +6 -0
  59. package/dist/types/namespaces/strategy/methods/param.d.ts +5 -0
  60. package/dist/types/namespaces/strategy/methods/percent_of_equity.d.ts +5 -0
  61. package/dist/types/namespaces/strategy/methods/position_avg_price.d.ts +5 -0
  62. package/dist/types/namespaces/strategy/methods/position_entry_name.d.ts +5 -0
  63. package/dist/types/namespaces/strategy/methods/position_size.d.ts +5 -0
  64. package/dist/types/namespaces/strategy/methods/risk.d.ts +22 -0
  65. package/dist/types/namespaces/strategy/methods/short.d.ts +4 -0
  66. package/dist/types/namespaces/strategy/methods/wintrades.d.ts +2 -0
  67. package/dist/types/namespaces/strategy/strategy.index.d.ts +7 -0
  68. package/dist/types/namespaces/strategy/types.d.ts +176 -0
  69. package/dist/types/namespaces/strategy/utils.d.ts +84 -0
  70. package/dist/types/transpiler/settings.d.ts +1 -0
  71. package/dist/types/transpiler/slicing/buildLtfSlices.d.ts +1 -0
  72. package/package.json +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.