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