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 -9
View File
@@ -1,17 +1,14 @@
/**
MSE: Mean Square Error
namespace QuanTAlib;
using System;
Defined as a Mean (Average) of the Square of the difference between actual and estimated values.
/* <summary>
MSE: Mean Square Error
Defined as a Mean (Average) of the Square of the difference between actual and estimated values.
Sources:
https://en.wikipedia.org/wiki/Mean_squared_error
Remark:
**/
using System;
namespace QuanTAlib;
</summary> */
public class MSE_Series : Single_TSeries_Indicator
{