@gbozee/ultimate 0.0.2-156 → 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,