adding python wrapping

This commit is contained in:
KhizarImran
2026-06-14 01:21:15 +01:00
parent a039484b08
commit 6f39fc2d34
3 changed files with 34 additions and 10 deletions
+12 -4
View File
@@ -1,6 +1,14 @@
pub mod types;
pub mod strategy;
pub mod broker;
pub mod engine;
pub mod data;
pub mod stats;
pub mod engine;
pub mod stats;
pub mod strategy;
pub mod types;
use pyo3::prelude::*;
#[pymodule]
fn backtestingfx(m: &Bound<'_, PyModule>) -> PyResult<()> {
m.add_class::<types::Bar>()?;
Ok(())
}