Skip to main content

SignalComponents

Struct SignalComponents 

Source
pub struct SignalComponents {
Show 41 fields pub v_vwap: i8, pub v_ema: i8, pub v_st: i8, pub v_ts: i8, pub v_liq: i8, pub v_conf_bull: i8, pub v_conf_bear: i8, pub v_struct: i8, pub v_cvd: i8, pub v_ao: i8, pub v_hurst: i8, pub v_accel_bull: i8, pub v_accel_bear: i8, pub hurst: f64, pub price_accel: f64, pub bull_score: f64, pub bear_score: f64, pub conf_min_adj: f64, pub liq_imbalance: f64, pub liq_buy_pct: f64, pub poc: Option<f64>, pub struct_bias: i8, pub fib618: Option<f64>, pub fib_zone: &'static str, pub fib_ok: bool, pub bos: bool, pub choch: bool, pub ts_norm: f64, pub dominance: f64, pub cvd_slope: Option<f64>, pub cvd_div: i8, pub ao: f64, pub ao_rising: bool, pub wr_pct: f64, pub mom_pct: f64, pub wave_ok_long: bool, pub wave_ok_short: bool, pub mom_ok_long: bool, pub mom_ok_short: bool, pub vol_pct: Option<f64>, pub vol_regime: Option<&'static str>,
}
Expand description

All per-layer votes and supporting diagnostic values.

Fields§

§v_vwap: i8§v_ema: i8§v_st: i8§v_ts: i8§v_liq: i8§v_conf_bull: i8§v_conf_bear: i8§v_struct: i8§v_cvd: i8§v_ao: i8§v_hurst: i8§v_accel_bull: i8§v_accel_bear: i8§hurst: f64§price_accel: f64§bull_score: f64§bear_score: f64§conf_min_adj: f64§liq_imbalance: f64§liq_buy_pct: f64§poc: Option<f64>§struct_bias: i8§fib618: Option<f64>§fib_zone: &'static str§fib_ok: bool§bos: bool§choch: bool§ts_norm: f64§dominance: f64§cvd_slope: Option<f64>§cvd_div: i8§ao: f64§ao_rising: bool§wr_pct: f64§mom_pct: f64§wave_ok_long: bool§wave_ok_short: bool§mom_ok_long: bool§mom_ok_short: bool§vol_pct: Option<f64>§vol_regime: Option<&'static str>

Trait Implementations§

Source§

impl Clone for SignalComponents

Source§

fn clone(&self) -> SignalComponents

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SignalComponents

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.