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

32 lines
520 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.

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