pub struct TechnicalAnalysisRecommendations {
pub other: f64,
pub all: f64,
pub ma: f64,
}Expand description
Technical analysis recommendation scores for oscillators, summary, and moving averages.
Values are normalized to the range [-1.0, 1.0].
Fields§
§other: f64Oscillator-based recommendation score (Recommend.Other).
all: f64Overall summary recommendation score (Recommend.All).
ma: f64Moving average recommendation score (Recommend.MA).
Trait Implementations§
impl Copy for TechnicalAnalysisRecommendations
Source§impl<'de> Deserialize<'de> for TechnicalAnalysisRecommendations
impl<'de> Deserialize<'de> for TechnicalAnalysisRecommendations
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
impl StructuralPartialEq for TechnicalAnalysisRecommendations
Auto Trait Implementations§
impl Freeze for TechnicalAnalysisRecommendations
impl RefUnwindSafe for TechnicalAnalysisRecommendations
impl Send for TechnicalAnalysisRecommendations
impl Sync for TechnicalAnalysisRecommendations
impl Unpin for TechnicalAnalysisRecommendations
impl UnsafeUnpin for TechnicalAnalysisRecommendations
impl UnwindSafe for TechnicalAnalysisRecommendations
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