Overall Statistics
Total Trades
0
Average Win
0%
Average Loss
0%
Compounding Annual Return
0%
Drawdown
0%
Expectancy
0
Net Profit
0%
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
Tracking Error
0
Treynor Ratio
0
Total Fees
$0.00
from collections import deque
from datetime import datetime, timedelta
from numpy import sum


class CustomIndicatorAlgorithm(QCAlgorithm):
    def Initialize(self):
        self.SetStartDate(2013,10,7)
        self.SetEndDate(2013,10,11)
        self.AddEquity("SPY", Resolution.Daily)
        self.cr = ClosingRangeIndicator(1)
        self.RegisterIndicator("SPY", self.cr, Resolution.Daily)

    def OnData(self, data):
        cr = self.cr.Value
        self.Debug(cr)


class ClosingRangeIndicator:
    def __init__(self, period):
        self.Time = datetime.min
        self.Value = 0
        self.IsReady = False
        self.queue = deque(maxlen=period)

    # Update method is mandatory
    def Update(self, input):
        count = len(self.queue)
        self.queue.appendleft(input.Close)
        self.Time = input.EndTime
        self.Value = (input.Close - input.Low)/(input.High - input.Low)
        self.IsReady = count == self.queue.maxlen