forked from ubiquity/ubiquibot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprice.ts
More file actions
64 lines (63 loc) · 1.22 KB
/
Copy pathprice.ts
File metadata and controls
64 lines (63 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { PriceConfig } from "../types";
export const DefaultPriceConfig: PriceConfig = {
baseMultiplier: 1000,
timeLabels: [
{
name: "Time: <1 Hour",
weight: 0.125,
value: 3600,
target: "Price: 12.5+ USD",
},
{
name: "Time: <1 Day",
weight: 1,
value: 3600 * 24,
target: "Price: 100+ USD",
},
{
name: "Time: <1 Week",
weight: 2,
value: 3600 * 24 * 7,
target: "Price: 200+ USD",
},
{
name: "Time: <2 Weeks",
weight: 3,
value: 3600 * 24 * 14,
target: "Price: 300+ USD",
},
{
name: "Time: <1 Month",
weight: 4,
value: 3600 * 24 * 30,
target: "Price: 400+ USD",
},
],
priorityLabels: [
{
name: "Priority: 0 (Normal)",
weight: 1,
target: "Price: 100+ USD",
},
{
name: "Priority: 1 (Medium)",
weight: 2,
target: "Price: 200+ USD",
},
{
name: "Priority: 2 (High)",
weight: 3,
target: "Price: 300+ USD",
},
{
name: "Priority: 3 (Urgent)",
weight: 4,
target: "Price: 400+ USD",
},
{
name: "Priority: 4 (Emergency)",
weight: 5,
target: "Price: 500+ USD",
},
],
};