From 8fd18e5aa607b75b1815f9d5166c1f2493527b70 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Sun, 25 Oct 2015 15:16:57 -0400 Subject: [PATCH] DOC: Comment on treasury division by 100. --- zipline/data/treasuries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/data/treasuries.py b/zipline/data/treasuries.py index b5fe9a1d..4c3594cd 100644 --- a/zipline/data/treasuries.py +++ b/zipline/data/treasuries.py @@ -80,7 +80,7 @@ def get_treasury_data(start_date, end_date): how='all' ).rename( columns=parse_treasury_csv_column - ).tz_localize('UTC') * 0.01 + ).tz_localize('UTC') * 0.01 # Convert from 2.57% to 0.0257. def dataconverter(s):