hedgequantx 2.6.87 → 2.6.88
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 +1 -1
- package/src/pages/algo/ui.js +5 -5
package/package.json
CHANGED
package/src/pages/algo/ui.js
CHANGED
|
@@ -39,7 +39,7 @@ const LOG_COLORS = {
|
|
|
39
39
|
analysis: chalk.magenta
|
|
40
40
|
};
|
|
41
41
|
|
|
42
|
-
// Log type icons - Unicode icons with colors
|
|
42
|
+
// Log type icons - Unicode icons with colors (ALL 8 chars wide for alignment)
|
|
43
43
|
const LOG_ICONS = {
|
|
44
44
|
fill_buy: '⬆ BUY ',
|
|
45
45
|
fill_sell: '⬇ SELL ',
|
|
@@ -48,19 +48,19 @@ const LOG_ICONS = {
|
|
|
48
48
|
win: '✔ WIN ',
|
|
49
49
|
loss: '✘ LOSS ',
|
|
50
50
|
be: '★ BE ',
|
|
51
|
-
entry: '➡ ENTRY',
|
|
51
|
+
entry: '➡ ENTRY ',
|
|
52
52
|
filled: '✔ FILL ',
|
|
53
53
|
connected: '✔ CONN ',
|
|
54
|
-
ready: '✔ READY',
|
|
54
|
+
ready: '✔ READY ',
|
|
55
55
|
error: '✘ ERR ',
|
|
56
56
|
reject: '✘ REJ ',
|
|
57
57
|
info: '➡ INFO ',
|
|
58
58
|
system: '★ SYS ',
|
|
59
59
|
signal: '★ SIG ',
|
|
60
|
-
trade: '✔ TRADE',
|
|
60
|
+
trade: '✔ TRADE ',
|
|
61
61
|
success: '✔ OK ',
|
|
62
62
|
warning: '⬅ WARN ',
|
|
63
|
-
analysis: '★ ANLYS'
|
|
63
|
+
analysis: '★ ANLYS '
|
|
64
64
|
};
|
|
65
65
|
|
|
66
66
|
/**
|