ta-lib-sys 0.1.2

Autogenerated Rust wrapper for TA-lib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
//! The Technical Analysis library includes 200 financial indicators such as
//! ADX, MACD, RSI, Stochastic, Bollinger Bands, as well as Candlestick pattern
//! recognition.
//!
//! This crate includes the C source code the TA-Lib v0.4.0. This is built
//! from source and Rust-wrapped by default. Alternatively, the system’s TA-Lib
//! may be used. See *Cargo Features* below.
//!
//! ## Cargo Features
//!
//! * `use_system_lib` – Use the system's installed C TA lib instead of building
//!   from source.

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));