-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.13 KB
/
package.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "tradeloop",
"title": "TradeLoop",
"description": "Powerful tools, built for traders.",
"icon": "command-icon.png",
"author": "ajayvignesh01",
"categories": [
"Finance"
],
"license": "MIT",
"commands": [
{
"name": "position-size",
"title": "Position Size",
"subtitle": "Calculation",
"description": "Calculate position size from stop loss % and risk $",
"mode": "no-view",
"arguments": [
{
"name": "stop_loss",
"placeholder": "Stop Loss %",
"type": "text",
"required": true
},
{
"name": "risk",
"placeholder": "Risk $",
"type": "text",
"required": true
},
{
"name": "order_type",
"placeholder": "Order Type",
"type": "dropdown",
"required": false,
"data": [
{
"title": "None",
"value": "none"
},
{
"title": "Limit",
"value": "limit"
},
{
"title": "Market",
"value": "market"
}
]
}
],
"preferences": [
{
"name": "subtract_fees",
"description": "adjust position size according to fees",
"type": "checkbox",
"required": false,
"default": false,
"label": "Subtract Fees"
},
{
"name": "limit_fees",
"description": "enter number without %",
"type": "textfield",
"title": "Limit Fee (%)",
"required": false,
"default": "0"
},
{
"name": "market_fees",
"description": "enter number without %",
"type": "textfield",
"title": "Market Fee (%)",
"required": false,
"default": "0"
},
{
"name": "default_order_type",
"description": "default order type to calculate fees for",
"type": "dropdown",
"data": [
{
"title": "None",
"value": "none"
},
{
"title": "Limit",
"value": "limit"
},
{
"title": "Market",
"value": "market"
}
],
"title": "Default Order Type",
"required": false,
"default": "none"
}
]
},
{
"name": "trade-calculator",
"title": "Trade Calculator",
"subtitle": "Tool",
"description": "Calculate various aspects of your trade",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.71.4"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/node": "20.8.10",
"@types/react": "18.2.27",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}