ux-indicators 0.1.0

Technical Analysis Function Library
Documentation
mod ema;
pub use self::ema::ExponentialMovingAverage;

mod sma;
pub use self::sma::SimpleMovingAverage;

mod wma;
pub use self::wma::WeightedMovingAverage;

mod sd;
pub use self::sd::StandardDeviation;

mod rsi;
pub use self::rsi::RelativeStrengthIndex;

mod min;
pub use self::min::Minimum;

mod max;
pub use self::max::Maximum;

mod fsto;
pub use self::fsto::FastStochastic;

mod ssto;
pub use self::ssto::SlowStochastic;

mod tr;
pub use self::tr::TrueRange;

mod atr;
pub use self::atr::AverageTrueRange;

mod macd;
pub use self::macd::MovingAverageConvergenceDivergence;

mod ker;
pub use self::ker::EfficiencyRatio;

mod bbands;
pub use self::bbands::{BollingerBands, BollingerBandsOutput};

mod roc;
pub use self::roc::RateOfChange;

mod mfi;
pub use self::mfi::MoneyFlowIndex;

mod obv;
pub use self::obv::OnBalanceVolume;