Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: PPL command - WMA Trendline #3293

Open
wants to merge 37 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
927fbfa
WMA
andy-k-improving Jan 31, 2025
3836f31
Update switch
andy-k-improving Feb 1, 2025
0fcd688
Unit-test
andy-k-improving Feb 3, 2025
898d3a6
Integ-test
andy-k-improving Feb 3, 2025
ab58370
Doc test
andy-k-improving Feb 3, 2025
51d8395
Spotless
andy-k-improving Feb 3, 2025
e4c25b3
Update test cases
andy-k-improving Feb 3, 2025
f6c82ae
Update test coverage
andy-k-improving Feb 3, 2025
d0cf898
Update docs/user/ppl/cmd/trendline.rst
andy-k-improving Feb 6, 2025
ce94ca9
Update docs/user/ppl/cmd/trendline.rst
andy-k-improving Feb 6, 2025
f32e5ad
Remove debug
andy-k-improving Feb 6, 2025
4d95529
Address code comments
andy-k-improving Feb 6, 2025
df3c666
Add support to all numeric types
andy-k-improving Feb 8, 2025
3ed8fa8
Update generic
andy-k-improving Feb 8, 2025
7fc4075
Replace evaluator with functionalInterface
andy-k-improving Feb 10, 2025
3b7902f
Apply suggestions from code review
andy-k-improving Feb 10, 2025
47f9cec
Update wma doc
andy-k-improving Feb 10, 2025
b8cf496
Fix style
andy-k-improving Feb 10, 2025
4a56b57
Update docs/user/ppl/cmd/trendline.rst
andy-k-improving Feb 11, 2025
0b50637
Fix code commentse
andy-k-improving Feb 11, 2025
b8e3983
update default name
andy-k-improving Feb 11, 2025
8dc96c9
Doc
andy-k-improving Feb 12, 2025
c197ecd
Doc
andy-k-improving Feb 12, 2025
5ea47ae
Refactor test-cases
andy-k-improving Feb 12, 2025
8d6ac31
DataPoints test-cases
andy-k-improving Feb 12, 2025
9ce1d99
Update test-cases
andy-k-improving Feb 12, 2025
bdb0f28
Update test-cases
andy-k-improving Feb 12, 2025
fa685bd
Update test-cases
andy-k-improving Feb 12, 2025
b87db9f
Address code comments
andy-k-improving Feb 13, 2025
39bf113
Update test-cases
andy-k-improving Feb 13, 2025
ba9bfb6
Update test-cases
andy-k-improving Feb 13, 2025
9910b22
Update IT magic number
andy-k-improving Feb 14, 2025
4be0400
Update IT test
andy-k-improving Feb 14, 2025
8348950
Update test coverage
andy-k-improving Feb 14, 2025
6037742
Update unit test
andy-k-improving Feb 14, 2025
e590fb9
Code style
andy-k-improving Feb 14, 2025
eccbf1d
Update doc test
andy-k-improving Feb 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public <R, C> R accept(AbstractNodeVisitor<R, C> nodeVisitor, C context) {
}

public enum TrendlineType {
SMA
SMA,
WMA
}
}
Loading
Loading