use crate::common::validate_inputs;
pub use crate::indicator_types::TIndicatorState;
use crate::types::{DisplayType, IndicatorError, IndicatorType, Info};
use serde::{Deserialize, Serialize};
pub const INPUTS_WIDTH: usize = 3;
pub const OPTIONS_WIDTH: usize = 0;
#[cfg(feature = "simd_assets")]
pub use crate::indicators::simd_indicators::wad_simd::indicator_by_assets;
#[cfg(feature = "simd_assets")]
pub mod by_assets {
pub use crate::indicators::simd_indicators::wad_simd::indicator_by_assets as indicator;
}
pub fn info() -> Info<'static> {
Info {
name: "wad",
full_name: "WAD Indicator",
display_type: DisplayType::Indicator,
indicator_type: IndicatorType::Trend,
inputs: &["high", "low", "close"],
options: &[],
outputs: &["wad"],
optional_outputs: &[],
}
}
#[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])
}
}
pub fn min_data_accuracy(options: &[f64], _decimals: usize) -> usize {
min_data(options)
}
pub fn min_data(_options: &[f64]) -> usize {
2
}
pub fn output_length(data_len: usize, options: &[f64]) -> usize {
data_len - min_data(options) + 1
}
pub fn indicator(
inputs: &[&[f64]; INPUTS_WIDTH],
_options: &[f64; OPTIONS_WIDTH],
_optional_outputs: Option<&[bool]>,
) -> Result<(Vec<Vec<f64>>, IndicatorState), IndicatorError> {
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,
);
Ok((vec![wad_line], state))
}
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),
);
}
}
}
#[inline(always)]
pub fn calc(high: f64, low: f64, close: f64, state: &mut IndicatorState) -> f64 {
state.calc(high, low, close)
}