hedgequantx 2.9.110 → 2.9.111

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.9.110",
3
+ "version": "2.9.111",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -469,7 +469,7 @@ const executeAlgo = async ({ service, account, contract, config, strategy: strat
469
469
  } catch (e) { /* silent */ }
470
470
  };
471
471
 
472
- const refreshInterval = setInterval(() => { if (running) ui.render(stats); }, 250);
472
+ const refreshInterval = setInterval(() => { if (running) ui.render(stats); }, 100);
473
473
  const pnlInterval = setInterval(() => { if (running) pollPnL(); }, 2000);
474
474
  pollPnL();
475
475