[−][src]Struct quantaxis_rs::indicators::SlowStochastic
Slow stochastic oscillator.
Basically it is a fast stochastic oscillator smoothed with exponential moving average.
Parameters
- stochastic_n - number of periods for fast stochastic (integer greater than 0). Default is 14. *ema_n - length for EMA (integer greater than 0). Default is 3.
Example
use quantaxis_rs::indicators::SlowStochastic; use quantaxis_rs::Next; let mut stoch = SlowStochastic::new(3, 2).unwrap(); assert_eq!(stoch.next(10.0), 50.0); assert_eq!(stoch.next(50.0).round(), 83.0); assert_eq!(stoch.next(50.0).round(), 94.0); assert_eq!(stoch.next(30.0).round(), 31.0); assert_eq!(stoch.next(55.0).round(), 77.0);
Implementations
impl SlowStochastic
[src]
Trait Implementations
impl Clone for SlowStochastic
[src]
pub fn clone(&self) -> SlowStochastic
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for SlowStochastic
[src]
impl Default for SlowStochastic
[src]
impl Display for SlowStochastic
[src]
impl<'a, T: High + Low + Close> Next<&'a T> for SlowStochastic
[src]
impl Next<f64> for SlowStochastic
[src]
impl Reset for SlowStochastic
[src]
Auto Trait Implementations
impl RefUnwindSafe for SlowStochastic
[src]
impl Send for SlowStochastic
[src]
impl Sync for SlowStochastic
[src]
impl Unpin for SlowStochastic
[src]
impl UnwindSafe for SlowStochastic
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
pub const ALIGN: usize
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn drop(ptr: usize)
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,