tradeutils 0.1.0

Utilities and primitives to model trading concepts for technical analysis.
Documentation
1
2
3
4
5
6
7
use tradeutils::Stock;
fn main(){
    let a = Stock{
        name: String::from("hey"),
        value: 23.3,
    };
}