@clonegod/ttd-core 3.1.61 → 3.1.62
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/dist/quote/depth_tier.js +1 -1
- package/package.json +1 -1
package/dist/quote/depth_tier.js
CHANGED
|
@@ -11,7 +11,7 @@ function toOrderbookEntry(q) {
|
|
|
11
11
|
tiers: q.tiers.map(t => ({ pct: t.pct, price: t.price, amount: t.amount, usdValue: t.amount_in_usd })),
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
-
const PCT_LEVEL_DEFAULT = [0.05, 0.1, 0.
|
|
14
|
+
const PCT_LEVEL_DEFAULT = [0.05, 0.1, 0.2, 0.3, 0.5];
|
|
15
15
|
const PCT_LEVEL_CAP = 1.0;
|
|
16
16
|
exports.DEFAULT_TIER_PCT = 0.2;
|
|
17
17
|
let _pctLevelsCache;
|