Skip to main content

Sma

Struct Sma 

pub struct Sma { /* private fields */ }
Expand description

Simple Moving Average over a fixed window of prices.

Uses a ring buffer with a running sum — O(1) per push and per value query, no allocations after construction.

§Example

use sdk::indicators::Sma;

let mut sma = Sma::new(3).unwrap();
sma.push("100.0".parse().unwrap());
sma.push("200.0".parse().unwrap());
assert!(!sma.is_ready());

sma.push("300.0".parse().unwrap());
assert!(sma.is_ready());
assert_eq!(sma.value().unwrap(), "200.0".parse().unwrap());

Implementations§

§

impl Sma

pub fn new(period: usize) -> Result<Self, InvalidPeriod>

Create a new SMA with the given window size.

Returns Err(InvalidPeriod) if period is zero.

pub fn push(&mut self, price: Price)

Push a new price sample into the window.

Uses checked arithmetic so that extreme Decimal values (near Decimal::MAX) do not panic — the sample is silently dropped when the running sum would overflow.

pub fn is_ready(&self) -> bool

Returns true once the window has received at least period samples.

pub fn value(&self) -> Option<Price>

Returns the current SMA value, or None if the window is not yet full.

pub fn count(&self) -> usize

Number of samples received so far.

pub fn period(&self) -> usize

The configured window size.

Trait Implementations§

§

impl Clone for Sma

§

fn clone(&self) -> Sma

Returns a duplicate of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
§

impl Debug for Sma

§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Sma

§

impl RefUnwindSafe for Sma

§

impl Send for Sma

§

impl Sync for Sma

§

impl Unpin for Sma

§

impl UnsafeUnpin for Sma

§

impl UnwindSafe for Sma

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

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

§

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
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

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

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

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

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,