Hi Daniel - I started looking into this problem by creating a minimal repro with just a record statement. Surprisingly, the code worked without any issue and plotted as expected, without any log lines. Here's the code for reference:
import datetime
import math
import numpy
import pandas
def clean_col(df):
# df = df.fillna(0)
# df = df[['rank', 'sid']]
log.info(' \n %s' % df[df['sid'] == 19657].head())
return df
def initialize(context):
#
#
#Read universe
context.SPY=sid(8554)
context.Sectors=[sid(19662), sid(19659), sid(19656), sid(19661), sid(19655), sid(19658), sid(19660), sid(19654), sid(19657)]
# context.Sectors=[sid(19657)]
#Read the rankings
fetch_csv('https://dl.dropboxusercontent.com/s/7shk9xm1xi311at/Ranks_QuantopianTest.csv',
date_column='Date',
post_func=clean_col)
def handle_data(context, data):
if 'rank' in data[sid(19657)]:
record(signal=data[sid(19657)]['rank'])
else:
log.warn("No rank for XLI")
Looking at the log line in the code, I realized this is a whitespace problem. The else was outdented by one level, and so was being called at the conclusion of the for loop. Since XLI was the final element in your context.Sectors list, it was always being logged. Attached is a patched version with the desired indentation, and I was able to run a backtest without any of the log warnings or errors.
thanks,
fawce
Disclaimer
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by Quantopian. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. No information contained herein should be regarded as a suggestion to engage in or refrain from any investment-related course of action as none of Quantopian nor any of its affiliates is undertaking to provide investment advice, act as an adviser to any plan or entity subject to the Employee Retirement Income Security Act of 1974, as amended, individual retirement account or individual retirement annuity, or give advice in a fiduciary capacity with respect to the materials presented herein. If you are an individual retirement or other investor, contact your financial advisor or other fiduciary unrelated to Quantopian about whether any given investment idea, strategy, product or service described herein may be appropriate for your circumstances. All investments involve risk, including loss of principal. Quantopian makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances.