# QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.# Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.from AlgorithmImports import *from collections import dequefrom math import iscloseclass CustomIndicatorWithExtensionAlgorithm(QCAlgorithm):def initialize(self) -> None:self.set_start_date(2013, 10, 9)self.set_end_date(2013, 10, 9)self._spy = self.add_equity("SPY", Resolution.MINUTE).symbolself._sma_values = []self._period = 10self._sma = self.sma(self._spy, self._period, Resolution.MINUTE)self._sma.updated += self.on_sma_updatedself._custom_sma = CustomSimpleMovingAverage("My SMA", self._period)self._ext = IndicatorExtensions.of(self._custom_sma, self._sma)self._ext.updated += self.on_indicator_extension_updatedself._sma_minus_custom = IndicatorExtensions.minus(self._sma, self._custom_sma)self._sma_minus_custom.updated += self.on_minus_updatedself._sma_was_updated = Falseself._custom_sma_was_updated = Falseself._sma_minus_custom_was_updated = Falsedef on_sma_updated(self, sender: object, updated: IndicatorDataPoint) -> None:self._sma_was_updated = Trueif self._sma.is_ready:self._sma_values.append(self._sma.current.value)def on_indicator_extension_updated(self, sender: object, updated: IndicatorDataPoint) -> None:self._custom_sma_was_updated = Truesma_last_values = self._sma_values[-self._period:]expected = sum(sma_last_values) / len(sma_last_values)if not isclose(expected, self._custom_sma.value):raise AssertionError(f"Expected the custom SMA to calculate the moving average of the last {self._period} values of the SMA. "f"Current expected: {expected}. Actual {self._custom_sma.value}.")self.debug(f"{self._sma.current.value} :: {self._custom_sma.value} :: {updated}")def on_minus_updated(self, sender: object, updated: IndicatorDataPoint) -> None:self._sma_minus_custom_was_updated = Trueexpected = self._sma.current.value - self._custom_sma.valueif not isclose(expected, self._sma_minus_custom.current.value):raise AssertionError(f"Expected the composite minus indicator to calculate the difference between the SMA and custom SMA indicators. "f"Expected: {expected}. Actual {self._sma_minus_custom.current.value}.")def on_end_of_algorithm(self) -> None:if not (self._sma_was_updated and self._custom_sma_was_updated and self._sma_minus_custom_was_updated):raise AssertionError("Expected all indicators to have been updated.")# Custom indicatorclass CustomSimpleMovingAverage(PythonIndicator):def __init__(self, name: str, period: int) -> None:self.name = nameself.value = 0self.warm_up_period = periodself._queue = deque(maxlen=period)def update(self, input: BaseData) -> bool:self._queue.appendleft(input.value)count = len(self._queue)self.value = sum(self._queue) / countreturn count == self._queue.maxlen
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。