|
@@ -89,9 +89,9 @@ assert (select (rtn.std_dev * sqrt(12)).round(4) as std_dev_a
|
|
@testing: case = 'skewness'
|
|
@testing: case = 'skewness'
|
|
assert (select rtn.skewness.round(2) as skewness
|
|
assert (select rtn.skewness.round(2) as skewness
|
|
from rtn where entity_id in entity_ids and end_date in (2024.07M, 2024.08M)).skewness == [-1.007946, -0.748978, -0.150076, 0.186127].round(2);
|
|
from rtn where entity_id in entity_ids and end_date in (2024.07M, 2024.08M)).skewness == [-1.007946, -0.748978, -0.150076, 0.186127].round(2);
|
|
-@testing: case = 'ytd kurtosis' // [FAIL]
|
|
|
|
-assert (select rtn.kurtosis.round(2) as kurtosis
|
|
|
|
- from rtn where entity_id in entity_ids and end_date in (2024.07M, 2024.08M)).kurtosis == [3.206713, 2.737161, 1.998417, 1.046022].round(2);
|
|
|
|
|
|
+@testing: case = 'ytd kurtosis'
|
|
|
|
+assert (select rtn.kurtosis.round(3) as kurtosis
|
|
|
|
+ from rtn where entity_id in entity_ids and end_date in (2024.07M, 2024.08M)).kurtosis == [3.206713, 2.737161, 1.998417, 1.046022].round(3);
|
|
@testing: case = 'ytd wrst_month'
|
|
@testing: case = 'ytd wrst_month'
|
|
assert (select rtn.wrst_month.round(4) as wrst_month
|
|
assert (select rtn.wrst_month.round(4) as wrst_month
|
|
from rtn where entity_id in entity_ids and end_date in (2024.07M, 2024.08M)).wrst_month == [-0.134443, -0.134443, -0.026231, -0.026231].round(4);
|
|
from rtn where entity_id in entity_ids and end_date in (2024.07M, 2024.08M)).wrst_month == [-0.134443, -0.134443, -0.026231, -0.026231].round(4);
|
|
@@ -369,8 +369,8 @@ assert (select (m2*12).round(4) as m2_a
|
|
from m2 where entity_id in entity_ids and end_date in (2024.07M, 2024.08M)).m2_a == [0.064601,0.063365,0.026901,0.025155].round(4);
|
|
from m2 where entity_id in entity_ids and end_date in (2024.07M, 2024.08M)).m2_a == [0.064601,0.063365,0.026901,0.025155].round(4);
|
|
|
|
|
|
|
|
|
|
-//
|
|
|
|
-ms = cal_ms_return(tb_ret, risk_free_rate);
|
|
|
|
|
|
+/* Tests for BFI indicators. CURRENTLY IT IS UN-TESTABLE BECAUSE LOGIC OF BENCHMARK COMPARING IS CHANGED */
|
|
|
|
+
|
|
|
|
|
|
/* codes from cal_fund_bfi_indicators */
|
|
/* codes from cal_fund_bfi_indicators */
|
|
start_month = 1990.01M;
|
|
start_month = 1990.01M;
|
|
@@ -381,19 +381,4 @@ ms = cal_ms_return(tb_ret, risk_free_rate);
|
|
|
|
|
|
bfi_bmk_ret = get_benchmark_return(bfi_benchmark, end_day);
|
|
bfi_bmk_ret = get_benchmark_return(bfi_benchmark, end_day);
|
|
|
|
|
|
-/* Tests for BFI indicators */
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-bfi_bmk_tracking = cal_benchmark_tracking(tb_ret, bfi_benchmark, bfi_bmk_ret);
|
|
|
|
-
|
|
|
|
-bfi_alpha_beta = cal_alpha_beta(tb_ret, bfi_benchmark, bfi_bmk_ret, risk_free_rate);
|
|
|
|
-
|
|
|
|
-bfi_treynor = cal_treynor(tb_ret, risk_free_rate, bfi_alpha_beta);
|
|
|
|
-
|
|
|
|
-bfi_indicators = cal_indicators_with_benchmark(tb_ret, bfi_benchmark, bfi_bmk_ret, risk_free_rate);
|
|
|
|
-
|
|
|
|
-dic_bfi = cal_fund_bfi_indicators(entity_type, fund_ids, end_day, isFromNav)
|
|
|
|
-
|
|
|
|
-SELECT * FROM bfi_indicators ORDER BY entity_id, end_date desc, benchmark_id
|
|
|
|
|
|
|
|
-SELECT * from dic_bfi['BFI-1Y']
|
|
|