-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improved integration tests for forex * integration test for dashboards * added more tests to economy * added test for forecast report * added eedbt integration test * added hist tests * added eval command * updatedeconometrics tests * changed order * test removing warning * Revert "test removing warning" This reverts commit 09ca09012156771428b2041b478296dbf2bfc780. * adding todo * Fix top categories and sorting not working (#3025) * Fix categories and sorting not working * Allow sort in ascending order * Documented the new flag * Fixed tests * Fix bad practises Co-authored-by: James Maslek <[email protected]> * [FEAT] StatsForecast AutoETS forecasting model (#2988) * feat: add autoets model * feat: update autoets index * feat: add verbose option * feat: freq preprocessing * feat: improve test size call * feat: add statsforecast dep to conda env full Co-authored-by: James Maslek <[email protected]> Co-authored-by: martinb-bb <[email protected]> * Improve ETF menu (#3124) * improve etf menu * improve docs * fix tests * should cover more edge cases Co-authored-by: James Maslek <[email protected]> * improve export (#3176) * When renaming funcs to remove source at start, the translating keys were missing update (#3177) * fix the en.yml key for some funcs * fix tests Co-authored-by: James Maslek <[email protected]> * Adds guide for SDK/Keys (#3111) * Adds guide for SDK/Keys * Linter * Applied requested changes, and improved the examples. * Removed bullet point Co-authored-by: Jeroen Bouma <[email protected]> * Adds Introduction Guide for the Economy SDK Module (#3142) * Adds Introduction Guide for the Economy SDK Module * Changes title Co-authored-by: Jeroen Bouma <[email protected]> * version check for statforecast (#3227) * Fix 3188 - UX for `Feature Engineering` functions (#3224) * fix depr. warning * console printout enhancment * improvement to sto for UX * average true range UX * signal UX improv. * Fix Some Econometrics Bugs (#3210) * Added suggestions for load * Fixed a command * Fixed panel Co-authored-by: Henrique Joaquim <[email protected]> Co-authored-by: James Maslek <[email protected]> * Fixing 6 crypto bugs (#3228) * fixing 6 crypto bugs * fixing filter stuff Co-authored-by: Colin Delahunty <[email protected]> * Fix SDK plot colors without needing openbb.stocks.candle (#3178) * fix SDK plot colors without needing openbb.stocks.candle * lint * ordering Co-authored-by: James Maslek <[email protected]> Co-authored-by: Colin Delahunty <[email protected]> * Updating crypto integration tests (#3222) * disc, ov, and base * more integration tests and fixing previous commited ones * some more fixes Co-authored-by: Colin Delahunty <[email protected]> * removing commented tests * removing commented tests Co-authored-by: Gerard <[email protected]> Co-authored-by: James Maslek <[email protected]> Co-authored-by: fede <[email protected]> Co-authored-by: martinb-bb <[email protected]> Co-authored-by: DidierRLopes <[email protected]> Co-authored-by: Danglewood <[email protected]> Co-authored-by: Jeroen Bouma <[email protected]> Co-authored-by: Colin Delahunty <[email protected]> Co-authored-by: James Simmons <[email protected]>
- Loading branch information
1 parent
9b05c15
commit 05fe8c3
Showing
9 changed files
with
165 additions
and
61 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
openbb_terminal/miscellaneous/scripts/dashboards/test_dashboards_base.openbb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
dashboards | ||
stocks -n | ||
correlation -n | ||
vsurf -n | ||
chains -n | ||
shortdata -n | ||
crypto -n | ||
futures -n | ||
forecast -n | ||
forecasting -n | ||
exit |
55 changes: 55 additions & 0 deletions
55
openbb_terminal/miscellaneous/scripts/econometrics/test_econometrics_base.openbb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
econometrics | ||
|
||
## Exploration | ||
|
||
load nile | ||
desc nile | ||
load nile -a nile_2 | ||
combine nile -c nile_2.volume | ||
load -f 20221008_221605_dataset | ||
rename -d 20221008_221605_dataset -o population -n pop | ||
load -e | ||
load -f wage_panel -a wp | ||
add -n wp.after_1990 -b wp.year -s > -c 1990 | ||
add -n wp.after_1985 -b wp.year -s > -c 1985 | ||
show -n wp -s year -a -l 20 | ||
plot -v wp.nr,wp.exper,wp.hours | ||
index -n wp -i nr,year -a | ||
type | ||
type wp.year --format category | ||
desc -n wp.expersq | ||
clean wp -f cfill | ||
clean wp -d rdrop | ||
delete -d wp.black | ||
|
||
## Tests | ||
|
||
load fair | ||
root fair.yrs_married | ||
|
||
## Load custom datasets - this can only be tested locally for now | ||
## load -f 20221031_095631_AAPL.xlsx -a aapl | ||
## load -f 20221031_095653_TSLA.xlsx -a tsla | ||
## load -f 20221031_095706_MSFT.xlsx -a msft | ||
## coint msft.adj_close,aapl.adj_close,tsla.adj_close | ||
## norm tsla.adj_close -p | ||
## norm msft.volume -p | ||
|
||
load strikes | ||
granger strikes.duration,strikes.iprod | ||
|
||
## Regression | ||
|
||
panel -d wp.lwage -i wp.black,wp.hisp,wp.exper,wp.expersq,wp.married,wp.educ,wp.union,wp.year | ||
panel -d wp.lwage -i wp.black,wp.hisp,wp.exper,wp.married,wp.educ,wp.union -r bols | ||
|
||
load longley -a ll | ||
ols -d ll.totemp -i ll.gnpdefl,ll.gnp,ll.unemp,ll.armed,ll.pop,ll.year | ||
|
||
## Regression Tests | ||
|
||
dwat -p | ||
bgod -l 2 | ||
bpag | ||
|
||
exit |
31 changes: 0 additions & 31 deletions
31
openbb_terminal/miscellaneous/scripts/econometrics/test_econometrics_panel.openbb
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
openbb_terminal/miscellaneous/scripts/econometrics/test_econometrics_ts.openbb
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
openbb_terminal/miscellaneous/scripts/forex/test_forex_base.openbb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
forex | ||
load EURUSD | ||
load -t EURUSD -r d -i 1day -s 2000-01-01 | ||
load -t EURUSD -r i -i 30min | ||
fwd | ||
quote | ||
quote --source YahooFinance | ||
quote --source AlphaVantage | ||
exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
openbb_terminal/miscellaneous/scripts/reports/test_reports_forecast.openbb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
reports | ||
|
||
## defaults | ||
forecast | ||
|
||
## simple ticker | ||
forecast --symbol AAPL | ||
|
||
## Non-US ticker | ||
forecast --symbol NXPI | ||
|
||
## Non-US ticker with suffix | ||
forecast --symbol PETR3.SA | ||
|
||
exit |