Struct trade_aggregation::AlignedTimeRule

source ·
pub struct AlignedTimeRule { /* private fields */ }
Expand description

The classic time based aggregation rule, creating a new candle every n seconds. The time trigger is aligned such that the trigger points are starting from a time equals zero. For example, if the first tick comes in a 1:32:00 on a 5 minute candle, that first candle will only contain 3 minutes of trades, representing a 1:30 start.

Implementations§

source§

impl AlignedTimeRule

source

pub fn new(period_s: i64, ts_res: TimestampResolution) -> Self

Create a new instance of the aligned time rule, with a given candle period in seconds

§Arguments:

period_s: How many seconds a candle will contain ts_res: The resolution each Trade timestamp will have

source

pub fn aligned_timestamp(&self, timestamp: i64) -> i64

Calculates the “aligned” timestamp, which the rule will use when receiving for determining the trigger. This is done at the initialization of each period.

Trait Implementations§

source§

impl<C, T> AggregationRule<C, T> for AlignedTimeRule
where C: ModularCandle<T>, T: TakerTrade,

source§

fn should_trigger(&mut self, trade: &T, _candle: &C) -> bool

The main method defining when the aggregation is done Read more
source§

impl Clone for AlignedTimeRule

source§

fn clone(&self) -> AlignedTimeRule

Returns a copy 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 AlignedTimeRule

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> 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,

§

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>,

§

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>,

§

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.