bts-rs 1.0.11

Backtest your trading strategy.
Documentation
1
2
3
4
5
6
//! Utility functions and helpers.

/// Generates a random ID.
pub(crate) fn random_id() -> u32 {
    rand::random()
}