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

32 lines
536 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* IRoundDown.h
*
* Copyright (c) 2019 hikyuu.org
*
* Created on: 2019-4-14
* Author: fasiondog
*/
#pragma once
#ifndef INDICATOR_IMP_IROUNDDOWN_H_
#define INDICATOR_IMP_IROUNDDOWN_H_
#include "../Indicator.h"
namespace hku {
/**
* 向下截取如10.1截取后为10
*/
class IRoundDown : public IndicatorImp {
INDICATOR_IMP(IRoundDown)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
IRoundDown();
virtual ~IRoundDown();
};
} /* namespace hku */
#endif /* INDICATOR_IMP_IROUNDDOWN_H_ */