mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 21:07:57 +08:00
31 lines
460 B
C++
31 lines
460 B
C++
/*
|
|
* IVar.h
|
|
*
|
|
* Copyright (c) 2019 hikyuu.org
|
|
*
|
|
* Created on: 2019-5-2
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#ifndef INDICATOR_IMP_IVAR_H_
|
|
#define INDICATOR_IMP_IVAR_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
/*
|
|
* 估算样本方差
|
|
*/
|
|
class IVar: public hku::IndicatorImp {
|
|
INDICATOR_IMP(IVar)
|
|
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
|
|
|
public:
|
|
IVar();
|
|
virtual ~IVar();
|
|
};
|
|
|
|
} /* namespace hku */
|
|
#endif /* INDICATOR_IMP_IVAR_H_ */
|