TR and ATR

This commit is contained in:
Miha
2022-04-19 22:34:42 -07:00
parent 50ed6f6504
commit 509b6dec02
41 changed files with 488 additions and 236 deletions
+6 -7
View File
@@ -1,7 +1,9 @@
/**
VAR: Sample Variance
namespace QuanTAlib;
using System;
Sample variance uses Bessel's correction to correct the bias in the estimation of population variance.
/* <summary>
VAR: Sample Variance
Sample variance uses Bessel's correction to correct the bias in the estimation of population variance.
Sources:
https://en.wikipedia.org/wiki/Variance
@@ -11,10 +13,7 @@ Remark:
VAR is also known as the Unbiased Sample Variance, while PVAR (Population Variance) is known as
the Biased Sample Variance.
**/
using System;
namespace QuanTAlib;
</summary> */
public class VAR_Series : Single_TSeries_Indicator
{