| Overall Statistics |
|
Total Orders 0 Average Win 0% Average Loss 0% Compounding Annual Return 0% Drawdown 0% Expectancy 0 Start Equity 100000 End Equity 100000 Net Profit 0% Sharpe Ratio 0 Sortino Ratio 0 Probabilistic Sharpe Ratio 0% Loss Rate 0% Win Rate 0% Profit-Loss Ratio 0 Alpha 0 Beta 0 Annual Standard Deviation 0 Annual Variance 0 Information Ratio -0.966 Tracking Error 0.146 Treynor Ratio 0 Total Fees $0.00 Estimated Strategy Capacity $0 Lowest Capacity Asset Portfolio Turnover 0% Drawdown Recovery 0 |
# region imports
from AlgorithmImports import *
# endregion
class CrawlingYellowGreenSeahorse(QCAlgorithm):
def initialize(self):
self.set_start_date(2024, 3, 22)
self.add_equity("SPY")
self._secheduled_memory_plot()
def _secheduled_memory_plot(self):
if not self.live_mode:
return
self.memory_ema = ExponentialMovingAverage(60)
self.plot_indicator("Memory", self.memory_ema)
self.schedule.on(self.date_rules.every_day(), self.time_rules.every(timedelta(minutes=1)),
lambda: self.memory_ema.update(self.time, OS.TOTAL_PHYSICAL_MEMORY_USED))