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
use ;
// ── screener_recommend_strategies ─────────────────────────────────
/// Response for [`crate::ScreenerContext::screener_recommend_strategies`]
///
/// The raw data contains a list of recommended built-in screener
/// strategies. The exact structure varies so the payload is
/// preserved as raw JSON.
// ── screener_user_strategies ──────────────────────────────────────
/// Response for [`crate::ScreenerContext::screener_user_strategies`]
///
/// The raw data contains the current user's saved screener strategies.
/// The exact structure varies so the payload is preserved as raw JSON.
// ── screener_strategy ─────────────────────────────────────────────
/// Response for [`crate::ScreenerContext::screener_strategy`]
///
/// The raw data contains detail for one screener strategy.
/// The exact structure varies so the payload is preserved as raw JSON.
// ── screener_condition ───────────────────────────────────────────
/// A filter condition for [`crate::ScreenerContext::screener_search`] Mode B.
///
/// `key` is the indicator key (without the `filter_` prefix, e.g. `"pettm"`).
/// `min` / `max` bound the range; leave empty for an open bound.
/// `tech_values` is used for technical indicators (e.g. MACD/RSI); pass an
/// empty map `{}` for fundamental indicators.
// ── screener_search ───────────────────────────────────────────────
/// Response for [`crate::ScreenerContext::screener_search`]
///
/// The raw data contains a page of screened security results.
/// The exact structure varies so the payload is preserved as raw JSON.
// ── screener_indicators ───────────────────────────────────────────
/// Response for [`crate::ScreenerContext::screener_indicators`]
///
/// The raw data contains all available screener indicator definitions.
/// The exact structure varies so the payload is preserved as raw JSON.