@gbozee/ultimate 0.0.2-157 → 0.0.2-158

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.
@@ -277,6 +277,7 @@ export type GlobalConfig = {
277
277
  risk_reward: number;
278
278
  reverse_factor: number;
279
279
  leverage?: number;
280
+ max_quantity?: number;
280
281
  };
281
282
  export interface BaseSystemFields {
282
283
  id: string;
@@ -1539,7 +1539,8 @@ function get_app_config_and_max_size(config, payload) {
1539
1539
  price_places: config.price_places,
1540
1540
  decimal_places: config.decimal_places,
1541
1541
  min_profit: config.profit_percent * config.profit / 100,
1542
- symbol: config.symbol
1542
+ symbol: config.symbol,
1543
+ max_quantity: config.max_quantity
1543
1544
  };
1544
1545
  const initialResult = sortedBuildConfig(app_config, {
1545
1546
  entry: app_config.entry,
package/dist/index.cjs CHANGED
@@ -56934,7 +56934,8 @@ function get_app_config_and_max_size(config2, payload) {
56934
56934
  price_places: config2.price_places,
56935
56935
  decimal_places: config2.decimal_places,
56936
56936
  min_profit: config2.profit_percent * config2.profit / 100,
56937
- symbol: config2.symbol
56937
+ symbol: config2.symbol,
56938
+ max_quantity: config2.max_quantity
56938
56939
  };
56939
56940
  const initialResult = sortedBuildConfig(app_config, {
56940
56941
  entry: app_config.entry,
package/dist/index.d.ts CHANGED
@@ -240,6 +240,7 @@ export type GlobalConfig = {
240
240
  risk_reward: number;
241
241
  reverse_factor: number;
242
242
  leverage?: number;
243
+ max_quantity?: number;
243
244
  };
244
245
  interface Position$1 {
245
246
  id: number;
package/dist/index.js CHANGED
@@ -56880,7 +56880,8 @@ function get_app_config_and_max_size(config2, payload) {
56880
56880
  price_places: config2.price_places,
56881
56881
  decimal_places: config2.decimal_places,
56882
56882
  min_profit: config2.profit_percent * config2.profit / 100,
56883
- symbol: config2.symbol
56883
+ symbol: config2.symbol,
56884
+ max_quantity: config2.max_quantity
56884
56885
  };
56885
56886
  const initialResult = sortedBuildConfig(app_config, {
56886
56887
  entry: app_config.entry,
@@ -63614,7 +63614,8 @@ function get_app_config_and_max_size(config2, payload) {
63614
63614
  price_places: config2.price_places,
63615
63615
  decimal_places: config2.decimal_places,
63616
63616
  min_profit: config2.profit_percent * config2.profit / 100,
63617
- symbol: config2.symbol
63617
+ symbol: config2.symbol,
63618
+ max_quantity: config2.max_quantity
63618
63619
  };
63619
63620
  const initialResult = sortedBuildConfig(app_config, {
63620
63621
  entry: app_config.entry,
@@ -63591,7 +63591,8 @@ function get_app_config_and_max_size(config2, payload) {
63591
63591
  price_places: config2.price_places,
63592
63592
  decimal_places: config2.decimal_places,
63593
63593
  min_profit: config2.profit_percent * config2.profit / 100,
63594
- symbol: config2.symbol
63594
+ symbol: config2.symbol,
63595
+ max_quantity: config2.max_quantity
63595
63596
  };
63596
63597
  const initialResult = sortedBuildConfig(app_config, {
63597
63598
  entry: app_config.entry,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gbozee/ultimate",
3
3
  "type": "module",
4
- "version": "0.0.2-157",
4
+ "version": "0.0.2-158",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",