@cryptorobot.ai/client 0.0.39 → 0.0.40
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/lib/src/client.js +29 -2
- package/lib/src/services/agents/agents.class.d.ts +11 -0
- package/lib/src/services/agents/agents.d.ts +11 -0
- package/lib/src/services/agents/agents.schema.d.ts +2371 -0
- package/lib/src/services/agents/agents.shared.d.ts +13 -0
- package/lib/src/services/agents/agents.shared.js +13 -0
- package/lib/src/services/agents/prepare/prepare.class.d.ts +18 -0
- package/lib/src/services/agents/prepare/prepare.d.ts +11 -0
- package/lib/src/services/agents/prepare/prepare.schema.d.ts +285 -0
- package/lib/src/services/agents/prepare/prepare.shared.d.ts +13 -0
- package/lib/src/services/agents/prepare/prepare.shared.js +13 -0
- package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +11 -0
- package/lib/src/services/agents/sessions/conversations/conversations.d.ts +11 -0
- package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +2561 -0
- package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +13 -0
- package/lib/src/services/agents/sessions/conversations/conversations.shared.js +13 -0
- package/lib/src/services/agents/sessions/sessions.class.d.ts +11 -0
- package/lib/src/services/agents/sessions/sessions.d.ts +11 -0
- package/lib/src/services/agents/sessions/sessions.schema.d.ts +803 -0
- package/lib/src/services/agents/sessions/sessions.shared.d.ts +13 -0
- package/lib/src/services/agents/sessions/sessions.shared.js +13 -0
- package/lib/src/services/events/events.class.d.ts +11 -0
- package/lib/src/services/events/events.d.ts +11 -0
- package/lib/src/services/events/events.schema.d.ts +786 -0
- package/lib/src/services/events/events.shared.d.ts +13 -0
- package/lib/src/services/events/events.shared.js +13 -0
- package/lib/src/services/events/triggers/triggers.class.d.ts +11 -0
- package/lib/src/services/events/triggers/triggers.d.ts +11 -0
- package/lib/src/services/events/triggers/triggers.schema.d.ts +1582 -0
- package/lib/src/services/events/triggers/triggers.shared.d.ts +13 -0
- package/lib/src/services/events/triggers/triggers.shared.js +13 -0
- package/lib/src/services/events/types/types.class.d.ts +11 -0
- package/lib/src/services/events/types/types.d.ts +11 -0
- package/lib/src/services/events/types/types.schema.d.ts +688 -0
- package/lib/src/services/events/types/types.shared.d.ts +13 -0
- package/lib/src/services/events/types/types.shared.js +13 -0
- package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
- package/lib/src/services/exchanges/download/download.shared.js +1 -1
- package/lib/src/services/extensions/extensions.class.d.ts +11 -0
- package/lib/src/services/extensions/extensions.d.ts +11 -0
- package/lib/src/services/extensions/extensions.schema.d.ts +1275 -0
- package/lib/src/services/extensions/extensions.shared.d.ts +13 -0
- package/lib/src/services/extensions/extensions.shared.js +13 -0
- package/lib/src/services/keys/KeysService.d.ts +13 -0
- package/lib/src/services/keys/keys.class.d.ts +11 -0
- package/lib/src/services/keys/keys.d.ts +11 -0
- package/lib/src/services/keys/keys.schema.d.ts +719 -0
- package/lib/src/services/keys/keys.shared.d.ts +14 -0
- package/lib/src/services/keys/keys.shared.js +13 -0
- package/lib/src/services/messages/messages.schema.d.ts +4 -4
- package/lib/src/services/restricted/restricted.class.d.ts +26 -0
- package/lib/src/services/restricted/restricted.d.ts +21 -0
- package/lib/src/services/restricted/restricted.shared.d.ts +13 -0
- package/lib/src/services/restricted/restricted.shared.js +13 -0
- package/lib/src/services/strategies/backtest/results/results.schema.d.ts +28 -28
- package/lib/src/services/strategies/generate/generate.class.d.ts +11 -0
- package/lib/src/services/strategies/generate/generate.d.ts +11 -0
- package/lib/src/services/strategies/generate/generate.schema.d.ts +429 -0
- package/lib/src/services/strategies/generate/generate.shared.d.ts +13 -0
- package/lib/src/services/strategies/generate/generate.shared.js +13 -0
- package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +12 -4
- package/lib/src/services/strategies/indicators/indicators.schema.d.ts +177 -97
- package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +4 -4
- package/lib/src/services/strategies/strategies.schema.d.ts +2708 -303
- package/lib/src/services/strategies/templates/templates.schema.d.ts +2142 -12
- package/lib/src/services/tools/openapi/openapi.class.d.ts +34 -0
- package/lib/src/services/tools/openapi/openapi.d.ts +10 -0
- package/lib/src/services/tools/openapi/openapi.shared.d.ts +13 -0
- package/lib/src/services/tools/openapi/openapi.shared.js +13 -0
- package/lib/src/services/tools/tools.class.d.ts +11 -0
- package/lib/src/services/tools/tools.d.ts +11 -0
- package/lib/src/services/tools/tools.schema.d.ts +269 -0
- package/lib/src/services/tools/tools.shared.d.ts +13 -0
- package/lib/src/services/tools/tools.shared.js +13 -0
- package/lib/src/services/traders/pods/api/api.schema.d.ts +1284 -188
- package/lib/src/services/traders/pods/events/events.schema.d.ts +4 -4
- package/lib/src/services/traders/pods/pods.schema.d.ts +1280 -184
- package/lib/src/services/traders/traders.schema.d.ts +4 -4
- package/lib/src/services/users/users.class.d.ts +2 -2
- package/lib/src/services/users/users.schema.d.ts +4 -4
- package/package.json +1 -1
|
@@ -2,17 +2,27 @@ import type { Static } from '@feathersjs/typebox';
|
|
|
2
2
|
import type { HookContext } from '../../../declarations';
|
|
3
3
|
import type { StrategiesIndicatorsService } from './indicators.class';
|
|
4
4
|
export declare const strategiesIndicatorsSchema: import("@feathersjs/typebox").TObject<{
|
|
5
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
5
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6
6
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
7
|
+
group: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
8
|
+
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
9
|
+
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"qtpylib">, import("@feathersjs/typebox").TLiteral<"talib">]>>;
|
|
7
10
|
alias: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
11
|
+
function: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
12
|
+
requires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
|
|
13
|
+
inputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
14
|
+
optInputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
15
|
+
outputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
|
|
16
|
+
defaults: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
17
|
+
python: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
8
18
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
9
|
-
|
|
10
|
-
|
|
19
|
+
assign: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
20
|
+
predeclare: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
11
21
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
12
22
|
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
13
23
|
field: import("@feathersjs/typebox").TString<string>;
|
|
14
24
|
space: import("@feathersjs/typebox").TString<string>;
|
|
15
|
-
type: import("@feathersjs/typebox").TLiteral<"IntParameter">;
|
|
25
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
16
26
|
min: import("@feathersjs/typebox").TInteger;
|
|
17
27
|
max: import("@feathersjs/typebox").TInteger;
|
|
18
28
|
default: import("@feathersjs/typebox").TInteger;
|
|
@@ -21,87 +31,137 @@ export declare const strategiesIndicatorsSchema: import("@feathersjs/typebox").T
|
|
|
21
31
|
export type StrategiesIndicators = Static<typeof strategiesIndicatorsSchema>;
|
|
22
32
|
export declare const strategiesIndicatorsValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
23
33
|
export declare const strategiesIndicatorsResolver: import("@feathersjs/schema").Resolver<{
|
|
24
|
-
|
|
34
|
+
function?: string | undefined;
|
|
25
35
|
name?: string | undefined;
|
|
26
36
|
hyperopt?: {
|
|
27
37
|
default: number;
|
|
28
38
|
max: number;
|
|
29
39
|
min: number;
|
|
30
|
-
type: "IntParameter";
|
|
40
|
+
type: "IntParameter" | "DecimalParameter" | "BooleanParameter" | "CategoricalParameter";
|
|
31
41
|
field: string;
|
|
32
42
|
space: string;
|
|
33
43
|
}[] | undefined;
|
|
34
|
-
|
|
44
|
+
defaults?: {} | undefined;
|
|
45
|
+
_id?: string | undefined;
|
|
35
46
|
createdAt?: any;
|
|
36
47
|
description?: string | undefined;
|
|
37
|
-
options?: any;
|
|
38
48
|
alias?: string | undefined;
|
|
49
|
+
group?: string | undefined;
|
|
50
|
+
optInputs?: any[] | undefined;
|
|
51
|
+
options?: any;
|
|
52
|
+
inputs?: any[] | undefined;
|
|
53
|
+
outputs?: string[] | undefined;
|
|
54
|
+
source?: "qtpylib" | "talib" | undefined;
|
|
55
|
+
requires?: string[] | undefined;
|
|
56
|
+
python?: string | undefined;
|
|
57
|
+
assign?: string | undefined;
|
|
58
|
+
predeclare?: boolean | undefined;
|
|
39
59
|
}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|
|
40
60
|
export declare const strategiesIndicatorsExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
41
|
-
|
|
61
|
+
function?: string | undefined;
|
|
42
62
|
name?: string | undefined;
|
|
43
63
|
hyperopt?: {
|
|
44
64
|
default: number;
|
|
45
65
|
max: number;
|
|
46
66
|
min: number;
|
|
47
|
-
type: "IntParameter";
|
|
67
|
+
type: "IntParameter" | "DecimalParameter" | "BooleanParameter" | "CategoricalParameter";
|
|
48
68
|
field: string;
|
|
49
69
|
space: string;
|
|
50
70
|
}[] | undefined;
|
|
51
|
-
|
|
71
|
+
defaults?: {} | undefined;
|
|
72
|
+
_id?: string | undefined;
|
|
52
73
|
createdAt?: any;
|
|
53
74
|
description?: string | undefined;
|
|
54
|
-
options?: any;
|
|
55
75
|
alias?: string | undefined;
|
|
76
|
+
group?: string | undefined;
|
|
77
|
+
optInputs?: any[] | undefined;
|
|
78
|
+
options?: any;
|
|
79
|
+
inputs?: any[] | undefined;
|
|
80
|
+
outputs?: string[] | undefined;
|
|
81
|
+
source?: "qtpylib" | "talib" | undefined;
|
|
82
|
+
requires?: string[] | undefined;
|
|
83
|
+
python?: string | undefined;
|
|
84
|
+
assign?: string | undefined;
|
|
85
|
+
predeclare?: boolean | undefined;
|
|
56
86
|
}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|
|
57
87
|
export declare const strategiesIndicatorsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
58
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
88
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
59
89
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
90
|
+
group: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
91
|
+
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
92
|
+
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"qtpylib">, import("@feathersjs/typebox").TLiteral<"talib">]>>;
|
|
60
93
|
alias: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
94
|
+
function: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
95
|
+
requires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
|
|
96
|
+
inputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
97
|
+
optInputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
98
|
+
outputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
|
|
99
|
+
defaults: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
100
|
+
python: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
61
101
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
62
|
-
|
|
63
|
-
|
|
102
|
+
assign: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
103
|
+
predeclare: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
64
104
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
65
105
|
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
66
106
|
field: import("@feathersjs/typebox").TString<string>;
|
|
67
107
|
space: import("@feathersjs/typebox").TString<string>;
|
|
68
|
-
type: import("@feathersjs/typebox").TLiteral<"IntParameter">;
|
|
108
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
69
109
|
min: import("@feathersjs/typebox").TInteger;
|
|
70
110
|
max: import("@feathersjs/typebox").TInteger;
|
|
71
111
|
default: import("@feathersjs/typebox").TInteger;
|
|
72
112
|
}>>>;
|
|
73
|
-
}>, ["_id", "name", "alias", "
|
|
113
|
+
}>, ["_id", "name", "alias", "hyperopt", "description", "options"]>;
|
|
74
114
|
export type StrategiesIndicatorsData = Static<typeof strategiesIndicatorsDataSchema>;
|
|
75
115
|
export declare const strategiesIndicatorsDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
76
116
|
export declare const strategiesIndicatorsDataResolver: import("@feathersjs/schema").Resolver<{
|
|
77
|
-
|
|
117
|
+
function?: string | undefined;
|
|
78
118
|
name?: string | undefined;
|
|
79
119
|
hyperopt?: {
|
|
80
120
|
default: number;
|
|
81
121
|
max: number;
|
|
82
122
|
min: number;
|
|
83
|
-
type: "IntParameter";
|
|
123
|
+
type: "IntParameter" | "DecimalParameter" | "BooleanParameter" | "CategoricalParameter";
|
|
84
124
|
field: string;
|
|
85
125
|
space: string;
|
|
86
126
|
}[] | undefined;
|
|
87
|
-
|
|
127
|
+
defaults?: {} | undefined;
|
|
128
|
+
_id?: string | undefined;
|
|
88
129
|
createdAt?: any;
|
|
89
130
|
description?: string | undefined;
|
|
90
|
-
options?: any;
|
|
91
131
|
alias?: string | undefined;
|
|
132
|
+
group?: string | undefined;
|
|
133
|
+
optInputs?: any[] | undefined;
|
|
134
|
+
options?: any;
|
|
135
|
+
inputs?: any[] | undefined;
|
|
136
|
+
outputs?: string[] | undefined;
|
|
137
|
+
source?: "qtpylib" | "talib" | undefined;
|
|
138
|
+
requires?: string[] | undefined;
|
|
139
|
+
python?: string | undefined;
|
|
140
|
+
assign?: string | undefined;
|
|
141
|
+
predeclare?: boolean | undefined;
|
|
92
142
|
}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|
|
93
143
|
export declare const strategiesIndicatorsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
94
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
144
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
95
145
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
146
|
+
group: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
147
|
+
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
148
|
+
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"qtpylib">, import("@feathersjs/typebox").TLiteral<"talib">]>>;
|
|
96
149
|
alias: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
150
|
+
function: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
151
|
+
requires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
|
|
152
|
+
inputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
153
|
+
optInputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
154
|
+
outputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
|
|
155
|
+
defaults: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
156
|
+
python: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
97
157
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
98
|
-
|
|
99
|
-
|
|
158
|
+
assign: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
159
|
+
predeclare: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
100
160
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
101
161
|
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
102
162
|
field: import("@feathersjs/typebox").TString<string>;
|
|
103
163
|
space: import("@feathersjs/typebox").TString<string>;
|
|
104
|
-
type: import("@feathersjs/typebox").TLiteral<"IntParameter">;
|
|
164
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
105
165
|
min: import("@feathersjs/typebox").TInteger;
|
|
106
166
|
max: import("@feathersjs/typebox").TInteger;
|
|
107
167
|
default: import("@feathersjs/typebox").TInteger;
|
|
@@ -110,34 +170,54 @@ export declare const strategiesIndicatorsPatchSchema: import("@feathersjs/typebo
|
|
|
110
170
|
export type StrategiesIndicatorsPatch = Static<typeof strategiesIndicatorsPatchSchema>;
|
|
111
171
|
export declare const strategiesIndicatorsPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
112
172
|
export declare const strategiesIndicatorsPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
113
|
-
|
|
173
|
+
function?: string | undefined;
|
|
114
174
|
name?: string | undefined;
|
|
115
175
|
hyperopt?: {
|
|
116
176
|
default: number;
|
|
117
177
|
max: number;
|
|
118
178
|
min: number;
|
|
119
|
-
type: "IntParameter";
|
|
179
|
+
type: "IntParameter" | "DecimalParameter" | "BooleanParameter" | "CategoricalParameter";
|
|
120
180
|
field: string;
|
|
121
181
|
space: string;
|
|
122
182
|
}[] | undefined;
|
|
123
|
-
|
|
183
|
+
defaults?: {} | undefined;
|
|
184
|
+
_id?: string | undefined;
|
|
124
185
|
createdAt?: any;
|
|
125
186
|
description?: string | undefined;
|
|
126
|
-
options?: any;
|
|
127
187
|
alias?: string | undefined;
|
|
188
|
+
group?: string | undefined;
|
|
189
|
+
optInputs?: any[] | undefined;
|
|
190
|
+
options?: any;
|
|
191
|
+
inputs?: any[] | undefined;
|
|
192
|
+
outputs?: string[] | undefined;
|
|
193
|
+
source?: "qtpylib" | "talib" | undefined;
|
|
194
|
+
requires?: string[] | undefined;
|
|
195
|
+
python?: string | undefined;
|
|
196
|
+
assign?: string | undefined;
|
|
197
|
+
predeclare?: boolean | undefined;
|
|
128
198
|
}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|
|
129
199
|
export declare const strategiesIndicatorsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
130
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
200
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
131
201
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
202
|
+
group: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
203
|
+
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
204
|
+
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"qtpylib">, import("@feathersjs/typebox").TLiteral<"talib">]>>;
|
|
132
205
|
alias: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
206
|
+
function: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
207
|
+
requires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
|
|
208
|
+
inputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
209
|
+
optInputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
210
|
+
outputs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
|
|
211
|
+
defaults: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
212
|
+
python: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
133
213
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
134
|
-
|
|
135
|
-
|
|
214
|
+
assign: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
215
|
+
predeclare: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
136
216
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
137
217
|
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
138
218
|
field: import("@feathersjs/typebox").TString<string>;
|
|
139
219
|
space: import("@feathersjs/typebox").TString<string>;
|
|
140
|
-
type: import("@feathersjs/typebox").TLiteral<"IntParameter">;
|
|
220
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
141
221
|
min: import("@feathersjs/typebox").TInteger;
|
|
142
222
|
max: import("@feathersjs/typebox").TInteger;
|
|
143
223
|
default: import("@feathersjs/typebox").TInteger;
|
|
@@ -163,14 +243,14 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
163
243
|
}>, import("@feathersjs/typebox").TObject<{
|
|
164
244
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
165
245
|
} | undefined>]>>]>>;
|
|
166
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
167
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
168
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
169
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
170
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
171
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
172
|
-
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
173
|
-
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
246
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
247
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
248
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
249
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
250
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
251
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
252
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
253
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
174
254
|
}>, import("@feathersjs/typebox").TObject<{
|
|
175
255
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
176
256
|
} | undefined>]>>]>>;
|
|
@@ -187,14 +267,14 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
187
267
|
}>, import("@feathersjs/typebox").TObject<{
|
|
188
268
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
189
269
|
} | undefined>]>>]>>;
|
|
190
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
191
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
192
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
193
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
194
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
195
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
196
|
-
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
197
|
-
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
270
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
271
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
272
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
273
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
274
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
275
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
276
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
277
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
198
278
|
}>, import("@feathersjs/typebox").TObject<{
|
|
199
279
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
200
280
|
} | undefined>]>>]>>;
|
|
@@ -212,14 +292,14 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
212
292
|
}>, import("@feathersjs/typebox").TObject<{
|
|
213
293
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
214
294
|
} | undefined>]>>]>>;
|
|
215
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
216
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
217
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
218
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
219
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
220
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
221
|
-
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
222
|
-
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
295
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
296
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
297
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
298
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
299
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
300
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
301
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
302
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
223
303
|
}>, import("@feathersjs/typebox").TObject<{
|
|
224
304
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
225
305
|
} | undefined>]>>]>>;
|
|
@@ -236,14 +316,14 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
236
316
|
}>, import("@feathersjs/typebox").TObject<{
|
|
237
317
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
238
318
|
} | undefined>]>>]>>;
|
|
239
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
240
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
241
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
242
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
243
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
244
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
245
|
-
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
246
|
-
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
319
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
320
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
321
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
322
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
323
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
324
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
325
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
326
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
247
327
|
}>, import("@feathersjs/typebox").TObject<{
|
|
248
328
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
249
329
|
} | undefined>]>>]>>;
|
|
@@ -268,14 +348,14 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
268
348
|
$in: string | string[];
|
|
269
349
|
$nin: string | string[];
|
|
270
350
|
} & {}> | undefined;
|
|
271
|
-
_id?: string |
|
|
272
|
-
$gt?: string |
|
|
273
|
-
$gte?: string |
|
|
274
|
-
$lt?: string |
|
|
275
|
-
$lte?: string |
|
|
276
|
-
$ne?: string |
|
|
277
|
-
$in: string |
|
|
278
|
-
$nin: string |
|
|
351
|
+
_id?: string | Partial<{
|
|
352
|
+
$gt?: string | undefined;
|
|
353
|
+
$gte?: string | undefined;
|
|
354
|
+
$lt?: string | undefined;
|
|
355
|
+
$lte?: string | undefined;
|
|
356
|
+
$ne?: string | undefined;
|
|
357
|
+
$in: string | string[];
|
|
358
|
+
$nin: string | string[];
|
|
279
359
|
} & {}> | undefined;
|
|
280
360
|
} | {
|
|
281
361
|
$or: {
|
|
@@ -288,14 +368,14 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
288
368
|
$in: string | string[];
|
|
289
369
|
$nin: string | string[];
|
|
290
370
|
} & {}> | undefined;
|
|
291
|
-
_id?: string |
|
|
292
|
-
$gt?: string |
|
|
293
|
-
$gte?: string |
|
|
294
|
-
$lt?: string |
|
|
295
|
-
$lte?: string |
|
|
296
|
-
$ne?: string |
|
|
297
|
-
$in: string |
|
|
298
|
-
$nin: string |
|
|
371
|
+
_id?: string | Partial<{
|
|
372
|
+
$gt?: string | undefined;
|
|
373
|
+
$gte?: string | undefined;
|
|
374
|
+
$lt?: string | undefined;
|
|
375
|
+
$lte?: string | undefined;
|
|
376
|
+
$ne?: string | undefined;
|
|
377
|
+
$in: string | string[];
|
|
378
|
+
$nin: string | string[];
|
|
299
379
|
} & {}> | undefined;
|
|
300
380
|
}[];
|
|
301
381
|
})[];
|
|
@@ -309,14 +389,14 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
309
389
|
$in: string | string[];
|
|
310
390
|
$nin: string | string[];
|
|
311
391
|
} & {}> | undefined;
|
|
312
|
-
_id?: string |
|
|
313
|
-
$gt?: string |
|
|
314
|
-
$gte?: string |
|
|
315
|
-
$lt?: string |
|
|
316
|
-
$lte?: string |
|
|
317
|
-
$ne?: string |
|
|
318
|
-
$in: string |
|
|
319
|
-
$nin: string |
|
|
392
|
+
_id?: string | Partial<{
|
|
393
|
+
$gt?: string | undefined;
|
|
394
|
+
$gte?: string | undefined;
|
|
395
|
+
$lt?: string | undefined;
|
|
396
|
+
$lte?: string | undefined;
|
|
397
|
+
$ne?: string | undefined;
|
|
398
|
+
$in: string | string[];
|
|
399
|
+
$nin: string | string[];
|
|
320
400
|
} & {}> | undefined;
|
|
321
401
|
}[];
|
|
322
402
|
}> & {
|
|
@@ -329,13 +409,13 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
329
409
|
$in: string | string[];
|
|
330
410
|
$nin: string | string[];
|
|
331
411
|
} & {}> | undefined;
|
|
332
|
-
_id?: string |
|
|
333
|
-
$gt?: string |
|
|
334
|
-
$gte?: string |
|
|
335
|
-
$lt?: string |
|
|
336
|
-
$lte?: string |
|
|
337
|
-
$ne?: string |
|
|
338
|
-
$in: string |
|
|
339
|
-
$nin: string |
|
|
412
|
+
_id?: string | Partial<{
|
|
413
|
+
$gt?: string | undefined;
|
|
414
|
+
$gte?: string | undefined;
|
|
415
|
+
$lt?: string | undefined;
|
|
416
|
+
$lte?: string | undefined;
|
|
417
|
+
$ne?: string | undefined;
|
|
418
|
+
$in: string | string[];
|
|
419
|
+
$nin: string | string[];
|
|
340
420
|
} & {}> | undefined;
|
|
341
421
|
} & {}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|
|
@@ -38,8 +38,8 @@ export declare const strategiesIndicatorsTalibResolver: import("@feathersjs/sche
|
|
|
38
38
|
description: string;
|
|
39
39
|
alias: string;
|
|
40
40
|
group: string;
|
|
41
|
-
inputs: any[];
|
|
42
41
|
optInputs: any[];
|
|
42
|
+
inputs: any[];
|
|
43
43
|
outputs: any[];
|
|
44
44
|
}, HookContext<StrategiesIndicatorsTalibService<import("./talib.class").StrategiesIndicatorsTalibParams>>>;
|
|
45
45
|
export declare const strategiesIndicatorsTalibExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
@@ -57,8 +57,8 @@ export declare const strategiesIndicatorsTalibExternalResolver: import("@feather
|
|
|
57
57
|
description: string;
|
|
58
58
|
alias: string;
|
|
59
59
|
group: string;
|
|
60
|
-
inputs: any[];
|
|
61
60
|
optInputs: any[];
|
|
61
|
+
inputs: any[];
|
|
62
62
|
outputs: any[];
|
|
63
63
|
}, HookContext<StrategiesIndicatorsTalibService<import("./talib.class").StrategiesIndicatorsTalibParams>>>;
|
|
64
64
|
export declare const strategiesIndicatorsTalibDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
@@ -98,8 +98,8 @@ export declare const strategiesIndicatorsTalibDataResolver: import("@feathersjs/
|
|
|
98
98
|
description: string;
|
|
99
99
|
alias: string;
|
|
100
100
|
group: string;
|
|
101
|
-
inputs: any[];
|
|
102
101
|
optInputs: any[];
|
|
102
|
+
inputs: any[];
|
|
103
103
|
outputs: any[];
|
|
104
104
|
}, HookContext<StrategiesIndicatorsTalibService<import("./talib.class").StrategiesIndicatorsTalibParams>>>;
|
|
105
105
|
export declare const strategiesIndicatorsTalibPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
@@ -139,8 +139,8 @@ export declare const strategiesIndicatorsTalibPatchResolver: import("@feathersjs
|
|
|
139
139
|
description: string;
|
|
140
140
|
alias: string;
|
|
141
141
|
group: string;
|
|
142
|
-
inputs: any[];
|
|
143
142
|
optInputs: any[];
|
|
143
|
+
inputs: any[];
|
|
144
144
|
outputs: any[];
|
|
145
145
|
}, HookContext<StrategiesIndicatorsTalibService<import("./talib.class").StrategiesIndicatorsTalibParams>>>;
|
|
146
146
|
export declare const strategiesIndicatorsTalibQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|