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

Improve integration tests #4438

Merged
merged 5 commits into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -90,6 +90,7 @@ wfpe -c ${crypto_full=ethereum}
altindex
altindex --period 30 --since 2020-10-25 --until 2021-12-01

btcrb

# ch
ch
Expand All @@ -103,4 +104,6 @@ cr --cryptocurrrencies ZRX
cr --platforms Compound
cr --cryptocurrrencies ZRX --platforms Compound

fun --metric market_cap

exit
Original file line number Diff line number Diff line change
@@ -1,67 +1,62 @@
crypto
load ${crypto=eth}
ta

tv

###### Overlap
ema
ema -l 100 -o 10

hma
hma -l 100 -o 10
sma
sma -l 100 -o 10

vwap
wma
wma -l 100 -o 10

hma
hma -l 100 -o 10

zlma
zlma -l 100 -o 10

# vwap

###### Momentum
cci
cci --length 10 --scalar 10

cg
cg --length 10
demark
demark --min 10
fisher
fisher --length 10
macd
macd --fast 10 --slow 10 --signal 5

rsi
rsi -l 10 -s 10 -d 2

stoch
stoch -k 10 -d 10 --slowkperiod 2

fisher
fisher --length 10

cg
cg --length 10

###### Trend
adx
adx -l 10 -s 10 -d 10

aroon
aroon -l 10 -s 10

###### Volatility
bbands
bbands -l 10 -s 0.5 -m ema

cones
cones --lower_q 0.3 --upper_q 0.7 --is_crypto --model Parkinson
donchian
donchian -u 10 -l 10

kc
kc -l 10 -s 10 -m sma -o 1

###### Volume
ad

adosc
adosc --open --fast 10 --slow 10

obv

###### Custom
fib
fib --period 10 --start 2022-01-01 --end 2022-03-03

exit

Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ load nile
desc nile
load nile -a nile_2
combine nile -c nile_2.volume
load -f 20221008_221605_dataset
load -f 20221008_221605_dataset.xlsx
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
show -n wp -s year -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 --fill cfill
clean wp -d rdrop
delete -d wp.black

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ decompose
decompose --multiplicative
cusum
cusum -t 0.01 -d 0.01
..
load ${currency=EUR}${currency_vsUSD} --source YahooFinance
qa
summary
Expand Down