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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
use crate::common::validate_inputs;
pub use crate::indicator_types::TIndicatorState;
use crate::types::{DisplayGroup, DisplayType, IndicatorError, IndicatorType, Info};
use serde::{Deserialize, Serialize};
/// Number of input price series required by this indicator.
pub const INPUTS_WIDTH: usize = 3;
/// Number of option parameters required by this indicator.
pub const OPTIONS_WIDTH: usize = 0;
/// SIMD-parallel variant that processes `N` assets with identical options simultaneously.
/// Requires the `simd_assets` Cargo feature. See [`by_assets`] for the module form.
#[cfg(feature = "simd_assets")]
pub use crate::indicators::simd_indicators::wad_simd::indicator_by_assets;
// Sub-module exports with common naming
/// Convenience module that re-exports [`indicator_by_assets`] as `indicator`,
/// allowing SIMD multi-asset computation to be used as a drop-in replacement
/// for the standard single-asset [`indicator`] function.
/// Requires the `simd_assets` Cargo feature.
#[cfg(feature = "simd_assets")]
pub mod by_assets {
/// Processes `N` assets in parallel with shared options.
pub use crate::indicators::simd_indicators::wad_simd::indicator_by_assets as indicator;
}
pub const INFO: Info = Info {
name: "wad",
full_name: "WAD Indicator",
indicator_type: IndicatorType::Trend,
inputs: &["high", "low", "close"],
options: &[],
outputs: &["wad"],
optional_outputs: &[],
display_groups: &[DisplayGroup {
offset: None,
id: "wad",
label: "WAD",
display_type: DisplayType::Indicator,
outputs: &["wad"],
}],
};
#[derive(Serialize, Deserialize)]
pub struct IndicatorState {
pub prev_close: f64,
pub wad: f64,
}
impl IndicatorState {
pub fn new(prev_close: f64, wad: f64) -> Self {
Self { prev_close, wad }
}
#[inline(always)]
pub fn calc(&mut self, high: f64, low: f64, close: f64) -> f64 {
self.wad += if close > self.prev_close {
close - self.prev_close.min(low)
} else if close < self.prev_close {
close - self.prev_close.max(high)
} else {
0.0
};
self.prev_close = close;
self.wad
}
}
impl TIndicatorState<3> for IndicatorState {
fn batch_indicator(
&mut self,
inputs: &[&[f64]; INPUTS_WIDTH],
_optional_outputs: Option<&[bool]>,
) -> Result<Vec<Vec<f64>>, IndicatorError> {
validate_inputs(inputs, 1)?;
let mut wad_line = crate::uninit_vec!(f64, inputs[0].len());
cycle(inputs[0], inputs[1], inputs[2], self, &mut wad_line);
Ok(vec![wad_line])
}
}
/// Returns the minimum amount of data required for the WAD indicator.
///
/// # Arguments
///
/// * `_options` - Unused; WAD takes no options.
///
/// # Returns
///
/// The minimum amount of data required (2: one bar to seed the previous close,
/// one bar to produce the first output).
pub fn min_data(_options: &[f64]) -> usize {
2
}
/// Calculates the output length based on the data length and options.
///
/// # Arguments
///
/// * `data_len` - The length of the input data.
/// * `options` - A slice containing the options for the WAD calculation.
///
/// # Returns
///
/// The output length.
pub fn output_length(data_len: usize, options: &[f64]) -> usize {
data_len - min_data(options) + 1
}
/// Calculates the Williams Accumulation/Distribution (WAD) indicator over the full input dataset.
///
/// # Inputs
///
/// * `inputs[0]` — `high`
/// * `inputs[1]` — `low`
/// * `inputs[2]` — `close`
///
/// # Arguments
///
/// * `inputs` - Array of input price slices (see Inputs above).
/// * `_options` - Unused; WAD takes no options.
/// * `_optional_outputs` - Unused; this indicator has no optional outputs.
///
/// # Returns
///
/// `Ok((outputs, state))` where `outputs[0]` is `wad` and `state`
/// can be passed to `IndicatorState::batch_indicator` for streaming.
/// Returns `Err(IndicatorError)` if inputs are too short.
pub fn indicator(
inputs: &[&[f64]; INPUTS_WIDTH],
_options: &[f64; OPTIONS_WIDTH],
_optional_outputs: Option<&[bool]>,
) -> Result<(Vec<Vec<f64>>, IndicatorState), IndicatorError> {
// Expecting three inputs: High, Low, Close.
validate_inputs(inputs, min_data(_options))?;
let mut wad_line: Vec<f64> = {
let capacity = output_length(inputs[0].len(), _options);
crate::uninit_vec!(f64, capacity)
};
let mut state = IndicatorState::new(inputs[2][0], 0.0);
cycle(
&inputs[0][1..],
&inputs[1][1..],
&inputs[2][1..],
&mut state,
&mut wad_line,
);
// Store last used close and sum for incremental updates.
Ok((vec![wad_line], state))
}
/// Iterates over the high, low, and close slices and computes WAD values for each bar.
///
/// # Arguments
///
/// * `high` - Input high price slice.
/// * `low` - Input low price slice.
/// * `close` - Input close price slice.
/// * `state` - Mutable reference to the `IndicatorState` (previous close and cumulative WAD).
/// * `wad_line` - Mutable output slice for WAD values.
fn cycle(
high: &[f64],
low: &[f64],
close: &[f64],
state: &mut IndicatorState,
wad_line: &mut [f64],
) {
for i in 0..close.len() {
unsafe {
*wad_line.get_unchecked_mut(i) = state.calc(
*high.get_unchecked(i),
*low.get_unchecked(i),
*close.get_unchecked(i),
);
}
}
}
/// Calculates a single WAD value for one bar, updating the rolling state in place.
///
/// # Arguments
///
/// * `high` - The current bar's high price.
/// * `low` - The current bar's low price.
/// * `close` - The current bar's close price.
/// * `state` - Mutable reference to the `IndicatorState` (previous close and cumulative WAD).
///
/// # Returns
///
/// The cumulative WAD value after this bar.
#[inline(always)]
pub fn calc(high: f64, low: f64, close: f64, state: &mut IndicatorState) -> f64 {
state.calc(high, low, close)
}