mirror of
https://github.com/KhizarImran/backtestingfx.git
synced 2026-07-27 20:17:44 +00:00
e79070539d
- Replaced manual CSV parsing with csv crate, columns now looked up by name - Fixed Rust example path and contract_size - Added CHANGELOG.md for release tracking Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
760 B
Rust
24 lines
760 B
Rust
use _backtestingfx::broker::Broker;
|
|
use _backtestingfx::data::load_csv;
|
|
use _backtestingfx::engine::Engine;
|
|
use _backtestingfx::strategy::Strategy;
|
|
use _backtestingfx::types::Bar;
|
|
|
|
struct BuyEveryBar;
|
|
|
|
impl Strategy for BuyEveryBar {
|
|
fn next(&mut self, bar: &Bar, broker: &mut Broker) {
|
|
broker.close_all(bar.close, bar.timestamp); //closes any open positions
|
|
broker.buy(bar.close, 1.0, bar.timestamp, None, None); // can be more complicated with buy, sells, close position, close all etc.
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let data = load_csv("data/EURUSD_1H.csv");
|
|
let mut engine = Engine::new(data, 10_000.0, 0.0, 0.00010, 1.0, 1.0);
|
|
let mut strategy = BuyEveryBar;
|
|
|
|
let stats = engine.run(&mut strategy);
|
|
println!("{}", stats);
|
|
}
|