aiden-shared-calculations-unified 1.0.19 → 1.0.20

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.
@@ -10,7 +10,7 @@ class CapitalDeploymentStrategy {
10
10
  constructor() {
11
11
  this.lookbackDays = 7;
12
12
  this.correlationWindow = 3; // How many days after a signal to link behavior
13
- this.depositSignalThreshold = -1.0; // From crowd_cash_flow_proxy
13
+ this.depositSignalThreshold = -0.005; // Formerly -1.0
14
14
  }
15
15
 
16
16
  _getDateStr(baseDate, daysAgo) {
@@ -4,7 +4,7 @@ class CashFlowDeployment {
4
4
  constructor() {
5
5
  this.lookbackDays = 7;
6
6
  this.correlationWindow = 3;
7
- this.depositSignalThreshold = -1.0;
7
+ this.depositSignalThreshold = -0.005; // Formerly -1.0
8
8
  }
9
9
 
10
10
  _getDateStr(baseDate, daysAgo) {
@@ -11,7 +11,7 @@ class CashFlowLiquidation {
11
11
  this.lookbackDays = 7;
12
12
  this.correlationWindow = 3;
13
13
  // A positive value signals a net crowd withdrawal
14
- this.withdrawalSignalThreshold = 1.0;
14
+ this.withdrawalSignalThreshold = 0.005; // Formerly 1.0
15
15
  }
16
16
 
17
17
  _getDateStr(baseDate, daysAgo) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiden-shared-calculations-unified",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "Shared calculation modules for the BullTrackers Computation System.",
5
5
  "main": "index.js",
6
6
  "files": [