[][src]Struct yata::methods::PivotSignal

pub struct PivotSignal { /* fields omitted */ }

Searches for Pivot Points over last left+right+1 values of type ValueType

Parameters

Has a tuple of 2 parameters (left: PeriodType, right: PeriodType)

left should be > 0 and right should be > 0

There is an additional restriction on parameters: left+right+1 should be <= PeriodType::MAX. So if your PeriodType is default u8, then left+right+1 should be <= 255

Read more about PeriodType

Input type

Input type is ValueType

Output type

Output type is Action

use yata::prelude::*;
use yata::methods::PivotSignal;

let s = [1.0, 2.0, 3.0, 2.0, 1.0, 1.0, 2.0];
let r = [ 0,   0,   1,   0,   -1,  0,   1 ];

let mut pivot = PivotSignal::new(2, 2, s[0]);
let r2: Vec<i8> = s.iter().map(|&v| pivot.next(v).analog()).collect();

assert_eq!(r2, r2);

Perfomance

O(left+right)

See also

PivotHighSignal, PivotLowSignal

Implementations

impl PivotSignal[src]

pub fn new(left: PeriodType, right: PeriodType, value: ValueType) -> Self[src]

Constructs new instanceof PivotSignal It's just an alias for Method::new((left, right), value) but without parentheses of Input touple

Trait Implementations

impl Clone for PivotSignal[src]

impl Debug for PivotSignal[src]

impl Default for PivotSignal[src]

impl<'de> Deserialize<'de> for PivotSignal[src]

impl Method for PivotSignal[src]

type Params = (PeriodType, PeriodType)

Method parameters

type Input = ValueType

Input value type

type Output = Action

Output value type

impl Serialize for PivotSignal[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.