/* * Copyright(C) 2021 hikyuu.org * * Create on: 2021-02-10 * Author: fasiondog */ #include "StrategyContext.h" namespace hku { void StrategyContext::setStockCodeList(const vector& stockList) { m_stockCodeList.resize(stockList.size()); std::copy(stockList.begin(), stockList.end(), m_stockCodeList.begin()); } void StrategyContext::setKTypeList(const vector& ktypeList) { m_ktypeList.resize(ktypeList.size()); std::transform(ktypeList.begin(), ktypeList.end(), m_ktypeList.begin(), [](KQuery::KType ktype) { to_upper(ktype); return ktype; }); } bool StrategyContext::isAll() const { return std::find_if(m_stockCodeList.begin(), m_stockCodeList.end(), [](string val) { to_upper(val); return val == "ALL"; }) != m_stockCodeList.end(); } } // namespace hku