Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
m5l14i11 committed Aug 4, 2023
1 parent 067562c commit 2f926d3
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
14 changes: 7 additions & 7 deletions ta_lib/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ta_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
"indicators/volume",
"patterns",
"price",
"strategy",
"strategies/base",
"utils"
]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "strategy"
name = "base"
version = "0.1.0"
edition = "2021"

[dependencies]
price = { path = "../price" }
price = { path = "../../price" }
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use std::{
collections::{HashMap, VecDeque},
};

#[derive(Debug, Clone, Copy)]
pub struct OHLCV {
pub open: f64,
pub high: f64,
Expand Down
1 change: 1 addition & 0 deletions ta_lib/strategies/base/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod base;
1 change: 0 additions & 1 deletion ta_lib/strategy/src/lib.rs

This file was deleted.

0 comments on commit 2f926d3

Please sign in to comment.