Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
m5l14i11 committed Jul 14, 2023
1 parent d809961 commit f32ced9
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 22 deletions.
9 changes: 1 addition & 8 deletions ta_lib/Cargo.lock

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

1 change: 0 additions & 1 deletion ta_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[workspace]
members = [
"core",
"overlap",
"momentum",
"price",
"trend",
Expand Down
7 changes: 0 additions & 7 deletions ta_lib/overlap/Cargo.toml

This file was deleted.

4 changes: 0 additions & 4 deletions ta_lib/overlap/src/lib.rs

This file was deleted.

File renamed without changes.
4 changes: 4 additions & 0 deletions ta_lib/trend/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
pub mod ema;
pub mod sma;
pub mod smma;
pub mod wma;
pub mod zlema;
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion ta_lib/volatility/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"

[dependencies]
core = { path = "../core" }
overlap = { path = "../overlap" }
trend = { path = "../trend" }
utils = { path = "../utils" }
2 changes: 1 addition & 1 deletion ta_lib/volatility/src/atr.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use overlap::{ema::ema, sma::sma, smma::smma, wma::wma};
use trend::{ema::ema, sma::sma, smma::smma, wma::wma};
use utils::tr::true_range;

pub fn atr(
Expand Down

0 comments on commit f32ced9

Please sign in to comment.