pub enum ActiveStrategy {
TrendFollowing,
MeanReversion,
NoTrade,
}Expand description
Active strategy recommendation from the router
Variants§
TrendFollowing
Use a trend-following strategy (e.g., Golden Cross, EMA Pullback)
MeanReversion
Use a mean-reversion strategy (e.g., Bollinger Bands, VWAP)
NoTrade
Do not trade — regime is unclear or confidence too low
Trait Implementations§
Source§impl Clone for ActiveStrategy
impl Clone for ActiveStrategy
Source§fn clone(&self) -> ActiveStrategy
fn clone(&self) -> ActiveStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ActiveStrategy
impl Debug for ActiveStrategy
Source§impl<'de> Deserialize<'de> for ActiveStrategy
impl<'de> Deserialize<'de> for ActiveStrategy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 Display for ActiveStrategy
impl Display for ActiveStrategy
Source§impl PartialEq for ActiveStrategy
impl PartialEq for ActiveStrategy
Source§impl Serialize for ActiveStrategy
impl Serialize for ActiveStrategy
impl Copy for ActiveStrategy
impl Eq for ActiveStrategy
impl StructuralPartialEq for ActiveStrategy
Auto Trait Implementations§
impl Freeze for ActiveStrategy
impl RefUnwindSafe for ActiveStrategy
impl Send for ActiveStrategy
impl Sync for ActiveStrategy
impl Unpin for ActiveStrategy
impl UnsafeUnpin for ActiveStrategy
impl UnwindSafe for ActiveStrategy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more