hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/IVarp.h
2019-11-10 23:31:41 +08:00

32 lines
487 B
C++

/*
* IVarp.h
*
* Copyright (c) 2019 hikyuu.org
*
* Created on: 2019-5-2
* Author: fasiondog
*/
#pragma once
#ifndef INDICATOR_IMP_IVARP_H_
#define INDICATOR_IMP_IVARP_H_
#include "../Indicator.h"
namespace hku {
/*
* 估算总体样本方差
*/
class IVarp : public hku::IndicatorImp {
INDICATOR_IMP(IVarp)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
IVarp();
virtual ~IVarp();
};
} /* namespace hku */
#endif /* INDICATOR_IMP_IVARP_H_ */