pub struct ChandeKrollStop<M: MovingAverageConstructor = MA> {
    pub ma: M,
    pub x: ValueType,
    pub q: PeriodType,
    pub source: Source,
}
Expand description

Chande Kroll Stop

§3 values

  • stop long Range of values is the same as the range of the source values.

  • source value

  • stop short

Range of values is the same as the range of the source values.

§2 signals

  • signal 1 is calculated according to relative position of the source value between stop short and stop long values.

When source value goes above stop short, then returns full buy signal.

When source value goes below stop long, then returns full sell signal.

  • signal 2 appears only when stop long crosses stop short upwards.

When cumulative move of stop short and stop long is upwards, then returns full buy.

When cumulative move of stop short and stop long is downwards, then returns full sell.

Fields§

§ma: M

ATR moving average.

Default is SMA(10).

Range in [1; PeriodType::MAX]

§x: ValueType

ATR multiplier. Default is 1.0.

Range in [0; +inf)

§q: PeriodType

multiplied highest/lowest period length. Default is 9.

Range in [1; PeriodType::MAX]

§source: Source

Price source. Default is Close

Trait Implementations§

source§

impl<M: Clone + MovingAverageConstructor> Clone for ChandeKrollStop<M>

source§

fn clone(&self) -> ChandeKrollStop<M>

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<M: Debug + MovingAverageConstructor> Debug for ChandeKrollStop<M>

source§

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

Formats the value using the given formatter. Read more
source§

impl Default for ChandeKrollStop<MA>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de, M> Deserialize<'de> for ChandeKrollStop<M>

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<M: MovingAverageConstructor> IndicatorConfig for ChandeKrollStop<M>

§

type Instance = ChandeKrollStopInstance<M>

Type of State
source§

const NAME: &'static str = "ChandeKrollStop"

Name of an indicator
source§

fn init<T: OHLCV>(self, candle: &T) -> Result<Self::Instance, Error>

Initializes the State based on current Configuration
source§

fn validate(&self) -> bool

Validates if Configuration is OK
source§

fn set(&mut self, name: &str, value: String) -> Result<(), Error>

Dynamically sets Configuration parameters
source§

fn size(&self) -> (u8, u8)

Returns an IndicatorResult size processing by the indicator (count of raw values, count of signals)
source§

fn name(&self) -> &'static str

Returns a name of the indicator
source§

fn init_fn<'a, T: OHLCV>( self, initial_value: &'a T ) -> Result<Box<dyn FnMut(&'a T) -> IndicatorResult>, Error>
where Self: 'static,

Creates an IndicatorInstance function from this IndicatorConfig.
source§

fn over<T, S>(self, inputs: S) -> Result<Vec<IndicatorResult>, Error>
where T: OHLCV, S: AsRef<[T]>, Self: Sized,

Evaluates indicator config over sequence of OHLC and returns sequence of IndicatorResults Read more
source§

impl<M> Serialize for ChandeKrollStop<M>

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<M: Copy + MovingAverageConstructor> Copy for ChandeKrollStop<M>

Auto Trait Implementations§

§

impl<M> RefUnwindSafe for ChandeKrollStop<M>
where M: RefUnwindSafe,

§

impl<M> Send for ChandeKrollStop<M>
where M: Send,

§

impl<M> Sync for ChandeKrollStop<M>
where M: Sync,

§

impl<M> Unpin for ChandeKrollStop<M>
where M: Unpin,

§

impl<M> UnwindSafe for ChandeKrollStop<M>
where M: UnwindSafe,

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, I, C> IndicatorConfigDyn<T> for C
where T: OHLCV, I: IndicatorInstanceDyn<T> + IndicatorInstance<Config = C> + 'static, C: IndicatorConfig<Instance = I> + Clone + 'static,

source§

fn init( &self, initial_value: &T ) -> Result<Box<dyn IndicatorInstanceDyn<T>>, Error>

Dynamically initializes the State based on the current Configuration
source§

fn over(&self, inputs: &dyn AsRef<[T]>) -> Result<Vec<IndicatorResult>, Error>

Evaluates dynamically dispatched IndicatorConfig over series of OHLC and returns series of IndicatorResults Read more
source§

fn name(&self) -> &'static str

Returns a name of the indicator
source§

fn validate(&self) -> bool

Validates if Configuration is OK
source§

fn set(&mut self, name: &str, value: String) -> Result<(), Error>

Dynamically sets Configuration parameters
source§

fn size(&self) -> (u8, u8)

Returns an IndicatorResult size processing by the indicator (count of raw values, count of signals)
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.
source§

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