From fe11e8c68f8e4b3b621edcd98328844960a14584 Mon Sep 17 00:00:00 2001 From: Nathan Chu Date: Sat, 8 Mar 2025 20:42:49 -0500 Subject: [PATCH 1/4] Added stable minus risky strategy implementation --- backtester/order_generator.py | 78 +- backtester/smr.ipynb | 8598 +++++++++++++++++++++++++++++++++ 2 files changed, 8675 insertions(+), 1 deletion(-) create mode 100644 backtester/smr.ipynb diff --git a/backtester/order_generator.py b/backtester/order_generator.py index b848c9d..571e381 100644 --- a/backtester/order_generator.py +++ b/backtester/order_generator.py @@ -132,4 +132,80 @@ def generate_orders(self, data: Dict[str, pd.DataFrame]) -> List[Dict[str, Any]] orders = self.generate_orders_for_date(beta_values, date) all_orders.extend(orders) - return all_orders \ No newline at end of file + return all_orders + +class StableMinusRiskyOrderGenerator: + def __init__(self, lookback_period = 60, rebalance_frequency = 'ME', starting_portfolio_value = 100000): + self.lookback_period = lookback_period + self.rebalance_frequency = rebalance_frequency + self.starting_portfolio_value = starting_portfolio_value + + def calculate_predicted_returns(self, data, date): + predicted_returns = {} + for ticker, df in data.items(): + if len(df) < self.lookback_period: + continue + if df.index[-1] < date: + continue + df_up_to_date = df.loc[:date] + if len(df_up_to_date) < self.lookback_period: + continue + recent = df_up_to_date.iloc[-self.lookback_period:] + daily_returns = recent['Adj Close'].pct_change().dropna() + if len(daily_returns) > 0: + avg_daily_return = daily_returns.mean() + ann_return = avg_daily_return * 252 + predicted_returns[ticker] = ann_return + return predicted_returns + + def generate_orders_for_date(self, predicted_returns, date): + pr_series = pd.Series(predicted_returns).dropna() + if pr_series.empty: + return [] + sorted_by_pr = pr_series.sort_values() + num_stocks = len(sorted_by_pr) + decile_size = max(int(num_stocks * 0.1), 1) + risky_tickers = sorted_by_pr.head(decile_size).index.tolist() + stable_tickers = sorted_by_pr.tail(decile_size).index.tolist() + half_capital = self.starting_portfolio_value / 2.0 + stable_allocation_per_ticker = half_capital / decile_size + risky_allocation_per_ticker = half_capital / decile_size + orders = [] + for ticker in stable_tickers: + quantity = int(stable_allocation_per_ticker) + if quantity > 0: + orders.append({ + "date": date, + "type": "BUY", + "ticker": ticker, + "quantity": quantity + }) + for ticker in risky_tickers: + quantity = int(risky_allocation_per_ticker) + if quantity > 0: + orders.append({ + "date": date, + "type": "SELL", + "ticker": ticker, + "quantity": quantity + }) + return orders + + def generate_orders(self, data: Dict[str, pd.DataFrame]) -> List[Dict[str, Any]]: + if 'SPY' not in data: + raise ValueError("SPY data is required.") + spy_data = data['SPY'] + spy_dates = spy_data.index + if len(spy_dates) <= self.lookback_period: + raise ValueError("Not enough SPY data.") + start_date = spy_dates[self.lookback_period] + end_date = spy_dates[-1] + rebalance_dates = pd.date_range(start=start_date, end=end_date, freq=self.rebalance_frequency) + all_orders = [] + for date in rebalance_dates: + pr_values = self.calculate_predicted_returns(data, date) + if len(pr_values) < 20: + continue + orders = self.generate_orders_for_date(pr_values, date) + all_orders.extend(orders) + return all_orders diff --git a/backtester/smr.ipynb b/backtester/smr.ipynb new file mode 100644 index 0000000..fb7bb92 --- /dev/null +++ b/backtester/smr.ipynb @@ -0,0 +1,8598 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[*********************100%***********************] 1 of 1 completed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Buying VRSK on 2010-04-30 00:00:00\n", + "Buying RMD on 2010-04-30 00:00:00\n", + "Buying WTW on 2010-04-30 00:00:00\n", + "Buying CLX on 2010-04-30 00:00:00\n", + "Buying LDOS on 2010-04-30 00:00:00\n", + "Buying DUK on 2010-04-30 00:00:00\n", + "Buying CHD on 2010-04-30 00:00:00\n", + "Buying AJG on 2010-04-30 00:00:00\n", + "Buying BDX on 2010-04-30 00:00:00\n", + "Buying MTCH on 2010-04-30 00:00:00\n", + "Buying ACGL on 2010-04-30 00:00:00\n", + "Buying CTAS on 2010-04-30 00:00:00\n", + "Selling NUE on 2010-04-30 00:00:00\n", + "Selling CE on 2010-04-30 00:00:00\n", + "Selling GS on 2010-04-30 00:00:00\n", + "Selling PARA on 2010-04-30 00:00:00\n", + "Selling DFS on 2010-04-30 00:00:00\n", + "Selling FCX on 2010-04-30 00:00:00\n", + "Selling INCY on 2010-04-30 00:00:00\n", + "Selling STLD on 2010-04-30 00:00:00\n", + "Selling JBL on 2010-04-30 00:00:00\n", + "Selling ULTA on 2010-04-30 00:00:00\n", + "Selling C on 2010-04-30 00:00:00\n", + "Selling LVS on 2010-04-30 00:00:00\n", + "Buying VRSK on 2010-05-31 00:00:00\n", + "Buying LDOS on 2010-05-31 00:00:00\n", + "Buying DLTR on 2010-05-31 00:00:00\n", + "Buying BMY on 2010-05-31 00:00:00\n", + "Buying CHD on 2010-05-31 00:00:00\n", + "Buying FIS on 2010-05-31 00:00:00\n", + "Buying CLX on 2010-05-31 00:00:00\n", + "Buying SO on 2010-05-31 00:00:00\n", + "Buying SJM on 2010-05-31 00:00:00\n", + "Buying DUK on 2010-05-31 00:00:00\n", + "Buying BDX on 2010-05-31 00:00:00\n", + "Buying LH on 2010-05-31 00:00:00\n", + "Selling DFS on 2010-05-31 00:00:00\n", + "Selling ULTA on 2010-05-31 00:00:00\n", + "Selling NFLX on 2010-05-31 00:00:00\n", + "Selling PARA on 2010-05-31 00:00:00\n", + "Selling BKNG on 2010-05-31 00:00:00\n", + "Selling CE on 2010-05-31 00:00:00\n", + "Selling HBAN on 2010-05-31 00:00:00\n", + "Selling LYV on 2010-05-31 00:00:00\n", + "Selling TXT on 2010-05-31 00:00:00\n", + "Selling JBL on 2010-05-31 00:00:00\n", + "Selling INCY on 2010-05-31 00:00:00\n", + "Selling LVS on 2010-05-31 00:00:00\n", + "Buying BMY on 2010-06-30 00:00:00\n", + "Buying LDOS on 2010-06-30 00:00:00\n", + "Buying DLTR on 2010-06-30 00:00:00\n", + "Buying VRSK on 2010-06-30 00:00:00\n", + "Buying CLX on 2010-06-30 00:00:00\n", + "Buying FIS on 2010-06-30 00:00:00\n", + "Buying SO on 2010-06-30 00:00:00\n", + "Buying CHD on 2010-06-30 00:00:00\n", + "Buying SJM on 2010-06-30 00:00:00\n", + "Buying DG on 2010-06-30 00:00:00\n", + "Buying NEM on 2010-06-30 00:00:00\n", + "Buying GIS on 2010-06-30 00:00:00\n", + "Selling DFS on 2010-06-30 00:00:00\n", + "Selling FCX on 2010-06-30 00:00:00\n", + "Selling CE on 2010-06-30 00:00:00\n", + "Selling HBAN on 2010-06-30 00:00:00\n", + "Selling J on 2010-06-30 00:00:00\n", + "Selling LYV on 2010-06-30 00:00:00\n", + "Selling BWA on 2010-06-30 00:00:00\n", + "Selling PARA on 2010-06-30 00:00:00\n", + "Selling JBL on 2010-06-30 00:00:00\n", + "Selling TXT on 2010-06-30 00:00:00\n", + "Selling INCY on 2010-06-30 00:00:00\n", + "Selling LVS on 2010-06-30 00:00:00\n", + "Buying DLTR on 2010-07-31 00:00:00\n", + "Buying FIS on 2010-07-31 00:00:00\n", + "Buying VRSK on 2010-07-31 00:00:00\n", + "Buying BMY on 2010-07-31 00:00:00\n", + "Buying LDOS on 2010-07-31 00:00:00\n", + "Buying CLX on 2010-07-31 00:00:00\n", + "Buying SO on 2010-07-31 00:00:00\n", + "Buying LH on 2010-07-31 00:00:00\n", + "Buying SJM on 2010-07-31 00:00:00\n", + "Buying DG on 2010-07-31 00:00:00\n", + "Buying GIS on 2010-07-31 00:00:00\n", + "Buying TAP on 2010-07-31 00:00:00\n", + "Selling PHM on 2010-07-31 00:00:00\n", + "Selling CE on 2010-07-31 00:00:00\n", + "Selling FFIV on 2010-07-31 00:00:00\n", + "Selling FCX on 2010-07-31 00:00:00\n", + "Selling BWA on 2010-07-31 00:00:00\n", + "Selling PARA on 2010-07-31 00:00:00\n", + "Selling LYV on 2010-07-31 00:00:00\n", + "Selling HBAN on 2010-07-31 00:00:00\n", + "Selling JBL on 2010-07-31 00:00:00\n", + "Selling TXT on 2010-07-31 00:00:00\n", + "Selling LVS on 2010-07-31 00:00:00\n", + "Selling INCY on 2010-07-31 00:00:00\n", + "Buying DLTR on 2010-08-31 00:00:00\n", + "Buying VRSK on 2010-08-31 00:00:00\n", + "Buying NFLX on 2010-08-31 00:00:00\n", + "Buying EW on 2010-08-31 00:00:00\n", + "Buying SJM on 2010-08-31 00:00:00\n", + "Buying GIS on 2010-08-31 00:00:00\n", + "Buying MNST on 2010-08-31 00:00:00\n", + "Buying CLX on 2010-08-31 00:00:00\n", + "Buying COR on 2010-08-31 00:00:00\n", + "Buying DG on 2010-08-31 00:00:00\n", + "Buying SO on 2010-08-31 00:00:00\n", + "Buying BMY on 2010-08-31 00:00:00\n", + "Selling FFIV on 2010-08-31 00:00:00\n", + "Selling BWA on 2010-08-31 00:00:00\n", + "Selling INCY on 2010-08-31 00:00:00\n", + "Selling DFS on 2010-08-31 00:00:00\n", + "Selling TXT on 2010-08-31 00:00:00\n", + "Selling PHM on 2010-08-31 00:00:00\n", + "Selling CE on 2010-08-31 00:00:00\n", + "Selling FCX on 2010-08-31 00:00:00\n", + "Selling PARA on 2010-08-31 00:00:00\n", + "Selling LVS on 2010-08-31 00:00:00\n", + "Selling HBAN on 2010-08-31 00:00:00\n", + "Selling LYV on 2010-08-31 00:00:00\n", + "Buying NFLX on 2010-09-30 00:00:00\n", + "Buying DLTR on 2010-09-30 00:00:00\n", + "Buying NEM on 2010-09-30 00:00:00\n", + "Buying VRSK on 2010-09-30 00:00:00\n", + "Buying EW on 2010-09-30 00:00:00\n", + "Buying GIS on 2010-09-30 00:00:00\n", + "Buying SJM on 2010-09-30 00:00:00\n", + "Buying SO on 2010-09-30 00:00:00\n", + "Buying CLX on 2010-09-30 00:00:00\n", + "Buying PPL on 2010-09-30 00:00:00\n", + "Buying LH on 2010-09-30 00:00:00\n", + "Buying BMY on 2010-09-30 00:00:00\n", + "Selling A on 2010-09-30 00:00:00\n", + "Selling WFC on 2010-09-30 00:00:00\n", + "Selling BWA on 2010-09-30 00:00:00\n", + "Selling DFS on 2010-09-30 00:00:00\n", + "Selling TXT on 2010-09-30 00:00:00\n", + "Selling MAR on 2010-09-30 00:00:00\n", + "Selling CE on 2010-09-30 00:00:00\n", + "Selling PHM on 2010-09-30 00:00:00\n", + "Selling PARA on 2010-09-30 00:00:00\n", + "Selling HBAN on 2010-09-30 00:00:00\n", + "Selling JBL on 2010-09-30 00:00:00\n", + "Selling LYV on 2010-09-30 00:00:00\n", + "Buying EW on 2010-10-31 00:00:00\n", + "Buying DLTR on 2010-10-31 00:00:00\n", + "Buying NFLX on 2010-10-31 00:00:00\n", + "Buying VRSK on 2010-10-31 00:00:00\n", + "Buying GIS on 2010-10-31 00:00:00\n", + "Buying BF-B on 2010-10-31 00:00:00\n", + "Buying NEM on 2010-10-31 00:00:00\n", + "Buying SO on 2010-10-31 00:00:00\n", + "Buying CMS on 2010-10-31 00:00:00\n", + "Buying PPL on 2010-10-31 00:00:00\n", + "Buying AEP on 2010-10-31 00:00:00\n", + "Buying CLX on 2010-10-31 00:00:00\n", + "Selling MAR on 2010-10-31 00:00:00\n", + "Selling ROK on 2010-10-31 00:00:00\n", + "Selling TDY on 2010-10-31 00:00:00\n", + "Selling WFC on 2010-10-31 00:00:00\n", + "Selling HBAN on 2010-10-31 00:00:00\n", + "Selling PARA on 2010-10-31 00:00:00\n", + "Selling FCX on 2010-10-31 00:00:00\n", + "Selling TXT on 2010-10-31 00:00:00\n", + "Selling CE on 2010-10-31 00:00:00\n", + "Selling JBL on 2010-10-31 00:00:00\n", + "Selling AXON on 2010-10-31 00:00:00\n", + "Selling LYV on 2010-10-31 00:00:00\n", + "Buying NFLX on 2010-11-30 00:00:00\n", + "Buying EW on 2010-11-30 00:00:00\n", + "Buying CLX on 2010-11-30 00:00:00\n", + "Buying DLTR on 2010-11-30 00:00:00\n", + "Buying DG on 2010-11-30 00:00:00\n", + "Buying SJM on 2010-11-30 00:00:00\n", + "Buying PPL on 2010-11-30 00:00:00\n", + "Buying CBOE on 2010-11-30 00:00:00\n", + "Buying AEP on 2010-11-30 00:00:00\n", + "Buying SO on 2010-11-30 00:00:00\n", + "Buying VRSK on 2010-11-30 00:00:00\n", + "Buying DUK on 2010-11-30 00:00:00\n", + "Selling C on 2010-11-30 00:00:00\n", + "Selling EXR on 2010-11-30 00:00:00\n", + "Selling TDY on 2010-11-30 00:00:00\n", + "Selling WFC on 2010-11-30 00:00:00\n", + "Selling HBAN on 2010-11-30 00:00:00\n", + "Selling LVS on 2010-11-30 00:00:00\n", + "Selling TXT on 2010-11-30 00:00:00\n", + "Selling LYV on 2010-11-30 00:00:00\n", + "Selling JBL on 2010-11-30 00:00:00\n", + "Selling CE on 2010-11-30 00:00:00\n", + "Selling AXON on 2010-11-30 00:00:00\n", + "Selling FCX on 2010-11-30 00:00:00\n", + "Buying NFLX on 2010-12-31 00:00:00\n", + "Buying DG on 2010-12-31 00:00:00\n", + "Buying MNST on 2010-12-31 00:00:00\n", + "Buying CLX on 2010-12-31 00:00:00\n", + "Buying VRTX on 2010-12-31 00:00:00\n", + "Buying MPWR on 2010-12-31 00:00:00\n", + "Buying CBOE on 2010-12-31 00:00:00\n", + "Buying CRL on 2010-12-31 00:00:00\n", + "Buying DLTR on 2010-12-31 00:00:00\n", + "Buying SJM on 2010-12-31 00:00:00\n", + "Buying SO on 2010-12-31 00:00:00\n", + "Buying GIS on 2010-12-31 00:00:00\n", + "Selling BWA on 2010-12-31 00:00:00\n", + "Selling HBAN on 2010-12-31 00:00:00\n", + "Selling SWKS on 2010-12-31 00:00:00\n", + "Selling AXON on 2010-12-31 00:00:00\n", + "Selling C on 2010-12-31 00:00:00\n", + "Selling WFC on 2010-12-31 00:00:00\n", + "Selling J on 2010-12-31 00:00:00\n", + "Selling PHM on 2010-12-31 00:00:00\n", + "Selling JBL on 2010-12-31 00:00:00\n", + "Selling LVS on 2010-12-31 00:00:00\n", + "Selling CE on 2010-12-31 00:00:00\n", + "Selling FCX on 2010-12-31 00:00:00\n", + "Buying NFLX on 2011-01-31 00:00:00\n", + "Buying DG on 2011-01-31 00:00:00\n", + "Buying DLTR on 2011-01-31 00:00:00\n", + "Buying CLX on 2011-01-31 00:00:00\n", + "Buying SJM on 2011-01-31 00:00:00\n", + "Buying ERIE on 2011-01-31 00:00:00\n", + "Buying CBOE on 2011-01-31 00:00:00\n", + "Buying GIS on 2011-01-31 00:00:00\n", + "Buying SO on 2011-01-31 00:00:00\n", + "Buying MNST on 2011-01-31 00:00:00\n", + "Buying CRL on 2011-01-31 00:00:00\n", + "Buying HAS on 2011-01-31 00:00:00\n", + "Selling A on 2011-01-31 00:00:00\n", + "Selling C on 2011-01-31 00:00:00\n", + "Selling BWA on 2011-01-31 00:00:00\n", + "Selling WFC on 2011-01-31 00:00:00\n", + "Selling LVS on 2011-01-31 00:00:00\n", + "Selling CE on 2011-01-31 00:00:00\n", + "Selling SWKS on 2011-01-31 00:00:00\n", + "Selling HBAN on 2011-01-31 00:00:00\n", + "Selling J on 2011-01-31 00:00:00\n", + "Selling JBL on 2011-01-31 00:00:00\n", + "Selling FCX on 2011-01-31 00:00:00\n", + "Selling PHM on 2011-01-31 00:00:00\n", + "Buying GIS on 2011-02-28 00:00:00\n", + "Buying ERIE on 2011-02-28 00:00:00\n", + "Buying SYY on 2011-02-28 00:00:00\n", + "Buying SO on 2011-02-28 00:00:00\n", + "Buying D on 2011-02-28 00:00:00\n", + "Buying DUK on 2011-02-28 00:00:00\n", + "Buying SJM on 2011-02-28 00:00:00\n", + "Buying PPL on 2011-02-28 00:00:00\n", + "Buying VRTX on 2011-02-28 00:00:00\n", + "Buying BMY on 2011-02-28 00:00:00\n", + "Buying SRE on 2011-02-28 00:00:00\n", + "Buying LH on 2011-02-28 00:00:00\n", + "Selling BX on 2011-02-28 00:00:00\n", + "Selling MPWR on 2011-02-28 00:00:00\n", + "Selling BWA on 2011-02-28 00:00:00\n", + "Selling LYV on 2011-02-28 00:00:00\n", + "Selling ADBE on 2011-02-28 00:00:00\n", + "Selling A on 2011-02-28 00:00:00\n", + "Selling CE on 2011-02-28 00:00:00\n", + "Selling WFC on 2011-02-28 00:00:00\n", + "Selling PHM on 2011-02-28 00:00:00\n", + "Selling SWKS on 2011-02-28 00:00:00\n", + "Selling J on 2011-02-28 00:00:00\n", + "Selling JBL on 2011-02-28 00:00:00\n", + "Buying NFLX on 2011-03-31 00:00:00\n", + "Buying SYY on 2011-03-31 00:00:00\n", + "Buying GIS on 2011-03-31 00:00:00\n", + "Buying DLTR on 2011-03-31 00:00:00\n", + "Buying ERIE on 2011-03-31 00:00:00\n", + "Buying AMT on 2011-03-31 00:00:00\n", + "Buying DUK on 2011-03-31 00:00:00\n", + "Buying NEM on 2011-03-31 00:00:00\n", + "Buying SO on 2011-03-31 00:00:00\n", + "Buying PPL on 2011-03-31 00:00:00\n", + "Buying DG on 2011-03-31 00:00:00\n", + "Buying TRGP on 2011-03-31 00:00:00\n", + "Selling PTC on 2011-03-31 00:00:00\n", + "Selling A on 2011-03-31 00:00:00\n", + "Selling BX on 2011-03-31 00:00:00\n", + "Selling BLK on 2011-03-31 00:00:00\n", + "Selling STLD on 2011-03-31 00:00:00\n", + "Selling PARA on 2011-03-31 00:00:00\n", + "Selling SWKS on 2011-03-31 00:00:00\n", + "Selling TXT on 2011-03-31 00:00:00\n", + "Selling JBL on 2011-03-31 00:00:00\n", + "Selling J on 2011-03-31 00:00:00\n", + "Selling CE on 2011-03-31 00:00:00\n", + "Selling LVS on 2011-03-31 00:00:00\n", + "Buying NFLX on 2011-04-30 00:00:00\n", + "Buying DG on 2011-04-30 00:00:00\n", + "Buying SYY on 2011-04-30 00:00:00\n", + "Buying IRM on 2011-04-30 00:00:00\n", + "Buying NEM on 2011-04-30 00:00:00\n", + "Buying PPL on 2011-04-30 00:00:00\n", + "Buying GIS on 2011-04-30 00:00:00\n", + "Buying DUK on 2011-04-30 00:00:00\n", + "Buying SO on 2011-04-30 00:00:00\n", + "Buying CLX on 2011-04-30 00:00:00\n", + "Buying WTW on 2011-04-30 00:00:00\n", + "Buying DLTR on 2011-04-30 00:00:00\n", + "Selling A on 2011-04-30 00:00:00\n", + "Selling STLD on 2011-04-30 00:00:00\n", + "Selling BWA on 2011-04-30 00:00:00\n", + "Selling PARA on 2011-04-30 00:00:00\n", + "Selling BX on 2011-04-30 00:00:00\n", + "Selling AXON on 2011-04-30 00:00:00\n", + "Selling CAT on 2011-04-30 00:00:00\n", + "Selling MPWR on 2011-04-30 00:00:00\n", + "Selling TXT on 2011-04-30 00:00:00\n", + "Selling LVS on 2011-04-30 00:00:00\n", + "Selling JBL on 2011-04-30 00:00:00\n", + "Selling CE on 2011-04-30 00:00:00\n", + "Buying NFLX on 2011-05-31 00:00:00\n", + "Buying IRM on 2011-05-31 00:00:00\n", + "Buying AMT on 2011-05-31 00:00:00\n", + "Buying DRI on 2011-05-31 00:00:00\n", + "Buying DG on 2011-05-31 00:00:00\n", + "Buying CLX on 2011-05-31 00:00:00\n", + "Buying PPL on 2011-05-31 00:00:00\n", + "Buying CVS on 2011-05-31 00:00:00\n", + "Buying VRSK on 2011-05-31 00:00:00\n", + "Buying ICE on 2011-05-31 00:00:00\n", + "Buying SO on 2011-05-31 00:00:00\n", + "Buying AEP on 2011-05-31 00:00:00\n", + "Selling ROK on 2011-05-31 00:00:00\n", + "Selling MPWR on 2011-05-31 00:00:00\n", + "Selling PTC on 2011-05-31 00:00:00\n", + "Selling BWA on 2011-05-31 00:00:00\n", + "Selling RJF on 2011-05-31 00:00:00\n", + "Selling MTD on 2011-05-31 00:00:00\n", + "Selling J on 2011-05-31 00:00:00\n", + "Selling CAT on 2011-05-31 00:00:00\n", + "Selling LVS on 2011-05-31 00:00:00\n", + "Selling LYB on 2011-05-31 00:00:00\n", + "Selling BX on 2011-05-31 00:00:00\n", + "Selling CE on 2011-05-31 00:00:00\n", + "Buying DGX on 2011-06-30 00:00:00\n", + "Buying VRSK on 2011-06-30 00:00:00\n", + "Buying AEP on 2011-06-30 00:00:00\n", + "Buying SO on 2011-06-30 00:00:00\n", + "Buying PPL on 2011-06-30 00:00:00\n", + "Buying HII on 2011-06-30 00:00:00\n", + "Buying DUK on 2011-06-30 00:00:00\n", + "Buying ACGL on 2011-06-30 00:00:00\n", + "Buying ORLY on 2011-06-30 00:00:00\n", + "Buying CLX on 2011-06-30 00:00:00\n", + "Buying GILD on 2011-06-30 00:00:00\n", + "Buying D on 2011-06-30 00:00:00\n", + "Selling A on 2011-06-30 00:00:00\n", + "Selling FFIV on 2011-06-30 00:00:00\n", + "Selling RJF on 2011-06-30 00:00:00\n", + "Selling JBL on 2011-06-30 00:00:00\n", + "Selling BWA on 2011-06-30 00:00:00\n", + "Selling SWKS on 2011-06-30 00:00:00\n", + "Selling MTD on 2011-06-30 00:00:00\n", + "Selling J on 2011-06-30 00:00:00\n", + "Selling CE on 2011-06-30 00:00:00\n", + "Selling CAT on 2011-06-30 00:00:00\n", + "Selling FCX on 2011-06-30 00:00:00\n", + "Selling LYB on 2011-06-30 00:00:00\n", + "Buying MTCH on 2011-07-31 00:00:00\n", + "Buying HII on 2011-07-31 00:00:00\n", + "Buying VRSK on 2011-07-31 00:00:00\n", + "Buying SO on 2011-07-31 00:00:00\n", + "Buying AEP on 2011-07-31 00:00:00\n", + "Buying VRTX on 2011-07-31 00:00:00\n", + "Buying DUK on 2011-07-31 00:00:00\n", + "Buying CLX on 2011-07-31 00:00:00\n", + "Buying WTW on 2011-07-31 00:00:00\n", + "Buying PPL on 2011-07-31 00:00:00\n", + "Buying GIS on 2011-07-31 00:00:00\n", + "Buying AJG on 2011-07-31 00:00:00\n", + "Selling MTD on 2011-07-31 00:00:00\n", + "Selling LYV on 2011-07-31 00:00:00\n", + "Selling SWKS on 2011-07-31 00:00:00\n", + "Selling J on 2011-07-31 00:00:00\n", + "Selling RJF on 2011-07-31 00:00:00\n", + "Selling ROK on 2011-07-31 00:00:00\n", + "Selling BLK on 2011-07-31 00:00:00\n", + "Selling FCX on 2011-07-31 00:00:00\n", + "Selling CE on 2011-07-31 00:00:00\n", + "Selling JBL on 2011-07-31 00:00:00\n", + "Selling PHM on 2011-07-31 00:00:00\n", + "Selling LYB on 2011-07-31 00:00:00\n", + "Buying NEM on 2011-08-31 00:00:00\n", + "Buying SO on 2011-08-31 00:00:00\n", + "Buying GIS on 2011-08-31 00:00:00\n", + "Buying SYY on 2011-08-31 00:00:00\n", + "Buying HII on 2011-08-31 00:00:00\n", + "Buying DG on 2011-08-31 00:00:00\n", + "Buying ORLY on 2011-08-31 00:00:00\n", + "Buying DUK on 2011-08-31 00:00:00\n", + "Buying D on 2011-08-31 00:00:00\n", + "Buying T on 2011-08-31 00:00:00\n", + "Buying VRSK on 2011-08-31 00:00:00\n", + "Buying PPL on 2011-08-31 00:00:00\n", + "Selling PHM on 2011-08-31 00:00:00\n", + "Selling RJF on 2011-08-31 00:00:00\n", + "Selling ULTA on 2011-08-31 00:00:00\n", + "Selling TXT on 2011-08-31 00:00:00\n", + "Selling ROK on 2011-08-31 00:00:00\n", + "Selling A on 2011-08-31 00:00:00\n", + "Selling PARA on 2011-08-31 00:00:00\n", + "Selling BX on 2011-08-31 00:00:00\n", + "Selling CE on 2011-08-31 00:00:00\n", + "Selling C on 2011-08-31 00:00:00\n", + "Selling JBL on 2011-08-31 00:00:00\n", + "Selling LYB on 2011-08-31 00:00:00\n", + "Buying NEM on 2011-09-30 00:00:00\n", + "Buying SO on 2011-09-30 00:00:00\n", + "Buying GIS on 2011-09-30 00:00:00\n", + "Buying ORLY on 2011-09-30 00:00:00\n", + "Buying SYY on 2011-09-30 00:00:00\n", + "Buying DUK on 2011-09-30 00:00:00\n", + "Buying PPL on 2011-09-30 00:00:00\n", + "Buying DG on 2011-09-30 00:00:00\n", + "Buying T on 2011-09-30 00:00:00\n", + "Buying D on 2011-09-30 00:00:00\n", + "Buying VRSK on 2011-09-30 00:00:00\n", + "Buying HII on 2011-09-30 00:00:00\n", + "Selling ROK on 2011-09-30 00:00:00\n", + "Selling PHM on 2011-09-30 00:00:00\n", + "Selling RJF on 2011-09-30 00:00:00\n", + "Selling TXT on 2011-09-30 00:00:00\n", + "Selling HBAN on 2011-09-30 00:00:00\n", + "Selling A on 2011-09-30 00:00:00\n", + "Selling PARA on 2011-09-30 00:00:00\n", + "Selling JBL on 2011-09-30 00:00:00\n", + "Selling BX on 2011-09-30 00:00:00\n", + "Selling LYB on 2011-09-30 00:00:00\n", + "Selling C on 2011-09-30 00:00:00\n", + "Selling CE on 2011-09-30 00:00:00\n", + "Buying NEM on 2011-10-31 00:00:00\n", + "Buying SO on 2011-10-31 00:00:00\n", + "Buying GIS on 2011-10-31 00:00:00\n", + "Buying DG on 2011-10-31 00:00:00\n", + "Buying DUK on 2011-10-31 00:00:00\n", + "Buying PPL on 2011-10-31 00:00:00\n", + "Buying SYY on 2011-10-31 00:00:00\n", + "Buying DLTR on 2011-10-31 00:00:00\n", + "Buying D on 2011-10-31 00:00:00\n", + "Buying BMY on 2011-10-31 00:00:00\n", + "Buying ORLY on 2011-10-31 00:00:00\n", + "Buying SJM on 2011-10-31 00:00:00\n", + "Selling ROK on 2011-10-31 00:00:00\n", + "Selling JBL on 2011-10-31 00:00:00\n", + "Selling STLD on 2011-10-31 00:00:00\n", + "Selling PARA on 2011-10-31 00:00:00\n", + "Selling HBAN on 2011-10-31 00:00:00\n", + "Selling RJF on 2011-10-31 00:00:00\n", + "Selling BX on 2011-10-31 00:00:00\n", + "Selling PHM on 2011-10-31 00:00:00\n", + "Selling A on 2011-10-31 00:00:00\n", + "Selling LYB on 2011-10-31 00:00:00\n", + "Selling CE on 2011-10-31 00:00:00\n", + "Selling C on 2011-10-31 00:00:00\n", + "Buying GIS on 2011-11-30 00:00:00\n", + "Buying SO on 2011-11-30 00:00:00\n", + "Buying DLTR on 2011-11-30 00:00:00\n", + "Buying CLX on 2011-11-30 00:00:00\n", + "Buying DUK on 2011-11-30 00:00:00\n", + "Buying DG on 2011-11-30 00:00:00\n", + "Buying PPL on 2011-11-30 00:00:00\n", + "Buying CHD on 2011-11-30 00:00:00\n", + "Buying SJM on 2011-11-30 00:00:00\n", + "Buying D on 2011-11-30 00:00:00\n", + "Buying BMY on 2011-11-30 00:00:00\n", + "Buying ORLY on 2011-11-30 00:00:00\n", + "Selling ROK on 2011-11-30 00:00:00\n", + "Selling LYB on 2011-11-30 00:00:00\n", + "Selling HBAN on 2011-11-30 00:00:00\n", + "Selling PTC on 2011-11-30 00:00:00\n", + "Selling RJF on 2011-11-30 00:00:00\n", + "Selling BX on 2011-11-30 00:00:00\n", + "Selling A on 2011-11-30 00:00:00\n", + "Selling FCX on 2011-11-30 00:00:00\n", + "Selling STLD on 2011-11-30 00:00:00\n", + "Selling CE on 2011-11-30 00:00:00\n", + "Selling PHM on 2011-11-30 00:00:00\n", + "Selling C on 2011-11-30 00:00:00\n", + "Buying CLX on 2011-12-31 00:00:00\n", + "Buying DLTR on 2011-12-31 00:00:00\n", + "Buying DG on 2011-12-31 00:00:00\n", + "Buying SO on 2011-12-31 00:00:00\n", + "Buying GIS on 2011-12-31 00:00:00\n", + "Buying CHD on 2011-12-31 00:00:00\n", + "Buying VRTX on 2011-12-31 00:00:00\n", + "Buying DUK on 2011-12-31 00:00:00\n", + "Buying PPL on 2011-12-31 00:00:00\n", + "Buying SJM on 2011-12-31 00:00:00\n", + "Buying BMY on 2011-12-31 00:00:00\n", + "Buying D on 2011-12-31 00:00:00\n", + "Selling GS on 2011-12-31 00:00:00\n", + "Selling ROK on 2011-12-31 00:00:00\n", + "Selling BLK on 2011-12-31 00:00:00\n", + "Selling BX on 2011-12-31 00:00:00\n", + "Selling RJF on 2011-12-31 00:00:00\n", + "Selling STLD on 2011-12-31 00:00:00\n", + "Selling FCX on 2011-12-31 00:00:00\n", + "Selling A on 2011-12-31 00:00:00\n", + "Selling CE on 2011-12-31 00:00:00\n", + "Selling PTC on 2011-12-31 00:00:00\n", + "Selling C on 2011-12-31 00:00:00\n", + "Selling PHM on 2011-12-31 00:00:00\n", + "Buying CLX on 2012-01-31 00:00:00\n", + "Buying DG on 2012-01-31 00:00:00\n", + "Buying DLTR on 2012-01-31 00:00:00\n", + "Buying SO on 2012-01-31 00:00:00\n", + "Buying CHD on 2012-01-31 00:00:00\n", + "Buying WTW on 2012-01-31 00:00:00\n", + "Buying GIS on 2012-01-31 00:00:00\n", + "Buying DUK on 2012-01-31 00:00:00\n", + "Buying VRTX on 2012-01-31 00:00:00\n", + "Buying ORLY on 2012-01-31 00:00:00\n", + "Buying PPL on 2012-01-31 00:00:00\n", + "Buying VRSK on 2012-01-31 00:00:00\n", + "Selling MPWR on 2012-01-31 00:00:00\n", + "Selling PTC on 2012-01-31 00:00:00\n", + "Selling FFIV on 2012-01-31 00:00:00\n", + "Selling GS on 2012-01-31 00:00:00\n", + "Selling CE on 2012-01-31 00:00:00\n", + "Selling RJF on 2012-01-31 00:00:00\n", + "Selling A on 2012-01-31 00:00:00\n", + "Selling FCX on 2012-01-31 00:00:00\n", + "Selling STLD on 2012-01-31 00:00:00\n", + "Selling SWKS on 2012-01-31 00:00:00\n", + "Selling PHM on 2012-01-31 00:00:00\n", + "Selling C on 2012-01-31 00:00:00\n", + "Buying DG on 2012-02-29 00:00:00\n", + "Buying GIS on 2012-02-29 00:00:00\n", + "Buying PPL on 2012-02-29 00:00:00\n", + "Buying SO on 2012-02-29 00:00:00\n", + "Buying DLTR on 2012-02-29 00:00:00\n", + "Buying CHD on 2012-02-29 00:00:00\n", + "Buying EW on 2012-02-29 00:00:00\n", + "Buying SJM on 2012-02-29 00:00:00\n", + "Buying CBOE on 2012-02-29 00:00:00\n", + "Buying BMY on 2012-02-29 00:00:00\n", + "Buying DUK on 2012-02-29 00:00:00\n", + "Buying CLX on 2012-02-29 00:00:00\n", + "Selling RJF on 2012-02-29 00:00:00\n", + "Selling SWKS on 2012-02-29 00:00:00\n", + "Selling MPWR on 2012-02-29 00:00:00\n", + "Selling GM on 2012-02-29 00:00:00\n", + "Selling TXT on 2012-02-29 00:00:00\n", + "Selling CE on 2012-02-29 00:00:00\n", + "Selling A on 2012-02-29 00:00:00\n", + "Selling GS on 2012-02-29 00:00:00\n", + "Selling FCX on 2012-02-29 00:00:00\n", + "Selling STLD on 2012-02-29 00:00:00\n", + "Selling C on 2012-02-29 00:00:00\n", + "Selling PHM on 2012-02-29 00:00:00\n", + "Buying SO on 2012-03-31 00:00:00\n", + "Buying DG on 2012-03-31 00:00:00\n", + "Buying CBOE on 2012-03-31 00:00:00\n", + "Buying PPL on 2012-03-31 00:00:00\n", + "Buying SJM on 2012-03-31 00:00:00\n", + "Buying EW on 2012-03-31 00:00:00\n", + "Buying HII on 2012-03-31 00:00:00\n", + "Buying CMS on 2012-03-31 00:00:00\n", + "Buying D on 2012-03-31 00:00:00\n", + "Buying NI on 2012-03-31 00:00:00\n", + "Buying GIS on 2012-03-31 00:00:00\n", + "Buying DUK on 2012-03-31 00:00:00\n", + "Selling MPWR on 2012-03-31 00:00:00\n", + "Selling BWA on 2012-03-31 00:00:00\n", + "Selling PHM on 2012-03-31 00:00:00\n", + "Selling SWKS on 2012-03-31 00:00:00\n", + "Selling STLD on 2012-03-31 00:00:00\n", + "Selling TXT on 2012-03-31 00:00:00\n", + "Selling GM on 2012-03-31 00:00:00\n", + "Selling J on 2012-03-31 00:00:00\n", + "Selling C on 2012-03-31 00:00:00\n", + "Selling GS on 2012-03-31 00:00:00\n", + "Selling CE on 2012-03-31 00:00:00\n", + "Selling LYB on 2012-03-31 00:00:00\n", + "Buying SO on 2012-04-30 00:00:00\n", + "Buying SJM on 2012-04-30 00:00:00\n", + "Buying GIS on 2012-04-30 00:00:00\n", + "Buying PPL on 2012-04-30 00:00:00\n", + "Buying D on 2012-04-30 00:00:00\n", + "Buying CLX on 2012-04-30 00:00:00\n", + "Buying AEP on 2012-04-30 00:00:00\n", + "Buying DUK on 2012-04-30 00:00:00\n", + "Buying CMS on 2012-04-30 00:00:00\n", + "Buying AON on 2012-04-30 00:00:00\n", + "Buying ACGL on 2012-04-30 00:00:00\n", + "Buying CBOE on 2012-04-30 00:00:00\n", + "Selling J on 2012-04-30 00:00:00\n", + "Selling TXT on 2012-04-30 00:00:00\n", + "Selling JBL on 2012-04-30 00:00:00\n", + "Selling PTC on 2012-04-30 00:00:00\n", + "Selling STLD on 2012-04-30 00:00:00\n", + "Selling LYB on 2012-04-30 00:00:00\n", + "Selling CE on 2012-04-30 00:00:00\n", + "Selling INCY on 2012-04-30 00:00:00\n", + "Selling GM on 2012-04-30 00:00:00\n", + "Selling PHM on 2012-04-30 00:00:00\n", + "Selling SWKS on 2012-04-30 00:00:00\n", + "Selling C on 2012-04-30 00:00:00\n", + "Buying SO on 2012-05-31 00:00:00\n", + "Buying DUK on 2012-05-31 00:00:00\n", + "Buying D on 2012-05-31 00:00:00\n", + "Buying CLX on 2012-05-31 00:00:00\n", + "Buying GIS on 2012-05-31 00:00:00\n", + "Buying PPL on 2012-05-31 00:00:00\n", + "Buying AEP on 2012-05-31 00:00:00\n", + "Buying SRE on 2012-05-31 00:00:00\n", + "Buying CHD on 2012-05-31 00:00:00\n", + "Buying ACGL on 2012-05-31 00:00:00\n", + "Buying LOW on 2012-05-31 00:00:00\n", + "Buying NEM on 2012-05-31 00:00:00\n", + "Selling STLD on 2012-05-31 00:00:00\n", + "Selling MTD on 2012-05-31 00:00:00\n", + "Selling EQIX on 2012-05-31 00:00:00\n", + "Selling TXT on 2012-05-31 00:00:00\n", + "Selling JBL on 2012-05-31 00:00:00\n", + "Selling CF on 2012-05-31 00:00:00\n", + "Selling LYB on 2012-05-31 00:00:00\n", + "Selling C on 2012-05-31 00:00:00\n", + "Selling INCY on 2012-05-31 00:00:00\n", + "Selling CE on 2012-05-31 00:00:00\n", + "Selling PHM on 2012-05-31 00:00:00\n", + "Selling SWKS on 2012-05-31 00:00:00\n", + "Buying DUK on 2012-06-30 00:00:00\n", + "Buying SO on 2012-06-30 00:00:00\n", + "Buying NEM on 2012-06-30 00:00:00\n", + "Buying PPL on 2012-06-30 00:00:00\n", + "Buying CLX on 2012-06-30 00:00:00\n", + "Buying GIS on 2012-06-30 00:00:00\n", + "Buying AEP on 2012-06-30 00:00:00\n", + "Buying D on 2012-06-30 00:00:00\n", + "Buying PNW on 2012-06-30 00:00:00\n", + "Buying CMS on 2012-06-30 00:00:00\n", + "Buying CHD on 2012-06-30 00:00:00\n", + "Buying SRE on 2012-06-30 00:00:00\n", + "Selling A on 2012-06-30 00:00:00\n", + "Selling EQIX on 2012-06-30 00:00:00\n", + "Selling CF on 2012-06-30 00:00:00\n", + "Selling LYB on 2012-06-30 00:00:00\n", + "Selling TXT on 2012-06-30 00:00:00\n", + "Selling CE on 2012-06-30 00:00:00\n", + "Selling JBL on 2012-06-30 00:00:00\n", + "Selling INCY on 2012-06-30 00:00:00\n", + "Selling C on 2012-06-30 00:00:00\n", + "Selling PTC on 2012-06-30 00:00:00\n", + "Selling SWKS on 2012-06-30 00:00:00\n", + "Selling PHM on 2012-06-30 00:00:00\n", + "Buying DUK on 2012-07-31 00:00:00\n", + "Buying NEM on 2012-07-31 00:00:00\n", + "Buying SO on 2012-07-31 00:00:00\n", + "Buying PPL on 2012-07-31 00:00:00\n", + "Buying CLX on 2012-07-31 00:00:00\n", + "Buying GIS on 2012-07-31 00:00:00\n", + "Buying AEP on 2012-07-31 00:00:00\n", + "Buying DG on 2012-07-31 00:00:00\n", + "Buying PNW on 2012-07-31 00:00:00\n", + "Buying D on 2012-07-31 00:00:00\n", + "Buying CMS on 2012-07-31 00:00:00\n", + "Buying CHD on 2012-07-31 00:00:00\n", + "Selling CE on 2012-07-31 00:00:00\n", + "Selling FCX on 2012-07-31 00:00:00\n", + "Selling BWA on 2012-07-31 00:00:00\n", + "Selling JBL on 2012-07-31 00:00:00\n", + "Selling EQIX on 2012-07-31 00:00:00\n", + "Selling LYB on 2012-07-31 00:00:00\n", + "Selling FFIV on 2012-07-31 00:00:00\n", + "Selling TXT on 2012-07-31 00:00:00\n", + "Selling C on 2012-07-31 00:00:00\n", + "Selling SWKS on 2012-07-31 00:00:00\n", + "Selling PTC on 2012-07-31 00:00:00\n", + "Selling PHM on 2012-07-31 00:00:00\n", + "Buying DG on 2012-08-31 00:00:00\n", + "Buying SO on 2012-08-31 00:00:00\n", + "Buying CLX on 2012-08-31 00:00:00\n", + "Buying APO on 2012-08-31 00:00:00\n", + "Buying PPL on 2012-08-31 00:00:00\n", + "Buying O on 2012-08-31 00:00:00\n", + "Buying CHD on 2012-08-31 00:00:00\n", + "Buying CBOE on 2012-08-31 00:00:00\n", + "Buying ERIE on 2012-08-31 00:00:00\n", + "Buying DUK on 2012-08-31 00:00:00\n", + "Buying WELL on 2012-08-31 00:00:00\n", + "Buying AEP on 2012-08-31 00:00:00\n", + "Selling BWA on 2012-08-31 00:00:00\n", + "Selling MPWR on 2012-08-31 00:00:00\n", + "Selling JBL on 2012-08-31 00:00:00\n", + "Selling SWKS on 2012-08-31 00:00:00\n", + "Selling STLD on 2012-08-31 00:00:00\n", + "Selling TXT on 2012-08-31 00:00:00\n", + "Selling FCX on 2012-08-31 00:00:00\n", + "Selling C on 2012-08-31 00:00:00\n", + "Selling PHM on 2012-08-31 00:00:00\n", + "Selling CRM on 2012-08-31 00:00:00\n", + "Selling FFIV on 2012-08-31 00:00:00\n", + "Selling PTC on 2012-08-31 00:00:00\n", + "Buying ORLY on 2012-09-30 00:00:00\n", + "Buying DG on 2012-09-30 00:00:00\n", + "Buying ERIE on 2012-09-30 00:00:00\n", + "Buying CHD on 2012-09-30 00:00:00\n", + "Buying O on 2012-09-30 00:00:00\n", + "Buying CLX on 2012-09-30 00:00:00\n", + "Buying PPL on 2012-09-30 00:00:00\n", + "Buying APO on 2012-09-30 00:00:00\n", + "Buying CAH on 2012-09-30 00:00:00\n", + "Buying WELL on 2012-09-30 00:00:00\n", + "Buying EXR on 2012-09-30 00:00:00\n", + "Buying SO on 2012-09-30 00:00:00\n", + "Buying GIS on 2012-09-30 00:00:00\n", + "Selling JBL on 2012-09-30 00:00:00\n", + "Selling LYB on 2012-09-30 00:00:00\n", + "Selling GM on 2012-09-30 00:00:00\n", + "Selling TXT on 2012-09-30 00:00:00\n", + "Selling SWKS on 2012-09-30 00:00:00\n", + "Selling PHM on 2012-09-30 00:00:00\n", + "Selling FCX on 2012-09-30 00:00:00\n", + "Selling C on 2012-09-30 00:00:00\n", + "Selling STLD on 2012-09-30 00:00:00\n", + "Selling BWA on 2012-09-30 00:00:00\n", + "Selling CRM on 2012-09-30 00:00:00\n", + "Selling FFIV on 2012-09-30 00:00:00\n", + "Selling PTC on 2012-09-30 00:00:00\n", + "Buying ORLY on 2012-10-31 00:00:00\n", + "Buying MKTX on 2012-10-31 00:00:00\n", + "Buying EPAM on 2012-10-31 00:00:00\n", + "Buying DG on 2012-10-31 00:00:00\n", + "Buying PPL on 2012-10-31 00:00:00\n", + "Buying CLX on 2012-10-31 00:00:00\n", + "Buying DUK on 2012-10-31 00:00:00\n", + "Buying O on 2012-10-31 00:00:00\n", + "Buying GWW on 2012-10-31 00:00:00\n", + "Buying SO on 2012-10-31 00:00:00\n", + "Buying CMS on 2012-10-31 00:00:00\n", + "Buying AXON on 2012-10-31 00:00:00\n", + "Buying JBHT on 2012-10-31 00:00:00\n", + "Selling SWKS on 2012-10-31 00:00:00\n", + "Selling GM on 2012-10-31 00:00:00\n", + "Selling LYB on 2012-10-31 00:00:00\n", + "Selling FFIV on 2012-10-31 00:00:00\n", + "Selling NOW on 2012-10-31 00:00:00\n", + "Selling STLD on 2012-10-31 00:00:00\n", + "Selling MNST on 2012-10-31 00:00:00\n", + "Selling PH on 2012-10-31 00:00:00\n", + "Selling FCX on 2012-10-31 00:00:00\n", + "Selling BWA on 2012-10-31 00:00:00\n", + "Selling C on 2012-10-31 00:00:00\n", + "Selling PHM on 2012-10-31 00:00:00\n", + "Selling NFLX on 2012-10-31 00:00:00\n", + "Buying ORLY on 2012-11-30 00:00:00\n", + "Buying ERIE on 2012-11-30 00:00:00\n", + "Buying MKTX on 2012-11-30 00:00:00\n", + "Buying DG on 2012-11-30 00:00:00\n", + "Buying PPL on 2012-11-30 00:00:00\n", + "Buying SO on 2012-11-30 00:00:00\n", + "Buying AMT on 2012-11-30 00:00:00\n", + "Buying CLX on 2012-11-30 00:00:00\n", + "Buying O on 2012-11-30 00:00:00\n", + "Buying DUK on 2012-11-30 00:00:00\n", + "Buying CMS on 2012-11-30 00:00:00\n", + "Buying AEP on 2012-11-30 00:00:00\n", + "Buying WELL on 2012-11-30 00:00:00\n", + "Selling PH on 2012-11-30 00:00:00\n", + "Selling INCY on 2012-11-30 00:00:00\n", + "Selling GS on 2012-11-30 00:00:00\n", + "Selling PHM on 2012-11-30 00:00:00\n", + "Selling PTC on 2012-11-30 00:00:00\n", + "Selling VRTX on 2012-11-30 00:00:00\n", + "Selling GM on 2012-11-30 00:00:00\n", + "Selling LYB on 2012-11-30 00:00:00\n", + "Selling BWA on 2012-11-30 00:00:00\n", + "Selling FCX on 2012-11-30 00:00:00\n", + "Selling C on 2012-11-30 00:00:00\n", + "Selling STLD on 2012-11-30 00:00:00\n", + "Selling SWKS on 2012-11-30 00:00:00\n", + "Buying ERIE on 2012-12-31 00:00:00\n", + "Buying EXR on 2012-12-31 00:00:00\n", + "Buying AMT on 2012-12-31 00:00:00\n", + "Buying WELL on 2012-12-31 00:00:00\n", + "Buying DG on 2012-12-31 00:00:00\n", + "Buying O on 2012-12-31 00:00:00\n", + "Buying FDS on 2012-12-31 00:00:00\n", + "Buying SO on 2012-12-31 00:00:00\n", + "Buying PPL on 2012-12-31 00:00:00\n", + "Buying EPAM on 2012-12-31 00:00:00\n", + "Buying CVS on 2012-12-31 00:00:00\n", + "Buying ACGL on 2012-12-31 00:00:00\n", + "Buying D on 2012-12-31 00:00:00\n", + "Selling FCX on 2012-12-31 00:00:00\n", + "Selling PH on 2012-12-31 00:00:00\n", + "Selling PHM on 2012-12-31 00:00:00\n", + "Selling GM on 2012-12-31 00:00:00\n", + "Selling LYB on 2012-12-31 00:00:00\n", + "Selling A on 2012-12-31 00:00:00\n", + "Selling GS on 2012-12-31 00:00:00\n", + "Selling VRTX on 2012-12-31 00:00:00\n", + "Selling JBL on 2012-12-31 00:00:00\n", + "Selling C on 2012-12-31 00:00:00\n", + "Selling SWKS on 2012-12-31 00:00:00\n", + "Selling STLD on 2012-12-31 00:00:00\n", + "Selling INCY on 2012-12-31 00:00:00\n", + "Buying DG on 2013-01-31 00:00:00\n", + "Buying ACGL on 2013-01-31 00:00:00\n", + "Buying WELL on 2013-01-31 00:00:00\n", + "Buying ERIE on 2013-01-31 00:00:00\n", + "Buying COR on 2013-01-31 00:00:00\n", + "Buying MNST on 2013-01-31 00:00:00\n", + "Buying NFLX on 2013-01-31 00:00:00\n", + "Buying FDS on 2013-01-31 00:00:00\n", + "Buying EXR on 2013-01-31 00:00:00\n", + "Buying AMT on 2013-01-31 00:00:00\n", + "Buying O on 2013-01-31 00:00:00\n", + "Buying PPL on 2013-01-31 00:00:00\n", + "Buying CLX on 2013-01-31 00:00:00\n", + "Selling MAR on 2013-01-31 00:00:00\n", + "Selling BX on 2013-01-31 00:00:00\n", + "Selling HBAN on 2013-01-31 00:00:00\n", + "Selling PHM on 2013-01-31 00:00:00\n", + "Selling PSX on 2013-01-31 00:00:00\n", + "Selling A on 2013-01-31 00:00:00\n", + "Selling PARA on 2013-01-31 00:00:00\n", + "Selling C on 2013-01-31 00:00:00\n", + "Selling SWKS on 2013-01-31 00:00:00\n", + "Selling NOW on 2013-01-31 00:00:00\n", + "Selling JBL on 2013-01-31 00:00:00\n", + "Selling GS on 2013-01-31 00:00:00\n", + "Selling STLD on 2013-01-31 00:00:00\n", + "Buying EW on 2013-02-28 00:00:00\n", + "Buying WTW on 2013-02-28 00:00:00\n", + "Buying O on 2013-02-28 00:00:00\n", + "Buying WELL on 2013-02-28 00:00:00\n", + "Buying LH on 2013-02-28 00:00:00\n", + "Buying MNST on 2013-02-28 00:00:00\n", + "Buying DG on 2013-02-28 00:00:00\n", + "Buying NFLX on 2013-02-28 00:00:00\n", + "Buying MTCH on 2013-02-28 00:00:00\n", + "Buying ULTA on 2013-02-28 00:00:00\n", + "Buying ACGL on 2013-02-28 00:00:00\n", + "Buying DGX on 2013-02-28 00:00:00\n", + "Buying FDS on 2013-02-28 00:00:00\n", + "Selling FFIV on 2013-02-28 00:00:00\n", + "Selling C on 2013-02-28 00:00:00\n", + "Selling VRTX on 2013-02-28 00:00:00\n", + "Selling PARA on 2013-02-28 00:00:00\n", + "Selling JBL on 2013-02-28 00:00:00\n", + "Selling GS on 2013-02-28 00:00:00\n", + "Selling CE on 2013-02-28 00:00:00\n", + "Selling PSX on 2013-02-28 00:00:00\n", + "Selling NOW on 2013-02-28 00:00:00\n", + "Selling STLD on 2013-02-28 00:00:00\n", + "Selling PHM on 2013-02-28 00:00:00\n", + "Selling AXON on 2013-02-28 00:00:00\n", + "Selling SWKS on 2013-02-28 00:00:00\n", + "Buying NFLX on 2013-03-31 00:00:00\n", + "Buying MNST on 2013-03-31 00:00:00\n", + "Buying ERIE on 2013-03-31 00:00:00\n", + "Buying NEM on 2013-03-31 00:00:00\n", + "Buying EW on 2013-03-31 00:00:00\n", + "Buying ORLY on 2013-03-31 00:00:00\n", + "Buying WTW on 2013-03-31 00:00:00\n", + "Buying WELL on 2013-03-31 00:00:00\n", + "Buying O on 2013-03-31 00:00:00\n", + "Buying DGX on 2013-03-31 00:00:00\n", + "Buying DG on 2013-03-31 00:00:00\n", + "Buying LH on 2013-03-31 00:00:00\n", + "Buying MTCH on 2013-03-31 00:00:00\n", + "Selling STLD on 2013-03-31 00:00:00\n", + "Selling TXT on 2013-03-31 00:00:00\n", + "Selling PTC on 2013-03-31 00:00:00\n", + "Selling NUE on 2013-03-31 00:00:00\n", + "Selling PARA on 2013-03-31 00:00:00\n", + "Selling VRTX on 2013-03-31 00:00:00\n", + "Selling AXON on 2013-03-31 00:00:00\n", + "Selling PSX on 2013-03-31 00:00:00\n", + "Selling GS on 2013-03-31 00:00:00\n", + "Selling C on 2013-03-31 00:00:00\n", + "Selling PHM on 2013-03-31 00:00:00\n", + "Selling CE on 2013-03-31 00:00:00\n", + "Selling SWKS on 2013-03-31 00:00:00\n", + "Buying NCLH on 2013-04-30 00:00:00\n", + "Buying EW on 2013-04-30 00:00:00\n", + "Buying WTW on 2013-04-30 00:00:00\n", + "Buying LH on 2013-04-30 00:00:00\n", + "Buying SO on 2013-04-30 00:00:00\n", + "Buying D on 2013-04-30 00:00:00\n", + "Buying DG on 2013-04-30 00:00:00\n", + "Buying LDOS on 2013-04-30 00:00:00\n", + "Buying PPL on 2013-04-30 00:00:00\n", + "Buying GIS on 2013-04-30 00:00:00\n", + "Buying AJG on 2013-04-30 00:00:00\n", + "Buying CAH on 2013-04-30 00:00:00\n", + "Buying COR on 2013-04-30 00:00:00\n", + "Selling J on 2013-04-30 00:00:00\n", + "Selling PTC on 2013-04-30 00:00:00\n", + "Selling KMX on 2013-04-30 00:00:00\n", + "Selling BLK on 2013-04-30 00:00:00\n", + "Selling APTV on 2013-04-30 00:00:00\n", + "Selling PSX on 2013-04-30 00:00:00\n", + "Selling LYB on 2013-04-30 00:00:00\n", + "Selling AXON on 2013-04-30 00:00:00\n", + "Selling TXT on 2013-04-30 00:00:00\n", + "Selling CE on 2013-04-30 00:00:00\n", + "Selling SWKS on 2013-04-30 00:00:00\n", + "Selling PHM on 2013-04-30 00:00:00\n", + "Selling VRTX on 2013-04-30 00:00:00\n", + "Buying PPL on 2013-05-31 00:00:00\n", + "Buying COR on 2013-05-31 00:00:00\n", + "Buying LH on 2013-05-31 00:00:00\n", + "Buying DG on 2013-05-31 00:00:00\n", + "Buying WTW on 2013-05-31 00:00:00\n", + "Buying NCLH on 2013-05-31 00:00:00\n", + "Buying NEM on 2013-05-31 00:00:00\n", + "Buying ERIE on 2013-05-31 00:00:00\n", + "Buying T on 2013-05-31 00:00:00\n", + "Buying DUK on 2013-05-31 00:00:00\n", + "Buying SO on 2013-05-31 00:00:00\n", + "Buying GIS on 2013-05-31 00:00:00\n", + "Buying D on 2013-05-31 00:00:00\n", + "Selling MPWR on 2013-05-31 00:00:00\n", + "Selling APTV on 2013-05-31 00:00:00\n", + "Selling RJF on 2013-05-31 00:00:00\n", + "Selling SWKS on 2013-05-31 00:00:00\n", + "Selling BX on 2013-05-31 00:00:00\n", + "Selling MTD on 2013-05-31 00:00:00\n", + "Selling CE on 2013-05-31 00:00:00\n", + "Selling BLK on 2013-05-31 00:00:00\n", + "Selling LYB on 2013-05-31 00:00:00\n", + "Selling TXT on 2013-05-31 00:00:00\n", + "Selling APO on 2013-05-31 00:00:00\n", + "Selling PHM on 2013-05-31 00:00:00\n", + "Selling VRTX on 2013-05-31 00:00:00\n", + "Buying COR on 2013-06-30 00:00:00\n", + "Buying WTW on 2013-06-30 00:00:00\n", + "Buying LH on 2013-06-30 00:00:00\n", + "Buying PPL on 2013-06-30 00:00:00\n", + "Buying IRM on 2013-06-30 00:00:00\n", + "Buying ULTA on 2013-06-30 00:00:00\n", + "Buying DG on 2013-06-30 00:00:00\n", + "Buying NCLH on 2013-06-30 00:00:00\n", + "Buying GIS on 2013-06-30 00:00:00\n", + "Buying USB on 2013-06-30 00:00:00\n", + "Buying IDXX on 2013-06-30 00:00:00\n", + "Buying DUK on 2013-06-30 00:00:00\n", + "Buying T on 2013-06-30 00:00:00\n", + "Selling APTV on 2013-06-30 00:00:00\n", + "Selling LYB on 2013-06-30 00:00:00\n", + "Selling PSX on 2013-06-30 00:00:00\n", + "Selling MTD on 2013-06-30 00:00:00\n", + "Selling INCY on 2013-06-30 00:00:00\n", + "Selling CE on 2013-06-30 00:00:00\n", + "Selling KMX on 2013-06-30 00:00:00\n", + "Selling BX on 2013-06-30 00:00:00\n", + "Selling TXT on 2013-06-30 00:00:00\n", + "Selling BLK on 2013-06-30 00:00:00\n", + "Selling APO on 2013-06-30 00:00:00\n", + "Selling VRTX on 2013-06-30 00:00:00\n", + "Selling PHM on 2013-06-30 00:00:00\n", + "Buying ULTA on 2013-07-31 00:00:00\n", + "Buying IRM on 2013-07-31 00:00:00\n", + "Buying LH on 2013-07-31 00:00:00\n", + "Buying RMD on 2013-07-31 00:00:00\n", + "Buying DGX on 2013-07-31 00:00:00\n", + "Buying NEM on 2013-07-31 00:00:00\n", + "Buying USB on 2013-07-31 00:00:00\n", + "Buying COR on 2013-07-31 00:00:00\n", + "Buying PPL on 2013-07-31 00:00:00\n", + "Buying LYV on 2013-07-31 00:00:00\n", + "Buying CBOE on 2013-07-31 00:00:00\n", + "Buying SJM on 2013-07-31 00:00:00\n", + "Buying NCLH on 2013-07-31 00:00:00\n", + "Selling WELL on 2013-07-31 00:00:00\n", + "Selling PSX on 2013-07-31 00:00:00\n", + "Selling GM on 2013-07-31 00:00:00\n", + "Selling LVS on 2013-07-31 00:00:00\n", + "Selling TXT on 2013-07-31 00:00:00\n", + "Selling GS on 2013-07-31 00:00:00\n", + "Selling KMX on 2013-07-31 00:00:00\n", + "Selling INCY on 2013-07-31 00:00:00\n", + "Selling C on 2013-07-31 00:00:00\n", + "Selling BX on 2013-07-31 00:00:00\n", + "Selling APO on 2013-07-31 00:00:00\n", + "Selling BLK on 2013-07-31 00:00:00\n", + "Selling PHM on 2013-07-31 00:00:00\n", + "Buying AXON on 2013-08-31 00:00:00\n", + "Buying IRM on 2013-08-31 00:00:00\n", + "Buying RMD on 2013-08-31 00:00:00\n", + "Buying LH on 2013-08-31 00:00:00\n", + "Buying DGX on 2013-08-31 00:00:00\n", + "Buying ULTA on 2013-08-31 00:00:00\n", + "Buying LYV on 2013-08-31 00:00:00\n", + "Buying USB on 2013-08-31 00:00:00\n", + "Buying PPL on 2013-08-31 00:00:00\n", + "Buying CHD on 2013-08-31 00:00:00\n", + "Buying VRSK on 2013-08-31 00:00:00\n", + "Buying NCLH on 2013-08-31 00:00:00\n", + "Buying BDX on 2013-08-31 00:00:00\n", + "Selling GM on 2013-08-31 00:00:00\n", + "Selling APO on 2013-08-31 00:00:00\n", + "Selling GS on 2013-08-31 00:00:00\n", + "Selling NFLX on 2013-08-31 00:00:00\n", + "Selling C on 2013-08-31 00:00:00\n", + "Selling TXT on 2013-08-31 00:00:00\n", + "Selling LVS on 2013-08-31 00:00:00\n", + "Selling BWA on 2013-08-31 00:00:00\n", + "Selling FFIV on 2013-08-31 00:00:00\n", + "Selling KMX on 2013-08-31 00:00:00\n", + "Selling PHM on 2013-08-31 00:00:00\n", + "Selling BLK on 2013-08-31 00:00:00\n", + "Selling BX on 2013-08-31 00:00:00\n", + "Buying AXON on 2013-09-30 00:00:00\n", + "Buying LDOS on 2013-09-30 00:00:00\n", + "Buying LH on 2013-09-30 00:00:00\n", + "Buying DGX on 2013-09-30 00:00:00\n", + "Buying NWSA on 2013-09-30 00:00:00\n", + "Buying INCY on 2013-09-30 00:00:00\n", + "Buying NCLH on 2013-09-30 00:00:00\n", + "Buying CCI on 2013-09-30 00:00:00\n", + "Buying ERIE on 2013-09-30 00:00:00\n", + "Buying CLX on 2013-09-30 00:00:00\n", + "Buying MPWR on 2013-09-30 00:00:00\n", + "Buying ACGL on 2013-09-30 00:00:00\n", + "Buying USB on 2013-09-30 00:00:00\n", + "Selling PARA on 2013-09-30 00:00:00\n", + "Selling GS on 2013-09-30 00:00:00\n", + "Selling ULTA on 2013-09-30 00:00:00\n", + "Selling NFLX on 2013-09-30 00:00:00\n", + "Selling BLK on 2013-09-30 00:00:00\n", + "Selling C on 2013-09-30 00:00:00\n", + "Selling GM on 2013-09-30 00:00:00\n", + "Selling APO on 2013-09-30 00:00:00\n", + "Selling PKG on 2013-09-30 00:00:00\n", + "Selling BX on 2013-09-30 00:00:00\n", + "Selling PHM on 2013-09-30 00:00:00\n", + "Selling TXT on 2013-09-30 00:00:00\n", + "Selling FFIV on 2013-09-30 00:00:00\n", + "Buying DGX on 2013-10-31 00:00:00\n", + "Buying LH on 2013-10-31 00:00:00\n", + "Buying AXON on 2013-10-31 00:00:00\n", + "Buying LDOS on 2013-10-31 00:00:00\n", + "Buying CCI on 2013-10-31 00:00:00\n", + "Buying NWSA on 2013-10-31 00:00:00\n", + "Buying GEN on 2013-10-31 00:00:00\n", + "Buying ERIE on 2013-10-31 00:00:00\n", + "Buying TRGP on 2013-10-31 00:00:00\n", + "Buying NCLH on 2013-10-31 00:00:00\n", + "Buying NEM on 2013-10-31 00:00:00\n", + "Buying NRG on 2013-10-31 00:00:00\n", + "Buying AEP on 2013-10-31 00:00:00\n", + "Selling TXT on 2013-10-31 00:00:00\n", + "Selling APO on 2013-10-31 00:00:00\n", + "Selling PHM on 2013-10-31 00:00:00\n", + "Selling BLK on 2013-10-31 00:00:00\n", + "Selling AMZN on 2013-10-31 00:00:00\n", + "Selling DFS on 2013-10-31 00:00:00\n", + "Selling PARA on 2013-10-31 00:00:00\n", + "Selling BX on 2013-10-31 00:00:00\n", + "Selling GILD on 2013-10-31 00:00:00\n", + "Selling EPAM on 2013-10-31 00:00:00\n", + "Selling NFLX on 2013-10-31 00:00:00\n", + "Selling FFIV on 2013-10-31 00:00:00\n", + "Selling NOW on 2013-10-31 00:00:00\n", + "Buying DGX on 2013-11-30 00:00:00\n", + "Buying LH on 2013-11-30 00:00:00\n", + "Buying ERIE on 2013-11-30 00:00:00\n", + "Buying LDOS on 2013-11-30 00:00:00\n", + "Buying LYV on 2013-11-30 00:00:00\n", + "Buying CDW on 2013-11-30 00:00:00\n", + "Buying IDXX on 2013-11-30 00:00:00\n", + "Buying MNST on 2013-11-30 00:00:00\n", + "Buying EW on 2013-11-30 00:00:00\n", + "Buying ZBH on 2013-11-30 00:00:00\n", + "Buying GEN on 2013-11-30 00:00:00\n", + "Buying CCI on 2013-11-30 00:00:00\n", + "Buying PAYX on 2013-11-30 00:00:00\n", + "Selling APO on 2013-11-30 00:00:00\n", + "Selling PHM on 2013-11-30 00:00:00\n", + "Selling PKG on 2013-11-30 00:00:00\n", + "Selling GILD on 2013-11-30 00:00:00\n", + "Selling ADBE on 2013-11-30 00:00:00\n", + "Selling AXON on 2013-11-30 00:00:00\n", + "Selling AMZN on 2013-11-30 00:00:00\n", + "Selling EPAM on 2013-11-30 00:00:00\n", + "Selling CRM on 2013-11-30 00:00:00\n", + "Selling BX on 2013-11-30 00:00:00\n", + "Selling NFLX on 2013-11-30 00:00:00\n", + "Selling INCY on 2013-11-30 00:00:00\n", + "Selling NOW on 2013-11-30 00:00:00\n", + "Buying JBL on 2013-12-31 00:00:00\n", + "Buying DGX on 2013-12-31 00:00:00\n", + "Buying ULTA on 2013-12-31 00:00:00\n", + "Buying IDXX on 2013-12-31 00:00:00\n", + "Buying MNST on 2013-12-31 00:00:00\n", + "Buying DLTR on 2013-12-31 00:00:00\n", + "Buying CCI on 2013-12-31 00:00:00\n", + "Buying GEN on 2013-12-31 00:00:00\n", + "Buying AEP on 2013-12-31 00:00:00\n", + "Buying SO on 2013-12-31 00:00:00\n", + "Buying CDW on 2013-12-31 00:00:00\n", + "Buying CSX on 2013-12-31 00:00:00\n", + "Buying ERIE on 2013-12-31 00:00:00\n", + "Selling HBAN on 2013-12-31 00:00:00\n", + "Selling APTV on 2013-12-31 00:00:00\n", + "Selling VRTX on 2013-12-31 00:00:00\n", + "Selling PARA on 2013-12-31 00:00:00\n", + "Selling CRM on 2013-12-31 00:00:00\n", + "Selling AXON on 2013-12-31 00:00:00\n", + "Selling AMZN on 2013-12-31 00:00:00\n", + "Selling BLK on 2013-12-31 00:00:00\n", + "Selling BX on 2013-12-31 00:00:00\n", + "Selling EPAM on 2013-12-31 00:00:00\n", + "Selling GILD on 2013-12-31 00:00:00\n", + "Selling NOW on 2013-12-31 00:00:00\n", + "Selling INCY on 2013-12-31 00:00:00\n", + "Buying NFLX on 2014-01-31 00:00:00\n", + "Buying JBL on 2014-01-31 00:00:00\n", + "Buying ULTA on 2014-01-31 00:00:00\n", + "Buying WELL on 2014-01-31 00:00:00\n", + "Buying NEM on 2014-01-31 00:00:00\n", + "Buying DGX on 2014-01-31 00:00:00\n", + "Buying DG on 2014-01-31 00:00:00\n", + "Buying KMX on 2014-01-31 00:00:00\n", + "Buying IDXX on 2014-01-31 00:00:00\n", + "Buying DLTR on 2014-01-31 00:00:00\n", + "Buying O on 2014-01-31 00:00:00\n", + "Buying DUK on 2014-01-31 00:00:00\n", + "Buying SO on 2014-01-31 00:00:00\n", + "Selling HBAN on 2014-01-31 00:00:00\n", + "Selling VRTX on 2014-01-31 00:00:00\n", + "Selling INCY on 2014-01-31 00:00:00\n", + "Selling MKTX on 2014-01-31 00:00:00\n", + "Selling TXT on 2014-01-31 00:00:00\n", + "Selling GILD on 2014-01-31 00:00:00\n", + "Selling APTV on 2014-01-31 00:00:00\n", + "Selling LVS on 2014-01-31 00:00:00\n", + "Selling BLK on 2014-01-31 00:00:00\n", + "Selling CRM on 2014-01-31 00:00:00\n", + "Selling AMZN on 2014-01-31 00:00:00\n", + "Selling NOW on 2014-01-31 00:00:00\n", + "Selling AXON on 2014-01-31 00:00:00\n", + "Buying NFLX on 2014-02-28 00:00:00\n", + "Buying ULTA on 2014-02-28 00:00:00\n", + "Buying KMX on 2014-02-28 00:00:00\n", + "Buying JBL on 2014-02-28 00:00:00\n", + "Buying WELL on 2014-02-28 00:00:00\n", + "Buying DUK on 2014-02-28 00:00:00\n", + "Buying SO on 2014-02-28 00:00:00\n", + "Buying PPL on 2014-02-28 00:00:00\n", + "Buying DG on 2014-02-28 00:00:00\n", + "Buying D on 2014-02-28 00:00:00\n", + "Buying DLTR on 2014-02-28 00:00:00\n", + "Buying AEP on 2014-02-28 00:00:00\n", + "Buying O on 2014-02-28 00:00:00\n", + "Selling AON on 2014-02-28 00:00:00\n", + "Selling CBOE on 2014-02-28 00:00:00\n", + "Selling VRTX on 2014-02-28 00:00:00\n", + "Selling PH on 2014-02-28 00:00:00\n", + "Selling CRM on 2014-02-28 00:00:00\n", + "Selling EPAM on 2014-02-28 00:00:00\n", + "Selling AXON on 2014-02-28 00:00:00\n", + "Selling MTD on 2014-02-28 00:00:00\n", + "Selling LVS on 2014-02-28 00:00:00\n", + "Selling AMZN on 2014-02-28 00:00:00\n", + "Selling TXT on 2014-02-28 00:00:00\n", + "Selling BLK on 2014-02-28 00:00:00\n", + "Selling NOW on 2014-02-28 00:00:00\n", + "Buying WELL on 2014-03-31 00:00:00\n", + "Buying DGX on 2014-03-31 00:00:00\n", + "Buying DUK on 2014-03-31 00:00:00\n", + "Buying SO on 2014-03-31 00:00:00\n", + "Buying PPL on 2014-03-31 00:00:00\n", + "Buying NFLX on 2014-03-31 00:00:00\n", + "Buying D on 2014-03-31 00:00:00\n", + "Buying CLX on 2014-03-31 00:00:00\n", + "Buying LH on 2014-03-31 00:00:00\n", + "Buying AEP on 2014-03-31 00:00:00\n", + "Buying NI on 2014-03-31 00:00:00\n", + "Buying CMS on 2014-03-31 00:00:00\n", + "Buying KMX on 2014-03-31 00:00:00\n", + "Selling BX on 2014-03-31 00:00:00\n", + "Selling MKTX on 2014-03-31 00:00:00\n", + "Selling AON on 2014-03-31 00:00:00\n", + "Selling BKNG on 2014-03-31 00:00:00\n", + "Selling AMZN on 2014-03-31 00:00:00\n", + "Selling TXT on 2014-03-31 00:00:00\n", + "Selling BLK on 2014-03-31 00:00:00\n", + "Selling MTD on 2014-03-31 00:00:00\n", + "Selling CRM on 2014-03-31 00:00:00\n", + "Selling LVS on 2014-03-31 00:00:00\n", + "Selling INCY on 2014-03-31 00:00:00\n", + "Selling NOW on 2014-03-31 00:00:00\n", + "Selling EPAM on 2014-03-31 00:00:00\n", + "Buying SO on 2014-04-30 00:00:00\n", + "Buying DUK on 2014-04-30 00:00:00\n", + "Buying WELL on 2014-04-30 00:00:00\n", + "Buying PPL on 2014-04-30 00:00:00\n", + "Buying CMS on 2014-04-30 00:00:00\n", + "Buying CLX on 2014-04-30 00:00:00\n", + "Buying O on 2014-04-30 00:00:00\n", + "Buying SRE on 2014-04-30 00:00:00\n", + "Buying PNW on 2014-04-30 00:00:00\n", + "Buying AEP on 2014-04-30 00:00:00\n", + "Buying DGX on 2014-04-30 00:00:00\n", + "Buying D on 2014-04-30 00:00:00\n", + "Buying T on 2014-04-30 00:00:00\n", + "Selling MPWR on 2014-04-30 00:00:00\n", + "Selling MNST on 2014-04-30 00:00:00\n", + "Selling FFIV on 2014-04-30 00:00:00\n", + "Selling AMZN on 2014-04-30 00:00:00\n", + "Selling CRM on 2014-04-30 00:00:00\n", + "Selling TXT on 2014-04-30 00:00:00\n", + "Selling LVS on 2014-04-30 00:00:00\n", + "Selling NFLX on 2014-04-30 00:00:00\n", + "Selling VRTX on 2014-04-30 00:00:00\n", + "Selling BKNG on 2014-04-30 00:00:00\n", + "Selling INCY on 2014-04-30 00:00:00\n", + "Selling NOW on 2014-04-30 00:00:00\n", + "Selling EPAM on 2014-04-30 00:00:00\n", + "Buying SO on 2014-05-31 00:00:00\n", + "Buying CMS on 2014-05-31 00:00:00\n", + "Buying NEM on 2014-05-31 00:00:00\n", + "Buying WELL on 2014-05-31 00:00:00\n", + "Buying PPL on 2014-05-31 00:00:00\n", + "Buying DUK on 2014-05-31 00:00:00\n", + "Buying CLX on 2014-05-31 00:00:00\n", + "Buying PNW on 2014-05-31 00:00:00\n", + "Buying SRE on 2014-05-31 00:00:00\n", + "Buying D on 2014-05-31 00:00:00\n", + "Buying O on 2014-05-31 00:00:00\n", + "Buying T on 2014-05-31 00:00:00\n", + "Buying AEP on 2014-05-31 00:00:00\n", + "Selling GILD on 2014-05-31 00:00:00\n", + "Selling FFIV on 2014-05-31 00:00:00\n", + "Selling TXT on 2014-05-31 00:00:00\n", + "Selling AMZN on 2014-05-31 00:00:00\n", + "Selling LVS on 2014-05-31 00:00:00\n", + "Selling EPAM on 2014-05-31 00:00:00\n", + "Selling CRM on 2014-05-31 00:00:00\n", + "Selling NFLX on 2014-05-31 00:00:00\n", + "Selling BKNG on 2014-05-31 00:00:00\n", + "Selling AXON on 2014-05-31 00:00:00\n", + "Selling VRTX on 2014-05-31 00:00:00\n", + "Selling INCY on 2014-05-31 00:00:00\n", + "Selling NOW on 2014-05-31 00:00:00\n", + "Buying WELL on 2014-06-30 00:00:00\n", + "Buying NEM on 2014-06-30 00:00:00\n", + "Buying SO on 2014-06-30 00:00:00\n", + "Buying DUK on 2014-06-30 00:00:00\n", + "Buying CMS on 2014-06-30 00:00:00\n", + "Buying CLX on 2014-06-30 00:00:00\n", + "Buying PNW on 2014-06-30 00:00:00\n", + "Buying PPL on 2014-06-30 00:00:00\n", + "Buying T on 2014-06-30 00:00:00\n", + "Buying SRE on 2014-06-30 00:00:00\n", + "Buying GEN on 2014-06-30 00:00:00\n", + "Buying O on 2014-06-30 00:00:00\n", + "Buying CHD on 2014-06-30 00:00:00\n", + "Selling MPWR on 2014-06-30 00:00:00\n", + "Selling LVS on 2014-06-30 00:00:00\n", + "Selling ADBE on 2014-06-30 00:00:00\n", + "Selling KMX on 2014-06-30 00:00:00\n", + "Selling LYV on 2014-06-30 00:00:00\n", + "Selling CRM on 2014-06-30 00:00:00\n", + "Selling TXT on 2014-06-30 00:00:00\n", + "Selling BKNG on 2014-06-30 00:00:00\n", + "Selling AMZN on 2014-06-30 00:00:00\n", + "Selling INCY on 2014-06-30 00:00:00\n", + "Selling AXON on 2014-06-30 00:00:00\n", + "Selling NFLX on 2014-06-30 00:00:00\n", + "Selling NOW on 2014-06-30 00:00:00\n", + "Buying WELL on 2014-07-31 00:00:00\n", + "Buying VRTX on 2014-07-31 00:00:00\n", + "Buying ALL on 2014-07-31 00:00:00\n", + "Buying DUK on 2014-07-31 00:00:00\n", + "Buying SO on 2014-07-31 00:00:00\n", + "Buying CMS on 2014-07-31 00:00:00\n", + "Buying PPL on 2014-07-31 00:00:00\n", + "Buying GEN on 2014-07-31 00:00:00\n", + "Buying NEM on 2014-07-31 00:00:00\n", + "Buying IRM on 2014-07-31 00:00:00\n", + "Buying ULTA on 2014-07-31 00:00:00\n", + "Buying T on 2014-07-31 00:00:00\n", + "Buying D on 2014-07-31 00:00:00\n", + "Selling BWA on 2014-07-31 00:00:00\n", + "Selling LYV on 2014-07-31 00:00:00\n", + "Selling PTC on 2014-07-31 00:00:00\n", + "Selling MPWR on 2014-07-31 00:00:00\n", + "Selling NOW on 2014-07-31 00:00:00\n", + "Selling ADBE on 2014-07-31 00:00:00\n", + "Selling KMX on 2014-07-31 00:00:00\n", + "Selling EPAM on 2014-07-31 00:00:00\n", + "Selling NFLX on 2014-07-31 00:00:00\n", + "Selling AMZN on 2014-07-31 00:00:00\n", + "Selling INCY on 2014-07-31 00:00:00\n", + "Selling SWKS on 2014-07-31 00:00:00\n", + "Selling AXON on 2014-07-31 00:00:00\n", + "Buying VRTX on 2014-08-31 00:00:00\n", + "Buying CBOE on 2014-08-31 00:00:00\n", + "Buying ALL on 2014-08-31 00:00:00\n", + "Buying RMD on 2014-08-31 00:00:00\n", + "Buying WELL on 2014-08-31 00:00:00\n", + "Buying O on 2014-08-31 00:00:00\n", + "Buying CLX on 2014-08-31 00:00:00\n", + "Buying NEM on 2014-08-31 00:00:00\n", + "Buying GEN on 2014-08-31 00:00:00\n", + "Buying DUK on 2014-08-31 00:00:00\n", + "Buying WTW on 2014-08-31 00:00:00\n", + "Buying SO on 2014-08-31 00:00:00\n", + "Buying ULTA on 2014-08-31 00:00:00\n", + "Selling TXT on 2014-08-31 00:00:00\n", + "Selling PHM on 2014-08-31 00:00:00\n", + "Selling BWA on 2014-08-31 00:00:00\n", + "Selling BX on 2014-08-31 00:00:00\n", + "Selling CRM on 2014-08-31 00:00:00\n", + "Selling BLK on 2014-08-31 00:00:00\n", + "Selling ADBE on 2014-08-31 00:00:00\n", + "Selling NOW on 2014-08-31 00:00:00\n", + "Selling KMX on 2014-08-31 00:00:00\n", + "Selling SWKS on 2014-08-31 00:00:00\n", + "Selling AMZN on 2014-08-31 00:00:00\n", + "Selling INCY on 2014-08-31 00:00:00\n", + "Selling AXON on 2014-08-31 00:00:00\n", + "Buying CLX on 2014-09-30 00:00:00\n", + "Buying ALL on 2014-09-30 00:00:00\n", + "Buying ULTA on 2014-09-30 00:00:00\n", + "Buying NEM on 2014-09-30 00:00:00\n", + "Buying CBOE on 2014-09-30 00:00:00\n", + "Buying RMD on 2014-09-30 00:00:00\n", + "Buying GEN on 2014-09-30 00:00:00\n", + "Buying WTW on 2014-09-30 00:00:00\n", + "Buying DUK on 2014-09-30 00:00:00\n", + "Buying O on 2014-09-30 00:00:00\n", + "Buying ACGL on 2014-09-30 00:00:00\n", + "Buying PPL on 2014-09-30 00:00:00\n", + "Buying SO on 2014-09-30 00:00:00\n", + "Selling BX on 2014-09-30 00:00:00\n", + "Selling JBL on 2014-09-30 00:00:00\n", + "Selling FFIV on 2014-09-30 00:00:00\n", + "Selling GILD on 2014-09-30 00:00:00\n", + "Selling BLK on 2014-09-30 00:00:00\n", + "Selling CRM on 2014-09-30 00:00:00\n", + "Selling KMX on 2014-09-30 00:00:00\n", + "Selling AMZN on 2014-09-30 00:00:00\n", + "Selling VRTX on 2014-09-30 00:00:00\n", + "Selling NOW on 2014-09-30 00:00:00\n", + "Selling SWKS on 2014-09-30 00:00:00\n", + "Selling INCY on 2014-09-30 00:00:00\n", + "Selling AXON on 2014-09-30 00:00:00\n", + "Buying SO on 2014-10-31 00:00:00\n", + "Buying O on 2014-10-31 00:00:00\n", + "Buying DUK on 2014-10-31 00:00:00\n", + "Buying WELL on 2014-10-31 00:00:00\n", + "Buying NEM on 2014-10-31 00:00:00\n", + "Buying CLX on 2014-10-31 00:00:00\n", + "Buying BDX on 2014-10-31 00:00:00\n", + "Buying EXR on 2014-10-31 00:00:00\n", + "Buying AEP on 2014-10-31 00:00:00\n", + "Buying CBOE on 2014-10-31 00:00:00\n", + "Buying CMS on 2014-10-31 00:00:00\n", + "Buying PPL on 2014-10-31 00:00:00\n", + "Buying ULTA on 2014-10-31 00:00:00\n", + "Selling PSX on 2014-10-31 00:00:00\n", + "Selling INCY on 2014-10-31 00:00:00\n", + "Selling CRM on 2014-10-31 00:00:00\n", + "Selling PH on 2014-10-31 00:00:00\n", + "Selling LYV on 2014-10-31 00:00:00\n", + "Selling KMX on 2014-10-31 00:00:00\n", + "Selling FFIV on 2014-10-31 00:00:00\n", + "Selling VRTX on 2014-10-31 00:00:00\n", + "Selling LYB on 2014-10-31 00:00:00\n", + "Selling MPWR on 2014-10-31 00:00:00\n", + "Selling TXT on 2014-10-31 00:00:00\n", + "Selling NOW on 2014-10-31 00:00:00\n", + "Selling SWKS on 2014-10-31 00:00:00\n", + "Buying O on 2014-11-30 00:00:00\n", + "Buying SO on 2014-11-30 00:00:00\n", + "Buying DUK on 2014-11-30 00:00:00\n", + "Buying WELL on 2014-11-30 00:00:00\n", + "Buying CLX on 2014-11-30 00:00:00\n", + "Buying CBOE on 2014-11-30 00:00:00\n", + "Buying NEM on 2014-11-30 00:00:00\n", + "Buying AEP on 2014-11-30 00:00:00\n", + "Buying CMS on 2014-11-30 00:00:00\n", + "Buying ULTA on 2014-11-30 00:00:00\n", + "Buying BDX on 2014-11-30 00:00:00\n", + "Buying REG on 2014-11-30 00:00:00\n", + "Buying ACGL on 2014-11-30 00:00:00\n", + "Selling FFIV on 2014-11-30 00:00:00\n", + "Selling ABBV on 2014-11-30 00:00:00\n", + "Selling CRM on 2014-11-30 00:00:00\n", + "Selling VRTX on 2014-11-30 00:00:00\n", + "Selling PSX on 2014-11-30 00:00:00\n", + "Selling PH on 2014-11-30 00:00:00\n", + "Selling KMX on 2014-11-30 00:00:00\n", + "Selling LYV on 2014-11-30 00:00:00\n", + "Selling TXT on 2014-11-30 00:00:00\n", + "Selling MPWR on 2014-11-30 00:00:00\n", + "Selling LYB on 2014-11-30 00:00:00\n", + "Selling NOW on 2014-11-30 00:00:00\n", + "Selling SWKS on 2014-11-30 00:00:00\n", + "Buying WELL on 2014-12-31 00:00:00\n", + "Buying O on 2014-12-31 00:00:00\n", + "Buying SO on 2014-12-31 00:00:00\n", + "Buying DUK on 2014-12-31 00:00:00\n", + "Buying ERIE on 2014-12-31 00:00:00\n", + "Buying CBOE on 2014-12-31 00:00:00\n", + "Buying ACGL on 2014-12-31 00:00:00\n", + "Buying CLX on 2014-12-31 00:00:00\n", + "Buying AEP on 2014-12-31 00:00:00\n", + "Buying CHD on 2014-12-31 00:00:00\n", + "Buying EXR on 2014-12-31 00:00:00\n", + "Buying REG on 2014-12-31 00:00:00\n", + "Buying JBHT on 2014-12-31 00:00:00\n", + "Selling APO on 2014-12-31 00:00:00\n", + "Selling CE on 2014-12-31 00:00:00\n", + "Selling JBL on 2014-12-31 00:00:00\n", + "Selling PSX on 2014-12-31 00:00:00\n", + "Selling CRM on 2014-12-31 00:00:00\n", + "Selling PH on 2014-12-31 00:00:00\n", + "Selling NOW on 2014-12-31 00:00:00\n", + "Selling MPWR on 2014-12-31 00:00:00\n", + "Selling ROK on 2014-12-31 00:00:00\n", + "Selling TXT on 2014-12-31 00:00:00\n", + "Selling SWKS on 2014-12-31 00:00:00\n", + "Selling LYB on 2014-12-31 00:00:00\n", + "Selling TRGP on 2014-12-31 00:00:00\n", + "Buying O on 2015-01-31 00:00:00\n", + "Buying WELL on 2015-01-31 00:00:00\n", + "Buying NEM on 2015-01-31 00:00:00\n", + "Buying CBOE on 2015-01-31 00:00:00\n", + "Buying DUK on 2015-01-31 00:00:00\n", + "Buying EXR on 2015-01-31 00:00:00\n", + "Buying ACGL on 2015-01-31 00:00:00\n", + "Buying FFIV on 2015-01-31 00:00:00\n", + "Buying VRSK on 2015-01-31 00:00:00\n", + "Buying SO on 2015-01-31 00:00:00\n", + "Buying HAS on 2015-01-31 00:00:00\n", + "Buying CLX on 2015-01-31 00:00:00\n", + "Buying AMZN on 2015-01-31 00:00:00\n", + "Selling CE on 2015-01-31 00:00:00\n", + "Selling A on 2015-01-31 00:00:00\n", + "Selling CRM on 2015-01-31 00:00:00\n", + "Selling C on 2015-01-31 00:00:00\n", + "Selling BWA on 2015-01-31 00:00:00\n", + "Selling SWKS on 2015-01-31 00:00:00\n", + "Selling PHM on 2015-01-31 00:00:00\n", + "Selling J on 2015-01-31 00:00:00\n", + "Selling PSX on 2015-01-31 00:00:00\n", + "Selling NFLX on 2015-01-31 00:00:00\n", + "Selling FCX on 2015-01-31 00:00:00\n", + "Selling LYB on 2015-01-31 00:00:00\n", + "Selling TRGP on 2015-01-31 00:00:00\n", + "Buying O on 2015-02-28 00:00:00\n", + "Buying WELL on 2015-02-28 00:00:00\n", + "Buying NEM on 2015-02-28 00:00:00\n", + "Buying CBOE on 2015-02-28 00:00:00\n", + "Buying DUK on 2015-02-28 00:00:00\n", + "Buying EXR on 2015-02-28 00:00:00\n", + "Buying SO on 2015-02-28 00:00:00\n", + "Buying HAS on 2015-02-28 00:00:00\n", + "Buying ACGL on 2015-02-28 00:00:00\n", + "Buying CLX on 2015-02-28 00:00:00\n", + "Buying VRSK on 2015-02-28 00:00:00\n", + "Buying AMZN on 2015-02-28 00:00:00\n", + "Buying FFIV on 2015-02-28 00:00:00\n", + "Selling STLD on 2015-02-28 00:00:00\n", + "Selling VRTX on 2015-02-28 00:00:00\n", + "Selling MSFT on 2015-02-28 00:00:00\n", + "Selling C on 2015-02-28 00:00:00\n", + "Selling A on 2015-02-28 00:00:00\n", + "Selling PSX on 2015-02-28 00:00:00\n", + "Selling NFLX on 2015-02-28 00:00:00\n", + "Selling BWA on 2015-02-28 00:00:00\n", + "Selling CRM on 2015-02-28 00:00:00\n", + "Selling J on 2015-02-28 00:00:00\n", + "Selling LYB on 2015-02-28 00:00:00\n", + "Selling TRGP on 2015-02-28 00:00:00\n", + "Selling FCX on 2015-02-28 00:00:00\n", + "Buying NEM on 2015-03-31 00:00:00\n", + "Buying CBOE on 2015-03-31 00:00:00\n", + "Buying O on 2015-03-31 00:00:00\n", + "Buying WELL on 2015-03-31 00:00:00\n", + "Buying FFIV on 2015-03-31 00:00:00\n", + "Buying DUK on 2015-03-31 00:00:00\n", + "Buying SO on 2015-03-31 00:00:00\n", + "Buying BX on 2015-03-31 00:00:00\n", + "Buying INCY on 2015-03-31 00:00:00\n", + "Buying CRL on 2015-03-31 00:00:00\n", + "Buying ACGL on 2015-03-31 00:00:00\n", + "Buying CLX on 2015-03-31 00:00:00\n", + "Buying COR on 2015-03-31 00:00:00\n", + "Selling A on 2015-03-31 00:00:00\n", + "Selling PHM on 2015-03-31 00:00:00\n", + "Selling SWKS on 2015-03-31 00:00:00\n", + "Selling TRGP on 2015-03-31 00:00:00\n", + "Selling GS on 2015-03-31 00:00:00\n", + "Selling GEN on 2015-03-31 00:00:00\n", + "Selling NFLX on 2015-03-31 00:00:00\n", + "Selling PSX on 2015-03-31 00:00:00\n", + "Selling TSCO on 2015-03-31 00:00:00\n", + "Selling LYB on 2015-03-31 00:00:00\n", + "Selling BWA on 2015-03-31 00:00:00\n", + "Selling STLD on 2015-03-31 00:00:00\n", + "Selling FCX on 2015-03-31 00:00:00\n", + "Buying CE on 2015-04-30 00:00:00\n", + "Buying APO on 2015-04-30 00:00:00\n", + "Buying CBOE on 2015-04-30 00:00:00\n", + "Buying SJM on 2015-04-30 00:00:00\n", + "Buying BX on 2015-04-30 00:00:00\n", + "Buying ULTA on 2015-04-30 00:00:00\n", + "Buying SYY on 2015-04-30 00:00:00\n", + "Buying ACGL on 2015-04-30 00:00:00\n", + "Buying WTW on 2015-04-30 00:00:00\n", + "Buying SYF on 2015-04-30 00:00:00\n", + "Buying GIS on 2015-04-30 00:00:00\n", + "Buying CLX on 2015-04-30 00:00:00\n", + "Buying GWW on 2015-04-30 00:00:00\n", + "Selling PPL on 2015-04-30 00:00:00\n", + "Selling BLK on 2015-04-30 00:00:00\n", + "Selling VRTX on 2015-04-30 00:00:00\n", + "Selling ORLY on 2015-04-30 00:00:00\n", + "Selling NUE on 2015-04-30 00:00:00\n", + "Selling ZBH on 2015-04-30 00:00:00\n", + "Selling MAR on 2015-04-30 00:00:00\n", + "Selling GEN on 2015-04-30 00:00:00\n", + "Selling LDOS on 2015-04-30 00:00:00\n", + "Selling BWA on 2015-04-30 00:00:00\n", + "Selling FCX on 2015-04-30 00:00:00\n", + "Selling NOW on 2015-04-30 00:00:00\n", + "Selling STLD on 2015-04-30 00:00:00\n", + "Buying CBOE on 2015-05-31 00:00:00\n", + "Buying CE on 2015-05-31 00:00:00\n", + "Buying APO on 2015-05-31 00:00:00\n", + "Buying BX on 2015-05-31 00:00:00\n", + "Buying CDW on 2015-05-31 00:00:00\n", + "Buying SYF on 2015-05-31 00:00:00\n", + "Buying MNST on 2015-05-31 00:00:00\n", + "Buying ULTA on 2015-05-31 00:00:00\n", + "Buying NFLX on 2015-05-31 00:00:00\n", + "Buying SYY on 2015-05-31 00:00:00\n", + "Buying WTW on 2015-05-31 00:00:00\n", + "Buying SJM on 2015-05-31 00:00:00\n", + "Buying RJF on 2015-05-31 00:00:00\n", + "Selling CMS on 2015-05-31 00:00:00\n", + "Selling PPL on 2015-05-31 00:00:00\n", + "Selling AON on 2015-05-31 00:00:00\n", + "Selling EW on 2015-05-31 00:00:00\n", + "Selling MAR on 2015-05-31 00:00:00\n", + "Selling VRTX on 2015-05-31 00:00:00\n", + "Selling NOW on 2015-05-31 00:00:00\n", + "Selling GEN on 2015-05-31 00:00:00\n", + "Selling STLD on 2015-05-31 00:00:00\n", + "Selling NRG on 2015-05-31 00:00:00\n", + "Selling LDOS on 2015-05-31 00:00:00\n", + "Selling FCX on 2015-05-31 00:00:00\n", + "Selling SWKS on 2015-05-31 00:00:00\n", + "Buying CE on 2015-06-30 00:00:00\n", + "Buying CBOE on 2015-06-30 00:00:00\n", + "Buying NEM on 2015-06-30 00:00:00\n", + "Buying APO on 2015-06-30 00:00:00\n", + "Buying CCI on 2015-06-30 00:00:00\n", + "Buying SYY on 2015-06-30 00:00:00\n", + "Buying MNST on 2015-06-30 00:00:00\n", + "Buying RMD on 2015-06-30 00:00:00\n", + "Buying ERIE on 2015-06-30 00:00:00\n", + "Buying TAP on 2015-06-30 00:00:00\n", + "Buying SO on 2015-06-30 00:00:00\n", + "Buying SYF on 2015-06-30 00:00:00\n", + "Buying NFLX on 2015-06-30 00:00:00\n", + "Selling LDOS on 2015-06-30 00:00:00\n", + "Selling MAR on 2015-06-30 00:00:00\n", + "Selling AMZN on 2015-06-30 00:00:00\n", + "Selling LYV on 2015-06-30 00:00:00\n", + "Selling LVS on 2015-06-30 00:00:00\n", + "Selling MSFT on 2015-06-30 00:00:00\n", + "Selling INCY on 2015-06-30 00:00:00\n", + "Selling CSX on 2015-06-30 00:00:00\n", + "Selling NRG on 2015-06-30 00:00:00\n", + "Selling GILD on 2015-06-30 00:00:00\n", + "Selling VRTX on 2015-06-30 00:00:00\n", + "Selling NOW on 2015-06-30 00:00:00\n", + "Selling SWKS on 2015-06-30 00:00:00\n", + "Buying NEM on 2015-07-31 00:00:00\n", + "Buying CBOE on 2015-07-31 00:00:00\n", + "Buying SO on 2015-07-31 00:00:00\n", + "Buying SYY on 2015-07-31 00:00:00\n", + "Buying WELL on 2015-07-31 00:00:00\n", + "Buying D on 2015-07-31 00:00:00\n", + "Buying NI on 2015-07-31 00:00:00\n", + "Buying CCI on 2015-07-31 00:00:00\n", + "Buying AEP on 2015-07-31 00:00:00\n", + "Buying DUK on 2015-07-31 00:00:00\n", + "Buying MNST on 2015-07-31 00:00:00\n", + "Buying IDXX on 2015-07-31 00:00:00\n", + "Buying SRE on 2015-07-31 00:00:00\n", + "Selling MAR on 2015-07-31 00:00:00\n", + "Selling J on 2015-07-31 00:00:00\n", + "Selling LDOS on 2015-07-31 00:00:00\n", + "Selling NFLX on 2015-07-31 00:00:00\n", + "Selling GILD on 2015-07-31 00:00:00\n", + "Selling TXT on 2015-07-31 00:00:00\n", + "Selling LVS on 2015-07-31 00:00:00\n", + "Selling NRG on 2015-07-31 00:00:00\n", + "Selling INCY on 2015-07-31 00:00:00\n", + "Selling PSX on 2015-07-31 00:00:00\n", + "Selling VRTX on 2015-07-31 00:00:00\n", + "Selling SWKS on 2015-07-31 00:00:00\n", + "Selling FCX on 2015-07-31 00:00:00\n", + "Buying SYF on 2015-08-31 00:00:00\n", + "Buying SYY on 2015-08-31 00:00:00\n", + "Buying PNW on 2015-08-31 00:00:00\n", + "Buying SRE on 2015-08-31 00:00:00\n", + "Buying CBOE on 2015-08-31 00:00:00\n", + "Buying WELL on 2015-08-31 00:00:00\n", + "Buying D on 2015-08-31 00:00:00\n", + "Buying PTC on 2015-08-31 00:00:00\n", + "Buying NEM on 2015-08-31 00:00:00\n", + "Buying SO on 2015-08-31 00:00:00\n", + "Buying BF-B on 2015-08-31 00:00:00\n", + "Buying O on 2015-08-31 00:00:00\n", + "Buying CMS on 2015-08-31 00:00:00\n", + "Selling RJF on 2015-08-31 00:00:00\n", + "Selling AMZN on 2015-08-31 00:00:00\n", + "Selling PSX on 2015-08-31 00:00:00\n", + "Selling TXT on 2015-08-31 00:00:00\n", + "Selling BX on 2015-08-31 00:00:00\n", + "Selling CE on 2015-08-31 00:00:00\n", + "Selling SWKS on 2015-08-31 00:00:00\n", + "Selling AXON on 2015-08-31 00:00:00\n", + "Selling TRGP on 2015-08-31 00:00:00\n", + "Selling INCY on 2015-08-31 00:00:00\n", + "Selling VRTX on 2015-08-31 00:00:00\n", + "Selling NFLX on 2015-08-31 00:00:00\n", + "Selling FCX on 2015-08-31 00:00:00\n", + "Buying SYF on 2015-09-30 00:00:00\n", + "Buying SRE on 2015-09-30 00:00:00\n", + "Buying PNW on 2015-09-30 00:00:00\n", + "Buying WELL on 2015-09-30 00:00:00\n", + "Buying SO on 2015-09-30 00:00:00\n", + "Buying SYY on 2015-09-30 00:00:00\n", + "Buying CMS on 2015-09-30 00:00:00\n", + "Buying ACGL on 2015-09-30 00:00:00\n", + "Buying WTW on 2015-09-30 00:00:00\n", + "Buying D on 2015-09-30 00:00:00\n", + "Buying O on 2015-09-30 00:00:00\n", + "Buying ERIE on 2015-09-30 00:00:00\n", + "Buying CBOE on 2015-09-30 00:00:00\n", + "Selling C on 2015-09-30 00:00:00\n", + "Selling TXT on 2015-09-30 00:00:00\n", + "Selling STLD on 2015-09-30 00:00:00\n", + "Selling LYB on 2015-09-30 00:00:00\n", + "Selling AXON on 2015-09-30 00:00:00\n", + "Selling TRGP on 2015-09-30 00:00:00\n", + "Selling CE on 2015-09-30 00:00:00\n", + "Selling SWKS on 2015-09-30 00:00:00\n", + "Selling BX on 2015-09-30 00:00:00\n", + "Selling NFLX on 2015-09-30 00:00:00\n", + "Selling VRTX on 2015-09-30 00:00:00\n", + "Selling INCY on 2015-09-30 00:00:00\n", + "Selling FCX on 2015-09-30 00:00:00\n", + "Buying SYF on 2015-10-31 00:00:00\n", + "Buying PNW on 2015-10-31 00:00:00\n", + "Buying SRE on 2015-10-31 00:00:00\n", + "Buying D on 2015-10-31 00:00:00\n", + "Buying SO on 2015-10-31 00:00:00\n", + "Buying WELL on 2015-10-31 00:00:00\n", + "Buying CMS on 2015-10-31 00:00:00\n", + "Buying SYY on 2015-10-31 00:00:00\n", + "Buying CBOE on 2015-10-31 00:00:00\n", + "Buying DG on 2015-10-31 00:00:00\n", + "Buying ACGL on 2015-10-31 00:00:00\n", + "Buying AEP on 2015-10-31 00:00:00\n", + "Buying WTW on 2015-10-31 00:00:00\n", + "Selling NWSA on 2015-10-31 00:00:00\n", + "Selling CSX on 2015-10-31 00:00:00\n", + "Selling MSFT on 2015-10-31 00:00:00\n", + "Selling STLD on 2015-10-31 00:00:00\n", + "Selling AXON on 2015-10-31 00:00:00\n", + "Selling AMZN on 2015-10-31 00:00:00\n", + "Selling CE on 2015-10-31 00:00:00\n", + "Selling NFLX on 2015-10-31 00:00:00\n", + "Selling BX on 2015-10-31 00:00:00\n", + "Selling VRTX on 2015-10-31 00:00:00\n", + "Selling TRGP on 2015-10-31 00:00:00\n", + "Selling INCY on 2015-10-31 00:00:00\n", + "Selling FCX on 2015-10-31 00:00:00\n", + "Buying D on 2015-11-30 00:00:00\n", + "Buying SO on 2015-11-30 00:00:00\n", + "Buying TAP on 2015-11-30 00:00:00\n", + "Buying AEP on 2015-11-30 00:00:00\n", + "Buying SYF on 2015-11-30 00:00:00\n", + "Buying PPL on 2015-11-30 00:00:00\n", + "Buying CBOE on 2015-11-30 00:00:00\n", + "Buying ACGL on 2015-11-30 00:00:00\n", + "Buying SRE on 2015-11-30 00:00:00\n", + "Buying CMS on 2015-11-30 00:00:00\n", + "Buying WELL on 2015-11-30 00:00:00\n", + "Buying ERIE on 2015-11-30 00:00:00\n", + "Buying PNW on 2015-11-30 00:00:00\n", + "Selling NOW on 2015-11-30 00:00:00\n", + "Selling CSX on 2015-11-30 00:00:00\n", + "Selling STLD on 2015-11-30 00:00:00\n", + "Selling SWKS on 2015-11-30 00:00:00\n", + "Selling VRTX on 2015-11-30 00:00:00\n", + "Selling NWSA on 2015-11-30 00:00:00\n", + "Selling NUE on 2015-11-30 00:00:00\n", + "Selling LVS on 2015-11-30 00:00:00\n", + "Selling AXON on 2015-11-30 00:00:00\n", + "Selling BX on 2015-11-30 00:00:00\n", + "Selling INCY on 2015-11-30 00:00:00\n", + "Selling TRGP on 2015-11-30 00:00:00\n", + "Selling FCX on 2015-11-30 00:00:00\n", + "Buying NRG on 2015-12-31 00:00:00\n", + "Buying COR on 2015-12-31 00:00:00\n", + "Buying TAP on 2015-12-31 00:00:00\n", + "Buying CF on 2015-12-31 00:00:00\n", + "Buying DG on 2015-12-31 00:00:00\n", + "Buying SO on 2015-12-31 00:00:00\n", + "Buying IDXX on 2015-12-31 00:00:00\n", + "Buying EXR on 2015-12-31 00:00:00\n", + "Buying DRI on 2015-12-31 00:00:00\n", + "Buying D on 2015-12-31 00:00:00\n", + "Buying DUK on 2015-12-31 00:00:00\n", + "Buying AEP on 2015-12-31 00:00:00\n", + "Buying WTW on 2015-12-31 00:00:00\n", + "Selling GILD on 2015-12-31 00:00:00\n", + "Selling LDOS on 2015-12-31 00:00:00\n", + "Selling LVS on 2015-12-31 00:00:00\n", + "Selling BX on 2015-12-31 00:00:00\n", + "Selling BLK on 2015-12-31 00:00:00\n", + "Selling BWA on 2015-12-31 00:00:00\n", + "Selling HBAN on 2015-12-31 00:00:00\n", + "Selling GS on 2015-12-31 00:00:00\n", + "Selling SWKS on 2015-12-31 00:00:00\n", + "Selling C on 2015-12-31 00:00:00\n", + "Selling AXON on 2015-12-31 00:00:00\n", + "Selling NWSA on 2015-12-31 00:00:00\n", + "Selling FCX on 2015-12-31 00:00:00\n", + "Buying NEM on 2016-01-31 00:00:00\n", + "Buying SO on 2016-01-31 00:00:00\n", + "Buying ACGL on 2016-01-31 00:00:00\n", + "Buying D on 2016-01-31 00:00:00\n", + "Buying DG on 2016-01-31 00:00:00\n", + "Buying COR on 2016-01-31 00:00:00\n", + "Buying DRI on 2016-01-31 00:00:00\n", + "Buying DUK on 2016-01-31 00:00:00\n", + "Buying SYY on 2016-01-31 00:00:00\n", + "Buying CBOE on 2016-01-31 00:00:00\n", + "Buying EXR on 2016-01-31 00:00:00\n", + "Buying PNW on 2016-01-31 00:00:00\n", + "Buying NRG on 2016-01-31 00:00:00\n", + "Selling JBL on 2016-01-31 00:00:00\n", + "Selling PHM on 2016-01-31 00:00:00\n", + "Selling PSX on 2016-01-31 00:00:00\n", + "Selling LVS on 2016-01-31 00:00:00\n", + "Selling GS on 2016-01-31 00:00:00\n", + "Selling INCY on 2016-01-31 00:00:00\n", + "Selling BLK on 2016-01-31 00:00:00\n", + "Selling BWA on 2016-01-31 00:00:00\n", + "Selling C on 2016-01-31 00:00:00\n", + "Selling BX on 2016-01-31 00:00:00\n", + "Selling SWKS on 2016-01-31 00:00:00\n", + "Selling FCX on 2016-01-31 00:00:00\n", + "Selling TRGP on 2016-01-31 00:00:00\n", + "Buying NEM on 2016-02-29 00:00:00\n", + "Buying SO on 2016-02-29 00:00:00\n", + "Buying DUK on 2016-02-29 00:00:00\n", + "Buying SYY on 2016-02-29 00:00:00\n", + "Buying ACGL on 2016-02-29 00:00:00\n", + "Buying CMS on 2016-02-29 00:00:00\n", + "Buying CBOE on 2016-02-29 00:00:00\n", + "Buying PNW on 2016-02-29 00:00:00\n", + "Buying D on 2016-02-29 00:00:00\n", + "Buying COR on 2016-02-29 00:00:00\n", + "Buying O on 2016-02-29 00:00:00\n", + "Buying CLX on 2016-02-29 00:00:00\n", + "Buying AEP on 2016-02-29 00:00:00\n", + "Selling VRTX on 2016-02-29 00:00:00\n", + "Selling NOW on 2016-02-29 00:00:00\n", + "Selling BWA on 2016-02-29 00:00:00\n", + "Selling GS on 2016-02-29 00:00:00\n", + "Selling BLK on 2016-02-29 00:00:00\n", + "Selling LVS on 2016-02-29 00:00:00\n", + "Selling CRM on 2016-02-29 00:00:00\n", + "Selling C on 2016-02-29 00:00:00\n", + "Selling INCY on 2016-02-29 00:00:00\n", + "Selling BX on 2016-02-29 00:00:00\n", + "Selling SWKS on 2016-02-29 00:00:00\n", + "Selling FCX on 2016-02-29 00:00:00\n", + "Selling TRGP on 2016-02-29 00:00:00\n", + "Buying NEM on 2016-03-31 00:00:00\n", + "Buying SO on 2016-03-31 00:00:00\n", + "Buying CMS on 2016-03-31 00:00:00\n", + "Buying PNW on 2016-03-31 00:00:00\n", + "Buying DUK on 2016-03-31 00:00:00\n", + "Buying CBOE on 2016-03-31 00:00:00\n", + "Buying O on 2016-03-31 00:00:00\n", + "Buying CLX on 2016-03-31 00:00:00\n", + "Buying D on 2016-03-31 00:00:00\n", + "Buying SYY on 2016-03-31 00:00:00\n", + "Buying AEP on 2016-03-31 00:00:00\n", + "Buying ACGL on 2016-03-31 00:00:00\n", + "Buying T on 2016-03-31 00:00:00\n", + "Selling BWA on 2016-03-31 00:00:00\n", + "Selling STLD on 2016-03-31 00:00:00\n", + "Selling NCLH on 2016-03-31 00:00:00\n", + "Selling NOW on 2016-03-31 00:00:00\n", + "Selling LVS on 2016-03-31 00:00:00\n", + "Selling CRM on 2016-03-31 00:00:00\n", + "Selling INCY on 2016-03-31 00:00:00\n", + "Selling NRG on 2016-03-31 00:00:00\n", + "Selling C on 2016-03-31 00:00:00\n", + "Selling BX on 2016-03-31 00:00:00\n", + "Selling SWKS on 2016-03-31 00:00:00\n", + "Selling FCX on 2016-03-31 00:00:00\n", + "Selling TRGP on 2016-03-31 00:00:00\n", + "Buying NEM on 2016-04-30 00:00:00\n", + "Buying SO on 2016-04-30 00:00:00\n", + "Buying O on 2016-04-30 00:00:00\n", + "Buying CMS on 2016-04-30 00:00:00\n", + "Buying DUK on 2016-04-30 00:00:00\n", + "Buying PNW on 2016-04-30 00:00:00\n", + "Buying CLX on 2016-04-30 00:00:00\n", + "Buying CBOE on 2016-04-30 00:00:00\n", + "Buying PPL on 2016-04-30 00:00:00\n", + "Buying T on 2016-04-30 00:00:00\n", + "Buying AEP on 2016-04-30 00:00:00\n", + "Buying AON on 2016-04-30 00:00:00\n", + "Buying CHD on 2016-04-30 00:00:00\n", + "Selling LVS on 2016-04-30 00:00:00\n", + "Selling ADBE on 2016-04-30 00:00:00\n", + "Selling APTV on 2016-04-30 00:00:00\n", + "Selling INCY on 2016-04-30 00:00:00\n", + "Selling KMX on 2016-04-30 00:00:00\n", + "Selling VRTX on 2016-04-30 00:00:00\n", + "Selling CRM on 2016-04-30 00:00:00\n", + "Selling NRG on 2016-04-30 00:00:00\n", + "Selling SWKS on 2016-04-30 00:00:00\n", + "Selling BX on 2016-04-30 00:00:00\n", + "Selling C on 2016-04-30 00:00:00\n", + "Selling TRGP on 2016-04-30 00:00:00\n", + "Selling FCX on 2016-04-30 00:00:00\n", + "Buying NEM on 2016-05-31 00:00:00\n", + "Buying SO on 2016-05-31 00:00:00\n", + "Buying CHD on 2016-05-31 00:00:00\n", + "Buying DUK on 2016-05-31 00:00:00\n", + "Buying CLX on 2016-05-31 00:00:00\n", + "Buying D on 2016-05-31 00:00:00\n", + "Buying CMS on 2016-05-31 00:00:00\n", + "Buying PNW on 2016-05-31 00:00:00\n", + "Buying O on 2016-05-31 00:00:00\n", + "Buying NI on 2016-05-31 00:00:00\n", + "Buying T on 2016-05-31 00:00:00\n", + "Buying PPL on 2016-05-31 00:00:00\n", + "Buying MNST on 2016-05-31 00:00:00\n", + "Selling NWSA on 2016-05-31 00:00:00\n", + "Selling LVS on 2016-05-31 00:00:00\n", + "Selling BLK on 2016-05-31 00:00:00\n", + "Selling C on 2016-05-31 00:00:00\n", + "Selling LYB on 2016-05-31 00:00:00\n", + "Selling BWA on 2016-05-31 00:00:00\n", + "Selling ULTA on 2016-05-31 00:00:00\n", + "Selling BX on 2016-05-31 00:00:00\n", + "Selling INCY on 2016-05-31 00:00:00\n", + "Selling RJF on 2016-05-31 00:00:00\n", + "Selling VRTX on 2016-05-31 00:00:00\n", + "Selling KMX on 2016-05-31 00:00:00\n", + "Selling FCX on 2016-05-31 00:00:00\n", + "Buying NEM on 2016-06-30 00:00:00\n", + "Buying CMS on 2016-06-30 00:00:00\n", + "Buying SO on 2016-06-30 00:00:00\n", + "Buying DUK on 2016-06-30 00:00:00\n", + "Buying CLX on 2016-06-30 00:00:00\n", + "Buying AEP on 2016-06-30 00:00:00\n", + "Buying PNW on 2016-06-30 00:00:00\n", + "Buying O on 2016-06-30 00:00:00\n", + "Buying D on 2016-06-30 00:00:00\n", + "Buying NI on 2016-06-30 00:00:00\n", + "Buying EXR on 2016-06-30 00:00:00\n", + "Buying DG on 2016-06-30 00:00:00\n", + "Buying WELL on 2016-06-30 00:00:00\n", + "Selling BLK on 2016-06-30 00:00:00\n", + "Selling BX on 2016-06-30 00:00:00\n", + "Selling VRTX on 2016-06-30 00:00:00\n", + "Selling SWKS on 2016-06-30 00:00:00\n", + "Selling EPAM on 2016-06-30 00:00:00\n", + "Selling BKNG on 2016-06-30 00:00:00\n", + "Selling RJF on 2016-06-30 00:00:00\n", + "Selling INCY on 2016-06-30 00:00:00\n", + "Selling HBAN on 2016-06-30 00:00:00\n", + "Selling C on 2016-06-30 00:00:00\n", + "Selling BWA on 2016-06-30 00:00:00\n", + "Selling APTV on 2016-06-30 00:00:00\n", + "Selling FCX on 2016-06-30 00:00:00\n", + "Buying NEM on 2016-07-31 00:00:00\n", + "Buying CMS on 2016-07-31 00:00:00\n", + "Buying DUK on 2016-07-31 00:00:00\n", + "Buying AEP on 2016-07-31 00:00:00\n", + "Buying PNW on 2016-07-31 00:00:00\n", + "Buying CLX on 2016-07-31 00:00:00\n", + "Buying SO on 2016-07-31 00:00:00\n", + "Buying O on 2016-07-31 00:00:00\n", + "Buying D on 2016-07-31 00:00:00\n", + "Buying NI on 2016-07-31 00:00:00\n", + "Buying EXR on 2016-07-31 00:00:00\n", + "Buying DG on 2016-07-31 00:00:00\n", + "Buying SJM on 2016-07-31 00:00:00\n", + "Selling VRTX on 2016-07-31 00:00:00\n", + "Selling INCY on 2016-07-31 00:00:00\n", + "Selling BKNG on 2016-07-31 00:00:00\n", + "Selling NRG on 2016-07-31 00:00:00\n", + "Selling SWKS on 2016-07-31 00:00:00\n", + "Selling RJF on 2016-07-31 00:00:00\n", + "Selling NOW on 2016-07-31 00:00:00\n", + "Selling EPAM on 2016-07-31 00:00:00\n", + "Selling HBAN on 2016-07-31 00:00:00\n", + "Selling C on 2016-07-31 00:00:00\n", + "Selling FCX on 2016-07-31 00:00:00\n", + "Selling BWA on 2016-07-31 00:00:00\n", + "Selling APTV on 2016-07-31 00:00:00\n", + "Buying NEM on 2016-08-31 00:00:00\n", + "Buying CMS on 2016-08-31 00:00:00\n", + "Buying CLX on 2016-08-31 00:00:00\n", + "Buying PNW on 2016-08-31 00:00:00\n", + "Buying DUK on 2016-08-31 00:00:00\n", + "Buying O on 2016-08-31 00:00:00\n", + "Buying AEP on 2016-08-31 00:00:00\n", + "Buying SO on 2016-08-31 00:00:00\n", + "Buying EXR on 2016-08-31 00:00:00\n", + "Buying NI on 2016-08-31 00:00:00\n", + "Buying SJM on 2016-08-31 00:00:00\n", + "Buying CCI on 2016-08-31 00:00:00\n", + "Buying D on 2016-08-31 00:00:00\n", + "Selling TRGP on 2016-08-31 00:00:00\n", + "Selling NRG on 2016-08-31 00:00:00\n", + "Selling BKNG on 2016-08-31 00:00:00\n", + "Selling NCLH on 2016-08-31 00:00:00\n", + "Selling EPAM on 2016-08-31 00:00:00\n", + "Selling CF on 2016-08-31 00:00:00\n", + "Selling NOW on 2016-08-31 00:00:00\n", + "Selling HBAN on 2016-08-31 00:00:00\n", + "Selling SWKS on 2016-08-31 00:00:00\n", + "Selling C on 2016-08-31 00:00:00\n", + "Selling BWA on 2016-08-31 00:00:00\n", + "Selling APTV on 2016-08-31 00:00:00\n", + "Selling FCX on 2016-08-31 00:00:00\n", + "Buying CVS on 2016-09-30 00:00:00\n", + "Buying SJM on 2016-09-30 00:00:00\n", + "Buying BMY on 2016-09-30 00:00:00\n", + "Buying ACGL on 2016-09-30 00:00:00\n", + "Buying MKTX on 2016-09-30 00:00:00\n", + "Buying GILD on 2016-09-30 00:00:00\n", + "Buying ICE on 2016-09-30 00:00:00\n", + "Buying EXR on 2016-09-30 00:00:00\n", + "Buying ERIE on 2016-09-30 00:00:00\n", + "Buying CBOE on 2016-09-30 00:00:00\n", + "Buying ORLY on 2016-09-30 00:00:00\n", + "Buying ALL on 2016-09-30 00:00:00\n", + "Buying VRSK on 2016-09-30 00:00:00\n", + "Selling KEYS on 2016-09-30 00:00:00\n", + "Selling BWA on 2016-09-30 00:00:00\n", + "Selling TDY on 2016-09-30 00:00:00\n", + "Selling VRTX on 2016-09-30 00:00:00\n", + "Selling NEM on 2016-09-30 00:00:00\n", + "Selling TRGP on 2016-09-30 00:00:00\n", + "Selling NUE on 2016-09-30 00:00:00\n", + "Selling SWKS on 2016-09-30 00:00:00\n", + "Selling CF on 2016-09-30 00:00:00\n", + "Selling KMX on 2016-09-30 00:00:00\n", + "Selling NOW on 2016-09-30 00:00:00\n", + "Selling NRG on 2016-09-30 00:00:00\n", + "Selling FCX on 2016-09-30 00:00:00\n", + "Buying ACGL on 2016-10-31 00:00:00\n", + "Buying EXR on 2016-10-31 00:00:00\n", + "Buying BMY on 2016-10-31 00:00:00\n", + "Buying ICE on 2016-10-31 00:00:00\n", + "Buying CBOE on 2016-10-31 00:00:00\n", + "Buying VRSK on 2016-10-31 00:00:00\n", + "Buying MKTX on 2016-10-31 00:00:00\n", + "Buying SJM on 2016-10-31 00:00:00\n", + "Buying CVS on 2016-10-31 00:00:00\n", + "Buying HAS on 2016-10-31 00:00:00\n", + "Buying NCLH on 2016-10-31 00:00:00\n", + "Buying ERIE on 2016-10-31 00:00:00\n", + "Buying ALL on 2016-10-31 00:00:00\n", + "Selling ZBH on 2016-10-31 00:00:00\n", + "Selling TRGP on 2016-10-31 00:00:00\n", + "Selling NUE on 2016-10-31 00:00:00\n", + "Selling CF on 2016-10-31 00:00:00\n", + "Selling CE on 2016-10-31 00:00:00\n", + "Selling NFLX on 2016-10-31 00:00:00\n", + "Selling NOW on 2016-10-31 00:00:00\n", + "Selling KMX on 2016-10-31 00:00:00\n", + "Selling SWKS on 2016-10-31 00:00:00\n", + "Selling VRTX on 2016-10-31 00:00:00\n", + "Selling NEM on 2016-10-31 00:00:00\n", + "Selling NRG on 2016-10-31 00:00:00\n", + "Selling FCX on 2016-10-31 00:00:00\n", + "Buying NCLH on 2016-11-30 00:00:00\n", + "Buying EXR on 2016-11-30 00:00:00\n", + "Buying ACGL on 2016-11-30 00:00:00\n", + "Buying TSCO on 2016-11-30 00:00:00\n", + "Buying SJM on 2016-11-30 00:00:00\n", + "Buying ERIE on 2016-11-30 00:00:00\n", + "Buying ALL on 2016-11-30 00:00:00\n", + "Buying VRSK on 2016-11-30 00:00:00\n", + "Buying LVS on 2016-11-30 00:00:00\n", + "Buying CVS on 2016-11-30 00:00:00\n", + "Buying CBOE on 2016-11-30 00:00:00\n", + "Buying PARA on 2016-11-30 00:00:00\n", + "Buying ORLY on 2016-11-30 00:00:00\n", + "Selling ROK on 2016-11-30 00:00:00\n", + "Selling CRL on 2016-11-30 00:00:00\n", + "Selling KMX on 2016-11-30 00:00:00\n", + "Selling STLD on 2016-11-30 00:00:00\n", + "Selling SYY on 2016-11-30 00:00:00\n", + "Selling TDY on 2016-11-30 00:00:00\n", + "Selling SWKS on 2016-11-30 00:00:00\n", + "Selling NUE on 2016-11-30 00:00:00\n", + "Selling MTCH on 2016-11-30 00:00:00\n", + "Selling INCY on 2016-11-30 00:00:00\n", + "Selling VRTX on 2016-11-30 00:00:00\n", + "Selling NRG on 2016-11-30 00:00:00\n", + "Selling FCX on 2016-11-30 00:00:00\n", + "Buying NEM on 2016-12-31 00:00:00\n", + "Buying REG on 2016-12-31 00:00:00\n", + "Buying ALL on 2016-12-31 00:00:00\n", + "Buying ACGL on 2016-12-31 00:00:00\n", + "Buying SO on 2016-12-31 00:00:00\n", + "Buying LVS on 2016-12-31 00:00:00\n", + "Buying ERIE on 2016-12-31 00:00:00\n", + "Buying PPL on 2016-12-31 00:00:00\n", + "Buying AMT on 2016-12-31 00:00:00\n", + "Buying FFIV on 2016-12-31 00:00:00\n", + "Buying FIS on 2016-12-31 00:00:00\n", + "Buying D on 2016-12-31 00:00:00\n", + "Buying WELL on 2016-12-31 00:00:00\n", + "Selling MPWR on 2016-12-31 00:00:00\n", + "Selling NOW on 2016-12-31 00:00:00\n", + "Selling PTC on 2016-12-31 00:00:00\n", + "Selling TDY on 2016-12-31 00:00:00\n", + "Selling DFS on 2016-12-31 00:00:00\n", + "Selling SYY on 2016-12-31 00:00:00\n", + "Selling BWA on 2016-12-31 00:00:00\n", + "Selling VRTX on 2016-12-31 00:00:00\n", + "Selling NUE on 2016-12-31 00:00:00\n", + "Selling FCX on 2016-12-31 00:00:00\n", + "Selling NRG on 2016-12-31 00:00:00\n", + "Selling INCY on 2016-12-31 00:00:00\n", + "Selling MTCH on 2016-12-31 00:00:00\n", + "Buying REG on 2017-01-31 00:00:00\n", + "Buying NEM on 2017-01-31 00:00:00\n", + "Buying WELL on 2017-01-31 00:00:00\n", + "Buying O on 2017-01-31 00:00:00\n", + "Buying SO on 2017-01-31 00:00:00\n", + "Buying VST on 2017-01-31 00:00:00\n", + "Buying AMT on 2017-01-31 00:00:00\n", + "Buying CVS on 2017-01-31 00:00:00\n", + "Buying BDX on 2017-01-31 00:00:00\n", + "Buying PPL on 2017-01-31 00:00:00\n", + "Buying CCI on 2017-01-31 00:00:00\n", + "Buying CMS on 2017-01-31 00:00:00\n", + "Buying T on 2017-01-31 00:00:00\n", + "Buying ALL on 2017-01-31 00:00:00\n", + "Selling HBAN on 2017-01-31 00:00:00\n", + "Selling PH on 2017-01-31 00:00:00\n", + "Selling BWA on 2017-01-31 00:00:00\n", + "Selling BX on 2017-01-31 00:00:00\n", + "Selling SYY on 2017-01-31 00:00:00\n", + "Selling CF on 2017-01-31 00:00:00\n", + "Selling C on 2017-01-31 00:00:00\n", + "Selling NOW on 2017-01-31 00:00:00\n", + "Selling ROK on 2017-01-31 00:00:00\n", + "Selling INCY on 2017-01-31 00:00:00\n", + "Selling MTCH on 2017-01-31 00:00:00\n", + "Selling NUE on 2017-01-31 00:00:00\n", + "Selling VRTX on 2017-01-31 00:00:00\n", + "Selling FCX on 2017-01-31 00:00:00\n", + "Buying BMY on 2017-02-28 00:00:00\n", + "Buying CSX on 2017-02-28 00:00:00\n", + "Buying AXON on 2017-02-28 00:00:00\n", + "Buying INCY on 2017-02-28 00:00:00\n", + "Buying SO on 2017-02-28 00:00:00\n", + "Buying NEM on 2017-02-28 00:00:00\n", + "Buying ABBV on 2017-02-28 00:00:00\n", + "Buying WELL on 2017-02-28 00:00:00\n", + "Buying T on 2017-02-28 00:00:00\n", + "Buying BDX on 2017-02-28 00:00:00\n", + "Buying ACGL on 2017-02-28 00:00:00\n", + "Buying CMS on 2017-02-28 00:00:00\n", + "Buying CVS on 2017-02-28 00:00:00\n", + "Buying ZBH on 2017-02-28 00:00:00\n", + "Selling HBAN on 2017-02-28 00:00:00\n", + "Selling CF on 2017-02-28 00:00:00\n", + "Selling SYF on 2017-02-28 00:00:00\n", + "Selling NCLH on 2017-02-28 00:00:00\n", + "Selling MKTX on 2017-02-28 00:00:00\n", + "Selling WFC on 2017-02-28 00:00:00\n", + "Selling C on 2017-02-28 00:00:00\n", + "Selling NRG on 2017-02-28 00:00:00\n", + "Selling APTV on 2017-02-28 00:00:00\n", + "Selling HWM on 2017-02-28 00:00:00\n", + "Selling GM on 2017-02-28 00:00:00\n", + "Selling BWA on 2017-02-28 00:00:00\n", + "Selling NOW on 2017-02-28 00:00:00\n", + "Selling BX on 2017-02-28 00:00:00\n", + "Buying SO on 2017-03-31 00:00:00\n", + "Buying DUK on 2017-03-31 00:00:00\n", + "Buying NEM on 2017-03-31 00:00:00\n", + "Buying CMS on 2017-03-31 00:00:00\n", + "Buying WELL on 2017-03-31 00:00:00\n", + "Buying AEP on 2017-03-31 00:00:00\n", + "Buying MNST on 2017-03-31 00:00:00\n", + "Buying D on 2017-03-31 00:00:00\n", + "Buying PPL on 2017-03-31 00:00:00\n", + "Buying CVS on 2017-03-31 00:00:00\n", + "Buying REG on 2017-03-31 00:00:00\n", + "Buying O on 2017-03-31 00:00:00\n", + "Buying PNW on 2017-03-31 00:00:00\n", + "Buying SRE on 2017-03-31 00:00:00\n", + "Selling KEYS on 2017-03-31 00:00:00\n", + "Selling SYF on 2017-03-31 00:00:00\n", + "Selling TDY on 2017-03-31 00:00:00\n", + "Selling NOW on 2017-03-31 00:00:00\n", + "Selling CAT on 2017-03-31 00:00:00\n", + "Selling GS on 2017-03-31 00:00:00\n", + "Selling MKTX on 2017-03-31 00:00:00\n", + "Selling ROK on 2017-03-31 00:00:00\n", + "Selling WFC on 2017-03-31 00:00:00\n", + "Selling RJF on 2017-03-31 00:00:00\n", + "Selling HWM on 2017-03-31 00:00:00\n", + "Selling NUE on 2017-03-31 00:00:00\n", + "Selling STLD on 2017-03-31 00:00:00\n", + "Selling HBAN on 2017-03-31 00:00:00\n", + "Buying SO on 2017-04-30 00:00:00\n", + "Buying DUK on 2017-04-30 00:00:00\n", + "Buying REG on 2017-04-30 00:00:00\n", + "Buying AEP on 2017-04-30 00:00:00\n", + "Buying CMS on 2017-04-30 00:00:00\n", + "Buying D on 2017-04-30 00:00:00\n", + "Buying WELL on 2017-04-30 00:00:00\n", + "Buying MNST on 2017-04-30 00:00:00\n", + "Buying PPL on 2017-04-30 00:00:00\n", + "Buying O on 2017-04-30 00:00:00\n", + "Buying PNW on 2017-04-30 00:00:00\n", + "Buying SRE on 2017-04-30 00:00:00\n", + "Buying NEM on 2017-04-30 00:00:00\n", + "Buying NI on 2017-04-30 00:00:00\n", + "Selling KEYS on 2017-04-30 00:00:00\n", + "Selling C on 2017-04-30 00:00:00\n", + "Selling GS on 2017-04-30 00:00:00\n", + "Selling RJF on 2017-04-30 00:00:00\n", + "Selling LOW on 2017-04-30 00:00:00\n", + "Selling FCX on 2017-04-30 00:00:00\n", + "Selling WFC on 2017-04-30 00:00:00\n", + "Selling TDY on 2017-04-30 00:00:00\n", + "Selling CAT on 2017-04-30 00:00:00\n", + "Selling HWM on 2017-04-30 00:00:00\n", + "Selling SYF on 2017-04-30 00:00:00\n", + "Selling NUE on 2017-04-30 00:00:00\n", + "Selling HBAN on 2017-04-30 00:00:00\n", + "Selling STLD on 2017-04-30 00:00:00\n", + "Buying EXR on 2017-05-31 00:00:00\n", + "Buying NEM on 2017-05-31 00:00:00\n", + "Buying BF-B on 2017-05-31 00:00:00\n", + "Buying SO on 2017-05-31 00:00:00\n", + "Buying O on 2017-05-31 00:00:00\n", + "Buying AMT on 2017-05-31 00:00:00\n", + "Buying REG on 2017-05-31 00:00:00\n", + "Buying DUK on 2017-05-31 00:00:00\n", + "Buying WELL on 2017-05-31 00:00:00\n", + "Buying PPL on 2017-05-31 00:00:00\n", + "Buying CCI on 2017-05-31 00:00:00\n", + "Buying AEP on 2017-05-31 00:00:00\n", + "Buying BDX on 2017-05-31 00:00:00\n", + "Buying CMS on 2017-05-31 00:00:00\n", + "Selling CF on 2017-05-31 00:00:00\n", + "Selling NFLX on 2017-05-31 00:00:00\n", + "Selling SYF on 2017-05-31 00:00:00\n", + "Selling KMX on 2017-05-31 00:00:00\n", + "Selling MPWR on 2017-05-31 00:00:00\n", + "Selling CAT on 2017-05-31 00:00:00\n", + "Selling BWA on 2017-05-31 00:00:00\n", + "Selling TDY on 2017-05-31 00:00:00\n", + "Selling GS on 2017-05-31 00:00:00\n", + "Selling NUE on 2017-05-31 00:00:00\n", + "Selling RJF on 2017-05-31 00:00:00\n", + "Selling FCX on 2017-05-31 00:00:00\n", + "Selling HBAN on 2017-05-31 00:00:00\n", + "Selling STLD on 2017-05-31 00:00:00\n", + "Buying EXR on 2017-06-30 00:00:00\n", + "Buying REG on 2017-06-30 00:00:00\n", + "Buying NEM on 2017-06-30 00:00:00\n", + "Buying CCI on 2017-06-30 00:00:00\n", + "Buying AMT on 2017-06-30 00:00:00\n", + "Buying BF-B on 2017-06-30 00:00:00\n", + "Buying DUK on 2017-06-30 00:00:00\n", + "Buying AEP on 2017-06-30 00:00:00\n", + "Buying CMS on 2017-06-30 00:00:00\n", + "Buying BDX on 2017-06-30 00:00:00\n", + "Buying WELL on 2017-06-30 00:00:00\n", + "Buying O on 2017-06-30 00:00:00\n", + "Buying PPL on 2017-06-30 00:00:00\n", + "Buying SO on 2017-06-30 00:00:00\n", + "Selling BWA on 2017-06-30 00:00:00\n", + "Selling JBL on 2017-06-30 00:00:00\n", + "Selling STLD on 2017-06-30 00:00:00\n", + "Selling GS on 2017-06-30 00:00:00\n", + "Selling CE on 2017-06-30 00:00:00\n", + "Selling RJF on 2017-06-30 00:00:00\n", + "Selling CF on 2017-06-30 00:00:00\n", + "Selling NCLH on 2017-06-30 00:00:00\n", + "Selling TDY on 2017-06-30 00:00:00\n", + "Selling NFLX on 2017-06-30 00:00:00\n", + "Selling PTC on 2017-06-30 00:00:00\n", + "Selling SWKS on 2017-06-30 00:00:00\n", + "Selling MPWR on 2017-06-30 00:00:00\n", + "Selling HWM on 2017-06-30 00:00:00\n", + "Buying BF-B on 2017-07-31 00:00:00\n", + "Buying EXR on 2017-07-31 00:00:00\n", + "Buying AMT on 2017-07-31 00:00:00\n", + "Buying AEP on 2017-07-31 00:00:00\n", + "Buying SO on 2017-07-31 00:00:00\n", + "Buying DUK on 2017-07-31 00:00:00\n", + "Buying PPL on 2017-07-31 00:00:00\n", + "Buying D on 2017-07-31 00:00:00\n", + "Buying DRI on 2017-07-31 00:00:00\n", + "Buying CMS on 2017-07-31 00:00:00\n", + "Buying NEM on 2017-07-31 00:00:00\n", + "Buying SRE on 2017-07-31 00:00:00\n", + "Buying ALL on 2017-07-31 00:00:00\n", + "Buying CCI on 2017-07-31 00:00:00\n", + "Selling MTCH on 2017-07-31 00:00:00\n", + "Selling JBL on 2017-07-31 00:00:00\n", + "Selling BWA on 2017-07-31 00:00:00\n", + "Selling TDY on 2017-07-31 00:00:00\n", + "Selling GEN on 2017-07-31 00:00:00\n", + "Selling NFLX on 2017-07-31 00:00:00\n", + "Selling CF on 2017-07-31 00:00:00\n", + "Selling NCLH on 2017-07-31 00:00:00\n", + "Selling SWKS on 2017-07-31 00:00:00\n", + "Selling HWM on 2017-07-31 00:00:00\n", + "Selling VRTX on 2017-07-31 00:00:00\n", + "Selling PTC on 2017-07-31 00:00:00\n", + "Selling MPWR on 2017-07-31 00:00:00\n", + "Selling NRG on 2017-07-31 00:00:00\n", + "Buying AEP on 2017-08-31 00:00:00\n", + "Buying D on 2017-08-31 00:00:00\n", + "Buying DRI on 2017-08-31 00:00:00\n", + "Buying CMS on 2017-08-31 00:00:00\n", + "Buying DUK on 2017-08-31 00:00:00\n", + "Buying PNW on 2017-08-31 00:00:00\n", + "Buying PPL on 2017-08-31 00:00:00\n", + "Buying SRE on 2017-08-31 00:00:00\n", + "Buying SO on 2017-08-31 00:00:00\n", + "Buying ORLY on 2017-08-31 00:00:00\n", + "Buying LYV on 2017-08-31 00:00:00\n", + "Buying CCI on 2017-08-31 00:00:00\n", + "Buying NI on 2017-08-31 00:00:00\n", + "Buying INVH on 2017-08-31 00:00:00\n", + "Selling MAR on 2017-08-31 00:00:00\n", + "Selling FCX on 2017-08-31 00:00:00\n", + "Selling NOW on 2017-08-31 00:00:00\n", + "Selling CF on 2017-08-31 00:00:00\n", + "Selling PTC on 2017-08-31 00:00:00\n", + "Selling MPWR on 2017-08-31 00:00:00\n", + "Selling NFLX on 2017-08-31 00:00:00\n", + "Selling JBL on 2017-08-31 00:00:00\n", + "Selling MTCH on 2017-08-31 00:00:00\n", + "Selling SWKS on 2017-08-31 00:00:00\n", + "Selling INCY on 2017-08-31 00:00:00\n", + "Selling VRTX on 2017-08-31 00:00:00\n", + "Selling HWM on 2017-08-31 00:00:00\n", + "Selling NRG on 2017-08-31 00:00:00\n", + "Buying NEM on 2017-09-30 00:00:00\n", + "Buying AEP on 2017-09-30 00:00:00\n", + "Buying PPL on 2017-09-30 00:00:00\n", + "Buying EXR on 2017-09-30 00:00:00\n", + "Buying D on 2017-09-30 00:00:00\n", + "Buying DUK on 2017-09-30 00:00:00\n", + "Buying PNW on 2017-09-30 00:00:00\n", + "Buying SO on 2017-09-30 00:00:00\n", + "Buying CMS on 2017-09-30 00:00:00\n", + "Buying GIS on 2017-09-30 00:00:00\n", + "Buying SRE on 2017-09-30 00:00:00\n", + "Buying PARA on 2017-09-30 00:00:00\n", + "Buying LYV on 2017-09-30 00:00:00\n", + "Buying CLX on 2017-09-30 00:00:00\n", + "Selling SYF on 2017-09-30 00:00:00\n", + "Selling RJF on 2017-09-30 00:00:00\n", + "Selling TEL on 2017-09-30 00:00:00\n", + "Selling MPWR on 2017-09-30 00:00:00\n", + "Selling FCX on 2017-09-30 00:00:00\n", + "Selling KEYS on 2017-09-30 00:00:00\n", + "Selling HWM on 2017-09-30 00:00:00\n", + "Selling JBL on 2017-09-30 00:00:00\n", + "Selling MTCH on 2017-09-30 00:00:00\n", + "Selling INCY on 2017-09-30 00:00:00\n", + "Selling NFLX on 2017-09-30 00:00:00\n", + "Selling SWKS on 2017-09-30 00:00:00\n", + "Selling VRTX on 2017-09-30 00:00:00\n", + "Selling NRG on 2017-09-30 00:00:00\n", + "Buying NEM on 2017-10-31 00:00:00\n", + "Buying EXR on 2017-10-31 00:00:00\n", + "Buying AEP on 2017-10-31 00:00:00\n", + "Buying PPL on 2017-10-31 00:00:00\n", + "Buying D on 2017-10-31 00:00:00\n", + "Buying SRE on 2017-10-31 00:00:00\n", + "Buying DUK on 2017-10-31 00:00:00\n", + "Buying SO on 2017-10-31 00:00:00\n", + "Buying CMS on 2017-10-31 00:00:00\n", + "Buying PNW on 2017-10-31 00:00:00\n", + "Buying NI on 2017-10-31 00:00:00\n", + "Buying CCI on 2017-10-31 00:00:00\n", + "Buying PARA on 2017-10-31 00:00:00\n", + "Buying CLX on 2017-10-31 00:00:00\n", + "Selling NCLH on 2017-10-31 00:00:00\n", + "Selling FCX on 2017-10-31 00:00:00\n", + "Selling MPWR on 2017-10-31 00:00:00\n", + "Selling HBAN on 2017-10-31 00:00:00\n", + "Selling GS on 2017-10-31 00:00:00\n", + "Selling INCY on 2017-10-31 00:00:00\n", + "Selling JBL on 2017-10-31 00:00:00\n", + "Selling VRTX on 2017-10-31 00:00:00\n", + "Selling SWKS on 2017-10-31 00:00:00\n", + "Selling SYF on 2017-10-31 00:00:00\n", + "Selling NFLX on 2017-10-31 00:00:00\n", + "Selling HWM on 2017-10-31 00:00:00\n", + "Selling AMZN on 2017-10-31 00:00:00\n", + "Selling MTCH on 2017-10-31 00:00:00\n", + "Buying EXR on 2017-11-30 00:00:00\n", + "Buying NEM on 2017-11-30 00:00:00\n", + "Buying PPL on 2017-11-30 00:00:00\n", + "Buying AON on 2017-11-30 00:00:00\n", + "Buying SRE on 2017-11-30 00:00:00\n", + "Buying PARA on 2017-11-30 00:00:00\n", + "Buying WTW on 2017-11-30 00:00:00\n", + "Buying O on 2017-11-30 00:00:00\n", + "Buying DUK on 2017-11-30 00:00:00\n", + "Buying D on 2017-11-30 00:00:00\n", + "Buying TSCO on 2017-11-30 00:00:00\n", + "Buying SO on 2017-11-30 00:00:00\n", + "Buying REG on 2017-11-30 00:00:00\n", + "Buying LYB on 2017-11-30 00:00:00\n", + "Selling SWKS on 2017-11-30 00:00:00\n", + "Selling ROK on 2017-11-30 00:00:00\n", + "Selling GEN on 2017-11-30 00:00:00\n", + "Selling GS on 2017-11-30 00:00:00\n", + "Selling HWM on 2017-11-30 00:00:00\n", + "Selling CDW on 2017-11-30 00:00:00\n", + "Selling CRL on 2017-11-30 00:00:00\n", + "Selling EW on 2017-11-30 00:00:00\n", + "Selling J on 2017-11-30 00:00:00\n", + "Selling SYF on 2017-11-30 00:00:00\n", + "Selling MTCH on 2017-11-30 00:00:00\n", + "Selling MPWR on 2017-11-30 00:00:00\n", + "Selling AMZN on 2017-11-30 00:00:00\n", + "Selling NFLX on 2017-11-30 00:00:00\n", + "Buying AON on 2017-12-31 00:00:00\n", + "Buying PARA on 2017-12-31 00:00:00\n", + "Buying AMT on 2017-12-31 00:00:00\n", + "Buying NEM on 2017-12-31 00:00:00\n", + "Buying DUK on 2017-12-31 00:00:00\n", + "Buying SO on 2017-12-31 00:00:00\n", + "Buying CCI on 2017-12-31 00:00:00\n", + "Buying ACGL on 2017-12-31 00:00:00\n", + "Buying SRE on 2017-12-31 00:00:00\n", + "Buying CLX on 2017-12-31 00:00:00\n", + "Buying D on 2017-12-31 00:00:00\n", + "Buying L on 2017-12-31 00:00:00\n", + "Buying WTW on 2017-12-31 00:00:00\n", + "Buying BKNG on 2017-12-31 00:00:00\n", + "Selling HII on 2017-12-31 00:00:00\n", + "Selling FCX on 2017-12-31 00:00:00\n", + "Selling GS on 2017-12-31 00:00:00\n", + "Selling APO on 2017-12-31 00:00:00\n", + "Selling SYF on 2017-12-31 00:00:00\n", + "Selling HWM on 2017-12-31 00:00:00\n", + "Selling MSFT on 2017-12-31 00:00:00\n", + "Selling NFLX on 2017-12-31 00:00:00\n", + "Selling CRL on 2017-12-31 00:00:00\n", + "Selling CDW on 2017-12-31 00:00:00\n", + "Selling EW on 2017-12-31 00:00:00\n", + "Selling AMZN on 2017-12-31 00:00:00\n", + "Selling J on 2017-12-31 00:00:00\n", + "Selling MPWR on 2017-12-31 00:00:00\n", + "Buying SO on 2018-01-31 00:00:00\n", + "Buying CLX on 2018-01-31 00:00:00\n", + "Buying D on 2018-01-31 00:00:00\n", + "Buying EQIX on 2018-01-31 00:00:00\n", + "Buying AEP on 2018-01-31 00:00:00\n", + "Buying MKTX on 2018-01-31 00:00:00\n", + "Buying PARA on 2018-01-31 00:00:00\n", + "Buying HAS on 2018-01-31 00:00:00\n", + "Buying DUK on 2018-01-31 00:00:00\n", + "Buying CMS on 2018-01-31 00:00:00\n", + "Buying SRE on 2018-01-31 00:00:00\n", + "Buying AMT on 2018-01-31 00:00:00\n", + "Buying LHX on 2018-01-31 00:00:00\n", + "Buying REG on 2018-01-31 00:00:00\n", + "Selling A on 2018-01-31 00:00:00\n", + "Selling NUE on 2018-01-31 00:00:00\n", + "Selling J on 2018-01-31 00:00:00\n", + "Selling CF on 2018-01-31 00:00:00\n", + "Selling HII on 2018-01-31 00:00:00\n", + "Selling BWA on 2018-01-31 00:00:00\n", + "Selling HWM on 2018-01-31 00:00:00\n", + "Selling CDW on 2018-01-31 00:00:00\n", + "Selling SWKS on 2018-01-31 00:00:00\n", + "Selling CVS on 2018-01-31 00:00:00\n", + "Selling ADBE on 2018-01-31 00:00:00\n", + "Selling PHM on 2018-01-31 00:00:00\n", + "Selling MPWR on 2018-01-31 00:00:00\n", + "Selling ABBV on 2018-01-31 00:00:00\n", + "Buying MKTX on 2018-02-28 00:00:00\n", + "Buying SO on 2018-02-28 00:00:00\n", + "Buying DUK on 2018-02-28 00:00:00\n", + "Buying AEP on 2018-02-28 00:00:00\n", + "Buying D on 2018-02-28 00:00:00\n", + "Buying CHD on 2018-02-28 00:00:00\n", + "Buying SRE on 2018-02-28 00:00:00\n", + "Buying CBOE on 2018-02-28 00:00:00\n", + "Buying AXON on 2018-02-28 00:00:00\n", + "Buying CMS on 2018-02-28 00:00:00\n", + "Buying NI on 2018-02-28 00:00:00\n", + "Buying EQIX on 2018-02-28 00:00:00\n", + "Buying CDW on 2018-02-28 00:00:00\n", + "Buying ULTA on 2018-02-28 00:00:00\n", + "Selling BLK on 2018-02-28 00:00:00\n", + "Selling MTCH on 2018-02-28 00:00:00\n", + "Selling RJF on 2018-02-28 00:00:00\n", + "Selling CAT on 2018-02-28 00:00:00\n", + "Selling CSX on 2018-02-28 00:00:00\n", + "Selling SYF on 2018-02-28 00:00:00\n", + "Selling SWKS on 2018-02-28 00:00:00\n", + "Selling MSFT on 2018-02-28 00:00:00\n", + "Selling NFLX on 2018-02-28 00:00:00\n", + "Selling VRTX on 2018-02-28 00:00:00\n", + "Selling ABBV on 2018-02-28 00:00:00\n", + "Selling FCX on 2018-02-28 00:00:00\n", + "Selling SPGI on 2018-02-28 00:00:00\n", + "Selling MPWR on 2018-02-28 00:00:00\n", + "Buying SO on 2018-03-31 00:00:00\n", + "Buying AEP on 2018-03-31 00:00:00\n", + "Buying DUK on 2018-03-31 00:00:00\n", + "Buying AXON on 2018-03-31 00:00:00\n", + "Buying D on 2018-03-31 00:00:00\n", + "Buying MKTX on 2018-03-31 00:00:00\n", + "Buying SRE on 2018-03-31 00:00:00\n", + "Buying CHD on 2018-03-31 00:00:00\n", + "Buying CMS on 2018-03-31 00:00:00\n", + "Buying NI on 2018-03-31 00:00:00\n", + "Buying PNW on 2018-03-31 00:00:00\n", + "Buying VICI on 2018-03-31 00:00:00\n", + "Buying WELL on 2018-03-31 00:00:00\n", + "Buying REG on 2018-03-31 00:00:00\n", + "Selling CSX on 2018-03-31 00:00:00\n", + "Selling LOW on 2018-03-31 00:00:00\n", + "Selling SPGI on 2018-03-31 00:00:00\n", + "Selling ADBE on 2018-03-31 00:00:00\n", + "Selling SWKS on 2018-03-31 00:00:00\n", + "Selling FCX on 2018-03-31 00:00:00\n", + "Selling RJF on 2018-03-31 00:00:00\n", + "Selling VRTX on 2018-03-31 00:00:00\n", + "Selling CAT on 2018-03-31 00:00:00\n", + "Selling BLK on 2018-03-31 00:00:00\n", + "Selling ABBV on 2018-03-31 00:00:00\n", + "Selling MSFT on 2018-03-31 00:00:00\n", + "Selling NFLX on 2018-03-31 00:00:00\n", + "Selling MPWR on 2018-03-31 00:00:00\n", + "Buying SO on 2018-04-30 00:00:00\n", + "Buying AEP on 2018-04-30 00:00:00\n", + "Buying DUK on 2018-04-30 00:00:00\n", + "Buying VICI on 2018-04-30 00:00:00\n", + "Buying SRE on 2018-04-30 00:00:00\n", + "Buying D on 2018-04-30 00:00:00\n", + "Buying MKTX on 2018-04-30 00:00:00\n", + "Buying WELL on 2018-04-30 00:00:00\n", + "Buying CMS on 2018-04-30 00:00:00\n", + "Buying AXON on 2018-04-30 00:00:00\n", + "Buying NI on 2018-04-30 00:00:00\n", + "Buying PNW on 2018-04-30 00:00:00\n", + "Buying PPL on 2018-04-30 00:00:00\n", + "Buying CCI on 2018-04-30 00:00:00\n", + "Selling J on 2018-04-30 00:00:00\n", + "Selling HWM on 2018-04-30 00:00:00\n", + "Selling MTCH on 2018-04-30 00:00:00\n", + "Selling ADBE on 2018-04-30 00:00:00\n", + "Selling RJF on 2018-04-30 00:00:00\n", + "Selling BLK on 2018-04-30 00:00:00\n", + "Selling SWKS on 2018-04-30 00:00:00\n", + "Selling VRTX on 2018-04-30 00:00:00\n", + "Selling CAT on 2018-04-30 00:00:00\n", + "Selling MSFT on 2018-04-30 00:00:00\n", + "Selling FCX on 2018-04-30 00:00:00\n", + "Selling MPWR on 2018-04-30 00:00:00\n", + "Selling INCY on 2018-04-30 00:00:00\n", + "Selling NFLX on 2018-04-30 00:00:00\n", + "Buying WELL on 2018-05-31 00:00:00\n", + "Buying CCI on 2018-05-31 00:00:00\n", + "Buying AEP on 2018-05-31 00:00:00\n", + "Buying PNW on 2018-05-31 00:00:00\n", + "Buying SRE on 2018-05-31 00:00:00\n", + "Buying NI on 2018-05-31 00:00:00\n", + "Buying CMS on 2018-05-31 00:00:00\n", + "Buying DUK on 2018-05-31 00:00:00\n", + "Buying PPL on 2018-05-31 00:00:00\n", + "Buying D on 2018-05-31 00:00:00\n", + "Buying SO on 2018-05-31 00:00:00\n", + "Buying AMT on 2018-05-31 00:00:00\n", + "Buying HAS on 2018-05-31 00:00:00\n", + "Buying ACGL on 2018-05-31 00:00:00\n", + "Selling IDXX on 2018-05-31 00:00:00\n", + "Selling ABBV on 2018-05-31 00:00:00\n", + "Selling AMZN on 2018-05-31 00:00:00\n", + "Selling STLD on 2018-05-31 00:00:00\n", + "Selling BLK on 2018-05-31 00:00:00\n", + "Selling ADBE on 2018-05-31 00:00:00\n", + "Selling CAT on 2018-05-31 00:00:00\n", + "Selling RJF on 2018-05-31 00:00:00\n", + "Selling HWM on 2018-05-31 00:00:00\n", + "Selling MSFT on 2018-05-31 00:00:00\n", + "Selling MPWR on 2018-05-31 00:00:00\n", + "Selling FCX on 2018-05-31 00:00:00\n", + "Selling NFLX on 2018-05-31 00:00:00\n", + "Selling INCY on 2018-05-31 00:00:00\n", + "Buying CMS on 2018-06-30 00:00:00\n", + "Buying AEP on 2018-06-30 00:00:00\n", + "Buying NI on 2018-06-30 00:00:00\n", + "Buying PNW on 2018-06-30 00:00:00\n", + "Buying DUK on 2018-06-30 00:00:00\n", + "Buying SO on 2018-06-30 00:00:00\n", + "Buying PPL on 2018-06-30 00:00:00\n", + "Buying SRE on 2018-06-30 00:00:00\n", + "Buying D on 2018-06-30 00:00:00\n", + "Buying CCI on 2018-06-30 00:00:00\n", + "Buying WELL on 2018-06-30 00:00:00\n", + "Buying DRI on 2018-06-30 00:00:00\n", + "Buying GEN on 2018-06-30 00:00:00\n", + "Buying AMT on 2018-06-30 00:00:00\n", + "Selling ABBV on 2018-06-30 00:00:00\n", + "Selling MPWR on 2018-06-30 00:00:00\n", + "Selling RJF on 2018-06-30 00:00:00\n", + "Selling NUE on 2018-06-30 00:00:00\n", + "Selling LYB on 2018-06-30 00:00:00\n", + "Selling A on 2018-06-30 00:00:00\n", + "Selling NFLX on 2018-06-30 00:00:00\n", + "Selling STLD on 2018-06-30 00:00:00\n", + "Selling IDXX on 2018-06-30 00:00:00\n", + "Selling HWM on 2018-06-30 00:00:00\n", + "Selling CAT on 2018-06-30 00:00:00\n", + "Selling AXON on 2018-06-30 00:00:00\n", + "Selling FCX on 2018-06-30 00:00:00\n", + "Selling INCY on 2018-06-30 00:00:00\n", + "Buying AEP on 2018-07-31 00:00:00\n", + "Buying NI on 2018-07-31 00:00:00\n", + "Buying PNW on 2018-07-31 00:00:00\n", + "Buying DUK on 2018-07-31 00:00:00\n", + "Buying CMS on 2018-07-31 00:00:00\n", + "Buying D on 2018-07-31 00:00:00\n", + "Buying SO on 2018-07-31 00:00:00\n", + "Buying PPL on 2018-07-31 00:00:00\n", + "Buying SRE on 2018-07-31 00:00:00\n", + "Buying DRI on 2018-07-31 00:00:00\n", + "Buying CHD on 2018-07-31 00:00:00\n", + "Buying CLX on 2018-07-31 00:00:00\n", + "Buying CCI on 2018-07-31 00:00:00\n", + "Buying GIS on 2018-07-31 00:00:00\n", + "Selling NUE on 2018-07-31 00:00:00\n", + "Selling NFLX on 2018-07-31 00:00:00\n", + "Selling EPAM on 2018-07-31 00:00:00\n", + "Selling MTD on 2018-07-31 00:00:00\n", + "Selling STLD on 2018-07-31 00:00:00\n", + "Selling RJF on 2018-07-31 00:00:00\n", + "Selling PTC on 2018-07-31 00:00:00\n", + "Selling LYB on 2018-07-31 00:00:00\n", + "Selling FCX on 2018-07-31 00:00:00\n", + "Selling ABBV on 2018-07-31 00:00:00\n", + "Selling A on 2018-07-31 00:00:00\n", + "Selling CAT on 2018-07-31 00:00:00\n", + "Selling MTCH on 2018-07-31 00:00:00\n", + "Selling AXON on 2018-07-31 00:00:00\n", + "Buying AEP on 2018-08-31 00:00:00\n", + "Buying PNW on 2018-08-31 00:00:00\n", + "Buying DUK on 2018-08-31 00:00:00\n", + "Buying CMS on 2018-08-31 00:00:00\n", + "Buying NI on 2018-08-31 00:00:00\n", + "Buying PPL on 2018-08-31 00:00:00\n", + "Buying CLX on 2018-08-31 00:00:00\n", + "Buying DRI on 2018-08-31 00:00:00\n", + "Buying SO on 2018-08-31 00:00:00\n", + "Buying CHD on 2018-08-31 00:00:00\n", + "Buying D on 2018-08-31 00:00:00\n", + "Buying GIS on 2018-08-31 00:00:00\n", + "Buying SJM on 2018-08-31 00:00:00\n", + "Buying INVH on 2018-08-31 00:00:00\n", + "Selling LYB on 2018-08-31 00:00:00\n", + "Selling MTCH on 2018-08-31 00:00:00\n", + "Selling NOW on 2018-08-31 00:00:00\n", + "Selling MPWR on 2018-08-31 00:00:00\n", + "Selling IDXX on 2018-08-31 00:00:00\n", + "Selling NUE on 2018-08-31 00:00:00\n", + "Selling LVS on 2018-08-31 00:00:00\n", + "Selling PTC on 2018-08-31 00:00:00\n", + "Selling NFLX on 2018-08-31 00:00:00\n", + "Selling STLD on 2018-08-31 00:00:00\n", + "Selling FCX on 2018-08-31 00:00:00\n", + "Selling APTV on 2018-08-31 00:00:00\n", + "Selling CAT on 2018-08-31 00:00:00\n", + "Selling AXON on 2018-08-31 00:00:00\n", + "Buying CLX on 2018-09-30 00:00:00\n", + "Buying GIS on 2018-09-30 00:00:00\n", + "Buying AEP on 2018-09-30 00:00:00\n", + "Buying PNW on 2018-09-30 00:00:00\n", + "Buying NI on 2018-09-30 00:00:00\n", + "Buying DUK on 2018-09-30 00:00:00\n", + "Buying CMS on 2018-09-30 00:00:00\n", + "Buying PPL on 2018-09-30 00:00:00\n", + "Buying CHD on 2018-09-30 00:00:00\n", + "Buying SO on 2018-09-30 00:00:00\n", + "Buying SJM on 2018-09-30 00:00:00\n", + "Buying D on 2018-09-30 00:00:00\n", + "Buying ERIE on 2018-09-30 00:00:00\n", + "Buying T on 2018-09-30 00:00:00\n", + "Selling JBL on 2018-09-30 00:00:00\n", + "Selling BWA on 2018-09-30 00:00:00\n", + "Selling ADBE on 2018-09-30 00:00:00\n", + "Selling GILD on 2018-09-30 00:00:00\n", + "Selling NWSA on 2018-09-30 00:00:00\n", + "Selling IDXX on 2018-09-30 00:00:00\n", + "Selling RJF on 2018-09-30 00:00:00\n", + "Selling LVS on 2018-09-30 00:00:00\n", + "Selling NFLX on 2018-09-30 00:00:00\n", + "Selling AXON on 2018-09-30 00:00:00\n", + "Selling PTC on 2018-09-30 00:00:00\n", + "Selling CAT on 2018-09-30 00:00:00\n", + "Selling FCX on 2018-09-30 00:00:00\n", + "Selling APTV on 2018-09-30 00:00:00\n", + "Buying NEM on 2018-10-31 00:00:00\n", + "Buying SO on 2018-10-31 00:00:00\n", + "Buying NI on 2018-10-31 00:00:00\n", + "Buying MKTX on 2018-10-31 00:00:00\n", + "Buying AEP on 2018-10-31 00:00:00\n", + "Buying DUK on 2018-10-31 00:00:00\n", + "Buying SJM on 2018-10-31 00:00:00\n", + "Buying D on 2018-10-31 00:00:00\n", + "Buying PNW on 2018-10-31 00:00:00\n", + "Buying PPL on 2018-10-31 00:00:00\n", + "Buying CMS on 2018-10-31 00:00:00\n", + "Buying GIS on 2018-10-31 00:00:00\n", + "Buying SRE on 2018-10-31 00:00:00\n", + "Buying EXR on 2018-10-31 00:00:00\n", + "Selling BX on 2018-10-31 00:00:00\n", + "Selling EPAM on 2018-10-31 00:00:00\n", + "Selling INCY on 2018-10-31 00:00:00\n", + "Selling CAT on 2018-10-31 00:00:00\n", + "Selling MSFT on 2018-10-31 00:00:00\n", + "Selling MPWR on 2018-10-31 00:00:00\n", + "Selling PTC on 2018-10-31 00:00:00\n", + "Selling NOW on 2018-10-31 00:00:00\n", + "Selling MTCH on 2018-10-31 00:00:00\n", + "Selling CRM on 2018-10-31 00:00:00\n", + "Selling ADBE on 2018-10-31 00:00:00\n", + "Selling AXON on 2018-10-31 00:00:00\n", + "Selling AMZN on 2018-10-31 00:00:00\n", + "Selling NFLX on 2018-10-31 00:00:00\n", + "Buying NEM on 2018-11-30 00:00:00\n", + "Buying SJM on 2018-11-30 00:00:00\n", + "Buying MKTX on 2018-11-30 00:00:00\n", + "Buying PPL on 2018-11-30 00:00:00\n", + "Buying NI on 2018-11-30 00:00:00\n", + "Buying AEP on 2018-11-30 00:00:00\n", + "Buying D on 2018-11-30 00:00:00\n", + "Buying DUK on 2018-11-30 00:00:00\n", + "Buying GIS on 2018-11-30 00:00:00\n", + "Buying SO on 2018-11-30 00:00:00\n", + "Buying CMS on 2018-11-30 00:00:00\n", + "Buying PNW on 2018-11-30 00:00:00\n", + "Buying EXR on 2018-11-30 00:00:00\n", + "Buying CBOE on 2018-11-30 00:00:00\n", + "Selling EW on 2018-11-30 00:00:00\n", + "Selling LVS on 2018-11-30 00:00:00\n", + "Selling EPAM on 2018-11-30 00:00:00\n", + "Selling CF on 2018-11-30 00:00:00\n", + "Selling MSFT on 2018-11-30 00:00:00\n", + "Selling CRL on 2018-11-30 00:00:00\n", + "Selling MPWR on 2018-11-30 00:00:00\n", + "Selling CAT on 2018-11-30 00:00:00\n", + "Selling PTC on 2018-11-30 00:00:00\n", + "Selling ADBE on 2018-11-30 00:00:00\n", + "Selling NOW on 2018-11-30 00:00:00\n", + "Selling CRM on 2018-11-30 00:00:00\n", + "Selling AMZN on 2018-11-30 00:00:00\n", + "Selling NFLX on 2018-11-30 00:00:00\n", + "Buying NEM on 2018-12-31 00:00:00\n", + "Buying D on 2018-12-31 00:00:00\n", + "Buying PPL on 2018-12-31 00:00:00\n", + "Buying NI on 2018-12-31 00:00:00\n", + "Buying AEP on 2018-12-31 00:00:00\n", + "Buying SJM on 2018-12-31 00:00:00\n", + "Buying DUK on 2018-12-31 00:00:00\n", + "Buying MKTX on 2018-12-31 00:00:00\n", + "Buying SO on 2018-12-31 00:00:00\n", + "Buying CMS on 2018-12-31 00:00:00\n", + "Buying PNW on 2018-12-31 00:00:00\n", + "Buying GIS on 2018-12-31 00:00:00\n", + "Buying SRE on 2018-12-31 00:00:00\n", + "Buying EXR on 2018-12-31 00:00:00\n", + "Selling VRTX on 2018-12-31 00:00:00\n", + "Selling EW on 2018-12-31 00:00:00\n", + "Selling CRL on 2018-12-31 00:00:00\n", + "Selling LVS on 2018-12-31 00:00:00\n", + "Selling EPAM on 2018-12-31 00:00:00\n", + "Selling CAT on 2018-12-31 00:00:00\n", + "Selling MSFT on 2018-12-31 00:00:00\n", + "Selling PTC on 2018-12-31 00:00:00\n", + "Selling MPWR on 2018-12-31 00:00:00\n", + "Selling NOW on 2018-12-31 00:00:00\n", + "Selling CRM on 2018-12-31 00:00:00\n", + "Selling ADBE on 2018-12-31 00:00:00\n", + "Selling NFLX on 2018-12-31 00:00:00\n", + "Selling AMZN on 2018-12-31 00:00:00\n", + "Buying NEM on 2019-01-31 00:00:00\n", + "Buying SJM on 2019-01-31 00:00:00\n", + "Buying DUK on 2019-01-31 00:00:00\n", + "Buying D on 2019-01-31 00:00:00\n", + "Buying AEP on 2019-01-31 00:00:00\n", + "Buying PPL on 2019-01-31 00:00:00\n", + "Buying PNW on 2019-01-31 00:00:00\n", + "Buying CMS on 2019-01-31 00:00:00\n", + "Buying CBOE on 2019-01-31 00:00:00\n", + "Buying NI on 2019-01-31 00:00:00\n", + "Buying GIS on 2019-01-31 00:00:00\n", + "Buying EXR on 2019-01-31 00:00:00\n", + "Buying SO on 2019-01-31 00:00:00\n", + "Buying AMT on 2019-01-31 00:00:00\n", + "Selling PTC on 2019-01-31 00:00:00\n", + "Selling CRL on 2019-01-31 00:00:00\n", + "Selling EW on 2019-01-31 00:00:00\n", + "Selling SWKS on 2019-01-31 00:00:00\n", + "Selling MSFT on 2019-01-31 00:00:00\n", + "Selling LVS on 2019-01-31 00:00:00\n", + "Selling MPWR on 2019-01-31 00:00:00\n", + "Selling CAT on 2019-01-31 00:00:00\n", + "Selling FCX on 2019-01-31 00:00:00\n", + "Selling ADBE on 2019-01-31 00:00:00\n", + "Selling CRM on 2019-01-31 00:00:00\n", + "Selling NFLX on 2019-01-31 00:00:00\n", + "Selling NOW on 2019-01-31 00:00:00\n", + "Selling AMZN on 2019-01-31 00:00:00\n", + "Buying NEM on 2019-02-28 00:00:00\n", + "Buying DUK on 2019-02-28 00:00:00\n", + "Buying AEP on 2019-02-28 00:00:00\n", + "Buying SO on 2019-02-28 00:00:00\n", + "Buying PNW on 2019-02-28 00:00:00\n", + "Buying D on 2019-02-28 00:00:00\n", + "Buying EXR on 2019-02-28 00:00:00\n", + "Buying CMS on 2019-02-28 00:00:00\n", + "Buying NI on 2019-02-28 00:00:00\n", + "Buying SRE on 2019-02-28 00:00:00\n", + "Buying AMT on 2019-02-28 00:00:00\n", + "Buying CCI on 2019-02-28 00:00:00\n", + "Buying PPL on 2019-02-28 00:00:00\n", + "Buying CBOE on 2019-02-28 00:00:00\n", + "Selling MSFT on 2019-02-28 00:00:00\n", + "Selling LVS on 2019-02-28 00:00:00\n", + "Selling ULTA on 2019-02-28 00:00:00\n", + "Selling NCLH on 2019-02-28 00:00:00\n", + "Selling SWKS on 2019-02-28 00:00:00\n", + "Selling RVTY on 2019-02-28 00:00:00\n", + "Selling CAT on 2019-02-28 00:00:00\n", + "Selling MPWR on 2019-02-28 00:00:00\n", + "Selling CRM on 2019-02-28 00:00:00\n", + "Selling FCX on 2019-02-28 00:00:00\n", + "Selling ADBE on 2019-02-28 00:00:00\n", + "Selling NOW on 2019-02-28 00:00:00\n", + "Selling NFLX on 2019-02-28 00:00:00\n", + "Selling AMZN on 2019-02-28 00:00:00\n", + "Buying EXR on 2019-03-31 00:00:00\n", + "Buying WELL on 2019-03-31 00:00:00\n", + "Buying O on 2019-03-31 00:00:00\n", + "Buying VICI on 2019-03-31 00:00:00\n", + "Buying SO on 2019-03-31 00:00:00\n", + "Buying DUK on 2019-03-31 00:00:00\n", + "Buying PNW on 2019-03-31 00:00:00\n", + "Buying CMS on 2019-03-31 00:00:00\n", + "Buying AEP on 2019-03-31 00:00:00\n", + "Buying REG on 2019-03-31 00:00:00\n", + "Buying CCI on 2019-03-31 00:00:00\n", + "Buying DLTR on 2019-03-31 00:00:00\n", + "Buying AMT on 2019-03-31 00:00:00\n", + "Buying INVH on 2019-03-31 00:00:00\n", + "Selling HWM on 2019-03-31 00:00:00\n", + "Selling RVTY on 2019-03-31 00:00:00\n", + "Selling CRM on 2019-03-31 00:00:00\n", + "Selling AMZN on 2019-03-31 00:00:00\n", + "Selling NFLX on 2019-03-31 00:00:00\n", + "Selling BMY on 2019-03-31 00:00:00\n", + "Selling MPWR on 2019-03-31 00:00:00\n", + "Selling CAT on 2019-03-31 00:00:00\n", + "Selling AXON on 2019-03-31 00:00:00\n", + "Selling CF on 2019-03-31 00:00:00\n", + "Selling APO on 2019-03-31 00:00:00\n", + "Selling NOW on 2019-03-31 00:00:00\n", + "Selling SWKS on 2019-03-31 00:00:00\n", + "Selling FCX on 2019-03-31 00:00:00\n", + "Buying DLTR on 2019-04-30 00:00:00\n", + "Buying DUK on 2019-04-30 00:00:00\n", + "Buying AEP on 2019-04-30 00:00:00\n", + "Buying PNW on 2019-04-30 00:00:00\n", + "Buying SO on 2019-04-30 00:00:00\n", + "Buying NI on 2019-04-30 00:00:00\n", + "Buying CMS on 2019-04-30 00:00:00\n", + "Buying PHM on 2019-04-30 00:00:00\n", + "Buying MNST on 2019-04-30 00:00:00\n", + "Buying CHD on 2019-04-30 00:00:00\n", + "Buying VICI on 2019-04-30 00:00:00\n", + "Buying KHC on 2019-04-30 00:00:00\n", + "Buying PPL on 2019-04-30 00:00:00\n", + "Buying D on 2019-04-30 00:00:00\n", + "Selling C on 2019-04-30 00:00:00\n", + "Selling TRGP on 2019-04-30 00:00:00\n", + "Selling CAT on 2019-04-30 00:00:00\n", + "Selling APTV on 2019-04-30 00:00:00\n", + "Selling SWKS on 2019-04-30 00:00:00\n", + "Selling PH on 2019-04-30 00:00:00\n", + "Selling MPWR on 2019-04-30 00:00:00\n", + "Selling CVS on 2019-04-30 00:00:00\n", + "Selling APO on 2019-04-30 00:00:00\n", + "Selling FCX on 2019-04-30 00:00:00\n", + "Selling CE on 2019-04-30 00:00:00\n", + "Selling STLD on 2019-04-30 00:00:00\n", + "Selling AXON on 2019-04-30 00:00:00\n", + "Selling BWA on 2019-04-30 00:00:00\n", + "Buying NEM on 2019-05-31 00:00:00\n", + "Buying AEP on 2019-05-31 00:00:00\n", + "Buying PNW on 2019-05-31 00:00:00\n", + "Buying CMS on 2019-05-31 00:00:00\n", + "Buying SO on 2019-05-31 00:00:00\n", + "Buying D on 2019-05-31 00:00:00\n", + "Buying DUK on 2019-05-31 00:00:00\n", + "Buying NI on 2019-05-31 00:00:00\n", + "Buying EXR on 2019-05-31 00:00:00\n", + "Buying PPL on 2019-05-31 00:00:00\n", + "Buying GIS on 2019-05-31 00:00:00\n", + "Buying SJM on 2019-05-31 00:00:00\n", + "Buying WELL on 2019-05-31 00:00:00\n", + "Buying AMT on 2019-05-31 00:00:00\n", + "Selling ROK on 2019-05-31 00:00:00\n", + "Selling TXT on 2019-05-31 00:00:00\n", + "Selling MPWR on 2019-05-31 00:00:00\n", + "Selling CF on 2019-05-31 00:00:00\n", + "Selling BWA on 2019-05-31 00:00:00\n", + "Selling SWKS on 2019-05-31 00:00:00\n", + "Selling PH on 2019-05-31 00:00:00\n", + "Selling KEYS on 2019-05-31 00:00:00\n", + "Selling EPAM on 2019-05-31 00:00:00\n", + "Selling CE on 2019-05-31 00:00:00\n", + "Selling STLD on 2019-05-31 00:00:00\n", + "Selling JBL on 2019-05-31 00:00:00\n", + "Selling FCX on 2019-05-31 00:00:00\n", + "Selling APO on 2019-05-31 00:00:00\n", + "Buying NEM on 2019-06-30 00:00:00\n", + "Buying AEP on 2019-06-30 00:00:00\n", + "Buying CMS on 2019-06-30 00:00:00\n", + "Buying SO on 2019-06-30 00:00:00\n", + "Buying PNW on 2019-06-30 00:00:00\n", + "Buying SJM on 2019-06-30 00:00:00\n", + "Buying EXR on 2019-06-30 00:00:00\n", + "Buying D on 2019-06-30 00:00:00\n", + "Buying NI on 2019-06-30 00:00:00\n", + "Buying DUK on 2019-06-30 00:00:00\n", + "Buying WELL on 2019-06-30 00:00:00\n", + "Buying CHD on 2019-06-30 00:00:00\n", + "Buying CBOE on 2019-06-30 00:00:00\n", + "Buying GIS on 2019-06-30 00:00:00\n", + "Selling APO on 2019-06-30 00:00:00\n", + "Selling APTV on 2019-06-30 00:00:00\n", + "Selling PH on 2019-06-30 00:00:00\n", + "Selling CRM on 2019-06-30 00:00:00\n", + "Selling MPWR on 2019-06-30 00:00:00\n", + "Selling ADBE on 2019-06-30 00:00:00\n", + "Selling FCX on 2019-06-30 00:00:00\n", + "Selling TXT on 2019-06-30 00:00:00\n", + "Selling JBL on 2019-06-30 00:00:00\n", + "Selling LVS on 2019-06-30 00:00:00\n", + "Selling NOW on 2019-06-30 00:00:00\n", + "Selling HAS on 2019-06-30 00:00:00\n", + "Selling PTC on 2019-06-30 00:00:00\n", + "Selling KEYS on 2019-06-30 00:00:00\n", + "Buying PNW on 2019-07-31 00:00:00\n", + "Buying SO on 2019-07-31 00:00:00\n", + "Buying NEM on 2019-07-31 00:00:00\n", + "Buying AEP on 2019-07-31 00:00:00\n", + "Buying CMS on 2019-07-31 00:00:00\n", + "Buying D on 2019-07-31 00:00:00\n", + "Buying AMT on 2019-07-31 00:00:00\n", + "Buying NI on 2019-07-31 00:00:00\n", + "Buying DUK on 2019-07-31 00:00:00\n", + "Buying EXR on 2019-07-31 00:00:00\n", + "Buying WELL on 2019-07-31 00:00:00\n", + "Buying SJM on 2019-07-31 00:00:00\n", + "Buying LHX on 2019-07-31 00:00:00\n", + "Buying SRE on 2019-07-31 00:00:00\n", + "Selling GE on 2019-07-31 00:00:00\n", + "Selling C on 2019-07-31 00:00:00\n", + "Selling CRM on 2019-07-31 00:00:00\n", + "Selling ADBE on 2019-07-31 00:00:00\n", + "Selling HAS on 2019-07-31 00:00:00\n", + "Selling JBL on 2019-07-31 00:00:00\n", + "Selling APO on 2019-07-31 00:00:00\n", + "Selling LVS on 2019-07-31 00:00:00\n", + "Selling TXT on 2019-07-31 00:00:00\n", + "Selling SWKS on 2019-07-31 00:00:00\n", + "Selling NOW on 2019-07-31 00:00:00\n", + "Selling MPWR on 2019-07-31 00:00:00\n", + "Selling PTC on 2019-07-31 00:00:00\n", + "Selling KEYS on 2019-07-31 00:00:00\n", + "Buying NEM on 2019-08-31 00:00:00\n", + "Buying CBOE on 2019-08-31 00:00:00\n", + "Buying KHC on 2019-08-31 00:00:00\n", + "Buying EXR on 2019-08-31 00:00:00\n", + "Buying AMT on 2019-08-31 00:00:00\n", + "Buying SO on 2019-08-31 00:00:00\n", + "Buying DUK on 2019-08-31 00:00:00\n", + "Buying WELL on 2019-08-31 00:00:00\n", + "Buying CMS on 2019-08-31 00:00:00\n", + "Buying AEP on 2019-08-31 00:00:00\n", + "Buying PNW on 2019-08-31 00:00:00\n", + "Buying D on 2019-08-31 00:00:00\n", + "Buying MKTX on 2019-08-31 00:00:00\n", + "Buying O on 2019-08-31 00:00:00\n", + "Selling C on 2019-08-31 00:00:00\n", + "Selling FFIV on 2019-08-31 00:00:00\n", + "Selling TXT on 2019-08-31 00:00:00\n", + "Selling HAS on 2019-08-31 00:00:00\n", + "Selling AXON on 2019-08-31 00:00:00\n", + "Selling PARA on 2019-08-31 00:00:00\n", + "Selling LVS on 2019-08-31 00:00:00\n", + "Selling JBL on 2019-08-31 00:00:00\n", + "Selling PTC on 2019-08-31 00:00:00\n", + "Selling SWKS on 2019-08-31 00:00:00\n", + "Selling GEN on 2019-08-31 00:00:00\n", + "Selling TRGP on 2019-08-31 00:00:00\n", + "Selling MPWR on 2019-08-31 00:00:00\n", + "Selling KEYS on 2019-08-31 00:00:00\n", + "Buying NEM on 2019-09-30 00:00:00\n", + "Buying AMT on 2019-09-30 00:00:00\n", + "Buying KHC on 2019-09-30 00:00:00\n", + "Buying CBOE on 2019-09-30 00:00:00\n", + "Buying EXR on 2019-09-30 00:00:00\n", + "Buying WELL on 2019-09-30 00:00:00\n", + "Buying SO on 2019-09-30 00:00:00\n", + "Buying CMS on 2019-09-30 00:00:00\n", + "Buying MKTX on 2019-09-30 00:00:00\n", + "Buying AEP on 2019-09-30 00:00:00\n", + "Buying DUK on 2019-09-30 00:00:00\n", + "Buying PNW on 2019-09-30 00:00:00\n", + "Buying CHD on 2019-09-30 00:00:00\n", + "Buying D on 2019-09-30 00:00:00\n", + "Selling PTC on 2019-09-30 00:00:00\n", + "Selling C on 2019-09-30 00:00:00\n", + "Selling TXT on 2019-09-30 00:00:00\n", + "Selling HAS on 2019-09-30 00:00:00\n", + "Selling APTV on 2019-09-30 00:00:00\n", + "Selling STLD on 2019-09-30 00:00:00\n", + "Selling EPAM on 2019-09-30 00:00:00\n", + "Selling JBL on 2019-09-30 00:00:00\n", + "Selling BWA on 2019-09-30 00:00:00\n", + "Selling SWKS on 2019-09-30 00:00:00\n", + "Selling CRWD on 2019-09-30 00:00:00\n", + "Selling TRGP on 2019-09-30 00:00:00\n", + "Selling MPWR on 2019-09-30 00:00:00\n", + "Selling KEYS on 2019-09-30 00:00:00\n", + "Buying NEM on 2019-10-31 00:00:00\n", + "Buying AMT on 2019-10-31 00:00:00\n", + "Buying O on 2019-10-31 00:00:00\n", + "Buying EXR on 2019-10-31 00:00:00\n", + "Buying SO on 2019-10-31 00:00:00\n", + "Buying WELL on 2019-10-31 00:00:00\n", + "Buying CMS on 2019-10-31 00:00:00\n", + "Buying SRE on 2019-10-31 00:00:00\n", + "Buying CBOE on 2019-10-31 00:00:00\n", + "Buying INVH on 2019-10-31 00:00:00\n", + "Buying KHC on 2019-10-31 00:00:00\n", + "Buying CHD on 2019-10-31 00:00:00\n", + "Buying DUK on 2019-10-31 00:00:00\n", + "Buying AEP on 2019-10-31 00:00:00\n", + "Selling LYB on 2019-10-31 00:00:00\n", + "Selling BWA on 2019-10-31 00:00:00\n", + "Selling TXT on 2019-10-31 00:00:00\n", + "Selling PH on 2019-10-31 00:00:00\n", + "Selling SWKS on 2019-10-31 00:00:00\n", + "Selling AXON on 2019-10-31 00:00:00\n", + "Selling FCX on 2019-10-31 00:00:00\n", + "Selling PARA on 2019-10-31 00:00:00\n", + "Selling STLD on 2019-10-31 00:00:00\n", + "Selling TRGP on 2019-10-31 00:00:00\n", + "Selling APTV on 2019-10-31 00:00:00\n", + "Selling MPWR on 2019-10-31 00:00:00\n", + "Selling KEYS on 2019-10-31 00:00:00\n", + "Selling CRWD on 2019-10-31 00:00:00\n", + "Buying NEM on 2019-11-30 00:00:00\n", + "Buying CHD on 2019-11-30 00:00:00\n", + "Buying AMT on 2019-11-30 00:00:00\n", + "Buying ULTA on 2019-11-30 00:00:00\n", + "Buying CMS on 2019-11-30 00:00:00\n", + "Buying CCI on 2019-11-30 00:00:00\n", + "Buying TAP on 2019-11-30 00:00:00\n", + "Buying EXR on 2019-11-30 00:00:00\n", + "Buying WELL on 2019-11-30 00:00:00\n", + "Buying O on 2019-11-30 00:00:00\n", + "Buying LHX on 2019-11-30 00:00:00\n", + "Buying AEP on 2019-11-30 00:00:00\n", + "Buying INVH on 2019-11-30 00:00:00\n", + "Buying TSCO on 2019-11-30 00:00:00\n", + "Selling BWA on 2019-11-30 00:00:00\n", + "Selling GE on 2019-11-30 00:00:00\n", + "Selling MTD on 2019-11-30 00:00:00\n", + "Selling CAT on 2019-11-30 00:00:00\n", + "Selling AXON on 2019-11-30 00:00:00\n", + "Selling MPWR on 2019-11-30 00:00:00\n", + "Selling KEYS on 2019-11-30 00:00:00\n", + "Selling PH on 2019-11-30 00:00:00\n", + "Selling STLD on 2019-11-30 00:00:00\n", + "Selling NOW on 2019-11-30 00:00:00\n", + "Selling APTV on 2019-11-30 00:00:00\n", + "Selling SWKS on 2019-11-30 00:00:00\n", + "Selling CRWD on 2019-11-30 00:00:00\n", + "Selling FCX on 2019-11-30 00:00:00\n", + "Buying NEM on 2019-12-31 00:00:00\n", + "Buying CCI on 2019-12-31 00:00:00\n", + "Buying EXR on 2019-12-31 00:00:00\n", + "Buying CMS on 2019-12-31 00:00:00\n", + "Buying PHM on 2019-12-31 00:00:00\n", + "Buying SRE on 2019-12-31 00:00:00\n", + "Buying LHX on 2019-12-31 00:00:00\n", + "Buying AMT on 2019-12-31 00:00:00\n", + "Buying WELL on 2019-12-31 00:00:00\n", + "Buying KHC on 2019-12-31 00:00:00\n", + "Buying AEP on 2019-12-31 00:00:00\n", + "Buying VST on 2019-12-31 00:00:00\n", + "Buying CBOE on 2019-12-31 00:00:00\n", + "Buying NRG on 2019-12-31 00:00:00\n", + "Selling ULTA on 2019-12-31 00:00:00\n", + "Selling NOW on 2019-12-31 00:00:00\n", + "Selling C on 2019-12-31 00:00:00\n", + "Selling LYB on 2019-12-31 00:00:00\n", + "Selling CAT on 2019-12-31 00:00:00\n", + "Selling PH on 2019-12-31 00:00:00\n", + "Selling SWKS on 2019-12-31 00:00:00\n", + "Selling LVS on 2019-12-31 00:00:00\n", + "Selling GE on 2019-12-31 00:00:00\n", + "Selling APTV on 2019-12-31 00:00:00\n", + "Selling RVTY on 2019-12-31 00:00:00\n", + "Selling MPWR on 2019-12-31 00:00:00\n", + "Selling KEYS on 2019-12-31 00:00:00\n", + "Selling FCX on 2019-12-31 00:00:00\n", + "Buying NEM on 2020-01-31 00:00:00\n", + "Buying CHD on 2020-01-31 00:00:00\n", + "Buying CMS on 2020-01-31 00:00:00\n", + "Buying EXR on 2020-01-31 00:00:00\n", + "Buying CLX on 2020-01-31 00:00:00\n", + "Buying CBOE on 2020-01-31 00:00:00\n", + "Buying PNW on 2020-01-31 00:00:00\n", + "Buying NI on 2020-01-31 00:00:00\n", + "Buying AEP on 2020-01-31 00:00:00\n", + "Buying ICE on 2020-01-31 00:00:00\n", + "Buying O on 2020-01-31 00:00:00\n", + "Buying REG on 2020-01-31 00:00:00\n", + "Buying WELL on 2020-01-31 00:00:00\n", + "Buying IRM on 2020-01-31 00:00:00\n", + "Selling CAT on 2020-01-31 00:00:00\n", + "Selling GE on 2020-01-31 00:00:00\n", + "Selling LYV on 2020-01-31 00:00:00\n", + "Selling MTCH on 2020-01-31 00:00:00\n", + "Selling PH on 2020-01-31 00:00:00\n", + "Selling APTV on 2020-01-31 00:00:00\n", + "Selling GS on 2020-01-31 00:00:00\n", + "Selling LYB on 2020-01-31 00:00:00\n", + "Selling DFS on 2020-01-31 00:00:00\n", + "Selling KEYS on 2020-01-31 00:00:00\n", + "Selling SWKS on 2020-01-31 00:00:00\n", + "Selling MPWR on 2020-01-31 00:00:00\n", + "Selling LVS on 2020-01-31 00:00:00\n", + "Selling FCX on 2020-01-31 00:00:00\n", + "Buying CLX on 2020-02-29 00:00:00\n", + "Buying ICE on 2020-02-29 00:00:00\n", + "Buying DGX on 2020-02-29 00:00:00\n", + "Buying MKTX on 2020-02-29 00:00:00\n", + "Buying GILD on 2020-02-29 00:00:00\n", + "Buying CBOE on 2020-02-29 00:00:00\n", + "Buying NEM on 2020-02-29 00:00:00\n", + "Buying CHD on 2020-02-29 00:00:00\n", + "Buying INVH on 2020-02-29 00:00:00\n", + "Buying ERIE on 2020-02-29 00:00:00\n", + "Buying NI on 2020-02-29 00:00:00\n", + "Buying EXR on 2020-02-29 00:00:00\n", + "Buying LH on 2020-02-29 00:00:00\n", + "Buying DUK on 2020-02-29 00:00:00\n", + "Selling CDW on 2020-02-29 00:00:00\n", + "Selling LVS on 2020-02-29 00:00:00\n", + "Selling GE on 2020-02-29 00:00:00\n", + "Selling CE on 2020-02-29 00:00:00\n", + "Selling MSFT on 2020-02-29 00:00:00\n", + "Selling APTV on 2020-02-29 00:00:00\n", + "Selling BLK on 2020-02-29 00:00:00\n", + "Selling LYB on 2020-02-29 00:00:00\n", + "Selling C on 2020-02-29 00:00:00\n", + "Selling MPWR on 2020-02-29 00:00:00\n", + "Selling SWKS on 2020-02-29 00:00:00\n", + "Selling NCLH on 2020-02-29 00:00:00\n", + "Selling LYV on 2020-02-29 00:00:00\n", + "Selling FCX on 2020-02-29 00:00:00\n", + "Buying CLX on 2020-03-31 00:00:00\n", + "Buying NEM on 2020-03-31 00:00:00\n", + "Buying GILD on 2020-03-31 00:00:00\n", + "Buying GEN on 2020-03-31 00:00:00\n", + "Buying SJM on 2020-03-31 00:00:00\n", + "Buying GIS on 2020-03-31 00:00:00\n", + "Buying DG on 2020-03-31 00:00:00\n", + "Buying CHD on 2020-03-31 00:00:00\n", + "Buying AMZN on 2020-03-31 00:00:00\n", + "Buying BDX on 2020-03-31 00:00:00\n", + "Buying BMY on 2020-03-31 00:00:00\n", + "Buying INCY on 2020-03-31 00:00:00\n", + "Buying RVTY on 2020-03-31 00:00:00\n", + "Buying MAR on 2020-03-31 00:00:00\n", + "Selling HWM on 2020-03-31 00:00:00\n", + "Selling L on 2020-03-31 00:00:00\n", + "Selling TXT on 2020-03-31 00:00:00\n", + "Selling VICI on 2020-03-31 00:00:00\n", + "Selling PH on 2020-03-31 00:00:00\n", + "Selling LYB on 2020-03-31 00:00:00\n", + "Selling FCX on 2020-03-31 00:00:00\n", + "Selling MPWR on 2020-03-31 00:00:00\n", + "Selling C on 2020-03-31 00:00:00\n", + "Selling SYF on 2020-03-31 00:00:00\n", + "Selling TRGP on 2020-03-31 00:00:00\n", + "Selling DRI on 2020-03-31 00:00:00\n", + "Selling DFS on 2020-03-31 00:00:00\n", + "Selling NCLH on 2020-03-31 00:00:00\n", + "Buying CLX on 2020-04-30 00:00:00\n", + "Buying GEN on 2020-04-30 00:00:00\n", + "Buying SJM on 2020-04-30 00:00:00\n", + "Buying GIS on 2020-04-30 00:00:00\n", + "Buying NEM on 2020-04-30 00:00:00\n", + "Buying GILD on 2020-04-30 00:00:00\n", + "Buying DG on 2020-04-30 00:00:00\n", + "Buying CHD on 2020-04-30 00:00:00\n", + "Buying AMZN on 2020-04-30 00:00:00\n", + "Buying BMY on 2020-04-30 00:00:00\n", + "Buying BDX on 2020-04-30 00:00:00\n", + "Buying NFLX on 2020-04-30 00:00:00\n", + "Buying INCY on 2020-04-30 00:00:00\n", + "Buying EXR on 2020-04-30 00:00:00\n", + "Selling WELL on 2020-04-30 00:00:00\n", + "Selling VICI on 2020-04-30 00:00:00\n", + "Selling HWM on 2020-04-30 00:00:00\n", + "Selling APO on 2020-04-30 00:00:00\n", + "Selling LYB on 2020-04-30 00:00:00\n", + "Selling MPWR on 2020-04-30 00:00:00\n", + "Selling PH on 2020-04-30 00:00:00\n", + "Selling FCX on 2020-04-30 00:00:00\n", + "Selling C on 2020-04-30 00:00:00\n", + "Selling SYF on 2020-04-30 00:00:00\n", + "Selling TRGP on 2020-04-30 00:00:00\n", + "Selling DRI on 2020-04-30 00:00:00\n", + "Selling DFS on 2020-04-30 00:00:00\n", + "Selling NCLH on 2020-04-30 00:00:00\n", + "Buying CLX on 2020-05-31 00:00:00\n", + "Buying GIS on 2020-05-31 00:00:00\n", + "Buying SJM on 2020-05-31 00:00:00\n", + "Buying GEN on 2020-05-31 00:00:00\n", + "Buying NEM on 2020-05-31 00:00:00\n", + "Buying GILD on 2020-05-31 00:00:00\n", + "Buying DG on 2020-05-31 00:00:00\n", + "Buying CHD on 2020-05-31 00:00:00\n", + "Buying BMY on 2020-05-31 00:00:00\n", + "Buying AMZN on 2020-05-31 00:00:00\n", + "Buying NFLX on 2020-05-31 00:00:00\n", + "Buying BDX on 2020-05-31 00:00:00\n", + "Buying INCY on 2020-05-31 00:00:00\n", + "Buying EXR on 2020-05-31 00:00:00\n", + "Selling TXT on 2020-05-31 00:00:00\n", + "Selling VICI on 2020-05-31 00:00:00\n", + "Selling WELL on 2020-05-31 00:00:00\n", + "Selling LYB on 2020-05-31 00:00:00\n", + "Selling APO on 2020-05-31 00:00:00\n", + "Selling PH on 2020-05-31 00:00:00\n", + "Selling HWM on 2020-05-31 00:00:00\n", + "Selling FCX on 2020-05-31 00:00:00\n", + "Selling C on 2020-05-31 00:00:00\n", + "Selling SYF on 2020-05-31 00:00:00\n", + "Selling TRGP on 2020-05-31 00:00:00\n", + "Selling DRI on 2020-05-31 00:00:00\n", + "Selling DFS on 2020-05-31 00:00:00\n", + "Selling NCLH on 2020-05-31 00:00:00\n", + "Buying CLX on 2020-06-30 00:00:00\n", + "Buying NFLX on 2020-06-30 00:00:00\n", + "Buying GIS on 2020-06-30 00:00:00\n", + "Buying DG on 2020-06-30 00:00:00\n", + "Buying SJM on 2020-06-30 00:00:00\n", + "Buying CRWD on 2020-06-30 00:00:00\n", + "Buying CHD on 2020-06-30 00:00:00\n", + "Buying NEM on 2020-06-30 00:00:00\n", + "Buying BDX on 2020-06-30 00:00:00\n", + "Buying BMY on 2020-06-30 00:00:00\n", + "Buying VRTX on 2020-06-30 00:00:00\n", + "Buying AMZN on 2020-06-30 00:00:00\n", + "Buying ABBV on 2020-06-30 00:00:00\n", + "Buying RMD on 2020-06-30 00:00:00\n", + "Selling PSX on 2020-06-30 00:00:00\n", + "Selling TXT on 2020-06-30 00:00:00\n", + "Selling LYB on 2020-06-30 00:00:00\n", + "Selling FCX on 2020-06-30 00:00:00\n", + "Selling HBAN on 2020-06-30 00:00:00\n", + "Selling APTV on 2020-06-30 00:00:00\n", + "Selling HWM on 2020-06-30 00:00:00\n", + "Selling C on 2020-06-30 00:00:00\n", + "Selling WELL on 2020-06-30 00:00:00\n", + "Selling TRGP on 2020-06-30 00:00:00\n", + "Selling SYF on 2020-06-30 00:00:00\n", + "Selling MAR on 2020-06-30 00:00:00\n", + "Selling DFS on 2020-06-30 00:00:00\n", + "Selling NCLH on 2020-06-30 00:00:00\n", + "Buying CLX on 2020-07-31 00:00:00\n", + "Buying NEM on 2020-07-31 00:00:00\n", + "Buying DG on 2020-07-31 00:00:00\n", + "Buying CHD on 2020-07-31 00:00:00\n", + "Buying D on 2020-07-31 00:00:00\n", + "Buying BDX on 2020-07-31 00:00:00\n", + "Buying GIS on 2020-07-31 00:00:00\n", + "Buying TSCO on 2020-07-31 00:00:00\n", + "Buying SJM on 2020-07-31 00:00:00\n", + "Buying VRTX on 2020-07-31 00:00:00\n", + "Buying ABBV on 2020-07-31 00:00:00\n", + "Buying GILD on 2020-07-31 00:00:00\n", + "Buying DLTR on 2020-07-31 00:00:00\n", + "Buying BMY on 2020-07-31 00:00:00\n", + "Selling PSX on 2020-07-31 00:00:00\n", + "Selling WFC on 2020-07-31 00:00:00\n", + "Selling LYB on 2020-07-31 00:00:00\n", + "Selling FCX on 2020-07-31 00:00:00\n", + "Selling HBAN on 2020-07-31 00:00:00\n", + "Selling TXT on 2020-07-31 00:00:00\n", + "Selling LYV on 2020-07-31 00:00:00\n", + "Selling MAR on 2020-07-31 00:00:00\n", + "Selling C on 2020-07-31 00:00:00\n", + "Selling SYF on 2020-07-31 00:00:00\n", + "Selling DFS on 2020-07-31 00:00:00\n", + "Selling TRGP on 2020-07-31 00:00:00\n", + "Selling HWM on 2020-07-31 00:00:00\n", + "Selling NCLH on 2020-07-31 00:00:00\n", + "Buying CLX on 2020-08-31 00:00:00\n", + "Buying DG on 2020-08-31 00:00:00\n", + "Buying D on 2020-08-31 00:00:00\n", + "Buying CHD on 2020-08-31 00:00:00\n", + "Buying TSCO on 2020-08-31 00:00:00\n", + "Buying DUK on 2020-08-31 00:00:00\n", + "Buying DLTR on 2020-08-31 00:00:00\n", + "Buying BDX on 2020-08-31 00:00:00\n", + "Buying GILD on 2020-08-31 00:00:00\n", + "Buying CMS on 2020-08-31 00:00:00\n", + "Buying ORLY on 2020-08-31 00:00:00\n", + "Buying SJM on 2020-08-31 00:00:00\n", + "Buying AEP on 2020-08-31 00:00:00\n", + "Buying GIS on 2020-08-31 00:00:00\n", + "Selling GS on 2020-08-31 00:00:00\n", + "Selling HBAN on 2020-08-31 00:00:00\n", + "Selling TXT on 2020-08-31 00:00:00\n", + "Selling STLD on 2020-08-31 00:00:00\n", + "Selling PSX on 2020-08-31 00:00:00\n", + "Selling LYB on 2020-08-31 00:00:00\n", + "Selling MAR on 2020-08-31 00:00:00\n", + "Selling SYF on 2020-08-31 00:00:00\n", + "Selling DFS on 2020-08-31 00:00:00\n", + "Selling C on 2020-08-31 00:00:00\n", + "Selling HWM on 2020-08-31 00:00:00\n", + "Selling FCX on 2020-08-31 00:00:00\n", + "Selling TRGP on 2020-08-31 00:00:00\n", + "Selling NCLH on 2020-08-31 00:00:00\n", + "Buying CBOE on 2020-09-30 00:00:00\n", + "Buying NI on 2020-09-30 00:00:00\n", + "Buying CVS on 2020-09-30 00:00:00\n", + "Buying T on 2020-09-30 00:00:00\n", + "Buying LVS on 2020-09-30 00:00:00\n", + "Buying AEP on 2020-09-30 00:00:00\n", + "Buying BDX on 2020-09-30 00:00:00\n", + "Buying D on 2020-09-30 00:00:00\n", + "Buying SO on 2020-09-30 00:00:00\n", + "Buying PNW on 2020-09-30 00:00:00\n", + "Buying LHX on 2020-09-30 00:00:00\n", + "Buying DGX on 2020-09-30 00:00:00\n", + "Buying PARA on 2020-09-30 00:00:00\n", + "Buying DUK on 2020-09-30 00:00:00\n", + "Selling NFLX on 2020-09-30 00:00:00\n", + "Selling JBL on 2020-09-30 00:00:00\n", + "Selling EPAM on 2020-09-30 00:00:00\n", + "Selling PTC on 2020-09-30 00:00:00\n", + "Selling TRGP on 2020-09-30 00:00:00\n", + "Selling FCX on 2020-09-30 00:00:00\n", + "Selling MTCH on 2020-09-30 00:00:00\n", + "Selling AMZN on 2020-09-30 00:00:00\n", + "Selling NOW on 2020-09-30 00:00:00\n", + "Selling MPWR on 2020-09-30 00:00:00\n", + "Selling ADBE on 2020-09-30 00:00:00\n", + "Selling MSFT on 2020-09-30 00:00:00\n", + "Selling CRM on 2020-09-30 00:00:00\n", + "Selling SWKS on 2020-09-30 00:00:00\n", + "Buying CBOE on 2020-10-31 00:00:00\n", + "Buying DGX on 2020-10-31 00:00:00\n", + "Buying T on 2020-10-31 00:00:00\n", + "Buying BDX on 2020-10-31 00:00:00\n", + "Buying AEP on 2020-10-31 00:00:00\n", + "Buying NI on 2020-10-31 00:00:00\n", + "Buying PARA on 2020-10-31 00:00:00\n", + "Buying PNW on 2020-10-31 00:00:00\n", + "Buying CVS on 2020-10-31 00:00:00\n", + "Buying LH on 2020-10-31 00:00:00\n", + "Buying CLX on 2020-10-31 00:00:00\n", + "Buying ERIE on 2020-10-31 00:00:00\n", + "Buying D on 2020-10-31 00:00:00\n", + "Buying SO on 2020-10-31 00:00:00\n", + "Selling ULTA on 2020-10-31 00:00:00\n", + "Selling EPAM on 2020-10-31 00:00:00\n", + "Selling IDXX on 2020-10-31 00:00:00\n", + "Selling NOW on 2020-10-31 00:00:00\n", + "Selling JBL on 2020-10-31 00:00:00\n", + "Selling TRGP on 2020-10-31 00:00:00\n", + "Selling FCX on 2020-10-31 00:00:00\n", + "Selling PTC on 2020-10-31 00:00:00\n", + "Selling MPWR on 2020-10-31 00:00:00\n", + "Selling MSFT on 2020-10-31 00:00:00\n", + "Selling ADBE on 2020-10-31 00:00:00\n", + "Selling AMZN on 2020-10-31 00:00:00\n", + "Selling CRM on 2020-10-31 00:00:00\n", + "Selling SWKS on 2020-10-31 00:00:00\n", + "Buying CLX on 2020-11-30 00:00:00\n", + "Buying DGX on 2020-11-30 00:00:00\n", + "Buying BDX on 2020-11-30 00:00:00\n", + "Buying AEP on 2020-11-30 00:00:00\n", + "Buying EXR on 2020-11-30 00:00:00\n", + "Buying LH on 2020-11-30 00:00:00\n", + "Buying CHD on 2020-11-30 00:00:00\n", + "Buying CRWD on 2020-11-30 00:00:00\n", + "Buying T on 2020-11-30 00:00:00\n", + "Buying ERIE on 2020-11-30 00:00:00\n", + "Buying CBOE on 2020-11-30 00:00:00\n", + "Buying JBHT on 2020-11-30 00:00:00\n", + "Buying DG on 2020-11-30 00:00:00\n", + "Buying SO on 2020-11-30 00:00:00\n", + "Selling JBL on 2020-11-30 00:00:00\n", + "Selling AMZN on 2020-11-30 00:00:00\n", + "Selling HWM on 2020-11-30 00:00:00\n", + "Selling REG on 2020-11-30 00:00:00\n", + "Selling ULTA on 2020-11-30 00:00:00\n", + "Selling LYV on 2020-11-30 00:00:00\n", + "Selling DFS on 2020-11-30 00:00:00\n", + "Selling SWKS on 2020-11-30 00:00:00\n", + "Selling SYY on 2020-11-30 00:00:00\n", + "Selling BKNG on 2020-11-30 00:00:00\n", + "Selling MAR on 2020-11-30 00:00:00\n", + "Selling TRGP on 2020-11-30 00:00:00\n", + "Selling PSX on 2020-11-30 00:00:00\n", + "Selling NCLH on 2020-11-30 00:00:00\n", + "Buying CLX on 2020-12-31 00:00:00\n", + "Buying CRWD on 2020-12-31 00:00:00\n", + "Buying EXR on 2020-12-31 00:00:00\n", + "Buying CHD on 2020-12-31 00:00:00\n", + "Buying ERIE on 2020-12-31 00:00:00\n", + "Buying CCI on 2020-12-31 00:00:00\n", + "Buying LH on 2020-12-31 00:00:00\n", + "Buying DGX on 2020-12-31 00:00:00\n", + "Buying GEN on 2020-12-31 00:00:00\n", + "Buying GIS on 2020-12-31 00:00:00\n", + "Buying TSCO on 2020-12-31 00:00:00\n", + "Buying DG on 2020-12-31 00:00:00\n", + "Buying SJM on 2020-12-31 00:00:00\n", + "Buying AEP on 2020-12-31 00:00:00\n", + "Selling HWM on 2020-12-31 00:00:00\n", + "Selling WFC on 2020-12-31 00:00:00\n", + "Selling DRI on 2020-12-31 00:00:00\n", + "Selling DFS on 2020-12-31 00:00:00\n", + "Selling SYF on 2020-12-31 00:00:00\n", + "Selling JBL on 2020-12-31 00:00:00\n", + "Selling REG on 2020-12-31 00:00:00\n", + "Selling TRGP on 2020-12-31 00:00:00\n", + "Selling MAR on 2020-12-31 00:00:00\n", + "Selling LYV on 2020-12-31 00:00:00\n", + "Selling SYY on 2020-12-31 00:00:00\n", + "Selling BKNG on 2020-12-31 00:00:00\n", + "Selling PSX on 2020-12-31 00:00:00\n", + "Selling NCLH on 2020-12-31 00:00:00\n", + "Buying CLX on 2021-01-31 00:00:00\n", + "Buying IRM on 2021-01-31 00:00:00\n", + "Buying SJM on 2021-01-31 00:00:00\n", + "Buying GIS on 2021-01-31 00:00:00\n", + "Buying MKTX on 2021-01-31 00:00:00\n", + "Buying DGX on 2021-01-31 00:00:00\n", + "Buying CHD on 2021-01-31 00:00:00\n", + "Buying PARA on 2021-01-31 00:00:00\n", + "Buying LH on 2021-01-31 00:00:00\n", + "Buying CCI on 2021-01-31 00:00:00\n", + "Buying ERIE on 2021-01-31 00:00:00\n", + "Buying TSCO on 2021-01-31 00:00:00\n", + "Buying EXR on 2021-01-31 00:00:00\n", + "Buying GILD on 2021-01-31 00:00:00\n", + "Selling TXT on 2021-01-31 00:00:00\n", + "Selling DFS on 2021-01-31 00:00:00\n", + "Selling TRGP on 2021-01-31 00:00:00\n", + "Selling WFC on 2021-01-31 00:00:00\n", + "Selling LVS on 2021-01-31 00:00:00\n", + "Selling SYF on 2021-01-31 00:00:00\n", + "Selling DRI on 2021-01-31 00:00:00\n", + "Selling SYY on 2021-01-31 00:00:00\n", + "Selling LYV on 2021-01-31 00:00:00\n", + "Selling REG on 2021-01-31 00:00:00\n", + "Selling MAR on 2021-01-31 00:00:00\n", + "Selling PSX on 2021-01-31 00:00:00\n", + "Selling BKNG on 2021-01-31 00:00:00\n", + "Selling NCLH on 2021-01-31 00:00:00\n", + "Buying CLX on 2021-02-28 00:00:00\n", + "Buying IRM on 2021-02-28 00:00:00\n", + "Buying SJM on 2021-02-28 00:00:00\n", + "Buying DGX on 2021-02-28 00:00:00\n", + "Buying MKTX on 2021-02-28 00:00:00\n", + "Buying GIS on 2021-02-28 00:00:00\n", + "Buying TAP on 2021-02-28 00:00:00\n", + "Buying CHD on 2021-02-28 00:00:00\n", + "Buying DUK on 2021-02-28 00:00:00\n", + "Buying PARA on 2021-02-28 00:00:00\n", + "Buying D on 2021-02-28 00:00:00\n", + "Buying TSCO on 2021-02-28 00:00:00\n", + "Buying KHC on 2021-02-28 00:00:00\n", + "Buying ERIE on 2021-02-28 00:00:00\n", + "Selling APTV on 2021-02-28 00:00:00\n", + "Selling KMX on 2021-02-28 00:00:00\n", + "Selling FCX on 2021-02-28 00:00:00\n", + "Selling JBL on 2021-02-28 00:00:00\n", + "Selling DFS on 2021-02-28 00:00:00\n", + "Selling SYF on 2021-02-28 00:00:00\n", + "Selling NCLH on 2021-02-28 00:00:00\n", + "Selling MTCH on 2021-02-28 00:00:00\n", + "Selling TXT on 2021-02-28 00:00:00\n", + "Selling NFLX on 2021-02-28 00:00:00\n", + "Selling BKNG on 2021-02-28 00:00:00\n", + "Selling PTC on 2021-02-28 00:00:00\n", + "Selling SWKS on 2021-02-28 00:00:00\n", + "Selling MPWR on 2021-02-28 00:00:00\n", + "Buying PARA on 2021-03-31 00:00:00\n", + "Buying IRM on 2021-03-31 00:00:00\n", + "Buying CLX on 2021-03-31 00:00:00\n", + "Buying SJM on 2021-03-31 00:00:00\n", + "Buying DGX on 2021-03-31 00:00:00\n", + "Buying TAP on 2021-03-31 00:00:00\n", + "Buying GIS on 2021-03-31 00:00:00\n", + "Buying DUK on 2021-03-31 00:00:00\n", + "Buying NI on 2021-03-31 00:00:00\n", + "Buying CHD on 2021-03-31 00:00:00\n", + "Buying AEP on 2021-03-31 00:00:00\n", + "Buying PPL on 2021-03-31 00:00:00\n", + "Buying EXR on 2021-03-31 00:00:00\n", + "Buying CMS on 2021-03-31 00:00:00\n", + "Selling ADBE on 2021-03-31 00:00:00\n", + "Selling SYF on 2021-03-31 00:00:00\n", + "Selling INCY on 2021-03-31 00:00:00\n", + "Selling BKNG on 2021-03-31 00:00:00\n", + "Selling IDXX on 2021-03-31 00:00:00\n", + "Selling NFLX on 2021-03-31 00:00:00\n", + "Selling JBL on 2021-03-31 00:00:00\n", + "Selling CRWD on 2021-03-31 00:00:00\n", + "Selling NOW on 2021-03-31 00:00:00\n", + "Selling MTCH on 2021-03-31 00:00:00\n", + "Selling FCX on 2021-03-31 00:00:00\n", + "Selling SWKS on 2021-03-31 00:00:00\n", + "Selling PTC on 2021-03-31 00:00:00\n", + "Selling MPWR on 2021-03-31 00:00:00\n", + "Buying PARA on 2021-04-30 00:00:00\n", + "Buying HAS on 2021-04-30 00:00:00\n", + "Buying CLX on 2021-04-30 00:00:00\n", + "Buying EXR on 2021-04-30 00:00:00\n", + "Buying SJM on 2021-04-30 00:00:00\n", + "Buying DGX on 2021-04-30 00:00:00\n", + "Buying CMS on 2021-04-30 00:00:00\n", + "Buying PNW on 2021-04-30 00:00:00\n", + "Buying NI on 2021-04-30 00:00:00\n", + "Buying CHD on 2021-04-30 00:00:00\n", + "Buying PPL on 2021-04-30 00:00:00\n", + "Buying T on 2021-04-30 00:00:00\n", + "Buying DUK on 2021-04-30 00:00:00\n", + "Buying AEP on 2021-04-30 00:00:00\n", + "Selling CTAS on 2021-04-30 00:00:00\n", + "Selling AXON on 2021-04-30 00:00:00\n", + "Selling IDXX on 2021-04-30 00:00:00\n", + "Selling PHM on 2021-04-30 00:00:00\n", + "Selling ADBE on 2021-04-30 00:00:00\n", + "Selling MKTX on 2021-04-30 00:00:00\n", + "Selling JBL on 2021-04-30 00:00:00\n", + "Selling NOW on 2021-04-30 00:00:00\n", + "Selling CRWD on 2021-04-30 00:00:00\n", + "Selling PTC on 2021-04-30 00:00:00\n", + "Selling MTCH on 2021-04-30 00:00:00\n", + "Selling FCX on 2021-04-30 00:00:00\n", + "Selling SWKS on 2021-04-30 00:00:00\n", + "Selling MPWR on 2021-04-30 00:00:00\n", + "Buying PARA on 2021-05-31 00:00:00\n", + "Buying GEN on 2021-05-31 00:00:00\n", + "Buying DGX on 2021-05-31 00:00:00\n", + "Buying NI on 2021-05-31 00:00:00\n", + "Buying CVS on 2021-05-31 00:00:00\n", + "Buying COR on 2021-05-31 00:00:00\n", + "Buying CHD on 2021-05-31 00:00:00\n", + "Buying CMS on 2021-05-31 00:00:00\n", + "Buying PPL on 2021-05-31 00:00:00\n", + "Buying VST on 2021-05-31 00:00:00\n", + "Buying CLX on 2021-05-31 00:00:00\n", + "Buying CBOE on 2021-05-31 00:00:00\n", + "Buying BMY on 2021-05-31 00:00:00\n", + "Buying AEP on 2021-05-31 00:00:00\n", + "Selling ADBE on 2021-05-31 00:00:00\n", + "Selling CTAS on 2021-05-31 00:00:00\n", + "Selling NCLH on 2021-05-31 00:00:00\n", + "Selling IDXX on 2021-05-31 00:00:00\n", + "Selling TEL on 2021-05-31 00:00:00\n", + "Selling BWA on 2021-05-31 00:00:00\n", + "Selling JBL on 2021-05-31 00:00:00\n", + "Selling PTC on 2021-05-31 00:00:00\n", + "Selling PHM on 2021-05-31 00:00:00\n", + "Selling MTCH on 2021-05-31 00:00:00\n", + "Selling AXON on 2021-05-31 00:00:00\n", + "Selling FCX on 2021-05-31 00:00:00\n", + "Selling SWKS on 2021-05-31 00:00:00\n", + "Selling MPWR on 2021-05-31 00:00:00\n", + "Buying GEN on 2021-06-30 00:00:00\n", + "Buying CLX on 2021-06-30 00:00:00\n", + "Buying BDX on 2021-06-30 00:00:00\n", + "Buying BMY on 2021-06-30 00:00:00\n", + "Buying CHD on 2021-06-30 00:00:00\n", + "Buying CVS on 2021-06-30 00:00:00\n", + "Buying DGX on 2021-06-30 00:00:00\n", + "Buying INCY on 2021-06-30 00:00:00\n", + "Buying COR on 2021-06-30 00:00:00\n", + "Buying GILD on 2021-06-30 00:00:00\n", + "Buying GIS on 2021-06-30 00:00:00\n", + "Buying EQIX on 2021-06-30 00:00:00\n", + "Buying T on 2021-06-30 00:00:00\n", + "Buying DG on 2021-06-30 00:00:00\n", + "Selling CTAS on 2021-06-30 00:00:00\n", + "Selling TAP on 2021-06-30 00:00:00\n", + "Selling NWSA on 2021-06-30 00:00:00\n", + "Selling BWA on 2021-06-30 00:00:00\n", + "Selling AXON on 2021-06-30 00:00:00\n", + "Selling STLD on 2021-06-30 00:00:00\n", + "Selling NUE on 2021-06-30 00:00:00\n", + "Selling PHM on 2021-06-30 00:00:00\n", + "Selling JBL on 2021-06-30 00:00:00\n", + "Selling APTV on 2021-06-30 00:00:00\n", + "Selling TEL on 2021-06-30 00:00:00\n", + "Selling NCLH on 2021-06-30 00:00:00\n", + "Selling SWKS on 2021-06-30 00:00:00\n", + "Selling MPWR on 2021-06-30 00:00:00\n", + "Buying GEN on 2021-07-31 00:00:00\n", + "Buying BDX on 2021-07-31 00:00:00\n", + "Buying EQIX on 2021-07-31 00:00:00\n", + "Buying CLX on 2021-07-31 00:00:00\n", + "Buying GIS on 2021-07-31 00:00:00\n", + "Buying CHD on 2021-07-31 00:00:00\n", + "Buying CRWD on 2021-07-31 00:00:00\n", + "Buying SJM on 2021-07-31 00:00:00\n", + "Buying VRTX on 2021-07-31 00:00:00\n", + "Buying GILD on 2021-07-31 00:00:00\n", + "Buying INCY on 2021-07-31 00:00:00\n", + "Buying MKTX on 2021-07-31 00:00:00\n", + "Buying DGX on 2021-07-31 00:00:00\n", + "Buying BMY on 2021-07-31 00:00:00\n", + "Selling LYV on 2021-07-31 00:00:00\n", + "Selling PHM on 2021-07-31 00:00:00\n", + "Selling SYF on 2021-07-31 00:00:00\n", + "Selling FCX on 2021-07-31 00:00:00\n", + "Selling DFS on 2021-07-31 00:00:00\n", + "Selling KMX on 2021-07-31 00:00:00\n", + "Selling NUE on 2021-07-31 00:00:00\n", + "Selling MAR on 2021-07-31 00:00:00\n", + "Selling APTV on 2021-07-31 00:00:00\n", + "Selling STLD on 2021-07-31 00:00:00\n", + "Selling TXT on 2021-07-31 00:00:00\n", + "Selling JBL on 2021-07-31 00:00:00\n", + "Selling DRI on 2021-07-31 00:00:00\n", + "Selling NCLH on 2021-07-31 00:00:00\n", + "Buying CLX on 2021-08-31 00:00:00\n", + "Buying EQIX on 2021-08-31 00:00:00\n", + "Buying BDX on 2021-08-31 00:00:00\n", + "Buying NFLX on 2021-08-31 00:00:00\n", + "Buying MKTX on 2021-08-31 00:00:00\n", + "Buying DGX on 2021-08-31 00:00:00\n", + "Buying CHD on 2021-08-31 00:00:00\n", + "Buying RMD on 2021-08-31 00:00:00\n", + "Buying CRWD on 2021-08-31 00:00:00\n", + "Buying SJM on 2021-08-31 00:00:00\n", + "Buying VRTX on 2021-08-31 00:00:00\n", + "Buying RVTY on 2021-08-31 00:00:00\n", + "Buying GIS on 2021-08-31 00:00:00\n", + "Buying CCI on 2021-08-31 00:00:00\n", + "Selling NUE on 2021-08-31 00:00:00\n", + "Selling MAR on 2021-08-31 00:00:00\n", + "Selling WFC on 2021-08-31 00:00:00\n", + "Selling TXT on 2021-08-31 00:00:00\n", + "Selling TRGP on 2021-08-31 00:00:00\n", + "Selling LYB on 2021-08-31 00:00:00\n", + "Selling SYF on 2021-08-31 00:00:00\n", + "Selling DRI on 2021-08-31 00:00:00\n", + "Selling HBAN on 2021-08-31 00:00:00\n", + "Selling DFS on 2021-08-31 00:00:00\n", + "Selling STLD on 2021-08-31 00:00:00\n", + "Selling PSX on 2021-08-31 00:00:00\n", + "Selling FCX on 2021-08-31 00:00:00\n", + "Selling NCLH on 2021-08-31 00:00:00\n", + "Buying CLX on 2021-09-30 00:00:00\n", + "Buying CHD on 2021-09-30 00:00:00\n", + "Buying SJM on 2021-09-30 00:00:00\n", + "Buying EQIX on 2021-09-30 00:00:00\n", + "Buying BDX on 2021-09-30 00:00:00\n", + "Buying INCY on 2021-09-30 00:00:00\n", + "Buying FDS on 2021-09-30 00:00:00\n", + "Buying MKTX on 2021-09-30 00:00:00\n", + "Buying RMD on 2021-09-30 00:00:00\n", + "Buying CMS on 2021-09-30 00:00:00\n", + "Buying D on 2021-09-30 00:00:00\n", + "Buying PNW on 2021-09-30 00:00:00\n", + "Buying GIS on 2021-09-30 00:00:00\n", + "Buying CCI on 2021-09-30 00:00:00\n", + "Selling WFC on 2021-09-30 00:00:00\n", + "Selling BX on 2021-09-30 00:00:00\n", + "Selling GE on 2021-09-30 00:00:00\n", + "Selling SYF on 2021-09-30 00:00:00\n", + "Selling PSX on 2021-09-30 00:00:00\n", + "Selling DRI on 2021-09-30 00:00:00\n", + "Selling APO on 2021-09-30 00:00:00\n", + "Selling HBAN on 2021-09-30 00:00:00\n", + "Selling DFS on 2021-09-30 00:00:00\n", + "Selling TRGP on 2021-09-30 00:00:00\n", + "Selling STLD on 2021-09-30 00:00:00\n", + "Selling NUE on 2021-09-30 00:00:00\n", + "Selling FCX on 2021-09-30 00:00:00\n", + "Selling NCLH on 2021-09-30 00:00:00\n", + "Buying PNW on 2021-10-31 00:00:00\n", + "Buying CLX on 2021-10-31 00:00:00\n", + "Buying CMS on 2021-10-31 00:00:00\n", + "Buying NEM on 2021-10-31 00:00:00\n", + "Buying SJM on 2021-10-31 00:00:00\n", + "Buying CHD on 2021-10-31 00:00:00\n", + "Buying NI on 2021-10-31 00:00:00\n", + "Buying WELL on 2021-10-31 00:00:00\n", + "Buying FDS on 2021-10-31 00:00:00\n", + "Buying DUK on 2021-10-31 00:00:00\n", + "Buying D on 2021-10-31 00:00:00\n", + "Buying AEP on 2021-10-31 00:00:00\n", + "Buying SO on 2021-10-31 00:00:00\n", + "Buying INCY on 2021-10-31 00:00:00\n", + "Selling KMX on 2021-10-31 00:00:00\n", + "Selling KEYS on 2021-10-31 00:00:00\n", + "Selling BLK on 2021-10-31 00:00:00\n", + "Selling STLD on 2021-10-31 00:00:00\n", + "Selling DFS on 2021-10-31 00:00:00\n", + "Selling NOW on 2021-10-31 00:00:00\n", + "Selling PTC on 2021-10-31 00:00:00\n", + "Selling TEL on 2021-10-31 00:00:00\n", + "Selling CAT on 2021-10-31 00:00:00\n", + "Selling J on 2021-10-31 00:00:00\n", + "Selling NUE on 2021-10-31 00:00:00\n", + "Selling BX on 2021-10-31 00:00:00\n", + "Selling APO on 2021-10-31 00:00:00\n", + "Selling FCX on 2021-10-31 00:00:00\n", + "Buying NEM on 2021-11-30 00:00:00\n", + "Buying CLX on 2021-11-30 00:00:00\n", + "Buying PNW on 2021-11-30 00:00:00\n", + "Buying SJM on 2021-11-30 00:00:00\n", + "Buying MKTX on 2021-11-30 00:00:00\n", + "Buying FDS on 2021-11-30 00:00:00\n", + "Buying CMS on 2021-11-30 00:00:00\n", + "Buying BDX on 2021-11-30 00:00:00\n", + "Buying CHD on 2021-11-30 00:00:00\n", + "Buying GILD on 2021-11-30 00:00:00\n", + "Buying DUK on 2021-11-30 00:00:00\n", + "Buying AEP on 2021-11-30 00:00:00\n", + "Buying NI on 2021-11-30 00:00:00\n", + "Buying KHC on 2021-11-30 00:00:00\n", + "Selling DFS on 2021-11-30 00:00:00\n", + "Selling LYV on 2021-11-30 00:00:00\n", + "Selling NOW on 2021-11-30 00:00:00\n", + "Selling NUE on 2021-11-30 00:00:00\n", + "Selling PTC on 2021-11-30 00:00:00\n", + "Selling TEL on 2021-11-30 00:00:00\n", + "Selling PH on 2021-11-30 00:00:00\n", + "Selling KEYS on 2021-11-30 00:00:00\n", + "Selling MPWR on 2021-11-30 00:00:00\n", + "Selling NCLH on 2021-11-30 00:00:00\n", + "Selling EPAM on 2021-11-30 00:00:00\n", + "Selling FCX on 2021-11-30 00:00:00\n", + "Selling APO on 2021-11-30 00:00:00\n", + "Selling BX on 2021-11-30 00:00:00\n", + "Buying NEM on 2021-12-31 00:00:00\n", + "Buying CLX on 2021-12-31 00:00:00\n", + "Buying BMY on 2021-12-31 00:00:00\n", + "Buying SJM on 2021-12-31 00:00:00\n", + "Buying BDX on 2021-12-31 00:00:00\n", + "Buying GILD on 2021-12-31 00:00:00\n", + "Buying DGX on 2021-12-31 00:00:00\n", + "Buying DG on 2021-12-31 00:00:00\n", + "Buying CHD on 2021-12-31 00:00:00\n", + "Buying GIS on 2021-12-31 00:00:00\n", + "Buying PNW on 2021-12-31 00:00:00\n", + "Buying VRTX on 2021-12-31 00:00:00\n", + "Buying DUK on 2021-12-31 00:00:00\n", + "Buying PKG on 2021-12-31 00:00:00\n", + "Selling MPWR on 2021-12-31 00:00:00\n", + "Selling TXT on 2021-12-31 00:00:00\n", + "Selling ULTA on 2021-12-31 00:00:00\n", + "Selling JBL on 2021-12-31 00:00:00\n", + "Selling BKNG on 2021-12-31 00:00:00\n", + "Selling APTV on 2021-12-31 00:00:00\n", + "Selling LYV on 2021-12-31 00:00:00\n", + "Selling FCX on 2021-12-31 00:00:00\n", + "Selling CRM on 2021-12-31 00:00:00\n", + "Selling EPAM on 2021-12-31 00:00:00\n", + "Selling ADBE on 2021-12-31 00:00:00\n", + "Selling BX on 2021-12-31 00:00:00\n", + "Selling NCLH on 2021-12-31 00:00:00\n", + "Selling NOW on 2021-12-31 00:00:00\n", + "Buying NEM on 2022-01-31 00:00:00\n", + "Buying CLX on 2022-01-31 00:00:00\n", + "Buying SJM on 2022-01-31 00:00:00\n", + "Buying BMY on 2022-01-31 00:00:00\n", + "Buying BDX on 2022-01-31 00:00:00\n", + "Buying GIS on 2022-01-31 00:00:00\n", + "Buying DGX on 2022-01-31 00:00:00\n", + "Buying DUK on 2022-01-31 00:00:00\n", + "Buying CMS on 2022-01-31 00:00:00\n", + "Buying KHC on 2022-01-31 00:00:00\n", + "Buying DG on 2022-01-31 00:00:00\n", + "Buying GILD on 2022-01-31 00:00:00\n", + "Buying AEP on 2022-01-31 00:00:00\n", + "Buying PPL on 2022-01-31 00:00:00\n", + "Selling IDXX on 2022-01-31 00:00:00\n", + "Selling JBL on 2022-01-31 00:00:00\n", + "Selling LVS on 2022-01-31 00:00:00\n", + "Selling ULTA on 2022-01-31 00:00:00\n", + "Selling LYV on 2022-01-31 00:00:00\n", + "Selling NFLX on 2022-01-31 00:00:00\n", + "Selling CRWD on 2022-01-31 00:00:00\n", + "Selling BX on 2022-01-31 00:00:00\n", + "Selling MPWR on 2022-01-31 00:00:00\n", + "Selling NCLH on 2022-01-31 00:00:00\n", + "Selling ADBE on 2022-01-31 00:00:00\n", + "Selling CRM on 2022-01-31 00:00:00\n", + "Selling NOW on 2022-01-31 00:00:00\n", + "Selling EPAM on 2022-01-31 00:00:00\n", + "Buying NEM on 2022-02-28 00:00:00\n", + "Buying CLX on 2022-02-28 00:00:00\n", + "Buying SJM on 2022-02-28 00:00:00\n", + "Buying GIS on 2022-02-28 00:00:00\n", + "Buying KHC on 2022-02-28 00:00:00\n", + "Buying BDX on 2022-02-28 00:00:00\n", + "Buying CMS on 2022-02-28 00:00:00\n", + "Buying BMY on 2022-02-28 00:00:00\n", + "Buying GILD on 2022-02-28 00:00:00\n", + "Buying CHD on 2022-02-28 00:00:00\n", + "Buying ABBV on 2022-02-28 00:00:00\n", + "Buying SO on 2022-02-28 00:00:00\n", + "Buying ALL on 2022-02-28 00:00:00\n", + "Buying DUK on 2022-02-28 00:00:00\n", + "Selling LYV on 2022-02-28 00:00:00\n", + "Selling AMZN on 2022-02-28 00:00:00\n", + "Selling ULTA on 2022-02-28 00:00:00\n", + "Selling PHM on 2022-02-28 00:00:00\n", + "Selling MTCH on 2022-02-28 00:00:00\n", + "Selling BX on 2022-02-28 00:00:00\n", + "Selling NCLH on 2022-02-28 00:00:00\n", + "Selling NFLX on 2022-02-28 00:00:00\n", + "Selling CRM on 2022-02-28 00:00:00\n", + "Selling ADBE on 2022-02-28 00:00:00\n", + "Selling MPWR on 2022-02-28 00:00:00\n", + "Selling CRWD on 2022-02-28 00:00:00\n", + "Selling EPAM on 2022-02-28 00:00:00\n", + "Selling NOW on 2022-02-28 00:00:00\n", + "Buying NEM on 2022-03-31 00:00:00\n", + "Buying CF on 2022-03-31 00:00:00\n", + "Buying LHX on 2022-03-31 00:00:00\n", + "Buying KHC on 2022-03-31 00:00:00\n", + "Buying PSX on 2022-03-31 00:00:00\n", + "Buying SJM on 2022-03-31 00:00:00\n", + "Buying CMS on 2022-03-31 00:00:00\n", + "Buying LDOS on 2022-03-31 00:00:00\n", + "Buying SO on 2022-03-31 00:00:00\n", + "Buying CLX on 2022-03-31 00:00:00\n", + "Buying AEP on 2022-03-31 00:00:00\n", + "Buying GIS on 2022-03-31 00:00:00\n", + "Buying D on 2022-03-31 00:00:00\n", + "Buying DUK on 2022-03-31 00:00:00\n", + "Selling SWKS on 2022-03-31 00:00:00\n", + "Selling APTV on 2022-03-31 00:00:00\n", + "Selling AXON on 2022-03-31 00:00:00\n", + "Selling ADBE on 2022-03-31 00:00:00\n", + "Selling CRM on 2022-03-31 00:00:00\n", + "Selling LVS on 2022-03-31 00:00:00\n", + "Selling NFLX on 2022-03-31 00:00:00\n", + "Selling CRWD on 2022-03-31 00:00:00\n", + "Selling BX on 2022-03-31 00:00:00\n", + "Selling NCLH on 2022-03-31 00:00:00\n", + "Selling NOW on 2022-03-31 00:00:00\n", + "Selling MTCH on 2022-03-31 00:00:00\n", + "Selling MPWR on 2022-03-31 00:00:00\n", + "Selling EPAM on 2022-03-31 00:00:00\n", + "Buying NEM on 2022-04-30 00:00:00\n", + "Buying CF on 2022-04-30 00:00:00\n", + "Buying LHX on 2022-04-30 00:00:00\n", + "Buying LDOS on 2022-04-30 00:00:00\n", + "Buying KHC on 2022-04-30 00:00:00\n", + "Buying CMS on 2022-04-30 00:00:00\n", + "Buying SJM on 2022-04-30 00:00:00\n", + "Buying CLX on 2022-04-30 00:00:00\n", + "Buying CHD on 2022-04-30 00:00:00\n", + "Buying HII on 2022-04-30 00:00:00\n", + "Buying DUK on 2022-04-30 00:00:00\n", + "Buying SO on 2022-04-30 00:00:00\n", + "Buying PSX on 2022-04-30 00:00:00\n", + "Buying D on 2022-04-30 00:00:00\n", + "Selling SWKS on 2022-04-30 00:00:00\n", + "Selling APTV on 2022-04-30 00:00:00\n", + "Selling APO on 2022-04-30 00:00:00\n", + "Selling AXON on 2022-04-30 00:00:00\n", + "Selling CRM on 2022-04-30 00:00:00\n", + "Selling LVS on 2022-04-30 00:00:00\n", + "Selling CRWD on 2022-04-30 00:00:00\n", + "Selling AMZN on 2022-04-30 00:00:00\n", + "Selling BX on 2022-04-30 00:00:00\n", + "Selling NCLH on 2022-04-30 00:00:00\n", + "Selling NOW on 2022-04-30 00:00:00\n", + "Selling MTCH on 2022-04-30 00:00:00\n", + "Selling MPWR on 2022-04-30 00:00:00\n", + "Selling EPAM on 2022-04-30 00:00:00\n", + "Buying DUK on 2022-05-31 00:00:00\n", + "Buying CMS on 2022-05-31 00:00:00\n", + "Buying LHX on 2022-05-31 00:00:00\n", + "Buying SO on 2022-05-31 00:00:00\n", + "Buying PNW on 2022-05-31 00:00:00\n", + "Buying D on 2022-05-31 00:00:00\n", + "Buying NEM on 2022-05-31 00:00:00\n", + "Buying ABBV on 2022-05-31 00:00:00\n", + "Buying BMY on 2022-05-31 00:00:00\n", + "Buying SJM on 2022-05-31 00:00:00\n", + "Buying CHD on 2022-05-31 00:00:00\n", + "Buying AEP on 2022-05-31 00:00:00\n", + "Buying SRE on 2022-05-31 00:00:00\n", + "Buying NRG on 2022-05-31 00:00:00\n", + "Selling CRM on 2022-05-31 00:00:00\n", + "Selling ULTA on 2022-05-31 00:00:00\n", + "Selling APTV on 2022-05-31 00:00:00\n", + "Selling EPAM on 2022-05-31 00:00:00\n", + "Selling NFLX on 2022-05-31 00:00:00\n", + "Selling AXON on 2022-05-31 00:00:00\n", + "Selling LVS on 2022-05-31 00:00:00\n", + "Selling BX on 2022-05-31 00:00:00\n", + "Selling AMZN on 2022-05-31 00:00:00\n", + "Selling NOW on 2022-05-31 00:00:00\n", + "Selling MTCH on 2022-05-31 00:00:00\n", + "Selling CRWD on 2022-05-31 00:00:00\n", + "Selling NCLH on 2022-05-31 00:00:00\n", + "Selling MPWR on 2022-05-31 00:00:00\n", + "Buying DUK on 2022-06-30 00:00:00\n", + "Buying CHD on 2022-06-30 00:00:00\n", + "Buying ABBV on 2022-06-30 00:00:00\n", + "Buying PNW on 2022-06-30 00:00:00\n", + "Buying D on 2022-06-30 00:00:00\n", + "Buying CMS on 2022-06-30 00:00:00\n", + "Buying GIS on 2022-06-30 00:00:00\n", + "Buying BMY on 2022-06-30 00:00:00\n", + "Buying NEM on 2022-06-30 00:00:00\n", + "Buying SO on 2022-06-30 00:00:00\n", + "Buying LHX on 2022-06-30 00:00:00\n", + "Buying SJM on 2022-06-30 00:00:00\n", + "Buying GILD on 2022-06-30 00:00:00\n", + "Buying AEP on 2022-06-30 00:00:00\n", + "Selling PTC on 2022-06-30 00:00:00\n", + "Selling APO on 2022-06-30 00:00:00\n", + "Selling ULTA on 2022-06-30 00:00:00\n", + "Selling CRM on 2022-06-30 00:00:00\n", + "Selling NFLX on 2022-06-30 00:00:00\n", + "Selling APTV on 2022-06-30 00:00:00\n", + "Selling AXON on 2022-06-30 00:00:00\n", + "Selling BX on 2022-06-30 00:00:00\n", + "Selling MTCH on 2022-06-30 00:00:00\n", + "Selling NOW on 2022-06-30 00:00:00\n", + "Selling AMZN on 2022-06-30 00:00:00\n", + "Selling CRWD on 2022-06-30 00:00:00\n", + "Selling MPWR on 2022-06-30 00:00:00\n", + "Selling NCLH on 2022-06-30 00:00:00\n", + "Buying ABBV on 2022-07-31 00:00:00\n", + "Buying DUK on 2022-07-31 00:00:00\n", + "Buying CHD on 2022-07-31 00:00:00\n", + "Buying KHC on 2022-07-31 00:00:00\n", + "Buying NEM on 2022-07-31 00:00:00\n", + "Buying PNW on 2022-07-31 00:00:00\n", + "Buying GIS on 2022-07-31 00:00:00\n", + "Buying BMY on 2022-07-31 00:00:00\n", + "Buying D on 2022-07-31 00:00:00\n", + "Buying GILD on 2022-07-31 00:00:00\n", + "Buying CMS on 2022-07-31 00:00:00\n", + "Buying SO on 2022-07-31 00:00:00\n", + "Buying SJM on 2022-07-31 00:00:00\n", + "Buying AEP on 2022-07-31 00:00:00\n", + "Selling CRL on 2022-07-31 00:00:00\n", + "Selling FCX on 2022-07-31 00:00:00\n", + "Selling CRM on 2022-07-31 00:00:00\n", + "Selling GM on 2022-07-31 00:00:00\n", + "Selling NOW on 2022-07-31 00:00:00\n", + "Selling AXON on 2022-07-31 00:00:00\n", + "Selling AMZN on 2022-07-31 00:00:00\n", + "Selling BX on 2022-07-31 00:00:00\n", + "Selling NFLX on 2022-07-31 00:00:00\n", + "Selling MTCH on 2022-07-31 00:00:00\n", + "Selling APTV on 2022-07-31 00:00:00\n", + "Selling MPWR on 2022-07-31 00:00:00\n", + "Selling CRWD on 2022-07-31 00:00:00\n", + "Selling NCLH on 2022-07-31 00:00:00\n", + "Buying KHC on 2022-08-31 00:00:00\n", + "Buying CHD on 2022-08-31 00:00:00\n", + "Buying GIS on 2022-08-31 00:00:00\n", + "Buying NEM on 2022-08-31 00:00:00\n", + "Buying SJM on 2022-08-31 00:00:00\n", + "Buying BMY on 2022-08-31 00:00:00\n", + "Buying CLX on 2022-08-31 00:00:00\n", + "Buying DUK on 2022-08-31 00:00:00\n", + "Buying ABBV on 2022-08-31 00:00:00\n", + "Buying D on 2022-08-31 00:00:00\n", + "Buying PNW on 2022-08-31 00:00:00\n", + "Buying SO on 2022-08-31 00:00:00\n", + "Buying DG on 2022-08-31 00:00:00\n", + "Buying CMS on 2022-08-31 00:00:00\n", + "Selling APO on 2022-08-31 00:00:00\n", + "Selling SWKS on 2022-08-31 00:00:00\n", + "Selling GM on 2022-08-31 00:00:00\n", + "Selling CRM on 2022-08-31 00:00:00\n", + "Selling MTCH on 2022-08-31 00:00:00\n", + "Selling NOW on 2022-08-31 00:00:00\n", + "Selling AXON on 2022-08-31 00:00:00\n", + "Selling AMZN on 2022-08-31 00:00:00\n", + "Selling CRWD on 2022-08-31 00:00:00\n", + "Selling NFLX on 2022-08-31 00:00:00\n", + "Selling MPWR on 2022-08-31 00:00:00\n", + "Selling BX on 2022-08-31 00:00:00\n", + "Selling APTV on 2022-08-31 00:00:00\n", + "Selling NCLH on 2022-08-31 00:00:00\n", + "Buying KHC on 2022-09-30 00:00:00\n", + "Buying GIS on 2022-09-30 00:00:00\n", + "Buying SJM on 2022-09-30 00:00:00\n", + "Buying BMY on 2022-09-30 00:00:00\n", + "Buying CHD on 2022-09-30 00:00:00\n", + "Buying ERIE on 2022-09-30 00:00:00\n", + "Buying ABBV on 2022-09-30 00:00:00\n", + "Buying CLX on 2022-09-30 00:00:00\n", + "Buying CBOE on 2022-09-30 00:00:00\n", + "Buying NEM on 2022-09-30 00:00:00\n", + "Buying T on 2022-09-30 00:00:00\n", + "Buying O on 2022-09-30 00:00:00\n", + "Buying DG on 2022-09-30 00:00:00\n", + "Buying WELL on 2022-09-30 00:00:00\n", + "Selling BLK on 2022-09-30 00:00:00\n", + "Selling MTCH on 2022-09-30 00:00:00\n", + "Selling GM on 2022-09-30 00:00:00\n", + "Selling ADBE on 2022-09-30 00:00:00\n", + "Selling AXON on 2022-09-30 00:00:00\n", + "Selling NOW on 2022-09-30 00:00:00\n", + "Selling CRWD on 2022-09-30 00:00:00\n", + "Selling MPWR on 2022-09-30 00:00:00\n", + "Selling BX on 2022-09-30 00:00:00\n", + "Selling AMZN on 2022-09-30 00:00:00\n", + "Selling KMX on 2022-09-30 00:00:00\n", + "Selling APTV on 2022-09-30 00:00:00\n", + "Selling NFLX on 2022-09-30 00:00:00\n", + "Selling NCLH on 2022-09-30 00:00:00\n", + "Buying GIS on 2022-10-31 00:00:00\n", + "Buying BMY on 2022-10-31 00:00:00\n", + "Buying SJM on 2022-10-31 00:00:00\n", + "Buying KHC on 2022-10-31 00:00:00\n", + "Buying ERIE on 2022-10-31 00:00:00\n", + "Buying ABBV on 2022-10-31 00:00:00\n", + "Buying EW on 2022-10-31 00:00:00\n", + "Buying CHD on 2022-10-31 00:00:00\n", + "Buying DG on 2022-10-31 00:00:00\n", + "Buying INCY on 2022-10-31 00:00:00\n", + "Buying CBOE on 2022-10-31 00:00:00\n", + "Buying HII on 2022-10-31 00:00:00\n", + "Buying ORLY on 2022-10-31 00:00:00\n", + "Buying TAP on 2022-10-31 00:00:00\n", + "Selling PHM on 2022-10-31 00:00:00\n", + "Selling CE on 2022-10-31 00:00:00\n", + "Selling FCX on 2022-10-31 00:00:00\n", + "Selling APO on 2022-10-31 00:00:00\n", + "Selling NFLX on 2022-10-31 00:00:00\n", + "Selling SYF on 2022-10-31 00:00:00\n", + "Selling BLK on 2022-10-31 00:00:00\n", + "Selling MTCH on 2022-10-31 00:00:00\n", + "Selling SWKS on 2022-10-31 00:00:00\n", + "Selling KMX on 2022-10-31 00:00:00\n", + "Selling BX on 2022-10-31 00:00:00\n", + "Selling MPWR on 2022-10-31 00:00:00\n", + "Selling APTV on 2022-10-31 00:00:00\n", + "Selling NCLH on 2022-10-31 00:00:00\n", + "Buying GIS on 2022-11-30 00:00:00\n", + "Buying SJM on 2022-11-30 00:00:00\n", + "Buying BMY on 2022-11-30 00:00:00\n", + "Buying KHC on 2022-11-30 00:00:00\n", + "Buying ERIE on 2022-11-30 00:00:00\n", + "Buying CBOE on 2022-11-30 00:00:00\n", + "Buying CAH on 2022-11-30 00:00:00\n", + "Buying INCY on 2022-11-30 00:00:00\n", + "Buying GEN on 2022-11-30 00:00:00\n", + "Buying ABBV on 2022-11-30 00:00:00\n", + "Buying COR on 2022-11-30 00:00:00\n", + "Buying LDOS on 2022-11-30 00:00:00\n", + "Buying ORLY on 2022-11-30 00:00:00\n", + "Buying LHX on 2022-11-30 00:00:00\n", + "Selling SYF on 2022-11-30 00:00:00\n", + "Selling KMX on 2022-11-30 00:00:00\n", + "Selling AMZN on 2022-11-30 00:00:00\n", + "Selling PARA on 2022-11-30 00:00:00\n", + "Selling FCX on 2022-11-30 00:00:00\n", + "Selling BLK on 2022-11-30 00:00:00\n", + "Selling SWKS on 2022-11-30 00:00:00\n", + "Selling CE on 2022-11-30 00:00:00\n", + "Selling NCLH on 2022-11-30 00:00:00\n", + "Selling EPAM on 2022-11-30 00:00:00\n", + "Selling MTCH on 2022-11-30 00:00:00\n", + "Selling APTV on 2022-11-30 00:00:00\n", + "Selling BX on 2022-11-30 00:00:00\n", + "Selling MPWR on 2022-11-30 00:00:00\n", + "Buying SJM on 2022-12-31 00:00:00\n", + "Buying GIS on 2022-12-31 00:00:00\n", + "Buying KHC on 2022-12-31 00:00:00\n", + "Buying CAH on 2022-12-31 00:00:00\n", + "Buying BMY on 2022-12-31 00:00:00\n", + "Buying INCY on 2022-12-31 00:00:00\n", + "Buying COR on 2022-12-31 00:00:00\n", + "Buying ABBV on 2022-12-31 00:00:00\n", + "Buying CBOE on 2022-12-31 00:00:00\n", + "Buying LDOS on 2022-12-31 00:00:00\n", + "Buying LHX on 2022-12-31 00:00:00\n", + "Buying GEN on 2022-12-31 00:00:00\n", + "Buying ORLY on 2022-12-31 00:00:00\n", + "Buying VRTX on 2022-12-31 00:00:00\n", + "Selling BLK on 2022-12-31 00:00:00\n", + "Selling NOW on 2022-12-31 00:00:00\n", + "Selling NFLX on 2022-12-31 00:00:00\n", + "Selling FCX on 2022-12-31 00:00:00\n", + "Selling MSFT on 2022-12-31 00:00:00\n", + "Selling CE on 2022-12-31 00:00:00\n", + "Selling APTV on 2022-12-31 00:00:00\n", + "Selling AMZN on 2022-12-31 00:00:00\n", + "Selling PARA on 2022-12-31 00:00:00\n", + "Selling SWKS on 2022-12-31 00:00:00\n", + "Selling BX on 2022-12-31 00:00:00\n", + "Selling MTCH on 2022-12-31 00:00:00\n", + "Selling EPAM on 2022-12-31 00:00:00\n", + "Selling MPWR on 2022-12-31 00:00:00\n", + "Buying SJM on 2023-01-31 00:00:00\n", + "Buying CAH on 2023-01-31 00:00:00\n", + "Buying COR on 2023-01-31 00:00:00\n", + "Buying CBOE on 2023-01-31 00:00:00\n", + "Buying INCY on 2023-01-31 00:00:00\n", + "Buying BMY on 2023-01-31 00:00:00\n", + "Buying VRTX on 2023-01-31 00:00:00\n", + "Buying GIS on 2023-01-31 00:00:00\n", + "Buying ORLY on 2023-01-31 00:00:00\n", + "Buying ACGL on 2023-01-31 00:00:00\n", + "Buying LDOS on 2023-01-31 00:00:00\n", + "Buying KHC on 2023-01-31 00:00:00\n", + "Buying GILD on 2023-01-31 00:00:00\n", + "Buying LHX on 2023-01-31 00:00:00\n", + "Selling ADBE on 2023-01-31 00:00:00\n", + "Selling CRM on 2023-01-31 00:00:00\n", + "Selling NFLX on 2023-01-31 00:00:00\n", + "Selling APTV on 2023-01-31 00:00:00\n", + "Selling CE on 2023-01-31 00:00:00\n", + "Selling KMX on 2023-01-31 00:00:00\n", + "Selling NOW on 2023-01-31 00:00:00\n", + "Selling SWKS on 2023-01-31 00:00:00\n", + "Selling PARA on 2023-01-31 00:00:00\n", + "Selling AMZN on 2023-01-31 00:00:00\n", + "Selling EPAM on 2023-01-31 00:00:00\n", + "Selling MTCH on 2023-01-31 00:00:00\n", + "Selling BX on 2023-01-31 00:00:00\n", + "Selling MPWR on 2023-01-31 00:00:00\n", + "Buying SJM on 2023-02-28 00:00:00\n", + "Buying INCY on 2023-02-28 00:00:00\n", + "Buying GIS on 2023-02-28 00:00:00\n", + "Buying CBOE on 2023-02-28 00:00:00\n", + "Buying COR on 2023-02-28 00:00:00\n", + "Buying ACGL on 2023-02-28 00:00:00\n", + "Buying CF on 2023-02-28 00:00:00\n", + "Buying ABBV on 2023-02-28 00:00:00\n", + "Buying CLX on 2023-02-28 00:00:00\n", + "Buying CAH on 2023-02-28 00:00:00\n", + "Buying ORLY on 2023-02-28 00:00:00\n", + "Buying GILD on 2023-02-28 00:00:00\n", + "Buying DG on 2023-02-28 00:00:00\n", + "Buying CVS on 2023-02-28 00:00:00\n", + "Selling MSFT on 2023-02-28 00:00:00\n", + "Selling NFLX on 2023-02-28 00:00:00\n", + "Selling IDXX on 2023-02-28 00:00:00\n", + "Selling NOW on 2023-02-28 00:00:00\n", + "Selling SWKS on 2023-02-28 00:00:00\n", + "Selling MTCH on 2023-02-28 00:00:00\n", + "Selling NCLH on 2023-02-28 00:00:00\n", + "Selling AMZN on 2023-02-28 00:00:00\n", + "Selling CRWD on 2023-02-28 00:00:00\n", + "Selling KMX on 2023-02-28 00:00:00\n", + "Selling EPAM on 2023-02-28 00:00:00\n", + "Selling BX on 2023-02-28 00:00:00\n", + "Selling PARA on 2023-02-28 00:00:00\n", + "Selling MPWR on 2023-02-28 00:00:00\n", + "Buying GIS on 2023-03-31 00:00:00\n", + "Buying CHD on 2023-03-31 00:00:00\n", + "Buying CLX on 2023-03-31 00:00:00\n", + "Buying ULTA on 2023-03-31 00:00:00\n", + "Buying SJM on 2023-03-31 00:00:00\n", + "Buying DG on 2023-03-31 00:00:00\n", + "Buying ABBV on 2023-03-31 00:00:00\n", + "Buying INCY on 2023-03-31 00:00:00\n", + "Buying COR on 2023-03-31 00:00:00\n", + "Buying BMY on 2023-03-31 00:00:00\n", + "Buying ORLY on 2023-03-31 00:00:00\n", + "Buying NEM on 2023-03-31 00:00:00\n", + "Buying CBOE on 2023-03-31 00:00:00\n", + "Buying PSX on 2023-03-31 00:00:00\n", + "Selling NOW on 2023-03-31 00:00:00\n", + "Selling IDXX on 2023-03-31 00:00:00\n", + "Selling ADBE on 2023-03-31 00:00:00\n", + "Selling SYF on 2023-03-31 00:00:00\n", + "Selling EPAM on 2023-03-31 00:00:00\n", + "Selling USB on 2023-03-31 00:00:00\n", + "Selling AMZN on 2023-03-31 00:00:00\n", + "Selling PARA on 2023-03-31 00:00:00\n", + "Selling APO on 2023-03-31 00:00:00\n", + "Selling KMX on 2023-03-31 00:00:00\n", + "Selling CRWD on 2023-03-31 00:00:00\n", + "Selling MPWR on 2023-03-31 00:00:00\n", + "Selling BX on 2023-03-31 00:00:00\n", + "Selling NCLH on 2023-03-31 00:00:00\n", + "Buying GIS on 2023-04-30 00:00:00\n", + "Buying ABBV on 2023-04-30 00:00:00\n", + "Buying CLX on 2023-04-30 00:00:00\n", + "Buying CHD on 2023-04-30 00:00:00\n", + "Buying DG on 2023-04-30 00:00:00\n", + "Buying NEM on 2023-04-30 00:00:00\n", + "Buying SJM on 2023-04-30 00:00:00\n", + "Buying ULTA on 2023-04-30 00:00:00\n", + "Buying KHC on 2023-04-30 00:00:00\n", + "Buying TAP on 2023-04-30 00:00:00\n", + "Buying GILD on 2023-04-30 00:00:00\n", + "Buying DGX on 2023-04-30 00:00:00\n", + "Buying BMY on 2023-04-30 00:00:00\n", + "Buying INCY on 2023-04-30 00:00:00\n", + "Selling NOW on 2023-04-30 00:00:00\n", + "Selling KMX on 2023-04-30 00:00:00\n", + "Selling ADBE on 2023-04-30 00:00:00\n", + "Selling CE on 2023-04-30 00:00:00\n", + "Selling IDXX on 2023-04-30 00:00:00\n", + "Selling AMZN on 2023-04-30 00:00:00\n", + "Selling CRWD on 2023-04-30 00:00:00\n", + "Selling MTCH on 2023-04-30 00:00:00\n", + "Selling APO on 2023-04-30 00:00:00\n", + "Selling BX on 2023-04-30 00:00:00\n", + "Selling HAS on 2023-04-30 00:00:00\n", + "Selling PARA on 2023-04-30 00:00:00\n", + "Selling USB on 2023-04-30 00:00:00\n", + "Selling NCLH on 2023-04-30 00:00:00\n", + "Buying NEM on 2023-05-31 00:00:00\n", + "Buying ULTA on 2023-05-31 00:00:00\n", + "Buying ABBV on 2023-05-31 00:00:00\n", + "Buying GIS on 2023-05-31 00:00:00\n", + "Buying CLX on 2023-05-31 00:00:00\n", + "Buying TAP on 2023-05-31 00:00:00\n", + "Buying SJM on 2023-05-31 00:00:00\n", + "Buying KHC on 2023-05-31 00:00:00\n", + "Buying AEP on 2023-05-31 00:00:00\n", + "Buying CHD on 2023-05-31 00:00:00\n", + "Buying DG on 2023-05-31 00:00:00\n", + "Buying BMY on 2023-05-31 00:00:00\n", + "Buying SO on 2023-05-31 00:00:00\n", + "Buying CMS on 2023-05-31 00:00:00\n", + "Selling KMX on 2023-05-31 00:00:00\n", + "Selling LYV on 2023-05-31 00:00:00\n", + "Selling RJF on 2023-05-31 00:00:00\n", + "Selling GM on 2023-05-31 00:00:00\n", + "Selling STLD on 2023-05-31 00:00:00\n", + "Selling FCX on 2023-05-31 00:00:00\n", + "Selling NCLH on 2023-05-31 00:00:00\n", + "Selling CE on 2023-05-31 00:00:00\n", + "Selling BX on 2023-05-31 00:00:00\n", + "Selling FIS on 2023-05-31 00:00:00\n", + "Selling HBAN on 2023-05-31 00:00:00\n", + "Selling APO on 2023-05-31 00:00:00\n", + "Selling PARA on 2023-05-31 00:00:00\n", + "Selling USB on 2023-05-31 00:00:00\n", + "Buying ABBV on 2023-06-30 00:00:00\n", + "Buying TAP on 2023-06-30 00:00:00\n", + "Buying GIS on 2023-06-30 00:00:00\n", + "Buying SJM on 2023-06-30 00:00:00\n", + "Buying DGX on 2023-06-30 00:00:00\n", + "Buying CLX on 2023-06-30 00:00:00\n", + "Buying NI on 2023-06-30 00:00:00\n", + "Buying SO on 2023-06-30 00:00:00\n", + "Buying AEP on 2023-06-30 00:00:00\n", + "Buying KHC on 2023-06-30 00:00:00\n", + "Buying BMY on 2023-06-30 00:00:00\n", + "Buying CMS on 2023-06-30 00:00:00\n", + "Buying COR on 2023-06-30 00:00:00\n", + "Buying DUK on 2023-06-30 00:00:00\n", + "Selling MPWR on 2023-06-30 00:00:00\n", + "Selling NOW on 2023-06-30 00:00:00\n", + "Selling GM on 2023-06-30 00:00:00\n", + "Selling BX on 2023-06-30 00:00:00\n", + "Selling APO on 2023-06-30 00:00:00\n", + "Selling MTCH on 2023-06-30 00:00:00\n", + "Selling CE on 2023-06-30 00:00:00\n", + "Selling HBAN on 2023-06-30 00:00:00\n", + "Selling FCX on 2023-06-30 00:00:00\n", + "Selling LYV on 2023-06-30 00:00:00\n", + "Selling USB on 2023-06-30 00:00:00\n", + "Selling ADBE on 2023-06-30 00:00:00\n", + "Selling NCLH on 2023-06-30 00:00:00\n", + "Selling PARA on 2023-06-30 00:00:00\n", + "Buying ABBV on 2023-07-31 00:00:00\n", + "Buying SO on 2023-07-31 00:00:00\n", + "Buying GIS on 2023-07-31 00:00:00\n", + "Buying D on 2023-07-31 00:00:00\n", + "Buying SJM on 2023-07-31 00:00:00\n", + "Buying NI on 2023-07-31 00:00:00\n", + "Buying ALL on 2023-07-31 00:00:00\n", + "Buying COR on 2023-07-31 00:00:00\n", + "Buying DG on 2023-07-31 00:00:00\n", + "Buying CMS on 2023-07-31 00:00:00\n", + "Buying AEP on 2023-07-31 00:00:00\n", + "Buying PNW on 2023-07-31 00:00:00\n", + "Buying VST on 2023-07-31 00:00:00\n", + "Buying DUK on 2023-07-31 00:00:00\n", + "Selling APTV on 2023-07-31 00:00:00\n", + "Selling NOW on 2023-07-31 00:00:00\n", + "Selling APO on 2023-07-31 00:00:00\n", + "Selling DFS on 2023-07-31 00:00:00\n", + "Selling BWA on 2023-07-31 00:00:00\n", + "Selling HBAN on 2023-07-31 00:00:00\n", + "Selling SWKS on 2023-07-31 00:00:00\n", + "Selling LYV on 2023-07-31 00:00:00\n", + "Selling BX on 2023-07-31 00:00:00\n", + "Selling STLD on 2023-07-31 00:00:00\n", + "Selling FCX on 2023-07-31 00:00:00\n", + "Selling ADBE on 2023-07-31 00:00:00\n", + "Selling MPWR on 2023-07-31 00:00:00\n", + "Selling PARA on 2023-07-31 00:00:00\n", + "Buying ERIE on 2023-08-31 00:00:00\n", + "Buying ABBV on 2023-08-31 00:00:00\n", + "Buying GIS on 2023-08-31 00:00:00\n", + "Buying CBOE on 2023-08-31 00:00:00\n", + "Buying INCY on 2023-08-31 00:00:00\n", + "Buying PNW on 2023-08-31 00:00:00\n", + "Buying SO on 2023-08-31 00:00:00\n", + "Buying CLX on 2023-08-31 00:00:00\n", + "Buying DUK on 2023-08-31 00:00:00\n", + "Buying PSX on 2023-08-31 00:00:00\n", + "Buying SJM on 2023-08-31 00:00:00\n", + "Buying L on 2023-08-31 00:00:00\n", + "Buying AON on 2023-08-31 00:00:00\n", + "Buying CMS on 2023-08-31 00:00:00\n", + "Selling JBL on 2023-08-31 00:00:00\n", + "Selling AMZN on 2023-08-31 00:00:00\n", + "Selling IDXX on 2023-08-31 00:00:00\n", + "Selling FCX on 2023-08-31 00:00:00\n", + "Selling SWKS on 2023-08-31 00:00:00\n", + "Selling EPAM on 2023-08-31 00:00:00\n", + "Selling MSFT on 2023-08-31 00:00:00\n", + "Selling BX on 2023-08-31 00:00:00\n", + "Selling ADBE on 2023-08-31 00:00:00\n", + "Selling NOW on 2023-08-31 00:00:00\n", + "Selling NCLH on 2023-08-31 00:00:00\n", + "Selling NFLX on 2023-08-31 00:00:00\n", + "Selling CRWD on 2023-08-31 00:00:00\n", + "Selling MPWR on 2023-08-31 00:00:00\n", + "Buying ERIE on 2023-09-30 00:00:00\n", + "Buying SJM on 2023-09-30 00:00:00\n", + "Buying COR on 2023-09-30 00:00:00\n", + "Buying CBOE on 2023-09-30 00:00:00\n", + "Buying KHC on 2023-09-30 00:00:00\n", + "Buying AON on 2023-09-30 00:00:00\n", + "Buying GIS on 2023-09-30 00:00:00\n", + "Buying PNW on 2023-09-30 00:00:00\n", + "Buying ABBV on 2023-09-30 00:00:00\n", + "Buying LH on 2023-09-30 00:00:00\n", + "Buying CAH on 2023-09-30 00:00:00\n", + "Buying VST on 2023-09-30 00:00:00\n", + "Buying INCY on 2023-09-30 00:00:00\n", + "Buying DUK on 2023-09-30 00:00:00\n", + "Selling NUE on 2023-09-30 00:00:00\n", + "Selling BX on 2023-09-30 00:00:00\n", + "Selling PHM on 2023-09-30 00:00:00\n", + "Selling FCX on 2023-09-30 00:00:00\n", + "Selling IDXX on 2023-09-30 00:00:00\n", + "Selling EPAM on 2023-09-30 00:00:00\n", + "Selling SWKS on 2023-09-30 00:00:00\n", + "Selling AMZN on 2023-09-30 00:00:00\n", + "Selling JBL on 2023-09-30 00:00:00\n", + "Selling NOW on 2023-09-30 00:00:00\n", + "Selling CRWD on 2023-09-30 00:00:00\n", + "Selling NFLX on 2023-09-30 00:00:00\n", + "Selling ADBE on 2023-09-30 00:00:00\n", + "Selling MPWR on 2023-09-30 00:00:00\n", + "Buying SJM on 2023-10-31 00:00:00\n", + "Buying COR on 2023-10-31 00:00:00\n", + "Buying GIS on 2023-10-31 00:00:00\n", + "Buying LH on 2023-10-31 00:00:00\n", + "Buying CHD on 2023-10-31 00:00:00\n", + "Buying DGX on 2023-10-31 00:00:00\n", + "Buying KHC on 2023-10-31 00:00:00\n", + "Buying CBOE on 2023-10-31 00:00:00\n", + "Buying RVTY on 2023-10-31 00:00:00\n", + "Buying INCY on 2023-10-31 00:00:00\n", + "Buying CMS on 2023-10-31 00:00:00\n", + "Buying DG on 2023-10-31 00:00:00\n", + "Buying PSX on 2023-10-31 00:00:00\n", + "Buying WTW on 2023-10-31 00:00:00\n", + "Selling GE on 2023-10-31 00:00:00\n", + "Selling NCLH on 2023-10-31 00:00:00\n", + "Selling FCX on 2023-10-31 00:00:00\n", + "Selling BX on 2023-10-31 00:00:00\n", + "Selling APTV on 2023-10-31 00:00:00\n", + "Selling IDXX on 2023-10-31 00:00:00\n", + "Selling NOW on 2023-10-31 00:00:00\n", + "Selling MKTX on 2023-10-31 00:00:00\n", + "Selling ADBE on 2023-10-31 00:00:00\n", + "Selling JBL on 2023-10-31 00:00:00\n", + "Selling EPAM on 2023-10-31 00:00:00\n", + "Selling CRWD on 2023-10-31 00:00:00\n", + "Selling AMZN on 2023-10-31 00:00:00\n", + "Selling MPWR on 2023-10-31 00:00:00\n", + "Buying COR on 2023-11-30 00:00:00\n", + "Buying CHD on 2023-11-30 00:00:00\n", + "Buying SJM on 2023-11-30 00:00:00\n", + "Buying WTW on 2023-11-30 00:00:00\n", + "Buying GIS on 2023-11-30 00:00:00\n", + "Buying CBOE on 2023-11-30 00:00:00\n", + "Buying DGX on 2023-11-30 00:00:00\n", + "Buying LH on 2023-11-30 00:00:00\n", + "Buying ORLY on 2023-11-30 00:00:00\n", + "Buying CAH on 2023-11-30 00:00:00\n", + "Buying BWA on 2023-11-30 00:00:00\n", + "Buying DG on 2023-11-30 00:00:00\n", + "Buying ABBV on 2023-11-30 00:00:00\n", + "Buying KHC on 2023-11-30 00:00:00\n", + "Selling MKTX on 2023-11-30 00:00:00\n", + "Selling AXON on 2023-11-30 00:00:00\n", + "Selling FCX on 2023-11-30 00:00:00\n", + "Selling ADBE on 2023-11-30 00:00:00\n", + "Selling NCLH on 2023-11-30 00:00:00\n", + "Selling CRWD on 2023-11-30 00:00:00\n", + "Selling AMZN on 2023-11-30 00:00:00\n", + "Selling USB on 2023-11-30 00:00:00\n", + "Selling PHM on 2023-11-30 00:00:00\n", + "Selling IDXX on 2023-11-30 00:00:00\n", + "Selling BX on 2023-11-30 00:00:00\n", + "Selling PARA on 2023-11-30 00:00:00\n", + "Selling EPAM on 2023-11-30 00:00:00\n", + "Selling MPWR on 2023-11-30 00:00:00\n", + "Buying WTW on 2023-12-31 00:00:00\n", + "Buying CHD on 2023-12-31 00:00:00\n", + "Buying ORLY on 2023-12-31 00:00:00\n", + "Buying CBOE on 2023-12-31 00:00:00\n", + "Buying COR on 2023-12-31 00:00:00\n", + "Buying GIS on 2023-12-31 00:00:00\n", + "Buying DG on 2023-12-31 00:00:00\n", + "Buying DGX on 2023-12-31 00:00:00\n", + "Buying ACGL on 2023-12-31 00:00:00\n", + "Buying BWA on 2023-12-31 00:00:00\n", + "Buying LH on 2023-12-31 00:00:00\n", + "Buying SJM on 2023-12-31 00:00:00\n", + "Buying CAH on 2023-12-31 00:00:00\n", + "Buying ABBV on 2023-12-31 00:00:00\n", + "Selling EXR on 2023-12-31 00:00:00\n", + "Selling CRL on 2023-12-31 00:00:00\n", + "Selling IDXX on 2023-12-31 00:00:00\n", + "Selling HBAN on 2023-12-31 00:00:00\n", + "Selling HAS on 2023-12-31 00:00:00\n", + "Selling INVH on 2023-12-31 00:00:00\n", + "Selling NCLH on 2023-12-31 00:00:00\n", + "Selling FCX on 2023-12-31 00:00:00\n", + "Selling EPAM on 2023-12-31 00:00:00\n", + "Selling BX on 2023-12-31 00:00:00\n", + "Selling USB on 2023-12-31 00:00:00\n", + "Selling KMX on 2023-12-31 00:00:00\n", + "Selling PARA on 2023-12-31 00:00:00\n", + "Selling MPWR on 2023-12-31 00:00:00\n", + "Buying COR on 2024-01-31 00:00:00\n", + "Buying ACGL on 2024-01-31 00:00:00\n", + "Buying CHD on 2024-01-31 00:00:00\n", + "Buying MMC on 2024-01-31 00:00:00\n", + "Buying CVS on 2024-01-31 00:00:00\n", + "Buying CBOE on 2024-01-31 00:00:00\n", + "Buying CAH on 2024-01-31 00:00:00\n", + "Buying ALL on 2024-01-31 00:00:00\n", + "Buying ERIE on 2024-01-31 00:00:00\n", + "Buying AJG on 2024-01-31 00:00:00\n", + "Buying T on 2024-01-31 00:00:00\n", + "Buying ABBV on 2024-01-31 00:00:00\n", + "Buying KHC on 2024-01-31 00:00:00\n", + "Buying GIS on 2024-01-31 00:00:00\n", + "Selling HAS on 2024-01-31 00:00:00\n", + "Selling MTD on 2024-01-31 00:00:00\n", + "Selling FCX on 2024-01-31 00:00:00\n", + "Selling RVTY on 2024-01-31 00:00:00\n", + "Selling MKTX on 2024-01-31 00:00:00\n", + "Selling SWKS on 2024-01-31 00:00:00\n", + "Selling BX on 2024-01-31 00:00:00\n", + "Selling USB on 2024-01-31 00:00:00\n", + "Selling CRL on 2024-01-31 00:00:00\n", + "Selling APTV on 2024-01-31 00:00:00\n", + "Selling ROK on 2024-01-31 00:00:00\n", + "Selling NCLH on 2024-01-31 00:00:00\n", + "Selling KMX on 2024-01-31 00:00:00\n", + "Selling MPWR on 2024-01-31 00:00:00\n", + "Buying COR on 2024-02-29 00:00:00\n", + "Buying CAH on 2024-02-29 00:00:00\n", + "Buying CVS on 2024-02-29 00:00:00\n", + "Buying KHC on 2024-02-29 00:00:00\n", + "Buying GILD on 2024-02-29 00:00:00\n", + "Buying GIS on 2024-02-29 00:00:00\n", + "Buying T on 2024-02-29 00:00:00\n", + "Buying LDOS on 2024-02-29 00:00:00\n", + "Buying DGX on 2024-02-29 00:00:00\n", + "Buying ACGL on 2024-02-29 00:00:00\n", + "Buying ERIE on 2024-02-29 00:00:00\n", + "Buying SJM on 2024-02-29 00:00:00\n", + "Buying ALL on 2024-02-29 00:00:00\n", + "Buying DFS on 2024-02-29 00:00:00\n", + "Selling HAS on 2024-02-29 00:00:00\n", + "Selling CRM on 2024-02-29 00:00:00\n", + "Selling USB on 2024-02-29 00:00:00\n", + "Selling KEYS on 2024-02-29 00:00:00\n", + "Selling EPAM on 2024-02-29 00:00:00\n", + "Selling BX on 2024-02-29 00:00:00\n", + "Selling AMZN on 2024-02-29 00:00:00\n", + "Selling APTV on 2024-02-29 00:00:00\n", + "Selling CRWD on 2024-02-29 00:00:00\n", + "Selling CRL on 2024-02-29 00:00:00\n", + "Selling MKTX on 2024-02-29 00:00:00\n", + "Selling MPWR on 2024-02-29 00:00:00\n", + "Selling KMX on 2024-02-29 00:00:00\n", + "Selling ROK on 2024-02-29 00:00:00\n", + "Buying COR on 2024-03-31 00:00:00\n", + "Buying CVS on 2024-03-31 00:00:00\n", + "Buying GIS on 2024-03-31 00:00:00\n", + "Buying CAH on 2024-03-31 00:00:00\n", + "Buying KHC on 2024-03-31 00:00:00\n", + "Buying ALL on 2024-03-31 00:00:00\n", + "Buying T on 2024-03-31 00:00:00\n", + "Buying CBOE on 2024-03-31 00:00:00\n", + "Buying GILD on 2024-03-31 00:00:00\n", + "Buying LDOS on 2024-03-31 00:00:00\n", + "Buying INCY on 2024-03-31 00:00:00\n", + "Buying DGX on 2024-03-31 00:00:00\n", + "Buying ACGL on 2024-03-31 00:00:00\n", + "Buying SJM on 2024-03-31 00:00:00\n", + "Selling KEYS on 2024-03-31 00:00:00\n", + "Selling CRM on 2024-03-31 00:00:00\n", + "Selling SWKS on 2024-03-31 00:00:00\n", + "Selling KMX on 2024-03-31 00:00:00\n", + "Selling EPAM on 2024-03-31 00:00:00\n", + "Selling NOW on 2024-03-31 00:00:00\n", + "Selling MKTX on 2024-03-31 00:00:00\n", + "Selling AMZN on 2024-03-31 00:00:00\n", + "Selling JBL on 2024-03-31 00:00:00\n", + "Selling ADBE on 2024-03-31 00:00:00\n", + "Selling CRL on 2024-03-31 00:00:00\n", + "Selling ROK on 2024-03-31 00:00:00\n", + "Selling CRWD on 2024-03-31 00:00:00\n", + "Selling MPWR on 2024-03-31 00:00:00\n", + "Buying GIS on 2024-04-30 00:00:00\n", + "Buying CBOE on 2024-04-30 00:00:00\n", + "Buying KHC on 2024-04-30 00:00:00\n", + "Buying LDOS on 2024-04-30 00:00:00\n", + "Buying ALL on 2024-04-30 00:00:00\n", + "Buying T on 2024-04-30 00:00:00\n", + "Buying CAH on 2024-04-30 00:00:00\n", + "Buying NEM on 2024-04-30 00:00:00\n", + "Buying CHD on 2024-04-30 00:00:00\n", + "Buying SJM on 2024-04-30 00:00:00\n", + "Buying CMS on 2024-04-30 00:00:00\n", + "Buying DUK on 2024-04-30 00:00:00\n", + "Buying BF-B on 2024-04-30 00:00:00\n", + "Buying ACGL on 2024-04-30 00:00:00\n", + "Selling BX on 2024-04-30 00:00:00\n", + "Selling FFIV on 2024-04-30 00:00:00\n", + "Selling NFLX on 2024-04-30 00:00:00\n", + "Selling AMZN on 2024-04-30 00:00:00\n", + "Selling PHM on 2024-04-30 00:00:00\n", + "Selling CRM on 2024-04-30 00:00:00\n", + "Selling GEHC on 2024-04-30 00:00:00\n", + "Selling RMD on 2024-04-30 00:00:00\n", + "Selling SWKS on 2024-04-30 00:00:00\n", + "Selling NOW on 2024-04-30 00:00:00\n", + "Selling JBL on 2024-04-30 00:00:00\n", + "Selling CRL on 2024-04-30 00:00:00\n", + "Selling MPWR on 2024-04-30 00:00:00\n", + "Selling CRWD on 2024-04-30 00:00:00\n", + "Buying CBOE on 2024-05-31 00:00:00\n", + "Buying CAH on 2024-05-31 00:00:00\n", + "Buying ALL on 2024-05-31 00:00:00\n", + "Buying GIS on 2024-05-31 00:00:00\n", + "Buying HII on 2024-05-31 00:00:00\n", + "Buying KHC on 2024-05-31 00:00:00\n", + "Buying LDOS on 2024-05-31 00:00:00\n", + "Buying ACGL on 2024-05-31 00:00:00\n", + "Buying COR on 2024-05-31 00:00:00\n", + "Buying CHD on 2024-05-31 00:00:00\n", + "Buying T on 2024-05-31 00:00:00\n", + "Buying CMS on 2024-05-31 00:00:00\n", + "Buying SJM on 2024-05-31 00:00:00\n", + "Buying L on 2024-05-31 00:00:00\n", + "Selling GEHC on 2024-05-31 00:00:00\n", + "Selling RMD on 2024-05-31 00:00:00\n", + "Selling SWKS on 2024-05-31 00:00:00\n", + "Selling BX on 2024-05-31 00:00:00\n", + "Selling HWM on 2024-05-31 00:00:00\n", + "Selling JBL on 2024-05-31 00:00:00\n", + "Selling NCLH on 2024-05-31 00:00:00\n", + "Selling PHM on 2024-05-31 00:00:00\n", + "Selling APTV on 2024-05-31 00:00:00\n", + "Selling CRM on 2024-05-31 00:00:00\n", + "Selling VST on 2024-05-31 00:00:00\n", + "Selling MPWR on 2024-05-31 00:00:00\n", + "Selling NOW on 2024-05-31 00:00:00\n", + "Selling CRWD on 2024-05-31 00:00:00\n", + "Buying CAH on 2024-06-30 00:00:00\n", + "Buying GIS on 2024-06-30 00:00:00\n", + "Buying CBOE on 2024-06-30 00:00:00\n", + "Buying ALL on 2024-06-30 00:00:00\n", + "Buying CF on 2024-06-30 00:00:00\n", + "Buying KHC on 2024-06-30 00:00:00\n", + "Buying HII on 2024-06-30 00:00:00\n", + "Buying CMS on 2024-06-30 00:00:00\n", + "Buying LDOS on 2024-06-30 00:00:00\n", + "Buying DUK on 2024-06-30 00:00:00\n", + "Buying SJM on 2024-06-30 00:00:00\n", + "Buying COR on 2024-06-30 00:00:00\n", + "Buying ACGL on 2024-06-30 00:00:00\n", + "Buying CHD on 2024-06-30 00:00:00\n", + "Selling A on 2024-06-30 00:00:00\n", + "Selling NFLX on 2024-06-30 00:00:00\n", + "Selling MTD on 2024-06-30 00:00:00\n", + "Selling SWKS on 2024-06-30 00:00:00\n", + "Selling BX on 2024-06-30 00:00:00\n", + "Selling VST on 2024-06-30 00:00:00\n", + "Selling GEHC on 2024-06-30 00:00:00\n", + "Selling HWM on 2024-06-30 00:00:00\n", + "Selling PHM on 2024-06-30 00:00:00\n", + "Selling NCLH on 2024-06-30 00:00:00\n", + "Selling CRM on 2024-06-30 00:00:00\n", + "Selling NOW on 2024-06-30 00:00:00\n", + "Selling MPWR on 2024-06-30 00:00:00\n", + "Selling CRWD on 2024-06-30 00:00:00\n", + "Buying GILD on 2024-07-31 00:00:00\n", + "Buying INCY on 2024-07-31 00:00:00\n", + "Buying T on 2024-07-31 00:00:00\n", + "Buying GIS on 2024-07-31 00:00:00\n", + "Buying CBOE on 2024-07-31 00:00:00\n", + "Buying EPAM on 2024-07-31 00:00:00\n", + "Buying SJM on 2024-07-31 00:00:00\n", + "Buying BMY on 2024-07-31 00:00:00\n", + "Buying CCI on 2024-07-31 00:00:00\n", + "Buying ABBV on 2024-07-31 00:00:00\n", + "Buying CMS on 2024-07-31 00:00:00\n", + "Buying D on 2024-07-31 00:00:00\n", + "Buying TAP on 2024-07-31 00:00:00\n", + "Buying CVS on 2024-07-31 00:00:00\n", + "Selling NOW on 2024-07-31 00:00:00\n", + "Selling FCX on 2024-07-31 00:00:00\n", + "Selling NRG on 2024-07-31 00:00:00\n", + "Selling KEYS on 2024-07-31 00:00:00\n", + "Selling EW on 2024-07-31 00:00:00\n", + "Selling NCLH on 2024-07-31 00:00:00\n", + "Selling PH on 2024-07-31 00:00:00\n", + "Selling BX on 2024-07-31 00:00:00\n", + "Selling SWKS on 2024-07-31 00:00:00\n", + "Selling CRM on 2024-07-31 00:00:00\n", + "Selling GE on 2024-07-31 00:00:00\n", + "Selling CRWD on 2024-07-31 00:00:00\n", + "Selling VST on 2024-07-31 00:00:00\n", + "Selling MPWR on 2024-07-31 00:00:00\n", + "Buying CBOE on 2024-08-31 00:00:00\n", + "Buying GIS on 2024-08-31 00:00:00\n", + "Buying GILD on 2024-08-31 00:00:00\n", + "Buying AMT on 2024-08-31 00:00:00\n", + "Buying CMS on 2024-08-31 00:00:00\n", + "Buying T on 2024-08-31 00:00:00\n", + "Buying D on 2024-08-31 00:00:00\n", + "Buying MNST on 2024-08-31 00:00:00\n", + "Buying SJM on 2024-08-31 00:00:00\n", + "Buying SO on 2024-08-31 00:00:00\n", + "Buying AEP on 2024-08-31 00:00:00\n", + "Buying O on 2024-08-31 00:00:00\n", + "Buying CCI on 2024-08-31 00:00:00\n", + "Buying DUK on 2024-08-31 00:00:00\n", + "Selling KMX on 2024-08-31 00:00:00\n", + "Selling ROK on 2024-08-31 00:00:00\n", + "Selling NRG on 2024-08-31 00:00:00\n", + "Selling FCX on 2024-08-31 00:00:00\n", + "Selling ULTA on 2024-08-31 00:00:00\n", + "Selling AMZN on 2024-08-31 00:00:00\n", + "Selling PH on 2024-08-31 00:00:00\n", + "Selling KEYS on 2024-08-31 00:00:00\n", + "Selling JBL on 2024-08-31 00:00:00\n", + "Selling APO on 2024-08-31 00:00:00\n", + "Selling NCLH on 2024-08-31 00:00:00\n", + "Selling SWKS on 2024-08-31 00:00:00\n", + "Selling VST on 2024-08-31 00:00:00\n", + "Selling MPWR on 2024-08-31 00:00:00\n", + "Buying CBOE on 2024-09-30 00:00:00\n", + "Buying AMT on 2024-09-30 00:00:00\n", + "Buying GIS on 2024-09-30 00:00:00\n", + "Buying T on 2024-09-30 00:00:00\n", + "Buying SJM on 2024-09-30 00:00:00\n", + "Buying CHD on 2024-09-30 00:00:00\n", + "Buying MNST on 2024-09-30 00:00:00\n", + "Buying SO on 2024-09-30 00:00:00\n", + "Buying O on 2024-09-30 00:00:00\n", + "Buying D on 2024-09-30 00:00:00\n", + "Buying CLX on 2024-09-30 00:00:00\n", + "Buying CMS on 2024-09-30 00:00:00\n", + "Buying CCI on 2024-09-30 00:00:00\n", + "Buying DUK on 2024-09-30 00:00:00\n", + "Selling CE on 2024-09-30 00:00:00\n", + "Selling GE on 2024-09-30 00:00:00\n", + "Selling ROK on 2024-09-30 00:00:00\n", + "Selling NRG on 2024-09-30 00:00:00\n", + "Selling AMZN on 2024-09-30 00:00:00\n", + "Selling PH on 2024-09-30 00:00:00\n", + "Selling JBL on 2024-09-30 00:00:00\n", + "Selling APO on 2024-09-30 00:00:00\n", + "Selling KEYS on 2024-09-30 00:00:00\n", + "Selling FCX on 2024-09-30 00:00:00\n", + "Selling NCLH on 2024-09-30 00:00:00\n", + "Selling SWKS on 2024-09-30 00:00:00\n", + "Selling VST on 2024-09-30 00:00:00\n", + "Selling MPWR on 2024-09-30 00:00:00\n", + "Buying CBOE on 2024-10-31 00:00:00\n", + "Buying AMT on 2024-10-31 00:00:00\n", + "Buying T on 2024-10-31 00:00:00\n", + "Buying MNST on 2024-10-31 00:00:00\n", + "Buying CCI on 2024-10-31 00:00:00\n", + "Buying SO on 2024-10-31 00:00:00\n", + "Buying DUK on 2024-10-31 00:00:00\n", + "Buying COR on 2024-10-31 00:00:00\n", + "Buying D on 2024-10-31 00:00:00\n", + "Buying AEP on 2024-10-31 00:00:00\n", + "Buying GIS on 2024-10-31 00:00:00\n", + "Buying WTW on 2024-10-31 00:00:00\n", + "Buying BMY on 2024-10-31 00:00:00\n", + "Buying PNW on 2024-10-31 00:00:00\n", + "Selling DFS on 2024-10-31 00:00:00\n", + "Selling NOW on 2024-10-31 00:00:00\n", + "Selling JBL on 2024-10-31 00:00:00\n", + "Selling CDW on 2024-10-31 00:00:00\n", + "Selling NCLH on 2024-10-31 00:00:00\n", + "Selling AMZN on 2024-10-31 00:00:00\n", + "Selling FCX on 2024-10-31 00:00:00\n", + "Selling KEYS on 2024-10-31 00:00:00\n", + "Selling CRWD on 2024-10-31 00:00:00\n", + "Selling HII on 2024-10-31 00:00:00\n", + "Selling VST on 2024-10-31 00:00:00\n", + "Selling APTV on 2024-10-31 00:00:00\n", + "Selling SWKS on 2024-10-31 00:00:00\n", + "Selling MPWR on 2024-10-31 00:00:00\n", + "Generated 4680 orders.\n" + ] + } + ], + "source": [ + "import pickle\n", + "import pandas as pd\n", + "import yfinance as yf\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Import modules from the backtester package\n", + "from order_generator import StableMinusRiskyOrderGenerator\n", + "from backtest_engine import EquityBacktestEngine\n", + "from metrics import ExtendedMetrics\n", + "\n", + "# first, run python cache_sp500_data.py to prevent caching all universe every run, then run this script\n", + "with open('sp500_data.pkl', 'rb') as f:\n", + " sp500_data = pickle.load(f)\n", + "\n", + "if 'SPY' not in sp500_data:\n", + " sample_ticker = list(sp500_data.keys())[0]\n", + " dates = sp500_data[sample_ticker].index\n", + " start_date = dates.min().strftime('%Y-%m-%d')\n", + " end_date = dates.max().strftime('%Y-%m-%d')\n", + " spy_df = yf.download(\"SPY\", start=start_date, end=end_date, auto_adjust=False)\n", + " # keep only the needed columns to mimic the structure in the cache\n", + " spy_df = spy_df[['Adj Close', 'Volume']].copy()\n", + " sp500_data['SPY'] = spy_df\n", + "\n", + "# exclude SPY since that is our benchmark\n", + "stock_tickers = [ticker for ticker in sp500_data.keys() if ticker != 'SPY']\n", + "prices_dict = {}\n", + "for ticker in stock_tickers:\n", + " df = sp500_data[ticker]\n", + " df.index = pd.to_datetime(df.index)\n", + " df = df.sort_index()\n", + " prices_dict[ticker] = df['Adj Close']\n", + "\n", + "\n", + "price_df = pd.DataFrame(prices_dict).dropna(how='all')\n", + "price_df = price_df.sort_index()\n", + "smr_generator = StableMinusRiskyOrderGenerator(lookback_period=60, rebalance_frequency='ME', starting_portfolio_value=100_000)\n", + "orders = smr_generator.generate_orders(sp500_data)\n", + "print(f\"Generated {len(orders)} orders.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2010-01-04 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-05 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-06 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-07 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-08 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-11 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-12 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-13 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-14 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-15 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-19 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-20 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-21 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-22 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-25 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-26 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-27 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-28 00:00:00: Portfolio Value - 100000.00\n", + "2010-01-29 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-01 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-02 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-03 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-04 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-05 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-08 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-09 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-10 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-11 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-12 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-16 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-17 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-18 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-19 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-22 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-23 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-24 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-25 00:00:00: Portfolio Value - 100000.00\n", + "2010-02-26 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-01 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-02 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-03 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-04 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-05 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-08 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-09 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-10 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-11 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-12 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-15 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-16 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-17 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-18 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-19 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-22 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-23 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-24 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-25 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-26 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-29 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-30 00:00:00: Portfolio Value - 100000.00\n", + "2010-03-31 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-01 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-05 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-06 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-07 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-08 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-09 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-12 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-13 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-14 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-15 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-16 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-19 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-20 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-21 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-22 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-23 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-26 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-27 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-28 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-29 00:00:00: Portfolio Value - 100000.00\n", + "2010-04-30 00:00:00: Portfolio Value - 100000.00\n", + "2010-05-03 00:00:00: Portfolio Value - 98634.81\n", + "2010-05-04 00:00:00: Portfolio Value - 83254.76\n", + "2010-05-05 00:00:00: Portfolio Value - 75156.52\n", + "2010-05-06 00:00:00: Portfolio Value - 56440.60\n", + "2010-05-07 00:00:00: Portfolio Value - 31527.06\n", + "2010-05-10 00:00:00: Portfolio Value - 68563.69\n", + "2010-05-11 00:00:00: Portfolio Value - 68484.71\n", + "2010-05-12 00:00:00: Portfolio Value - 79735.25\n", + "2010-05-13 00:00:00: Portfolio Value - 79931.39\n", + "2010-05-14 00:00:00: Portfolio Value - 71383.19\n", + "2010-05-17 00:00:00: Portfolio Value - 91775.12\n", + "2010-05-18 00:00:00: Portfolio Value - 78102.22\n", + "2010-05-19 00:00:00: Portfolio Value - 62284.86\n", + "2010-05-20 00:00:00: Portfolio Value - 23167.95\n", + "2010-05-21 00:00:00: Portfolio Value - 9552.64\n", + "2010-05-24 00:00:00: Portfolio Value - 13854.47\n", + "2010-05-25 00:00:00: Portfolio Value - 25.06\n", + "2010-05-26 00:00:00: Portfolio Value - -8018.53\n", + "2010-05-27 00:00:00: Portfolio Value - 17000.55\n", + "2010-05-28 00:00:00: Portfolio Value - 10979.47\n", + "2010-06-01 00:00:00: Portfolio Value - 8612.23\n", + "2010-06-02 00:00:00: Portfolio Value - 27575.55\n", + "2010-06-03 00:00:00: Portfolio Value - 55785.96\n", + "2010-06-04 00:00:00: Portfolio Value - 20689.16\n", + "2010-06-07 00:00:00: Portfolio Value - 21791.92\n", + "2010-06-08 00:00:00: Portfolio Value - 32729.53\n", + "2010-06-09 00:00:00: Portfolio Value - 24456.31\n", + "2010-06-10 00:00:00: Portfolio Value - 55782.13\n", + "2010-06-11 00:00:00: Portfolio Value - 49936.77\n", + "2010-06-14 00:00:00: Portfolio Value - 58526.04\n", + "2010-06-15 00:00:00: Portfolio Value - 74188.12\n", + "2010-06-16 00:00:00: Portfolio Value - 82893.46\n", + "2010-06-17 00:00:00: Portfolio Value - 86984.96\n", + "2010-06-18 00:00:00: Portfolio Value - 74848.82\n", + "2010-06-21 00:00:00: Portfolio Value - 72761.51\n", + "2010-06-22 00:00:00: Portfolio Value - 70541.81\n", + "2010-06-23 00:00:00: Portfolio Value - 44591.50\n", + "2010-06-24 00:00:00: Portfolio Value - 38619.95\n", + "2010-06-25 00:00:00: Portfolio Value - 26856.01\n", + "2010-06-28 00:00:00: Portfolio Value - 35209.08\n", + "2010-06-29 00:00:00: Portfolio Value - 10806.59\n", + "2010-06-30 00:00:00: Portfolio Value - 7674.32\n", + "2010-07-01 00:00:00: Portfolio Value - 7958.99\n", + "2010-07-02 00:00:00: Portfolio Value - 14330.37\n", + "2010-07-06 00:00:00: Portfolio Value - 23469.31\n", + "2010-07-07 00:00:00: Portfolio Value - 45620.15\n", + "2010-07-08 00:00:00: Portfolio Value - 52699.32\n", + "2010-07-09 00:00:00: Portfolio Value - 50414.78\n", + "2010-07-12 00:00:00: Portfolio Value - 53694.03\n", + "2010-07-13 00:00:00: Portfolio Value - 63182.05\n", + "2010-07-14 00:00:00: Portfolio Value - 70630.42\n", + "2010-07-15 00:00:00: Portfolio Value - 60264.04\n", + "2010-07-16 00:00:00: Portfolio Value - 38043.42\n", + "2010-07-19 00:00:00: Portfolio Value - 43447.61\n", + "2010-07-20 00:00:00: Portfolio Value - 43643.00\n", + "2010-07-21 00:00:00: Portfolio Value - 21553.98\n", + "2010-07-22 00:00:00: Portfolio Value - 37748.23\n", + "2010-07-23 00:00:00: Portfolio Value - 41658.81\n", + "2010-07-26 00:00:00: Portfolio Value - 54007.04\n", + "2010-07-27 00:00:00: Portfolio Value - 55100.14\n", + "2010-07-28 00:00:00: Portfolio Value - 46726.81\n", + "2010-07-29 00:00:00: Portfolio Value - 5430.11\n", + "2010-07-30 00:00:00: Portfolio Value - 26881.19\n", + "2010-08-02 00:00:00: Portfolio Value - 41747.45\n", + "2010-08-03 00:00:00: Portfolio Value - 33833.06\n", + "2010-08-04 00:00:00: Portfolio Value - 35564.97\n", + "2010-08-05 00:00:00: Portfolio Value - 30758.17\n", + "2010-08-06 00:00:00: Portfolio Value - 28400.40\n", + "2010-08-09 00:00:00: Portfolio Value - 40268.61\n", + "2010-08-10 00:00:00: Portfolio Value - 38422.50\n", + "2010-08-11 00:00:00: Portfolio Value - 16607.67\n", + "2010-08-12 00:00:00: Portfolio Value - 6842.25\n", + "2010-08-13 00:00:00: Portfolio Value - 6867.34\n", + "2010-08-16 00:00:00: Portfolio Value - 2998.41\n", + "2010-08-17 00:00:00: Portfolio Value - 23546.66\n", + "2010-08-18 00:00:00: Portfolio Value - 22551.98\n", + "2010-08-19 00:00:00: Portfolio Value - 10270.82\n", + "2010-08-20 00:00:00: Portfolio Value - 7428.52\n", + "2010-08-23 00:00:00: Portfolio Value - 5627.66\n", + "2010-08-24 00:00:00: Portfolio Value - -4574.86\n", + "2010-08-25 00:00:00: Portfolio Value - -8190.59\n", + "2010-08-26 00:00:00: Portfolio Value - -14724.62\n", + "2010-08-27 00:00:00: Portfolio Value - 3719.88\n", + "2010-08-30 00:00:00: Portfolio Value - -6715.04\n", + "2010-08-31 00:00:00: Portfolio Value - -12598.29\n", + "2010-09-01 00:00:00: Portfolio Value - 14064.99\n", + "2010-09-02 00:00:00: Portfolio Value - 25116.13\n", + "2010-09-03 00:00:00: Portfolio Value - 21188.47\n", + "2010-09-07 00:00:00: Portfolio Value - 16300.13\n", + "2010-09-08 00:00:00: Portfolio Value - 7656.38\n", + "2010-09-09 00:00:00: Portfolio Value - 22246.10\n", + "2010-09-10 00:00:00: Portfolio Value - 25012.04\n", + "2010-09-13 00:00:00: Portfolio Value - 25652.10\n", + "2010-09-14 00:00:00: Portfolio Value - 30610.96\n", + "2010-09-15 00:00:00: Portfolio Value - 44096.52\n", + "2010-09-16 00:00:00: Portfolio Value - 42919.45\n", + "2010-09-17 00:00:00: Portfolio Value - 45951.85\n", + "2010-09-20 00:00:00: Portfolio Value - 56127.99\n", + "2010-09-21 00:00:00: Portfolio Value - 46863.18\n", + "2010-09-22 00:00:00: Portfolio Value - 52781.38\n", + "2010-09-23 00:00:00: Portfolio Value - 41571.72\n", + "2010-09-24 00:00:00: Portfolio Value - 58349.67\n", + "2010-09-27 00:00:00: Portfolio Value - 44950.94\n", + "2010-09-28 00:00:00: Portfolio Value - 50805.65\n", + "2010-09-29 00:00:00: Portfolio Value - 44714.01\n", + "2010-09-30 00:00:00: Portfolio Value - 52964.20\n", + "2010-10-01 00:00:00: Portfolio Value - 50938.75\n", + "2010-10-04 00:00:00: Portfolio Value - 43239.92\n", + "2010-10-05 00:00:00: Portfolio Value - 49419.51\n", + "2010-10-06 00:00:00: Portfolio Value - 51274.03\n", + "2010-10-07 00:00:00: Portfolio Value - 41229.61\n", + "2010-10-08 00:00:00: Portfolio Value - 42925.11\n", + "2010-10-11 00:00:00: Portfolio Value - 48022.23\n", + "2010-10-12 00:00:00: Portfolio Value - 41953.49\n", + "2010-10-13 00:00:00: Portfolio Value - 39595.63\n", + "2010-10-14 00:00:00: Portfolio Value - 49763.71\n", + "2010-10-15 00:00:00: Portfolio Value - 50710.83\n", + "2010-10-18 00:00:00: Portfolio Value - 58953.96\n", + "2010-10-19 00:00:00: Portfolio Value - 48222.40\n", + "2010-10-20 00:00:00: Portfolio Value - 55732.81\n", + "2010-10-21 00:00:00: Portfolio Value - 60340.65\n", + "2010-10-22 00:00:00: Portfolio Value - 63798.11\n", + "2010-10-25 00:00:00: Portfolio Value - 60730.18\n", + "2010-10-26 00:00:00: Portfolio Value - 51020.06\n", + "2010-10-27 00:00:00: Portfolio Value - 60986.93\n", + "2010-10-28 00:00:00: Portfolio Value - 50974.90\n", + "2010-10-29 00:00:00: Portfolio Value - 49302.07\n", + "2010-11-01 00:00:00: Portfolio Value - 42708.07\n", + "2010-11-02 00:00:00: Portfolio Value - 28816.06\n", + "2010-11-03 00:00:00: Portfolio Value - 29016.12\n", + "2010-11-04 00:00:00: Portfolio Value - 51246.97\n", + "2010-11-05 00:00:00: Portfolio Value - 44723.79\n", + "2010-11-08 00:00:00: Portfolio Value - 40960.69\n", + "2010-11-09 00:00:00: Portfolio Value - 43388.46\n", + "2010-11-10 00:00:00: Portfolio Value - 55163.73\n", + "2010-11-11 00:00:00: Portfolio Value - 45593.32\n", + "2010-11-12 00:00:00: Portfolio Value - 52430.31\n", + "2010-11-15 00:00:00: Portfolio Value - 59256.58\n", + "2010-11-16 00:00:00: Portfolio Value - 47977.55\n", + "2010-11-17 00:00:00: Portfolio Value - 54771.18\n", + "2010-11-18 00:00:00: Portfolio Value - 61092.86\n", + "2010-11-19 00:00:00: Portfolio Value - 53905.22\n", + "2010-11-22 00:00:00: Portfolio Value - 55877.61\n", + "2010-11-23 00:00:00: Portfolio Value - 41635.25\n", + "2010-11-24 00:00:00: Portfolio Value - 55438.64\n", + "2010-11-26 00:00:00: Portfolio Value - 52987.45\n", + "2010-11-29 00:00:00: Portfolio Value - 39557.08\n", + "2010-11-30 00:00:00: Portfolio Value - 33000.13\n", + "2010-12-01 00:00:00: Portfolio Value - 61760.94\n", + "2010-12-02 00:00:00: Portfolio Value - 73148.94\n", + "2010-12-03 00:00:00: Portfolio Value - 81360.03\n", + "2010-12-06 00:00:00: Portfolio Value - 74879.56\n", + "2010-12-07 00:00:00: Portfolio Value - 83131.04\n", + "2010-12-08 00:00:00: Portfolio Value - 91624.29\n", + "2010-12-09 00:00:00: Portfolio Value - 82308.60\n", + "2010-12-10 00:00:00: Portfolio Value - 91131.70\n", + "2010-12-13 00:00:00: Portfolio Value - 91839.48\n", + "2010-12-14 00:00:00: Portfolio Value - 117527.04\n", + "2010-12-15 00:00:00: Portfolio Value - 119089.03\n", + "2010-12-16 00:00:00: Portfolio Value - 127300.21\n", + "2010-12-17 00:00:00: Portfolio Value - 141701.12\n", + "2010-12-20 00:00:00: Portfolio Value - 132937.22\n", + "2010-12-21 00:00:00: Portfolio Value - 127195.71\n", + "2010-12-22 00:00:00: Portfolio Value - 134661.65\n", + "2010-12-23 00:00:00: Portfolio Value - 136824.74\n", + "2010-12-27 00:00:00: Portfolio Value - 130880.42\n", + "2010-12-28 00:00:00: Portfolio Value - 141600.08\n", + "2010-12-29 00:00:00: Portfolio Value - 143674.83\n", + "2010-12-30 00:00:00: Portfolio Value - 146025.31\n", + "2010-12-31 00:00:00: Portfolio Value - 128083.93\n", + "2011-01-03 00:00:00: Portfolio Value - 129849.83\n", + "2011-01-04 00:00:00: Portfolio Value - 110709.59\n", + "2011-01-05 00:00:00: Portfolio Value - 111933.50\n", + "2011-01-06 00:00:00: Portfolio Value - 112191.46\n", + "2011-01-07 00:00:00: Portfolio Value - 102917.76\n", + "2011-01-10 00:00:00: Portfolio Value - 100533.25\n", + "2011-01-11 00:00:00: Portfolio Value - 100057.25\n", + "2011-01-12 00:00:00: Portfolio Value - 102564.82\n", + "2011-01-13 00:00:00: Portfolio Value - 102303.69\n", + "2011-01-14 00:00:00: Portfolio Value - 106546.98\n", + "2011-01-18 00:00:00: Portfolio Value - 119578.82\n", + "2011-01-19 00:00:00: Portfolio Value - 121511.96\n", + "2011-01-20 00:00:00: Portfolio Value - 126741.74\n", + "2011-01-21 00:00:00: Portfolio Value - 123626.74\n", + "2011-01-24 00:00:00: Portfolio Value - 142499.22\n", + "2011-01-25 00:00:00: Portfolio Value - 168849.00\n", + "2011-01-26 00:00:00: Portfolio Value - 172968.58\n", + "2011-01-27 00:00:00: Portfolio Value - 186857.69\n", + "2011-01-28 00:00:00: Portfolio Value - 164144.47\n", + "2011-01-31 00:00:00: Portfolio Value - 152763.58\n", + "2011-02-01 00:00:00: Portfolio Value - 150207.71\n", + "2011-02-02 00:00:00: Portfolio Value - 140502.29\n", + "2011-02-03 00:00:00: Portfolio Value - 150586.49\n", + "2011-02-04 00:00:00: Portfolio Value - 171957.33\n", + "2011-02-07 00:00:00: Portfolio Value - 181602.20\n", + "2011-02-08 00:00:00: Portfolio Value - 163618.56\n", + "2011-02-09 00:00:00: Portfolio Value - 174360.45\n", + "2011-02-10 00:00:00: Portfolio Value - 171537.66\n", + "2011-02-11 00:00:00: Portfolio Value - 197574.50\n", + "2011-02-14 00:00:00: Portfolio Value - 167202.42\n", + "2011-02-15 00:00:00: Portfolio Value - 169408.87\n", + "2011-02-16 00:00:00: Portfolio Value - 173718.39\n", + "2011-02-17 00:00:00: Portfolio Value - 179495.42\n", + "2011-02-18 00:00:00: Portfolio Value - 203460.50\n", + "2011-02-22 00:00:00: Portfolio Value - 190468.69\n", + "2011-02-23 00:00:00: Portfolio Value - 167857.71\n", + "2011-02-24 00:00:00: Portfolio Value - 161418.71\n", + "2011-02-25 00:00:00: Portfolio Value - 174577.70\n", + "2011-02-28 00:00:00: Portfolio Value - 182520.50\n", + "2011-03-01 00:00:00: Portfolio Value - 174883.63\n", + "2011-03-02 00:00:00: Portfolio Value - 172061.74\n", + "2011-03-03 00:00:00: Portfolio Value - 194104.40\n", + "2011-03-04 00:00:00: Portfolio Value - 183610.77\n", + "2011-03-07 00:00:00: Portfolio Value - 184451.33\n", + "2011-03-08 00:00:00: Portfolio Value - 197489.95\n", + "2011-03-09 00:00:00: Portfolio Value - 197363.57\n", + "2011-03-10 00:00:00: Portfolio Value - 181659.87\n", + "2011-03-11 00:00:00: Portfolio Value - 194019.73\n", + "2011-03-14 00:00:00: Portfolio Value - 184880.21\n", + "2011-03-15 00:00:00: Portfolio Value - 167598.36\n", + "2011-03-16 00:00:00: Portfolio Value - 164297.75\n", + "2011-03-17 00:00:00: Portfolio Value - 163999.93\n", + "2011-03-18 00:00:00: Portfolio Value - 171344.73\n", + "2011-03-21 00:00:00: Portfolio Value - 191826.33\n", + "2011-03-22 00:00:00: Portfolio Value - 190192.04\n", + "2011-03-23 00:00:00: Portfolio Value - 184779.70\n", + "2011-03-24 00:00:00: Portfolio Value - 182528.78\n", + "2011-03-25 00:00:00: Portfolio Value - 191508.17\n", + "2011-03-28 00:00:00: Portfolio Value - 195248.99\n", + "2011-03-29 00:00:00: Portfolio Value - 205303.68\n", + "2011-03-30 00:00:00: Portfolio Value - 208066.42\n", + "2011-03-31 00:00:00: Portfolio Value - 221109.73\n", + "2011-04-01 00:00:00: Portfolio Value - 243028.45\n", + "2011-04-04 00:00:00: Portfolio Value - 235140.62\n", + "2011-04-05 00:00:00: Portfolio Value - 228635.59\n", + "2011-04-06 00:00:00: Portfolio Value - 247565.42\n", + "2011-04-07 00:00:00: Portfolio Value - 236588.66\n", + "2011-04-08 00:00:00: Portfolio Value - 224153.45\n", + "2011-04-11 00:00:00: Portfolio Value - 232929.77\n", + "2011-04-12 00:00:00: Portfolio Value - 234658.54\n", + "2011-04-13 00:00:00: Portfolio Value - 241479.90\n", + "2011-04-14 00:00:00: Portfolio Value - 252948.06\n", + "2011-04-15 00:00:00: Portfolio Value - 263512.51\n", + "2011-04-18 00:00:00: Portfolio Value - 255669.79\n", + "2011-04-19 00:00:00: Portfolio Value - 251808.30\n", + "2011-04-20 00:00:00: Portfolio Value - 257730.55\n", + "2011-04-21 00:00:00: Portfolio Value - 259701.30\n", + "2011-04-25 00:00:00: Portfolio Value - 257213.14\n", + "2011-04-26 00:00:00: Portfolio Value - 274015.45\n", + "2011-04-27 00:00:00: Portfolio Value - 284499.62\n", + "2011-04-28 00:00:00: Portfolio Value - 303966.90\n", + "2011-04-29 00:00:00: Portfolio Value - 289794.17\n", + "2011-05-02 00:00:00: Portfolio Value - 300439.56\n", + "2011-05-03 00:00:00: Portfolio Value - 297273.60\n", + "2011-05-04 00:00:00: Portfolio Value - 291389.75\n", + "2011-05-05 00:00:00: Portfolio Value - 284090.38\n", + "2011-05-06 00:00:00: Portfolio Value - 288456.21\n", + "2011-05-09 00:00:00: Portfolio Value - 288184.52\n", + "2011-05-10 00:00:00: Portfolio Value - 304049.78\n", + "2011-05-11 00:00:00: Portfolio Value - 314082.07\n", + "2011-05-12 00:00:00: Portfolio Value - 342445.16\n", + "2011-05-13 00:00:00: Portfolio Value - 332777.39\n", + "2011-05-16 00:00:00: Portfolio Value - 331671.11\n", + "2011-05-17 00:00:00: Portfolio Value - 328395.66\n", + "2011-05-18 00:00:00: Portfolio Value - 336482.60\n", + "2011-05-19 00:00:00: Portfolio Value - 343069.22\n", + "2011-05-20 00:00:00: Portfolio Value - 332944.38\n", + "2011-05-23 00:00:00: Portfolio Value - 315539.23\n", + "2011-05-24 00:00:00: Portfolio Value - 308037.51\n", + "2011-05-25 00:00:00: Portfolio Value - 311894.27\n", + "2011-05-26 00:00:00: Portfolio Value - 319608.26\n", + "2011-05-27 00:00:00: Portfolio Value - 318756.10\n", + "2011-05-31 00:00:00: Portfolio Value - 339277.22\n", + "2011-06-01 00:00:00: Portfolio Value - 337738.34\n", + "2011-06-02 00:00:00: Portfolio Value - 342859.79\n", + "2011-06-03 00:00:00: Portfolio Value - 331967.70\n", + "2011-06-06 00:00:00: Portfolio Value - 327775.64\n", + "2011-06-07 00:00:00: Portfolio Value - 325532.19\n", + "2011-06-08 00:00:00: Portfolio Value - 315992.19\n", + "2011-06-09 00:00:00: Portfolio Value - 318386.32\n", + "2011-06-10 00:00:00: Portfolio Value - 288476.69\n", + "2011-06-13 00:00:00: Portfolio Value - 289930.33\n", + "2011-06-14 00:00:00: Portfolio Value - 304465.97\n", + "2011-06-15 00:00:00: Portfolio Value - 282003.34\n", + "2011-06-16 00:00:00: Portfolio Value - 291512.36\n", + "2011-06-17 00:00:00: Portfolio Value - 294989.04\n", + "2011-06-20 00:00:00: Portfolio Value - 301252.60\n", + "2011-06-21 00:00:00: Portfolio Value - 305468.09\n", + "2011-06-22 00:00:00: Portfolio Value - 290807.20\n", + "2011-06-23 00:00:00: Portfolio Value - 275825.80\n", + "2011-06-24 00:00:00: Portfolio Value - 263570.01\n", + "2011-06-27 00:00:00: Portfolio Value - 264155.78\n", + "2011-06-28 00:00:00: Portfolio Value - 271269.69\n", + "2011-06-29 00:00:00: Portfolio Value - 286639.49\n", + "2011-06-30 00:00:00: Portfolio Value - 294737.16\n", + "2011-07-01 00:00:00: Portfolio Value - 317708.92\n", + "2011-07-05 00:00:00: Portfolio Value - 306309.42\n", + "2011-07-06 00:00:00: Portfolio Value - 317230.66\n", + "2011-07-07 00:00:00: Portfolio Value - 323303.48\n", + "2011-07-08 00:00:00: Portfolio Value - 312708.86\n", + "2011-07-11 00:00:00: Portfolio Value - 313030.11\n", + "2011-07-12 00:00:00: Portfolio Value - 323436.56\n", + "2011-07-13 00:00:00: Portfolio Value - 317924.53\n", + "2011-07-14 00:00:00: Portfolio Value - 308400.84\n", + "2011-07-15 00:00:00: Portfolio Value - 322550.61\n", + "2011-07-18 00:00:00: Portfolio Value - 302515.90\n", + "2011-07-19 00:00:00: Portfolio Value - 297095.84\n", + "2011-07-20 00:00:00: Portfolio Value - 297520.75\n", + "2011-07-21 00:00:00: Portfolio Value - 308695.96\n", + "2011-07-22 00:00:00: Portfolio Value - 299084.89\n", + "2011-07-25 00:00:00: Portfolio Value - 287516.20\n", + "2011-07-26 00:00:00: Portfolio Value - 288678.39\n", + "2011-07-27 00:00:00: Portfolio Value - 306177.70\n", + "2011-07-28 00:00:00: Portfolio Value - 288651.95\n", + "2011-07-29 00:00:00: Portfolio Value - 292083.74\n", + "2011-08-01 00:00:00: Portfolio Value - 269319.00\n", + "2011-08-02 00:00:00: Portfolio Value - 244389.53\n", + "2011-08-03 00:00:00: Portfolio Value - 255737.74\n", + "2011-08-04 00:00:00: Portfolio Value - 195769.66\n", + "2011-08-05 00:00:00: Portfolio Value - 216601.44\n", + "2011-08-08 00:00:00: Portfolio Value - 124569.25\n", + "2011-08-09 00:00:00: Portfolio Value - 183773.21\n", + "2011-08-10 00:00:00: Portfolio Value - 151903.60\n", + "2011-08-11 00:00:00: Portfolio Value - 216203.54\n", + "2011-08-12 00:00:00: Portfolio Value - 220088.52\n", + "2011-08-15 00:00:00: Portfolio Value - 259123.64\n", + "2011-08-16 00:00:00: Portfolio Value - 256213.56\n", + "2011-08-17 00:00:00: Portfolio Value - 246528.51\n", + "2011-08-18 00:00:00: Portfolio Value - 201569.12\n", + "2011-08-19 00:00:00: Portfolio Value - 198813.53\n", + "2011-08-22 00:00:00: Portfolio Value - 224865.26\n", + "2011-08-23 00:00:00: Portfolio Value - 266252.61\n", + "2011-08-24 00:00:00: Portfolio Value - 276431.55\n", + "2011-08-25 00:00:00: Portfolio Value - 261233.63\n", + "2011-08-26 00:00:00: Portfolio Value - 285723.22\n", + "2011-08-29 00:00:00: Portfolio Value - 306823.20\n", + "2011-08-30 00:00:00: Portfolio Value - 313091.69\n", + "2011-08-31 00:00:00: Portfolio Value - 327955.01\n", + "2011-09-01 00:00:00: Portfolio Value - 303938.02\n", + "2011-09-02 00:00:00: Portfolio Value - 278621.40\n", + "2011-09-06 00:00:00: Portfolio Value - 270259.92\n", + "2011-09-07 00:00:00: Portfolio Value - 301735.16\n", + "2011-09-08 00:00:00: Portfolio Value - 280697.60\n", + "2011-09-09 00:00:00: Portfolio Value - 226267.88\n", + "2011-09-12 00:00:00: Portfolio Value - 217863.29\n", + "2011-09-13 00:00:00: Portfolio Value - 221689.17\n", + "2011-09-14 00:00:00: Portfolio Value - 235515.54\n", + "2011-09-15 00:00:00: Portfolio Value - 241433.93\n", + "2011-09-16 00:00:00: Portfolio Value - 261211.87\n", + "2011-09-19 00:00:00: Portfolio Value - 238103.39\n", + "2011-09-20 00:00:00: Portfolio Value - 247927.69\n", + "2011-09-21 00:00:00: Portfolio Value - 217490.74\n", + "2011-09-22 00:00:00: Portfolio Value - 206023.77\n", + "2011-09-23 00:00:00: Portfolio Value - 216780.91\n", + "2011-09-26 00:00:00: Portfolio Value - 212436.42\n", + "2011-09-27 00:00:00: Portfolio Value - 244549.19\n", + "2011-09-28 00:00:00: Portfolio Value - 212497.21\n", + "2011-09-29 00:00:00: Portfolio Value - 251189.14\n", + "2011-09-30 00:00:00: Portfolio Value - 253973.33\n", + "2011-10-03 00:00:00: Portfolio Value - 196970.89\n", + "2011-10-04 00:00:00: Portfolio Value - 225482.40\n", + "2011-10-05 00:00:00: Portfolio Value - 226893.23\n", + "2011-10-06 00:00:00: Portfolio Value - 245461.84\n", + "2011-10-07 00:00:00: Portfolio Value - 244462.26\n", + "2011-10-10 00:00:00: Portfolio Value - 274171.17\n", + "2011-10-11 00:00:00: Portfolio Value - 243345.28\n", + "2011-10-12 00:00:00: Portfolio Value - 254531.81\n", + "2011-10-13 00:00:00: Portfolio Value - 268213.56\n", + "2011-10-14 00:00:00: Portfolio Value - 273641.20\n", + "2011-10-17 00:00:00: Portfolio Value - 248507.71\n", + "2011-10-18 00:00:00: Portfolio Value - 261160.04\n", + "2011-10-19 00:00:00: Portfolio Value - 283691.93\n", + "2011-10-20 00:00:00: Portfolio Value - 305098.51\n", + "2011-10-21 00:00:00: Portfolio Value - 358408.72\n", + "2011-10-24 00:00:00: Portfolio Value - 370283.16\n", + "2011-10-25 00:00:00: Portfolio Value - 284949.79\n", + "2011-10-26 00:00:00: Portfolio Value - 282670.12\n", + "2011-10-27 00:00:00: Portfolio Value - 281953.86\n", + "2011-10-28 00:00:00: Portfolio Value - 267885.44\n", + "2011-10-31 00:00:00: Portfolio Value - 274731.91\n", + "2011-11-01 00:00:00: Portfolio Value - 237082.75\n", + "2011-11-02 00:00:00: Portfolio Value - 233695.09\n", + "2011-11-03 00:00:00: Portfolio Value - 244230.84\n", + "2011-11-04 00:00:00: Portfolio Value - 255351.16\n", + "2011-11-07 00:00:00: Portfolio Value - 268828.37\n", + "2011-11-08 00:00:00: Portfolio Value - 279959.29\n", + "2011-11-09 00:00:00: Portfolio Value - 258169.41\n", + "2011-11-10 00:00:00: Portfolio Value - 274284.70\n", + "2011-11-11 00:00:00: Portfolio Value - 287984.78\n", + "2011-11-14 00:00:00: Portfolio Value - 278660.40\n", + "2011-11-15 00:00:00: Portfolio Value - 279200.98\n", + "2011-11-16 00:00:00: Portfolio Value - 269340.40\n", + "2011-11-17 00:00:00: Portfolio Value - 261064.63\n", + "2011-11-18 00:00:00: Portfolio Value - 249759.92\n", + "2011-11-21 00:00:00: Portfolio Value - 232653.39\n", + "2011-11-22 00:00:00: Portfolio Value - 226867.64\n", + "2011-11-23 00:00:00: Portfolio Value - 213922.64\n", + "2011-11-25 00:00:00: Portfolio Value - 231101.89\n", + "2011-11-28 00:00:00: Portfolio Value - 241559.26\n", + "2011-11-29 00:00:00: Portfolio Value - 237443.99\n", + "2011-11-30 00:00:00: Portfolio Value - 267369.30\n", + "2011-12-01 00:00:00: Portfolio Value - 269515.58\n", + "2011-12-02 00:00:00: Portfolio Value - 274910.50\n", + "2011-12-05 00:00:00: Portfolio Value - 290789.88\n", + "2011-12-06 00:00:00: Portfolio Value - 279700.31\n", + "2011-12-07 00:00:00: Portfolio Value - 295417.85\n", + "2011-12-08 00:00:00: Portfolio Value - 287005.39\n", + "2011-12-09 00:00:00: Portfolio Value - 295857.09\n", + "2011-12-12 00:00:00: Portfolio Value - 292785.20\n", + "2011-12-13 00:00:00: Portfolio Value - 294421.58\n", + "2011-12-14 00:00:00: Portfolio Value - 301656.44\n", + "2011-12-15 00:00:00: Portfolio Value - 316385.65\n", + "2011-12-16 00:00:00: Portfolio Value - 320345.46\n", + "2011-12-19 00:00:00: Portfolio Value - 324438.52\n", + "2011-12-20 00:00:00: Portfolio Value - 356237.31\n", + "2011-12-21 00:00:00: Portfolio Value - 371075.08\n", + "2011-12-22 00:00:00: Portfolio Value - 365338.99\n", + "2011-12-23 00:00:00: Portfolio Value - 383187.42\n", + "2011-12-27 00:00:00: Portfolio Value - 395384.13\n", + "2011-12-28 00:00:00: Portfolio Value - 388655.26\n", + "2011-12-29 00:00:00: Portfolio Value - 402147.73\n", + "2011-12-30 00:00:00: Portfolio Value - 398433.74\n", + "2012-01-03 00:00:00: Portfolio Value - 378581.82\n", + "2012-01-04 00:00:00: Portfolio Value - 349255.16\n", + "2012-01-05 00:00:00: Portfolio Value - 354854.02\n", + "2012-01-06 00:00:00: Portfolio Value - 358963.39\n", + "2012-01-09 00:00:00: Portfolio Value - 353347.40\n", + "2012-01-10 00:00:00: Portfolio Value - 364260.37\n", + "2012-01-11 00:00:00: Portfolio Value - 360133.95\n", + "2012-01-12 00:00:00: Portfolio Value - 349556.38\n", + "2012-01-13 00:00:00: Portfolio Value - 351433.78\n", + "2012-01-17 00:00:00: Portfolio Value - 351399.51\n", + "2012-01-18 00:00:00: Portfolio Value - 357172.40\n", + "2012-01-19 00:00:00: Portfolio Value - 361315.63\n", + "2012-01-20 00:00:00: Portfolio Value - 357175.52\n", + "2012-01-23 00:00:00: Portfolio Value - 346731.39\n", + "2012-01-24 00:00:00: Portfolio Value - 352567.77\n", + "2012-01-25 00:00:00: Portfolio Value - 361367.17\n", + "2012-01-26 00:00:00: Portfolio Value - 362262.04\n", + "2012-01-27 00:00:00: Portfolio Value - 360250.25\n", + "2012-01-30 00:00:00: Portfolio Value - 356333.11\n", + "2012-01-31 00:00:00: Portfolio Value - 359572.88\n", + "2012-02-01 00:00:00: Portfolio Value - 383772.96\n", + "2012-02-02 00:00:00: Portfolio Value - 377053.33\n", + "2012-02-03 00:00:00: Portfolio Value - 379300.28\n", + "2012-02-06 00:00:00: Portfolio Value - 376587.84\n", + "2012-02-07 00:00:00: Portfolio Value - 372274.63\n", + "2012-02-08 00:00:00: Portfolio Value - 364137.06\n", + "2012-02-09 00:00:00: Portfolio Value - 366724.56\n", + "2012-02-10 00:00:00: Portfolio Value - 358678.04\n", + "2012-02-13 00:00:00: Portfolio Value - 361748.79\n", + "2012-02-14 00:00:00: Portfolio Value - 353862.04\n", + "2012-02-15 00:00:00: Portfolio Value - 301272.23\n", + "2012-02-16 00:00:00: Portfolio Value - 295722.45\n", + "2012-02-17 00:00:00: Portfolio Value - 289311.35\n", + "2012-02-21 00:00:00: Portfolio Value - 284158.39\n", + "2012-02-22 00:00:00: Portfolio Value - 295906.94\n", + "2012-02-23 00:00:00: Portfolio Value - 301194.93\n", + "2012-02-24 00:00:00: Portfolio Value - 310694.78\n", + "2012-02-27 00:00:00: Portfolio Value - 297271.69\n", + "2012-02-28 00:00:00: Portfolio Value - 301512.48\n", + "2012-02-29 00:00:00: Portfolio Value - 312875.28\n", + "2012-03-01 00:00:00: Portfolio Value - 299267.58\n", + "2012-03-02 00:00:00: Portfolio Value - 294897.04\n", + "2012-03-05 00:00:00: Portfolio Value - 311589.77\n", + "2012-03-06 00:00:00: Portfolio Value - 307438.77\n", + "2012-03-07 00:00:00: Portfolio Value - 305817.65\n", + "2012-03-08 00:00:00: Portfolio Value - 325677.30\n", + "2012-03-09 00:00:00: Portfolio Value - 339141.67\n", + "2012-03-12 00:00:00: Portfolio Value - 343776.00\n", + "2012-03-13 00:00:00: Portfolio Value - 347627.54\n", + "2012-03-14 00:00:00: Portfolio Value - 359200.10\n", + "2012-03-15 00:00:00: Portfolio Value - 361939.49\n", + "2012-03-16 00:00:00: Portfolio Value - 351600.02\n", + "2012-03-19 00:00:00: Portfolio Value - 345195.52\n", + "2012-03-20 00:00:00: Portfolio Value - 331633.98\n", + "2012-03-21 00:00:00: Portfolio Value - 331540.28\n", + "2012-03-22 00:00:00: Portfolio Value - 332180.19\n", + "2012-03-23 00:00:00: Portfolio Value - 324229.87\n", + "2012-03-26 00:00:00: Portfolio Value - 349726.00\n", + "2012-03-27 00:00:00: Portfolio Value - 347344.36\n", + "2012-03-28 00:00:00: Portfolio Value - 347189.69\n", + "2012-03-29 00:00:00: Portfolio Value - 344725.58\n", + "2012-03-30 00:00:00: Portfolio Value - 346778.85\n", + "2012-04-02 00:00:00: Portfolio Value - 348532.91\n", + "2012-04-03 00:00:00: Portfolio Value - 364564.74\n", + "2012-04-04 00:00:00: Portfolio Value - 358660.45\n", + "2012-04-05 00:00:00: Portfolio Value - 354108.02\n", + "2012-04-09 00:00:00: Portfolio Value - 343067.37\n", + "2012-04-10 00:00:00: Portfolio Value - 335010.90\n", + "2012-04-11 00:00:00: Portfolio Value - 352838.89\n", + "2012-04-12 00:00:00: Portfolio Value - 346944.53\n", + "2012-04-13 00:00:00: Portfolio Value - 340121.04\n", + "2012-04-16 00:00:00: Portfolio Value - 342928.89\n", + "2012-04-17 00:00:00: Portfolio Value - 369366.04\n", + "2012-04-18 00:00:00: Portfolio Value - 365488.28\n", + "2012-04-19 00:00:00: Portfolio Value - 370728.21\n", + "2012-04-20 00:00:00: Portfolio Value - 389167.07\n", + "2012-04-23 00:00:00: Portfolio Value - 385800.08\n", + "2012-04-24 00:00:00: Portfolio Value - 402774.33\n", + "2012-04-25 00:00:00: Portfolio Value - 424625.31\n", + "2012-04-26 00:00:00: Portfolio Value - 437694.26\n", + "2012-04-27 00:00:00: Portfolio Value - 448284.32\n", + "2012-04-30 00:00:00: Portfolio Value - 449315.92\n", + "2012-05-01 00:00:00: Portfolio Value - 441003.38\n", + "2012-05-02 00:00:00: Portfolio Value - 441185.12\n", + "2012-05-03 00:00:00: Portfolio Value - 436796.61\n", + "2012-05-04 00:00:00: Portfolio Value - 441255.91\n", + "2012-05-07 00:00:00: Portfolio Value - 443760.29\n", + "2012-05-08 00:00:00: Portfolio Value - 445313.62\n", + "2012-05-09 00:00:00: Portfolio Value - 444763.81\n", + "2012-05-10 00:00:00: Portfolio Value - 454523.62\n", + "2012-05-11 00:00:00: Portfolio Value - 455372.22\n", + "2012-05-14 00:00:00: Portfolio Value - 452735.17\n", + "2012-05-15 00:00:00: Portfolio Value - 461727.91\n", + "2012-05-16 00:00:00: Portfolio Value - 449002.28\n", + "2012-05-17 00:00:00: Portfolio Value - 428707.92\n", + "2012-05-18 00:00:00: Portfolio Value - 403875.81\n", + "2012-05-21 00:00:00: Portfolio Value - 406916.65\n", + "2012-05-22 00:00:00: Portfolio Value - 415227.07\n", + "2012-05-23 00:00:00: Portfolio Value - 417473.23\n", + "2012-05-24 00:00:00: Portfolio Value - 433923.17\n", + "2012-05-25 00:00:00: Portfolio Value - 431743.69\n", + "2012-05-29 00:00:00: Portfolio Value - 433055.86\n", + "2012-05-30 00:00:00: Portfolio Value - 427282.76\n", + "2012-05-31 00:00:00: Portfolio Value - 425180.45\n", + "2012-06-01 00:00:00: Portfolio Value - 421039.82\n", + "2012-06-04 00:00:00: Portfolio Value - 430576.49\n", + "2012-06-05 00:00:00: Portfolio Value - 428182.70\n", + "2012-06-06 00:00:00: Portfolio Value - 447429.98\n", + "2012-06-07 00:00:00: Portfolio Value - 450261.71\n", + "2012-06-08 00:00:00: Portfolio Value - 458375.65\n", + "2012-06-11 00:00:00: Portfolio Value - 448137.26\n", + "2012-06-12 00:00:00: Portfolio Value - 453252.87\n", + "2012-06-13 00:00:00: Portfolio Value - 461726.51\n", + "2012-06-14 00:00:00: Portfolio Value - 467204.03\n", + "2012-06-15 00:00:00: Portfolio Value - 464248.76\n", + "2012-06-18 00:00:00: Portfolio Value - 473020.18\n", + "2012-06-19 00:00:00: Portfolio Value - 472970.34\n", + "2012-06-20 00:00:00: Portfolio Value - 458811.74\n", + "2012-06-21 00:00:00: Portfolio Value - 451079.75\n", + "2012-06-22 00:00:00: Portfolio Value - 464312.32\n", + "2012-06-25 00:00:00: Portfolio Value - 446314.30\n", + "2012-06-26 00:00:00: Portfolio Value - 451324.13\n", + "2012-06-27 00:00:00: Portfolio Value - 465807.97\n", + "2012-06-28 00:00:00: Portfolio Value - 480977.36\n", + "2012-06-29 00:00:00: Portfolio Value - 512449.07\n", + "2012-07-02 00:00:00: Portfolio Value - 530532.22\n", + "2012-07-03 00:00:00: Portfolio Value - 524959.33\n", + "2012-07-05 00:00:00: Portfolio Value - 529681.71\n", + "2012-07-06 00:00:00: Portfolio Value - 513646.52\n", + "2012-07-09 00:00:00: Portfolio Value - 509891.04\n", + "2012-07-10 00:00:00: Portfolio Value - 516599.65\n", + "2012-07-11 00:00:00: Portfolio Value - 525352.56\n", + "2012-07-12 00:00:00: Portfolio Value - 521520.98\n", + "2012-07-13 00:00:00: Portfolio Value - 534454.40\n", + "2012-07-16 00:00:00: Portfolio Value - 525456.66\n", + "2012-07-17 00:00:00: Portfolio Value - 546338.35\n", + "2012-07-18 00:00:00: Portfolio Value - 546914.42\n", + "2012-07-19 00:00:00: Portfolio Value - 537229.84\n", + "2012-07-20 00:00:00: Portfolio Value - 525723.58\n", + "2012-07-23 00:00:00: Portfolio Value - 519716.10\n", + "2012-07-24 00:00:00: Portfolio Value - 500742.51\n", + "2012-07-25 00:00:00: Portfolio Value - 515475.82\n", + "2012-07-26 00:00:00: Portfolio Value - 533187.33\n", + "2012-07-27 00:00:00: Portfolio Value - 559518.12\n", + "2012-07-30 00:00:00: Portfolio Value - 556455.91\n", + "2012-07-31 00:00:00: Portfolio Value - 548422.65\n", + "2012-08-01 00:00:00: Portfolio Value - 523276.35\n", + "2012-08-02 00:00:00: Portfolio Value - 499336.40\n", + "2012-08-03 00:00:00: Portfolio Value - 529257.79\n", + "2012-08-06 00:00:00: Portfolio Value - 506594.83\n", + "2012-08-07 00:00:00: Portfolio Value - 500165.42\n", + "2012-08-08 00:00:00: Portfolio Value - 514335.91\n", + "2012-08-09 00:00:00: Portfolio Value - 506337.25\n", + "2012-08-10 00:00:00: Portfolio Value - 513556.75\n", + "2012-08-13 00:00:00: Portfolio Value - 522278.14\n", + "2012-08-14 00:00:00: Portfolio Value - 541592.71\n", + "2012-08-15 00:00:00: Portfolio Value - 549315.09\n", + "2012-08-16 00:00:00: Portfolio Value - 538452.69\n", + "2012-08-17 00:00:00: Portfolio Value - 545703.34\n", + "2012-08-20 00:00:00: Portfolio Value - 539563.54\n", + "2012-08-21 00:00:00: Portfolio Value - 537429.09\n", + "2012-08-22 00:00:00: Portfolio Value - 522724.53\n", + "2012-08-23 00:00:00: Portfolio Value - 514179.75\n", + "2012-08-24 00:00:00: Portfolio Value - 529441.19\n", + "2012-08-27 00:00:00: Portfolio Value - 528758.54\n", + "2012-08-28 00:00:00: Portfolio Value - 520349.10\n", + "2012-08-29 00:00:00: Portfolio Value - 522180.17\n", + "2012-08-30 00:00:00: Portfolio Value - 521324.73\n", + "2012-08-31 00:00:00: Portfolio Value - 540686.86\n", + "2012-09-04 00:00:00: Portfolio Value - 554659.35\n", + "2012-09-05 00:00:00: Portfolio Value - 542807.74\n", + "2012-09-06 00:00:00: Portfolio Value - 558794.07\n", + "2012-09-07 00:00:00: Portfolio Value - 537457.23\n", + "2012-09-10 00:00:00: Portfolio Value - 530513.53\n", + "2012-09-11 00:00:00: Portfolio Value - 528028.10\n", + "2012-09-12 00:00:00: Portfolio Value - 529726.14\n", + "2012-09-13 00:00:00: Portfolio Value - 542452.06\n", + "2012-09-14 00:00:00: Portfolio Value - 510856.34\n", + "2012-09-17 00:00:00: Portfolio Value - 510507.26\n", + "2012-09-18 00:00:00: Portfolio Value - 504843.74\n", + "2012-09-19 00:00:00: Portfolio Value - 509810.63\n", + "2012-09-20 00:00:00: Portfolio Value - 520931.47\n", + "2012-09-21 00:00:00: Portfolio Value - 517602.79\n", + "2012-09-24 00:00:00: Portfolio Value - 530403.10\n", + "2012-09-25 00:00:00: Portfolio Value - 535399.09\n", + "2012-09-26 00:00:00: Portfolio Value - 539583.74\n", + "2012-09-27 00:00:00: Portfolio Value - 541074.78\n", + "2012-09-28 00:00:00: Portfolio Value - 550971.87\n", + "2012-10-01 00:00:00: Portfolio Value - 554050.68\n", + "2012-10-02 00:00:00: Portfolio Value - 558709.42\n", + "2012-10-03 00:00:00: Portfolio Value - 557707.28\n", + "2012-10-04 00:00:00: Portfolio Value - 563429.35\n", + "2012-10-05 00:00:00: Portfolio Value - 570312.40\n", + "2012-10-08 00:00:00: Portfolio Value - 576919.20\n", + "2012-10-09 00:00:00: Portfolio Value - 548984.87\n", + "2012-10-10 00:00:00: Portfolio Value - 533200.22\n", + "2012-10-11 00:00:00: Portfolio Value - 533794.49\n", + "2012-10-12 00:00:00: Portfolio Value - 532186.99\n", + "2012-10-15 00:00:00: Portfolio Value - 531837.98\n", + "2012-10-16 00:00:00: Portfolio Value - 544811.96\n", + "2012-10-17 00:00:00: Portfolio Value - 538005.78\n", + "2012-10-18 00:00:00: Portfolio Value - 530163.76\n", + "2012-10-19 00:00:00: Portfolio Value - 507334.57\n", + "2012-10-22 00:00:00: Portfolio Value - 504206.99\n", + "2012-10-23 00:00:00: Portfolio Value - 497931.92\n", + "2012-10-24 00:00:00: Portfolio Value - 461973.70\n", + "2012-10-25 00:00:00: Portfolio Value - 467220.76\n", + "2012-10-26 00:00:00: Portfolio Value - 455532.76\n", + "2012-10-31 00:00:00: Portfolio Value - 490317.83\n", + "2012-11-01 00:00:00: Portfolio Value - 499183.13\n", + "2012-11-02 00:00:00: Portfolio Value - 480294.29\n", + "2012-11-05 00:00:00: Portfolio Value - 490390.59\n", + "2012-11-06 00:00:00: Portfolio Value - 511588.04\n", + "2012-11-07 00:00:00: Portfolio Value - 478188.51\n", + "2012-11-08 00:00:00: Portfolio Value - 469542.76\n", + "2012-11-09 00:00:00: Portfolio Value - 470642.62\n", + "2012-11-12 00:00:00: Portfolio Value - 462214.85\n", + "2012-11-13 00:00:00: Portfolio Value - 462447.39\n", + "2012-11-14 00:00:00: Portfolio Value - 453269.18\n", + "2012-11-15 00:00:00: Portfolio Value - 457240.22\n", + "2012-11-16 00:00:00: Portfolio Value - 476939.20\n", + "2012-11-19 00:00:00: Portfolio Value - 478712.06\n", + "2012-11-20 00:00:00: Portfolio Value - 483223.12\n", + "2012-11-21 00:00:00: Portfolio Value - 493219.75\n", + "2012-11-23 00:00:00: Portfolio Value - 499100.79\n", + "2012-11-26 00:00:00: Portfolio Value - 499516.13\n", + "2012-11-27 00:00:00: Portfolio Value - 497733.33\n", + "2012-11-28 00:00:00: Portfolio Value - 508421.97\n", + "2012-11-29 00:00:00: Portfolio Value - 516693.85\n", + "2012-11-30 00:00:00: Portfolio Value - 534948.66\n", + "2012-12-03 00:00:00: Portfolio Value - 521049.14\n", + "2012-12-04 00:00:00: Portfolio Value - 512243.68\n", + "2012-12-05 00:00:00: Portfolio Value - 530952.95\n", + "2012-12-06 00:00:00: Portfolio Value - 534437.07\n", + "2012-12-07 00:00:00: Portfolio Value - 539018.57\n", + "2012-12-10 00:00:00: Portfolio Value - 530798.25\n", + "2012-12-11 00:00:00: Portfolio Value - 538683.59\n", + "2012-12-12 00:00:00: Portfolio Value - 543791.84\n", + "2012-12-13 00:00:00: Portfolio Value - 531559.05\n", + "2012-12-14 00:00:00: Portfolio Value - 518119.35\n", + "2012-12-17 00:00:00: Portfolio Value - 535364.99\n", + "2012-12-18 00:00:00: Portfolio Value - 529422.05\n", + "2012-12-19 00:00:00: Portfolio Value - 521502.14\n", + "2012-12-20 00:00:00: Portfolio Value - 521831.70\n", + "2012-12-21 00:00:00: Portfolio Value - 498148.10\n", + "2012-12-24 00:00:00: Portfolio Value - 493545.92\n", + "2012-12-26 00:00:00: Portfolio Value - 480194.40\n", + "2012-12-27 00:00:00: Portfolio Value - 485454.11\n", + "2012-12-28 00:00:00: Portfolio Value - 474804.02\n", + "2012-12-31 00:00:00: Portfolio Value - 489181.71\n", + "2013-01-02 00:00:00: Portfolio Value - 521271.66\n", + "2013-01-03 00:00:00: Portfolio Value - 535715.22\n", + "2013-01-04 00:00:00: Portfolio Value - 541210.04\n", + "2013-01-07 00:00:00: Portfolio Value - 541068.92\n", + "2013-01-08 00:00:00: Portfolio Value - 553231.09\n", + "2013-01-09 00:00:00: Portfolio Value - 558086.58\n", + "2013-01-10 00:00:00: Portfolio Value - 559176.23\n", + "2013-01-11 00:00:00: Portfolio Value - 561536.42\n", + "2013-01-14 00:00:00: Portfolio Value - 574481.74\n", + "2013-01-15 00:00:00: Portfolio Value - 586156.99\n", + "2013-01-16 00:00:00: Portfolio Value - 569552.34\n", + "2013-01-17 00:00:00: Portfolio Value - 571733.34\n", + "2013-01-18 00:00:00: Portfolio Value - 588520.14\n", + "2013-01-22 00:00:00: Portfolio Value - 584321.26\n", + "2013-01-23 00:00:00: Portfolio Value - 580839.54\n", + "2013-01-24 00:00:00: Portfolio Value - 588304.90\n", + "2013-01-25 00:00:00: Portfolio Value - 614999.67\n", + "2013-01-28 00:00:00: Portfolio Value - 620976.44\n", + "2013-01-29 00:00:00: Portfolio Value - 629397.58\n", + "2013-01-30 00:00:00: Portfolio Value - 634590.41\n", + "2013-01-31 00:00:00: Portfolio Value - 620001.29\n", + "2013-02-01 00:00:00: Portfolio Value - 641875.98\n", + "2013-02-04 00:00:00: Portfolio Value - 636860.92\n", + "2013-02-05 00:00:00: Portfolio Value - 658053.58\n", + "2013-02-06 00:00:00: Portfolio Value - 668644.21\n", + "2013-02-07 00:00:00: Portfolio Value - 668539.84\n", + "2013-02-08 00:00:00: Portfolio Value - 672904.07\n", + "2013-02-11 00:00:00: Portfolio Value - 662163.08\n", + "2013-02-12 00:00:00: Portfolio Value - 653337.56\n", + "2013-02-13 00:00:00: Portfolio Value - 679220.10\n", + "2013-02-14 00:00:00: Portfolio Value - 677208.92\n", + "2013-02-15 00:00:00: Portfolio Value - 681950.15\n", + "2013-02-19 00:00:00: Portfolio Value - 698023.21\n", + "2013-02-20 00:00:00: Portfolio Value - 692932.20\n", + "2013-02-21 00:00:00: Portfolio Value - 691793.21\n", + "2013-02-22 00:00:00: Portfolio Value - 709268.95\n", + "2013-02-25 00:00:00: Portfolio Value - 702682.74\n", + "2013-02-26 00:00:00: Portfolio Value - 724776.42\n", + "2013-02-27 00:00:00: Portfolio Value - 763373.64\n", + "2013-02-28 00:00:00: Portfolio Value - 776112.85\n", + "2013-03-01 00:00:00: Portfolio Value - 777859.94\n", + "2013-03-04 00:00:00: Portfolio Value - 782011.04\n", + "2013-03-05 00:00:00: Portfolio Value - 794851.66\n", + "2013-03-06 00:00:00: Portfolio Value - 773779.29\n", + "2013-03-07 00:00:00: Portfolio Value - 760778.64\n", + "2013-03-08 00:00:00: Portfolio Value - 772261.31\n", + "2013-03-11 00:00:00: Portfolio Value - 780241.56\n", + "2013-03-12 00:00:00: Portfolio Value - 777844.77\n", + "2013-03-13 00:00:00: Portfolio Value - 785585.58\n", + "2013-03-14 00:00:00: Portfolio Value - 797034.26\n", + "2013-03-15 00:00:00: Portfolio Value - 815986.57\n", + "2013-03-18 00:00:00: Portfolio Value - 818225.77\n", + "2013-03-19 00:00:00: Portfolio Value - 843642.21\n", + "2013-03-20 00:00:00: Portfolio Value - 869234.27\n", + "2013-03-21 00:00:00: Portfolio Value - 867351.45\n", + "2013-03-22 00:00:00: Portfolio Value - 885922.46\n", + "2013-03-25 00:00:00: Portfolio Value - 883647.03\n", + "2013-03-26 00:00:00: Portfolio Value - 913604.98\n", + "2013-03-27 00:00:00: Portfolio Value - 926453.87\n", + "2013-03-28 00:00:00: Portfolio Value - 959678.13\n", + "2013-04-01 00:00:00: Portfolio Value - 959822.92\n", + "2013-04-02 00:00:00: Portfolio Value - 971474.96\n", + "2013-04-03 00:00:00: Portfolio Value - 945969.01\n", + "2013-04-04 00:00:00: Portfolio Value - 939355.70\n", + "2013-04-05 00:00:00: Portfolio Value - 931582.87\n", + "2013-04-08 00:00:00: Portfolio Value - 939802.24\n", + "2013-04-09 00:00:00: Portfolio Value - 932387.58\n", + "2013-04-10 00:00:00: Portfolio Value - 949428.77\n", + "2013-04-11 00:00:00: Portfolio Value - 963256.36\n", + "2013-04-12 00:00:00: Portfolio Value - 960748.65\n", + "2013-04-15 00:00:00: Portfolio Value - 935568.43\n", + "2013-04-16 00:00:00: Portfolio Value - 959528.78\n", + "2013-04-17 00:00:00: Portfolio Value - 948475.18\n", + "2013-04-18 00:00:00: Portfolio Value - 938599.55\n", + "2013-04-19 00:00:00: Portfolio Value - 947729.90\n", + "2013-04-22 00:00:00: Portfolio Value - 962434.84\n", + "2013-04-23 00:00:00: Portfolio Value - 973004.64\n", + "2013-04-24 00:00:00: Portfolio Value - 951764.46\n", + "2013-04-25 00:00:00: Portfolio Value - 969900.00\n", + "2013-04-26 00:00:00: Portfolio Value - 957250.54\n", + "2013-04-29 00:00:00: Portfolio Value - 967979.03\n", + "2013-04-30 00:00:00: Portfolio Value - 983799.51\n", + "2013-05-01 00:00:00: Portfolio Value - 979509.34\n", + "2013-05-02 00:00:00: Portfolio Value - 1002278.78\n", + "2013-05-03 00:00:00: Portfolio Value - 1006269.20\n", + "2013-05-06 00:00:00: Portfolio Value - 983737.86\n", + "2013-05-07 00:00:00: Portfolio Value - 996469.12\n", + "2013-05-08 00:00:00: Portfolio Value - 1008886.28\n", + "2013-05-09 00:00:00: Portfolio Value - 1003653.95\n", + "2013-05-10 00:00:00: Portfolio Value - 1015979.58\n", + "2013-05-13 00:00:00: Portfolio Value - 1025813.85\n", + "2013-05-14 00:00:00: Portfolio Value - 1047108.78\n", + "2013-05-15 00:00:00: Portfolio Value - 1054048.44\n", + "2013-05-16 00:00:00: Portfolio Value - 1039029.47\n", + "2013-05-17 00:00:00: Portfolio Value - 1037982.61\n", + "2013-05-20 00:00:00: Portfolio Value - 1013698.32\n", + "2013-05-21 00:00:00: Portfolio Value - 1000016.45\n", + "2013-05-22 00:00:00: Portfolio Value - 972830.49\n", + "2013-05-23 00:00:00: Portfolio Value - 980137.18\n", + "2013-05-24 00:00:00: Portfolio Value - 966854.33\n", + "2013-05-28 00:00:00: Portfolio Value - 969134.62\n", + "2013-05-29 00:00:00: Portfolio Value - 934329.21\n", + "2013-05-30 00:00:00: Portfolio Value - 941333.62\n", + "2013-05-31 00:00:00: Portfolio Value - 886341.18\n", + "2013-06-03 00:00:00: Portfolio Value - 890481.73\n", + "2013-06-04 00:00:00: Portfolio Value - 896043.05\n", + "2013-06-05 00:00:00: Portfolio Value - 878447.46\n", + "2013-06-06 00:00:00: Portfolio Value - 894237.46\n", + "2013-06-07 00:00:00: Portfolio Value - 915236.28\n", + "2013-06-10 00:00:00: Portfolio Value - 907350.73\n", + "2013-06-11 00:00:00: Portfolio Value - 924402.18\n", + "2013-06-12 00:00:00: Portfolio Value - 893597.35\n", + "2013-06-13 00:00:00: Portfolio Value - 921965.39\n", + "2013-06-14 00:00:00: Portfolio Value - 927530.08\n", + "2013-06-17 00:00:00: Portfolio Value - 969449.76\n", + "2013-06-18 00:00:00: Portfolio Value - 983069.69\n", + "2013-06-19 00:00:00: Portfolio Value - 937876.06\n", + "2013-06-20 00:00:00: Portfolio Value - 892755.84\n", + "2013-06-21 00:00:00: Portfolio Value - 912007.51\n", + "2013-06-24 00:00:00: Portfolio Value - 924484.11\n", + "2013-06-25 00:00:00: Portfolio Value - 915490.13\n", + "2013-06-26 00:00:00: Portfolio Value - 934206.30\n", + "2013-06-27 00:00:00: Portfolio Value - 937102.37\n", + "2013-06-28 00:00:00: Portfolio Value - 934617.41\n", + "2013-07-01 00:00:00: Portfolio Value - 944575.58\n", + "2013-07-02 00:00:00: Portfolio Value - 927940.67\n", + "2013-07-03 00:00:00: Portfolio Value - 930359.24\n", + "2013-07-05 00:00:00: Portfolio Value - 943839.29\n", + "2013-07-08 00:00:00: Portfolio Value - 962558.53\n", + "2013-07-09 00:00:00: Portfolio Value - 959501.72\n", + "2013-07-10 00:00:00: Portfolio Value - 968026.15\n", + "2013-07-11 00:00:00: Portfolio Value - 1007177.34\n", + "2013-07-12 00:00:00: Portfolio Value - 1031800.75\n", + "2013-07-15 00:00:00: Portfolio Value - 1041485.23\n", + "2013-07-16 00:00:00: Portfolio Value - 1031066.50\n", + "2013-07-17 00:00:00: Portfolio Value - 1036347.08\n", + "2013-07-18 00:00:00: Portfolio Value - 1042431.62\n", + "2013-07-19 00:00:00: Portfolio Value - 1049835.70\n", + "2013-07-22 00:00:00: Portfolio Value - 1052136.29\n", + "2013-07-23 00:00:00: Portfolio Value - 1044746.35\n", + "2013-07-24 00:00:00: Portfolio Value - 1026425.75\n", + "2013-07-25 00:00:00: Portfolio Value - 1035136.91\n", + "2013-07-26 00:00:00: Portfolio Value - 1030690.98\n", + "2013-07-29 00:00:00: Portfolio Value - 1030640.70\n", + "2013-07-30 00:00:00: Portfolio Value - 1038705.47\n", + "2013-07-31 00:00:00: Portfolio Value - 1061810.16\n", + "2013-08-01 00:00:00: Portfolio Value - 1057390.43\n", + "2013-08-02 00:00:00: Portfolio Value - 1039614.04\n", + "2013-08-05 00:00:00: Portfolio Value - 1021541.81\n", + "2013-08-06 00:00:00: Portfolio Value - 1020324.21\n", + "2013-08-07 00:00:00: Portfolio Value - 1015808.90\n", + "2013-08-08 00:00:00: Portfolio Value - 1021434.57\n", + "2013-08-09 00:00:00: Portfolio Value - 1018045.30\n", + "2013-08-12 00:00:00: Portfolio Value - 1009047.14\n", + "2013-08-13 00:00:00: Portfolio Value - 1011517.65\n", + "2013-08-14 00:00:00: Portfolio Value - 992756.53\n", + "2013-08-15 00:00:00: Portfolio Value - 963171.30\n", + "2013-08-16 00:00:00: Portfolio Value - 962751.48\n", + "2013-08-19 00:00:00: Portfolio Value - 964432.58\n", + "2013-08-20 00:00:00: Portfolio Value - 978131.92\n", + "2013-08-21 00:00:00: Portfolio Value - 944742.52\n", + "2013-08-22 00:00:00: Portfolio Value - 959492.57\n", + "2013-08-23 00:00:00: Portfolio Value - 971939.58\n", + "2013-08-26 00:00:00: Portfolio Value - 953657.42\n", + "2013-08-27 00:00:00: Portfolio Value - 943656.08\n", + "2013-08-28 00:00:00: Portfolio Value - 925114.64\n", + "2013-08-29 00:00:00: Portfolio Value - 928417.42\n", + "2013-08-30 00:00:00: Portfolio Value - 926002.66\n", + "2013-09-03 00:00:00: Portfolio Value - 926136.72\n", + "2013-09-04 00:00:00: Portfolio Value - 933558.41\n", + "2013-09-05 00:00:00: Portfolio Value - 935814.31\n", + "2013-09-06 00:00:00: Portfolio Value - 947602.61\n", + "2013-09-09 00:00:00: Portfolio Value - 962728.30\n", + "2013-09-10 00:00:00: Portfolio Value - 979556.65\n", + "2013-09-11 00:00:00: Portfolio Value - 988420.14\n", + "2013-09-12 00:00:00: Portfolio Value - 996751.71\n", + "2013-09-13 00:00:00: Portfolio Value - 978363.04\n", + "2013-09-16 00:00:00: Portfolio Value - 1006286.68\n", + "2013-09-17 00:00:00: Portfolio Value - 1018803.10\n", + "2013-09-18 00:00:00: Portfolio Value - 1042619.54\n", + "2013-09-19 00:00:00: Portfolio Value - 1043281.66\n", + "2013-09-20 00:00:00: Portfolio Value - 1014800.47\n", + "2013-09-23 00:00:00: Portfolio Value - 1017445.78\n", + "2013-09-24 00:00:00: Portfolio Value - 1017124.39\n", + "2013-09-25 00:00:00: Portfolio Value - 1003943.39\n", + "2013-09-26 00:00:00: Portfolio Value - 1020068.66\n", + "2013-09-27 00:00:00: Portfolio Value - 1005176.98\n", + "2013-09-30 00:00:00: Portfolio Value - 1017751.65\n", + "2013-10-01 00:00:00: Portfolio Value - 1048313.13\n", + "2013-10-02 00:00:00: Portfolio Value - 1042925.74\n", + "2013-10-03 00:00:00: Portfolio Value - 1007704.45\n", + "2013-10-04 00:00:00: Portfolio Value - 1022117.40\n", + "2013-10-07 00:00:00: Portfolio Value - 1010953.28\n", + "2013-10-08 00:00:00: Portfolio Value - 1013059.78\n", + "2013-10-09 00:00:00: Portfolio Value - 1026274.92\n", + "2013-10-10 00:00:00: Portfolio Value - 1075086.22\n", + "2013-10-11 00:00:00: Portfolio Value - 1108892.67\n", + "2013-10-14 00:00:00: Portfolio Value - 1115510.98\n", + "2013-10-15 00:00:00: Portfolio Value - 1086440.74\n", + "2013-10-16 00:00:00: Portfolio Value - 1124343.30\n", + "2013-10-17 00:00:00: Portfolio Value - 1146026.76\n", + "2013-10-18 00:00:00: Portfolio Value - 1152567.18\n", + "2013-10-21 00:00:00: Portfolio Value - 1151142.55\n", + "2013-10-22 00:00:00: Portfolio Value - 1187819.12\n", + "2013-10-23 00:00:00: Portfolio Value - 1204553.34\n", + "2013-10-24 00:00:00: Portfolio Value - 1195643.02\n", + "2013-10-25 00:00:00: Portfolio Value - 1157358.75\n", + "2013-10-28 00:00:00: Portfolio Value - 1174868.04\n", + "2013-10-29 00:00:00: Portfolio Value - 1189229.97\n", + "2013-10-30 00:00:00: Portfolio Value - 1161582.98\n", + "2013-10-31 00:00:00: Portfolio Value - 1167326.12\n", + "2013-11-01 00:00:00: Portfolio Value - 1153565.54\n", + "2013-11-04 00:00:00: Portfolio Value - 1151011.24\n", + "2013-11-05 00:00:00: Portfolio Value - 1143960.23\n", + "2013-11-06 00:00:00: Portfolio Value - 1121074.53\n", + "2013-11-07 00:00:00: Portfolio Value - 1115442.47\n", + "2013-11-08 00:00:00: Portfolio Value - 1127965.90\n", + "2013-11-11 00:00:00: Portfolio Value - 1136245.13\n", + "2013-11-12 00:00:00: Portfolio Value - 1141962.31\n", + "2013-11-13 00:00:00: Portfolio Value - 1155060.93\n", + "2013-11-14 00:00:00: Portfolio Value - 1175173.50\n", + "2013-11-15 00:00:00: Portfolio Value - 1178938.24\n", + "2013-11-18 00:00:00: Portfolio Value - 1147461.01\n", + "2013-11-19 00:00:00: Portfolio Value - 1140319.57\n", + "2013-11-20 00:00:00: Portfolio Value - 1149696.92\n", + "2013-11-21 00:00:00: Portfolio Value - 1163660.78\n", + "2013-11-22 00:00:00: Portfolio Value - 1171510.92\n", + "2013-11-25 00:00:00: Portfolio Value - 1160385.70\n", + "2013-11-26 00:00:00: Portfolio Value - 1145099.14\n", + "2013-11-27 00:00:00: Portfolio Value - 1146527.62\n", + "2013-11-29 00:00:00: Portfolio Value - 1147193.44\n", + "2013-12-02 00:00:00: Portfolio Value - 1146635.75\n", + "2013-12-03 00:00:00: Portfolio Value - 1121689.94\n", + "2013-12-04 00:00:00: Portfolio Value - 1099715.23\n", + "2013-12-05 00:00:00: Portfolio Value - 1105267.40\n", + "2013-12-06 00:00:00: Portfolio Value - 1199012.07\n", + "2013-12-09 00:00:00: Portfolio Value - 1199874.26\n", + "2013-12-10 00:00:00: Portfolio Value - 1167598.95\n", + "2013-12-11 00:00:00: Portfolio Value - 1125450.80\n", + "2013-12-12 00:00:00: Portfolio Value - 1105987.02\n", + "2013-12-13 00:00:00: Portfolio Value - 1128519.37\n", + "2013-12-16 00:00:00: Portfolio Value - 1127112.45\n", + "2013-12-17 00:00:00: Portfolio Value - 1120421.22\n", + "2013-12-18 00:00:00: Portfolio Value - 1160366.69\n", + "2013-12-19 00:00:00: Portfolio Value - 1161796.30\n", + "2013-12-20 00:00:00: Portfolio Value - 1185354.11\n", + "2013-12-23 00:00:00: Portfolio Value - 1183394.44\n", + "2013-12-24 00:00:00: Portfolio Value - 1187427.67\n", + "2013-12-26 00:00:00: Portfolio Value - 1181841.08\n", + "2013-12-27 00:00:00: Portfolio Value - 1193365.51\n", + "2013-12-30 00:00:00: Portfolio Value - 1199239.91\n", + "2013-12-31 00:00:00: Portfolio Value - 1189334.88\n", + "2014-01-02 00:00:00: Portfolio Value - 1139734.98\n", + "2014-01-03 00:00:00: Portfolio Value - 1139888.35\n", + "2014-01-06 00:00:00: Portfolio Value - 1130073.83\n", + "2014-01-07 00:00:00: Portfolio Value - 1157453.89\n", + "2014-01-08 00:00:00: Portfolio Value - 1139661.39\n", + "2014-01-09 00:00:00: Portfolio Value - 1158194.99\n", + "2014-01-10 00:00:00: Portfolio Value - 1153168.66\n", + "2014-01-13 00:00:00: Portfolio Value - 1138941.29\n", + "2014-01-14 00:00:00: Portfolio Value - 1146998.84\n", + "2014-01-15 00:00:00: Portfolio Value - 1159079.41\n", + "2014-01-16 00:00:00: Portfolio Value - 1170075.86\n", + "2014-01-17 00:00:00: Portfolio Value - 1157301.39\n", + "2014-01-21 00:00:00: Portfolio Value - 1188486.69\n", + "2014-01-22 00:00:00: Portfolio Value - 1196574.19\n", + "2014-01-23 00:00:00: Portfolio Value - 1180731.67\n", + "2014-01-24 00:00:00: Portfolio Value - 1127534.22\n", + "2014-01-27 00:00:00: Portfolio Value - 1117385.06\n", + "2014-01-28 00:00:00: Portfolio Value - 1139042.70\n", + "2014-01-29 00:00:00: Portfolio Value - 1118250.06\n", + "2014-01-30 00:00:00: Portfolio Value - 1125332.63\n", + "2014-01-31 00:00:00: Portfolio Value - 1125524.09\n", + "2014-02-03 00:00:00: Portfolio Value - 1064419.87\n", + "2014-02-04 00:00:00: Portfolio Value - 1069111.30\n", + "2014-02-05 00:00:00: Portfolio Value - 1061341.54\n", + "2014-02-06 00:00:00: Portfolio Value - 1046902.16\n", + "2014-02-07 00:00:00: Portfolio Value - 1080154.97\n", + "2014-02-10 00:00:00: Portfolio Value - 1112243.28\n", + "2014-02-11 00:00:00: Portfolio Value - 1136497.66\n", + "2014-02-12 00:00:00: Portfolio Value - 1101642.56\n", + "2014-02-13 00:00:00: Portfolio Value - 1133484.59\n", + "2014-02-14 00:00:00: Portfolio Value - 1145702.20\n", + "2014-02-18 00:00:00: Portfolio Value - 1148123.43\n", + "2014-02-19 00:00:00: Portfolio Value - 1155216.01\n", + "2014-02-20 00:00:00: Portfolio Value - 1189549.63\n", + "2014-02-21 00:00:00: Portfolio Value - 1178093.70\n", + "2014-02-24 00:00:00: Portfolio Value - 1157388.42\n", + "2014-02-25 00:00:00: Portfolio Value - 1146561.16\n", + "2014-02-26 00:00:00: Portfolio Value - 1115893.80\n", + "2014-02-27 00:00:00: Portfolio Value - 1119483.85\n", + "2014-02-28 00:00:00: Portfolio Value - 1132709.04\n", + "2014-03-03 00:00:00: Portfolio Value - 1125153.77\n", + "2014-03-04 00:00:00: Portfolio Value - 1148333.64\n", + "2014-03-05 00:00:00: Portfolio Value - 1134661.49\n", + "2014-03-06 00:00:00: Portfolio Value - 1145632.94\n", + "2014-03-07 00:00:00: Portfolio Value - 1144096.84\n", + "2014-03-10 00:00:00: Portfolio Value - 1156339.40\n", + "2014-03-11 00:00:00: Portfolio Value - 1151673.32\n", + "2014-03-12 00:00:00: Portfolio Value - 1154186.31\n", + "2014-03-13 00:00:00: Portfolio Value - 1147117.07\n", + "2014-03-14 00:00:00: Portfolio Value - 1140381.03\n", + "2014-03-17 00:00:00: Portfolio Value - 1152063.07\n", + "2014-03-18 00:00:00: Portfolio Value - 1164739.38\n", + "2014-03-19 00:00:00: Portfolio Value - 1130494.82\n", + "2014-03-20 00:00:00: Portfolio Value - 1123593.52\n", + "2014-03-21 00:00:00: Portfolio Value - 1123526.92\n", + "2014-03-24 00:00:00: Portfolio Value - 1109640.39\n", + "2014-03-25 00:00:00: Portfolio Value - 1135260.79\n", + "2014-03-26 00:00:00: Portfolio Value - 1136614.05\n", + "2014-03-27 00:00:00: Portfolio Value - 1121270.85\n", + "2014-03-28 00:00:00: Portfolio Value - 1122166.01\n", + "2014-03-31 00:00:00: Portfolio Value - 1158461.67\n", + "2014-04-01 00:00:00: Portfolio Value - 1156368.93\n", + "2014-04-02 00:00:00: Portfolio Value - 1150434.57\n", + "2014-04-03 00:00:00: Portfolio Value - 1159005.26\n", + "2014-04-04 00:00:00: Portfolio Value - 1143663.77\n", + "2014-04-07 00:00:00: Portfolio Value - 1133396.38\n", + "2014-04-08 00:00:00: Portfolio Value - 1129279.82\n", + "2014-04-09 00:00:00: Portfolio Value - 1131577.08\n", + "2014-04-10 00:00:00: Portfolio Value - 1110870.41\n", + "2014-04-11 00:00:00: Portfolio Value - 1094860.73\n", + "2014-04-14 00:00:00: Portfolio Value - 1123486.61\n", + "2014-04-15 00:00:00: Portfolio Value - 1144116.39\n", + "2014-04-16 00:00:00: Portfolio Value - 1149136.42\n", + "2014-04-17 00:00:00: Portfolio Value - 1154598.79\n", + "2014-04-21 00:00:00: Portfolio Value - 1154727.28\n", + "2014-04-22 00:00:00: Portfolio Value - 1148261.37\n", + "2014-04-23 00:00:00: Portfolio Value - 1149917.10\n", + "2014-04-24 00:00:00: Portfolio Value - 1150899.10\n", + "2014-04-25 00:00:00: Portfolio Value - 1160040.18\n", + "2014-04-28 00:00:00: Portfolio Value - 1183129.52\n", + "2014-04-29 00:00:00: Portfolio Value - 1180998.83\n", + "2014-04-30 00:00:00: Portfolio Value - 1159595.79\n", + "2014-05-01 00:00:00: Portfolio Value - 1149854.63\n", + "2014-05-02 00:00:00: Portfolio Value - 1131411.97\n", + "2014-05-05 00:00:00: Portfolio Value - 1134523.86\n", + "2014-05-06 00:00:00: Portfolio Value - 1131048.77\n", + "2014-05-07 00:00:00: Portfolio Value - 1158233.28\n", + "2014-05-08 00:00:00: Portfolio Value - 1166414.12\n", + "2014-05-09 00:00:00: Portfolio Value - 1183211.69\n", + "2014-05-12 00:00:00: Portfolio Value - 1185423.94\n", + "2014-05-13 00:00:00: Portfolio Value - 1182753.90\n", + "2014-05-14 00:00:00: Portfolio Value - 1176558.86\n", + "2014-05-15 00:00:00: Portfolio Value - 1162449.97\n", + "2014-05-16 00:00:00: Portfolio Value - 1185755.83\n", + "2014-05-19 00:00:00: Portfolio Value - 1179971.94\n", + "2014-05-20 00:00:00: Portfolio Value - 1171492.52\n", + "2014-05-21 00:00:00: Portfolio Value - 1171889.75\n", + "2014-05-22 00:00:00: Portfolio Value - 1170997.03\n", + "2014-05-23 00:00:00: Portfolio Value - 1169548.74\n", + "2014-05-27 00:00:00: Portfolio Value - 1173222.83\n", + "2014-05-28 00:00:00: Portfolio Value - 1172526.95\n", + "2014-05-29 00:00:00: Portfolio Value - 1190008.32\n", + "2014-05-30 00:00:00: Portfolio Value - 1191347.47\n", + "2014-06-02 00:00:00: Portfolio Value - 1188733.17\n", + "2014-06-03 00:00:00: Portfolio Value - 1186267.63\n", + "2014-06-04 00:00:00: Portfolio Value - 1222358.12\n", + "2014-06-05 00:00:00: Portfolio Value - 1231327.57\n", + "2014-06-06 00:00:00: Portfolio Value - 1236066.04\n", + "2014-06-09 00:00:00: Portfolio Value - 1264605.25\n", + "2014-06-10 00:00:00: Portfolio Value - 1250405.13\n", + "2014-06-11 00:00:00: Portfolio Value - 1224524.54\n", + "2014-06-12 00:00:00: Portfolio Value - 1225479.93\n", + "2014-06-13 00:00:00: Portfolio Value - 1218304.44\n", + "2014-06-16 00:00:00: Portfolio Value - 1222673.04\n", + "2014-06-17 00:00:00: Portfolio Value - 1214702.29\n", + "2014-06-18 00:00:00: Portfolio Value - 1231238.68\n", + "2014-06-19 00:00:00: Portfolio Value - 1241535.40\n", + "2014-06-20 00:00:00: Portfolio Value - 1232397.00\n", + "2014-06-23 00:00:00: Portfolio Value - 1227856.80\n", + "2014-06-24 00:00:00: Portfolio Value - 1218693.86\n", + "2014-06-25 00:00:00: Portfolio Value - 1222990.17\n", + "2014-06-26 00:00:00: Portfolio Value - 1224541.60\n", + "2014-06-27 00:00:00: Portfolio Value - 1240446.85\n", + "2014-06-30 00:00:00: Portfolio Value - 1229514.04\n", + "2014-07-01 00:00:00: Portfolio Value - 1247970.35\n", + "2014-07-02 00:00:00: Portfolio Value - 1220749.71\n", + "2014-07-03 00:00:00: Portfolio Value - 1211456.71\n", + "2014-07-07 00:00:00: Portfolio Value - 1213535.93\n", + "2014-07-08 00:00:00: Portfolio Value - 1208346.07\n", + "2014-07-09 00:00:00: Portfolio Value - 1211202.46\n", + "2014-07-10 00:00:00: Portfolio Value - 1216951.12\n", + "2014-07-11 00:00:00: Portfolio Value - 1217689.38\n", + "2014-07-14 00:00:00: Portfolio Value - 1215566.28\n", + "2014-07-15 00:00:00: Portfolio Value - 1210745.70\n", + "2014-07-16 00:00:00: Portfolio Value - 1209077.85\n", + "2014-07-17 00:00:00: Portfolio Value - 1193790.06\n", + "2014-07-18 00:00:00: Portfolio Value - 1217435.13\n", + "2014-07-21 00:00:00: Portfolio Value - 1199250.43\n", + "2014-07-22 00:00:00: Portfolio Value - 1201391.05\n", + "2014-07-23 00:00:00: Portfolio Value - 1208721.88\n", + "2014-07-24 00:00:00: Portfolio Value - 1218403.90\n", + "2014-07-25 00:00:00: Portfolio Value - 1185690.04\n", + "2014-07-28 00:00:00: Portfolio Value - 1192740.46\n", + "2014-07-29 00:00:00: Portfolio Value - 1180309.53\n", + "2014-07-30 00:00:00: Portfolio Value - 1158904.30\n", + "2014-07-31 00:00:00: Portfolio Value - 1128389.04\n", + "2014-08-01 00:00:00: Portfolio Value - 1132814.93\n", + "2014-08-04 00:00:00: Portfolio Value - 1103998.07\n", + "2014-08-05 00:00:00: Portfolio Value - 1098011.28\n", + "2014-08-06 00:00:00: Portfolio Value - 1108326.49\n", + "2014-08-07 00:00:00: Portfolio Value - 1115952.94\n", + "2014-08-08 00:00:00: Portfolio Value - 1133422.72\n", + "2014-08-11 00:00:00: Portfolio Value - 1151621.48\n", + "2014-08-12 00:00:00: Portfolio Value - 1151001.68\n", + "2014-08-13 00:00:00: Portfolio Value - 1171116.26\n", + "2014-08-14 00:00:00: Portfolio Value - 1188094.95\n", + "2014-08-15 00:00:00: Portfolio Value - 1183561.16\n", + "2014-08-18 00:00:00: Portfolio Value - 1195718.01\n", + "2014-08-19 00:00:00: Portfolio Value - 1198116.77\n", + "2014-08-20 00:00:00: Portfolio Value - 1196570.02\n", + "2014-08-21 00:00:00: Portfolio Value - 1212481.00\n", + "2014-08-22 00:00:00: Portfolio Value - 1200405.02\n", + "2014-08-25 00:00:00: Portfolio Value - 1192645.93\n", + "2014-08-26 00:00:00: Portfolio Value - 1194152.97\n", + "2014-08-27 00:00:00: Portfolio Value - 1195124.93\n", + "2014-08-28 00:00:00: Portfolio Value - 1200698.10\n", + "2014-08-29 00:00:00: Portfolio Value - 1212886.20\n", + "2014-09-02 00:00:00: Portfolio Value - 1222983.52\n", + "2014-09-03 00:00:00: Portfolio Value - 1224595.25\n", + "2014-09-04 00:00:00: Portfolio Value - 1226127.68\n", + "2014-09-05 00:00:00: Portfolio Value - 1234945.97\n", + "2014-09-08 00:00:00: Portfolio Value - 1226310.95\n", + "2014-09-09 00:00:00: Portfolio Value - 1210523.73\n", + "2014-09-10 00:00:00: Portfolio Value - 1219647.15\n", + "2014-09-11 00:00:00: Portfolio Value - 1225475.04\n", + "2014-09-12 00:00:00: Portfolio Value - 1175102.20\n", + "2014-09-15 00:00:00: Portfolio Value - 1179353.97\n", + "2014-09-16 00:00:00: Portfolio Value - 1180018.63\n", + "2014-09-17 00:00:00: Portfolio Value - 1173258.84\n", + "2014-09-18 00:00:00: Portfolio Value - 1167827.10\n", + "2014-09-19 00:00:00: Portfolio Value - 1157933.45\n", + "2014-09-22 00:00:00: Portfolio Value - 1172240.88\n", + "2014-09-23 00:00:00: Portfolio Value - 1140194.34\n", + "2014-09-24 00:00:00: Portfolio Value - 1151047.64\n", + "2014-09-25 00:00:00: Portfolio Value - 1139359.38\n", + "2014-09-26 00:00:00: Portfolio Value - 1147886.52\n", + "2014-09-29 00:00:00: Portfolio Value - 1158827.67\n", + "2014-09-30 00:00:00: Portfolio Value - 1162321.07\n", + "2014-10-01 00:00:00: Portfolio Value - 1152581.06\n", + "2014-10-02 00:00:00: Portfolio Value - 1156671.69\n", + "2014-10-03 00:00:00: Portfolio Value - 1181303.11\n", + "2014-10-06 00:00:00: Portfolio Value - 1240365.32\n", + "2014-10-07 00:00:00: Portfolio Value - 1254719.08\n", + "2014-10-08 00:00:00: Portfolio Value - 1297866.22\n", + "2014-10-09 00:00:00: Portfolio Value - 1254747.25\n", + "2014-10-10 00:00:00: Portfolio Value - 1251073.28\n", + "2014-10-13 00:00:00: Portfolio Value - 1230075.78\n", + "2014-10-14 00:00:00: Portfolio Value - 1236322.39\n", + "2014-10-15 00:00:00: Portfolio Value - 1219716.06\n", + "2014-10-16 00:00:00: Portfolio Value - 1168236.56\n", + "2014-10-17 00:00:00: Portfolio Value - 1192103.49\n", + "2014-10-20 00:00:00: Portfolio Value - 1212429.80\n", + "2014-10-21 00:00:00: Portfolio Value - 1238450.93\n", + "2014-10-22 00:00:00: Portfolio Value - 1249231.66\n", + "2014-10-23 00:00:00: Portfolio Value - 1247446.09\n", + "2014-10-24 00:00:00: Portfolio Value - 1290293.17\n", + "2014-10-27 00:00:00: Portfolio Value - 1304072.28\n", + "2014-10-28 00:00:00: Portfolio Value - 1317980.66\n", + "2014-10-29 00:00:00: Portfolio Value - 1291983.61\n", + "2014-10-30 00:00:00: Portfolio Value - 1304642.51\n", + "2014-10-31 00:00:00: Portfolio Value - 1319432.86\n", + "2014-11-03 00:00:00: Portfolio Value - 1306020.36\n", + "2014-11-04 00:00:00: Portfolio Value - 1323715.08\n", + "2014-11-05 00:00:00: Portfolio Value - 1344015.12\n", + "2014-11-06 00:00:00: Portfolio Value - 1348720.05\n", + "2014-11-07 00:00:00: Portfolio Value - 1347209.00\n", + "2014-11-10 00:00:00: Portfolio Value - 1369239.88\n", + "2014-11-11 00:00:00: Portfolio Value - 1358817.69\n", + "2014-11-12 00:00:00: Portfolio Value - 1349206.00\n", + "2014-11-13 00:00:00: Portfolio Value - 1355067.81\n", + "2014-11-14 00:00:00: Portfolio Value - 1344406.25\n", + "2014-11-17 00:00:00: Portfolio Value - 1360657.33\n", + "2014-11-18 00:00:00: Portfolio Value - 1369068.61\n", + "2014-11-19 00:00:00: Portfolio Value - 1361917.02\n", + "2014-11-20 00:00:00: Portfolio Value - 1363462.10\n", + "2014-11-21 00:00:00: Portfolio Value - 1358489.23\n", + "2014-11-24 00:00:00: Portfolio Value - 1362774.29\n", + "2014-11-25 00:00:00: Portfolio Value - 1386690.33\n", + "2014-11-26 00:00:00: Portfolio Value - 1430339.76\n", + "2014-11-28 00:00:00: Portfolio Value - 1441692.16\n", + "2014-12-01 00:00:00: Portfolio Value - 1449697.58\n", + "2014-12-02 00:00:00: Portfolio Value - 1459829.79\n", + "2014-12-03 00:00:00: Portfolio Value - 1464048.50\n", + "2014-12-04 00:00:00: Portfolio Value - 1481879.62\n", + "2014-12-05 00:00:00: Portfolio Value - 1464264.47\n", + "2014-12-08 00:00:00: Portfolio Value - 1495506.43\n", + "2014-12-09 00:00:00: Portfolio Value - 1480762.33\n", + "2014-12-10 00:00:00: Portfolio Value - 1460590.45\n", + "2014-12-11 00:00:00: Portfolio Value - 1477878.47\n", + "2014-12-12 00:00:00: Portfolio Value - 1455473.51\n", + "2014-12-15 00:00:00: Portfolio Value - 1462014.89\n", + "2014-12-16 00:00:00: Portfolio Value - 1468384.36\n", + "2014-12-17 00:00:00: Portfolio Value - 1516220.16\n", + "2014-12-18 00:00:00: Portfolio Value - 1561809.14\n", + "2014-12-19 00:00:00: Portfolio Value - 1565693.14\n", + "2014-12-22 00:00:00: Portfolio Value - 1582332.65\n", + "2014-12-23 00:00:00: Portfolio Value - 1598160.61\n", + "2014-12-24 00:00:00: Portfolio Value - 1607887.39\n", + "2014-12-26 00:00:00: Portfolio Value - 1603884.60\n", + "2014-12-29 00:00:00: Portfolio Value - 1601235.57\n", + "2014-12-30 00:00:00: Portfolio Value - 1598716.45\n", + "2014-12-31 00:00:00: Portfolio Value - 1561373.83\n", + "2015-01-02 00:00:00: Portfolio Value - 1566892.43\n", + "2015-01-05 00:00:00: Portfolio Value - 1565620.77\n", + "2015-01-06 00:00:00: Portfolio Value - 1580734.91\n", + "2015-01-07 00:00:00: Portfolio Value - 1611322.22\n", + "2015-01-08 00:00:00: Portfolio Value - 1655574.52\n", + "2015-01-09 00:00:00: Portfolio Value - 1634424.15\n", + "2015-01-12 00:00:00: Portfolio Value - 1625520.18\n", + "2015-01-13 00:00:00: Portfolio Value - 1642258.19\n", + "2015-01-14 00:00:00: Portfolio Value - 1646155.85\n", + "2015-01-15 00:00:00: Portfolio Value - 1662368.07\n", + "2015-01-16 00:00:00: Portfolio Value - 1674182.18\n", + "2015-01-20 00:00:00: Portfolio Value - 1660226.58\n", + "2015-01-21 00:00:00: Portfolio Value - 1669954.38\n", + "2015-01-22 00:00:00: Portfolio Value - 1712082.78\n", + "2015-01-23 00:00:00: Portfolio Value - 1714761.82\n", + "2015-01-26 00:00:00: Portfolio Value - 1725734.12\n", + "2015-01-27 00:00:00: Portfolio Value - 1695684.07\n", + "2015-01-28 00:00:00: Portfolio Value - 1669769.25\n", + "2015-01-29 00:00:00: Portfolio Value - 1696726.15\n", + "2015-01-30 00:00:00: Portfolio Value - 1651403.53\n", + "2015-02-02 00:00:00: Portfolio Value - 1690241.60\n", + "2015-02-03 00:00:00: Portfolio Value - 1711726.11\n", + "2015-02-04 00:00:00: Portfolio Value - 1721645.50\n", + "2015-02-05 00:00:00: Portfolio Value - 1746730.47\n", + "2015-02-06 00:00:00: Portfolio Value - 1696139.08\n", + "2015-02-09 00:00:00: Portfolio Value - 1669072.56\n", + "2015-02-10 00:00:00: Portfolio Value - 1693666.54\n", + "2015-02-11 00:00:00: Portfolio Value - 1749985.58\n", + "2015-02-12 00:00:00: Portfolio Value - 1770904.96\n", + "2015-02-13 00:00:00: Portfolio Value - 1772568.49\n", + "2015-02-17 00:00:00: Portfolio Value - 1767670.54\n", + "2015-02-18 00:00:00: Portfolio Value - 1782843.52\n", + "2015-02-19 00:00:00: Portfolio Value - 1767913.93\n", + "2015-02-20 00:00:00: Portfolio Value - 1779303.71\n", + "2015-02-23 00:00:00: Portfolio Value - 1793380.35\n", + "2015-02-24 00:00:00: Portfolio Value - 1802013.88\n", + "2015-02-25 00:00:00: Portfolio Value - 1806708.54\n", + "2015-02-26 00:00:00: Portfolio Value - 1797313.96\n", + "2015-02-27 00:00:00: Portfolio Value - 1787347.21\n", + "2015-03-02 00:00:00: Portfolio Value - 1798938.81\n", + "2015-03-03 00:00:00: Portfolio Value - 1790948.97\n", + "2015-03-04 00:00:00: Portfolio Value - 1783499.34\n", + "2015-03-05 00:00:00: Portfolio Value - 1802610.24\n", + "2015-03-06 00:00:00: Portfolio Value - 1754336.38\n", + "2015-03-09 00:00:00: Portfolio Value - 1784071.40\n", + "2015-03-10 00:00:00: Portfolio Value - 1730572.85\n", + "2015-03-11 00:00:00: Portfolio Value - 1744524.92\n", + "2015-03-12 00:00:00: Portfolio Value - 1783893.70\n", + "2015-03-13 00:00:00: Portfolio Value - 1759490.04\n", + "2015-03-16 00:00:00: Portfolio Value - 1810578.52\n", + "2015-03-17 00:00:00: Portfolio Value - 1800747.01\n", + "2015-03-18 00:00:00: Portfolio Value - 1835421.86\n", + "2015-03-19 00:00:00: Portfolio Value - 1823783.32\n", + "2015-03-20 00:00:00: Portfolio Value - 1836358.90\n", + "2015-03-23 00:00:00: Portfolio Value - 1846220.63\n", + "2015-03-24 00:00:00: Portfolio Value - 1811532.02\n", + "2015-03-25 00:00:00: Portfolio Value - 1759565.00\n", + "2015-03-26 00:00:00: Portfolio Value - 1759861.48\n", + "2015-03-27 00:00:00: Portfolio Value - 1788896.90\n", + "2015-03-30 00:00:00: Portfolio Value - 1815628.92\n", + "2015-03-31 00:00:00: Portfolio Value - 1803653.71\n", + "2015-04-01 00:00:00: Portfolio Value - 1793582.62\n", + "2015-04-02 00:00:00: Portfolio Value - 1804792.65\n", + "2015-04-06 00:00:00: Portfolio Value - 1832667.80\n", + "2015-04-07 00:00:00: Portfolio Value - 1811328.70\n", + "2015-04-08 00:00:00: Portfolio Value - 1824685.31\n", + "2015-04-09 00:00:00: Portfolio Value - 1834764.32\n", + "2015-04-10 00:00:00: Portfolio Value - 1848625.08\n", + "2015-04-13 00:00:00: Portfolio Value - 1833287.49\n", + "2015-04-14 00:00:00: Portfolio Value - 1828757.61\n", + "2015-04-15 00:00:00: Portfolio Value - 1800940.19\n", + "2015-04-16 00:00:00: Portfolio Value - 1795748.48\n", + "2015-04-17 00:00:00: Portfolio Value - 1761605.55\n", + "2015-04-20 00:00:00: Portfolio Value - 1789666.97\n", + "2015-04-21 00:00:00: Portfolio Value - 1795344.87\n", + "2015-04-22 00:00:00: Portfolio Value - 1783760.62\n", + "2015-04-23 00:00:00: Portfolio Value - 1786996.64\n", + "2015-04-24 00:00:00: Portfolio Value - 1758553.34\n", + "2015-04-27 00:00:00: Portfolio Value - 1730175.54\n", + "2015-04-28 00:00:00: Portfolio Value - 1746122.78\n", + "2015-04-29 00:00:00: Portfolio Value - 1745769.02\n", + "2015-04-30 00:00:00: Portfolio Value - 1706188.49\n", + "2015-05-01 00:00:00: Portfolio Value - 1723683.00\n", + "2015-05-04 00:00:00: Portfolio Value - 1728895.43\n", + "2015-05-05 00:00:00: Portfolio Value - 1689826.68\n", + "2015-05-06 00:00:00: Portfolio Value - 1679177.95\n", + "2015-05-07 00:00:00: Portfolio Value - 1703661.18\n", + "2015-05-08 00:00:00: Portfolio Value - 1710984.89\n", + "2015-05-11 00:00:00: Portfolio Value - 1701495.57\n", + "2015-05-12 00:00:00: Portfolio Value - 1671368.41\n", + "2015-05-13 00:00:00: Portfolio Value - 1602306.79\n", + "2015-05-14 00:00:00: Portfolio Value - 1648421.38\n", + "2015-05-15 00:00:00: Portfolio Value - 1654504.65\n", + "2015-05-18 00:00:00: Portfolio Value - 1678480.39\n", + "2015-05-19 00:00:00: Portfolio Value - 1692757.77\n", + "2015-05-20 00:00:00: Portfolio Value - 1702469.34\n", + "2015-05-21 00:00:00: Portfolio Value - 1695930.63\n", + "2015-05-22 00:00:00: Portfolio Value - 1692610.72\n", + "2015-05-26 00:00:00: Portfolio Value - 1669710.23\n", + "2015-05-27 00:00:00: Portfolio Value - 1682526.24\n", + "2015-05-28 00:00:00: Portfolio Value - 1672970.68\n", + "2015-05-29 00:00:00: Portfolio Value - 1653792.04\n", + "2015-06-01 00:00:00: Portfolio Value - 1675519.65\n", + "2015-06-02 00:00:00: Portfolio Value - 1654550.93\n", + "2015-06-03 00:00:00: Portfolio Value - 1658880.78\n", + "2015-06-04 00:00:00: Portfolio Value - 1635874.96\n", + "2015-06-05 00:00:00: Portfolio Value - 1624246.62\n", + "2015-06-08 00:00:00: Portfolio Value - 1615821.25\n", + "2015-06-09 00:00:00: Portfolio Value - 1606515.10\n", + "2015-06-10 00:00:00: Portfolio Value - 1636479.88\n", + "2015-06-11 00:00:00: Portfolio Value - 1657601.91\n", + "2015-06-12 00:00:00: Portfolio Value - 1629410.25\n", + "2015-06-15 00:00:00: Portfolio Value - 1618808.58\n", + "2015-06-16 00:00:00: Portfolio Value - 1631043.80\n", + "2015-06-17 00:00:00: Portfolio Value - 1640756.25\n", + "2015-06-18 00:00:00: Portfolio Value - 1662854.22\n", + "2015-06-19 00:00:00: Portfolio Value - 1662931.30\n", + "2015-06-22 00:00:00: Portfolio Value - 1671121.60\n", + "2015-06-23 00:00:00: Portfolio Value - 1647254.54\n", + "2015-06-24 00:00:00: Portfolio Value - 1621341.11\n", + "2015-06-25 00:00:00: Portfolio Value - 1631642.06\n", + "2015-06-26 00:00:00: Portfolio Value - 1630103.78\n", + "2015-06-29 00:00:00: Portfolio Value - 1587751.46\n", + "2015-06-30 00:00:00: Portfolio Value - 1608936.49\n", + "2015-07-01 00:00:00: Portfolio Value - 1636841.92\n", + "2015-07-02 00:00:00: Portfolio Value - 1634355.02\n", + "2015-07-06 00:00:00: Portfolio Value - 1638852.06\n", + "2015-07-07 00:00:00: Portfolio Value - 1666824.18\n", + "2015-07-08 00:00:00: Portfolio Value - 1648649.33\n", + "2015-07-09 00:00:00: Portfolio Value - 1650442.28\n", + "2015-07-10 00:00:00: Portfolio Value - 1678830.21\n", + "2015-07-13 00:00:00: Portfolio Value - 1687357.19\n", + "2015-07-14 00:00:00: Portfolio Value - 1691422.81\n", + "2015-07-15 00:00:00: Portfolio Value - 1695078.88\n", + "2015-07-16 00:00:00: Portfolio Value - 1725463.85\n", + "2015-07-17 00:00:00: Portfolio Value - 1717562.50\n", + "2015-07-20 00:00:00: Portfolio Value - 1723736.71\n", + "2015-07-21 00:00:00: Portfolio Value - 1693444.97\n", + "2015-07-22 00:00:00: Portfolio Value - 1697425.19\n", + "2015-07-23 00:00:00: Portfolio Value - 1693371.17\n", + "2015-07-24 00:00:00: Portfolio Value - 1694435.18\n", + "2015-07-27 00:00:00: Portfolio Value - 1690808.26\n", + "2015-07-28 00:00:00: Portfolio Value - 1725017.85\n", + "2015-07-29 00:00:00: Portfolio Value - 1788103.11\n", + "2015-07-30 00:00:00: Portfolio Value - 1787775.08\n", + "2015-07-31 00:00:00: Portfolio Value - 1798874.37\n", + "2015-08-03 00:00:00: Portfolio Value - 1821118.02\n", + "2015-08-04 00:00:00: Portfolio Value - 1820408.44\n", + "2015-08-05 00:00:00: Portfolio Value - 1859746.78\n", + "2015-08-06 00:00:00: Portfolio Value - 1815652.27\n", + "2015-08-07 00:00:00: Portfolio Value - 1828945.56\n", + "2015-08-10 00:00:00: Portfolio Value - 1823788.11\n", + "2015-08-11 00:00:00: Portfolio Value - 1815380.90\n", + "2015-08-12 00:00:00: Portfolio Value - 1809040.77\n", + "2015-08-13 00:00:00: Portfolio Value - 1802296.66\n", + "2015-08-14 00:00:00: Portfolio Value - 1831664.75\n", + "2015-08-17 00:00:00: Portfolio Value - 1823452.73\n", + "2015-08-18 00:00:00: Portfolio Value - 1814228.76\n", + "2015-08-19 00:00:00: Portfolio Value - 1802850.12\n", + "2015-08-20 00:00:00: Portfolio Value - 1761585.03\n", + "2015-08-21 00:00:00: Portfolio Value - 1726538.84\n", + "2015-08-24 00:00:00: Portfolio Value - 1609179.02\n", + "2015-08-25 00:00:00: Portfolio Value - 1576084.68\n", + "2015-08-26 00:00:00: Portfolio Value - 1624400.81\n", + "2015-08-27 00:00:00: Portfolio Value - 1662635.19\n", + "2015-08-28 00:00:00: Portfolio Value - 1647559.68\n", + "2015-08-31 00:00:00: Portfolio Value - 1613881.78\n", + "2015-09-01 00:00:00: Portfolio Value - 1534569.70\n", + "2015-09-02 00:00:00: Portfolio Value - 1564972.04\n", + "2015-09-03 00:00:00: Portfolio Value - 1579452.02\n", + "2015-09-04 00:00:00: Portfolio Value - 1540597.96\n", + "2015-09-08 00:00:00: Portfolio Value - 1603715.27\n", + "2015-09-09 00:00:00: Portfolio Value - 1554316.45\n", + "2015-09-10 00:00:00: Portfolio Value - 1535108.10\n", + "2015-09-11 00:00:00: Portfolio Value - 1529870.04\n", + "2015-09-14 00:00:00: Portfolio Value - 1527359.84\n", + "2015-09-15 00:00:00: Portfolio Value - 1546561.39\n", + "2015-09-16 00:00:00: Portfolio Value - 1575425.65\n", + "2015-09-17 00:00:00: Portfolio Value - 1588204.39\n", + "2015-09-18 00:00:00: Portfolio Value - 1568302.27\n", + "2015-09-21 00:00:00: Portfolio Value - 1604046.48\n", + "2015-09-22 00:00:00: Portfolio Value - 1587653.01\n", + "2015-09-23 00:00:00: Portfolio Value - 1602883.57\n", + "2015-09-24 00:00:00: Portfolio Value - 1606924.40\n", + "2015-09-25 00:00:00: Portfolio Value - 1609688.43\n", + "2015-09-28 00:00:00: Portfolio Value - 1565555.99\n", + "2015-09-29 00:00:00: Portfolio Value - 1581795.11\n", + "2015-09-30 00:00:00: Portfolio Value - 1597326.84\n", + "2015-10-01 00:00:00: Portfolio Value - 1600421.56\n", + "2015-10-02 00:00:00: Portfolio Value - 1649448.20\n", + "2015-10-05 00:00:00: Portfolio Value - 1698344.30\n", + "2015-10-06 00:00:00: Portfolio Value - 1694002.88\n", + "2015-10-07 00:00:00: Portfolio Value - 1730679.14\n", + "2015-10-08 00:00:00: Portfolio Value - 1755947.11\n", + "2015-10-09 00:00:00: Portfolio Value - 1757216.93\n", + "2015-10-12 00:00:00: Portfolio Value - 1776092.58\n", + "2015-10-13 00:00:00: Portfolio Value - 1764863.13\n", + "2015-10-14 00:00:00: Portfolio Value - 1731835.68\n", + "2015-10-15 00:00:00: Portfolio Value - 1744022.03\n", + "2015-10-16 00:00:00: Portfolio Value - 1778059.33\n", + "2015-10-19 00:00:00: Portfolio Value - 1783073.94\n", + "2015-10-20 00:00:00: Portfolio Value - 1789833.34\n", + "2015-10-21 00:00:00: Portfolio Value - 1790511.26\n", + "2015-10-22 00:00:00: Portfolio Value - 1796696.50\n", + "2015-10-23 00:00:00: Portfolio Value - 1819432.78\n", + "2015-10-26 00:00:00: Portfolio Value - 1804088.87\n", + "2015-10-27 00:00:00: Portfolio Value - 1798323.20\n", + "2015-10-28 00:00:00: Portfolio Value - 1757844.56\n", + "2015-10-29 00:00:00: Portfolio Value - 1769146.38\n", + "2015-10-30 00:00:00: Portfolio Value - 1761156.23\n", + "2015-11-02 00:00:00: Portfolio Value - 1796789.32\n", + "2015-11-03 00:00:00: Portfolio Value - 1789442.68\n", + "2015-11-04 00:00:00: Portfolio Value - 1820727.36\n", + "2015-11-05 00:00:00: Portfolio Value - 1819087.38\n", + "2015-11-06 00:00:00: Portfolio Value - 1794178.25\n", + "2015-11-09 00:00:00: Portfolio Value - 1786067.03\n", + "2015-11-10 00:00:00: Portfolio Value - 1795299.88\n", + "2015-11-11 00:00:00: Portfolio Value - 1822045.19\n", + "2015-11-12 00:00:00: Portfolio Value - 1783482.50\n", + "2015-11-13 00:00:00: Portfolio Value - 1784088.89\n", + "2015-11-16 00:00:00: Portfolio Value - 1821733.88\n", + "2015-11-17 00:00:00: Portfolio Value - 1799039.81\n", + "2015-11-18 00:00:00: Portfolio Value - 1830973.74\n", + "2015-11-19 00:00:00: Portfolio Value - 1826180.57\n", + "2015-11-20 00:00:00: Portfolio Value - 1860718.99\n", + "2015-11-23 00:00:00: Portfolio Value - 1871571.29\n", + "2015-11-24 00:00:00: Portfolio Value - 1871178.05\n", + "2015-11-25 00:00:00: Portfolio Value - 1871241.55\n", + "2015-11-27 00:00:00: Portfolio Value - 1881508.81\n", + "2015-11-30 00:00:00: Portfolio Value - 1869788.60\n", + "2015-12-01 00:00:00: Portfolio Value - 1914597.99\n", + "2015-12-02 00:00:00: Portfolio Value - 1897446.07\n", + "2015-12-03 00:00:00: Portfolio Value - 1863187.76\n", + "2015-12-04 00:00:00: Portfolio Value - 1910711.09\n", + "2015-12-07 00:00:00: Portfolio Value - 1914392.60\n", + "2015-12-08 00:00:00: Portfolio Value - 1913865.11\n", + "2015-12-09 00:00:00: Portfolio Value - 1873447.23\n", + "2015-12-10 00:00:00: Portfolio Value - 1874059.31\n", + "2015-12-11 00:00:00: Portfolio Value - 1884141.53\n", + "2015-12-14 00:00:00: Portfolio Value - 1879548.80\n", + "2015-12-15 00:00:00: Portfolio Value - 1905593.06\n", + "2015-12-16 00:00:00: Portfolio Value - 1944095.60\n", + "2015-12-17 00:00:00: Portfolio Value - 1930120.88\n", + "2015-12-18 00:00:00: Portfolio Value - 1864513.81\n", + "2015-12-21 00:00:00: Portfolio Value - 1863089.66\n", + "2015-12-22 00:00:00: Portfolio Value - 1886045.75\n", + "2015-12-23 00:00:00: Portfolio Value - 1918347.73\n", + "2015-12-24 00:00:00: Portfolio Value - 1923261.20\n", + "2015-12-28 00:00:00: Portfolio Value - 1927525.93\n", + "2015-12-29 00:00:00: Portfolio Value - 1981769.51\n", + "2015-12-30 00:00:00: Portfolio Value - 1964341.53\n", + "2015-12-31 00:00:00: Portfolio Value - 1922557.50\n", + "2016-01-04 00:00:00: Portfolio Value - 1833100.72\n", + "2016-01-05 00:00:00: Portfolio Value - 1859652.03\n", + "2016-01-06 00:00:00: Portfolio Value - 1849963.93\n", + "2016-01-07 00:00:00: Portfolio Value - 1767233.76\n", + "2016-01-08 00:00:00: Portfolio Value - 1772585.72\n", + "2016-01-11 00:00:00: Portfolio Value - 1775425.39\n", + "2016-01-12 00:00:00: Portfolio Value - 1809658.10\n", + "2016-01-13 00:00:00: Portfolio Value - 1779787.07\n", + "2016-01-14 00:00:00: Portfolio Value - 1821262.03\n", + "2016-01-15 00:00:00: Portfolio Value - 1807956.72\n", + "2016-01-19 00:00:00: Portfolio Value - 1803804.06\n", + "2016-01-20 00:00:00: Portfolio Value - 1756902.20\n", + "2016-01-21 00:00:00: Portfolio Value - 1757665.22\n", + "2016-01-22 00:00:00: Portfolio Value - 1822668.08\n", + "2016-01-25 00:00:00: Portfolio Value - 1805534.43\n", + "2016-01-26 00:00:00: Portfolio Value - 1798942.80\n", + "2016-01-27 00:00:00: Portfolio Value - 1780971.79\n", + "2016-01-28 00:00:00: Portfolio Value - 1786475.31\n", + "2016-01-29 00:00:00: Portfolio Value - 1844355.45\n", + "2016-02-01 00:00:00: Portfolio Value - 1876579.34\n", + "2016-02-02 00:00:00: Portfolio Value - 1840486.27\n", + "2016-02-03 00:00:00: Portfolio Value - 1842499.67\n", + "2016-02-04 00:00:00: Portfolio Value - 1789503.60\n", + "2016-02-05 00:00:00: Portfolio Value - 1762694.61\n", + "2016-02-08 00:00:00: Portfolio Value - 1757863.03\n", + "2016-02-09 00:00:00: Portfolio Value - 1795924.43\n", + "2016-02-10 00:00:00: Portfolio Value - 1783032.48\n", + "2016-02-11 00:00:00: Portfolio Value - 1771252.89\n", + "2016-02-12 00:00:00: Portfolio Value - 1805481.60\n", + "2016-02-16 00:00:00: Portfolio Value - 1842828.21\n", + "2016-02-17 00:00:00: Portfolio Value - 1854997.48\n", + "2016-02-18 00:00:00: Portfolio Value - 1860417.04\n", + "2016-02-19 00:00:00: Portfolio Value - 1859246.68\n", + "2016-02-22 00:00:00: Portfolio Value - 1871644.63\n", + "2016-02-23 00:00:00: Portfolio Value - 1869373.97\n", + "2016-02-24 00:00:00: Portfolio Value - 1901829.46\n", + "2016-02-25 00:00:00: Portfolio Value - 1939102.39\n", + "2016-02-26 00:00:00: Portfolio Value - 1903916.91\n", + "2016-02-29 00:00:00: Portfolio Value - 1875578.97\n", + "2016-03-01 00:00:00: Portfolio Value - 1897136.33\n", + "2016-03-02 00:00:00: Portfolio Value - 1919077.72\n", + "2016-03-03 00:00:00: Portfolio Value - 1924885.72\n", + "2016-03-04 00:00:00: Portfolio Value - 1936108.55\n", + "2016-03-07 00:00:00: Portfolio Value - 1927820.85\n", + "2016-03-08 00:00:00: Portfolio Value - 1946510.29\n", + "2016-03-09 00:00:00: Portfolio Value - 1954945.79\n", + "2016-03-10 00:00:00: Portfolio Value - 1961282.78\n", + "2016-03-11 00:00:00: Portfolio Value - 1973512.29\n", + "2016-03-14 00:00:00: Portfolio Value - 1971128.08\n", + "2016-03-15 00:00:00: Portfolio Value - 1982167.26\n", + "2016-03-16 00:00:00: Portfolio Value - 1987994.17\n", + "2016-03-17 00:00:00: Portfolio Value - 2000066.60\n", + "2016-03-18 00:00:00: Portfolio Value - 1982100.34\n", + "2016-03-21 00:00:00: Portfolio Value - 1981615.92\n", + "2016-03-22 00:00:00: Portfolio Value - 1976275.01\n", + "2016-03-23 00:00:00: Portfolio Value - 1971465.40\n", + "2016-03-24 00:00:00: Portfolio Value - 1960071.21\n", + "2016-03-28 00:00:00: Portfolio Value - 1969551.38\n", + "2016-03-29 00:00:00: Portfolio Value - 1998028.79\n", + "2016-03-30 00:00:00: Portfolio Value - 2009265.77\n", + "2016-03-31 00:00:00: Portfolio Value - 2007565.22\n", + "2016-04-01 00:00:00: Portfolio Value - 2050981.20\n", + "2016-04-04 00:00:00: Portfolio Value - 2044192.46\n", + "2016-04-05 00:00:00: Portfolio Value - 1995297.27\n", + "2016-04-06 00:00:00: Portfolio Value - 2025972.55\n", + "2016-04-07 00:00:00: Portfolio Value - 2003686.83\n", + "2016-04-08 00:00:00: Portfolio Value - 1984010.26\n", + "2016-04-11 00:00:00: Portfolio Value - 1971852.25\n", + "2016-04-12 00:00:00: Portfolio Value - 2007103.83\n", + "2016-04-13 00:00:00: Portfolio Value - 2012509.70\n", + "2016-04-14 00:00:00: Portfolio Value - 1996606.50\n", + "2016-04-15 00:00:00: Portfolio Value - 2030244.34\n", + "2016-04-18 00:00:00: Portfolio Value - 2056825.34\n", + "2016-04-19 00:00:00: Portfolio Value - 2040459.56\n", + "2016-04-20 00:00:00: Portfolio Value - 2014718.65\n", + "2016-04-21 00:00:00: Portfolio Value - 1982685.11\n", + "2016-04-22 00:00:00: Portfolio Value - 2014019.01\n", + "2016-04-25 00:00:00: Portfolio Value - 2026201.48\n", + "2016-04-26 00:00:00: Portfolio Value - 2032210.20\n", + "2016-04-27 00:00:00: Portfolio Value - 2014841.68\n", + "2016-04-28 00:00:00: Portfolio Value - 2021484.54\n", + "2016-04-29 00:00:00: Portfolio Value - 2021824.65\n", + "2016-05-02 00:00:00: Portfolio Value - 2035222.04\n", + "2016-05-03 00:00:00: Portfolio Value - 2050510.79\n", + "2016-05-04 00:00:00: Portfolio Value - 2092683.93\n", + "2016-05-05 00:00:00: Portfolio Value - 2130822.57\n", + "2016-05-06 00:00:00: Portfolio Value - 2098164.52\n", + "2016-05-09 00:00:00: Portfolio Value - 2142146.06\n", + "2016-05-10 00:00:00: Portfolio Value - 2187330.82\n", + "2016-05-11 00:00:00: Portfolio Value - 2174812.69\n", + "2016-05-12 00:00:00: Portfolio Value - 2189984.61\n", + "2016-05-13 00:00:00: Portfolio Value - 2166914.48\n", + "2016-05-16 00:00:00: Portfolio Value - 2187042.65\n", + "2016-05-17 00:00:00: Portfolio Value - 2133606.49\n", + "2016-05-18 00:00:00: Portfolio Value - 2119702.03\n", + "2016-05-19 00:00:00: Portfolio Value - 2128957.12\n", + "2016-05-20 00:00:00: Portfolio Value - 2136293.66\n", + "2016-05-23 00:00:00: Portfolio Value - 2126173.68\n", + "2016-05-24 00:00:00: Portfolio Value - 2170016.10\n", + "2016-05-25 00:00:00: Portfolio Value - 2145471.98\n", + "2016-05-26 00:00:00: Portfolio Value - 2158602.68\n", + "2016-05-27 00:00:00: Portfolio Value - 2138596.11\n", + "2016-05-31 00:00:00: Portfolio Value - 2136551.68\n", + "2016-06-01 00:00:00: Portfolio Value - 2143392.19\n", + "2016-06-02 00:00:00: Portfolio Value - 2163023.85\n", + "2016-06-03 00:00:00: Portfolio Value - 2163819.15\n", + "2016-06-06 00:00:00: Portfolio Value - 2161925.69\n", + "2016-06-07 00:00:00: Portfolio Value - 2172617.20\n", + "2016-06-08 00:00:00: Portfolio Value - 2189939.39\n", + "2016-06-09 00:00:00: Portfolio Value - 2219868.40\n", + "2016-06-10 00:00:00: Portfolio Value - 2195568.80\n", + "2016-06-13 00:00:00: Portfolio Value - 2177264.85\n", + "2016-06-14 00:00:00: Portfolio Value - 2205395.59\n", + "2016-06-15 00:00:00: Portfolio Value - 2156750.13\n", + "2016-06-16 00:00:00: Portfolio Value - 2169022.08\n", + "2016-06-17 00:00:00: Portfolio Value - 2155391.34\n", + "2016-06-20 00:00:00: Portfolio Value - 2184974.47\n", + "2016-06-21 00:00:00: Portfolio Value - 2236154.78\n", + "2016-06-22 00:00:00: Portfolio Value - 2234020.98\n", + "2016-06-23 00:00:00: Portfolio Value - 2263407.77\n", + "2016-06-24 00:00:00: Portfolio Value - 2145266.64\n", + "2016-06-27 00:00:00: Portfolio Value - 2116054.08\n", + "2016-06-28 00:00:00: Portfolio Value - 2162230.75\n", + "2016-06-29 00:00:00: Portfolio Value - 2216851.62\n", + "2016-06-30 00:00:00: Portfolio Value - 2303525.06\n", + "2016-07-01 00:00:00: Portfolio Value - 2296809.25\n", + "2016-07-05 00:00:00: Portfolio Value - 2336701.20\n", + "2016-07-06 00:00:00: Portfolio Value - 2330154.73\n", + "2016-07-07 00:00:00: Portfolio Value - 2309028.83\n", + "2016-07-08 00:00:00: Portfolio Value - 2343195.11\n", + "2016-07-11 00:00:00: Portfolio Value - 2327406.57\n", + "2016-07-12 00:00:00: Portfolio Value - 2303897.64\n", + "2016-07-13 00:00:00: Portfolio Value - 2323411.20\n", + "2016-07-14 00:00:00: Portfolio Value - 2317264.14\n", + "2016-07-15 00:00:00: Portfolio Value - 2295439.31\n", + "2016-07-18 00:00:00: Portfolio Value - 2282600.78\n", + "2016-07-19 00:00:00: Portfolio Value - 2299294.07\n", + "2016-07-20 00:00:00: Portfolio Value - 2306364.61\n", + "2016-07-21 00:00:00: Portfolio Value - 2294706.61\n", + "2016-07-22 00:00:00: Portfolio Value - 2312923.86\n", + "2016-07-25 00:00:00: Portfolio Value - 2309321.57\n", + "2016-07-26 00:00:00: Portfolio Value - 2316894.40\n", + "2016-07-27 00:00:00: Portfolio Value - 2282666.64\n", + "2016-07-28 00:00:00: Portfolio Value - 2286230.03\n", + "2016-07-29 00:00:00: Portfolio Value - 2310486.18\n", + "2016-08-01 00:00:00: Portfolio Value - 2337577.71\n", + "2016-08-02 00:00:00: Portfolio Value - 2307757.88\n", + "2016-08-03 00:00:00: Portfolio Value - 2267430.73\n", + "2016-08-04 00:00:00: Portfolio Value - 2276459.45\n", + "2016-08-05 00:00:00: Portfolio Value - 2253719.08\n", + "2016-08-08 00:00:00: Portfolio Value - 2260763.16\n", + "2016-08-09 00:00:00: Portfolio Value - 2279306.19\n", + "2016-08-10 00:00:00: Portfolio Value - 2301849.86\n", + "2016-08-11 00:00:00: Portfolio Value - 2310312.78\n", + "2016-08-12 00:00:00: Portfolio Value - 2289121.66\n", + "2016-08-15 00:00:00: Portfolio Value - 2274043.23\n", + "2016-08-16 00:00:00: Portfolio Value - 2266388.57\n", + "2016-08-17 00:00:00: Portfolio Value - 2281672.56\n", + "2016-08-18 00:00:00: Portfolio Value - 2292609.85\n", + "2016-08-19 00:00:00: Portfolio Value - 2294504.89\n", + "2016-08-22 00:00:00: Portfolio Value - 2306558.56\n", + "2016-08-23 00:00:00: Portfolio Value - 2276532.02\n", + "2016-08-24 00:00:00: Portfolio Value - 2274681.09\n", + "2016-08-25 00:00:00: Portfolio Value - 2301324.93\n", + "2016-08-26 00:00:00: Portfolio Value - 2325232.29\n", + "2016-08-29 00:00:00: Portfolio Value - 2350097.27\n", + "2016-08-30 00:00:00: Portfolio Value - 2353884.00\n", + "2016-08-31 00:00:00: Portfolio Value - 2357987.41\n", + "2016-09-01 00:00:00: Portfolio Value - 2365523.50\n", + "2016-09-02 00:00:00: Portfolio Value - 2394445.94\n", + "2016-09-06 00:00:00: Portfolio Value - 2411337.86\n", + "2016-09-07 00:00:00: Portfolio Value - 2403912.15\n", + "2016-09-08 00:00:00: Portfolio Value - 2350490.12\n", + "2016-09-09 00:00:00: Portfolio Value - 2241868.36\n", + "2016-09-12 00:00:00: Portfolio Value - 2291598.19\n", + "2016-09-13 00:00:00: Portfolio Value - 2257492.67\n", + "2016-09-14 00:00:00: Portfolio Value - 2250229.09\n", + "2016-09-15 00:00:00: Portfolio Value - 2302855.76\n", + "2016-09-16 00:00:00: Portfolio Value - 2279838.49\n", + "2016-09-19 00:00:00: Portfolio Value - 2288698.54\n", + "2016-09-20 00:00:00: Portfolio Value - 2304773.95\n", + "2016-09-21 00:00:00: Portfolio Value - 2355119.63\n", + "2016-09-22 00:00:00: Portfolio Value - 2406548.40\n", + "2016-09-23 00:00:00: Portfolio Value - 2378706.44\n", + "2016-09-26 00:00:00: Portfolio Value - 2359984.30\n", + "2016-09-27 00:00:00: Portfolio Value - 2373336.67\n", + "2016-09-28 00:00:00: Portfolio Value - 2373992.04\n", + "2016-09-29 00:00:00: Portfolio Value - 2346953.85\n", + "2016-09-30 00:00:00: Portfolio Value - 2383975.65\n", + "2016-10-03 00:00:00: Portfolio Value - 2347117.31\n", + "2016-10-04 00:00:00: Portfolio Value - 2294395.14\n", + "2016-10-05 00:00:00: Portfolio Value - 2280495.76\n", + "2016-10-06 00:00:00: Portfolio Value - 2288404.47\n", + "2016-10-07 00:00:00: Portfolio Value - 2275020.53\n", + "2016-10-10 00:00:00: Portfolio Value - 2292776.70\n", + "2016-10-11 00:00:00: Portfolio Value - 2230456.98\n", + "2016-10-12 00:00:00: Portfolio Value - 2262436.55\n", + "2016-10-13 00:00:00: Portfolio Value - 2218505.37\n", + "2016-10-14 00:00:00: Portfolio Value - 2224011.99\n", + "2016-10-17 00:00:00: Portfolio Value - 2221011.16\n", + "2016-10-18 00:00:00: Portfolio Value - 2236233.69\n", + "2016-10-19 00:00:00: Portfolio Value - 2222191.56\n", + "2016-10-20 00:00:00: Portfolio Value - 2195245.50\n", + "2016-10-21 00:00:00: Portfolio Value - 2199660.03\n", + "2016-10-24 00:00:00: Portfolio Value - 2203839.70\n", + "2016-10-25 00:00:00: Portfolio Value - 2207061.49\n", + "2016-10-26 00:00:00: Portfolio Value - 2151748.95\n", + "2016-10-27 00:00:00: Portfolio Value - 2129138.00\n", + "2016-10-28 00:00:00: Portfolio Value - 2146001.06\n", + "2016-10-31 00:00:00: Portfolio Value - 2152347.84\n", + "2016-11-01 00:00:00: Portfolio Value - 2098290.61\n", + "2016-11-02 00:00:00: Portfolio Value - 2067067.62\n", + "2016-11-03 00:00:00: Portfolio Value - 2120740.58\n", + "2016-11-04 00:00:00: Portfolio Value - 2059693.40\n", + "2016-11-07 00:00:00: Portfolio Value - 2105067.39\n", + "2016-11-08 00:00:00: Portfolio Value - 2132413.06\n", + "2016-11-09 00:00:00: Portfolio Value - 2059938.32\n", + "2016-11-10 00:00:00: Portfolio Value - 2050292.45\n", + "2016-11-11 00:00:00: Portfolio Value - 2028870.81\n", + "2016-11-14 00:00:00: Portfolio Value - 1967861.16\n", + "2016-11-15 00:00:00: Portfolio Value - 1996386.28\n", + "2016-11-16 00:00:00: Portfolio Value - 2002475.27\n", + "2016-11-17 00:00:00: Portfolio Value - 2032173.76\n", + "2016-11-18 00:00:00: Portfolio Value - 2043137.91\n", + "2016-11-21 00:00:00: Portfolio Value - 2039384.12\n", + "2016-11-22 00:00:00: Portfolio Value - 2006659.77\n", + "2016-11-23 00:00:00: Portfolio Value - 1998601.94\n", + "2016-11-25 00:00:00: Portfolio Value - 2038744.13\n", + "2016-11-28 00:00:00: Portfolio Value - 2062128.96\n", + "2016-11-29 00:00:00: Portfolio Value - 2100457.43\n", + "2016-11-30 00:00:00: Portfolio Value - 2019804.82\n", + "2016-12-01 00:00:00: Portfolio Value - 1927335.24\n", + "2016-12-02 00:00:00: Portfolio Value - 1940869.13\n", + "2016-12-05 00:00:00: Portfolio Value - 1937963.33\n", + "2016-12-06 00:00:00: Portfolio Value - 1966694.72\n", + "2016-12-07 00:00:00: Portfolio Value - 1985470.15\n", + "2016-12-08 00:00:00: Portfolio Value - 1969112.22\n", + "2016-12-09 00:00:00: Portfolio Value - 2011953.26\n", + "2016-12-12 00:00:00: Portfolio Value - 2029777.08\n", + "2016-12-13 00:00:00: Portfolio Value - 2053122.16\n", + "2016-12-14 00:00:00: Portfolio Value - 2005058.08\n", + "2016-12-15 00:00:00: Portfolio Value - 2014272.21\n", + "2016-12-16 00:00:00: Portfolio Value - 2023631.82\n", + "2016-12-19 00:00:00: Portfolio Value - 2038346.62\n", + "2016-12-20 00:00:00: Portfolio Value - 2028423.92\n", + "2016-12-21 00:00:00: Portfolio Value - 2017345.89\n", + "2016-12-22 00:00:00: Portfolio Value - 2033637.22\n", + "2016-12-23 00:00:00: Portfolio Value - 2043144.66\n", + "2016-12-27 00:00:00: Portfolio Value - 2048163.06\n", + "2016-12-28 00:00:00: Portfolio Value - 2017465.66\n", + "2016-12-29 00:00:00: Portfolio Value - 2044205.85\n", + "2016-12-30 00:00:00: Portfolio Value - 2029431.01\n", + "2017-01-03 00:00:00: Portfolio Value - 2028100.80\n", + "2017-01-04 00:00:00: Portfolio Value - 2036374.51\n", + "2017-01-05 00:00:00: Portfolio Value - 2040635.34\n", + "2017-01-06 00:00:00: Portfolio Value - 2066059.41\n", + "2017-01-09 00:00:00: Portfolio Value - 2038823.15\n", + "2017-01-10 00:00:00: Portfolio Value - 2041177.93\n", + "2017-01-11 00:00:00: Portfolio Value - 2058231.45\n", + "2017-01-12 00:00:00: Portfolio Value - 2063410.56\n", + "2017-01-13 00:00:00: Portfolio Value - 2068785.20\n", + "2017-01-17 00:00:00: Portfolio Value - 2085462.67\n", + "2017-01-18 00:00:00: Portfolio Value - 2082591.05\n", + "2017-01-19 00:00:00: Portfolio Value - 2073089.75\n", + "2017-01-20 00:00:00: Portfolio Value - 2082752.98\n", + "2017-01-23 00:00:00: Portfolio Value - 2070449.79\n", + "2017-01-24 00:00:00: Portfolio Value - 2115228.00\n", + "2017-01-25 00:00:00: Portfolio Value - 2131890.46\n", + "2017-01-26 00:00:00: Portfolio Value - 2115069.31\n", + "2017-01-27 00:00:00: Portfolio Value - 2125837.71\n", + "2017-01-30 00:00:00: Portfolio Value - 2117760.48\n", + "2017-01-31 00:00:00: Portfolio Value - 2132560.81\n", + "2017-02-01 00:00:00: Portfolio Value - 2116652.09\n", + "2017-02-02 00:00:00: Portfolio Value - 2135144.48\n", + "2017-02-03 00:00:00: Portfolio Value - 2183006.64\n", + "2017-02-06 00:00:00: Portfolio Value - 2158767.41\n", + "2017-02-07 00:00:00: Portfolio Value - 2190189.07\n", + "2017-02-08 00:00:00: Portfolio Value - 2204273.85\n", + "2017-02-09 00:00:00: Portfolio Value - 2200719.47\n", + "2017-02-10 00:00:00: Portfolio Value - 2223279.04\n", + "2017-02-13 00:00:00: Portfolio Value - 2237810.12\n", + "2017-02-14 00:00:00: Portfolio Value - 2225975.88\n", + "2017-02-15 00:00:00: Portfolio Value - 2239383.55\n", + "2017-02-16 00:00:00: Portfolio Value - 2288793.68\n", + "2017-02-17 00:00:00: Portfolio Value - 2325790.33\n", + "2017-02-21 00:00:00: Portfolio Value - 2329308.67\n", + "2017-02-22 00:00:00: Portfolio Value - 2322054.68\n", + "2017-02-23 00:00:00: Portfolio Value - 2335653.40\n", + "2017-02-24 00:00:00: Portfolio Value - 2365901.02\n", + "2017-02-27 00:00:00: Portfolio Value - 2351360.31\n", + "2017-02-28 00:00:00: Portfolio Value - 2355785.66\n", + "2017-03-01 00:00:00: Portfolio Value - 2402370.90\n", + "2017-03-02 00:00:00: Portfolio Value - 2376040.24\n", + "2017-03-03 00:00:00: Portfolio Value - 2361552.70\n", + "2017-03-06 00:00:00: Portfolio Value - 2341994.58\n", + "2017-03-07 00:00:00: Portfolio Value - 2339347.06\n", + "2017-03-08 00:00:00: Portfolio Value - 2302763.53\n", + "2017-03-09 00:00:00: Portfolio Value - 2312259.75\n", + "2017-03-10 00:00:00: Portfolio Value - 2305086.53\n", + "2017-03-13 00:00:00: Portfolio Value - 2313991.90\n", + "2017-03-14 00:00:00: Portfolio Value - 2289397.08\n", + "2017-03-15 00:00:00: Portfolio Value - 2327196.37\n", + "2017-03-16 00:00:00: Portfolio Value - 2293464.76\n", + "2017-03-17 00:00:00: Portfolio Value - 2328001.50\n", + "2017-03-20 00:00:00: Portfolio Value - 2319851.36\n", + "2017-03-21 00:00:00: Portfolio Value - 2332127.55\n", + "2017-03-22 00:00:00: Portfolio Value - 2343309.57\n", + "2017-03-23 00:00:00: Portfolio Value - 2357198.36\n", + "2017-03-24 00:00:00: Portfolio Value - 2369068.12\n", + "2017-03-27 00:00:00: Portfolio Value - 2365192.47\n", + "2017-03-28 00:00:00: Portfolio Value - 2372344.46\n", + "2017-03-29 00:00:00: Portfolio Value - 2373776.88\n", + "2017-03-30 00:00:00: Portfolio Value - 2351769.41\n", + "2017-03-31 00:00:00: Portfolio Value - 2354693.98\n", + "2017-04-03 00:00:00: Portfolio Value - 2331590.89\n", + "2017-04-04 00:00:00: Portfolio Value - 2323511.80\n", + "2017-04-05 00:00:00: Portfolio Value - 2310406.12\n", + "2017-04-06 00:00:00: Portfolio Value - 2298533.11\n", + "2017-04-07 00:00:00: Portfolio Value - 2288538.95\n", + "2017-04-10 00:00:00: Portfolio Value - 2297127.88\n", + "2017-04-11 00:00:00: Portfolio Value - 2304927.91\n", + "2017-04-12 00:00:00: Portfolio Value - 2298574.61\n", + "2017-04-13 00:00:00: Portfolio Value - 2289531.24\n", + "2017-04-17 00:00:00: Portfolio Value - 2366195.19\n", + "2017-04-18 00:00:00: Portfolio Value - 2378660.81\n", + "2017-04-19 00:00:00: Portfolio Value - 2401205.30\n", + "2017-04-20 00:00:00: Portfolio Value - 2419854.66\n", + "2017-04-21 00:00:00: Portfolio Value - 2401920.13\n", + "2017-04-24 00:00:00: Portfolio Value - 2381502.12\n", + "2017-04-25 00:00:00: Portfolio Value - 2412764.90\n", + "2017-04-26 00:00:00: Portfolio Value - 2413559.41\n", + "2017-04-27 00:00:00: Portfolio Value - 2446772.59\n", + "2017-04-28 00:00:00: Portfolio Value - 2425407.07\n", + "2017-05-01 00:00:00: Portfolio Value - 2429065.23\n", + "2017-05-02 00:00:00: Portfolio Value - 2394591.58\n", + "2017-05-03 00:00:00: Portfolio Value - 2350993.42\n", + "2017-05-04 00:00:00: Portfolio Value - 2448577.14\n", + "2017-05-05 00:00:00: Portfolio Value - 2482916.22\n", + "2017-05-08 00:00:00: Portfolio Value - 2447470.31\n", + "2017-05-09 00:00:00: Portfolio Value - 2403472.19\n", + "2017-05-10 00:00:00: Portfolio Value - 2411606.24\n", + "2017-05-11 00:00:00: Portfolio Value - 2450263.35\n", + "2017-05-12 00:00:00: Portfolio Value - 2447647.51\n", + "2017-05-15 00:00:00: Portfolio Value - 2465746.73\n", + "2017-05-16 00:00:00: Portfolio Value - 2435442.08\n", + "2017-05-17 00:00:00: Portfolio Value - 2421818.16\n", + "2017-05-18 00:00:00: Portfolio Value - 2404521.96\n", + "2017-05-19 00:00:00: Portfolio Value - 2435667.63\n", + "2017-05-22 00:00:00: Portfolio Value - 2466449.81\n", + "2017-05-23 00:00:00: Portfolio Value - 2481831.03\n", + "2017-05-24 00:00:00: Portfolio Value - 2524536.42\n", + "2017-05-25 00:00:00: Portfolio Value - 2548429.76\n", + "2017-05-26 00:00:00: Portfolio Value - 2531597.21\n", + "2017-05-30 00:00:00: Portfolio Value - 2558239.43\n", + "2017-05-31 00:00:00: Portfolio Value - 2605839.49\n", + "2017-06-01 00:00:00: Portfolio Value - 2637086.41\n", + "2017-06-02 00:00:00: Portfolio Value - 2644834.50\n", + "2017-06-05 00:00:00: Portfolio Value - 2646738.14\n", + "2017-06-06 00:00:00: Portfolio Value - 2627118.91\n", + "2017-06-07 00:00:00: Portfolio Value - 2645139.39\n", + "2017-06-08 00:00:00: Portfolio Value - 2615798.47\n", + "2017-06-09 00:00:00: Portfolio Value - 2606080.27\n", + "2017-06-12 00:00:00: Portfolio Value - 2623911.84\n", + "2017-06-13 00:00:00: Portfolio Value - 2654158.13\n", + "2017-06-14 00:00:00: Portfolio Value - 2676502.59\n", + "2017-06-15 00:00:00: Portfolio Value - 2712400.61\n", + "2017-06-16 00:00:00: Portfolio Value - 2724910.16\n", + "2017-06-19 00:00:00: Portfolio Value - 2751039.01\n", + "2017-06-20 00:00:00: Portfolio Value - 2740028.64\n", + "2017-06-21 00:00:00: Portfolio Value - 2714182.71\n", + "2017-06-22 00:00:00: Portfolio Value - 2686749.01\n", + "2017-06-23 00:00:00: Portfolio Value - 2683804.66\n", + "2017-06-26 00:00:00: Portfolio Value - 2676837.54\n", + "2017-06-27 00:00:00: Portfolio Value - 2652195.24\n", + "2017-06-28 00:00:00: Portfolio Value - 2653668.50\n", + "2017-06-29 00:00:00: Portfolio Value - 2608435.05\n", + "2017-06-30 00:00:00: Portfolio Value - 2626979.33\n", + "2017-07-03 00:00:00: Portfolio Value - 2630988.05\n", + "2017-07-05 00:00:00: Portfolio Value - 2644708.31\n", + "2017-07-06 00:00:00: Portfolio Value - 2621227.37\n", + "2017-07-07 00:00:00: Portfolio Value - 2659237.00\n", + "2017-07-10 00:00:00: Portfolio Value - 2663617.42\n", + "2017-07-11 00:00:00: Portfolio Value - 2647750.35\n", + "2017-07-12 00:00:00: Portfolio Value - 2670532.95\n", + "2017-07-13 00:00:00: Portfolio Value - 2662697.80\n", + "2017-07-14 00:00:00: Portfolio Value - 2704391.37\n", + "2017-07-17 00:00:00: Portfolio Value - 2726696.27\n", + "2017-07-18 00:00:00: Portfolio Value - 2737376.78\n", + "2017-07-19 00:00:00: Portfolio Value - 2745554.86\n", + "2017-07-20 00:00:00: Portfolio Value - 2766739.26\n", + "2017-07-21 00:00:00: Portfolio Value - 2808492.82\n", + "2017-07-24 00:00:00: Portfolio Value - 2812035.03\n", + "2017-07-25 00:00:00: Portfolio Value - 2815376.44\n", + "2017-07-26 00:00:00: Portfolio Value - 2816276.24\n", + "2017-07-27 00:00:00: Portfolio Value - 2798944.05\n", + "2017-07-28 00:00:00: Portfolio Value - 2819471.65\n", + "2017-07-31 00:00:00: Portfolio Value - 2801269.51\n", + "2017-08-01 00:00:00: Portfolio Value - 2805302.17\n", + "2017-08-02 00:00:00: Portfolio Value - 2755080.28\n", + "2017-08-03 00:00:00: Portfolio Value - 2762861.11\n", + "2017-08-04 00:00:00: Portfolio Value - 2759457.74\n", + "2017-08-07 00:00:00: Portfolio Value - 2750797.36\n", + "2017-08-08 00:00:00: Portfolio Value - 2729081.34\n", + "2017-08-09 00:00:00: Portfolio Value - 2725729.49\n", + "2017-08-10 00:00:00: Portfolio Value - 2728797.95\n", + "2017-08-11 00:00:00: Portfolio Value - 2747183.49\n", + "2017-08-14 00:00:00: Portfolio Value - 2797915.73\n", + "2017-08-15 00:00:00: Portfolio Value - 2806049.62\n", + "2017-08-16 00:00:00: Portfolio Value - 2805052.11\n", + "2017-08-17 00:00:00: Portfolio Value - 2777588.28\n", + "2017-08-18 00:00:00: Portfolio Value - 2775916.48\n", + "2017-08-21 00:00:00: Portfolio Value - 2821576.17\n", + "2017-08-22 00:00:00: Portfolio Value - 2846460.88\n", + "2017-08-23 00:00:00: Portfolio Value - 2808208.64\n", + "2017-08-24 00:00:00: Portfolio Value - 2782125.77\n", + "2017-08-25 00:00:00: Portfolio Value - 2834792.91\n", + "2017-08-28 00:00:00: Portfolio Value - 2847059.73\n", + "2017-08-29 00:00:00: Portfolio Value - 2839233.96\n", + "2017-08-30 00:00:00: Portfolio Value - 2830766.33\n", + "2017-08-31 00:00:00: Portfolio Value - 2870841.84\n", + "2017-09-01 00:00:00: Portfolio Value - 2859304.23\n", + "2017-09-05 00:00:00: Portfolio Value - 2869037.87\n", + "2017-09-06 00:00:00: Portfolio Value - 2851949.03\n", + "2017-09-07 00:00:00: Portfolio Value - 2864945.59\n", + "2017-09-08 00:00:00: Portfolio Value - 2937060.92\n", + "2017-09-11 00:00:00: Portfolio Value - 2966606.04\n", + "2017-09-12 00:00:00: Portfolio Value - 2968265.41\n", + "2017-09-13 00:00:00: Portfolio Value - 2893394.74\n", + "2017-09-14 00:00:00: Portfolio Value - 2910140.32\n", + "2017-09-15 00:00:00: Portfolio Value - 2917466.16\n", + "2017-09-18 00:00:00: Portfolio Value - 2912546.48\n", + "2017-09-19 00:00:00: Portfolio Value - 2898048.95\n", + "2017-09-20 00:00:00: Portfolio Value - 2898422.26\n", + "2017-09-21 00:00:00: Portfolio Value - 2845642.50\n", + "2017-09-22 00:00:00: Portfolio Value - 2866133.98\n", + "2017-09-25 00:00:00: Portfolio Value - 2876426.25\n", + "2017-09-26 00:00:00: Portfolio Value - 2895738.15\n", + "2017-09-27 00:00:00: Portfolio Value - 2869554.26\n", + "2017-09-28 00:00:00: Portfolio Value - 2862278.73\n", + "2017-09-29 00:00:00: Portfolio Value - 2885179.93\n", + "2017-10-02 00:00:00: Portfolio Value - 2897288.19\n", + "2017-10-03 00:00:00: Portfolio Value - 2869606.71\n", + "2017-10-04 00:00:00: Portfolio Value - 2899596.33\n", + "2017-10-05 00:00:00: Portfolio Value - 2909536.21\n", + "2017-10-06 00:00:00: Portfolio Value - 2916246.67\n", + "2017-10-09 00:00:00: Portfolio Value - 2904677.76\n", + "2017-10-10 00:00:00: Portfolio Value - 2936239.74\n", + "2017-10-11 00:00:00: Portfolio Value - 2969076.28\n", + "2017-10-12 00:00:00: Portfolio Value - 3031654.54\n", + "2017-10-13 00:00:00: Portfolio Value - 3046044.31\n", + "2017-10-16 00:00:00: Portfolio Value - 3049494.23\n", + "2017-10-17 00:00:00: Portfolio Value - 3073144.24\n", + "2017-10-18 00:00:00: Portfolio Value - 3097397.53\n", + "2017-10-19 00:00:00: Portfolio Value - 3109948.67\n", + "2017-10-20 00:00:00: Portfolio Value - 3113322.37\n", + "2017-10-23 00:00:00: Portfolio Value - 3126370.21\n", + "2017-10-24 00:00:00: Portfolio Value - 3101033.47\n", + "2017-10-25 00:00:00: Portfolio Value - 3106079.62\n", + "2017-10-26 00:00:00: Portfolio Value - 3098902.42\n", + "2017-10-27 00:00:00: Portfolio Value - 3134443.60\n", + "2017-10-30 00:00:00: Portfolio Value - 3101514.88\n", + "2017-10-31 00:00:00: Portfolio Value - 3130633.80\n", + "2017-11-01 00:00:00: Portfolio Value - 3171976.27\n", + "2017-11-02 00:00:00: Portfolio Value - 3245689.82\n", + "2017-11-03 00:00:00: Portfolio Value - 3252261.04\n", + "2017-11-06 00:00:00: Portfolio Value - 3243375.01\n", + "2017-11-07 00:00:00: Portfolio Value - 3261590.89\n", + "2017-11-08 00:00:00: Portfolio Value - 3293955.67\n", + "2017-11-09 00:00:00: Portfolio Value - 3295394.78\n", + "2017-11-10 00:00:00: Portfolio Value - 3272411.81\n", + "2017-11-13 00:00:00: Portfolio Value - 3311766.97\n", + "2017-11-14 00:00:00: Portfolio Value - 3358246.54\n", + "2017-11-15 00:00:00: Portfolio Value - 3332028.70\n", + "2017-11-16 00:00:00: Portfolio Value - 3330553.36\n", + "2017-11-17 00:00:00: Portfolio Value - 3301962.45\n", + "2017-11-20 00:00:00: Portfolio Value - 3334471.67\n", + "2017-11-21 00:00:00: Portfolio Value - 3390084.56\n", + "2017-11-22 00:00:00: Portfolio Value - 3358929.83\n", + "2017-11-24 00:00:00: Portfolio Value - 3382614.69\n", + "2017-11-27 00:00:00: Portfolio Value - 3387851.72\n", + "2017-11-28 00:00:00: Portfolio Value - 3420504.78\n", + "2017-11-29 00:00:00: Portfolio Value - 3406619.88\n", + "2017-11-30 00:00:00: Portfolio Value - 3432806.15\n", + "2017-12-01 00:00:00: Portfolio Value - 3417422.78\n", + "2017-12-04 00:00:00: Portfolio Value - 3359444.64\n", + "2017-12-05 00:00:00: Portfolio Value - 3361467.66\n", + "2017-12-06 00:00:00: Portfolio Value - 3370693.11\n", + "2017-12-07 00:00:00: Portfolio Value - 3356016.03\n", + "2017-12-08 00:00:00: Portfolio Value - 3375034.23\n", + "2017-12-11 00:00:00: Portfolio Value - 3357211.51\n", + "2017-12-12 00:00:00: Portfolio Value - 3336018.61\n", + "2017-12-13 00:00:00: Portfolio Value - 3315610.91\n", + "2017-12-14 00:00:00: Portfolio Value - 3319245.24\n", + "2017-12-15 00:00:00: Portfolio Value - 3381622.59\n", + "2017-12-18 00:00:00: Portfolio Value - 3376511.48\n", + "2017-12-19 00:00:00: Portfolio Value - 3360443.04\n", + "2017-12-20 00:00:00: Portfolio Value - 3344492.06\n", + "2017-12-21 00:00:00: Portfolio Value - 3303693.34\n", + "2017-12-22 00:00:00: Portfolio Value - 3304961.07\n", + "2017-12-26 00:00:00: Portfolio Value - 3306475.87\n", + "2017-12-27 00:00:00: Portfolio Value - 3312121.36\n", + "2017-12-28 00:00:00: Portfolio Value - 3304257.64\n", + "2017-12-29 00:00:00: Portfolio Value - 3291096.47\n", + "2018-01-02 00:00:00: Portfolio Value - 3231891.83\n", + "2018-01-03 00:00:00: Portfolio Value - 3233435.74\n", + "2018-01-04 00:00:00: Portfolio Value - 3280083.40\n", + "2018-01-05 00:00:00: Portfolio Value - 3313038.83\n", + "2018-01-08 00:00:00: Portfolio Value - 3342831.44\n", + "2018-01-09 00:00:00: Portfolio Value - 3365363.15\n", + "2018-01-10 00:00:00: Portfolio Value - 3331329.12\n", + "2018-01-11 00:00:00: Portfolio Value - 3330049.86\n", + "2018-01-12 00:00:00: Portfolio Value - 3338362.53\n", + "2018-01-16 00:00:00: Portfolio Value - 3323777.79\n", + "2018-01-17 00:00:00: Portfolio Value - 3388250.75\n", + "2018-01-18 00:00:00: Portfolio Value - 3362677.32\n", + "2018-01-19 00:00:00: Portfolio Value - 3394610.12\n", + "2018-01-22 00:00:00: Portfolio Value - 3433326.42\n", + "2018-01-23 00:00:00: Portfolio Value - 3538514.07\n", + "2018-01-24 00:00:00: Portfolio Value - 3538312.06\n", + "2018-01-25 00:00:00: Portfolio Value - 3604930.48\n", + "2018-01-26 00:00:00: Portfolio Value - 3669298.74\n", + "2018-01-29 00:00:00: Portfolio Value - 3625311.97\n", + "2018-01-30 00:00:00: Portfolio Value - 3615978.10\n", + "2018-01-31 00:00:00: Portfolio Value - 3637518.28\n", + "2018-02-01 00:00:00: Portfolio Value - 3634408.72\n", + "2018-02-02 00:00:00: Portfolio Value - 3518839.77\n", + "2018-02-05 00:00:00: Portfolio Value - 3346261.30\n", + "2018-02-06 00:00:00: Portfolio Value - 3340598.76\n", + "2018-02-07 00:00:00: Portfolio Value - 3314050.43\n", + "2018-02-08 00:00:00: Portfolio Value - 3186191.17\n", + "2018-02-09 00:00:00: Portfolio Value - 3250128.17\n", + "2018-02-12 00:00:00: Portfolio Value - 3315786.46\n", + "2018-02-13 00:00:00: Portfolio Value - 3323250.48\n", + "2018-02-14 00:00:00: Portfolio Value - 3418547.62\n", + "2018-02-15 00:00:00: Portfolio Value - 3481135.44\n", + "2018-02-16 00:00:00: Portfolio Value - 3487443.98\n", + "2018-02-20 00:00:00: Portfolio Value - 3433473.03\n", + "2018-02-21 00:00:00: Portfolio Value - 3408881.17\n", + "2018-02-22 00:00:00: Portfolio Value - 3407443.31\n", + "2018-02-23 00:00:00: Portfolio Value - 3483888.21\n", + "2018-02-26 00:00:00: Portfolio Value - 3571368.66\n", + "2018-02-27 00:00:00: Portfolio Value - 3536107.90\n", + "2018-02-28 00:00:00: Portfolio Value - 3476827.73\n", + "2018-03-01 00:00:00: Portfolio Value - 3431507.94\n", + "2018-03-02 00:00:00: Portfolio Value - 3464323.82\n", + "2018-03-05 00:00:00: Portfolio Value - 3518255.93\n", + "2018-03-06 00:00:00: Portfolio Value - 3520153.29\n", + "2018-03-07 00:00:00: Portfolio Value - 3535897.39\n", + "2018-03-08 00:00:00: Portfolio Value - 3603491.40\n", + "2018-03-09 00:00:00: Portfolio Value - 3682727.75\n", + "2018-03-12 00:00:00: Portfolio Value - 3644434.04\n", + "2018-03-13 00:00:00: Portfolio Value - 3634907.19\n", + "2018-03-14 00:00:00: Portfolio Value - 3628316.07\n", + "2018-03-15 00:00:00: Portfolio Value - 3617223.56\n", + "2018-03-16 00:00:00: Portfolio Value - 3598856.14\n", + "2018-03-19 00:00:00: Portfolio Value - 3560803.14\n", + "2018-03-20 00:00:00: Portfolio Value - 3585771.99\n", + "2018-03-21 00:00:00: Portfolio Value - 3532094.58\n", + "2018-03-22 00:00:00: Portfolio Value - 3466034.69\n", + "2018-03-23 00:00:00: Portfolio Value - 3420618.16\n", + "2018-03-26 00:00:00: Portfolio Value - 3488338.98\n", + "2018-03-27 00:00:00: Portfolio Value - 3453295.28\n", + "2018-03-28 00:00:00: Portfolio Value - 3474977.06\n", + "2018-03-29 00:00:00: Portfolio Value - 3570794.57\n", + "2018-04-02 00:00:00: Portfolio Value - 3455811.98\n", + "2018-04-03 00:00:00: Portfolio Value - 3487996.04\n", + "2018-04-04 00:00:00: Portfolio Value - 3517780.42\n", + "2018-04-05 00:00:00: Portfolio Value - 3521069.80\n", + "2018-04-06 00:00:00: Portfolio Value - 3464200.98\n", + "2018-04-09 00:00:00: Portfolio Value - 3470215.11\n", + "2018-04-10 00:00:00: Portfolio Value - 3513143.46\n", + "2018-04-11 00:00:00: Portfolio Value - 3510239.22\n", + "2018-04-12 00:00:00: Portfolio Value - 3509345.04\n", + "2018-04-13 00:00:00: Portfolio Value - 3537621.98\n", + "2018-04-16 00:00:00: Portfolio Value - 3617907.57\n", + "2018-04-17 00:00:00: Portfolio Value - 3665667.53\n", + "2018-04-18 00:00:00: Portfolio Value - 3664804.40\n", + "2018-04-19 00:00:00: Portfolio Value - 3606833.47\n", + "2018-04-20 00:00:00: Portfolio Value - 3529089.44\n", + "2018-04-23 00:00:00: Portfolio Value - 3528283.55\n", + "2018-04-24 00:00:00: Portfolio Value - 3512190.88\n", + "2018-04-25 00:00:00: Portfolio Value - 3512422.10\n", + "2018-04-26 00:00:00: Portfolio Value - 3549189.96\n", + "2018-04-27 00:00:00: Portfolio Value - 3568804.30\n", + "2018-04-30 00:00:00: Portfolio Value - 3515147.35\n", + "2018-05-01 00:00:00: Portfolio Value - 3468847.43\n", + "2018-05-02 00:00:00: Portfolio Value - 3355156.76\n", + "2018-05-03 00:00:00: Portfolio Value - 3380219.33\n", + "2018-05-04 00:00:00: Portfolio Value - 3369154.12\n", + "2018-05-07 00:00:00: Portfolio Value - 3404478.17\n", + "2018-05-08 00:00:00: Portfolio Value - 3389033.62\n", + "2018-05-09 00:00:00: Portfolio Value - 3411663.76\n", + "2018-05-10 00:00:00: Portfolio Value - 3489955.02\n", + "2018-05-11 00:00:00: Portfolio Value - 3499324.21\n", + "2018-05-14 00:00:00: Portfolio Value - 3462090.57\n", + "2018-05-15 00:00:00: Portfolio Value - 3410195.14\n", + "2018-05-16 00:00:00: Portfolio Value - 3402744.36\n", + "2018-05-17 00:00:00: Portfolio Value - 3387209.38\n", + "2018-05-18 00:00:00: Portfolio Value - 3412228.90\n", + "2018-05-21 00:00:00: Portfolio Value - 3473578.19\n", + "2018-05-22 00:00:00: Portfolio Value - 3430654.59\n", + "2018-05-23 00:00:00: Portfolio Value - 3463593.25\n", + "2018-05-24 00:00:00: Portfolio Value - 3478107.00\n", + "2018-05-25 00:00:00: Portfolio Value - 3478983.76\n", + "2018-05-29 00:00:00: Portfolio Value - 3420554.91\n", + "2018-05-30 00:00:00: Portfolio Value - 3502271.55\n", + "2018-05-31 00:00:00: Portfolio Value - 3445289.29\n", + "2018-06-01 00:00:00: Portfolio Value - 3488685.33\n", + "2018-06-04 00:00:00: Portfolio Value - 3519169.98\n", + "2018-06-05 00:00:00: Portfolio Value - 3539364.69\n", + "2018-06-06 00:00:00: Portfolio Value - 3564369.46\n", + "2018-06-07 00:00:00: Portfolio Value - 3560517.83\n", + "2018-06-08 00:00:00: Portfolio Value - 3629027.68\n", + "2018-06-11 00:00:00: Portfolio Value - 3631751.17\n", + "2018-06-12 00:00:00: Portfolio Value - 3660233.84\n", + "2018-06-13 00:00:00: Portfolio Value - 3641474.35\n", + "2018-06-14 00:00:00: Portfolio Value - 3640346.46\n", + "2018-06-15 00:00:00: Portfolio Value - 3630444.81\n", + "2018-06-18 00:00:00: Portfolio Value - 3627195.14\n", + "2018-06-19 00:00:00: Portfolio Value - 3639031.88\n", + "2018-06-20 00:00:00: Portfolio Value - 3603960.70\n", + "2018-06-21 00:00:00: Portfolio Value - 3620674.65\n", + "2018-06-22 00:00:00: Portfolio Value - 3674257.02\n", + "2018-06-25 00:00:00: Portfolio Value - 3687247.92\n", + "2018-06-26 00:00:00: Portfolio Value - 3714338.60\n", + "2018-06-27 00:00:00: Portfolio Value - 3657351.78\n", + "2018-06-28 00:00:00: Portfolio Value - 3707883.37\n", + "2018-06-29 00:00:00: Portfolio Value - 3728720.07\n", + "2018-07-02 00:00:00: Portfolio Value - 3738333.46\n", + "2018-07-03 00:00:00: Portfolio Value - 3743470.51\n", + "2018-07-05 00:00:00: Portfolio Value - 3806686.49\n", + "2018-07-06 00:00:00: Portfolio Value - 3856254.19\n", + "2018-07-09 00:00:00: Portfolio Value - 3839877.37\n", + "2018-07-10 00:00:00: Portfolio Value - 3841783.00\n", + "2018-07-11 00:00:00: Portfolio Value - 3856788.16\n", + "2018-07-12 00:00:00: Portfolio Value - 3911285.23\n", + "2018-07-13 00:00:00: Portfolio Value - 3924543.00\n", + "2018-07-16 00:00:00: Portfolio Value - 3898280.21\n", + "2018-07-17 00:00:00: Portfolio Value - 3934917.08\n", + "2018-07-18 00:00:00: Portfolio Value - 3889297.02\n", + "2018-07-19 00:00:00: Portfolio Value - 3909555.44\n", + "2018-07-20 00:00:00: Portfolio Value - 3940227.00\n", + "2018-07-23 00:00:00: Portfolio Value - 3943836.63\n", + "2018-07-24 00:00:00: Portfolio Value - 3932287.40\n", + "2018-07-25 00:00:00: Portfolio Value - 3990934.23\n", + "2018-07-26 00:00:00: Portfolio Value - 4021665.22\n", + "2018-07-27 00:00:00: Portfolio Value - 3977029.30\n", + "2018-07-30 00:00:00: Portfolio Value - 3932497.52\n", + "2018-07-31 00:00:00: Portfolio Value - 3996330.00\n", + "2018-08-01 00:00:00: Portfolio Value - 4041759.40\n", + "2018-08-02 00:00:00: Portfolio Value - 4019006.48\n", + "2018-08-03 00:00:00: Portfolio Value - 4033597.62\n", + "2018-08-06 00:00:00: Portfolio Value - 4069273.23\n", + "2018-08-07 00:00:00: Portfolio Value - 4068308.33\n", + "2018-08-08 00:00:00: Portfolio Value - 4140629.07\n", + "2018-08-09 00:00:00: Portfolio Value - 4166446.00\n", + "2018-08-10 00:00:00: Portfolio Value - 4161040.95\n", + "2018-08-13 00:00:00: Portfolio Value - 4138555.32\n", + "2018-08-14 00:00:00: Portfolio Value - 4153984.99\n", + "2018-08-15 00:00:00: Portfolio Value - 4190499.69\n", + "2018-08-16 00:00:00: Portfolio Value - 4215154.10\n", + "2018-08-17 00:00:00: Portfolio Value - 4237071.90\n", + "2018-08-20 00:00:00: Portfolio Value - 4221094.24\n", + "2018-08-21 00:00:00: Portfolio Value - 4185694.84\n", + "2018-08-22 00:00:00: Portfolio Value - 4182755.59\n", + "2018-08-23 00:00:00: Portfolio Value - 4199343.50\n", + "2018-08-24 00:00:00: Portfolio Value - 4225096.85\n", + "2018-08-27 00:00:00: Portfolio Value - 4222488.81\n", + "2018-08-28 00:00:00: Portfolio Value - 4234824.89\n", + "2018-08-29 00:00:00: Portfolio Value - 4264105.11\n", + "2018-08-30 00:00:00: Portfolio Value - 4252800.31\n", + "2018-08-31 00:00:00: Portfolio Value - 4246066.37\n", + "2018-09-04 00:00:00: Portfolio Value - 4278011.84\n", + "2018-09-05 00:00:00: Portfolio Value - 4263926.79\n", + "2018-09-06 00:00:00: Portfolio Value - 4295571.69\n", + "2018-09-07 00:00:00: Portfolio Value - 4279076.75\n", + "2018-09-10 00:00:00: Portfolio Value - 4292493.65\n", + "2018-09-11 00:00:00: Portfolio Value - 4301827.87\n", + "2018-09-12 00:00:00: Portfolio Value - 4327895.21\n", + "2018-09-13 00:00:00: Portfolio Value - 4416645.34\n", + "2018-09-14 00:00:00: Portfolio Value - 4415593.76\n", + "2018-09-17 00:00:00: Portfolio Value - 4365895.80\n", + "2018-09-18 00:00:00: Portfolio Value - 4399851.12\n", + "2018-09-19 00:00:00: Portfolio Value - 4333986.71\n", + "2018-09-20 00:00:00: Portfolio Value - 4360604.93\n", + "2018-09-21 00:00:00: Portfolio Value - 4361512.62\n", + "2018-09-24 00:00:00: Portfolio Value - 4316093.26\n", + "2018-09-25 00:00:00: Portfolio Value - 4332063.92\n", + "2018-09-26 00:00:00: Portfolio Value - 4307753.40\n", + "2018-09-27 00:00:00: Portfolio Value - 4296117.09\n", + "2018-09-28 00:00:00: Portfolio Value - 4320117.77\n", + "2018-10-01 00:00:00: Portfolio Value - 4324800.24\n", + "2018-10-02 00:00:00: Portfolio Value - 4340713.56\n", + "2018-10-03 00:00:00: Portfolio Value - 4251048.41\n", + "2018-10-04 00:00:00: Portfolio Value - 4198290.88\n", + "2018-10-05 00:00:00: Portfolio Value - 4240236.94\n", + "2018-10-08 00:00:00: Portfolio Value - 4212920.78\n", + "2018-10-09 00:00:00: Portfolio Value - 4225389.03\n", + "2018-10-10 00:00:00: Portfolio Value - 4033910.65\n", + "2018-10-11 00:00:00: Portfolio Value - 3913112.36\n", + "2018-10-12 00:00:00: Portfolio Value - 3991888.61\n", + "2018-10-15 00:00:00: Portfolio Value - 3968605.12\n", + "2018-10-16 00:00:00: Portfolio Value - 4108954.75\n", + "2018-10-17 00:00:00: Portfolio Value - 4116367.80\n", + "2018-10-18 00:00:00: Portfolio Value - 4048896.56\n", + "2018-10-19 00:00:00: Portfolio Value - 4052835.50\n", + "2018-10-22 00:00:00: Portfolio Value - 4038856.76\n", + "2018-10-23 00:00:00: Portfolio Value - 3969078.23\n", + "2018-10-24 00:00:00: Portfolio Value - 3920317.95\n", + "2018-10-25 00:00:00: Portfolio Value - 3942284.68\n", + "2018-10-26 00:00:00: Portfolio Value - 3932098.53\n", + "2018-10-29 00:00:00: Portfolio Value - 3954093.86\n", + "2018-10-30 00:00:00: Portfolio Value - 4073944.47\n", + "2018-10-31 00:00:00: Portfolio Value - 4071448.80\n", + "2018-11-01 00:00:00: Portfolio Value - 4108059.56\n", + "2018-11-02 00:00:00: Portfolio Value - 4154951.77\n", + "2018-11-05 00:00:00: Portfolio Value - 4195101.52\n", + "2018-11-06 00:00:00: Portfolio Value - 4245104.42\n", + "2018-11-07 00:00:00: Portfolio Value - 4227215.15\n", + "2018-11-08 00:00:00: Portfolio Value - 4289177.20\n", + "2018-11-09 00:00:00: Portfolio Value - 4304720.14\n", + "2018-11-12 00:00:00: Portfolio Value - 4254276.82\n", + "2018-11-13 00:00:00: Portfolio Value - 4218467.56\n", + "2018-11-14 00:00:00: Portfolio Value - 4205157.97\n", + "2018-11-15 00:00:00: Portfolio Value - 4298927.36\n", + "2018-11-16 00:00:00: Portfolio Value - 4332288.06\n", + "2018-11-19 00:00:00: Portfolio Value - 4296161.80\n", + "2018-11-20 00:00:00: Portfolio Value - 4237124.44\n", + "2018-11-21 00:00:00: Portfolio Value - 4255530.17\n", + "2018-11-23 00:00:00: Portfolio Value - 4290272.08\n", + "2018-11-26 00:00:00: Portfolio Value - 4311153.00\n", + "2018-11-27 00:00:00: Portfolio Value - 4358396.47\n", + "2018-11-28 00:00:00: Portfolio Value - 4459986.85\n", + "2018-11-29 00:00:00: Portfolio Value - 4468842.66\n", + "2018-11-30 00:00:00: Portfolio Value - 4503117.64\n", + "2018-12-03 00:00:00: Portfolio Value - 4518895.45\n", + "2018-12-04 00:00:00: Portfolio Value - 4414655.26\n", + "2018-12-06 00:00:00: Portfolio Value - 4395367.82\n", + "2018-12-07 00:00:00: Portfolio Value - 4366513.07\n", + "2018-12-10 00:00:00: Portfolio Value - 4401143.66\n", + "2018-12-11 00:00:00: Portfolio Value - 4455604.29\n", + "2018-12-12 00:00:00: Portfolio Value - 4461196.53\n", + "2018-12-13 00:00:00: Portfolio Value - 4491327.21\n", + "2018-12-14 00:00:00: Portfolio Value - 4413902.68\n", + "2018-12-17 00:00:00: Portfolio Value - 4237118.82\n", + "2018-12-18 00:00:00: Portfolio Value - 4229702.11\n", + "2018-12-19 00:00:00: Portfolio Value - 4191391.90\n", + "2018-12-20 00:00:00: Portfolio Value - 4106609.15\n", + "2018-12-21 00:00:00: Portfolio Value - 4052510.49\n", + "2018-12-24 00:00:00: Portfolio Value - 3887843.39\n", + "2018-12-26 00:00:00: Portfolio Value - 4077923.57\n", + "2018-12-27 00:00:00: Portfolio Value - 4177119.75\n", + "2018-12-28 00:00:00: Portfolio Value - 4182993.29\n", + "2018-12-31 00:00:00: Portfolio Value - 4233332.17\n", + "2019-01-02 00:00:00: Portfolio Value - 4093352.24\n", + "2019-01-03 00:00:00: Portfolio Value - 3955560.47\n", + "2019-01-04 00:00:00: Portfolio Value - 4082860.25\n", + "2019-01-07 00:00:00: Portfolio Value - 4091799.46\n", + "2019-01-08 00:00:00: Portfolio Value - 4130219.81\n", + "2019-01-09 00:00:00: Portfolio Value - 4159399.84\n", + "2019-01-10 00:00:00: Portfolio Value - 4229206.84\n", + "2019-01-11 00:00:00: Portfolio Value - 4199667.67\n", + "2019-01-14 00:00:00: Portfolio Value - 4156801.66\n", + "2019-01-15 00:00:00: Portfolio Value - 4239624.39\n", + "2019-01-16 00:00:00: Portfolio Value - 4238569.48\n", + "2019-01-17 00:00:00: Portfolio Value - 4279704.62\n", + "2019-01-18 00:00:00: Portfolio Value - 4364184.77\n", + "2019-01-22 00:00:00: Portfolio Value - 4326820.08\n", + "2019-01-23 00:00:00: Portfolio Value - 4344662.57\n", + "2019-01-24 00:00:00: Portfolio Value - 4333566.90\n", + "2019-01-25 00:00:00: Portfolio Value - 4195865.68\n", + "2019-01-28 00:00:00: Portfolio Value - 4148005.14\n", + "2019-01-29 00:00:00: Portfolio Value - 4151486.62\n", + "2019-01-30 00:00:00: Portfolio Value - 4207884.34\n", + "2019-01-31 00:00:00: Portfolio Value - 4306743.83\n", + "2019-02-01 00:00:00: Portfolio Value - 4348057.18\n", + "2019-02-04 00:00:00: Portfolio Value - 4419047.05\n", + "2019-02-05 00:00:00: Portfolio Value - 4364110.75\n", + "2019-02-06 00:00:00: Portfolio Value - 4375352.81\n", + "2019-02-07 00:00:00: Portfolio Value - 4390218.44\n", + "2019-02-08 00:00:00: Portfolio Value - 4477282.63\n", + "2019-02-11 00:00:00: Portfolio Value - 4519272.85\n", + "2019-02-12 00:00:00: Portfolio Value - 4543385.83\n", + "2019-02-13 00:00:00: Portfolio Value - 4554757.88\n", + "2019-02-14 00:00:00: Portfolio Value - 4525158.91\n", + "2019-02-15 00:00:00: Portfolio Value - 4567619.28\n", + "2019-02-19 00:00:00: Portfolio Value - 4560971.41\n", + "2019-02-20 00:00:00: Portfolio Value - 4542154.89\n", + "2019-02-21 00:00:00: Portfolio Value - 4589791.05\n", + "2019-02-22 00:00:00: Portfolio Value - 4628114.30\n", + "2019-02-25 00:00:00: Portfolio Value - 4606231.72\n", + "2019-02-26 00:00:00: Portfolio Value - 4576992.57\n", + "2019-02-27 00:00:00: Portfolio Value - 4605703.34\n", + "2019-02-28 00:00:00: Portfolio Value - 4628195.83\n", + "2019-03-01 00:00:00: Portfolio Value - 4666187.36\n", + "2019-03-04 00:00:00: Portfolio Value - 4647178.20\n", + "2019-03-05 00:00:00: Portfolio Value - 4699787.30\n", + "2019-03-06 00:00:00: Portfolio Value - 4582712.94\n", + "2019-03-07 00:00:00: Portfolio Value - 4580159.66\n", + "2019-03-08 00:00:00: Portfolio Value - 4573300.56\n", + "2019-03-11 00:00:00: Portfolio Value - 4629772.56\n", + "2019-03-12 00:00:00: Portfolio Value - 4647936.99\n", + "2019-03-13 00:00:00: Portfolio Value - 4675756.15\n", + "2019-03-14 00:00:00: Portfolio Value - 4670693.15\n", + "2019-03-15 00:00:00: Portfolio Value - 4668124.40\n", + "2019-03-18 00:00:00: Portfolio Value - 4574981.15\n", + "2019-03-19 00:00:00: Portfolio Value - 4582190.72\n", + "2019-03-20 00:00:00: Portfolio Value - 4560240.35\n", + "2019-03-21 00:00:00: Portfolio Value - 4640509.43\n", + "2019-03-22 00:00:00: Portfolio Value - 4605330.30\n", + "2019-03-25 00:00:00: Portfolio Value - 4628235.79\n", + "2019-03-26 00:00:00: Portfolio Value - 4701287.09\n", + "2019-03-27 00:00:00: Portfolio Value - 4667178.47\n", + "2019-03-28 00:00:00: Portfolio Value - 4695653.86\n", + "2019-03-29 00:00:00: Portfolio Value - 4726274.00\n", + "2019-04-01 00:00:00: Portfolio Value - 4727167.48\n", + "2019-04-02 00:00:00: Portfolio Value - 4726317.62\n", + "2019-04-03 00:00:00: Portfolio Value - 4708426.70\n", + "2019-04-04 00:00:00: Portfolio Value - 4697141.06\n", + "2019-04-05 00:00:00: Portfolio Value - 4675208.07\n", + "2019-04-08 00:00:00: Portfolio Value - 4669842.01\n", + "2019-04-09 00:00:00: Portfolio Value - 4677748.91\n", + "2019-04-10 00:00:00: Portfolio Value - 4705632.91\n", + "2019-04-11 00:00:00: Portfolio Value - 4746018.87\n", + "2019-04-12 00:00:00: Portfolio Value - 4740098.46\n", + "2019-04-15 00:00:00: Portfolio Value - 4760557.00\n", + "2019-04-16 00:00:00: Portfolio Value - 4665757.97\n", + "2019-04-17 00:00:00: Portfolio Value - 4525356.42\n", + "2019-04-18 00:00:00: Portfolio Value - 4583687.24\n", + "2019-04-22 00:00:00: Portfolio Value - 4594403.21\n", + "2019-04-23 00:00:00: Portfolio Value - 4657867.64\n", + "2019-04-24 00:00:00: Portfolio Value - 4700413.28\n", + "2019-04-25 00:00:00: Portfolio Value - 4759329.38\n", + "2019-04-26 00:00:00: Portfolio Value - 4796737.78\n", + "2019-04-29 00:00:00: Portfolio Value - 4775907.26\n", + "2019-04-30 00:00:00: Portfolio Value - 4913684.73\n", + "2019-05-01 00:00:00: Portfolio Value - 4749010.51\n", + "2019-05-02 00:00:00: Portfolio Value - 4787908.68\n", + "2019-05-03 00:00:00: Portfolio Value - 4874937.16\n", + "2019-05-06 00:00:00: Portfolio Value - 4869792.31\n", + "2019-05-07 00:00:00: Portfolio Value - 4770994.07\n", + "2019-05-08 00:00:00: Portfolio Value - 4823478.66\n", + "2019-05-09 00:00:00: Portfolio Value - 4792998.05\n", + "2019-05-10 00:00:00: Portfolio Value - 4819516.48\n", + "2019-05-13 00:00:00: Portfolio Value - 4820127.16\n", + "2019-05-14 00:00:00: Portfolio Value - 4803717.45\n", + "2019-05-15 00:00:00: Portfolio Value - 4867673.94\n", + "2019-05-16 00:00:00: Portfolio Value - 4936883.62\n", + "2019-05-17 00:00:00: Portfolio Value - 4925354.24\n", + "2019-05-20 00:00:00: Portfolio Value - 4911412.64\n", + "2019-05-21 00:00:00: Portfolio Value - 4973046.83\n", + "2019-05-22 00:00:00: Portfolio Value - 5043723.52\n", + "2019-05-23 00:00:00: Portfolio Value - 5028523.73\n", + "2019-05-24 00:00:00: Portfolio Value - 5029758.32\n", + "2019-05-28 00:00:00: Portfolio Value - 4973470.99\n", + "2019-05-29 00:00:00: Portfolio Value - 4966709.68\n", + "2019-05-30 00:00:00: Portfolio Value - 5036636.80\n", + "2019-05-31 00:00:00: Portfolio Value - 4999089.43\n", + "2019-06-03 00:00:00: Portfolio Value - 5032914.93\n", + "2019-06-04 00:00:00: Portfolio Value - 5068754.18\n", + "2019-06-05 00:00:00: Portfolio Value - 5217446.79\n", + "2019-06-06 00:00:00: Portfolio Value - 5249290.63\n", + "2019-06-07 00:00:00: Portfolio Value - 5290191.41\n", + "2019-06-10 00:00:00: Portfolio Value - 5301952.15\n", + "2019-06-11 00:00:00: Portfolio Value - 5237813.83\n", + "2019-06-12 00:00:00: Portfolio Value - 5287493.09\n", + "2019-06-13 00:00:00: Portfolio Value - 5266262.00\n", + "2019-06-14 00:00:00: Portfolio Value - 5266746.85\n", + "2019-06-17 00:00:00: Portfolio Value - 5231085.44\n", + "2019-06-18 00:00:00: Portfolio Value - 5206316.90\n", + "2019-06-19 00:00:00: Portfolio Value - 5215843.44\n", + "2019-06-20 00:00:00: Portfolio Value - 5300995.50\n", + "2019-06-21 00:00:00: Portfolio Value - 5266137.74\n", + "2019-06-24 00:00:00: Portfolio Value - 5348816.05\n", + "2019-06-25 00:00:00: Portfolio Value - 5288047.02\n", + "2019-06-26 00:00:00: Portfolio Value - 5169377.98\n", + "2019-06-27 00:00:00: Portfolio Value - 5254512.58\n", + "2019-06-28 00:00:00: Portfolio Value - 5309196.60\n", + "2019-07-01 00:00:00: Portfolio Value - 5386499.52\n", + "2019-07-02 00:00:00: Portfolio Value - 5422140.29\n", + "2019-07-03 00:00:00: Portfolio Value - 5501061.57\n", + "2019-07-05 00:00:00: Portfolio Value - 5477693.72\n", + "2019-07-08 00:00:00: Portfolio Value - 5432041.36\n", + "2019-07-09 00:00:00: Portfolio Value - 5451566.37\n", + "2019-07-10 00:00:00: Portfolio Value - 5484169.46\n", + "2019-07-11 00:00:00: Portfolio Value - 5519658.13\n", + "2019-07-12 00:00:00: Portfolio Value - 5507284.26\n", + "2019-07-15 00:00:00: Portfolio Value - 5527364.49\n", + "2019-07-16 00:00:00: Portfolio Value - 5490445.66\n", + "2019-07-17 00:00:00: Portfolio Value - 5502524.71\n", + "2019-07-18 00:00:00: Portfolio Value - 5594818.69\n", + "2019-07-19 00:00:00: Portfolio Value - 5522249.71\n", + "2019-07-22 00:00:00: Portfolio Value - 5529588.90\n", + "2019-07-23 00:00:00: Portfolio Value - 5569278.29\n", + "2019-07-24 00:00:00: Portfolio Value - 5573794.27\n", + "2019-07-25 00:00:00: Portfolio Value - 5540526.18\n", + "2019-07-26 00:00:00: Portfolio Value - 5622454.03\n", + "2019-07-29 00:00:00: Portfolio Value - 5657072.10\n", + "2019-07-30 00:00:00: Portfolio Value - 5669726.95\n", + "2019-07-31 00:00:00: Portfolio Value - 5564594.34\n", + "2019-08-01 00:00:00: Portfolio Value - 5592598.01\n", + "2019-08-02 00:00:00: Portfolio Value - 5583481.99\n", + "2019-08-05 00:00:00: Portfolio Value - 5362212.19\n", + "2019-08-06 00:00:00: Portfolio Value - 5502006.13\n", + "2019-08-07 00:00:00: Portfolio Value - 5674290.06\n", + "2019-08-08 00:00:00: Portfolio Value - 5778844.96\n", + "2019-08-09 00:00:00: Portfolio Value - 5789309.44\n", + "2019-08-12 00:00:00: Portfolio Value - 5725003.91\n", + "2019-08-13 00:00:00: Portfolio Value - 5791376.30\n", + "2019-08-14 00:00:00: Portfolio Value - 5667187.87\n", + "2019-08-15 00:00:00: Portfolio Value - 5765973.29\n", + "2019-08-16 00:00:00: Portfolio Value - 5863415.51\n", + "2019-08-19 00:00:00: Portfolio Value - 5920266.07\n", + "2019-08-20 00:00:00: Portfolio Value - 5852503.41\n", + "2019-08-21 00:00:00: Portfolio Value - 5904189.13\n", + "2019-08-22 00:00:00: Portfolio Value - 5914317.71\n", + "2019-08-23 00:00:00: Portfolio Value - 5764468.26\n", + "2019-08-26 00:00:00: Portfolio Value - 5833812.43\n", + "2019-08-27 00:00:00: Portfolio Value - 5889806.94\n", + "2019-08-28 00:00:00: Portfolio Value - 5921513.24\n", + "2019-08-29 00:00:00: Portfolio Value - 5958395.04\n", + "2019-08-30 00:00:00: Portfolio Value - 6121428.37\n", + "2019-09-03 00:00:00: Portfolio Value - 6090340.97\n", + "2019-09-04 00:00:00: Portfolio Value - 6196368.81\n", + "2019-09-05 00:00:00: Portfolio Value - 6164358.74\n", + "2019-09-06 00:00:00: Portfolio Value - 6191569.90\n", + "2019-09-09 00:00:00: Portfolio Value - 5975038.49\n", + "2019-09-10 00:00:00: Portfolio Value - 5833926.32\n", + "2019-09-11 00:00:00: Portfolio Value - 5850437.26\n", + "2019-09-12 00:00:00: Portfolio Value - 5927277.94\n", + "2019-09-13 00:00:00: Portfolio Value - 5858916.64\n", + "2019-09-16 00:00:00: Portfolio Value - 5838176.47\n", + "2019-09-17 00:00:00: Portfolio Value - 5943996.49\n", + "2019-09-18 00:00:00: Portfolio Value - 5950135.22\n", + "2019-09-19 00:00:00: Portfolio Value - 5939039.43\n", + "2019-09-20 00:00:00: Portfolio Value - 5898569.65\n", + "2019-09-23 00:00:00: Portfolio Value - 5881764.27\n", + "2019-09-24 00:00:00: Portfolio Value - 5861285.05\n", + "2019-09-25 00:00:00: Portfolio Value - 5892987.01\n", + "2019-09-26 00:00:00: Portfolio Value - 5911163.93\n", + "2019-09-27 00:00:00: Portfolio Value - 5820110.46\n", + "2019-09-30 00:00:00: Portfolio Value - 5863966.50\n", + "2019-10-01 00:00:00: Portfolio Value - 5772390.94\n", + "2019-10-02 00:00:00: Portfolio Value - 5648049.62\n", + "2019-10-03 00:00:00: Portfolio Value - 5708212.87\n", + "2019-10-04 00:00:00: Portfolio Value - 5843932.78\n", + "2019-10-07 00:00:00: Portfolio Value - 5842293.67\n", + "2019-10-08 00:00:00: Portfolio Value - 5728787.31\n", + "2019-10-09 00:00:00: Portfolio Value - 5802493.08\n", + "2019-10-10 00:00:00: Portfolio Value - 5804205.96\n", + "2019-10-11 00:00:00: Portfolio Value - 5768493.60\n", + "2019-10-14 00:00:00: Portfolio Value - 5720030.54\n", + "2019-10-15 00:00:00: Portfolio Value - 5748356.57\n", + "2019-10-16 00:00:00: Portfolio Value - 5764546.54\n", + "2019-10-17 00:00:00: Portfolio Value - 5792653.12\n", + "2019-10-18 00:00:00: Portfolio Value - 5787985.83\n", + "2019-10-21 00:00:00: Portfolio Value - 5767999.15\n", + "2019-10-22 00:00:00: Portfolio Value - 5648479.79\n", + "2019-10-23 00:00:00: Portfolio Value - 5650691.86\n", + "2019-10-24 00:00:00: Portfolio Value - 5671320.16\n", + "2019-10-25 00:00:00: Portfolio Value - 5712565.54\n", + "2019-10-28 00:00:00: Portfolio Value - 5701318.44\n", + "2019-10-29 00:00:00: Portfolio Value - 5802859.84\n", + "2019-10-30 00:00:00: Portfolio Value - 5886040.67\n", + "2019-10-31 00:00:00: Portfolio Value - 5795641.89\n", + "2019-11-01 00:00:00: Portfolio Value - 5790682.40\n", + "2019-11-04 00:00:00: Portfolio Value - 5702698.87\n", + "2019-11-05 00:00:00: Portfolio Value - 5524336.60\n", + "2019-11-06 00:00:00: Portfolio Value - 5595402.64\n", + "2019-11-07 00:00:00: Portfolio Value - 5528381.73\n", + "2019-11-08 00:00:00: Portfolio Value - 5517652.98\n", + "2019-11-11 00:00:00: Portfolio Value - 5503570.15\n", + "2019-11-12 00:00:00: Portfolio Value - 5500745.00\n", + "2019-11-13 00:00:00: Portfolio Value - 5586402.33\n", + "2019-11-14 00:00:00: Portfolio Value - 5637781.29\n", + "2019-11-15 00:00:00: Portfolio Value - 5623441.78\n", + "2019-11-18 00:00:00: Portfolio Value - 5620895.31\n", + "2019-11-19 00:00:00: Portfolio Value - 5695411.99\n", + "2019-11-20 00:00:00: Portfolio Value - 5721285.12\n", + "2019-11-21 00:00:00: Portfolio Value - 5674597.07\n", + "2019-11-22 00:00:00: Portfolio Value - 5668460.49\n", + "2019-11-25 00:00:00: Portfolio Value - 5691855.54\n", + "2019-11-26 00:00:00: Portfolio Value - 5795611.94\n", + "2019-11-27 00:00:00: Portfolio Value - 5874669.15\n", + "2019-11-29 00:00:00: Portfolio Value - 5842308.12\n", + "2019-12-02 00:00:00: Portfolio Value - 5793278.49\n", + "2019-12-03 00:00:00: Portfolio Value - 5747170.57\n", + "2019-12-04 00:00:00: Portfolio Value - 5787198.66\n", + "2019-12-05 00:00:00: Portfolio Value - 5817490.88\n", + "2019-12-06 00:00:00: Portfolio Value - 5810300.73\n", + "2019-12-09 00:00:00: Portfolio Value - 5811144.51\n", + "2019-12-10 00:00:00: Portfolio Value - 5797277.79\n", + "2019-12-11 00:00:00: Portfolio Value - 5844340.67\n", + "2019-12-12 00:00:00: Portfolio Value - 5895044.59\n", + "2019-12-13 00:00:00: Portfolio Value - 5992945.64\n", + "2019-12-16 00:00:00: Portfolio Value - 6026989.66\n", + "2019-12-17 00:00:00: Portfolio Value - 6001355.98\n", + "2019-12-18 00:00:00: Portfolio Value - 6013926.57\n", + "2019-12-19 00:00:00: Portfolio Value - 6091128.82\n", + "2019-12-20 00:00:00: Portfolio Value - 6188203.02\n", + "2019-12-23 00:00:00: Portfolio Value - 6151690.00\n", + "2019-12-24 00:00:00: Portfolio Value - 6161196.15\n", + "2019-12-26 00:00:00: Portfolio Value - 6158785.24\n", + "2019-12-27 00:00:00: Portfolio Value - 6193239.71\n", + "2019-12-30 00:00:00: Portfolio Value - 6157360.85\n", + "2019-12-31 00:00:00: Portfolio Value - 6182807.66\n", + "2020-01-02 00:00:00: Portfolio Value - 6227131.12\n", + "2020-01-03 00:00:00: Portfolio Value - 6251926.88\n", + "2020-01-06 00:00:00: Portfolio Value - 6303955.54\n", + "2020-01-07 00:00:00: Portfolio Value - 6262514.02\n", + "2020-01-08 00:00:00: Portfolio Value - 6286934.55\n", + "2020-01-09 00:00:00: Portfolio Value - 6330795.60\n", + "2020-01-10 00:00:00: Portfolio Value - 6348962.99\n", + "2020-01-13 00:00:00: Portfolio Value - 6394499.49\n", + "2020-01-14 00:00:00: Portfolio Value - 6355114.93\n", + "2020-01-15 00:00:00: Portfolio Value - 6437750.83\n", + "2020-01-16 00:00:00: Portfolio Value - 6476264.67\n", + "2020-01-17 00:00:00: Portfolio Value - 6495828.01\n", + "2020-01-21 00:00:00: Portfolio Value - 6538311.98\n", + "2020-01-22 00:00:00: Portfolio Value - 6565924.34\n", + "2020-01-23 00:00:00: Portfolio Value - 6578352.65\n", + "2020-01-24 00:00:00: Portfolio Value - 6593368.69\n", + "2020-01-27 00:00:00: Portfolio Value - 6586757.11\n", + "2020-01-28 00:00:00: Portfolio Value - 6650224.34\n", + "2020-01-29 00:00:00: Portfolio Value - 6651513.59\n", + "2020-01-30 00:00:00: Portfolio Value - 6684157.35\n", + "2020-01-31 00:00:00: Portfolio Value - 6597759.80\n", + "2020-02-03 00:00:00: Portfolio Value - 6721423.59\n", + "2020-02-04 00:00:00: Portfolio Value - 6885948.10\n", + "2020-02-05 00:00:00: Portfolio Value - 6877304.90\n", + "2020-02-06 00:00:00: Portfolio Value - 6646764.82\n", + "2020-02-07 00:00:00: Portfolio Value - 6635153.77\n", + "2020-02-10 00:00:00: Portfolio Value - 6737757.29\n", + "2020-02-11 00:00:00: Portfolio Value - 6735141.73\n", + "2020-02-12 00:00:00: Portfolio Value - 6691867.08\n", + "2020-02-13 00:00:00: Portfolio Value - 6786149.71\n", + "2020-02-14 00:00:00: Portfolio Value - 6882054.65\n", + "2020-02-18 00:00:00: Portfolio Value - 6912569.37\n", + "2020-02-19 00:00:00: Portfolio Value - 6870794.61\n", + "2020-02-20 00:00:00: Portfolio Value - 6813039.25\n", + "2020-02-21 00:00:00: Portfolio Value - 6800358.61\n", + "2020-02-24 00:00:00: Portfolio Value - 6696790.80\n", + "2020-02-25 00:00:00: Portfolio Value - 6539554.46\n", + "2020-02-26 00:00:00: Portfolio Value - 6577320.38\n", + "2020-02-27 00:00:00: Portfolio Value - 6331059.61\n", + "2020-02-28 00:00:00: Portfolio Value - 6125117.81\n", + "2020-03-02 00:00:00: Portfolio Value - 6593239.08\n", + "2020-03-03 00:00:00: Portfolio Value - 6437072.84\n", + "2020-03-04 00:00:00: Portfolio Value - 6803218.51\n", + "2020-03-05 00:00:00: Portfolio Value - 6666709.57\n", + "2020-03-06 00:00:00: Portfolio Value - 6548240.39\n", + "2020-03-09 00:00:00: Portfolio Value - 6154211.10\n", + "2020-03-10 00:00:00: Portfolio Value - 6378432.31\n", + "2020-03-11 00:00:00: Portfolio Value - 6155541.71\n", + "2020-03-12 00:00:00: Portfolio Value - 5518139.34\n", + "2020-03-13 00:00:00: Portfolio Value - 5891843.84\n", + "2020-03-16 00:00:00: Portfolio Value - 5393966.59\n", + "2020-03-17 00:00:00: Portfolio Value - 6213632.30\n", + "2020-03-18 00:00:00: Portfolio Value - 5735144.43\n", + "2020-03-19 00:00:00: Portfolio Value - 5385677.95\n", + "2020-03-20 00:00:00: Portfolio Value - 4999383.46\n", + "2020-03-23 00:00:00: Portfolio Value - 4730841.69\n", + "2020-03-24 00:00:00: Portfolio Value - 5211686.26\n", + "2020-03-25 00:00:00: Portfolio Value - 5233816.58\n", + "2020-03-26 00:00:00: Portfolio Value - 5603810.94\n", + "2020-03-27 00:00:00: Portfolio Value - 5566190.71\n", + "2020-03-30 00:00:00: Portfolio Value - 5860949.48\n", + "2020-03-31 00:00:00: Portfolio Value - 5727196.92\n", + "2020-04-01 00:00:00: Portfolio Value - 5513878.72\n", + "2020-04-02 00:00:00: Portfolio Value - 5719776.73\n", + "2020-04-03 00:00:00: Portfolio Value - 5655847.84\n", + "2020-04-06 00:00:00: Portfolio Value - 6025830.08\n", + "2020-04-07 00:00:00: Portfolio Value - 5985109.77\n", + "2020-04-08 00:00:00: Portfolio Value - 6175152.51\n", + "2020-04-09 00:00:00: Portfolio Value - 6273375.91\n", + "2020-04-13 00:00:00: Portfolio Value - 6140805.57\n", + "2020-04-14 00:00:00: Portfolio Value - 6454325.32\n", + "2020-04-15 00:00:00: Portfolio Value - 6315741.43\n", + "2020-04-16 00:00:00: Portfolio Value - 6431619.83\n", + "2020-04-17 00:00:00: Portfolio Value - 6567132.92\n", + "2020-04-20 00:00:00: Portfolio Value - 6459132.54\n", + "2020-04-21 00:00:00: Portfolio Value - 6231407.98\n", + "2020-04-22 00:00:00: Portfolio Value - 6428278.61\n", + "2020-04-23 00:00:00: Portfolio Value - 6267444.27\n", + "2020-04-24 00:00:00: Portfolio Value - 6339129.73\n", + "2020-04-27 00:00:00: Portfolio Value - 6369048.68\n", + "2020-04-28 00:00:00: Portfolio Value - 6227613.61\n", + "2020-04-29 00:00:00: Portfolio Value - 6200423.54\n", + "2020-04-30 00:00:00: Portfolio Value - 6155313.05\n", + "2020-05-01 00:00:00: Portfolio Value - 6229670.95\n", + "2020-05-04 00:00:00: Portfolio Value - 6314164.91\n", + "2020-05-05 00:00:00: Portfolio Value - 6518354.25\n", + "2020-05-06 00:00:00: Portfolio Value - 6433756.55\n", + "2020-05-07 00:00:00: Portfolio Value - 6527211.43\n", + "2020-05-08 00:00:00: Portfolio Value - 6574154.68\n", + "2020-05-11 00:00:00: Portfolio Value - 6706679.71\n", + "2020-05-12 00:00:00: Portfolio Value - 6669600.62\n", + "2020-05-13 00:00:00: Portfolio Value - 6596410.54\n", + "2020-05-14 00:00:00: Portfolio Value - 6648349.30\n", + "2020-05-15 00:00:00: Portfolio Value - 6687134.94\n", + "2020-05-18 00:00:00: Portfolio Value - 6805834.80\n", + "2020-05-19 00:00:00: Portfolio Value - 6750675.13\n", + "2020-05-20 00:00:00: Portfolio Value - 6636359.62\n", + "2020-05-21 00:00:00: Portfolio Value - 6531011.44\n", + "2020-05-22 00:00:00: Portfolio Value - 6565397.75\n", + "2020-05-26 00:00:00: Portfolio Value - 6509952.69\n", + "2020-05-27 00:00:00: Portfolio Value - 6508650.54\n", + "2020-05-28 00:00:00: Portfolio Value - 6732746.59\n", + "2020-05-29 00:00:00: Portfolio Value - 6813751.96\n", + "2020-06-01 00:00:00: Portfolio Value - 6805186.34\n", + "2020-06-02 00:00:00: Portfolio Value - 6827665.08\n", + "2020-06-03 00:00:00: Portfolio Value - 6875103.84\n", + "2020-06-04 00:00:00: Portfolio Value - 6780333.77\n", + "2020-06-05 00:00:00: Portfolio Value - 6783518.58\n", + "2020-06-08 00:00:00: Portfolio Value - 6863295.02\n", + "2020-06-09 00:00:00: Portfolio Value - 6790219.95\n", + "2020-06-10 00:00:00: Portfolio Value - 6856929.28\n", + "2020-06-11 00:00:00: Portfolio Value - 6550908.81\n", + "2020-06-12 00:00:00: Portfolio Value - 6552066.18\n", + "2020-06-15 00:00:00: Portfolio Value - 6643805.37\n", + "2020-06-16 00:00:00: Portfolio Value - 6756760.70\n", + "2020-06-17 00:00:00: Portfolio Value - 6887861.53\n", + "2020-06-18 00:00:00: Portfolio Value - 6950191.36\n", + "2020-06-19 00:00:00: Portfolio Value - 6809607.66\n", + "2020-06-22 00:00:00: Portfolio Value - 6903850.19\n", + "2020-06-23 00:00:00: Portfolio Value - 6933890.79\n", + "2020-06-24 00:00:00: Portfolio Value - 6820279.33\n", + "2020-06-25 00:00:00: Portfolio Value - 6919371.79\n", + "2020-06-26 00:00:00: Portfolio Value - 6918367.56\n", + "2020-06-29 00:00:00: Portfolio Value - 6984945.74\n", + "2020-06-30 00:00:00: Portfolio Value - 7138944.62\n", + "2020-07-01 00:00:00: Portfolio Value - 7162753.64\n", + "2020-07-02 00:00:00: Portfolio Value - 7171517.11\n", + "2020-07-06 00:00:00: Portfolio Value - 7111633.33\n", + "2020-07-07 00:00:00: Portfolio Value - 7124933.26\n", + "2020-07-08 00:00:00: Portfolio Value - 7204876.37\n", + "2020-07-09 00:00:00: Portfolio Value - 7293285.56\n", + "2020-07-10 00:00:00: Portfolio Value - 7346515.43\n", + "2020-07-13 00:00:00: Portfolio Value - 7232231.62\n", + "2020-07-14 00:00:00: Portfolio Value - 7419617.69\n", + "2020-07-15 00:00:00: Portfolio Value - 7424024.04\n", + "2020-07-16 00:00:00: Portfolio Value - 7421974.59\n", + "2020-07-17 00:00:00: Portfolio Value - 7505227.38\n", + "2020-07-20 00:00:00: Portfolio Value - 7575123.85\n", + "2020-07-21 00:00:00: Portfolio Value - 7605179.52\n", + "2020-07-22 00:00:00: Portfolio Value - 7683445.08\n", + "2020-07-23 00:00:00: Portfolio Value - 7680330.46\n", + "2020-07-24 00:00:00: Portfolio Value - 7649594.30\n", + "2020-07-27 00:00:00: Portfolio Value - 7710814.52\n", + "2020-07-28 00:00:00: Portfolio Value - 7742610.60\n", + "2020-07-29 00:00:00: Portfolio Value - 7888067.59\n", + "2020-07-30 00:00:00: Portfolio Value - 7886926.49\n", + "2020-07-31 00:00:00: Portfolio Value - 8049803.13\n", + "2020-08-03 00:00:00: Portfolio Value - 8017152.91\n", + "2020-08-04 00:00:00: Portfolio Value - 8006448.52\n", + "2020-08-05 00:00:00: Portfolio Value - 8039265.66\n", + "2020-08-06 00:00:00: Portfolio Value - 7671194.21\n", + "2020-08-07 00:00:00: Portfolio Value - 7708484.96\n", + "2020-08-10 00:00:00: Portfolio Value - 7645700.77\n", + "2020-08-11 00:00:00: Portfolio Value - 7524305.09\n", + "2020-08-12 00:00:00: Portfolio Value - 7605855.93\n", + "2020-08-13 00:00:00: Portfolio Value - 7666015.86\n", + "2020-08-14 00:00:00: Portfolio Value - 7632145.66\n", + "2020-08-17 00:00:00: Portfolio Value - 7677907.82\n", + "2020-08-18 00:00:00: Portfolio Value - 7730957.95\n", + "2020-08-19 00:00:00: Portfolio Value - 7716369.46\n", + "2020-08-20 00:00:00: Portfolio Value - 7667147.26\n", + "2020-08-21 00:00:00: Portfolio Value - 7562703.03\n", + "2020-08-24 00:00:00: Portfolio Value - 7472192.86\n", + "2020-08-25 00:00:00: Portfolio Value - 7492142.05\n", + "2020-08-26 00:00:00: Portfolio Value - 7519228.63\n", + "2020-08-27 00:00:00: Portfolio Value - 7513401.64\n", + "2020-08-28 00:00:00: Portfolio Value - 7438934.52\n", + "2020-08-31 00:00:00: Portfolio Value - 7494515.33\n", + "2020-09-01 00:00:00: Portfolio Value - 7473689.77\n", + "2020-09-02 00:00:00: Portfolio Value - 7709920.85\n", + "2020-09-03 00:00:00: Portfolio Value - 7376918.22\n", + "2020-09-04 00:00:00: Portfolio Value - 7214897.56\n", + "2020-09-08 00:00:00: Portfolio Value - 7090304.63\n", + "2020-09-09 00:00:00: Portfolio Value - 7306173.97\n", + "2020-09-10 00:00:00: Portfolio Value - 7200738.21\n", + "2020-09-11 00:00:00: Portfolio Value - 7200834.13\n", + "2020-09-14 00:00:00: Portfolio Value - 7302100.83\n", + "2020-09-15 00:00:00: Portfolio Value - 7242791.10\n", + "2020-09-16 00:00:00: Portfolio Value - 7192682.19\n", + "2020-09-17 00:00:00: Portfolio Value - 7179985.28\n", + "2020-09-18 00:00:00: Portfolio Value - 7151668.10\n", + "2020-09-21 00:00:00: Portfolio Value - 7110401.64\n", + "2020-09-22 00:00:00: Portfolio Value - 7177568.08\n", + "2020-09-23 00:00:00: Portfolio Value - 7104819.01\n", + "2020-09-24 00:00:00: Portfolio Value - 7037408.05\n", + "2020-09-25 00:00:00: Portfolio Value - 7137663.14\n", + "2020-09-28 00:00:00: Portfolio Value - 7255177.22\n", + "2020-09-29 00:00:00: Portfolio Value - 7265952.35\n", + "2020-09-30 00:00:00: Portfolio Value - 7350709.82\n", + "2020-10-01 00:00:00: Portfolio Value - 7403229.35\n", + "2020-10-02 00:00:00: Portfolio Value - 7317611.73\n", + "2020-10-05 00:00:00: Portfolio Value - 7367566.76\n", + "2020-10-06 00:00:00: Portfolio Value - 7309560.48\n", + "2020-10-07 00:00:00: Portfolio Value - 7380473.08\n", + "2020-10-08 00:00:00: Portfolio Value - 7392043.89\n", + "2020-10-09 00:00:00: Portfolio Value - 7482129.90\n", + "2020-10-12 00:00:00: Portfolio Value - 7557118.61\n", + "2020-10-13 00:00:00: Portfolio Value - 7576838.79\n", + "2020-10-14 00:00:00: Portfolio Value - 7507818.95\n", + "2020-10-15 00:00:00: Portfolio Value - 7561802.11\n", + "2020-10-16 00:00:00: Portfolio Value - 7564081.31\n", + "2020-10-19 00:00:00: Portfolio Value - 7474278.84\n", + "2020-10-20 00:00:00: Portfolio Value - 7465656.95\n", + "2020-10-21 00:00:00: Portfolio Value - 7485854.36\n", + "2020-10-22 00:00:00: Portfolio Value - 7501566.48\n", + "2020-10-23 00:00:00: Portfolio Value - 7529337.44\n", + "2020-10-26 00:00:00: Portfolio Value - 7457676.31\n", + "2020-10-27 00:00:00: Portfolio Value - 7541078.80\n", + "2020-10-28 00:00:00: Portfolio Value - 7269740.61\n", + "2020-10-29 00:00:00: Portfolio Value - 7202734.89\n", + "2020-10-30 00:00:00: Portfolio Value - 7211307.77\n", + "2020-11-02 00:00:00: Portfolio Value - 7380989.17\n", + "2020-11-03 00:00:00: Portfolio Value - 7510479.31\n", + "2020-11-04 00:00:00: Portfolio Value - 7747719.99\n", + "2020-11-05 00:00:00: Portfolio Value - 7798801.39\n", + "2020-11-06 00:00:00: Portfolio Value - 7894225.20\n", + "2020-11-09 00:00:00: Portfolio Value - 7817588.17\n", + "2020-11-10 00:00:00: Portfolio Value - 7782920.75\n", + "2020-11-11 00:00:00: Portfolio Value - 7928170.47\n", + "2020-11-12 00:00:00: Portfolio Value - 7880107.94\n", + "2020-11-13 00:00:00: Portfolio Value - 7981951.50\n", + "2020-11-16 00:00:00: Portfolio Value - 8052553.42\n", + "2020-11-17 00:00:00: Portfolio Value - 7992529.93\n", + "2020-11-18 00:00:00: Portfolio Value - 7824858.97\n", + "2020-11-19 00:00:00: Portfolio Value - 7838663.26\n", + "2020-11-20 00:00:00: Portfolio Value - 7775111.14\n", + "2020-11-23 00:00:00: Portfolio Value - 7748694.29\n", + "2020-11-24 00:00:00: Portfolio Value - 7713284.66\n", + "2020-11-25 00:00:00: Portfolio Value - 7742220.90\n", + "2020-11-27 00:00:00: Portfolio Value - 7796352.22\n", + "2020-11-30 00:00:00: Portfolio Value - 7823651.16\n", + "2020-12-01 00:00:00: Portfolio Value - 7944879.42\n", + "2020-12-02 00:00:00: Portfolio Value - 7862740.41\n", + "2020-12-03 00:00:00: Portfolio Value - 7799418.41\n", + "2020-12-04 00:00:00: Portfolio Value - 7905071.78\n", + "2020-12-07 00:00:00: Portfolio Value - 7825438.39\n", + "2020-12-08 00:00:00: Portfolio Value - 7910498.00\n", + "2020-12-09 00:00:00: Portfolio Value - 7838141.53\n", + "2020-12-10 00:00:00: Portfolio Value - 7849529.56\n", + "2020-12-11 00:00:00: Portfolio Value - 7863786.17\n", + "2020-12-14 00:00:00: Portfolio Value - 7851404.61\n", + "2020-12-15 00:00:00: Portfolio Value - 8000430.85\n", + "2020-12-16 00:00:00: Portfolio Value - 8068977.11\n", + "2020-12-17 00:00:00: Portfolio Value - 8109832.22\n", + "2020-12-18 00:00:00: Portfolio Value - 8186171.03\n", + "2020-12-21 00:00:00: Portfolio Value - 8053473.02\n", + "2020-12-22 00:00:00: Portfolio Value - 8055976.80\n", + "2020-12-23 00:00:00: Portfolio Value - 7982188.90\n", + "2020-12-24 00:00:00: Portfolio Value - 8057507.71\n", + "2020-12-28 00:00:00: Portfolio Value - 8061551.05\n", + "2020-12-29 00:00:00: Portfolio Value - 8017165.04\n", + "2020-12-30 00:00:00: Portfolio Value - 7987488.76\n", + "2020-12-31 00:00:00: Portfolio Value - 8090549.87\n", + "2021-01-04 00:00:00: Portfolio Value - 7937026.30\n", + "2021-01-05 00:00:00: Portfolio Value - 7912541.38\n", + "2021-01-06 00:00:00: Portfolio Value - 7873609.40\n", + "2021-01-07 00:00:00: Portfolio Value - 7893304.58\n", + "2021-01-08 00:00:00: Portfolio Value - 7909593.26\n", + "2021-01-11 00:00:00: Portfolio Value - 7815494.61\n", + "2021-01-12 00:00:00: Portfolio Value - 7815074.40\n", + "2021-01-13 00:00:00: Portfolio Value - 7860703.11\n", + "2021-01-14 00:00:00: Portfolio Value - 7711372.90\n", + "2021-01-15 00:00:00: Portfolio Value - 7773878.65\n", + "2021-01-19 00:00:00: Portfolio Value - 7787669.31\n", + "2021-01-20 00:00:00: Portfolio Value - 7903819.05\n", + "2021-01-21 00:00:00: Portfolio Value - 7859561.54\n", + "2021-01-22 00:00:00: Portfolio Value - 7800465.98\n", + "2021-01-25 00:00:00: Portfolio Value - 7954994.41\n", + "2021-01-26 00:00:00: Portfolio Value - 7955257.07\n", + "2021-01-27 00:00:00: Portfolio Value - 7808203.97\n", + "2021-01-28 00:00:00: Portfolio Value - 7855613.19\n", + "2021-01-29 00:00:00: Portfolio Value - 7749606.20\n", + "2021-02-01 00:00:00: Portfolio Value - 7823460.00\n", + "2021-02-02 00:00:00: Portfolio Value - 7853066.33\n", + "2021-02-03 00:00:00: Portfolio Value - 7682744.09\n", + "2021-02-04 00:00:00: Portfolio Value - 7701661.04\n", + "2021-02-05 00:00:00: Portfolio Value - 7843215.99\n", + "2021-02-08 00:00:00: Portfolio Value - 7816028.29\n", + "2021-02-09 00:00:00: Portfolio Value - 7820614.72\n", + "2021-02-10 00:00:00: Portfolio Value - 7885438.07\n", + "2021-02-11 00:00:00: Portfolio Value - 7860438.04\n", + "2021-02-12 00:00:00: Portfolio Value - 7841617.65\n", + "2021-02-16 00:00:00: Portfolio Value - 7702272.12\n", + "2021-02-17 00:00:00: Portfolio Value - 7756908.89\n", + "2021-02-18 00:00:00: Portfolio Value - 7782356.83\n", + "2021-02-19 00:00:00: Portfolio Value - 7670444.32\n", + "2021-02-22 00:00:00: Portfolio Value - 7565647.88\n", + "2021-02-23 00:00:00: Portfolio Value - 7551098.49\n", + "2021-02-24 00:00:00: Portfolio Value - 7322943.62\n", + "2021-02-25 00:00:00: Portfolio Value - 7182364.91\n", + "2021-02-26 00:00:00: Portfolio Value - 7102254.86\n", + "2021-03-01 00:00:00: Portfolio Value - 7244726.25\n", + "2021-03-02 00:00:00: Portfolio Value - 7170742.45\n", + "2021-03-03 00:00:00: Portfolio Value - 7045023.19\n", + "2021-03-04 00:00:00: Portfolio Value - 6928484.97\n", + "2021-03-05 00:00:00: Portfolio Value - 7155663.98\n", + "2021-03-08 00:00:00: Portfolio Value - 7126247.08\n", + "2021-03-09 00:00:00: Portfolio Value - 7227717.56\n", + "2021-03-10 00:00:00: Portfolio Value - 7181131.10\n", + "2021-03-11 00:00:00: Portfolio Value - 7193492.52\n", + "2021-03-12 00:00:00: Portfolio Value - 7225119.18\n", + "2021-03-15 00:00:00: Portfolio Value - 7266732.67\n", + "2021-03-16 00:00:00: Portfolio Value - 7325276.38\n", + "2021-03-17 00:00:00: Portfolio Value - 7291496.01\n", + "2021-03-18 00:00:00: Portfolio Value - 7134020.54\n", + "2021-03-19 00:00:00: Portfolio Value - 7136773.38\n", + "2021-03-22 00:00:00: Portfolio Value - 7279356.78\n", + "2021-03-23 00:00:00: Portfolio Value - 7326611.13\n", + "2021-03-24 00:00:00: Portfolio Value - 7351614.18\n", + "2021-03-25 00:00:00: Portfolio Value - 7290571.60\n", + "2021-03-26 00:00:00: Portfolio Value - 7451958.75\n", + "2021-03-29 00:00:00: Portfolio Value - 7551287.36\n", + "2021-03-30 00:00:00: Portfolio Value - 7411083.86\n", + "2021-03-31 00:00:00: Portfolio Value - 7445893.68\n", + "2021-04-01 00:00:00: Portfolio Value - 7530660.05\n", + "2021-04-05 00:00:00: Portfolio Value - 7643581.23\n", + "2021-04-06 00:00:00: Portfolio Value - 7656181.54\n", + "2021-04-07 00:00:00: Portfolio Value - 7655105.33\n", + "2021-04-08 00:00:00: Portfolio Value - 7675579.92\n", + "2021-04-09 00:00:00: Portfolio Value - 7726538.16\n", + "2021-04-12 00:00:00: Portfolio Value - 7768789.58\n", + "2021-04-13 00:00:00: Portfolio Value - 7819323.51\n", + "2021-04-14 00:00:00: Portfolio Value - 7743080.88\n", + "2021-04-15 00:00:00: Portfolio Value - 7860807.00\n", + "2021-04-16 00:00:00: Portfolio Value - 7908605.18\n", + "2021-04-19 00:00:00: Portfolio Value - 7849065.30\n", + "2021-04-20 00:00:00: Portfolio Value - 7882103.94\n", + "2021-04-21 00:00:00: Portfolio Value - 7915596.59\n", + "2021-04-22 00:00:00: Portfolio Value - 7923723.46\n", + "2021-04-23 00:00:00: Portfolio Value - 7888558.57\n", + "2021-04-26 00:00:00: Portfolio Value - 7840982.13\n", + "2021-04-27 00:00:00: Portfolio Value - 7911949.63\n", + "2021-04-28 00:00:00: Portfolio Value - 7948615.02\n", + "2021-04-29 00:00:00: Portfolio Value - 7935780.13\n", + "2021-04-30 00:00:00: Portfolio Value - 7865704.53\n", + "2021-05-03 00:00:00: Portfolio Value - 7924167.54\n", + "2021-05-04 00:00:00: Portfolio Value - 7876085.40\n", + "2021-05-05 00:00:00: Portfolio Value - 7769544.81\n", + "2021-05-06 00:00:00: Portfolio Value - 7732236.97\n", + "2021-05-07 00:00:00: Portfolio Value - 7818521.37\n", + "2021-05-10 00:00:00: Portfolio Value - 7883264.27\n", + "2021-05-11 00:00:00: Portfolio Value - 7811482.10\n", + "2021-05-12 00:00:00: Portfolio Value - 7666538.77\n", + "2021-05-13 00:00:00: Portfolio Value - 7737645.75\n", + "2021-05-14 00:00:00: Portfolio Value - 7742537.50\n", + "2021-05-17 00:00:00: Portfolio Value - 7667227.06\n", + "2021-05-18 00:00:00: Portfolio Value - 7642592.41\n", + "2021-05-19 00:00:00: Portfolio Value - 7646769.20\n", + "2021-05-20 00:00:00: Portfolio Value - 7761440.55\n", + "2021-05-21 00:00:00: Portfolio Value - 7742077.48\n", + "2021-05-24 00:00:00: Portfolio Value - 7798547.58\n", + "2021-05-25 00:00:00: Portfolio Value - 7750623.12\n", + "2021-05-26 00:00:00: Portfolio Value - 7699469.41\n", + "2021-05-27 00:00:00: Portfolio Value - 7663591.10\n", + "2021-05-28 00:00:00: Portfolio Value - 7655721.18\n", + "2021-06-01 00:00:00: Portfolio Value - 7570068.66\n", + "2021-06-02 00:00:00: Portfolio Value - 7565697.05\n", + "2021-06-03 00:00:00: Portfolio Value - 7560039.09\n", + "2021-06-04 00:00:00: Portfolio Value - 7601147.30\n", + "2021-06-07 00:00:00: Portfolio Value - 7569393.23\n", + "2021-06-08 00:00:00: Portfolio Value - 7531136.86\n", + "2021-06-09 00:00:00: Portfolio Value - 7610510.84\n", + "2021-06-10 00:00:00: Portfolio Value - 7747921.07\n", + "2021-06-11 00:00:00: Portfolio Value - 7720289.20\n", + "2021-06-14 00:00:00: Portfolio Value - 7845793.80\n", + "2021-06-15 00:00:00: Portfolio Value - 7880362.99\n", + "2021-06-16 00:00:00: Portfolio Value - 7724440.46\n", + "2021-06-17 00:00:00: Portfolio Value - 7833791.64\n", + "2021-06-18 00:00:00: Portfolio Value - 7726404.59\n", + "2021-06-21 00:00:00: Portfolio Value - 7822535.61\n", + "2021-06-22 00:00:00: Portfolio Value - 7880780.91\n", + "2021-06-23 00:00:00: Portfolio Value - 7839435.73\n", + "2021-06-24 00:00:00: Portfolio Value - 7860718.17\n", + "2021-06-25 00:00:00: Portfolio Value - 7923593.95\n", + "2021-06-28 00:00:00: Portfolio Value - 7951573.36\n", + "2021-06-29 00:00:00: Portfolio Value - 7971054.24\n", + "2021-06-30 00:00:00: Portfolio Value - 7905955.34\n", + "2021-07-01 00:00:00: Portfolio Value - 7956160.98\n", + "2021-07-02 00:00:00: Portfolio Value - 8005367.74\n", + "2021-07-06 00:00:00: Portfolio Value - 8023705.31\n", + "2021-07-07 00:00:00: Portfolio Value - 8160095.76\n", + "2021-07-08 00:00:00: Portfolio Value - 8083441.81\n", + "2021-07-09 00:00:00: Portfolio Value - 8076638.54\n", + "2021-07-12 00:00:00: Portfolio Value - 8037961.51\n", + "2021-07-13 00:00:00: Portfolio Value - 8023307.26\n", + "2021-07-14 00:00:00: Portfolio Value - 8008937.61\n", + "2021-07-15 00:00:00: Portfolio Value - 8050310.78\n", + "2021-07-16 00:00:00: Portfolio Value - 8213647.00\n", + "2021-07-19 00:00:00: Portfolio Value - 8092470.72\n", + "2021-07-20 00:00:00: Portfolio Value - 8112452.54\n", + "2021-07-21 00:00:00: Portfolio Value - 8123249.80\n", + "2021-07-22 00:00:00: Portfolio Value - 8201873.32\n", + "2021-07-23 00:00:00: Portfolio Value - 8328067.15\n", + "2021-07-26 00:00:00: Portfolio Value - 8120996.06\n", + "2021-07-27 00:00:00: Portfolio Value - 8191221.71\n", + "2021-07-28 00:00:00: Portfolio Value - 8130375.39\n", + "2021-07-29 00:00:00: Portfolio Value - 8205941.26\n", + "2021-07-30 00:00:00: Portfolio Value - 8212888.36\n", + "2021-08-02 00:00:00: Portfolio Value - 8198461.11\n", + "2021-08-03 00:00:00: Portfolio Value - 8041618.76\n", + "2021-08-04 00:00:00: Portfolio Value - 7969804.66\n", + "2021-08-05 00:00:00: Portfolio Value - 7875545.21\n", + "2021-08-06 00:00:00: Portfolio Value - 7841472.02\n", + "2021-08-09 00:00:00: Portfolio Value - 7836101.02\n", + "2021-08-10 00:00:00: Portfolio Value - 7761349.11\n", + "2021-08-11 00:00:00: Portfolio Value - 7813889.20\n", + "2021-08-12 00:00:00: Portfolio Value - 7828699.61\n", + "2021-08-13 00:00:00: Portfolio Value - 7824384.35\n", + "2021-08-16 00:00:00: Portfolio Value - 7949918.50\n", + "2021-08-17 00:00:00: Portfolio Value - 7993732.26\n", + "2021-08-18 00:00:00: Portfolio Value - 7897557.75\n", + "2021-08-19 00:00:00: Portfolio Value - 8013853.68\n", + "2021-08-20 00:00:00: Portfolio Value - 8056838.52\n", + "2021-08-23 00:00:00: Portfolio Value - 8031815.13\n", + "2021-08-24 00:00:00: Portfolio Value - 7950608.74\n", + "2021-08-25 00:00:00: Portfolio Value - 7905183.10\n", + "2021-08-26 00:00:00: Portfolio Value - 7899040.39\n", + "2021-08-27 00:00:00: Portfolio Value - 7973225.91\n", + "2021-08-30 00:00:00: Portfolio Value - 8014914.33\n", + "2021-08-31 00:00:00: Portfolio Value - 8065926.01\n", + "2021-09-01 00:00:00: Portfolio Value - 8131538.44\n", + "2021-09-02 00:00:00: Portfolio Value - 8323655.90\n", + "2021-09-03 00:00:00: Portfolio Value - 8350283.26\n", + "2021-09-07 00:00:00: Portfolio Value - 8356793.33\n", + "2021-09-08 00:00:00: Portfolio Value - 8497210.92\n", + "2021-09-09 00:00:00: Portfolio Value - 8498364.46\n", + "2021-09-10 00:00:00: Portfolio Value - 8530031.29\n", + "2021-09-13 00:00:00: Portfolio Value - 8490866.64\n", + "2021-09-14 00:00:00: Portfolio Value - 8481409.89\n", + "2021-09-15 00:00:00: Portfolio Value - 8489844.66\n", + "2021-09-16 00:00:00: Portfolio Value - 8407319.38\n", + "2021-09-17 00:00:00: Portfolio Value - 8344521.58\n", + "2021-09-20 00:00:00: Portfolio Value - 8305948.68\n", + "2021-09-21 00:00:00: Portfolio Value - 8359539.71\n", + "2021-09-22 00:00:00: Portfolio Value - 8382486.19\n", + "2021-09-23 00:00:00: Portfolio Value - 8353449.94\n", + "2021-09-24 00:00:00: Portfolio Value - 8390008.03\n", + "2021-09-27 00:00:00: Portfolio Value - 8259581.61\n", + "2021-09-28 00:00:00: Portfolio Value - 8123702.39\n", + "2021-09-29 00:00:00: Portfolio Value - 8197483.30\n", + "2021-09-30 00:00:00: Portfolio Value - 8161660.83\n", + "2021-10-01 00:00:00: Portfolio Value - 8224090.57\n", + "2021-10-04 00:00:00: Portfolio Value - 8077591.57\n", + "2021-10-05 00:00:00: Portfolio Value - 8154088.54\n", + "2021-10-06 00:00:00: Portfolio Value - 8248024.45\n", + "2021-10-07 00:00:00: Portfolio Value - 8242706.04\n", + "2021-10-08 00:00:00: Portfolio Value - 8222832.97\n", + "2021-10-11 00:00:00: Portfolio Value - 8155507.60\n", + "2021-10-12 00:00:00: Portfolio Value - 8204437.24\n", + "2021-10-13 00:00:00: Portfolio Value - 8238897.71\n", + "2021-10-14 00:00:00: Portfolio Value - 8345599.23\n", + "2021-10-15 00:00:00: Portfolio Value - 8317735.05\n", + "2021-10-18 00:00:00: Portfolio Value - 8243658.74\n", + "2021-10-19 00:00:00: Portfolio Value - 8406918.50\n", + "2021-10-20 00:00:00: Portfolio Value - 8442276.30\n", + "2021-10-21 00:00:00: Portfolio Value - 8606174.88\n", + "2021-10-22 00:00:00: Portfolio Value - 8637794.71\n", + "2021-10-25 00:00:00: Portfolio Value - 8557557.85\n", + "2021-10-26 00:00:00: Portfolio Value - 8526545.46\n", + "2021-10-27 00:00:00: Portfolio Value - 8420055.92\n", + "2021-10-28 00:00:00: Portfolio Value - 8449611.84\n", + "2021-10-29 00:00:00: Portfolio Value - 8419366.64\n", + "2021-11-01 00:00:00: Portfolio Value - 8409227.44\n", + "2021-11-02 00:00:00: Portfolio Value - 8359528.22\n", + "2021-11-03 00:00:00: Portfolio Value - 8422491.90\n", + "2021-11-04 00:00:00: Portfolio Value - 8384661.73\n", + "2021-11-05 00:00:00: Portfolio Value - 8350991.58\n", + "2021-11-08 00:00:00: Portfolio Value - 8355852.90\n", + "2021-11-09 00:00:00: Portfolio Value - 8358853.88\n", + "2021-11-10 00:00:00: Portfolio Value - 8340795.90\n", + "2021-11-11 00:00:00: Portfolio Value - 8217916.06\n", + "2021-11-12 00:00:00: Portfolio Value - 8260860.46\n", + "2021-11-15 00:00:00: Portfolio Value - 8363326.98\n", + "2021-11-16 00:00:00: Portfolio Value - 8412717.82\n", + "2021-11-17 00:00:00: Portfolio Value - 8469035.91\n", + "2021-11-18 00:00:00: Portfolio Value - 8369583.96\n", + "2021-11-19 00:00:00: Portfolio Value - 8429971.74\n", + "2021-11-22 00:00:00: Portfolio Value - 8363930.35\n", + "2021-11-23 00:00:00: Portfolio Value - 8347558.40\n", + "2021-11-24 00:00:00: Portfolio Value - 8369118.11\n", + "2021-11-26 00:00:00: Portfolio Value - 8279507.15\n", + "2021-11-29 00:00:00: Portfolio Value - 8342315.20\n", + "2021-11-30 00:00:00: Portfolio Value - 8132853.05\n", + "2021-12-01 00:00:00: Portfolio Value - 8163302.95\n", + "2021-12-02 00:00:00: Portfolio Value - 8292036.75\n", + "2021-12-03 00:00:00: Portfolio Value - 8275619.53\n", + "2021-12-06 00:00:00: Portfolio Value - 8385434.63\n", + "2021-12-07 00:00:00: Portfolio Value - 8436853.37\n", + "2021-12-08 00:00:00: Portfolio Value - 8514834.45\n", + "2021-12-09 00:00:00: Portfolio Value - 8404485.43\n", + "2021-12-10 00:00:00: Portfolio Value - 8438912.14\n", + "2021-12-13 00:00:00: Portfolio Value - 8566023.15\n", + "2021-12-14 00:00:00: Portfolio Value - 8391635.80\n", + "2021-12-15 00:00:00: Portfolio Value - 8510205.87\n", + "2021-12-16 00:00:00: Portfolio Value - 8550597.28\n", + "2021-12-17 00:00:00: Portfolio Value - 8423502.82\n", + "2021-12-20 00:00:00: Portfolio Value - 8402192.92\n", + "2021-12-21 00:00:00: Portfolio Value - 8458274.88\n", + "2021-12-22 00:00:00: Portfolio Value - 8456803.59\n", + "2021-12-23 00:00:00: Portfolio Value - 8461947.60\n", + "2021-12-27 00:00:00: Portfolio Value - 8557018.46\n", + "2021-12-28 00:00:00: Portfolio Value - 8562300.48\n", + "2021-12-29 00:00:00: Portfolio Value - 8565798.41\n", + "2021-12-30 00:00:00: Portfolio Value - 8583903.01\n", + "2021-12-31 00:00:00: Portfolio Value - 8587703.67\n", + "2022-01-03 00:00:00: Portfolio Value - 8466441.56\n", + "2022-01-04 00:00:00: Portfolio Value - 8409368.33\n", + "2022-01-05 00:00:00: Portfolio Value - 8242658.24\n", + "2022-01-06 00:00:00: Portfolio Value - 8198826.04\n", + "2022-01-07 00:00:00: Portfolio Value - 8143115.50\n", + "2022-01-10 00:00:00: Portfolio Value - 8192260.17\n", + "2022-01-11 00:00:00: Portfolio Value - 8225556.38\n", + "2022-01-12 00:00:00: Portfolio Value - 8279227.03\n", + "2022-01-13 00:00:00: Portfolio Value - 8308005.27\n", + "2022-01-14 00:00:00: Portfolio Value - 8257547.83\n", + "2022-01-18 00:00:00: Portfolio Value - 8094016.78\n", + "2022-01-19 00:00:00: Portfolio Value - 8147267.02\n", + "2022-01-20 00:00:00: Portfolio Value - 8130242.76\n", + "2022-01-21 00:00:00: Portfolio Value - 8132544.81\n", + "2022-01-24 00:00:00: Portfolio Value - 8162633.91\n", + "2022-01-25 00:00:00: Portfolio Value - 7976158.37\n", + "2022-01-26 00:00:00: Portfolio Value - 7834166.43\n", + "2022-01-27 00:00:00: Portfolio Value - 7694562.22\n", + "2022-01-28 00:00:00: Portfolio Value - 7834510.74\n", + "2022-01-31 00:00:00: Portfolio Value - 7993857.93\n", + "2022-02-01 00:00:00: Portfolio Value - 7952927.99\n", + "2022-02-02 00:00:00: Portfolio Value - 8104750.50\n", + "2022-02-03 00:00:00: Portfolio Value - 8094265.57\n", + "2022-02-04 00:00:00: Portfolio Value - 7972465.09\n", + "2022-02-07 00:00:00: Portfolio Value - 7954022.84\n", + "2022-02-08 00:00:00: Portfolio Value - 7909381.60\n", + "2022-02-09 00:00:00: Portfolio Value - 8014664.82\n", + "2022-02-10 00:00:00: Portfolio Value - 7830098.52\n", + "2022-02-11 00:00:00: Portfolio Value - 7785437.99\n", + "2022-02-14 00:00:00: Portfolio Value - 7666910.42\n", + "2022-02-15 00:00:00: Portfolio Value - 7705537.90\n", + "2022-02-16 00:00:00: Portfolio Value - 7770418.76\n", + "2022-02-17 00:00:00: Portfolio Value - 7713249.26\n", + "2022-02-18 00:00:00: Portfolio Value - 7726990.06\n", + "2022-02-22 00:00:00: Portfolio Value - 7679006.40\n", + "2022-02-23 00:00:00: Portfolio Value - 7582976.65\n", + "2022-02-24 00:00:00: Portfolio Value - 7685716.51\n", + "2022-02-25 00:00:00: Portfolio Value - 7868051.19\n", + "2022-02-28 00:00:00: Portfolio Value - 7857042.93\n", + "2022-03-01 00:00:00: Portfolio Value - 7891847.49\n", + "2022-03-02 00:00:00: Portfolio Value - 7896653.80\n", + "2022-03-03 00:00:00: Portfolio Value - 7918937.10\n", + "2022-03-04 00:00:00: Portfolio Value - 8015791.36\n", + "2022-03-07 00:00:00: Portfolio Value - 7934151.30\n", + "2022-03-08 00:00:00: Portfolio Value - 7615470.56\n", + "2022-03-09 00:00:00: Portfolio Value - 7802746.14\n", + "2022-03-10 00:00:00: Portfolio Value - 7644704.83\n", + "2022-03-11 00:00:00: Portfolio Value - 7491007.36\n", + "2022-03-14 00:00:00: Portfolio Value - 7543608.31\n", + "2022-03-15 00:00:00: Portfolio Value - 7761038.52\n", + "2022-03-16 00:00:00: Portfolio Value - 7866445.01\n", + "2022-03-17 00:00:00: Portfolio Value - 8013392.56\n", + "2022-03-18 00:00:00: Portfolio Value - 8139099.30\n", + "2022-03-21 00:00:00: Portfolio Value - 8125454.85\n", + "2022-03-22 00:00:00: Portfolio Value - 8154573.91\n", + "2022-03-23 00:00:00: Portfolio Value - 7940612.19\n", + "2022-03-24 00:00:00: Portfolio Value - 8051645.28\n", + "2022-03-25 00:00:00: Portfolio Value - 8123451.83\n", + "2022-03-28 00:00:00: Portfolio Value - 8285715.20\n", + "2022-03-29 00:00:00: Portfolio Value - 8403539.59\n", + "2022-03-30 00:00:00: Portfolio Value - 8442035.34\n", + "2022-03-31 00:00:00: Portfolio Value - 8337083.00\n", + "2022-04-01 00:00:00: Portfolio Value - 8454988.91\n", + "2022-04-04 00:00:00: Portfolio Value - 8440877.42\n", + "2022-04-05 00:00:00: Portfolio Value - 8490917.23\n", + "2022-04-06 00:00:00: Portfolio Value - 8620347.62\n", + "2022-04-07 00:00:00: Portfolio Value - 8695703.83\n", + "2022-04-08 00:00:00: Portfolio Value - 8665510.38\n", + "2022-04-11 00:00:00: Portfolio Value - 8503892.91\n", + "2022-04-12 00:00:00: Portfolio Value - 8365149.36\n", + "2022-04-13 00:00:00: Portfolio Value - 8348116.45\n", + "2022-04-14 00:00:00: Portfolio Value - 8300279.33\n", + "2022-04-18 00:00:00: Portfolio Value - 8117910.45\n", + "2022-04-19 00:00:00: Portfolio Value - 8242125.53\n", + "2022-04-20 00:00:00: Portfolio Value - 8342382.91\n", + "2022-04-21 00:00:00: Portfolio Value - 8275067.29\n", + "2022-04-22 00:00:00: Portfolio Value - 8083029.80\n", + "2022-04-25 00:00:00: Portfolio Value - 8174827.50\n", + "2022-04-26 00:00:00: Portfolio Value - 7948107.83\n", + "2022-04-27 00:00:00: Portfolio Value - 7932957.82\n", + "2022-04-28 00:00:00: Portfolio Value - 7911880.23\n", + "2022-04-29 00:00:00: Portfolio Value - 7500951.75\n", + "2022-05-02 00:00:00: Portfolio Value - 7405147.89\n", + "2022-05-03 00:00:00: Portfolio Value - 7389838.01\n", + "2022-05-04 00:00:00: Portfolio Value - 7551049.16\n", + "2022-05-05 00:00:00: Portfolio Value - 7468731.89\n", + "2022-05-06 00:00:00: Portfolio Value - 7462230.01\n", + "2022-05-09 00:00:00: Portfolio Value - 7276270.97\n", + "2022-05-10 00:00:00: Portfolio Value - 7267476.09\n", + "2022-05-11 00:00:00: Portfolio Value - 7182056.13\n", + "2022-05-12 00:00:00: Portfolio Value - 7220903.13\n", + "2022-05-13 00:00:00: Portfolio Value - 7337774.81\n", + "2022-05-16 00:00:00: Portfolio Value - 7341028.56\n", + "2022-05-17 00:00:00: Portfolio Value - 7356100.21\n", + "2022-05-18 00:00:00: Portfolio Value - 7052729.67\n", + "2022-05-19 00:00:00: Portfolio Value - 7030726.91\n", + "2022-05-20 00:00:00: Portfolio Value - 7067193.48\n", + "2022-05-23 00:00:00: Portfolio Value - 7160977.15\n", + "2022-05-24 00:00:00: Portfolio Value - 7176498.68\n", + "2022-05-25 00:00:00: Portfolio Value - 7096406.59\n", + "2022-05-26 00:00:00: Portfolio Value - 7245992.05\n", + "2022-05-27 00:00:00: Portfolio Value - 7392824.75\n", + "2022-05-31 00:00:00: Portfolio Value - 7254028.38\n", + "2022-06-01 00:00:00: Portfolio Value - 7157097.21\n", + "2022-06-02 00:00:00: Portfolio Value - 7359463.09\n", + "2022-06-03 00:00:00: Portfolio Value - 7256680.06\n", + "2022-06-06 00:00:00: Portfolio Value - 7299897.80\n", + "2022-06-07 00:00:00: Portfolio Value - 7331725.19\n", + "2022-06-08 00:00:00: Portfolio Value - 7209726.84\n", + "2022-06-09 00:00:00: Portfolio Value - 7024022.43\n", + "2022-06-10 00:00:00: Portfolio Value - 6983401.09\n", + "2022-06-13 00:00:00: Portfolio Value - 6805496.56\n", + "2022-06-14 00:00:00: Portfolio Value - 6683794.71\n", + "2022-06-15 00:00:00: Portfolio Value - 6675664.97\n", + "2022-06-16 00:00:00: Portfolio Value - 6556621.28\n", + "2022-06-17 00:00:00: Portfolio Value - 6556898.05\n", + "2022-06-21 00:00:00: Portfolio Value - 6745843.27\n", + "2022-06-22 00:00:00: Portfolio Value - 6877482.58\n", + "2022-06-23 00:00:00: Portfolio Value - 7131843.31\n", + "2022-06-24 00:00:00: Portfolio Value - 7326663.73\n", + "2022-06-27 00:00:00: Portfolio Value - 7339374.05\n", + "2022-06-28 00:00:00: Portfolio Value - 7171262.13\n", + "2022-06-29 00:00:00: Portfolio Value - 7263670.74\n", + "2022-06-30 00:00:00: Portfolio Value - 7273105.35\n", + "2022-07-01 00:00:00: Portfolio Value - 7453892.77\n", + "2022-07-05 00:00:00: Portfolio Value - 7448776.25\n", + "2022-07-06 00:00:00: Portfolio Value - 7521859.89\n", + "2022-07-07 00:00:00: Portfolio Value - 7502973.08\n", + "2022-07-08 00:00:00: Portfolio Value - 7451898.00\n", + "2022-07-11 00:00:00: Portfolio Value - 7408347.24\n", + "2022-07-12 00:00:00: Portfolio Value - 7298839.01\n", + "2022-07-13 00:00:00: Portfolio Value - 7296334.70\n", + "2022-07-14 00:00:00: Portfolio Value - 7296686.34\n", + "2022-07-15 00:00:00: Portfolio Value - 7370191.75\n", + "2022-07-18 00:00:00: Portfolio Value - 7145945.83\n", + "2022-07-19 00:00:00: Portfolio Value - 7350423.97\n", + "2022-07-20 00:00:00: Portfolio Value - 7347003.80\n", + "2022-07-21 00:00:00: Portfolio Value - 7476125.52\n", + "2022-07-22 00:00:00: Portfolio Value - 7503349.16\n", + "2022-07-25 00:00:00: Portfolio Value - 7536325.13\n", + "2022-07-26 00:00:00: Portfolio Value - 7582403.34\n", + "2022-07-27 00:00:00: Portfolio Value - 7616698.94\n", + "2022-07-28 00:00:00: Portfolio Value - 7740845.24\n", + "2022-07-29 00:00:00: Portfolio Value - 7734617.59\n", + "2022-08-01 00:00:00: Portfolio Value - 7664261.68\n", + "2022-08-02 00:00:00: Portfolio Value - 7658606.00\n", + "2022-08-03 00:00:00: Portfolio Value - 7724135.19\n", + "2022-08-04 00:00:00: Portfolio Value - 7751159.70\n", + "2022-08-05 00:00:00: Portfolio Value - 7781694.72\n", + "2022-08-08 00:00:00: Portfolio Value - 7808200.15\n", + "2022-08-09 00:00:00: Portfolio Value - 7803676.55\n", + "2022-08-10 00:00:00: Portfolio Value - 7932501.45\n", + "2022-08-11 00:00:00: Portfolio Value - 7879616.25\n", + "2022-08-12 00:00:00: Portfolio Value - 8014867.40\n", + "2022-08-15 00:00:00: Portfolio Value - 8071864.56\n", + "2022-08-16 00:00:00: Portfolio Value - 8062645.50\n", + "2022-08-17 00:00:00: Portfolio Value - 8035135.89\n", + "2022-08-18 00:00:00: Portfolio Value - 8042013.76\n", + "2022-08-19 00:00:00: Portfolio Value - 7988288.51\n", + "2022-08-22 00:00:00: Portfolio Value - 7860955.80\n", + "2022-08-23 00:00:00: Portfolio Value - 7694724.89\n", + "2022-08-24 00:00:00: Portfolio Value - 7687709.62\n", + "2022-08-25 00:00:00: Portfolio Value - 7760021.48\n", + "2022-08-26 00:00:00: Portfolio Value - 7524214.56\n", + "2022-08-29 00:00:00: Portfolio Value - 7494133.41\n", + "2022-08-30 00:00:00: Portfolio Value - 7434942.62\n", + "2022-08-31 00:00:00: Portfolio Value - 7395114.30\n", + "2022-09-01 00:00:00: Portfolio Value - 7456689.81\n", + "2022-09-02 00:00:00: Portfolio Value - 7329798.76\n", + "2022-09-06 00:00:00: Portfolio Value - 7345621.89\n", + "2022-09-07 00:00:00: Portfolio Value - 7638551.28\n", + "2022-09-08 00:00:00: Portfolio Value - 7640325.02\n", + "2022-09-09 00:00:00: Portfolio Value - 7735204.15\n", + "2022-09-12 00:00:00: Portfolio Value - 7779531.92\n", + "2022-09-13 00:00:00: Portfolio Value - 7528550.37\n", + "2022-09-14 00:00:00: Portfolio Value - 7552041.04\n", + "2022-09-15 00:00:00: Portfolio Value - 7422597.00\n", + "2022-09-16 00:00:00: Portfolio Value - 7375187.92\n", + "2022-09-19 00:00:00: Portfolio Value - 7388507.13\n", + "2022-09-20 00:00:00: Portfolio Value - 7265011.22\n", + "2022-09-21 00:00:00: Portfolio Value - 7125964.07\n", + "2022-09-22 00:00:00: Portfolio Value - 7039873.09\n", + "2022-09-23 00:00:00: Portfolio Value - 7020471.96\n", + "2022-09-26 00:00:00: Portfolio Value - 6980205.77\n", + "2022-09-27 00:00:00: Portfolio Value - 6863674.77\n", + "2022-09-28 00:00:00: Portfolio Value - 6969255.64\n", + "2022-09-29 00:00:00: Portfolio Value - 6883890.19\n", + "2022-09-30 00:00:00: Portfolio Value - 6779231.54\n", + "2022-10-03 00:00:00: Portfolio Value - 7017979.97\n", + "2022-10-04 00:00:00: Portfolio Value - 7218618.28\n", + "2022-10-05 00:00:00: Portfolio Value - 7237975.83\n", + "2022-10-06 00:00:00: Portfolio Value - 7083839.95\n", + "2022-10-07 00:00:00: Portfolio Value - 6825655.21\n", + "2022-10-10 00:00:00: Portfolio Value - 6810308.60\n", + "2022-10-11 00:00:00: Portfolio Value - 6782635.56\n", + "2022-10-12 00:00:00: Portfolio Value - 6662139.18\n", + "2022-10-13 00:00:00: Portfolio Value - 6811986.79\n", + "2022-10-14 00:00:00: Portfolio Value - 6646200.12\n", + "2022-10-17 00:00:00: Portfolio Value - 6847847.11\n", + "2022-10-18 00:00:00: Portfolio Value - 6966642.70\n", + "2022-10-19 00:00:00: Portfolio Value - 6913590.54\n", + "2022-10-20 00:00:00: Portfolio Value - 6752347.80\n", + "2022-10-21 00:00:00: Portfolio Value - 6843284.92\n", + "2022-10-24 00:00:00: Portfolio Value - 6962536.85\n", + "2022-10-25 00:00:00: Portfolio Value - 7026908.14\n", + "2022-10-26 00:00:00: Portfolio Value - 7088957.81\n", + "2022-10-27 00:00:00: Portfolio Value - 7149720.53\n", + "2022-10-28 00:00:00: Portfolio Value - 7336684.48\n", + "2022-10-31 00:00:00: Portfolio Value - 7322852.77\n", + "2022-11-01 00:00:00: Portfolio Value - 7281881.65\n", + "2022-11-02 00:00:00: Portfolio Value - 7109376.37\n", + "2022-11-03 00:00:00: Portfolio Value - 6958922.72\n", + "2022-11-04 00:00:00: Portfolio Value - 6982882.34\n", + "2022-11-07 00:00:00: Portfolio Value - 7114527.10\n", + "2022-11-08 00:00:00: Portfolio Value - 7135740.95\n", + "2022-11-09 00:00:00: Portfolio Value - 7059554.48\n", + "2022-11-10 00:00:00: Portfolio Value - 7435375.00\n", + "2022-11-11 00:00:00: Portfolio Value - 7266280.99\n", + "2022-11-14 00:00:00: Portfolio Value - 7207488.78\n", + "2022-11-15 00:00:00: Portfolio Value - 7288995.57\n", + "2022-11-16 00:00:00: Portfolio Value - 7287407.85\n", + "2022-11-17 00:00:00: Portfolio Value - 7183699.03\n", + "2022-11-18 00:00:00: Portfolio Value - 7345255.96\n", + "2022-11-21 00:00:00: Portfolio Value - 7512323.35\n", + "2022-11-22 00:00:00: Portfolio Value - 7555905.84\n", + "2022-11-23 00:00:00: Portfolio Value - 7603303.82\n", + "2022-11-25 00:00:00: Portfolio Value - 7676350.37\n", + "2022-11-28 00:00:00: Portfolio Value - 7554345.42\n", + "2022-11-29 00:00:00: Portfolio Value - 7528017.17\n", + "2022-11-30 00:00:00: Portfolio Value - 7787821.19\n", + "2022-12-01 00:00:00: Portfolio Value - 7821783.88\n", + "2022-12-02 00:00:00: Portfolio Value - 7863897.68\n", + "2022-12-05 00:00:00: Portfolio Value - 7639099.30\n", + "2022-12-06 00:00:00: Portfolio Value - 7608550.48\n", + "2022-12-07 00:00:00: Portfolio Value - 7619279.19\n", + "2022-12-08 00:00:00: Portfolio Value - 7671827.83\n", + "2022-12-09 00:00:00: Portfolio Value - 7605932.94\n", + "2022-12-12 00:00:00: Portfolio Value - 7687405.92\n", + "2022-12-13 00:00:00: Portfolio Value - 7745741.90\n", + "2022-12-14 00:00:00: Portfolio Value - 7723738.89\n", + "2022-12-15 00:00:00: Portfolio Value - 7586198.80\n", + "2022-12-16 00:00:00: Portfolio Value - 7479489.09\n", + "2022-12-19 00:00:00: Portfolio Value - 7450053.86\n", + "2022-12-20 00:00:00: Portfolio Value - 7449842.47\n", + "2022-12-21 00:00:00: Portfolio Value - 7590461.13\n", + "2022-12-22 00:00:00: Portfolio Value - 7547680.50\n", + "2022-12-23 00:00:00: Portfolio Value - 7589588.34\n", + "2022-12-27 00:00:00: Portfolio Value - 7587189.94\n", + "2022-12-28 00:00:00: Portfolio Value - 7498670.15\n", + "2022-12-29 00:00:00: Portfolio Value - 7642822.20\n", + "2022-12-30 00:00:00: Portfolio Value - 7554994.76\n", + "2023-01-03 00:00:00: Portfolio Value - 7587289.75\n", + "2023-01-04 00:00:00: Portfolio Value - 7622329.03\n", + "2023-01-05 00:00:00: Portfolio Value - 7478243.90\n", + "2023-01-06 00:00:00: Portfolio Value - 7673206.67\n", + "2023-01-09 00:00:00: Portfolio Value - 7580986.45\n", + "2023-01-10 00:00:00: Portfolio Value - 7576716.93\n", + "2023-01-11 00:00:00: Portfolio Value - 7651929.94\n", + "2023-01-12 00:00:00: Portfolio Value - 7564273.19\n", + "2023-01-13 00:00:00: Portfolio Value - 7631871.82\n", + "2023-01-17 00:00:00: Portfolio Value - 7705522.78\n", + "2023-01-18 00:00:00: Portfolio Value - 7573957.12\n", + "2023-01-19 00:00:00: Portfolio Value - 7544340.69\n", + "2023-01-20 00:00:00: Portfolio Value - 7685297.59\n", + "2023-01-23 00:00:00: Portfolio Value - 7692135.31\n", + "2023-01-24 00:00:00: Portfolio Value - 7636543.51\n", + "2023-01-25 00:00:00: Portfolio Value - 7594218.31\n", + "2023-01-26 00:00:00: Portfolio Value - 7582011.73\n", + "2023-01-27 00:00:00: Portfolio Value - 7484176.98\n", + "2023-01-30 00:00:00: Portfolio Value - 7473627.03\n", + "2023-01-31 00:00:00: Portfolio Value - 7593430.62\n", + "2023-02-01 00:00:00: Portfolio Value - 7569352.51\n", + "2023-02-02 00:00:00: Portfolio Value - 7478337.71\n", + "2023-02-03 00:00:00: Portfolio Value - 7443443.86\n", + "2023-02-06 00:00:00: Portfolio Value - 7463319.66\n", + "2023-02-07 00:00:00: Portfolio Value - 7548622.67\n", + "2023-02-08 00:00:00: Portfolio Value - 7498418.18\n", + "2023-02-09 00:00:00: Portfolio Value - 7262649.78\n", + "2023-02-10 00:00:00: Portfolio Value - 7357749.17\n", + "2023-02-13 00:00:00: Portfolio Value - 7419130.78\n", + "2023-02-14 00:00:00: Portfolio Value - 7220504.54\n", + "2023-02-15 00:00:00: Portfolio Value - 7292364.18\n", + "2023-02-16 00:00:00: Portfolio Value - 7238890.96\n", + "2023-02-17 00:00:00: Portfolio Value - 7321257.13\n", + "2023-02-21 00:00:00: Portfolio Value - 7233775.68\n", + "2023-02-22 00:00:00: Portfolio Value - 7229328.68\n", + "2023-02-23 00:00:00: Portfolio Value - 7209643.98\n", + "2023-02-24 00:00:00: Portfolio Value - 7140072.35\n", + "2023-02-27 00:00:00: Portfolio Value - 7132470.72\n", + "2023-02-28 00:00:00: Portfolio Value - 7130481.40\n", + "2023-03-01 00:00:00: Portfolio Value - 7099107.45\n", + "2023-03-02 00:00:00: Portfolio Value - 7201792.69\n", + "2023-03-03 00:00:00: Portfolio Value - 7310388.61\n", + "2023-03-06 00:00:00: Portfolio Value - 7293556.27\n", + "2023-03-07 00:00:00: Portfolio Value - 7214250.22\n", + "2023-03-08 00:00:00: Portfolio Value - 7193474.44\n", + "2023-03-09 00:00:00: Portfolio Value - 7099955.14\n", + "2023-03-10 00:00:00: Portfolio Value - 7006769.73\n", + "2023-03-13 00:00:00: Portfolio Value - 7048195.21\n", + "2023-03-14 00:00:00: Portfolio Value - 7143782.07\n", + "2023-03-15 00:00:00: Portfolio Value - 7108119.24\n", + "2023-03-16 00:00:00: Portfolio Value - 7281013.73\n", + "2023-03-17 00:00:00: Portfolio Value - 7162061.42\n", + "2023-03-20 00:00:00: Portfolio Value - 7319282.93\n", + "2023-03-21 00:00:00: Portfolio Value - 7340504.79\n", + "2023-03-22 00:00:00: Portfolio Value - 7234012.36\n", + "2023-03-23 00:00:00: Portfolio Value - 7209121.93\n", + "2023-03-24 00:00:00: Portfolio Value - 7363559.42\n", + "2023-03-27 00:00:00: Portfolio Value - 7382604.90\n", + "2023-03-28 00:00:00: Portfolio Value - 7370417.71\n", + "2023-03-29 00:00:00: Portfolio Value - 7458132.81\n", + "2023-03-30 00:00:00: Portfolio Value - 7456151.57\n", + "2023-03-31 00:00:00: Portfolio Value - 7525965.35\n", + "2023-04-03 00:00:00: Portfolio Value - 7527091.04\n", + "2023-04-04 00:00:00: Portfolio Value - 7567300.84\n", + "2023-04-05 00:00:00: Portfolio Value - 7672273.71\n", + "2023-04-06 00:00:00: Portfolio Value - 7736159.17\n", + "2023-04-10 00:00:00: Portfolio Value - 7677552.25\n", + "2023-04-11 00:00:00: Portfolio Value - 7711562.71\n", + "2023-04-12 00:00:00: Portfolio Value - 7722736.33\n", + "2023-04-13 00:00:00: Portfolio Value - 7802717.44\n", + "2023-04-14 00:00:00: Portfolio Value - 7724188.41\n", + "2023-04-17 00:00:00: Portfolio Value - 7786600.21\n", + "2023-04-18 00:00:00: Portfolio Value - 7776468.87\n", + "2023-04-19 00:00:00: Portfolio Value - 7781138.14\n", + "2023-04-20 00:00:00: Portfolio Value - 7881734.31\n", + "2023-04-21 00:00:00: Portfolio Value - 7943654.71\n", + "2023-04-24 00:00:00: Portfolio Value - 7928431.85\n", + "2023-04-25 00:00:00: Portfolio Value - 7921657.36\n", + "2023-04-26 00:00:00: Portfolio Value - 7803268.84\n", + "2023-04-27 00:00:00: Portfolio Value - 7895037.35\n", + "2023-04-28 00:00:00: Portfolio Value - 8061108.83\n", + "2023-05-01 00:00:00: Portfolio Value - 8100288.93\n", + "2023-05-02 00:00:00: Portfolio Value - 7967653.67\n", + "2023-05-03 00:00:00: Portfolio Value - 8130539.42\n", + "2023-05-04 00:00:00: Portfolio Value - 8047481.38\n", + "2023-05-05 00:00:00: Portfolio Value - 8119653.20\n", + "2023-05-08 00:00:00: Portfolio Value - 8089148.57\n", + "2023-05-09 00:00:00: Portfolio Value - 8103141.30\n", + "2023-05-10 00:00:00: Portfolio Value - 8212462.28\n", + "2023-05-11 00:00:00: Portfolio Value - 8219845.80\n", + "2023-05-12 00:00:00: Portfolio Value - 8226758.20\n", + "2023-05-15 00:00:00: Portfolio Value - 8144463.89\n", + "2023-05-16 00:00:00: Portfolio Value - 8131769.51\n", + "2023-05-17 00:00:00: Portfolio Value - 8028737.53\n", + "2023-05-18 00:00:00: Portfolio Value - 8043988.35\n", + "2023-05-19 00:00:00: Portfolio Value - 8126795.67\n", + "2023-05-22 00:00:00: Portfolio Value - 8088803.01\n", + "2023-05-23 00:00:00: Portfolio Value - 7884583.99\n", + "2023-05-24 00:00:00: Portfolio Value - 7852702.90\n", + "2023-05-25 00:00:00: Portfolio Value - 7768559.71\n", + "2023-05-26 00:00:00: Portfolio Value - 7831935.29\n", + "2023-05-30 00:00:00: Portfolio Value - 7780730.02\n", + "2023-05-31 00:00:00: Portfolio Value - 7799194.81\n", + "2023-06-01 00:00:00: Portfolio Value - 7963309.06\n", + "2023-06-02 00:00:00: Portfolio Value - 8052269.15\n", + "2023-06-05 00:00:00: Portfolio Value - 8111793.35\n", + "2023-06-06 00:00:00: Portfolio Value - 8024632.02\n", + "2023-06-07 00:00:00: Portfolio Value - 7928364.49\n", + "2023-06-08 00:00:00: Portfolio Value - 7964139.15\n", + "2023-06-09 00:00:00: Portfolio Value - 7984373.95\n", + "2023-06-12 00:00:00: Portfolio Value - 7966208.34\n", + "2023-06-13 00:00:00: Portfolio Value - 7920141.15\n", + "2023-06-14 00:00:00: Portfolio Value - 8001301.93\n", + "2023-06-15 00:00:00: Portfolio Value - 8130850.54\n", + "2023-06-16 00:00:00: Portfolio Value - 8199249.63\n", + "2023-06-20 00:00:00: Portfolio Value - 8133030.55\n", + "2023-06-21 00:00:00: Portfolio Value - 8186245.14\n", + "2023-06-22 00:00:00: Portfolio Value - 8226863.68\n", + "2023-06-23 00:00:00: Portfolio Value - 8140929.90\n", + "2023-06-26 00:00:00: Portfolio Value - 8110570.35\n", + "2023-06-27 00:00:00: Portfolio Value - 8167932.31\n", + "2023-06-28 00:00:00: Portfolio Value - 8130807.64\n", + "2023-06-29 00:00:00: Portfolio Value - 8174851.07\n", + "2023-06-30 00:00:00: Portfolio Value - 8323053.88\n", + "2023-07-03 00:00:00: Portfolio Value - 8190262.72\n", + "2023-07-05 00:00:00: Portfolio Value - 8227194.66\n", + "2023-07-06 00:00:00: Portfolio Value - 8242997.98\n", + "2023-07-07 00:00:00: Portfolio Value - 8156766.37\n", + "2023-07-10 00:00:00: Portfolio Value - 8187616.83\n", + "2023-07-11 00:00:00: Portfolio Value - 8217746.93\n", + "2023-07-12 00:00:00: Portfolio Value - 8189334.60\n", + "2023-07-13 00:00:00: Portfolio Value - 8224684.54\n", + "2023-07-14 00:00:00: Portfolio Value - 8280186.02\n", + "2023-07-17 00:00:00: Portfolio Value - 8300374.53\n", + "2023-07-18 00:00:00: Portfolio Value - 8230662.23\n", + "2023-07-19 00:00:00: Portfolio Value - 8179570.99\n", + "2023-07-20 00:00:00: Portfolio Value - 8382402.32\n", + "2023-07-21 00:00:00: Portfolio Value - 8462869.18\n", + "2023-07-24 00:00:00: Portfolio Value - 8534040.19\n", + "2023-07-25 00:00:00: Portfolio Value - 8584030.11\n", + "2023-07-26 00:00:00: Portfolio Value - 8614290.35\n", + "2023-07-27 00:00:00: Portfolio Value - 8357130.48\n", + "2023-07-28 00:00:00: Portfolio Value - 8344963.12\n", + "2023-07-31 00:00:00: Portfolio Value - 8275442.03\n", + "2023-08-01 00:00:00: Portfolio Value - 8378112.90\n", + "2023-08-02 00:00:00: Portfolio Value - 8405700.90\n", + "2023-08-03 00:00:00: Portfolio Value - 8393420.44\n", + "2023-08-04 00:00:00: Portfolio Value - 8057370.48\n", + "2023-08-07 00:00:00: Portfolio Value - 8187148.85\n", + "2023-08-08 00:00:00: Portfolio Value - 8101037.84\n", + "2023-08-09 00:00:00: Portfolio Value - 8147159.32\n", + "2023-08-10 00:00:00: Portfolio Value - 8073807.45\n", + "2023-08-11 00:00:00: Portfolio Value - 8184297.22\n", + "2023-08-14 00:00:00: Portfolio Value - 8181140.74\n", + "2023-08-15 00:00:00: Portfolio Value - 8120481.81\n", + "2023-08-16 00:00:00: Portfolio Value - 8050390.98\n", + "2023-08-17 00:00:00: Portfolio Value - 7876935.25\n", + "2023-08-18 00:00:00: Portfolio Value - 7897833.92\n", + "2023-08-21 00:00:00: Portfolio Value - 7918864.98\n", + "2023-08-22 00:00:00: Portfolio Value - 7923605.95\n", + "2023-08-23 00:00:00: Portfolio Value - 8001621.81\n", + "2023-08-24 00:00:00: Portfolio Value - 8046770.78\n", + "2023-08-25 00:00:00: Portfolio Value - 8143812.90\n", + "2023-08-28 00:00:00: Portfolio Value - 8162927.05\n", + "2023-08-29 00:00:00: Portfolio Value - 8202431.66\n", + "2023-08-30 00:00:00: Portfolio Value - 8241636.20\n", + "2023-08-31 00:00:00: Portfolio Value - 8200363.33\n", + "2023-09-01 00:00:00: Portfolio Value - 8187035.81\n", + "2023-09-05 00:00:00: Portfolio Value - 8009817.10\n", + "2023-09-06 00:00:00: Portfolio Value - 8004226.32\n", + "2023-09-07 00:00:00: Portfolio Value - 8064527.53\n", + "2023-09-08 00:00:00: Portfolio Value - 8015937.24\n", + "2023-09-11 00:00:00: Portfolio Value - 8062347.96\n", + "2023-09-12 00:00:00: Portfolio Value - 8020314.81\n", + "2023-09-13 00:00:00: Portfolio Value - 8002090.15\n", + "2023-09-14 00:00:00: Portfolio Value - 8073889.00\n", + "2023-09-15 00:00:00: Portfolio Value - 8011213.13\n", + "2023-09-18 00:00:00: Portfolio Value - 8053717.38\n", + "2023-09-19 00:00:00: Portfolio Value - 8056086.80\n", + "2023-09-20 00:00:00: Portfolio Value - 8053271.38\n", + "2023-09-21 00:00:00: Portfolio Value - 7924969.14\n", + "2023-09-22 00:00:00: Portfolio Value - 7932275.58\n", + "2023-09-25 00:00:00: Portfolio Value - 7952715.23\n", + "2023-09-26 00:00:00: Portfolio Value - 7876976.18\n", + "2023-09-27 00:00:00: Portfolio Value - 7836312.76\n", + "2023-09-28 00:00:00: Portfolio Value - 7828135.45\n", + "2023-09-29 00:00:00: Portfolio Value - 7709686.64\n", + "2023-10-02 00:00:00: Portfolio Value - 7650959.36\n", + "2023-10-03 00:00:00: Portfolio Value - 7648326.71\n", + "2023-10-04 00:00:00: Portfolio Value - 7773706.52\n", + "2023-10-05 00:00:00: Portfolio Value - 7700242.60\n", + "2023-10-06 00:00:00: Portfolio Value - 7743192.54\n", + "2023-10-09 00:00:00: Portfolio Value - 7833066.77\n", + "2023-10-10 00:00:00: Portfolio Value - 7876923.51\n", + "2023-10-11 00:00:00: Portfolio Value - 7848180.97\n", + "2023-10-12 00:00:00: Portfolio Value - 7752960.65\n", + "2023-10-13 00:00:00: Portfolio Value - 7863355.68\n", + "2023-10-16 00:00:00: Portfolio Value - 7902583.13\n", + "2023-10-17 00:00:00: Portfolio Value - 7880392.66\n", + "2023-10-18 00:00:00: Portfolio Value - 7861061.27\n", + "2023-10-19 00:00:00: Portfolio Value - 7774955.20\n", + "2023-10-20 00:00:00: Portfolio Value - 7751146.43\n", + "2023-10-23 00:00:00: Portfolio Value - 7701370.32\n", + "2023-10-24 00:00:00: Portfolio Value - 7757454.37\n", + "2023-10-25 00:00:00: Portfolio Value - 7721066.03\n", + "2023-10-26 00:00:00: Portfolio Value - 7801299.79\n", + "2023-10-27 00:00:00: Portfolio Value - 7666605.66\n", + "2023-10-30 00:00:00: Portfolio Value - 7759154.46\n", + "2023-10-31 00:00:00: Portfolio Value - 7933075.79\n", + "2023-11-01 00:00:00: Portfolio Value - 7939907.29\n", + "2023-11-02 00:00:00: Portfolio Value - 8068928.94\n", + "2023-11-03 00:00:00: Portfolio Value - 8070622.29\n", + "2023-11-06 00:00:00: Portfolio Value - 8098289.16\n", + "2023-11-07 00:00:00: Portfolio Value - 8136703.94\n", + "2023-11-08 00:00:00: Portfolio Value - 8129737.64\n", + "2023-11-09 00:00:00: Portfolio Value - 7989475.07\n", + "2023-11-10 00:00:00: Portfolio Value - 8070579.32\n", + "2023-11-13 00:00:00: Portfolio Value - 8105751.26\n", + "2023-11-14 00:00:00: Portfolio Value - 8097747.49\n", + "2023-11-15 00:00:00: Portfolio Value - 8066497.32\n", + "2023-11-16 00:00:00: Portfolio Value - 8157864.39\n", + "2023-11-17 00:00:00: Portfolio Value - 8112042.03\n", + "2023-11-20 00:00:00: Portfolio Value - 8139476.58\n", + "2023-11-21 00:00:00: Portfolio Value - 8237468.40\n", + "2023-11-22 00:00:00: Portfolio Value - 8281796.22\n", + "2023-11-24 00:00:00: Portfolio Value - 8321957.43\n", + "2023-11-27 00:00:00: Portfolio Value - 8324512.35\n", + "2023-11-28 00:00:00: Portfolio Value - 8265750.02\n", + "2023-11-29 00:00:00: Portfolio Value - 8205948.78\n", + "2023-11-30 00:00:00: Portfolio Value - 8307732.10\n", + "2023-12-01 00:00:00: Portfolio Value - 8250975.97\n", + "2023-12-04 00:00:00: Portfolio Value - 8212421.64\n", + "2023-12-05 00:00:00: Portfolio Value - 8129455.66\n", + "2023-12-06 00:00:00: Portfolio Value - 8087969.94\n", + "2023-12-07 00:00:00: Portfolio Value - 8074640.90\n", + "2023-12-08 00:00:00: Portfolio Value - 8030215.58\n", + "2023-12-11 00:00:00: Portfolio Value - 8129063.80\n", + "2023-12-12 00:00:00: Portfolio Value - 8252609.38\n", + "2023-12-13 00:00:00: Portfolio Value - 8350432.70\n", + "2023-12-14 00:00:00: Portfolio Value - 7899347.54\n", + "2023-12-15 00:00:00: Portfolio Value - 7800222.69\n", + "2023-12-18 00:00:00: Portfolio Value - 7922774.21\n", + "2023-12-19 00:00:00: Portfolio Value - 7892672.07\n", + "2023-12-20 00:00:00: Portfolio Value - 7815476.97\n", + "2023-12-21 00:00:00: Portfolio Value - 7958445.76\n", + "2023-12-22 00:00:00: Portfolio Value - 7979316.78\n", + "2023-12-26 00:00:00: Portfolio Value - 7989813.81\n", + "2023-12-27 00:00:00: Portfolio Value - 7985349.80\n", + "2023-12-28 00:00:00: Portfolio Value - 8012319.58\n", + "2023-12-29 00:00:00: Portfolio Value - 8058876.81\n", + "2024-01-02 00:00:00: Portfolio Value - 8051293.99\n", + "2024-01-03 00:00:00: Portfolio Value - 7975744.03\n", + "2024-01-04 00:00:00: Portfolio Value - 8049535.62\n", + "2024-01-05 00:00:00: Portfolio Value - 7974552.85\n", + "2024-01-08 00:00:00: Portfolio Value - 8108255.36\n", + "2024-01-09 00:00:00: Portfolio Value - 8090943.27\n", + "2024-01-10 00:00:00: Portfolio Value - 8166029.69\n", + "2024-01-11 00:00:00: Portfolio Value - 8174066.38\n", + "2024-01-12 00:00:00: Portfolio Value - 8233655.37\n", + "2024-01-16 00:00:00: Portfolio Value - 8181625.18\n", + "2024-01-17 00:00:00: Portfolio Value - 8209959.89\n", + "2024-01-18 00:00:00: Portfolio Value - 8270412.31\n", + "2024-01-19 00:00:00: Portfolio Value - 8325084.98\n", + "2024-01-22 00:00:00: Portfolio Value - 8348998.03\n", + "2024-01-23 00:00:00: Portfolio Value - 8409351.93\n", + "2024-01-24 00:00:00: Portfolio Value - 8307408.52\n", + "2024-01-25 00:00:00: Portfolio Value - 8416175.44\n", + "2024-01-26 00:00:00: Portfolio Value - 8426050.13\n", + "2024-01-29 00:00:00: Portfolio Value - 8373290.71\n", + "2024-01-30 00:00:00: Portfolio Value - 8370334.80\n", + "2024-01-31 00:00:00: Portfolio Value - 8380282.23\n", + "2024-02-01 00:00:00: Portfolio Value - 8518739.39\n", + "2024-02-02 00:00:00: Portfolio Value - 8537109.89\n", + "2024-02-05 00:00:00: Portfolio Value - 8514713.86\n", + "2024-02-06 00:00:00: Portfolio Value - 8671011.56\n", + "2024-02-07 00:00:00: Portfolio Value - 8693637.31\n", + "2024-02-08 00:00:00: Portfolio Value - 8603630.47\n", + "2024-02-09 00:00:00: Portfolio Value - 8644031.31\n", + "2024-02-12 00:00:00: Portfolio Value - 8577038.95\n", + "2024-02-13 00:00:00: Portfolio Value - 8565166.12\n", + "2024-02-14 00:00:00: Portfolio Value - 8631466.97\n", + "2024-02-15 00:00:00: Portfolio Value - 8708417.21\n", + "2024-02-16 00:00:00: Portfolio Value - 8661975.68\n", + "2024-02-20 00:00:00: Portfolio Value - 8663497.87\n", + "2024-02-21 00:00:00: Portfolio Value - 8620919.07\n", + "2024-02-22 00:00:00: Portfolio Value - 8696381.42\n", + "2024-02-23 00:00:00: Portfolio Value - 8781511.58\n", + "2024-02-26 00:00:00: Portfolio Value - 8666870.05\n", + "2024-02-27 00:00:00: Portfolio Value - 8629518.86\n", + "2024-02-28 00:00:00: Portfolio Value - 8589906.97\n", + "2024-02-29 00:00:00: Portfolio Value - 8563770.98\n", + "2024-03-01 00:00:00: Portfolio Value - 8532155.89\n", + "2024-03-04 00:00:00: Portfolio Value - 8585876.18\n", + "2024-03-05 00:00:00: Portfolio Value - 8549359.58\n", + "2024-03-06 00:00:00: Portfolio Value - 8661245.11\n", + "2024-03-07 00:00:00: Portfolio Value - 8759602.59\n", + "2024-03-08 00:00:00: Portfolio Value - 8780472.68\n", + "2024-03-11 00:00:00: Portfolio Value - 8788130.69\n", + "2024-03-12 00:00:00: Portfolio Value - 8839409.66\n", + "2024-03-13 00:00:00: Portfolio Value - 8797109.89\n", + "2024-03-14 00:00:00: Portfolio Value - 8742719.91\n", + "2024-03-15 00:00:00: Portfolio Value - 8770706.36\n", + "2024-03-18 00:00:00: Portfolio Value - 8793750.89\n", + "2024-03-19 00:00:00: Portfolio Value - 8879632.61\n", + "2024-03-20 00:00:00: Portfolio Value - 8835549.41\n", + "2024-03-21 00:00:00: Portfolio Value - 8780380.78\n", + "2024-03-22 00:00:00: Portfolio Value - 8802431.37\n", + "2024-03-25 00:00:00: Portfolio Value - 8751439.34\n", + "2024-03-26 00:00:00: Portfolio Value - 8737052.28\n", + "2024-03-27 00:00:00: Portfolio Value - 8937282.15\n", + "2024-03-28 00:00:00: Portfolio Value - 8973076.98\n", + "2024-04-01 00:00:00: Portfolio Value - 8803877.22\n", + "2024-04-02 00:00:00: Portfolio Value - 8678086.47\n", + "2024-04-03 00:00:00: Portfolio Value - 8796991.89\n", + "2024-04-04 00:00:00: Portfolio Value - 8670313.25\n", + "2024-04-05 00:00:00: Portfolio Value - 8805415.67\n", + "2024-04-08 00:00:00: Portfolio Value - 8721317.82\n", + "2024-04-09 00:00:00: Portfolio Value - 8775540.87\n", + "2024-04-10 00:00:00: Portfolio Value - 8694433.70\n", + "2024-04-11 00:00:00: Portfolio Value - 8611365.09\n", + "2024-04-12 00:00:00: Portfolio Value - 8519089.75\n", + "2024-04-15 00:00:00: Portfolio Value - 8450341.41\n", + "2024-04-16 00:00:00: Portfolio Value - 8465025.37\n", + "2024-04-17 00:00:00: Portfolio Value - 8413824.16\n", + "2024-04-18 00:00:00: Portfolio Value - 8511646.09\n", + "2024-04-19 00:00:00: Portfolio Value - 8617305.36\n", + "2024-04-22 00:00:00: Portfolio Value - 8647509.34\n", + "2024-04-23 00:00:00: Portfolio Value - 8709839.45\n", + "2024-04-24 00:00:00: Portfolio Value - 8744145.64\n", + "2024-04-25 00:00:00: Portfolio Value - 8686133.09\n", + "2024-04-26 00:00:00: Portfolio Value - 8811047.57\n", + "2024-04-29 00:00:00: Portfolio Value - 8840635.59\n", + "2024-04-30 00:00:00: Portfolio Value - 8902677.83\n", + "2024-05-01 00:00:00: Portfolio Value - 9049466.29\n", + "2024-05-02 00:00:00: Portfolio Value - 9082421.85\n", + "2024-05-03 00:00:00: Portfolio Value - 9041097.30\n", + "2024-05-06 00:00:00: Portfolio Value - 9164609.54\n", + "2024-05-07 00:00:00: Portfolio Value - 9275624.70\n", + "2024-05-08 00:00:00: Portfolio Value - 9215271.48\n", + "2024-05-09 00:00:00: Portfolio Value - 9292877.94\n", + "2024-05-10 00:00:00: Portfolio Value - 9358525.56\n", + "2024-05-13 00:00:00: Portfolio Value - 9284085.02\n", + "2024-05-14 00:00:00: Portfolio Value - 9262083.03\n", + "2024-05-15 00:00:00: Portfolio Value - 9330675.49\n", + "2024-05-16 00:00:00: Portfolio Value - 9395743.96\n", + "2024-05-17 00:00:00: Portfolio Value - 9419503.51\n", + "2024-05-20 00:00:00: Portfolio Value - 9414381.21\n", + "2024-05-21 00:00:00: Portfolio Value - 9424511.81\n", + "2024-05-22 00:00:00: Portfolio Value - 9478323.63\n", + "2024-05-23 00:00:00: Portfolio Value - 9266971.10\n", + "2024-05-24 00:00:00: Portfolio Value - 9278886.93\n", + "2024-05-28 00:00:00: Portfolio Value - 9079699.28\n", + "2024-05-29 00:00:00: Portfolio Value - 9001798.13\n", + "2024-05-30 00:00:00: Portfolio Value - 9103432.29\n", + "2024-05-31 00:00:00: Portfolio Value - 9253041.76\n", + "2024-06-03 00:00:00: Portfolio Value - 9309448.80\n", + "2024-06-04 00:00:00: Portfolio Value - 9438973.56\n", + "2024-06-05 00:00:00: Portfolio Value - 9409926.65\n", + "2024-06-06 00:00:00: Portfolio Value - 9415771.47\n", + "2024-06-07 00:00:00: Portfolio Value - 9480526.68\n", + "2024-06-10 00:00:00: Portfolio Value - 9493640.31\n", + "2024-06-11 00:00:00: Portfolio Value - 9495498.86\n", + "2024-06-12 00:00:00: Portfolio Value - 9460283.48\n", + "2024-06-13 00:00:00: Portfolio Value - 9468906.49\n", + "2024-06-14 00:00:00: Portfolio Value - 9508829.15\n", + "2024-06-17 00:00:00: Portfolio Value - 9569361.57\n", + "2024-06-18 00:00:00: Portfolio Value - 9614748.65\n", + "2024-06-20 00:00:00: Portfolio Value - 9708048.32\n", + "2024-06-21 00:00:00: Portfolio Value - 9697753.77\n", + "2024-06-24 00:00:00: Portfolio Value - 9553065.54\n", + "2024-06-25 00:00:00: Portfolio Value - 9483757.01\n", + "2024-06-26 00:00:00: Portfolio Value - 9391322.93\n", + "2024-06-27 00:00:00: Portfolio Value - 9536923.50\n", + "2024-06-28 00:00:00: Portfolio Value - 9463636.60\n", + "2024-07-01 00:00:00: Portfolio Value - 9332018.72\n", + "2024-07-02 00:00:00: Portfolio Value - 9417070.23\n", + "2024-07-03 00:00:00: Portfolio Value - 9392952.41\n", + "2024-07-05 00:00:00: Portfolio Value - 9502443.87\n", + "2024-07-08 00:00:00: Portfolio Value - 9438135.72\n", + "2024-07-09 00:00:00: Portfolio Value - 9363130.85\n", + "2024-07-10 00:00:00: Portfolio Value - 9473580.40\n", + "2024-07-11 00:00:00: Portfolio Value - 9531467.20\n", + "2024-07-12 00:00:00: Portfolio Value - 9642763.73\n", + "2024-07-15 00:00:00: Portfolio Value - 9553548.35\n", + "2024-07-16 00:00:00: Portfolio Value - 9626254.63\n", + "2024-07-17 00:00:00: Portfolio Value - 9727726.15\n", + "2024-07-18 00:00:00: Portfolio Value - 9792035.77\n", + "2024-07-19 00:00:00: Portfolio Value - 9720052.20\n", + "2024-07-22 00:00:00: Portfolio Value - 9804648.43\n", + "2024-07-23 00:00:00: Portfolio Value - 9833313.15\n", + "2024-07-24 00:00:00: Portfolio Value - 9859087.26\n", + "2024-07-25 00:00:00: Portfolio Value - 9893117.28\n", + "2024-07-26 00:00:00: Portfolio Value - 9976380.25\n", + "2024-07-29 00:00:00: Portfolio Value - 10073524.70\n", + "2024-07-30 00:00:00: Portfolio Value - 10110117.72\n", + "2024-07-31 00:00:00: Portfolio Value - 9921644.32\n", + "2024-08-01 00:00:00: Portfolio Value - 10072696.00\n", + "2024-08-02 00:00:00: Portfolio Value - 10379680.37\n", + "2024-08-05 00:00:00: Portfolio Value - 10110599.29\n", + "2024-08-06 00:00:00: Portfolio Value - 10159911.84\n", + "2024-08-07 00:00:00: Portfolio Value - 10116680.65\n", + "2024-08-08 00:00:00: Portfolio Value - 10193460.15\n", + "2024-08-09 00:00:00: Portfolio Value - 10213774.42\n", + "2024-08-12 00:00:00: Portfolio Value - 10172849.30\n", + "2024-08-13 00:00:00: Portfolio Value - 10208088.29\n", + "2024-08-14 00:00:00: Portfolio Value - 10343499.59\n", + "2024-08-15 00:00:00: Portfolio Value - 10309339.77\n", + "2024-08-16 00:00:00: Portfolio Value - 10308956.23\n", + "2024-08-19 00:00:00: Portfolio Value - 10432249.35\n", + "2024-08-20 00:00:00: Portfolio Value - 10423010.08\n", + "2024-08-21 00:00:00: Portfolio Value - 10469218.23\n", + "2024-08-22 00:00:00: Portfolio Value - 10541149.25\n", + "2024-08-23 00:00:00: Portfolio Value - 10515260.50\n", + "2024-08-26 00:00:00: Portfolio Value - 10555632.72\n", + "2024-08-27 00:00:00: Portfolio Value - 10758399.53\n", + "2024-08-28 00:00:00: Portfolio Value - 10824071.61\n", + "2024-08-29 00:00:00: Portfolio Value - 10877195.86\n", + "2024-08-30 00:00:00: Portfolio Value - 10963401.20\n", + "2024-09-03 00:00:00: Portfolio Value - 11076927.07\n", + "2024-09-04 00:00:00: Portfolio Value - 11121778.64\n", + "2024-09-05 00:00:00: Portfolio Value - 11072653.50\n", + "2024-09-06 00:00:00: Portfolio Value - 10990109.28\n", + "2024-09-09 00:00:00: Portfolio Value - 11137936.00\n", + "2024-09-10 00:00:00: Portfolio Value - 11226773.72\n", + "2024-09-11 00:00:00: Portfolio Value - 11079613.31\n", + "2024-09-12 00:00:00: Portfolio Value - 11096641.60\n", + "2024-09-13 00:00:00: Portfolio Value - 11106678.50\n", + "2024-09-16 00:00:00: Portfolio Value - 11134313.28\n", + "2024-09-17 00:00:00: Portfolio Value - 11000036.30\n", + "2024-09-18 00:00:00: Portfolio Value - 10808431.05\n", + "2024-09-19 00:00:00: Portfolio Value - 10711157.89\n", + "2024-09-20 00:00:00: Portfolio Value - 10731675.13\n", + "2024-09-23 00:00:00: Portfolio Value - 10864228.17\n", + "2024-09-24 00:00:00: Portfolio Value - 10806826.76\n", + "2024-09-25 00:00:00: Portfolio Value - 10790506.71\n", + "2024-09-26 00:00:00: Portfolio Value - 10714918.08\n", + "2024-09-27 00:00:00: Portfolio Value - 10750375.60\n", + "2024-09-30 00:00:00: Portfolio Value - 10903364.80\n", + "2024-10-01 00:00:00: Portfolio Value - 10996801.72\n", + "2024-10-02 00:00:00: Portfolio Value - 10953132.55\n", + "2024-10-03 00:00:00: Portfolio Value - 10881709.75\n", + "2024-10-04 00:00:00: Portfolio Value - 10810053.06\n", + "2024-10-07 00:00:00: Portfolio Value - 10681577.16\n", + "2024-10-08 00:00:00: Portfolio Value - 10892925.31\n", + "2024-10-09 00:00:00: Portfolio Value - 11003837.22\n", + "2024-10-10 00:00:00: Portfolio Value - 10785160.04\n", + "2024-10-11 00:00:00: Portfolio Value - 10841308.22\n", + "2024-10-14 00:00:00: Portfolio Value - 10930896.48\n", + "2024-10-15 00:00:00: Portfolio Value - 10935700.93\n", + "2024-10-16 00:00:00: Portfolio Value - 10941296.48\n", + "2024-10-17 00:00:00: Portfolio Value - 10935024.64\n", + "2024-10-18 00:00:00: Portfolio Value - 10956064.92\n", + "2024-10-21 00:00:00: Portfolio Value - 10941772.39\n", + "2024-10-22 00:00:00: Portfolio Value - 10910470.31\n", + "2024-10-23 00:00:00: Portfolio Value - 10920516.09\n", + "2024-10-24 00:00:00: Portfolio Value - 10862000.71\n", + "2024-10-25 00:00:00: Portfolio Value - 10880556.70\n", + "2024-10-28 00:00:00: Portfolio Value - 10808053.55\n", + "2024-10-29 00:00:00: Portfolio Value - 10859497.07\n", + "2024-10-30 00:00:00: Portfolio Value - 10928478.77\n", + "2024-10-31 00:00:00: Portfolio Value - 10911993.40\n", + "2024-11-01 00:00:00: Portfolio Value - 10906106.25\n", + "2024-11-04 00:00:00: Portfolio Value - 10966328.23\n", + "2024-11-05 00:00:00: Portfolio Value - 11141554.72\n", + "2024-11-06 00:00:00: Portfolio Value - 11142996.85\n", + "2024-11-07 00:00:00: Portfolio Value - 11054031.72\n", + "2024-11-08 00:00:00: Portfolio Value - 11330503.87\n", + "2024-11-11 00:00:00: Portfolio Value - 11307673.66\n", + "2024-11-12 00:00:00: Portfolio Value - 11372013.78\n", + "2024-11-13 00:00:00: Portfolio Value - 11272164.78\n", + "2024-11-14 00:00:00: Portfolio Value - 10958974.45\n", + "2024-11-15 00:00:00: Portfolio Value - 10921182.57\n", + "2024-11-18 00:00:00: Portfolio Value - 10982787.23\n", + "2024-11-19 00:00:00: Portfolio Value - 10969940.83\n" + ] + } + ], + "source": [ + "initial_cash = 100_000\n", + "engine = EquityBacktestEngine(initial_cash=initial_cash)\n", + "backtest_result = engine.run_backtest(orders, price_df)\n", + "portfolio_values_df = backtest_result['portfolio_values']\n", + "\n", + "portfolio_returns = portfolio_values_df['Portfolio Value'].pct_change().dropna()\n", + "\n", + "spy_prices = sp500_data['SPY']['Adj Close']\n", + "spy_prices.index = pd.to_datetime(spy_prices.index)\n", + "spy_prices = spy_prices.sort_index()\n", + "spy_returns = spy_prices.pct_change().dropna()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Performance Metrics:\n", + "Daily Return: -0.08207647451220856\n", + "Cumulative Return: 108.69940830764796\n", + "Log Return: -0.0002514022663968894\n", + "Volatility: 83.32539912798578\n", + "Sharpe Ratio: -0.24827689748357096\n", + "Max Drawdown: -1.1472462334251403\n", + "VaR 5%: -0.03783174253972108\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/opt/anaconda3/envs/data-qualitys/lib/python3.13/site-packages/pandas/core/arraylike.py:399: RuntimeWarning: invalid value encountered in log\n", + " result = getattr(ufunc, method)(*inputs, **kwargs)\n" + ] + }, + { + "data": { + "image/png": "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J070L7d582bp1KmT+Q909tlny5w5c6RRo0YyefJkqVy5ssV3UHRRe3uovR3U3R5qbw+1t4fa20HdowfBKwzOO+88GTRokPTv398/U4/+p1m9erUsWLBA5s2bJ2eeeaZ5HOFF7e2h9nZQd3uovT3U3h5qbwd1j0wEr3xau3attG/fXj799FN/925aWpokJCTYblrEo/b2UHs7qLs91N4eam8PtbeDukcujvE6RW5e/e6776RkyZL+/xijRo0y503QMbfwBrW3h9rbQd3tofb2UHt7qL0d1D3yxdluQFE/qd2PP/4ol19+ucycOVNuuukmOXDggLzxxhucGNND1N4eam8HdbeH2ttD7e2h9nZQ9yhge1rFouzgwYNOvXr1HJ/P5yQmJjpPPvmk7SZFDWpvD7W3g7rbQ+3tofb2UHs7qHtk4xivfOrSpYvUr19fxo8fL0lJSbabE1WovT3U3g7qbg+1t4fa20Pt7aDukYvglU+ZmZkSGxtruxlRidrbQ+3toO72UHt7qL091N4O6h65CF4AAAAA4DFmNQQAAAAAjxG8AAAAAMBjBC8AAAAA8BjBCwAAAAA8RvACAAAAAI8RvAAAAADAYwQvAAAAAPAYwQsAELUGDBggPp/PXOLj46Vy5crSpUsXmTRpkmRlZeV5Pf/+97+lTJkynrYVAFC0EbwAAFGte/fusnXrVlm/fr189tlncsEFF8hdd90ll1xyiWRkZNhuHgAgQhC8AABRLTExUapUqSLVqlWTs846Sx544AH56KOPTAjTniw1fvx4adasmZQoUUJq1Kght912m+zbt8889tVXX8nAgQNlz549/t6zRx55xDx2+PBhueeee8y69blt2rQxywMAog/BCwCAHC688EI588wzZerUqeZ2TEyM/P3vf5dly5bJ66+/Ll9++aXce++95rH27dvLc889J8nJyabnTC8attQdd9whc+fOlSlTpsjixYulT58+poftt99+s/r+AAAFz+c4jmPhdQEAKBTHeP3555/y4Ycf5nrs6quvNmFp+fLluR5777335JZbbpGdO3ea29ozdvfdd5t1uTZs2CB169Y116eddpr//s6dO8s555wjTzzxhGfvCwBQ+MTZbgAAAIWR7pfUYYPqiy++kDFjxsjKlSslNTXVHPt16NAhOXDggBQvXvyYz1+yZIlkZmZKgwYNgu7X4Yfly5cvkPcAACg8CF4AABzDihUrpE6dOmbSDZ1o49Zbb5XHH39cypUrJ999953ccMMNkpaWdtzgpceAxcbGyoIFC8x1oJIlSxbQuwAAFBYELwAActBjuLTHavDgwSY46dTy48aNM8d6qXfeeSdo+YSEBNO7Fahly5bmvu3bt8v5559foO0HABQ+BC8AQFTToX8pKSkmJG3btk2mT59uhhVqL1e/fv1k6dKlkp6eLv/4xz/k0ksvle+//14mTJgQtI7atWubHq5Zs2aZSTm0F0yHGF577bVmHRraNIjt2LHDLNO8eXPp2bOntfcMACh4zGoIAIhqGrSqVq1qwpPOODh79mwzg6FOKa9DBDVI6XTyY8eOlaZNm8pbb71lglkgndlQJ9u46qqrpGLFivLUU0+Z+1977TUTvIYOHSoNGzaU3r17y08//SQ1a9a09G4BALYwqyEAAAAAeIweLwAAAADwGMELAAAAADxG8AIAAAAAjxG8AAAAAMBjBC8AAAAA8BjBCwAAAAA8RvACAAAAAI8RvAAAAADAYwQvAAAAAPAYwQsAAAAAPEbwAgAAAACPEbwAAAAAQLz1/+xrEPW/odPGAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "metrics_calculator = ExtendedMetrics()\n", + "metrics = metrics_calculator.calculate(portfolio_values_df['Portfolio Value'],\n", + " portfolio_returns,\n", + " benchmark_returns=spy_returns)\n", + "print(\"\\nPerformance Metrics:\")\n", + "for key, value in metrics.items():\n", + " print(f\"{key}: {value}\")\n", + " \n", + "metrics_calculator.plot_returns(portfolio_returns)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "data-qualitys", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.0" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 1b4dbb19556d30fed0088b21db30fea379c24ccb Mon Sep 17 00:00:00 2001 From: Nathan Chu Date: Sun, 9 Mar 2025 18:57:18 -0400 Subject: [PATCH 2/4] Fixed smr order generator (but still buggy) --- backtester/order_generator.py | 11 +- backtester/smr.ipynb | 12074 ++++++++++---------------------- 2 files changed, 3705 insertions(+), 8380 deletions(-) diff --git a/backtester/order_generator.py b/backtester/order_generator.py index 571e381..fe903ec 100644 --- a/backtester/order_generator.py +++ b/backtester/order_generator.py @@ -151,15 +151,18 @@ def calculate_predicted_returns(self, data, date): if len(df_up_to_date) < self.lookback_period: continue recent = df_up_to_date.iloc[-self.lookback_period:] - daily_returns = recent['Adj Close'].pct_change().dropna() + daily_returns = recent['Adj Close'].pct_change(fill_method=None).dropna() if len(daily_returns) > 0: avg_daily_return = daily_returns.mean() + if isinstance(avg_daily_return, pd.Series): + avg_daily_return = avg_daily_return.iloc[0] + ann_return = avg_daily_return * 252 predicted_returns[ticker] = ann_return return predicted_returns def generate_orders_for_date(self, predicted_returns, date): - pr_series = pd.Series(predicted_returns).dropna() + pr_series = pd.Series(predicted_returns).dropna().astype(float) if pr_series.empty: return [] sorted_by_pr = pr_series.sort_values() @@ -180,6 +183,7 @@ def generate_orders_for_date(self, predicted_returns, date): "ticker": ticker, "quantity": quantity }) + print(f"Buying {ticker} on {date}") for ticker in risky_tickers: quantity = int(risky_allocation_per_ticker) if quantity > 0: @@ -189,6 +193,7 @@ def generate_orders_for_date(self, predicted_returns, date): "ticker": ticker, "quantity": quantity }) + print(f"Selling {ticker} on {date}") return orders def generate_orders(self, data: Dict[str, pd.DataFrame]) -> List[Dict[str, Any]]: @@ -208,4 +213,4 @@ def generate_orders(self, data: Dict[str, pd.DataFrame]) -> List[Dict[str, Any]] continue orders = self.generate_orders_for_date(pr_values, date) all_orders.extend(orders) - return all_orders + return all_orders \ No newline at end of file diff --git a/backtester/smr.ipynb b/backtester/smr.ipynb index fb7bb92..2d0049c 100644 --- a/backtester/smr.ipynb +++ b/backtester/smr.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 6, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -16,4687 +16,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Buying VRSK on 2010-04-30 00:00:00\n", - "Buying RMD on 2010-04-30 00:00:00\n", - "Buying WTW on 2010-04-30 00:00:00\n", - "Buying CLX on 2010-04-30 00:00:00\n", - "Buying LDOS on 2010-04-30 00:00:00\n", - "Buying DUK on 2010-04-30 00:00:00\n", - "Buying CHD on 2010-04-30 00:00:00\n", - "Buying AJG on 2010-04-30 00:00:00\n", - "Buying BDX on 2010-04-30 00:00:00\n", - "Buying MTCH on 2010-04-30 00:00:00\n", - "Buying ACGL on 2010-04-30 00:00:00\n", - "Buying CTAS on 2010-04-30 00:00:00\n", - "Selling NUE on 2010-04-30 00:00:00\n", - "Selling CE on 2010-04-30 00:00:00\n", - "Selling GS on 2010-04-30 00:00:00\n", - "Selling PARA on 2010-04-30 00:00:00\n", - "Selling DFS on 2010-04-30 00:00:00\n", - "Selling FCX on 2010-04-30 00:00:00\n", - "Selling INCY on 2010-04-30 00:00:00\n", - "Selling STLD on 2010-04-30 00:00:00\n", - "Selling JBL on 2010-04-30 00:00:00\n", - "Selling ULTA on 2010-04-30 00:00:00\n", - "Selling C on 2010-04-30 00:00:00\n", - "Selling LVS on 2010-04-30 00:00:00\n", - "Buying VRSK on 2010-05-31 00:00:00\n", - "Buying LDOS on 2010-05-31 00:00:00\n", - "Buying DLTR on 2010-05-31 00:00:00\n", - "Buying BMY on 2010-05-31 00:00:00\n", - "Buying CHD on 2010-05-31 00:00:00\n", - "Buying FIS on 2010-05-31 00:00:00\n", - "Buying CLX on 2010-05-31 00:00:00\n", - "Buying SO on 2010-05-31 00:00:00\n", - "Buying SJM on 2010-05-31 00:00:00\n", - "Buying DUK on 2010-05-31 00:00:00\n", - "Buying BDX on 2010-05-31 00:00:00\n", - "Buying LH on 2010-05-31 00:00:00\n", - "Selling DFS on 2010-05-31 00:00:00\n", - "Selling ULTA on 2010-05-31 00:00:00\n", - "Selling NFLX on 2010-05-31 00:00:00\n", - "Selling PARA on 2010-05-31 00:00:00\n", - "Selling BKNG on 2010-05-31 00:00:00\n", - "Selling CE on 2010-05-31 00:00:00\n", - "Selling HBAN on 2010-05-31 00:00:00\n", - "Selling LYV on 2010-05-31 00:00:00\n", - "Selling TXT on 2010-05-31 00:00:00\n", - "Selling JBL on 2010-05-31 00:00:00\n", - "Selling INCY on 2010-05-31 00:00:00\n", - "Selling LVS on 2010-05-31 00:00:00\n", - "Buying BMY on 2010-06-30 00:00:00\n", - "Buying LDOS on 2010-06-30 00:00:00\n", - "Buying DLTR on 2010-06-30 00:00:00\n", - "Buying VRSK on 2010-06-30 00:00:00\n", - "Buying CLX on 2010-06-30 00:00:00\n", - "Buying FIS on 2010-06-30 00:00:00\n", - "Buying SO on 2010-06-30 00:00:00\n", - "Buying CHD on 2010-06-30 00:00:00\n", - "Buying SJM on 2010-06-30 00:00:00\n", - "Buying DG on 2010-06-30 00:00:00\n", - "Buying NEM on 2010-06-30 00:00:00\n", - "Buying GIS on 2010-06-30 00:00:00\n", - "Selling DFS on 2010-06-30 00:00:00\n", - "Selling FCX on 2010-06-30 00:00:00\n", - "Selling CE on 2010-06-30 00:00:00\n", - "Selling HBAN on 2010-06-30 00:00:00\n", - "Selling J on 2010-06-30 00:00:00\n", - "Selling LYV on 2010-06-30 00:00:00\n", - "Selling BWA on 2010-06-30 00:00:00\n", - "Selling PARA on 2010-06-30 00:00:00\n", - "Selling JBL on 2010-06-30 00:00:00\n", - "Selling TXT on 2010-06-30 00:00:00\n", - "Selling INCY on 2010-06-30 00:00:00\n", - "Selling LVS on 2010-06-30 00:00:00\n", - "Buying DLTR on 2010-07-31 00:00:00\n", - "Buying FIS on 2010-07-31 00:00:00\n", - "Buying VRSK on 2010-07-31 00:00:00\n", - "Buying BMY on 2010-07-31 00:00:00\n", - "Buying LDOS on 2010-07-31 00:00:00\n", - "Buying CLX on 2010-07-31 00:00:00\n", - "Buying SO on 2010-07-31 00:00:00\n", - "Buying LH on 2010-07-31 00:00:00\n", - "Buying SJM on 2010-07-31 00:00:00\n", - "Buying DG on 2010-07-31 00:00:00\n", - "Buying GIS on 2010-07-31 00:00:00\n", - "Buying TAP on 2010-07-31 00:00:00\n", - "Selling PHM on 2010-07-31 00:00:00\n", - "Selling CE on 2010-07-31 00:00:00\n", - "Selling FFIV on 2010-07-31 00:00:00\n", - "Selling FCX on 2010-07-31 00:00:00\n", - "Selling BWA on 2010-07-31 00:00:00\n", - "Selling PARA on 2010-07-31 00:00:00\n", - "Selling LYV on 2010-07-31 00:00:00\n", - "Selling HBAN on 2010-07-31 00:00:00\n", - "Selling JBL on 2010-07-31 00:00:00\n", - "Selling TXT on 2010-07-31 00:00:00\n", - "Selling LVS on 2010-07-31 00:00:00\n", - "Selling INCY on 2010-07-31 00:00:00\n", - "Buying DLTR on 2010-08-31 00:00:00\n", - "Buying VRSK on 2010-08-31 00:00:00\n", - "Buying NFLX on 2010-08-31 00:00:00\n", - "Buying EW on 2010-08-31 00:00:00\n", - "Buying SJM on 2010-08-31 00:00:00\n", - "Buying GIS on 2010-08-31 00:00:00\n", - "Buying MNST on 2010-08-31 00:00:00\n", - "Buying CLX on 2010-08-31 00:00:00\n", - "Buying COR on 2010-08-31 00:00:00\n", - "Buying DG on 2010-08-31 00:00:00\n", - "Buying SO on 2010-08-31 00:00:00\n", - "Buying BMY on 2010-08-31 00:00:00\n", - "Selling FFIV on 2010-08-31 00:00:00\n", - "Selling BWA on 2010-08-31 00:00:00\n", - "Selling INCY on 2010-08-31 00:00:00\n", - "Selling DFS on 2010-08-31 00:00:00\n", - "Selling TXT on 2010-08-31 00:00:00\n", - "Selling PHM on 2010-08-31 00:00:00\n", - "Selling CE on 2010-08-31 00:00:00\n", - "Selling FCX on 2010-08-31 00:00:00\n", - "Selling PARA on 2010-08-31 00:00:00\n", - "Selling LVS on 2010-08-31 00:00:00\n", - "Selling HBAN on 2010-08-31 00:00:00\n", - "Selling LYV on 2010-08-31 00:00:00\n", - "Buying NFLX on 2010-09-30 00:00:00\n", - "Buying DLTR on 2010-09-30 00:00:00\n", - "Buying NEM on 2010-09-30 00:00:00\n", - "Buying VRSK on 2010-09-30 00:00:00\n", - "Buying EW on 2010-09-30 00:00:00\n", - "Buying GIS on 2010-09-30 00:00:00\n", - "Buying SJM on 2010-09-30 00:00:00\n", - "Buying SO on 2010-09-30 00:00:00\n", - "Buying CLX on 2010-09-30 00:00:00\n", - "Buying PPL on 2010-09-30 00:00:00\n", - "Buying LH on 2010-09-30 00:00:00\n", - "Buying BMY on 2010-09-30 00:00:00\n", - "Selling A on 2010-09-30 00:00:00\n", - "Selling WFC on 2010-09-30 00:00:00\n", - "Selling BWA on 2010-09-30 00:00:00\n", - "Selling DFS on 2010-09-30 00:00:00\n", - "Selling TXT on 2010-09-30 00:00:00\n", - "Selling MAR on 2010-09-30 00:00:00\n", - "Selling CE on 2010-09-30 00:00:00\n", - "Selling PHM on 2010-09-30 00:00:00\n", - "Selling PARA on 2010-09-30 00:00:00\n", - "Selling HBAN on 2010-09-30 00:00:00\n", - "Selling JBL on 2010-09-30 00:00:00\n", - "Selling LYV on 2010-09-30 00:00:00\n", - "Buying EW on 2010-10-31 00:00:00\n", - "Buying DLTR on 2010-10-31 00:00:00\n", - "Buying NFLX on 2010-10-31 00:00:00\n", - "Buying VRSK on 2010-10-31 00:00:00\n", - "Buying GIS on 2010-10-31 00:00:00\n", - "Buying BF-B on 2010-10-31 00:00:00\n", - "Buying NEM on 2010-10-31 00:00:00\n", - "Buying SO on 2010-10-31 00:00:00\n", - "Buying CMS on 2010-10-31 00:00:00\n", - "Buying PPL on 2010-10-31 00:00:00\n", - "Buying AEP on 2010-10-31 00:00:00\n", - "Buying CLX on 2010-10-31 00:00:00\n", - "Selling MAR on 2010-10-31 00:00:00\n", - "Selling ROK on 2010-10-31 00:00:00\n", - "Selling TDY on 2010-10-31 00:00:00\n", - "Selling WFC on 2010-10-31 00:00:00\n", - "Selling HBAN on 2010-10-31 00:00:00\n", - "Selling PARA on 2010-10-31 00:00:00\n", - "Selling FCX on 2010-10-31 00:00:00\n", - "Selling TXT on 2010-10-31 00:00:00\n", - "Selling CE on 2010-10-31 00:00:00\n", - "Selling JBL on 2010-10-31 00:00:00\n", - "Selling AXON on 2010-10-31 00:00:00\n", - "Selling LYV on 2010-10-31 00:00:00\n", - "Buying NFLX on 2010-11-30 00:00:00\n", - "Buying EW on 2010-11-30 00:00:00\n", - "Buying CLX on 2010-11-30 00:00:00\n", - "Buying DLTR on 2010-11-30 00:00:00\n", - "Buying DG on 2010-11-30 00:00:00\n", - "Buying SJM on 2010-11-30 00:00:00\n", - "Buying PPL on 2010-11-30 00:00:00\n", - "Buying CBOE on 2010-11-30 00:00:00\n", - "Buying AEP on 2010-11-30 00:00:00\n", - "Buying SO on 2010-11-30 00:00:00\n", - "Buying VRSK on 2010-11-30 00:00:00\n", - "Buying DUK on 2010-11-30 00:00:00\n", - "Selling C on 2010-11-30 00:00:00\n", - "Selling EXR on 2010-11-30 00:00:00\n", - "Selling TDY on 2010-11-30 00:00:00\n", - "Selling WFC on 2010-11-30 00:00:00\n", - "Selling HBAN on 2010-11-30 00:00:00\n", - "Selling LVS on 2010-11-30 00:00:00\n", - "Selling TXT on 2010-11-30 00:00:00\n", - "Selling LYV on 2010-11-30 00:00:00\n", - "Selling JBL on 2010-11-30 00:00:00\n", - "Selling CE on 2010-11-30 00:00:00\n", - "Selling AXON on 2010-11-30 00:00:00\n", - "Selling FCX on 2010-11-30 00:00:00\n", - "Buying NFLX on 2010-12-31 00:00:00\n", - "Buying DG on 2010-12-31 00:00:00\n", - "Buying MNST on 2010-12-31 00:00:00\n", - "Buying CLX on 2010-12-31 00:00:00\n", - "Buying VRTX on 2010-12-31 00:00:00\n", - "Buying MPWR on 2010-12-31 00:00:00\n", - "Buying CBOE on 2010-12-31 00:00:00\n", - "Buying CRL on 2010-12-31 00:00:00\n", - "Buying DLTR on 2010-12-31 00:00:00\n", - "Buying SJM on 2010-12-31 00:00:00\n", - "Buying SO on 2010-12-31 00:00:00\n", - "Buying GIS on 2010-12-31 00:00:00\n", - "Selling BWA on 2010-12-31 00:00:00\n", - "Selling HBAN on 2010-12-31 00:00:00\n", - "Selling SWKS on 2010-12-31 00:00:00\n", - "Selling AXON on 2010-12-31 00:00:00\n", - "Selling C on 2010-12-31 00:00:00\n", - "Selling WFC on 2010-12-31 00:00:00\n", - "Selling J on 2010-12-31 00:00:00\n", - "Selling PHM on 2010-12-31 00:00:00\n", - "Selling JBL on 2010-12-31 00:00:00\n", - "Selling LVS on 2010-12-31 00:00:00\n", - "Selling CE on 2010-12-31 00:00:00\n", - "Selling FCX on 2010-12-31 00:00:00\n", - "Buying NFLX on 2011-01-31 00:00:00\n", - "Buying DG on 2011-01-31 00:00:00\n", - "Buying DLTR on 2011-01-31 00:00:00\n", - "Buying CLX on 2011-01-31 00:00:00\n", - "Buying SJM on 2011-01-31 00:00:00\n", - "Buying ERIE on 2011-01-31 00:00:00\n", - "Buying CBOE on 2011-01-31 00:00:00\n", - "Buying GIS on 2011-01-31 00:00:00\n", - "Buying SO on 2011-01-31 00:00:00\n", - "Buying MNST on 2011-01-31 00:00:00\n", - "Buying CRL on 2011-01-31 00:00:00\n", - "Buying HAS on 2011-01-31 00:00:00\n", - "Selling A on 2011-01-31 00:00:00\n", - "Selling C on 2011-01-31 00:00:00\n", - "Selling BWA on 2011-01-31 00:00:00\n", - "Selling WFC on 2011-01-31 00:00:00\n", - "Selling LVS on 2011-01-31 00:00:00\n", - "Selling CE on 2011-01-31 00:00:00\n", - "Selling SWKS on 2011-01-31 00:00:00\n", - "Selling HBAN on 2011-01-31 00:00:00\n", - "Selling J on 2011-01-31 00:00:00\n", - "Selling JBL on 2011-01-31 00:00:00\n", - "Selling FCX on 2011-01-31 00:00:00\n", - "Selling PHM on 2011-01-31 00:00:00\n", - "Buying GIS on 2011-02-28 00:00:00\n", - "Buying ERIE on 2011-02-28 00:00:00\n", - "Buying SYY on 2011-02-28 00:00:00\n", - "Buying SO on 2011-02-28 00:00:00\n", - "Buying D on 2011-02-28 00:00:00\n", - "Buying DUK on 2011-02-28 00:00:00\n", - "Buying SJM on 2011-02-28 00:00:00\n", - "Buying PPL on 2011-02-28 00:00:00\n", - "Buying VRTX on 2011-02-28 00:00:00\n", - "Buying BMY on 2011-02-28 00:00:00\n", - "Buying SRE on 2011-02-28 00:00:00\n", - "Buying LH on 2011-02-28 00:00:00\n", - "Selling BX on 2011-02-28 00:00:00\n", - "Selling MPWR on 2011-02-28 00:00:00\n", - "Selling BWA on 2011-02-28 00:00:00\n", - "Selling LYV on 2011-02-28 00:00:00\n", - "Selling ADBE on 2011-02-28 00:00:00\n", - "Selling A on 2011-02-28 00:00:00\n", - "Selling CE on 2011-02-28 00:00:00\n", - "Selling WFC on 2011-02-28 00:00:00\n", - "Selling PHM on 2011-02-28 00:00:00\n", - "Selling SWKS on 2011-02-28 00:00:00\n", - "Selling J on 2011-02-28 00:00:00\n", - "Selling JBL on 2011-02-28 00:00:00\n", - "Buying NFLX on 2011-03-31 00:00:00\n", - "Buying SYY on 2011-03-31 00:00:00\n", - "Buying GIS on 2011-03-31 00:00:00\n", - "Buying DLTR on 2011-03-31 00:00:00\n", - "Buying ERIE on 2011-03-31 00:00:00\n", - "Buying AMT on 2011-03-31 00:00:00\n", - "Buying DUK on 2011-03-31 00:00:00\n", - "Buying NEM on 2011-03-31 00:00:00\n", - "Buying SO on 2011-03-31 00:00:00\n", - "Buying PPL on 2011-03-31 00:00:00\n", - "Buying DG on 2011-03-31 00:00:00\n", - "Buying TRGP on 2011-03-31 00:00:00\n", - "Selling PTC on 2011-03-31 00:00:00\n", - "Selling A on 2011-03-31 00:00:00\n", - "Selling BX on 2011-03-31 00:00:00\n", - "Selling BLK on 2011-03-31 00:00:00\n", - "Selling STLD on 2011-03-31 00:00:00\n", - "Selling PARA on 2011-03-31 00:00:00\n", - "Selling SWKS on 2011-03-31 00:00:00\n", - "Selling TXT on 2011-03-31 00:00:00\n", - "Selling JBL on 2011-03-31 00:00:00\n", - "Selling J on 2011-03-31 00:00:00\n", - "Selling CE on 2011-03-31 00:00:00\n", - "Selling LVS on 2011-03-31 00:00:00\n", - "Buying NFLX on 2011-04-30 00:00:00\n", - "Buying DG on 2011-04-30 00:00:00\n", - "Buying SYY on 2011-04-30 00:00:00\n", - "Buying IRM on 2011-04-30 00:00:00\n", - "Buying NEM on 2011-04-30 00:00:00\n", - "Buying PPL on 2011-04-30 00:00:00\n", - "Buying GIS on 2011-04-30 00:00:00\n", - "Buying DUK on 2011-04-30 00:00:00\n", - "Buying SO on 2011-04-30 00:00:00\n", - "Buying CLX on 2011-04-30 00:00:00\n", - "Buying WTW on 2011-04-30 00:00:00\n", - "Buying DLTR on 2011-04-30 00:00:00\n", - "Selling A on 2011-04-30 00:00:00\n", - "Selling STLD on 2011-04-30 00:00:00\n", - "Selling BWA on 2011-04-30 00:00:00\n", - "Selling PARA on 2011-04-30 00:00:00\n", - "Selling BX on 2011-04-30 00:00:00\n", - "Selling AXON on 2011-04-30 00:00:00\n", - "Selling CAT on 2011-04-30 00:00:00\n", - "Selling MPWR on 2011-04-30 00:00:00\n", - "Selling TXT on 2011-04-30 00:00:00\n", - "Selling LVS on 2011-04-30 00:00:00\n", - "Selling JBL on 2011-04-30 00:00:00\n", - "Selling CE on 2011-04-30 00:00:00\n", - "Buying NFLX on 2011-05-31 00:00:00\n", - "Buying IRM on 2011-05-31 00:00:00\n", - "Buying AMT on 2011-05-31 00:00:00\n", - "Buying DRI on 2011-05-31 00:00:00\n", - "Buying DG on 2011-05-31 00:00:00\n", - "Buying CLX on 2011-05-31 00:00:00\n", - "Buying PPL on 2011-05-31 00:00:00\n", - "Buying CVS on 2011-05-31 00:00:00\n", - "Buying VRSK on 2011-05-31 00:00:00\n", - "Buying ICE on 2011-05-31 00:00:00\n", - "Buying SO on 2011-05-31 00:00:00\n", - "Buying AEP on 2011-05-31 00:00:00\n", - "Selling ROK on 2011-05-31 00:00:00\n", - "Selling MPWR on 2011-05-31 00:00:00\n", - "Selling PTC on 2011-05-31 00:00:00\n", - "Selling BWA on 2011-05-31 00:00:00\n", - "Selling RJF on 2011-05-31 00:00:00\n", - "Selling MTD on 2011-05-31 00:00:00\n", - "Selling J on 2011-05-31 00:00:00\n", - "Selling CAT on 2011-05-31 00:00:00\n", - "Selling LVS on 2011-05-31 00:00:00\n", - "Selling LYB on 2011-05-31 00:00:00\n", - "Selling BX on 2011-05-31 00:00:00\n", - "Selling CE on 2011-05-31 00:00:00\n", - "Buying DGX on 2011-06-30 00:00:00\n", - "Buying VRSK on 2011-06-30 00:00:00\n", - "Buying AEP on 2011-06-30 00:00:00\n", - "Buying SO on 2011-06-30 00:00:00\n", - "Buying PPL on 2011-06-30 00:00:00\n", - "Buying HII on 2011-06-30 00:00:00\n", - "Buying DUK on 2011-06-30 00:00:00\n", - "Buying ACGL on 2011-06-30 00:00:00\n", - "Buying ORLY on 2011-06-30 00:00:00\n", - "Buying CLX on 2011-06-30 00:00:00\n", - "Buying GILD on 2011-06-30 00:00:00\n", - "Buying D on 2011-06-30 00:00:00\n", - "Selling A on 2011-06-30 00:00:00\n", - "Selling FFIV on 2011-06-30 00:00:00\n", - "Selling RJF on 2011-06-30 00:00:00\n", - "Selling JBL on 2011-06-30 00:00:00\n", - "Selling BWA on 2011-06-30 00:00:00\n", - "Selling SWKS on 2011-06-30 00:00:00\n", - "Selling MTD on 2011-06-30 00:00:00\n", - "Selling J on 2011-06-30 00:00:00\n", - "Selling CE on 2011-06-30 00:00:00\n", - "Selling CAT on 2011-06-30 00:00:00\n", - "Selling FCX on 2011-06-30 00:00:00\n", - "Selling LYB on 2011-06-30 00:00:00\n", - "Buying MTCH on 2011-07-31 00:00:00\n", - "Buying HII on 2011-07-31 00:00:00\n", - "Buying VRSK on 2011-07-31 00:00:00\n", - "Buying SO on 2011-07-31 00:00:00\n", - "Buying AEP on 2011-07-31 00:00:00\n", - "Buying VRTX on 2011-07-31 00:00:00\n", - "Buying DUK on 2011-07-31 00:00:00\n", - "Buying CLX on 2011-07-31 00:00:00\n", - "Buying WTW on 2011-07-31 00:00:00\n", - "Buying PPL on 2011-07-31 00:00:00\n", - "Buying GIS on 2011-07-31 00:00:00\n", - "Buying AJG on 2011-07-31 00:00:00\n", - "Selling MTD on 2011-07-31 00:00:00\n", - "Selling LYV on 2011-07-31 00:00:00\n", - "Selling SWKS on 2011-07-31 00:00:00\n", - "Selling J on 2011-07-31 00:00:00\n", - "Selling RJF on 2011-07-31 00:00:00\n", - "Selling ROK on 2011-07-31 00:00:00\n", - "Selling BLK on 2011-07-31 00:00:00\n", - "Selling FCX on 2011-07-31 00:00:00\n", - "Selling CE on 2011-07-31 00:00:00\n", - "Selling JBL on 2011-07-31 00:00:00\n", - "Selling PHM on 2011-07-31 00:00:00\n", - "Selling LYB on 2011-07-31 00:00:00\n", - "Buying NEM on 2011-08-31 00:00:00\n", - "Buying SO on 2011-08-31 00:00:00\n", - "Buying GIS on 2011-08-31 00:00:00\n", - "Buying SYY on 2011-08-31 00:00:00\n", - "Buying HII on 2011-08-31 00:00:00\n", - "Buying DG on 2011-08-31 00:00:00\n", - "Buying ORLY on 2011-08-31 00:00:00\n", - "Buying DUK on 2011-08-31 00:00:00\n", - "Buying D on 2011-08-31 00:00:00\n", - "Buying T on 2011-08-31 00:00:00\n", - "Buying VRSK on 2011-08-31 00:00:00\n", - "Buying PPL on 2011-08-31 00:00:00\n", - "Selling PHM on 2011-08-31 00:00:00\n", - "Selling RJF on 2011-08-31 00:00:00\n", - "Selling ULTA on 2011-08-31 00:00:00\n", - "Selling TXT on 2011-08-31 00:00:00\n", - "Selling ROK on 2011-08-31 00:00:00\n", - "Selling A on 2011-08-31 00:00:00\n", - "Selling PARA on 2011-08-31 00:00:00\n", - "Selling BX on 2011-08-31 00:00:00\n", - "Selling CE on 2011-08-31 00:00:00\n", - "Selling C on 2011-08-31 00:00:00\n", - "Selling JBL on 2011-08-31 00:00:00\n", - "Selling LYB on 2011-08-31 00:00:00\n", - "Buying NEM on 2011-09-30 00:00:00\n", - "Buying SO on 2011-09-30 00:00:00\n", - "Buying GIS on 2011-09-30 00:00:00\n", - "Buying ORLY on 2011-09-30 00:00:00\n", - "Buying SYY on 2011-09-30 00:00:00\n", - "Buying DUK on 2011-09-30 00:00:00\n", - "Buying PPL on 2011-09-30 00:00:00\n", - "Buying DG on 2011-09-30 00:00:00\n", - "Buying T on 2011-09-30 00:00:00\n", - "Buying D on 2011-09-30 00:00:00\n", - "Buying VRSK on 2011-09-30 00:00:00\n", - "Buying HII on 2011-09-30 00:00:00\n", - "Selling ROK on 2011-09-30 00:00:00\n", - "Selling PHM on 2011-09-30 00:00:00\n", - "Selling RJF on 2011-09-30 00:00:00\n", - "Selling TXT on 2011-09-30 00:00:00\n", - "Selling HBAN on 2011-09-30 00:00:00\n", - "Selling A on 2011-09-30 00:00:00\n", - "Selling PARA on 2011-09-30 00:00:00\n", - "Selling JBL on 2011-09-30 00:00:00\n", - "Selling BX on 2011-09-30 00:00:00\n", - "Selling LYB on 2011-09-30 00:00:00\n", - "Selling C on 2011-09-30 00:00:00\n", - "Selling CE on 2011-09-30 00:00:00\n", - "Buying NEM on 2011-10-31 00:00:00\n", - "Buying SO on 2011-10-31 00:00:00\n", - "Buying GIS on 2011-10-31 00:00:00\n", - "Buying DG on 2011-10-31 00:00:00\n", - "Buying DUK on 2011-10-31 00:00:00\n", - "Buying PPL on 2011-10-31 00:00:00\n", - "Buying SYY on 2011-10-31 00:00:00\n", - "Buying DLTR on 2011-10-31 00:00:00\n", - "Buying D on 2011-10-31 00:00:00\n", - "Buying BMY on 2011-10-31 00:00:00\n", - "Buying ORLY on 2011-10-31 00:00:00\n", - "Buying SJM on 2011-10-31 00:00:00\n", - "Selling ROK on 2011-10-31 00:00:00\n", - "Selling JBL on 2011-10-31 00:00:00\n", - "Selling STLD on 2011-10-31 00:00:00\n", - "Selling PARA on 2011-10-31 00:00:00\n", - "Selling HBAN on 2011-10-31 00:00:00\n", - "Selling RJF on 2011-10-31 00:00:00\n", - "Selling BX on 2011-10-31 00:00:00\n", - "Selling PHM on 2011-10-31 00:00:00\n", - "Selling A on 2011-10-31 00:00:00\n", - "Selling LYB on 2011-10-31 00:00:00\n", - "Selling CE on 2011-10-31 00:00:00\n", - "Selling C on 2011-10-31 00:00:00\n", - "Buying GIS on 2011-11-30 00:00:00\n", - "Buying SO on 2011-11-30 00:00:00\n", - "Buying DLTR on 2011-11-30 00:00:00\n", - "Buying CLX on 2011-11-30 00:00:00\n", - "Buying DUK on 2011-11-30 00:00:00\n", - "Buying DG on 2011-11-30 00:00:00\n", - "Buying PPL on 2011-11-30 00:00:00\n", - "Buying CHD on 2011-11-30 00:00:00\n", - "Buying SJM on 2011-11-30 00:00:00\n", - "Buying D on 2011-11-30 00:00:00\n", - "Buying BMY on 2011-11-30 00:00:00\n", - "Buying ORLY on 2011-11-30 00:00:00\n", - "Selling ROK on 2011-11-30 00:00:00\n", - "Selling LYB on 2011-11-30 00:00:00\n", - "Selling HBAN on 2011-11-30 00:00:00\n", - "Selling PTC on 2011-11-30 00:00:00\n", - "Selling RJF on 2011-11-30 00:00:00\n", - "Selling BX on 2011-11-30 00:00:00\n", - "Selling A on 2011-11-30 00:00:00\n", - "Selling FCX on 2011-11-30 00:00:00\n", - "Selling STLD on 2011-11-30 00:00:00\n", - "Selling CE on 2011-11-30 00:00:00\n", - "Selling PHM on 2011-11-30 00:00:00\n", - "Selling C on 2011-11-30 00:00:00\n", - "Buying CLX on 2011-12-31 00:00:00\n", - "Buying DLTR on 2011-12-31 00:00:00\n", - "Buying DG on 2011-12-31 00:00:00\n", - "Buying SO on 2011-12-31 00:00:00\n", - "Buying GIS on 2011-12-31 00:00:00\n", - "Buying CHD on 2011-12-31 00:00:00\n", - "Buying VRTX on 2011-12-31 00:00:00\n", - "Buying DUK on 2011-12-31 00:00:00\n", - "Buying PPL on 2011-12-31 00:00:00\n", - "Buying SJM on 2011-12-31 00:00:00\n", - "Buying BMY on 2011-12-31 00:00:00\n", - "Buying D on 2011-12-31 00:00:00\n", - "Selling GS on 2011-12-31 00:00:00\n", - "Selling ROK on 2011-12-31 00:00:00\n", - "Selling BLK on 2011-12-31 00:00:00\n", - "Selling BX on 2011-12-31 00:00:00\n", - "Selling RJF on 2011-12-31 00:00:00\n", - "Selling STLD on 2011-12-31 00:00:00\n", - "Selling FCX on 2011-12-31 00:00:00\n", - "Selling A on 2011-12-31 00:00:00\n", - "Selling CE on 2011-12-31 00:00:00\n", - "Selling PTC on 2011-12-31 00:00:00\n", - "Selling C on 2011-12-31 00:00:00\n", - "Selling PHM on 2011-12-31 00:00:00\n", - "Buying CLX on 2012-01-31 00:00:00\n", - "Buying DG on 2012-01-31 00:00:00\n", - "Buying DLTR on 2012-01-31 00:00:00\n", - "Buying SO on 2012-01-31 00:00:00\n", - "Buying CHD on 2012-01-31 00:00:00\n", - "Buying WTW on 2012-01-31 00:00:00\n", - "Buying GIS on 2012-01-31 00:00:00\n", - "Buying DUK on 2012-01-31 00:00:00\n", - "Buying VRTX on 2012-01-31 00:00:00\n", - "Buying ORLY on 2012-01-31 00:00:00\n", - "Buying PPL on 2012-01-31 00:00:00\n", - "Buying VRSK on 2012-01-31 00:00:00\n", - "Selling MPWR on 2012-01-31 00:00:00\n", - "Selling PTC on 2012-01-31 00:00:00\n", - "Selling FFIV on 2012-01-31 00:00:00\n", - "Selling GS on 2012-01-31 00:00:00\n", - "Selling CE on 2012-01-31 00:00:00\n", - "Selling RJF on 2012-01-31 00:00:00\n", - "Selling A on 2012-01-31 00:00:00\n", - "Selling FCX on 2012-01-31 00:00:00\n", - "Selling STLD on 2012-01-31 00:00:00\n", - "Selling SWKS on 2012-01-31 00:00:00\n", - "Selling PHM on 2012-01-31 00:00:00\n", - "Selling C on 2012-01-31 00:00:00\n", - "Buying DG on 2012-02-29 00:00:00\n", - "Buying GIS on 2012-02-29 00:00:00\n", - "Buying PPL on 2012-02-29 00:00:00\n", - "Buying SO on 2012-02-29 00:00:00\n", - "Buying DLTR on 2012-02-29 00:00:00\n", - "Buying CHD on 2012-02-29 00:00:00\n", - "Buying EW on 2012-02-29 00:00:00\n", - "Buying SJM on 2012-02-29 00:00:00\n", - "Buying CBOE on 2012-02-29 00:00:00\n", - "Buying BMY on 2012-02-29 00:00:00\n", - "Buying DUK on 2012-02-29 00:00:00\n", - "Buying CLX on 2012-02-29 00:00:00\n", - "Selling RJF on 2012-02-29 00:00:00\n", - "Selling SWKS on 2012-02-29 00:00:00\n", - "Selling MPWR on 2012-02-29 00:00:00\n", - "Selling GM on 2012-02-29 00:00:00\n", - "Selling TXT on 2012-02-29 00:00:00\n", - "Selling CE on 2012-02-29 00:00:00\n", - "Selling A on 2012-02-29 00:00:00\n", - "Selling GS on 2012-02-29 00:00:00\n", - "Selling FCX on 2012-02-29 00:00:00\n", - "Selling STLD on 2012-02-29 00:00:00\n", - "Selling C on 2012-02-29 00:00:00\n", - "Selling PHM on 2012-02-29 00:00:00\n", - "Buying SO on 2012-03-31 00:00:00\n", - "Buying DG on 2012-03-31 00:00:00\n", - "Buying CBOE on 2012-03-31 00:00:00\n", - "Buying PPL on 2012-03-31 00:00:00\n", - "Buying SJM on 2012-03-31 00:00:00\n", - "Buying EW on 2012-03-31 00:00:00\n", - "Buying HII on 2012-03-31 00:00:00\n", - "Buying CMS on 2012-03-31 00:00:00\n", - "Buying D on 2012-03-31 00:00:00\n", - "Buying NI on 2012-03-31 00:00:00\n", - "Buying GIS on 2012-03-31 00:00:00\n", - "Buying DUK on 2012-03-31 00:00:00\n", - "Selling MPWR on 2012-03-31 00:00:00\n", - "Selling BWA on 2012-03-31 00:00:00\n", - "Selling PHM on 2012-03-31 00:00:00\n", - "Selling SWKS on 2012-03-31 00:00:00\n", - "Selling STLD on 2012-03-31 00:00:00\n", - "Selling TXT on 2012-03-31 00:00:00\n", - "Selling GM on 2012-03-31 00:00:00\n", - "Selling J on 2012-03-31 00:00:00\n", - "Selling C on 2012-03-31 00:00:00\n", - "Selling GS on 2012-03-31 00:00:00\n", - "Selling CE on 2012-03-31 00:00:00\n", - "Selling LYB on 2012-03-31 00:00:00\n", - "Buying SO on 2012-04-30 00:00:00\n", - "Buying SJM on 2012-04-30 00:00:00\n", - "Buying GIS on 2012-04-30 00:00:00\n", - "Buying PPL on 2012-04-30 00:00:00\n", - "Buying D on 2012-04-30 00:00:00\n", - "Buying CLX on 2012-04-30 00:00:00\n", - "Buying AEP on 2012-04-30 00:00:00\n", - "Buying DUK on 2012-04-30 00:00:00\n", - "Buying CMS on 2012-04-30 00:00:00\n", - "Buying AON on 2012-04-30 00:00:00\n", - "Buying ACGL on 2012-04-30 00:00:00\n", - "Buying CBOE on 2012-04-30 00:00:00\n", - "Selling J on 2012-04-30 00:00:00\n", - "Selling TXT on 2012-04-30 00:00:00\n", - "Selling JBL on 2012-04-30 00:00:00\n", - "Selling PTC on 2012-04-30 00:00:00\n", - "Selling STLD on 2012-04-30 00:00:00\n", - "Selling LYB on 2012-04-30 00:00:00\n", - "Selling CE on 2012-04-30 00:00:00\n", - "Selling INCY on 2012-04-30 00:00:00\n", - "Selling GM on 2012-04-30 00:00:00\n", - "Selling PHM on 2012-04-30 00:00:00\n", - "Selling SWKS on 2012-04-30 00:00:00\n", - "Selling C on 2012-04-30 00:00:00\n", - "Buying SO on 2012-05-31 00:00:00\n", - "Buying DUK on 2012-05-31 00:00:00\n", - "Buying D on 2012-05-31 00:00:00\n", - "Buying CLX on 2012-05-31 00:00:00\n", - "Buying GIS on 2012-05-31 00:00:00\n", - "Buying PPL on 2012-05-31 00:00:00\n", - "Buying AEP on 2012-05-31 00:00:00\n", - "Buying SRE on 2012-05-31 00:00:00\n", - "Buying CHD on 2012-05-31 00:00:00\n", - "Buying ACGL on 2012-05-31 00:00:00\n", - "Buying LOW on 2012-05-31 00:00:00\n", - "Buying NEM on 2012-05-31 00:00:00\n", - "Selling STLD on 2012-05-31 00:00:00\n", - "Selling MTD on 2012-05-31 00:00:00\n", - "Selling EQIX on 2012-05-31 00:00:00\n", - "Selling TXT on 2012-05-31 00:00:00\n", - "Selling JBL on 2012-05-31 00:00:00\n", - "Selling CF on 2012-05-31 00:00:00\n", - "Selling LYB on 2012-05-31 00:00:00\n", - "Selling C on 2012-05-31 00:00:00\n", - "Selling INCY on 2012-05-31 00:00:00\n", - "Selling CE on 2012-05-31 00:00:00\n", - "Selling PHM on 2012-05-31 00:00:00\n", - "Selling SWKS on 2012-05-31 00:00:00\n", - "Buying DUK on 2012-06-30 00:00:00\n", - "Buying SO on 2012-06-30 00:00:00\n", - "Buying NEM on 2012-06-30 00:00:00\n", - "Buying PPL on 2012-06-30 00:00:00\n", - "Buying CLX on 2012-06-30 00:00:00\n", - "Buying GIS on 2012-06-30 00:00:00\n", - "Buying AEP on 2012-06-30 00:00:00\n", - "Buying D on 2012-06-30 00:00:00\n", - "Buying PNW on 2012-06-30 00:00:00\n", - "Buying CMS on 2012-06-30 00:00:00\n", - "Buying CHD on 2012-06-30 00:00:00\n", - "Buying SRE on 2012-06-30 00:00:00\n", - "Selling A on 2012-06-30 00:00:00\n", - "Selling EQIX on 2012-06-30 00:00:00\n", - "Selling CF on 2012-06-30 00:00:00\n", - "Selling LYB on 2012-06-30 00:00:00\n", - "Selling TXT on 2012-06-30 00:00:00\n", - "Selling CE on 2012-06-30 00:00:00\n", - "Selling JBL on 2012-06-30 00:00:00\n", - "Selling INCY on 2012-06-30 00:00:00\n", - "Selling C on 2012-06-30 00:00:00\n", - "Selling PTC on 2012-06-30 00:00:00\n", - "Selling SWKS on 2012-06-30 00:00:00\n", - "Selling PHM on 2012-06-30 00:00:00\n", - "Buying DUK on 2012-07-31 00:00:00\n", - "Buying NEM on 2012-07-31 00:00:00\n", - "Buying SO on 2012-07-31 00:00:00\n", - "Buying PPL on 2012-07-31 00:00:00\n", - "Buying CLX on 2012-07-31 00:00:00\n", - "Buying GIS on 2012-07-31 00:00:00\n", - "Buying AEP on 2012-07-31 00:00:00\n", - "Buying DG on 2012-07-31 00:00:00\n", - "Buying PNW on 2012-07-31 00:00:00\n", - "Buying D on 2012-07-31 00:00:00\n", - "Buying CMS on 2012-07-31 00:00:00\n", - "Buying CHD on 2012-07-31 00:00:00\n", - "Selling CE on 2012-07-31 00:00:00\n", - "Selling FCX on 2012-07-31 00:00:00\n", - "Selling BWA on 2012-07-31 00:00:00\n", - "Selling JBL on 2012-07-31 00:00:00\n", - "Selling EQIX on 2012-07-31 00:00:00\n", - "Selling LYB on 2012-07-31 00:00:00\n", - "Selling FFIV on 2012-07-31 00:00:00\n", - "Selling TXT on 2012-07-31 00:00:00\n", - "Selling C on 2012-07-31 00:00:00\n", - "Selling SWKS on 2012-07-31 00:00:00\n", - "Selling PTC on 2012-07-31 00:00:00\n", - "Selling PHM on 2012-07-31 00:00:00\n", - "Buying DG on 2012-08-31 00:00:00\n", - "Buying SO on 2012-08-31 00:00:00\n", - "Buying CLX on 2012-08-31 00:00:00\n", - "Buying APO on 2012-08-31 00:00:00\n", - "Buying PPL on 2012-08-31 00:00:00\n", - "Buying O on 2012-08-31 00:00:00\n", - "Buying CHD on 2012-08-31 00:00:00\n", - "Buying CBOE on 2012-08-31 00:00:00\n", - "Buying ERIE on 2012-08-31 00:00:00\n", - "Buying DUK on 2012-08-31 00:00:00\n", - "Buying WELL on 2012-08-31 00:00:00\n", - "Buying AEP on 2012-08-31 00:00:00\n", - "Selling BWA on 2012-08-31 00:00:00\n", - "Selling MPWR on 2012-08-31 00:00:00\n", - "Selling JBL on 2012-08-31 00:00:00\n", - "Selling SWKS on 2012-08-31 00:00:00\n", - "Selling STLD on 2012-08-31 00:00:00\n", - "Selling TXT on 2012-08-31 00:00:00\n", - "Selling FCX on 2012-08-31 00:00:00\n", - "Selling C on 2012-08-31 00:00:00\n", - "Selling PHM on 2012-08-31 00:00:00\n", - "Selling CRM on 2012-08-31 00:00:00\n", - "Selling FFIV on 2012-08-31 00:00:00\n", - "Selling PTC on 2012-08-31 00:00:00\n", - "Buying ORLY on 2012-09-30 00:00:00\n", - "Buying DG on 2012-09-30 00:00:00\n", - "Buying ERIE on 2012-09-30 00:00:00\n", - "Buying CHD on 2012-09-30 00:00:00\n", - "Buying O on 2012-09-30 00:00:00\n", - "Buying CLX on 2012-09-30 00:00:00\n", - "Buying PPL on 2012-09-30 00:00:00\n", - "Buying APO on 2012-09-30 00:00:00\n", - "Buying CAH on 2012-09-30 00:00:00\n", - "Buying WELL on 2012-09-30 00:00:00\n", - "Buying EXR on 2012-09-30 00:00:00\n", - "Buying SO on 2012-09-30 00:00:00\n", - "Buying GIS on 2012-09-30 00:00:00\n", - "Selling JBL on 2012-09-30 00:00:00\n", - "Selling LYB on 2012-09-30 00:00:00\n", - "Selling GM on 2012-09-30 00:00:00\n", - "Selling TXT on 2012-09-30 00:00:00\n", - "Selling SWKS on 2012-09-30 00:00:00\n", - "Selling PHM on 2012-09-30 00:00:00\n", - "Selling FCX on 2012-09-30 00:00:00\n", - "Selling C on 2012-09-30 00:00:00\n", - "Selling STLD on 2012-09-30 00:00:00\n", - "Selling BWA on 2012-09-30 00:00:00\n", - "Selling CRM on 2012-09-30 00:00:00\n", - "Selling FFIV on 2012-09-30 00:00:00\n", - "Selling PTC on 2012-09-30 00:00:00\n", - "Buying ORLY on 2012-10-31 00:00:00\n", - "Buying MKTX on 2012-10-31 00:00:00\n", - "Buying EPAM on 2012-10-31 00:00:00\n", - "Buying DG on 2012-10-31 00:00:00\n", - "Buying PPL on 2012-10-31 00:00:00\n", - "Buying CLX on 2012-10-31 00:00:00\n", - "Buying DUK on 2012-10-31 00:00:00\n", - "Buying O on 2012-10-31 00:00:00\n", - "Buying GWW on 2012-10-31 00:00:00\n", - "Buying SO on 2012-10-31 00:00:00\n", - "Buying CMS on 2012-10-31 00:00:00\n", - "Buying AXON on 2012-10-31 00:00:00\n", - "Buying JBHT on 2012-10-31 00:00:00\n", - "Selling SWKS on 2012-10-31 00:00:00\n", - "Selling GM on 2012-10-31 00:00:00\n", - "Selling LYB on 2012-10-31 00:00:00\n", - "Selling FFIV on 2012-10-31 00:00:00\n", - "Selling NOW on 2012-10-31 00:00:00\n", - "Selling STLD on 2012-10-31 00:00:00\n", - "Selling MNST on 2012-10-31 00:00:00\n", - "Selling PH on 2012-10-31 00:00:00\n", - "Selling FCX on 2012-10-31 00:00:00\n", - "Selling BWA on 2012-10-31 00:00:00\n", - "Selling C on 2012-10-31 00:00:00\n", - "Selling PHM on 2012-10-31 00:00:00\n", - "Selling NFLX on 2012-10-31 00:00:00\n", - "Buying ORLY on 2012-11-30 00:00:00\n", - "Buying ERIE on 2012-11-30 00:00:00\n", - "Buying MKTX on 2012-11-30 00:00:00\n", - "Buying DG on 2012-11-30 00:00:00\n", - "Buying PPL on 2012-11-30 00:00:00\n", - "Buying SO on 2012-11-30 00:00:00\n", - "Buying AMT on 2012-11-30 00:00:00\n", - "Buying CLX on 2012-11-30 00:00:00\n", - "Buying O on 2012-11-30 00:00:00\n", - "Buying DUK on 2012-11-30 00:00:00\n", - "Buying CMS on 2012-11-30 00:00:00\n", - "Buying AEP on 2012-11-30 00:00:00\n", - "Buying WELL on 2012-11-30 00:00:00\n", - "Selling PH on 2012-11-30 00:00:00\n", - "Selling INCY on 2012-11-30 00:00:00\n", - "Selling GS on 2012-11-30 00:00:00\n", - "Selling PHM on 2012-11-30 00:00:00\n", - "Selling PTC on 2012-11-30 00:00:00\n", - "Selling VRTX on 2012-11-30 00:00:00\n", - "Selling GM on 2012-11-30 00:00:00\n", - "Selling LYB on 2012-11-30 00:00:00\n", - "Selling BWA on 2012-11-30 00:00:00\n", - "Selling FCX on 2012-11-30 00:00:00\n", - "Selling C on 2012-11-30 00:00:00\n", - "Selling STLD on 2012-11-30 00:00:00\n", - "Selling SWKS on 2012-11-30 00:00:00\n", - "Buying ERIE on 2012-12-31 00:00:00\n", - "Buying EXR on 2012-12-31 00:00:00\n", - "Buying AMT on 2012-12-31 00:00:00\n", - "Buying WELL on 2012-12-31 00:00:00\n", - "Buying DG on 2012-12-31 00:00:00\n", - "Buying O on 2012-12-31 00:00:00\n", - "Buying FDS on 2012-12-31 00:00:00\n", - "Buying SO on 2012-12-31 00:00:00\n", - "Buying PPL on 2012-12-31 00:00:00\n", - "Buying EPAM on 2012-12-31 00:00:00\n", - "Buying CVS on 2012-12-31 00:00:00\n", - "Buying ACGL on 2012-12-31 00:00:00\n", - "Buying D on 2012-12-31 00:00:00\n", - "Selling FCX on 2012-12-31 00:00:00\n", - "Selling PH on 2012-12-31 00:00:00\n", - "Selling PHM on 2012-12-31 00:00:00\n", - "Selling GM on 2012-12-31 00:00:00\n", - "Selling LYB on 2012-12-31 00:00:00\n", - "Selling A on 2012-12-31 00:00:00\n", - "Selling GS on 2012-12-31 00:00:00\n", - "Selling VRTX on 2012-12-31 00:00:00\n", - "Selling JBL on 2012-12-31 00:00:00\n", - "Selling C on 2012-12-31 00:00:00\n", - "Selling SWKS on 2012-12-31 00:00:00\n", - "Selling STLD on 2012-12-31 00:00:00\n", - "Selling INCY on 2012-12-31 00:00:00\n", - "Buying DG on 2013-01-31 00:00:00\n", - "Buying ACGL on 2013-01-31 00:00:00\n", - "Buying WELL on 2013-01-31 00:00:00\n", - "Buying ERIE on 2013-01-31 00:00:00\n", - "Buying COR on 2013-01-31 00:00:00\n", - "Buying MNST on 2013-01-31 00:00:00\n", - "Buying NFLX on 2013-01-31 00:00:00\n", - "Buying FDS on 2013-01-31 00:00:00\n", - "Buying EXR on 2013-01-31 00:00:00\n", - "Buying AMT on 2013-01-31 00:00:00\n", - "Buying O on 2013-01-31 00:00:00\n", - "Buying PPL on 2013-01-31 00:00:00\n", - "Buying CLX on 2013-01-31 00:00:00\n", - "Selling MAR on 2013-01-31 00:00:00\n", - "Selling BX on 2013-01-31 00:00:00\n", - "Selling HBAN on 2013-01-31 00:00:00\n", - "Selling PHM on 2013-01-31 00:00:00\n", - "Selling PSX on 2013-01-31 00:00:00\n", - "Selling A on 2013-01-31 00:00:00\n", - "Selling PARA on 2013-01-31 00:00:00\n", - "Selling C on 2013-01-31 00:00:00\n", - "Selling SWKS on 2013-01-31 00:00:00\n", - "Selling NOW on 2013-01-31 00:00:00\n", - "Selling JBL on 2013-01-31 00:00:00\n", - "Selling GS on 2013-01-31 00:00:00\n", - "Selling STLD on 2013-01-31 00:00:00\n", - "Buying EW on 2013-02-28 00:00:00\n", - "Buying WTW on 2013-02-28 00:00:00\n", - "Buying O on 2013-02-28 00:00:00\n", - "Buying WELL on 2013-02-28 00:00:00\n", - "Buying LH on 2013-02-28 00:00:00\n", - "Buying MNST on 2013-02-28 00:00:00\n", - "Buying DG on 2013-02-28 00:00:00\n", - "Buying NFLX on 2013-02-28 00:00:00\n", - "Buying MTCH on 2013-02-28 00:00:00\n", - "Buying ULTA on 2013-02-28 00:00:00\n", - "Buying ACGL on 2013-02-28 00:00:00\n", - "Buying DGX on 2013-02-28 00:00:00\n", - "Buying FDS on 2013-02-28 00:00:00\n", - "Selling FFIV on 2013-02-28 00:00:00\n", - "Selling C on 2013-02-28 00:00:00\n", - "Selling VRTX on 2013-02-28 00:00:00\n", - "Selling PARA on 2013-02-28 00:00:00\n", - "Selling JBL on 2013-02-28 00:00:00\n", - "Selling GS on 2013-02-28 00:00:00\n", - "Selling CE on 2013-02-28 00:00:00\n", - "Selling PSX on 2013-02-28 00:00:00\n", - "Selling NOW on 2013-02-28 00:00:00\n", - "Selling STLD on 2013-02-28 00:00:00\n", - "Selling PHM on 2013-02-28 00:00:00\n", - "Selling AXON on 2013-02-28 00:00:00\n", - "Selling SWKS on 2013-02-28 00:00:00\n", - "Buying NFLX on 2013-03-31 00:00:00\n", - "Buying MNST on 2013-03-31 00:00:00\n", - "Buying ERIE on 2013-03-31 00:00:00\n", - "Buying NEM on 2013-03-31 00:00:00\n", - "Buying EW on 2013-03-31 00:00:00\n", - "Buying ORLY on 2013-03-31 00:00:00\n", - "Buying WTW on 2013-03-31 00:00:00\n", - "Buying WELL on 2013-03-31 00:00:00\n", - "Buying O on 2013-03-31 00:00:00\n", - "Buying DGX on 2013-03-31 00:00:00\n", - "Buying DG on 2013-03-31 00:00:00\n", - "Buying LH on 2013-03-31 00:00:00\n", - "Buying MTCH on 2013-03-31 00:00:00\n", - "Selling STLD on 2013-03-31 00:00:00\n", - "Selling TXT on 2013-03-31 00:00:00\n", - "Selling PTC on 2013-03-31 00:00:00\n", - "Selling NUE on 2013-03-31 00:00:00\n", - "Selling PARA on 2013-03-31 00:00:00\n", - "Selling VRTX on 2013-03-31 00:00:00\n", - "Selling AXON on 2013-03-31 00:00:00\n", - "Selling PSX on 2013-03-31 00:00:00\n", - "Selling GS on 2013-03-31 00:00:00\n", - "Selling C on 2013-03-31 00:00:00\n", - "Selling PHM on 2013-03-31 00:00:00\n", - "Selling CE on 2013-03-31 00:00:00\n", - "Selling SWKS on 2013-03-31 00:00:00\n", - "Buying NCLH on 2013-04-30 00:00:00\n", - "Buying EW on 2013-04-30 00:00:00\n", - "Buying WTW on 2013-04-30 00:00:00\n", - "Buying LH on 2013-04-30 00:00:00\n", - "Buying SO on 2013-04-30 00:00:00\n", - "Buying D on 2013-04-30 00:00:00\n", - "Buying DG on 2013-04-30 00:00:00\n", - "Buying LDOS on 2013-04-30 00:00:00\n", - "Buying PPL on 2013-04-30 00:00:00\n", - "Buying GIS on 2013-04-30 00:00:00\n", - "Buying AJG on 2013-04-30 00:00:00\n", - "Buying CAH on 2013-04-30 00:00:00\n", - "Buying COR on 2013-04-30 00:00:00\n", - "Selling J on 2013-04-30 00:00:00\n", - "Selling PTC on 2013-04-30 00:00:00\n", - "Selling KMX on 2013-04-30 00:00:00\n", - "Selling BLK on 2013-04-30 00:00:00\n", - "Selling APTV on 2013-04-30 00:00:00\n", - "Selling PSX on 2013-04-30 00:00:00\n", - "Selling LYB on 2013-04-30 00:00:00\n", - "Selling AXON on 2013-04-30 00:00:00\n", - "Selling TXT on 2013-04-30 00:00:00\n", - "Selling CE on 2013-04-30 00:00:00\n", - "Selling SWKS on 2013-04-30 00:00:00\n", - "Selling PHM on 2013-04-30 00:00:00\n", - "Selling VRTX on 2013-04-30 00:00:00\n", - "Buying PPL on 2013-05-31 00:00:00\n", - "Buying COR on 2013-05-31 00:00:00\n", - "Buying LH on 2013-05-31 00:00:00\n", - "Buying DG on 2013-05-31 00:00:00\n", - "Buying WTW on 2013-05-31 00:00:00\n", - "Buying NCLH on 2013-05-31 00:00:00\n", - "Buying NEM on 2013-05-31 00:00:00\n", - "Buying ERIE on 2013-05-31 00:00:00\n", - "Buying T on 2013-05-31 00:00:00\n", - "Buying DUK on 2013-05-31 00:00:00\n", - "Buying SO on 2013-05-31 00:00:00\n", - "Buying GIS on 2013-05-31 00:00:00\n", - "Buying D on 2013-05-31 00:00:00\n", - "Selling MPWR on 2013-05-31 00:00:00\n", - "Selling APTV on 2013-05-31 00:00:00\n", - "Selling RJF on 2013-05-31 00:00:00\n", - "Selling SWKS on 2013-05-31 00:00:00\n", - "Selling BX on 2013-05-31 00:00:00\n", - "Selling MTD on 2013-05-31 00:00:00\n", - "Selling CE on 2013-05-31 00:00:00\n", - "Selling BLK on 2013-05-31 00:00:00\n", - "Selling LYB on 2013-05-31 00:00:00\n", - "Selling TXT on 2013-05-31 00:00:00\n", - "Selling APO on 2013-05-31 00:00:00\n", - "Selling PHM on 2013-05-31 00:00:00\n", - "Selling VRTX on 2013-05-31 00:00:00\n", - "Buying COR on 2013-06-30 00:00:00\n", - "Buying WTW on 2013-06-30 00:00:00\n", - "Buying LH on 2013-06-30 00:00:00\n", - "Buying PPL on 2013-06-30 00:00:00\n", - "Buying IRM on 2013-06-30 00:00:00\n", - "Buying ULTA on 2013-06-30 00:00:00\n", - "Buying DG on 2013-06-30 00:00:00\n", - "Buying NCLH on 2013-06-30 00:00:00\n", - "Buying GIS on 2013-06-30 00:00:00\n", - "Buying USB on 2013-06-30 00:00:00\n", - "Buying IDXX on 2013-06-30 00:00:00\n", - "Buying DUK on 2013-06-30 00:00:00\n", - "Buying T on 2013-06-30 00:00:00\n", - "Selling APTV on 2013-06-30 00:00:00\n", - "Selling LYB on 2013-06-30 00:00:00\n", - "Selling PSX on 2013-06-30 00:00:00\n", - "Selling MTD on 2013-06-30 00:00:00\n", - "Selling INCY on 2013-06-30 00:00:00\n", - "Selling CE on 2013-06-30 00:00:00\n", - "Selling KMX on 2013-06-30 00:00:00\n", - "Selling BX on 2013-06-30 00:00:00\n", - "Selling TXT on 2013-06-30 00:00:00\n", - "Selling BLK on 2013-06-30 00:00:00\n", - "Selling APO on 2013-06-30 00:00:00\n", - "Selling VRTX on 2013-06-30 00:00:00\n", - "Selling PHM on 2013-06-30 00:00:00\n", - "Buying ULTA on 2013-07-31 00:00:00\n", - "Buying IRM on 2013-07-31 00:00:00\n", - "Buying LH on 2013-07-31 00:00:00\n", - "Buying RMD on 2013-07-31 00:00:00\n", - "Buying DGX on 2013-07-31 00:00:00\n", - "Buying NEM on 2013-07-31 00:00:00\n", - "Buying USB on 2013-07-31 00:00:00\n", - "Buying COR on 2013-07-31 00:00:00\n", - "Buying PPL on 2013-07-31 00:00:00\n", - "Buying LYV on 2013-07-31 00:00:00\n", - "Buying CBOE on 2013-07-31 00:00:00\n", - "Buying SJM on 2013-07-31 00:00:00\n", - "Buying NCLH on 2013-07-31 00:00:00\n", - "Selling WELL on 2013-07-31 00:00:00\n", - "Selling PSX on 2013-07-31 00:00:00\n", - "Selling GM on 2013-07-31 00:00:00\n", - "Selling LVS on 2013-07-31 00:00:00\n", - "Selling TXT on 2013-07-31 00:00:00\n", - "Selling GS on 2013-07-31 00:00:00\n", - "Selling KMX on 2013-07-31 00:00:00\n", - "Selling INCY on 2013-07-31 00:00:00\n", - "Selling C on 2013-07-31 00:00:00\n", - "Selling BX on 2013-07-31 00:00:00\n", - "Selling APO on 2013-07-31 00:00:00\n", - "Selling BLK on 2013-07-31 00:00:00\n", - "Selling PHM on 2013-07-31 00:00:00\n", - "Buying AXON on 2013-08-31 00:00:00\n", - "Buying IRM on 2013-08-31 00:00:00\n", - "Buying RMD on 2013-08-31 00:00:00\n", - "Buying LH on 2013-08-31 00:00:00\n", - "Buying DGX on 2013-08-31 00:00:00\n", - "Buying ULTA on 2013-08-31 00:00:00\n", - "Buying LYV on 2013-08-31 00:00:00\n", - "Buying USB on 2013-08-31 00:00:00\n", - "Buying PPL on 2013-08-31 00:00:00\n", - "Buying CHD on 2013-08-31 00:00:00\n", - "Buying VRSK on 2013-08-31 00:00:00\n", - "Buying NCLH on 2013-08-31 00:00:00\n", - "Buying BDX on 2013-08-31 00:00:00\n", - "Selling GM on 2013-08-31 00:00:00\n", - "Selling APO on 2013-08-31 00:00:00\n", - "Selling GS on 2013-08-31 00:00:00\n", - "Selling NFLX on 2013-08-31 00:00:00\n", - "Selling C on 2013-08-31 00:00:00\n", - "Selling TXT on 2013-08-31 00:00:00\n", - "Selling LVS on 2013-08-31 00:00:00\n", - "Selling BWA on 2013-08-31 00:00:00\n", - "Selling FFIV on 2013-08-31 00:00:00\n", - "Selling KMX on 2013-08-31 00:00:00\n", - "Selling PHM on 2013-08-31 00:00:00\n", - "Selling BLK on 2013-08-31 00:00:00\n", - "Selling BX on 2013-08-31 00:00:00\n", - "Buying AXON on 2013-09-30 00:00:00\n", - "Buying LDOS on 2013-09-30 00:00:00\n", - "Buying LH on 2013-09-30 00:00:00\n", - "Buying DGX on 2013-09-30 00:00:00\n", - "Buying NWSA on 2013-09-30 00:00:00\n", - "Buying INCY on 2013-09-30 00:00:00\n", - "Buying NCLH on 2013-09-30 00:00:00\n", - "Buying CCI on 2013-09-30 00:00:00\n", - "Buying ERIE on 2013-09-30 00:00:00\n", - "Buying CLX on 2013-09-30 00:00:00\n", - "Buying MPWR on 2013-09-30 00:00:00\n", - "Buying ACGL on 2013-09-30 00:00:00\n", - "Buying USB on 2013-09-30 00:00:00\n", - "Selling PARA on 2013-09-30 00:00:00\n", - "Selling GS on 2013-09-30 00:00:00\n", - "Selling ULTA on 2013-09-30 00:00:00\n", - "Selling NFLX on 2013-09-30 00:00:00\n", - "Selling BLK on 2013-09-30 00:00:00\n", - "Selling C on 2013-09-30 00:00:00\n", - "Selling GM on 2013-09-30 00:00:00\n", - "Selling APO on 2013-09-30 00:00:00\n", - "Selling PKG on 2013-09-30 00:00:00\n", - "Selling BX on 2013-09-30 00:00:00\n", - "Selling PHM on 2013-09-30 00:00:00\n", - "Selling TXT on 2013-09-30 00:00:00\n", - "Selling FFIV on 2013-09-30 00:00:00\n", - "Buying DGX on 2013-10-31 00:00:00\n", - "Buying LH on 2013-10-31 00:00:00\n", - "Buying AXON on 2013-10-31 00:00:00\n", - "Buying LDOS on 2013-10-31 00:00:00\n", - "Buying CCI on 2013-10-31 00:00:00\n", - "Buying NWSA on 2013-10-31 00:00:00\n", - "Buying GEN on 2013-10-31 00:00:00\n", - "Buying ERIE on 2013-10-31 00:00:00\n", - "Buying TRGP on 2013-10-31 00:00:00\n", - "Buying NCLH on 2013-10-31 00:00:00\n", - "Buying NEM on 2013-10-31 00:00:00\n", - "Buying NRG on 2013-10-31 00:00:00\n", - "Buying AEP on 2013-10-31 00:00:00\n", - "Selling TXT on 2013-10-31 00:00:00\n", - "Selling APO on 2013-10-31 00:00:00\n", - "Selling PHM on 2013-10-31 00:00:00\n", - "Selling BLK on 2013-10-31 00:00:00\n", - "Selling AMZN on 2013-10-31 00:00:00\n", - "Selling DFS on 2013-10-31 00:00:00\n", - "Selling PARA on 2013-10-31 00:00:00\n", - "Selling BX on 2013-10-31 00:00:00\n", - "Selling GILD on 2013-10-31 00:00:00\n", - "Selling EPAM on 2013-10-31 00:00:00\n", - "Selling NFLX on 2013-10-31 00:00:00\n", - "Selling FFIV on 2013-10-31 00:00:00\n", - "Selling NOW on 2013-10-31 00:00:00\n", - "Buying DGX on 2013-11-30 00:00:00\n", - "Buying LH on 2013-11-30 00:00:00\n", - "Buying ERIE on 2013-11-30 00:00:00\n", - "Buying LDOS on 2013-11-30 00:00:00\n", - "Buying LYV on 2013-11-30 00:00:00\n", - "Buying CDW on 2013-11-30 00:00:00\n", - "Buying IDXX on 2013-11-30 00:00:00\n", - "Buying MNST on 2013-11-30 00:00:00\n", - "Buying EW on 2013-11-30 00:00:00\n", - "Buying ZBH on 2013-11-30 00:00:00\n", - "Buying GEN on 2013-11-30 00:00:00\n", - "Buying CCI on 2013-11-30 00:00:00\n", - "Buying PAYX on 2013-11-30 00:00:00\n", - "Selling APO on 2013-11-30 00:00:00\n", - "Selling PHM on 2013-11-30 00:00:00\n", - "Selling PKG on 2013-11-30 00:00:00\n", - "Selling GILD on 2013-11-30 00:00:00\n", - "Selling ADBE on 2013-11-30 00:00:00\n", - "Selling AXON on 2013-11-30 00:00:00\n", - "Selling AMZN on 2013-11-30 00:00:00\n", - "Selling EPAM on 2013-11-30 00:00:00\n", - "Selling CRM on 2013-11-30 00:00:00\n", - "Selling BX on 2013-11-30 00:00:00\n", - "Selling NFLX on 2013-11-30 00:00:00\n", - "Selling INCY on 2013-11-30 00:00:00\n", - "Selling NOW on 2013-11-30 00:00:00\n", - "Buying JBL on 2013-12-31 00:00:00\n", - "Buying DGX on 2013-12-31 00:00:00\n", - "Buying ULTA on 2013-12-31 00:00:00\n", - "Buying IDXX on 2013-12-31 00:00:00\n", - "Buying MNST on 2013-12-31 00:00:00\n", - "Buying DLTR on 2013-12-31 00:00:00\n", - "Buying CCI on 2013-12-31 00:00:00\n", - "Buying GEN on 2013-12-31 00:00:00\n", - "Buying AEP on 2013-12-31 00:00:00\n", - "Buying SO on 2013-12-31 00:00:00\n", - "Buying CDW on 2013-12-31 00:00:00\n", - "Buying CSX on 2013-12-31 00:00:00\n", - "Buying ERIE on 2013-12-31 00:00:00\n", - "Selling HBAN on 2013-12-31 00:00:00\n", - "Selling APTV on 2013-12-31 00:00:00\n", - "Selling VRTX on 2013-12-31 00:00:00\n", - "Selling PARA on 2013-12-31 00:00:00\n", - "Selling CRM on 2013-12-31 00:00:00\n", - "Selling AXON on 2013-12-31 00:00:00\n", - "Selling AMZN on 2013-12-31 00:00:00\n", - "Selling BLK on 2013-12-31 00:00:00\n", - "Selling BX on 2013-12-31 00:00:00\n", - "Selling EPAM on 2013-12-31 00:00:00\n", - "Selling GILD on 2013-12-31 00:00:00\n", - "Selling NOW on 2013-12-31 00:00:00\n", - "Selling INCY on 2013-12-31 00:00:00\n", - "Buying NFLX on 2014-01-31 00:00:00\n", - "Buying JBL on 2014-01-31 00:00:00\n", - "Buying ULTA on 2014-01-31 00:00:00\n", - "Buying WELL on 2014-01-31 00:00:00\n", - "Buying NEM on 2014-01-31 00:00:00\n", - "Buying DGX on 2014-01-31 00:00:00\n", - "Buying DG on 2014-01-31 00:00:00\n", - "Buying KMX on 2014-01-31 00:00:00\n", - "Buying IDXX on 2014-01-31 00:00:00\n", - "Buying DLTR on 2014-01-31 00:00:00\n", - "Buying O on 2014-01-31 00:00:00\n", - "Buying DUK on 2014-01-31 00:00:00\n", - "Buying SO on 2014-01-31 00:00:00\n", - "Selling HBAN on 2014-01-31 00:00:00\n", - "Selling VRTX on 2014-01-31 00:00:00\n", - "Selling INCY on 2014-01-31 00:00:00\n", - "Selling MKTX on 2014-01-31 00:00:00\n", - "Selling TXT on 2014-01-31 00:00:00\n", - "Selling GILD on 2014-01-31 00:00:00\n", - "Selling APTV on 2014-01-31 00:00:00\n", - "Selling LVS on 2014-01-31 00:00:00\n", - "Selling BLK on 2014-01-31 00:00:00\n", - "Selling CRM on 2014-01-31 00:00:00\n", - "Selling AMZN on 2014-01-31 00:00:00\n", - "Selling NOW on 2014-01-31 00:00:00\n", - "Selling AXON on 2014-01-31 00:00:00\n", - "Buying NFLX on 2014-02-28 00:00:00\n", - "Buying ULTA on 2014-02-28 00:00:00\n", - "Buying KMX on 2014-02-28 00:00:00\n", - "Buying JBL on 2014-02-28 00:00:00\n", - "Buying WELL on 2014-02-28 00:00:00\n", - "Buying DUK on 2014-02-28 00:00:00\n", - "Buying SO on 2014-02-28 00:00:00\n", - "Buying PPL on 2014-02-28 00:00:00\n", - "Buying DG on 2014-02-28 00:00:00\n", - "Buying D on 2014-02-28 00:00:00\n", - "Buying DLTR on 2014-02-28 00:00:00\n", - "Buying AEP on 2014-02-28 00:00:00\n", - "Buying O on 2014-02-28 00:00:00\n", - "Selling AON on 2014-02-28 00:00:00\n", - "Selling CBOE on 2014-02-28 00:00:00\n", - "Selling VRTX on 2014-02-28 00:00:00\n", - "Selling PH on 2014-02-28 00:00:00\n", - "Selling CRM on 2014-02-28 00:00:00\n", - "Selling EPAM on 2014-02-28 00:00:00\n", - "Selling AXON on 2014-02-28 00:00:00\n", - "Selling MTD on 2014-02-28 00:00:00\n", - "Selling LVS on 2014-02-28 00:00:00\n", - "Selling AMZN on 2014-02-28 00:00:00\n", - "Selling TXT on 2014-02-28 00:00:00\n", - "Selling BLK on 2014-02-28 00:00:00\n", - "Selling NOW on 2014-02-28 00:00:00\n", - "Buying WELL on 2014-03-31 00:00:00\n", - "Buying DGX on 2014-03-31 00:00:00\n", - "Buying DUK on 2014-03-31 00:00:00\n", - "Buying SO on 2014-03-31 00:00:00\n", - "Buying PPL on 2014-03-31 00:00:00\n", - "Buying NFLX on 2014-03-31 00:00:00\n", - "Buying D on 2014-03-31 00:00:00\n", - "Buying CLX on 2014-03-31 00:00:00\n", - "Buying LH on 2014-03-31 00:00:00\n", - "Buying AEP on 2014-03-31 00:00:00\n", - "Buying NI on 2014-03-31 00:00:00\n", - "Buying CMS on 2014-03-31 00:00:00\n", - "Buying KMX on 2014-03-31 00:00:00\n", - "Selling BX on 2014-03-31 00:00:00\n", - "Selling MKTX on 2014-03-31 00:00:00\n", - "Selling AON on 2014-03-31 00:00:00\n", - "Selling BKNG on 2014-03-31 00:00:00\n", - "Selling AMZN on 2014-03-31 00:00:00\n", - "Selling TXT on 2014-03-31 00:00:00\n", - "Selling BLK on 2014-03-31 00:00:00\n", - "Selling MTD on 2014-03-31 00:00:00\n", - "Selling CRM on 2014-03-31 00:00:00\n", - "Selling LVS on 2014-03-31 00:00:00\n", - "Selling INCY on 2014-03-31 00:00:00\n", - "Selling NOW on 2014-03-31 00:00:00\n", - "Selling EPAM on 2014-03-31 00:00:00\n", - "Buying SO on 2014-04-30 00:00:00\n", - "Buying DUK on 2014-04-30 00:00:00\n", - "Buying WELL on 2014-04-30 00:00:00\n", - "Buying PPL on 2014-04-30 00:00:00\n", - "Buying CMS on 2014-04-30 00:00:00\n", - "Buying CLX on 2014-04-30 00:00:00\n", - "Buying O on 2014-04-30 00:00:00\n", - "Buying SRE on 2014-04-30 00:00:00\n", - "Buying PNW on 2014-04-30 00:00:00\n", - "Buying AEP on 2014-04-30 00:00:00\n", - "Buying DGX on 2014-04-30 00:00:00\n", - "Buying D on 2014-04-30 00:00:00\n", - "Buying T on 2014-04-30 00:00:00\n", - "Selling MPWR on 2014-04-30 00:00:00\n", - "Selling MNST on 2014-04-30 00:00:00\n", - "Selling FFIV on 2014-04-30 00:00:00\n", - "Selling AMZN on 2014-04-30 00:00:00\n", - "Selling CRM on 2014-04-30 00:00:00\n", - "Selling TXT on 2014-04-30 00:00:00\n", - "Selling LVS on 2014-04-30 00:00:00\n", - "Selling NFLX on 2014-04-30 00:00:00\n", - "Selling VRTX on 2014-04-30 00:00:00\n", - "Selling BKNG on 2014-04-30 00:00:00\n", - "Selling INCY on 2014-04-30 00:00:00\n", - "Selling NOW on 2014-04-30 00:00:00\n", - "Selling EPAM on 2014-04-30 00:00:00\n", - "Buying SO on 2014-05-31 00:00:00\n", - "Buying CMS on 2014-05-31 00:00:00\n", - "Buying NEM on 2014-05-31 00:00:00\n", - "Buying WELL on 2014-05-31 00:00:00\n", - "Buying PPL on 2014-05-31 00:00:00\n", - "Buying DUK on 2014-05-31 00:00:00\n", - "Buying CLX on 2014-05-31 00:00:00\n", - "Buying PNW on 2014-05-31 00:00:00\n", - "Buying SRE on 2014-05-31 00:00:00\n", - "Buying D on 2014-05-31 00:00:00\n", - "Buying O on 2014-05-31 00:00:00\n", - "Buying T on 2014-05-31 00:00:00\n", - "Buying AEP on 2014-05-31 00:00:00\n", - "Selling GILD on 2014-05-31 00:00:00\n", - "Selling FFIV on 2014-05-31 00:00:00\n", - "Selling TXT on 2014-05-31 00:00:00\n", - "Selling AMZN on 2014-05-31 00:00:00\n", - "Selling LVS on 2014-05-31 00:00:00\n", - "Selling EPAM on 2014-05-31 00:00:00\n", - "Selling CRM on 2014-05-31 00:00:00\n", - "Selling NFLX on 2014-05-31 00:00:00\n", - "Selling BKNG on 2014-05-31 00:00:00\n", - "Selling AXON on 2014-05-31 00:00:00\n", - "Selling VRTX on 2014-05-31 00:00:00\n", - "Selling INCY on 2014-05-31 00:00:00\n", - "Selling NOW on 2014-05-31 00:00:00\n", - "Buying WELL on 2014-06-30 00:00:00\n", - "Buying NEM on 2014-06-30 00:00:00\n", - "Buying SO on 2014-06-30 00:00:00\n", - "Buying DUK on 2014-06-30 00:00:00\n", - "Buying CMS on 2014-06-30 00:00:00\n", - "Buying CLX on 2014-06-30 00:00:00\n", - "Buying PNW on 2014-06-30 00:00:00\n", - "Buying PPL on 2014-06-30 00:00:00\n", - "Buying T on 2014-06-30 00:00:00\n", - "Buying SRE on 2014-06-30 00:00:00\n", - "Buying GEN on 2014-06-30 00:00:00\n", - "Buying O on 2014-06-30 00:00:00\n", - "Buying CHD on 2014-06-30 00:00:00\n", - "Selling MPWR on 2014-06-30 00:00:00\n", - "Selling LVS on 2014-06-30 00:00:00\n", - "Selling ADBE on 2014-06-30 00:00:00\n", - "Selling KMX on 2014-06-30 00:00:00\n", - "Selling LYV on 2014-06-30 00:00:00\n", - "Selling CRM on 2014-06-30 00:00:00\n", - "Selling TXT on 2014-06-30 00:00:00\n", - "Selling BKNG on 2014-06-30 00:00:00\n", - "Selling AMZN on 2014-06-30 00:00:00\n", - "Selling INCY on 2014-06-30 00:00:00\n", - "Selling AXON on 2014-06-30 00:00:00\n", - "Selling NFLX on 2014-06-30 00:00:00\n", - "Selling NOW on 2014-06-30 00:00:00\n", - "Buying WELL on 2014-07-31 00:00:00\n", - "Buying VRTX on 2014-07-31 00:00:00\n", - "Buying ALL on 2014-07-31 00:00:00\n", - "Buying DUK on 2014-07-31 00:00:00\n", - "Buying SO on 2014-07-31 00:00:00\n", - "Buying CMS on 2014-07-31 00:00:00\n", - "Buying PPL on 2014-07-31 00:00:00\n", - "Buying GEN on 2014-07-31 00:00:00\n", - "Buying NEM on 2014-07-31 00:00:00\n", - "Buying IRM on 2014-07-31 00:00:00\n", - "Buying ULTA on 2014-07-31 00:00:00\n", - "Buying T on 2014-07-31 00:00:00\n", - "Buying D on 2014-07-31 00:00:00\n", - "Selling BWA on 2014-07-31 00:00:00\n", - "Selling LYV on 2014-07-31 00:00:00\n", - "Selling PTC on 2014-07-31 00:00:00\n", - "Selling MPWR on 2014-07-31 00:00:00\n", - "Selling NOW on 2014-07-31 00:00:00\n", - "Selling ADBE on 2014-07-31 00:00:00\n", - "Selling KMX on 2014-07-31 00:00:00\n", - "Selling EPAM on 2014-07-31 00:00:00\n", - "Selling NFLX on 2014-07-31 00:00:00\n", - "Selling AMZN on 2014-07-31 00:00:00\n", - "Selling INCY on 2014-07-31 00:00:00\n", - "Selling SWKS on 2014-07-31 00:00:00\n", - "Selling AXON on 2014-07-31 00:00:00\n", - "Buying VRTX on 2014-08-31 00:00:00\n", - "Buying CBOE on 2014-08-31 00:00:00\n", - "Buying ALL on 2014-08-31 00:00:00\n", - "Buying RMD on 2014-08-31 00:00:00\n", - "Buying WELL on 2014-08-31 00:00:00\n", - "Buying O on 2014-08-31 00:00:00\n", - "Buying CLX on 2014-08-31 00:00:00\n", - "Buying NEM on 2014-08-31 00:00:00\n", - "Buying GEN on 2014-08-31 00:00:00\n", - "Buying DUK on 2014-08-31 00:00:00\n", - "Buying WTW on 2014-08-31 00:00:00\n", - "Buying SO on 2014-08-31 00:00:00\n", - "Buying ULTA on 2014-08-31 00:00:00\n", - "Selling TXT on 2014-08-31 00:00:00\n", - "Selling PHM on 2014-08-31 00:00:00\n", - "Selling BWA on 2014-08-31 00:00:00\n", - "Selling BX on 2014-08-31 00:00:00\n", - "Selling CRM on 2014-08-31 00:00:00\n", - "Selling BLK on 2014-08-31 00:00:00\n", - "Selling ADBE on 2014-08-31 00:00:00\n", - "Selling NOW on 2014-08-31 00:00:00\n", - "Selling KMX on 2014-08-31 00:00:00\n", - "Selling SWKS on 2014-08-31 00:00:00\n", - "Selling AMZN on 2014-08-31 00:00:00\n", - "Selling INCY on 2014-08-31 00:00:00\n", - "Selling AXON on 2014-08-31 00:00:00\n", - "Buying CLX on 2014-09-30 00:00:00\n", - "Buying ALL on 2014-09-30 00:00:00\n", - "Buying ULTA on 2014-09-30 00:00:00\n", - "Buying NEM on 2014-09-30 00:00:00\n", - "Buying CBOE on 2014-09-30 00:00:00\n", - "Buying RMD on 2014-09-30 00:00:00\n", - "Buying GEN on 2014-09-30 00:00:00\n", - "Buying WTW on 2014-09-30 00:00:00\n", - "Buying DUK on 2014-09-30 00:00:00\n", - "Buying O on 2014-09-30 00:00:00\n", - "Buying ACGL on 2014-09-30 00:00:00\n", - "Buying PPL on 2014-09-30 00:00:00\n", - "Buying SO on 2014-09-30 00:00:00\n", - "Selling BX on 2014-09-30 00:00:00\n", - "Selling JBL on 2014-09-30 00:00:00\n", - "Selling FFIV on 2014-09-30 00:00:00\n", - "Selling GILD on 2014-09-30 00:00:00\n", - "Selling BLK on 2014-09-30 00:00:00\n", - "Selling CRM on 2014-09-30 00:00:00\n", - "Selling KMX on 2014-09-30 00:00:00\n", - "Selling AMZN on 2014-09-30 00:00:00\n", - "Selling VRTX on 2014-09-30 00:00:00\n", - "Selling NOW on 2014-09-30 00:00:00\n", - "Selling SWKS on 2014-09-30 00:00:00\n", - "Selling INCY on 2014-09-30 00:00:00\n", - "Selling AXON on 2014-09-30 00:00:00\n", - "Buying SO on 2014-10-31 00:00:00\n", - "Buying O on 2014-10-31 00:00:00\n", - "Buying DUK on 2014-10-31 00:00:00\n", - "Buying WELL on 2014-10-31 00:00:00\n", - "Buying NEM on 2014-10-31 00:00:00\n", - "Buying CLX on 2014-10-31 00:00:00\n", - "Buying BDX on 2014-10-31 00:00:00\n", - "Buying EXR on 2014-10-31 00:00:00\n", - "Buying AEP on 2014-10-31 00:00:00\n", - "Buying CBOE on 2014-10-31 00:00:00\n", - "Buying CMS on 2014-10-31 00:00:00\n", - "Buying PPL on 2014-10-31 00:00:00\n", - "Buying ULTA on 2014-10-31 00:00:00\n", - "Selling PSX on 2014-10-31 00:00:00\n", - "Selling INCY on 2014-10-31 00:00:00\n", - "Selling CRM on 2014-10-31 00:00:00\n", - "Selling PH on 2014-10-31 00:00:00\n", - "Selling LYV on 2014-10-31 00:00:00\n", - "Selling KMX on 2014-10-31 00:00:00\n", - "Selling FFIV on 2014-10-31 00:00:00\n", - "Selling VRTX on 2014-10-31 00:00:00\n", - "Selling LYB on 2014-10-31 00:00:00\n", - "Selling MPWR on 2014-10-31 00:00:00\n", - "Selling TXT on 2014-10-31 00:00:00\n", - "Selling NOW on 2014-10-31 00:00:00\n", - "Selling SWKS on 2014-10-31 00:00:00\n", - "Buying O on 2014-11-30 00:00:00\n", - "Buying SO on 2014-11-30 00:00:00\n", - "Buying DUK on 2014-11-30 00:00:00\n", - "Buying WELL on 2014-11-30 00:00:00\n", - "Buying CLX on 2014-11-30 00:00:00\n", - "Buying CBOE on 2014-11-30 00:00:00\n", - "Buying NEM on 2014-11-30 00:00:00\n", - "Buying AEP on 2014-11-30 00:00:00\n", - "Buying CMS on 2014-11-30 00:00:00\n", - "Buying ULTA on 2014-11-30 00:00:00\n", - "Buying BDX on 2014-11-30 00:00:00\n", - "Buying REG on 2014-11-30 00:00:00\n", - "Buying ACGL on 2014-11-30 00:00:00\n", - "Selling FFIV on 2014-11-30 00:00:00\n", - "Selling ABBV on 2014-11-30 00:00:00\n", - "Selling CRM on 2014-11-30 00:00:00\n", - "Selling VRTX on 2014-11-30 00:00:00\n", - "Selling PSX on 2014-11-30 00:00:00\n", - "Selling PH on 2014-11-30 00:00:00\n", - "Selling KMX on 2014-11-30 00:00:00\n", - "Selling LYV on 2014-11-30 00:00:00\n", - "Selling TXT on 2014-11-30 00:00:00\n", - "Selling MPWR on 2014-11-30 00:00:00\n", - "Selling LYB on 2014-11-30 00:00:00\n", - "Selling NOW on 2014-11-30 00:00:00\n", - "Selling SWKS on 2014-11-30 00:00:00\n", - "Buying WELL on 2014-12-31 00:00:00\n", - "Buying O on 2014-12-31 00:00:00\n", - "Buying SO on 2014-12-31 00:00:00\n", - "Buying DUK on 2014-12-31 00:00:00\n", - "Buying ERIE on 2014-12-31 00:00:00\n", - "Buying CBOE on 2014-12-31 00:00:00\n", - "Buying ACGL on 2014-12-31 00:00:00\n", - "Buying CLX on 2014-12-31 00:00:00\n", - "Buying AEP on 2014-12-31 00:00:00\n", - "Buying CHD on 2014-12-31 00:00:00\n", - "Buying EXR on 2014-12-31 00:00:00\n", - "Buying REG on 2014-12-31 00:00:00\n", - "Buying JBHT on 2014-12-31 00:00:00\n", - "Selling APO on 2014-12-31 00:00:00\n", - "Selling CE on 2014-12-31 00:00:00\n", - "Selling JBL on 2014-12-31 00:00:00\n", - "Selling PSX on 2014-12-31 00:00:00\n", - "Selling CRM on 2014-12-31 00:00:00\n", - "Selling PH on 2014-12-31 00:00:00\n", - "Selling NOW on 2014-12-31 00:00:00\n", - "Selling MPWR on 2014-12-31 00:00:00\n", - "Selling ROK on 2014-12-31 00:00:00\n", - "Selling TXT on 2014-12-31 00:00:00\n", - "Selling SWKS on 2014-12-31 00:00:00\n", - "Selling LYB on 2014-12-31 00:00:00\n", - "Selling TRGP on 2014-12-31 00:00:00\n", - "Buying O on 2015-01-31 00:00:00\n", - "Buying WELL on 2015-01-31 00:00:00\n", - "Buying NEM on 2015-01-31 00:00:00\n", - "Buying CBOE on 2015-01-31 00:00:00\n", - "Buying DUK on 2015-01-31 00:00:00\n", - "Buying EXR on 2015-01-31 00:00:00\n", - "Buying ACGL on 2015-01-31 00:00:00\n", - "Buying FFIV on 2015-01-31 00:00:00\n", - "Buying VRSK on 2015-01-31 00:00:00\n", - "Buying SO on 2015-01-31 00:00:00\n", - "Buying HAS on 2015-01-31 00:00:00\n", - "Buying CLX on 2015-01-31 00:00:00\n", - "Buying AMZN on 2015-01-31 00:00:00\n", - "Selling CE on 2015-01-31 00:00:00\n", - "Selling A on 2015-01-31 00:00:00\n", - "Selling CRM on 2015-01-31 00:00:00\n", - "Selling C on 2015-01-31 00:00:00\n", - "Selling BWA on 2015-01-31 00:00:00\n", - "Selling SWKS on 2015-01-31 00:00:00\n", - "Selling PHM on 2015-01-31 00:00:00\n", - "Selling J on 2015-01-31 00:00:00\n", - "Selling PSX on 2015-01-31 00:00:00\n", - "Selling NFLX on 2015-01-31 00:00:00\n", - "Selling FCX on 2015-01-31 00:00:00\n", - "Selling LYB on 2015-01-31 00:00:00\n", - "Selling TRGP on 2015-01-31 00:00:00\n", - "Buying O on 2015-02-28 00:00:00\n", - "Buying WELL on 2015-02-28 00:00:00\n", - "Buying NEM on 2015-02-28 00:00:00\n", - "Buying CBOE on 2015-02-28 00:00:00\n", - "Buying DUK on 2015-02-28 00:00:00\n", - "Buying EXR on 2015-02-28 00:00:00\n", - "Buying SO on 2015-02-28 00:00:00\n", - "Buying HAS on 2015-02-28 00:00:00\n", - "Buying ACGL on 2015-02-28 00:00:00\n", - "Buying CLX on 2015-02-28 00:00:00\n", - "Buying VRSK on 2015-02-28 00:00:00\n", - "Buying AMZN on 2015-02-28 00:00:00\n", - "Buying FFIV on 2015-02-28 00:00:00\n", - "Selling STLD on 2015-02-28 00:00:00\n", - "Selling VRTX on 2015-02-28 00:00:00\n", - "Selling MSFT on 2015-02-28 00:00:00\n", - "Selling C on 2015-02-28 00:00:00\n", - "Selling A on 2015-02-28 00:00:00\n", - "Selling PSX on 2015-02-28 00:00:00\n", - "Selling NFLX on 2015-02-28 00:00:00\n", - "Selling BWA on 2015-02-28 00:00:00\n", - "Selling CRM on 2015-02-28 00:00:00\n", - "Selling J on 2015-02-28 00:00:00\n", - "Selling LYB on 2015-02-28 00:00:00\n", - "Selling TRGP on 2015-02-28 00:00:00\n", - "Selling FCX on 2015-02-28 00:00:00\n", - "Buying NEM on 2015-03-31 00:00:00\n", - "Buying CBOE on 2015-03-31 00:00:00\n", - "Buying O on 2015-03-31 00:00:00\n", - "Buying WELL on 2015-03-31 00:00:00\n", - "Buying FFIV on 2015-03-31 00:00:00\n", - "Buying DUK on 2015-03-31 00:00:00\n", - "Buying SO on 2015-03-31 00:00:00\n", - "Buying BX on 2015-03-31 00:00:00\n", - "Buying INCY on 2015-03-31 00:00:00\n", - "Buying CRL on 2015-03-31 00:00:00\n", - "Buying ACGL on 2015-03-31 00:00:00\n", - "Buying CLX on 2015-03-31 00:00:00\n", - "Buying COR on 2015-03-31 00:00:00\n", - "Selling A on 2015-03-31 00:00:00\n", - "Selling PHM on 2015-03-31 00:00:00\n", - "Selling SWKS on 2015-03-31 00:00:00\n", - "Selling TRGP on 2015-03-31 00:00:00\n", - "Selling GS on 2015-03-31 00:00:00\n", - "Selling GEN on 2015-03-31 00:00:00\n", - "Selling NFLX on 2015-03-31 00:00:00\n", - "Selling PSX on 2015-03-31 00:00:00\n", - "Selling TSCO on 2015-03-31 00:00:00\n", - "Selling LYB on 2015-03-31 00:00:00\n", - "Selling BWA on 2015-03-31 00:00:00\n", - "Selling STLD on 2015-03-31 00:00:00\n", - "Selling FCX on 2015-03-31 00:00:00\n", - "Buying CE on 2015-04-30 00:00:00\n", - "Buying APO on 2015-04-30 00:00:00\n", - "Buying CBOE on 2015-04-30 00:00:00\n", - "Buying SJM on 2015-04-30 00:00:00\n", - "Buying BX on 2015-04-30 00:00:00\n", - "Buying ULTA on 2015-04-30 00:00:00\n", - "Buying SYY on 2015-04-30 00:00:00\n", - "Buying ACGL on 2015-04-30 00:00:00\n", - "Buying WTW on 2015-04-30 00:00:00\n", - "Buying SYF on 2015-04-30 00:00:00\n", - "Buying GIS on 2015-04-30 00:00:00\n", - "Buying CLX on 2015-04-30 00:00:00\n", - "Buying GWW on 2015-04-30 00:00:00\n", - "Selling PPL on 2015-04-30 00:00:00\n", - "Selling BLK on 2015-04-30 00:00:00\n", - "Selling VRTX on 2015-04-30 00:00:00\n", - "Selling ORLY on 2015-04-30 00:00:00\n", - "Selling NUE on 2015-04-30 00:00:00\n", - "Selling ZBH on 2015-04-30 00:00:00\n", - "Selling MAR on 2015-04-30 00:00:00\n", - "Selling GEN on 2015-04-30 00:00:00\n", - "Selling LDOS on 2015-04-30 00:00:00\n", - "Selling BWA on 2015-04-30 00:00:00\n", - "Selling FCX on 2015-04-30 00:00:00\n", - "Selling NOW on 2015-04-30 00:00:00\n", - "Selling STLD on 2015-04-30 00:00:00\n", - "Buying CBOE on 2015-05-31 00:00:00\n", - "Buying CE on 2015-05-31 00:00:00\n", - "Buying APO on 2015-05-31 00:00:00\n", - "Buying BX on 2015-05-31 00:00:00\n", - "Buying CDW on 2015-05-31 00:00:00\n", - "Buying SYF on 2015-05-31 00:00:00\n", - "Buying MNST on 2015-05-31 00:00:00\n", - "Buying ULTA on 2015-05-31 00:00:00\n", - "Buying NFLX on 2015-05-31 00:00:00\n", - "Buying SYY on 2015-05-31 00:00:00\n", - "Buying WTW on 2015-05-31 00:00:00\n", - "Buying SJM on 2015-05-31 00:00:00\n", - "Buying RJF on 2015-05-31 00:00:00\n", - "Selling CMS on 2015-05-31 00:00:00\n", - "Selling PPL on 2015-05-31 00:00:00\n", - "Selling AON on 2015-05-31 00:00:00\n", - "Selling EW on 2015-05-31 00:00:00\n", - "Selling MAR on 2015-05-31 00:00:00\n", - "Selling VRTX on 2015-05-31 00:00:00\n", - "Selling NOW on 2015-05-31 00:00:00\n", - "Selling GEN on 2015-05-31 00:00:00\n", - "Selling STLD on 2015-05-31 00:00:00\n", - "Selling NRG on 2015-05-31 00:00:00\n", - "Selling LDOS on 2015-05-31 00:00:00\n", - "Selling FCX on 2015-05-31 00:00:00\n", - "Selling SWKS on 2015-05-31 00:00:00\n", - "Buying CE on 2015-06-30 00:00:00\n", - "Buying CBOE on 2015-06-30 00:00:00\n", - "Buying NEM on 2015-06-30 00:00:00\n", - "Buying APO on 2015-06-30 00:00:00\n", - "Buying CCI on 2015-06-30 00:00:00\n", - "Buying SYY on 2015-06-30 00:00:00\n", - "Buying MNST on 2015-06-30 00:00:00\n", - "Buying RMD on 2015-06-30 00:00:00\n", - "Buying ERIE on 2015-06-30 00:00:00\n", - "Buying TAP on 2015-06-30 00:00:00\n", - "Buying SO on 2015-06-30 00:00:00\n", - "Buying SYF on 2015-06-30 00:00:00\n", - "Buying NFLX on 2015-06-30 00:00:00\n", - "Selling LDOS on 2015-06-30 00:00:00\n", - "Selling MAR on 2015-06-30 00:00:00\n", - "Selling AMZN on 2015-06-30 00:00:00\n", - "Selling LYV on 2015-06-30 00:00:00\n", - "Selling LVS on 2015-06-30 00:00:00\n", - "Selling MSFT on 2015-06-30 00:00:00\n", - "Selling INCY on 2015-06-30 00:00:00\n", - "Selling CSX on 2015-06-30 00:00:00\n", - "Selling NRG on 2015-06-30 00:00:00\n", - "Selling GILD on 2015-06-30 00:00:00\n", - "Selling VRTX on 2015-06-30 00:00:00\n", - "Selling NOW on 2015-06-30 00:00:00\n", - "Selling SWKS on 2015-06-30 00:00:00\n", - "Buying NEM on 2015-07-31 00:00:00\n", - "Buying CBOE on 2015-07-31 00:00:00\n", - "Buying SO on 2015-07-31 00:00:00\n", - "Buying SYY on 2015-07-31 00:00:00\n", - "Buying WELL on 2015-07-31 00:00:00\n", - "Buying D on 2015-07-31 00:00:00\n", - "Buying NI on 2015-07-31 00:00:00\n", - "Buying CCI on 2015-07-31 00:00:00\n", - "Buying AEP on 2015-07-31 00:00:00\n", - "Buying DUK on 2015-07-31 00:00:00\n", - "Buying MNST on 2015-07-31 00:00:00\n", - "Buying IDXX on 2015-07-31 00:00:00\n", - "Buying SRE on 2015-07-31 00:00:00\n", - "Selling MAR on 2015-07-31 00:00:00\n", - "Selling J on 2015-07-31 00:00:00\n", - "Selling LDOS on 2015-07-31 00:00:00\n", - "Selling NFLX on 2015-07-31 00:00:00\n", - "Selling GILD on 2015-07-31 00:00:00\n", - "Selling TXT on 2015-07-31 00:00:00\n", - "Selling LVS on 2015-07-31 00:00:00\n", - "Selling NRG on 2015-07-31 00:00:00\n", - "Selling INCY on 2015-07-31 00:00:00\n", - "Selling PSX on 2015-07-31 00:00:00\n", - "Selling VRTX on 2015-07-31 00:00:00\n", - "Selling SWKS on 2015-07-31 00:00:00\n", - "Selling FCX on 2015-07-31 00:00:00\n", - "Buying SYF on 2015-08-31 00:00:00\n", - "Buying SYY on 2015-08-31 00:00:00\n", - "Buying PNW on 2015-08-31 00:00:00\n", - "Buying SRE on 2015-08-31 00:00:00\n", - "Buying CBOE on 2015-08-31 00:00:00\n", - "Buying WELL on 2015-08-31 00:00:00\n", - "Buying D on 2015-08-31 00:00:00\n", - "Buying PTC on 2015-08-31 00:00:00\n", - "Buying NEM on 2015-08-31 00:00:00\n", - "Buying SO on 2015-08-31 00:00:00\n", - "Buying BF-B on 2015-08-31 00:00:00\n", - "Buying O on 2015-08-31 00:00:00\n", - "Buying CMS on 2015-08-31 00:00:00\n", - "Selling RJF on 2015-08-31 00:00:00\n", - "Selling AMZN on 2015-08-31 00:00:00\n", - "Selling PSX on 2015-08-31 00:00:00\n", - "Selling TXT on 2015-08-31 00:00:00\n", - "Selling BX on 2015-08-31 00:00:00\n", - "Selling CE on 2015-08-31 00:00:00\n", - "Selling SWKS on 2015-08-31 00:00:00\n", - "Selling AXON on 2015-08-31 00:00:00\n", - "Selling TRGP on 2015-08-31 00:00:00\n", - "Selling INCY on 2015-08-31 00:00:00\n", - "Selling VRTX on 2015-08-31 00:00:00\n", - "Selling NFLX on 2015-08-31 00:00:00\n", - "Selling FCX on 2015-08-31 00:00:00\n", - "Buying SYF on 2015-09-30 00:00:00\n", - "Buying SRE on 2015-09-30 00:00:00\n", - "Buying PNW on 2015-09-30 00:00:00\n", - "Buying WELL on 2015-09-30 00:00:00\n", - "Buying SO on 2015-09-30 00:00:00\n", - "Buying SYY on 2015-09-30 00:00:00\n", - "Buying CMS on 2015-09-30 00:00:00\n", - "Buying ACGL on 2015-09-30 00:00:00\n", - "Buying WTW on 2015-09-30 00:00:00\n", - "Buying D on 2015-09-30 00:00:00\n", - "Buying O on 2015-09-30 00:00:00\n", - "Buying ERIE on 2015-09-30 00:00:00\n", - "Buying CBOE on 2015-09-30 00:00:00\n", - "Selling C on 2015-09-30 00:00:00\n", - "Selling TXT on 2015-09-30 00:00:00\n", - "Selling STLD on 2015-09-30 00:00:00\n", - "Selling LYB on 2015-09-30 00:00:00\n", - "Selling AXON on 2015-09-30 00:00:00\n", - "Selling TRGP on 2015-09-30 00:00:00\n", - "Selling CE on 2015-09-30 00:00:00\n", - "Selling SWKS on 2015-09-30 00:00:00\n", - "Selling BX on 2015-09-30 00:00:00\n", - "Selling NFLX on 2015-09-30 00:00:00\n", - "Selling VRTX on 2015-09-30 00:00:00\n", - "Selling INCY on 2015-09-30 00:00:00\n", - "Selling FCX on 2015-09-30 00:00:00\n", - "Buying SYF on 2015-10-31 00:00:00\n", - "Buying PNW on 2015-10-31 00:00:00\n", - "Buying SRE on 2015-10-31 00:00:00\n", - "Buying D on 2015-10-31 00:00:00\n", - "Buying SO on 2015-10-31 00:00:00\n", - "Buying WELL on 2015-10-31 00:00:00\n", - "Buying CMS on 2015-10-31 00:00:00\n", - "Buying SYY on 2015-10-31 00:00:00\n", - "Buying CBOE on 2015-10-31 00:00:00\n", - "Buying DG on 2015-10-31 00:00:00\n", - "Buying ACGL on 2015-10-31 00:00:00\n", - "Buying AEP on 2015-10-31 00:00:00\n", - "Buying WTW on 2015-10-31 00:00:00\n", - "Selling NWSA on 2015-10-31 00:00:00\n", - "Selling CSX on 2015-10-31 00:00:00\n", - "Selling MSFT on 2015-10-31 00:00:00\n", - "Selling STLD on 2015-10-31 00:00:00\n", - "Selling AXON on 2015-10-31 00:00:00\n", - "Selling AMZN on 2015-10-31 00:00:00\n", - "Selling CE on 2015-10-31 00:00:00\n", - "Selling NFLX on 2015-10-31 00:00:00\n", - "Selling BX on 2015-10-31 00:00:00\n", - "Selling VRTX on 2015-10-31 00:00:00\n", - "Selling TRGP on 2015-10-31 00:00:00\n", - "Selling INCY on 2015-10-31 00:00:00\n", - "Selling FCX on 2015-10-31 00:00:00\n", - "Buying D on 2015-11-30 00:00:00\n", - "Buying SO on 2015-11-30 00:00:00\n", - "Buying TAP on 2015-11-30 00:00:00\n", - "Buying AEP on 2015-11-30 00:00:00\n", - "Buying SYF on 2015-11-30 00:00:00\n", - "Buying PPL on 2015-11-30 00:00:00\n", - "Buying CBOE on 2015-11-30 00:00:00\n", - "Buying ACGL on 2015-11-30 00:00:00\n", - "Buying SRE on 2015-11-30 00:00:00\n", - "Buying CMS on 2015-11-30 00:00:00\n", - "Buying WELL on 2015-11-30 00:00:00\n", - "Buying ERIE on 2015-11-30 00:00:00\n", - "Buying PNW on 2015-11-30 00:00:00\n", - "Selling NOW on 2015-11-30 00:00:00\n", - "Selling CSX on 2015-11-30 00:00:00\n", - "Selling STLD on 2015-11-30 00:00:00\n", - "Selling SWKS on 2015-11-30 00:00:00\n", - "Selling VRTX on 2015-11-30 00:00:00\n", - "Selling NWSA on 2015-11-30 00:00:00\n", - "Selling NUE on 2015-11-30 00:00:00\n", - "Selling LVS on 2015-11-30 00:00:00\n", - "Selling AXON on 2015-11-30 00:00:00\n", - "Selling BX on 2015-11-30 00:00:00\n", - "Selling INCY on 2015-11-30 00:00:00\n", - "Selling TRGP on 2015-11-30 00:00:00\n", - "Selling FCX on 2015-11-30 00:00:00\n", - "Buying NRG on 2015-12-31 00:00:00\n", - "Buying COR on 2015-12-31 00:00:00\n", - "Buying TAP on 2015-12-31 00:00:00\n", - "Buying CF on 2015-12-31 00:00:00\n", - "Buying DG on 2015-12-31 00:00:00\n", - "Buying SO on 2015-12-31 00:00:00\n", - "Buying IDXX on 2015-12-31 00:00:00\n", - "Buying EXR on 2015-12-31 00:00:00\n", - "Buying DRI on 2015-12-31 00:00:00\n", - "Buying D on 2015-12-31 00:00:00\n", - "Buying DUK on 2015-12-31 00:00:00\n", - "Buying AEP on 2015-12-31 00:00:00\n", - "Buying WTW on 2015-12-31 00:00:00\n", - "Selling GILD on 2015-12-31 00:00:00\n", - "Selling LDOS on 2015-12-31 00:00:00\n", - "Selling LVS on 2015-12-31 00:00:00\n", - "Selling BX on 2015-12-31 00:00:00\n", - "Selling BLK on 2015-12-31 00:00:00\n", - "Selling BWA on 2015-12-31 00:00:00\n", - "Selling HBAN on 2015-12-31 00:00:00\n", - "Selling GS on 2015-12-31 00:00:00\n", - "Selling SWKS on 2015-12-31 00:00:00\n", - "Selling C on 2015-12-31 00:00:00\n", - "Selling AXON on 2015-12-31 00:00:00\n", - "Selling NWSA on 2015-12-31 00:00:00\n", - "Selling FCX on 2015-12-31 00:00:00\n", - "Buying NEM on 2016-01-31 00:00:00\n", - "Buying SO on 2016-01-31 00:00:00\n", - "Buying ACGL on 2016-01-31 00:00:00\n", - "Buying D on 2016-01-31 00:00:00\n", - "Buying DG on 2016-01-31 00:00:00\n", - "Buying COR on 2016-01-31 00:00:00\n", - "Buying DRI on 2016-01-31 00:00:00\n", - "Buying DUK on 2016-01-31 00:00:00\n", - "Buying SYY on 2016-01-31 00:00:00\n", - "Buying CBOE on 2016-01-31 00:00:00\n", - "Buying EXR on 2016-01-31 00:00:00\n", - "Buying PNW on 2016-01-31 00:00:00\n", - "Buying NRG on 2016-01-31 00:00:00\n", - "Selling JBL on 2016-01-31 00:00:00\n", - "Selling PHM on 2016-01-31 00:00:00\n", - "Selling PSX on 2016-01-31 00:00:00\n", - "Selling LVS on 2016-01-31 00:00:00\n", - "Selling GS on 2016-01-31 00:00:00\n", - "Selling INCY on 2016-01-31 00:00:00\n", - "Selling BLK on 2016-01-31 00:00:00\n", - "Selling BWA on 2016-01-31 00:00:00\n", - "Selling C on 2016-01-31 00:00:00\n", - "Selling BX on 2016-01-31 00:00:00\n", - "Selling SWKS on 2016-01-31 00:00:00\n", - "Selling FCX on 2016-01-31 00:00:00\n", - "Selling TRGP on 2016-01-31 00:00:00\n", - "Buying NEM on 2016-02-29 00:00:00\n", - "Buying SO on 2016-02-29 00:00:00\n", - "Buying DUK on 2016-02-29 00:00:00\n", - "Buying SYY on 2016-02-29 00:00:00\n", - "Buying ACGL on 2016-02-29 00:00:00\n", - "Buying CMS on 2016-02-29 00:00:00\n", - "Buying CBOE on 2016-02-29 00:00:00\n", - "Buying PNW on 2016-02-29 00:00:00\n", - "Buying D on 2016-02-29 00:00:00\n", - "Buying COR on 2016-02-29 00:00:00\n", - "Buying O on 2016-02-29 00:00:00\n", - "Buying CLX on 2016-02-29 00:00:00\n", - "Buying AEP on 2016-02-29 00:00:00\n", - "Selling VRTX on 2016-02-29 00:00:00\n", - "Selling NOW on 2016-02-29 00:00:00\n", - "Selling BWA on 2016-02-29 00:00:00\n", - "Selling GS on 2016-02-29 00:00:00\n", - "Selling BLK on 2016-02-29 00:00:00\n", - "Selling LVS on 2016-02-29 00:00:00\n", - "Selling CRM on 2016-02-29 00:00:00\n", - "Selling C on 2016-02-29 00:00:00\n", - "Selling INCY on 2016-02-29 00:00:00\n", - "Selling BX on 2016-02-29 00:00:00\n", - "Selling SWKS on 2016-02-29 00:00:00\n", - "Selling FCX on 2016-02-29 00:00:00\n", - "Selling TRGP on 2016-02-29 00:00:00\n", - "Buying NEM on 2016-03-31 00:00:00\n", - "Buying SO on 2016-03-31 00:00:00\n", - "Buying CMS on 2016-03-31 00:00:00\n", - "Buying PNW on 2016-03-31 00:00:00\n", - "Buying DUK on 2016-03-31 00:00:00\n", - "Buying CBOE on 2016-03-31 00:00:00\n", - "Buying O on 2016-03-31 00:00:00\n", - "Buying CLX on 2016-03-31 00:00:00\n", - "Buying D on 2016-03-31 00:00:00\n", - "Buying SYY on 2016-03-31 00:00:00\n", - "Buying AEP on 2016-03-31 00:00:00\n", - "Buying ACGL on 2016-03-31 00:00:00\n", - "Buying T on 2016-03-31 00:00:00\n", - "Selling BWA on 2016-03-31 00:00:00\n", - "Selling STLD on 2016-03-31 00:00:00\n", - "Selling NCLH on 2016-03-31 00:00:00\n", - "Selling NOW on 2016-03-31 00:00:00\n", - "Selling LVS on 2016-03-31 00:00:00\n", - "Selling CRM on 2016-03-31 00:00:00\n", - "Selling INCY on 2016-03-31 00:00:00\n", - "Selling NRG on 2016-03-31 00:00:00\n", - "Selling C on 2016-03-31 00:00:00\n", - "Selling BX on 2016-03-31 00:00:00\n", - "Selling SWKS on 2016-03-31 00:00:00\n", - "Selling FCX on 2016-03-31 00:00:00\n", - "Selling TRGP on 2016-03-31 00:00:00\n", - "Buying NEM on 2016-04-30 00:00:00\n", - "Buying SO on 2016-04-30 00:00:00\n", - "Buying O on 2016-04-30 00:00:00\n", - "Buying CMS on 2016-04-30 00:00:00\n", - "Buying DUK on 2016-04-30 00:00:00\n", - "Buying PNW on 2016-04-30 00:00:00\n", - "Buying CLX on 2016-04-30 00:00:00\n", - "Buying CBOE on 2016-04-30 00:00:00\n", - "Buying PPL on 2016-04-30 00:00:00\n", - "Buying T on 2016-04-30 00:00:00\n", - "Buying AEP on 2016-04-30 00:00:00\n", - "Buying AON on 2016-04-30 00:00:00\n", - "Buying CHD on 2016-04-30 00:00:00\n", - "Selling LVS on 2016-04-30 00:00:00\n", - "Selling ADBE on 2016-04-30 00:00:00\n", - "Selling APTV on 2016-04-30 00:00:00\n", - "Selling INCY on 2016-04-30 00:00:00\n", - "Selling KMX on 2016-04-30 00:00:00\n", - "Selling VRTX on 2016-04-30 00:00:00\n", - "Selling CRM on 2016-04-30 00:00:00\n", - "Selling NRG on 2016-04-30 00:00:00\n", - "Selling SWKS on 2016-04-30 00:00:00\n", - "Selling BX on 2016-04-30 00:00:00\n", - "Selling C on 2016-04-30 00:00:00\n", - "Selling TRGP on 2016-04-30 00:00:00\n", - "Selling FCX on 2016-04-30 00:00:00\n", - "Buying NEM on 2016-05-31 00:00:00\n", - "Buying SO on 2016-05-31 00:00:00\n", - "Buying CHD on 2016-05-31 00:00:00\n", - "Buying DUK on 2016-05-31 00:00:00\n", - "Buying CLX on 2016-05-31 00:00:00\n", - "Buying D on 2016-05-31 00:00:00\n", - "Buying CMS on 2016-05-31 00:00:00\n", - "Buying PNW on 2016-05-31 00:00:00\n", - "Buying O on 2016-05-31 00:00:00\n", - "Buying NI on 2016-05-31 00:00:00\n", - "Buying T on 2016-05-31 00:00:00\n", - "Buying PPL on 2016-05-31 00:00:00\n", - "Buying MNST on 2016-05-31 00:00:00\n", - "Selling NWSA on 2016-05-31 00:00:00\n", - "Selling LVS on 2016-05-31 00:00:00\n", - "Selling BLK on 2016-05-31 00:00:00\n", - "Selling C on 2016-05-31 00:00:00\n", - "Selling LYB on 2016-05-31 00:00:00\n", - "Selling BWA on 2016-05-31 00:00:00\n", - "Selling ULTA on 2016-05-31 00:00:00\n", - "Selling BX on 2016-05-31 00:00:00\n", - "Selling INCY on 2016-05-31 00:00:00\n", - "Selling RJF on 2016-05-31 00:00:00\n", - "Selling VRTX on 2016-05-31 00:00:00\n", - "Selling KMX on 2016-05-31 00:00:00\n", - "Selling FCX on 2016-05-31 00:00:00\n", - "Buying NEM on 2016-06-30 00:00:00\n", - "Buying CMS on 2016-06-30 00:00:00\n", - "Buying SO on 2016-06-30 00:00:00\n", - "Buying DUK on 2016-06-30 00:00:00\n", - "Buying CLX on 2016-06-30 00:00:00\n", - "Buying AEP on 2016-06-30 00:00:00\n", - "Buying PNW on 2016-06-30 00:00:00\n", - "Buying O on 2016-06-30 00:00:00\n", - "Buying D on 2016-06-30 00:00:00\n", - "Buying NI on 2016-06-30 00:00:00\n", - "Buying EXR on 2016-06-30 00:00:00\n", - "Buying DG on 2016-06-30 00:00:00\n", - "Buying WELL on 2016-06-30 00:00:00\n", - "Selling BLK on 2016-06-30 00:00:00\n", - "Selling BX on 2016-06-30 00:00:00\n", - "Selling VRTX on 2016-06-30 00:00:00\n", - "Selling SWKS on 2016-06-30 00:00:00\n", - "Selling EPAM on 2016-06-30 00:00:00\n", - "Selling BKNG on 2016-06-30 00:00:00\n", - "Selling RJF on 2016-06-30 00:00:00\n", - "Selling INCY on 2016-06-30 00:00:00\n", - "Selling HBAN on 2016-06-30 00:00:00\n", - "Selling C on 2016-06-30 00:00:00\n", - "Selling BWA on 2016-06-30 00:00:00\n", - "Selling APTV on 2016-06-30 00:00:00\n", - "Selling FCX on 2016-06-30 00:00:00\n", - "Buying NEM on 2016-07-31 00:00:00\n", - "Buying CMS on 2016-07-31 00:00:00\n", - "Buying DUK on 2016-07-31 00:00:00\n", - "Buying AEP on 2016-07-31 00:00:00\n", - "Buying PNW on 2016-07-31 00:00:00\n", - "Buying CLX on 2016-07-31 00:00:00\n", - "Buying SO on 2016-07-31 00:00:00\n", - "Buying O on 2016-07-31 00:00:00\n", - "Buying D on 2016-07-31 00:00:00\n", - "Buying NI on 2016-07-31 00:00:00\n", - "Buying EXR on 2016-07-31 00:00:00\n", - "Buying DG on 2016-07-31 00:00:00\n", - "Buying SJM on 2016-07-31 00:00:00\n", - "Selling VRTX on 2016-07-31 00:00:00\n", - "Selling INCY on 2016-07-31 00:00:00\n", - "Selling BKNG on 2016-07-31 00:00:00\n", - "Selling NRG on 2016-07-31 00:00:00\n", - "Selling SWKS on 2016-07-31 00:00:00\n", - "Selling RJF on 2016-07-31 00:00:00\n", - "Selling NOW on 2016-07-31 00:00:00\n", - "Selling EPAM on 2016-07-31 00:00:00\n", - "Selling HBAN on 2016-07-31 00:00:00\n", - "Selling C on 2016-07-31 00:00:00\n", - "Selling FCX on 2016-07-31 00:00:00\n", - "Selling BWA on 2016-07-31 00:00:00\n", - "Selling APTV on 2016-07-31 00:00:00\n", - "Buying NEM on 2016-08-31 00:00:00\n", - "Buying CMS on 2016-08-31 00:00:00\n", - "Buying CLX on 2016-08-31 00:00:00\n", - "Buying PNW on 2016-08-31 00:00:00\n", - "Buying DUK on 2016-08-31 00:00:00\n", - "Buying O on 2016-08-31 00:00:00\n", - "Buying AEP on 2016-08-31 00:00:00\n", - "Buying SO on 2016-08-31 00:00:00\n", - "Buying EXR on 2016-08-31 00:00:00\n", - "Buying NI on 2016-08-31 00:00:00\n", - "Buying SJM on 2016-08-31 00:00:00\n", - "Buying CCI on 2016-08-31 00:00:00\n", - "Buying D on 2016-08-31 00:00:00\n", - "Selling TRGP on 2016-08-31 00:00:00\n", - "Selling NRG on 2016-08-31 00:00:00\n", - "Selling BKNG on 2016-08-31 00:00:00\n", - "Selling NCLH on 2016-08-31 00:00:00\n", - "Selling EPAM on 2016-08-31 00:00:00\n", - "Selling CF on 2016-08-31 00:00:00\n", - "Selling NOW on 2016-08-31 00:00:00\n", - "Selling HBAN on 2016-08-31 00:00:00\n", - "Selling SWKS on 2016-08-31 00:00:00\n", - "Selling C on 2016-08-31 00:00:00\n", - "Selling BWA on 2016-08-31 00:00:00\n", - "Selling APTV on 2016-08-31 00:00:00\n", - "Selling FCX on 2016-08-31 00:00:00\n", - "Buying CVS on 2016-09-30 00:00:00\n", - "Buying SJM on 2016-09-30 00:00:00\n", - "Buying BMY on 2016-09-30 00:00:00\n", - "Buying ACGL on 2016-09-30 00:00:00\n", - "Buying MKTX on 2016-09-30 00:00:00\n", - "Buying GILD on 2016-09-30 00:00:00\n", - "Buying ICE on 2016-09-30 00:00:00\n", - "Buying EXR on 2016-09-30 00:00:00\n", - "Buying ERIE on 2016-09-30 00:00:00\n", - "Buying CBOE on 2016-09-30 00:00:00\n", - "Buying ORLY on 2016-09-30 00:00:00\n", - "Buying ALL on 2016-09-30 00:00:00\n", - "Buying VRSK on 2016-09-30 00:00:00\n", - "Selling KEYS on 2016-09-30 00:00:00\n", - "Selling BWA on 2016-09-30 00:00:00\n", - "Selling TDY on 2016-09-30 00:00:00\n", - "Selling VRTX on 2016-09-30 00:00:00\n", - "Selling NEM on 2016-09-30 00:00:00\n", - "Selling TRGP on 2016-09-30 00:00:00\n", - "Selling NUE on 2016-09-30 00:00:00\n", - "Selling SWKS on 2016-09-30 00:00:00\n", - "Selling CF on 2016-09-30 00:00:00\n", - "Selling KMX on 2016-09-30 00:00:00\n", - "Selling NOW on 2016-09-30 00:00:00\n", - "Selling NRG on 2016-09-30 00:00:00\n", - "Selling FCX on 2016-09-30 00:00:00\n", - "Buying ACGL on 2016-10-31 00:00:00\n", - "Buying EXR on 2016-10-31 00:00:00\n", - "Buying BMY on 2016-10-31 00:00:00\n", - "Buying ICE on 2016-10-31 00:00:00\n", - "Buying CBOE on 2016-10-31 00:00:00\n", - "Buying VRSK on 2016-10-31 00:00:00\n", - "Buying MKTX on 2016-10-31 00:00:00\n", - "Buying SJM on 2016-10-31 00:00:00\n", - "Buying CVS on 2016-10-31 00:00:00\n", - "Buying HAS on 2016-10-31 00:00:00\n", - "Buying NCLH on 2016-10-31 00:00:00\n", - "Buying ERIE on 2016-10-31 00:00:00\n", - "Buying ALL on 2016-10-31 00:00:00\n", - "Selling ZBH on 2016-10-31 00:00:00\n", - "Selling TRGP on 2016-10-31 00:00:00\n", - "Selling NUE on 2016-10-31 00:00:00\n", - "Selling CF on 2016-10-31 00:00:00\n", - "Selling CE on 2016-10-31 00:00:00\n", - "Selling NFLX on 2016-10-31 00:00:00\n", - "Selling NOW on 2016-10-31 00:00:00\n", - "Selling KMX on 2016-10-31 00:00:00\n", - "Selling SWKS on 2016-10-31 00:00:00\n", - "Selling VRTX on 2016-10-31 00:00:00\n", - "Selling NEM on 2016-10-31 00:00:00\n", - "Selling NRG on 2016-10-31 00:00:00\n", - "Selling FCX on 2016-10-31 00:00:00\n", - "Buying NCLH on 2016-11-30 00:00:00\n", - "Buying EXR on 2016-11-30 00:00:00\n", - "Buying ACGL on 2016-11-30 00:00:00\n", - "Buying TSCO on 2016-11-30 00:00:00\n", - "Buying SJM on 2016-11-30 00:00:00\n", - "Buying ERIE on 2016-11-30 00:00:00\n", - "Buying ALL on 2016-11-30 00:00:00\n", - "Buying VRSK on 2016-11-30 00:00:00\n", - "Buying LVS on 2016-11-30 00:00:00\n", - "Buying CVS on 2016-11-30 00:00:00\n", - "Buying CBOE on 2016-11-30 00:00:00\n", - "Buying PARA on 2016-11-30 00:00:00\n", - "Buying ORLY on 2016-11-30 00:00:00\n", - "Selling ROK on 2016-11-30 00:00:00\n", - "Selling CRL on 2016-11-30 00:00:00\n", - "Selling KMX on 2016-11-30 00:00:00\n", - "Selling STLD on 2016-11-30 00:00:00\n", - "Selling SYY on 2016-11-30 00:00:00\n", - "Selling TDY on 2016-11-30 00:00:00\n", - "Selling SWKS on 2016-11-30 00:00:00\n", - "Selling NUE on 2016-11-30 00:00:00\n", - "Selling MTCH on 2016-11-30 00:00:00\n", - "Selling INCY on 2016-11-30 00:00:00\n", - "Selling VRTX on 2016-11-30 00:00:00\n", - "Selling NRG on 2016-11-30 00:00:00\n", - "Selling FCX on 2016-11-30 00:00:00\n", - "Buying NEM on 2016-12-31 00:00:00\n", - "Buying REG on 2016-12-31 00:00:00\n", - "Buying ALL on 2016-12-31 00:00:00\n", - "Buying ACGL on 2016-12-31 00:00:00\n", - "Buying SO on 2016-12-31 00:00:00\n", - "Buying LVS on 2016-12-31 00:00:00\n", - "Buying ERIE on 2016-12-31 00:00:00\n", - "Buying PPL on 2016-12-31 00:00:00\n", - "Buying AMT on 2016-12-31 00:00:00\n", - "Buying FFIV on 2016-12-31 00:00:00\n", - "Buying FIS on 2016-12-31 00:00:00\n", - "Buying D on 2016-12-31 00:00:00\n", - "Buying WELL on 2016-12-31 00:00:00\n", - "Selling MPWR on 2016-12-31 00:00:00\n", - "Selling NOW on 2016-12-31 00:00:00\n", - "Selling PTC on 2016-12-31 00:00:00\n", - "Selling TDY on 2016-12-31 00:00:00\n", - "Selling DFS on 2016-12-31 00:00:00\n", - "Selling SYY on 2016-12-31 00:00:00\n", - "Selling BWA on 2016-12-31 00:00:00\n", - "Selling VRTX on 2016-12-31 00:00:00\n", - "Selling NUE on 2016-12-31 00:00:00\n", - "Selling FCX on 2016-12-31 00:00:00\n", - "Selling NRG on 2016-12-31 00:00:00\n", - "Selling INCY on 2016-12-31 00:00:00\n", - "Selling MTCH on 2016-12-31 00:00:00\n", - "Buying REG on 2017-01-31 00:00:00\n", - "Buying NEM on 2017-01-31 00:00:00\n", - "Buying WELL on 2017-01-31 00:00:00\n", - "Buying O on 2017-01-31 00:00:00\n", - "Buying SO on 2017-01-31 00:00:00\n", - "Buying VST on 2017-01-31 00:00:00\n", - "Buying AMT on 2017-01-31 00:00:00\n", - "Buying CVS on 2017-01-31 00:00:00\n", - "Buying BDX on 2017-01-31 00:00:00\n", - "Buying PPL on 2017-01-31 00:00:00\n", - "Buying CCI on 2017-01-31 00:00:00\n", - "Buying CMS on 2017-01-31 00:00:00\n", - "Buying T on 2017-01-31 00:00:00\n", - "Buying ALL on 2017-01-31 00:00:00\n", - "Selling HBAN on 2017-01-31 00:00:00\n", - "Selling PH on 2017-01-31 00:00:00\n", - "Selling BWA on 2017-01-31 00:00:00\n", - "Selling BX on 2017-01-31 00:00:00\n", - "Selling SYY on 2017-01-31 00:00:00\n", - "Selling CF on 2017-01-31 00:00:00\n", - "Selling C on 2017-01-31 00:00:00\n", - "Selling NOW on 2017-01-31 00:00:00\n", - "Selling ROK on 2017-01-31 00:00:00\n", - "Selling INCY on 2017-01-31 00:00:00\n", - "Selling MTCH on 2017-01-31 00:00:00\n", - "Selling NUE on 2017-01-31 00:00:00\n", - "Selling VRTX on 2017-01-31 00:00:00\n", - "Selling FCX on 2017-01-31 00:00:00\n", - "Buying BMY on 2017-02-28 00:00:00\n", - "Buying CSX on 2017-02-28 00:00:00\n", - "Buying AXON on 2017-02-28 00:00:00\n", - "Buying INCY on 2017-02-28 00:00:00\n", - "Buying SO on 2017-02-28 00:00:00\n", - "Buying NEM on 2017-02-28 00:00:00\n", - "Buying ABBV on 2017-02-28 00:00:00\n", - "Buying WELL on 2017-02-28 00:00:00\n", - "Buying T on 2017-02-28 00:00:00\n", - "Buying BDX on 2017-02-28 00:00:00\n", - "Buying ACGL on 2017-02-28 00:00:00\n", - "Buying CMS on 2017-02-28 00:00:00\n", - "Buying CVS on 2017-02-28 00:00:00\n", - "Buying ZBH on 2017-02-28 00:00:00\n", - "Selling HBAN on 2017-02-28 00:00:00\n", - "Selling CF on 2017-02-28 00:00:00\n", - "Selling SYF on 2017-02-28 00:00:00\n", - "Selling NCLH on 2017-02-28 00:00:00\n", - "Selling MKTX on 2017-02-28 00:00:00\n", - "Selling WFC on 2017-02-28 00:00:00\n", - "Selling C on 2017-02-28 00:00:00\n", - "Selling NRG on 2017-02-28 00:00:00\n", - "Selling APTV on 2017-02-28 00:00:00\n", - "Selling HWM on 2017-02-28 00:00:00\n", - "Selling GM on 2017-02-28 00:00:00\n", - "Selling BWA on 2017-02-28 00:00:00\n", - "Selling NOW on 2017-02-28 00:00:00\n", - "Selling BX on 2017-02-28 00:00:00\n", - "Buying SO on 2017-03-31 00:00:00\n", - "Buying DUK on 2017-03-31 00:00:00\n", - "Buying NEM on 2017-03-31 00:00:00\n", - "Buying CMS on 2017-03-31 00:00:00\n", - "Buying WELL on 2017-03-31 00:00:00\n", - "Buying AEP on 2017-03-31 00:00:00\n", - "Buying MNST on 2017-03-31 00:00:00\n", - "Buying D on 2017-03-31 00:00:00\n", - "Buying PPL on 2017-03-31 00:00:00\n", - "Buying CVS on 2017-03-31 00:00:00\n", - "Buying REG on 2017-03-31 00:00:00\n", - "Buying O on 2017-03-31 00:00:00\n", - "Buying PNW on 2017-03-31 00:00:00\n", - "Buying SRE on 2017-03-31 00:00:00\n", - "Selling KEYS on 2017-03-31 00:00:00\n", - "Selling SYF on 2017-03-31 00:00:00\n", - "Selling TDY on 2017-03-31 00:00:00\n", - "Selling NOW on 2017-03-31 00:00:00\n", - "Selling CAT on 2017-03-31 00:00:00\n", - "Selling GS on 2017-03-31 00:00:00\n", - "Selling MKTX on 2017-03-31 00:00:00\n", - "Selling ROK on 2017-03-31 00:00:00\n", - "Selling WFC on 2017-03-31 00:00:00\n", - "Selling RJF on 2017-03-31 00:00:00\n", - "Selling HWM on 2017-03-31 00:00:00\n", - "Selling NUE on 2017-03-31 00:00:00\n", - "Selling STLD on 2017-03-31 00:00:00\n", - "Selling HBAN on 2017-03-31 00:00:00\n", - "Buying SO on 2017-04-30 00:00:00\n", - "Buying DUK on 2017-04-30 00:00:00\n", - "Buying REG on 2017-04-30 00:00:00\n", - "Buying AEP on 2017-04-30 00:00:00\n", - "Buying CMS on 2017-04-30 00:00:00\n", - "Buying D on 2017-04-30 00:00:00\n", - "Buying WELL on 2017-04-30 00:00:00\n", - "Buying MNST on 2017-04-30 00:00:00\n", - "Buying PPL on 2017-04-30 00:00:00\n", - "Buying O on 2017-04-30 00:00:00\n", - "Buying PNW on 2017-04-30 00:00:00\n", - "Buying SRE on 2017-04-30 00:00:00\n", - "Buying NEM on 2017-04-30 00:00:00\n", - "Buying NI on 2017-04-30 00:00:00\n", - "Selling KEYS on 2017-04-30 00:00:00\n", - "Selling C on 2017-04-30 00:00:00\n", - "Selling GS on 2017-04-30 00:00:00\n", - "Selling RJF on 2017-04-30 00:00:00\n", - "Selling LOW on 2017-04-30 00:00:00\n", - "Selling FCX on 2017-04-30 00:00:00\n", - "Selling WFC on 2017-04-30 00:00:00\n", - "Selling TDY on 2017-04-30 00:00:00\n", - "Selling CAT on 2017-04-30 00:00:00\n", - "Selling HWM on 2017-04-30 00:00:00\n", - "Selling SYF on 2017-04-30 00:00:00\n", - "Selling NUE on 2017-04-30 00:00:00\n", - "Selling HBAN on 2017-04-30 00:00:00\n", - "Selling STLD on 2017-04-30 00:00:00\n", - "Buying EXR on 2017-05-31 00:00:00\n", - "Buying NEM on 2017-05-31 00:00:00\n", - "Buying BF-B on 2017-05-31 00:00:00\n", - "Buying SO on 2017-05-31 00:00:00\n", - "Buying O on 2017-05-31 00:00:00\n", - "Buying AMT on 2017-05-31 00:00:00\n", - "Buying REG on 2017-05-31 00:00:00\n", - "Buying DUK on 2017-05-31 00:00:00\n", - "Buying WELL on 2017-05-31 00:00:00\n", - "Buying PPL on 2017-05-31 00:00:00\n", - "Buying CCI on 2017-05-31 00:00:00\n", - "Buying AEP on 2017-05-31 00:00:00\n", - "Buying BDX on 2017-05-31 00:00:00\n", - "Buying CMS on 2017-05-31 00:00:00\n", - "Selling CF on 2017-05-31 00:00:00\n", - "Selling NFLX on 2017-05-31 00:00:00\n", - "Selling SYF on 2017-05-31 00:00:00\n", - "Selling KMX on 2017-05-31 00:00:00\n", - "Selling MPWR on 2017-05-31 00:00:00\n", - "Selling CAT on 2017-05-31 00:00:00\n", - "Selling BWA on 2017-05-31 00:00:00\n", - "Selling TDY on 2017-05-31 00:00:00\n", - "Selling GS on 2017-05-31 00:00:00\n", - "Selling NUE on 2017-05-31 00:00:00\n", - "Selling RJF on 2017-05-31 00:00:00\n", - "Selling FCX on 2017-05-31 00:00:00\n", - "Selling HBAN on 2017-05-31 00:00:00\n", - "Selling STLD on 2017-05-31 00:00:00\n", - "Buying EXR on 2017-06-30 00:00:00\n", - "Buying REG on 2017-06-30 00:00:00\n", - "Buying NEM on 2017-06-30 00:00:00\n", - "Buying CCI on 2017-06-30 00:00:00\n", - "Buying AMT on 2017-06-30 00:00:00\n", - "Buying BF-B on 2017-06-30 00:00:00\n", - "Buying DUK on 2017-06-30 00:00:00\n", - "Buying AEP on 2017-06-30 00:00:00\n", - "Buying CMS on 2017-06-30 00:00:00\n", - "Buying BDX on 2017-06-30 00:00:00\n", - "Buying WELL on 2017-06-30 00:00:00\n", - "Buying O on 2017-06-30 00:00:00\n", - "Buying PPL on 2017-06-30 00:00:00\n", - "Buying SO on 2017-06-30 00:00:00\n", - "Selling BWA on 2017-06-30 00:00:00\n", - "Selling JBL on 2017-06-30 00:00:00\n", - "Selling STLD on 2017-06-30 00:00:00\n", - "Selling GS on 2017-06-30 00:00:00\n", - "Selling CE on 2017-06-30 00:00:00\n", - "Selling RJF on 2017-06-30 00:00:00\n", - "Selling CF on 2017-06-30 00:00:00\n", - "Selling NCLH on 2017-06-30 00:00:00\n", - "Selling TDY on 2017-06-30 00:00:00\n", - "Selling NFLX on 2017-06-30 00:00:00\n", - "Selling PTC on 2017-06-30 00:00:00\n", - "Selling SWKS on 2017-06-30 00:00:00\n", - "Selling MPWR on 2017-06-30 00:00:00\n", - "Selling HWM on 2017-06-30 00:00:00\n", - "Buying BF-B on 2017-07-31 00:00:00\n", - "Buying EXR on 2017-07-31 00:00:00\n", - "Buying AMT on 2017-07-31 00:00:00\n", - "Buying AEP on 2017-07-31 00:00:00\n", - "Buying SO on 2017-07-31 00:00:00\n", - "Buying DUK on 2017-07-31 00:00:00\n", - "Buying PPL on 2017-07-31 00:00:00\n", - "Buying D on 2017-07-31 00:00:00\n", - "Buying DRI on 2017-07-31 00:00:00\n", - "Buying CMS on 2017-07-31 00:00:00\n", - "Buying NEM on 2017-07-31 00:00:00\n", - "Buying SRE on 2017-07-31 00:00:00\n", - "Buying ALL on 2017-07-31 00:00:00\n", - "Buying CCI on 2017-07-31 00:00:00\n", - "Selling MTCH on 2017-07-31 00:00:00\n", - "Selling JBL on 2017-07-31 00:00:00\n", - "Selling BWA on 2017-07-31 00:00:00\n", - "Selling TDY on 2017-07-31 00:00:00\n", - "Selling GEN on 2017-07-31 00:00:00\n", - "Selling NFLX on 2017-07-31 00:00:00\n", - "Selling CF on 2017-07-31 00:00:00\n", - "Selling NCLH on 2017-07-31 00:00:00\n", - "Selling SWKS on 2017-07-31 00:00:00\n", - "Selling HWM on 2017-07-31 00:00:00\n", - "Selling VRTX on 2017-07-31 00:00:00\n", - "Selling PTC on 2017-07-31 00:00:00\n", - "Selling MPWR on 2017-07-31 00:00:00\n", - "Selling NRG on 2017-07-31 00:00:00\n", - "Buying AEP on 2017-08-31 00:00:00\n", - "Buying D on 2017-08-31 00:00:00\n", - "Buying DRI on 2017-08-31 00:00:00\n", - "Buying CMS on 2017-08-31 00:00:00\n", - "Buying DUK on 2017-08-31 00:00:00\n", - "Buying PNW on 2017-08-31 00:00:00\n", - "Buying PPL on 2017-08-31 00:00:00\n", - "Buying SRE on 2017-08-31 00:00:00\n", - "Buying SO on 2017-08-31 00:00:00\n", - "Buying ORLY on 2017-08-31 00:00:00\n", - "Buying LYV on 2017-08-31 00:00:00\n", - "Buying CCI on 2017-08-31 00:00:00\n", - "Buying NI on 2017-08-31 00:00:00\n", - "Buying INVH on 2017-08-31 00:00:00\n", - "Selling MAR on 2017-08-31 00:00:00\n", - "Selling FCX on 2017-08-31 00:00:00\n", - "Selling NOW on 2017-08-31 00:00:00\n", - "Selling CF on 2017-08-31 00:00:00\n", - "Selling PTC on 2017-08-31 00:00:00\n", - "Selling MPWR on 2017-08-31 00:00:00\n", - "Selling NFLX on 2017-08-31 00:00:00\n", - "Selling JBL on 2017-08-31 00:00:00\n", - "Selling MTCH on 2017-08-31 00:00:00\n", - "Selling SWKS on 2017-08-31 00:00:00\n", - "Selling INCY on 2017-08-31 00:00:00\n", - "Selling VRTX on 2017-08-31 00:00:00\n", - "Selling HWM on 2017-08-31 00:00:00\n", - "Selling NRG on 2017-08-31 00:00:00\n", - "Buying NEM on 2017-09-30 00:00:00\n", - "Buying AEP on 2017-09-30 00:00:00\n", - "Buying PPL on 2017-09-30 00:00:00\n", - "Buying EXR on 2017-09-30 00:00:00\n", - "Buying D on 2017-09-30 00:00:00\n", - "Buying DUK on 2017-09-30 00:00:00\n", - "Buying PNW on 2017-09-30 00:00:00\n", - "Buying SO on 2017-09-30 00:00:00\n", - "Buying CMS on 2017-09-30 00:00:00\n", - "Buying GIS on 2017-09-30 00:00:00\n", - "Buying SRE on 2017-09-30 00:00:00\n", - "Buying PARA on 2017-09-30 00:00:00\n", - "Buying LYV on 2017-09-30 00:00:00\n", - "Buying CLX on 2017-09-30 00:00:00\n", - "Selling SYF on 2017-09-30 00:00:00\n", - "Selling RJF on 2017-09-30 00:00:00\n", - "Selling TEL on 2017-09-30 00:00:00\n", - "Selling MPWR on 2017-09-30 00:00:00\n", - "Selling FCX on 2017-09-30 00:00:00\n", - "Selling KEYS on 2017-09-30 00:00:00\n", - "Selling HWM on 2017-09-30 00:00:00\n", - "Selling JBL on 2017-09-30 00:00:00\n", - "Selling MTCH on 2017-09-30 00:00:00\n", - "Selling INCY on 2017-09-30 00:00:00\n", - "Selling NFLX on 2017-09-30 00:00:00\n", - "Selling SWKS on 2017-09-30 00:00:00\n", - "Selling VRTX on 2017-09-30 00:00:00\n", - "Selling NRG on 2017-09-30 00:00:00\n", - "Buying NEM on 2017-10-31 00:00:00\n", - "Buying EXR on 2017-10-31 00:00:00\n", - "Buying AEP on 2017-10-31 00:00:00\n", - "Buying PPL on 2017-10-31 00:00:00\n", - "Buying D on 2017-10-31 00:00:00\n", - "Buying SRE on 2017-10-31 00:00:00\n", - "Buying DUK on 2017-10-31 00:00:00\n", - "Buying SO on 2017-10-31 00:00:00\n", - "Buying CMS on 2017-10-31 00:00:00\n", - "Buying PNW on 2017-10-31 00:00:00\n", - "Buying NI on 2017-10-31 00:00:00\n", - "Buying CCI on 2017-10-31 00:00:00\n", - "Buying PARA on 2017-10-31 00:00:00\n", - "Buying CLX on 2017-10-31 00:00:00\n", - "Selling NCLH on 2017-10-31 00:00:00\n", - "Selling FCX on 2017-10-31 00:00:00\n", - "Selling MPWR on 2017-10-31 00:00:00\n", - "Selling HBAN on 2017-10-31 00:00:00\n", - "Selling GS on 2017-10-31 00:00:00\n", - "Selling INCY on 2017-10-31 00:00:00\n", - "Selling JBL on 2017-10-31 00:00:00\n", - "Selling VRTX on 2017-10-31 00:00:00\n", - "Selling SWKS on 2017-10-31 00:00:00\n", - "Selling SYF on 2017-10-31 00:00:00\n", - "Selling NFLX on 2017-10-31 00:00:00\n", - "Selling HWM on 2017-10-31 00:00:00\n", - "Selling AMZN on 2017-10-31 00:00:00\n", - "Selling MTCH on 2017-10-31 00:00:00\n", - "Buying EXR on 2017-11-30 00:00:00\n", - "Buying NEM on 2017-11-30 00:00:00\n", - "Buying PPL on 2017-11-30 00:00:00\n", - "Buying AON on 2017-11-30 00:00:00\n", - "Buying SRE on 2017-11-30 00:00:00\n", - "Buying PARA on 2017-11-30 00:00:00\n", - "Buying WTW on 2017-11-30 00:00:00\n", - "Buying O on 2017-11-30 00:00:00\n", - "Buying DUK on 2017-11-30 00:00:00\n", - "Buying D on 2017-11-30 00:00:00\n", - "Buying TSCO on 2017-11-30 00:00:00\n", - "Buying SO on 2017-11-30 00:00:00\n", - "Buying REG on 2017-11-30 00:00:00\n", - "Buying LYB on 2017-11-30 00:00:00\n", - "Selling SWKS on 2017-11-30 00:00:00\n", - "Selling ROK on 2017-11-30 00:00:00\n", - "Selling GEN on 2017-11-30 00:00:00\n", - "Selling GS on 2017-11-30 00:00:00\n", - "Selling HWM on 2017-11-30 00:00:00\n", - "Selling CDW on 2017-11-30 00:00:00\n", - "Selling CRL on 2017-11-30 00:00:00\n", - "Selling EW on 2017-11-30 00:00:00\n", - "Selling J on 2017-11-30 00:00:00\n", - "Selling SYF on 2017-11-30 00:00:00\n", - "Selling MTCH on 2017-11-30 00:00:00\n", - "Selling MPWR on 2017-11-30 00:00:00\n", - "Selling AMZN on 2017-11-30 00:00:00\n", - "Selling NFLX on 2017-11-30 00:00:00\n", - "Buying AON on 2017-12-31 00:00:00\n", - "Buying PARA on 2017-12-31 00:00:00\n", - "Buying AMT on 2017-12-31 00:00:00\n", - "Buying NEM on 2017-12-31 00:00:00\n", - "Buying DUK on 2017-12-31 00:00:00\n", - "Buying SO on 2017-12-31 00:00:00\n", - "Buying CCI on 2017-12-31 00:00:00\n", - "Buying ACGL on 2017-12-31 00:00:00\n", - "Buying SRE on 2017-12-31 00:00:00\n", - "Buying CLX on 2017-12-31 00:00:00\n", - "Buying D on 2017-12-31 00:00:00\n", - "Buying L on 2017-12-31 00:00:00\n", - "Buying WTW on 2017-12-31 00:00:00\n", - "Buying BKNG on 2017-12-31 00:00:00\n", - "Selling HII on 2017-12-31 00:00:00\n", - "Selling FCX on 2017-12-31 00:00:00\n", - "Selling GS on 2017-12-31 00:00:00\n", - "Selling APO on 2017-12-31 00:00:00\n", - "Selling SYF on 2017-12-31 00:00:00\n", - "Selling HWM on 2017-12-31 00:00:00\n", - "Selling MSFT on 2017-12-31 00:00:00\n", - "Selling NFLX on 2017-12-31 00:00:00\n", - "Selling CRL on 2017-12-31 00:00:00\n", - "Selling CDW on 2017-12-31 00:00:00\n", - "Selling EW on 2017-12-31 00:00:00\n", - "Selling AMZN on 2017-12-31 00:00:00\n", - "Selling J on 2017-12-31 00:00:00\n", - "Selling MPWR on 2017-12-31 00:00:00\n", - "Buying SO on 2018-01-31 00:00:00\n", - "Buying CLX on 2018-01-31 00:00:00\n", - "Buying D on 2018-01-31 00:00:00\n", - "Buying EQIX on 2018-01-31 00:00:00\n", - "Buying AEP on 2018-01-31 00:00:00\n", - "Buying MKTX on 2018-01-31 00:00:00\n", - "Buying PARA on 2018-01-31 00:00:00\n", - "Buying HAS on 2018-01-31 00:00:00\n", - "Buying DUK on 2018-01-31 00:00:00\n", - "Buying CMS on 2018-01-31 00:00:00\n", - "Buying SRE on 2018-01-31 00:00:00\n", - "Buying AMT on 2018-01-31 00:00:00\n", - "Buying LHX on 2018-01-31 00:00:00\n", - "Buying REG on 2018-01-31 00:00:00\n", - "Selling A on 2018-01-31 00:00:00\n", - "Selling NUE on 2018-01-31 00:00:00\n", - "Selling J on 2018-01-31 00:00:00\n", - "Selling CF on 2018-01-31 00:00:00\n", - "Selling HII on 2018-01-31 00:00:00\n", - "Selling BWA on 2018-01-31 00:00:00\n", - "Selling HWM on 2018-01-31 00:00:00\n", - "Selling CDW on 2018-01-31 00:00:00\n", - "Selling SWKS on 2018-01-31 00:00:00\n", - "Selling CVS on 2018-01-31 00:00:00\n", - "Selling ADBE on 2018-01-31 00:00:00\n", - "Selling PHM on 2018-01-31 00:00:00\n", - "Selling MPWR on 2018-01-31 00:00:00\n", - "Selling ABBV on 2018-01-31 00:00:00\n", - "Buying MKTX on 2018-02-28 00:00:00\n", - "Buying SO on 2018-02-28 00:00:00\n", - "Buying DUK on 2018-02-28 00:00:00\n", - "Buying AEP on 2018-02-28 00:00:00\n", - "Buying D on 2018-02-28 00:00:00\n", - "Buying CHD on 2018-02-28 00:00:00\n", - "Buying SRE on 2018-02-28 00:00:00\n", - "Buying CBOE on 2018-02-28 00:00:00\n", - "Buying AXON on 2018-02-28 00:00:00\n", - "Buying CMS on 2018-02-28 00:00:00\n", - "Buying NI on 2018-02-28 00:00:00\n", - "Buying EQIX on 2018-02-28 00:00:00\n", - "Buying CDW on 2018-02-28 00:00:00\n", - "Buying ULTA on 2018-02-28 00:00:00\n", - "Selling BLK on 2018-02-28 00:00:00\n", - "Selling MTCH on 2018-02-28 00:00:00\n", - "Selling RJF on 2018-02-28 00:00:00\n", - "Selling CAT on 2018-02-28 00:00:00\n", - "Selling CSX on 2018-02-28 00:00:00\n", - "Selling SYF on 2018-02-28 00:00:00\n", - "Selling SWKS on 2018-02-28 00:00:00\n", - "Selling MSFT on 2018-02-28 00:00:00\n", - "Selling NFLX on 2018-02-28 00:00:00\n", - "Selling VRTX on 2018-02-28 00:00:00\n", - "Selling ABBV on 2018-02-28 00:00:00\n", - "Selling FCX on 2018-02-28 00:00:00\n", - "Selling SPGI on 2018-02-28 00:00:00\n", - "Selling MPWR on 2018-02-28 00:00:00\n", - "Buying SO on 2018-03-31 00:00:00\n", - "Buying AEP on 2018-03-31 00:00:00\n", - "Buying DUK on 2018-03-31 00:00:00\n", - "Buying AXON on 2018-03-31 00:00:00\n", - "Buying D on 2018-03-31 00:00:00\n", - "Buying MKTX on 2018-03-31 00:00:00\n", - "Buying SRE on 2018-03-31 00:00:00\n", - "Buying CHD on 2018-03-31 00:00:00\n", - "Buying CMS on 2018-03-31 00:00:00\n", - "Buying NI on 2018-03-31 00:00:00\n", - "Buying PNW on 2018-03-31 00:00:00\n", - "Buying VICI on 2018-03-31 00:00:00\n", - "Buying WELL on 2018-03-31 00:00:00\n", - "Buying REG on 2018-03-31 00:00:00\n", - "Selling CSX on 2018-03-31 00:00:00\n", - "Selling LOW on 2018-03-31 00:00:00\n", - "Selling SPGI on 2018-03-31 00:00:00\n", - "Selling ADBE on 2018-03-31 00:00:00\n", - "Selling SWKS on 2018-03-31 00:00:00\n", - "Selling FCX on 2018-03-31 00:00:00\n", - "Selling RJF on 2018-03-31 00:00:00\n", - "Selling VRTX on 2018-03-31 00:00:00\n", - "Selling CAT on 2018-03-31 00:00:00\n", - "Selling BLK on 2018-03-31 00:00:00\n", - "Selling ABBV on 2018-03-31 00:00:00\n", - "Selling MSFT on 2018-03-31 00:00:00\n", - "Selling NFLX on 2018-03-31 00:00:00\n", - "Selling MPWR on 2018-03-31 00:00:00\n", - "Buying SO on 2018-04-30 00:00:00\n", - "Buying AEP on 2018-04-30 00:00:00\n", - "Buying DUK on 2018-04-30 00:00:00\n", - "Buying VICI on 2018-04-30 00:00:00\n", - "Buying SRE on 2018-04-30 00:00:00\n", - "Buying D on 2018-04-30 00:00:00\n", - "Buying MKTX on 2018-04-30 00:00:00\n", - "Buying WELL on 2018-04-30 00:00:00\n", - "Buying CMS on 2018-04-30 00:00:00\n", - "Buying AXON on 2018-04-30 00:00:00\n", - "Buying NI on 2018-04-30 00:00:00\n", - "Buying PNW on 2018-04-30 00:00:00\n", - "Buying PPL on 2018-04-30 00:00:00\n", - "Buying CCI on 2018-04-30 00:00:00\n", - "Selling J on 2018-04-30 00:00:00\n", - "Selling HWM on 2018-04-30 00:00:00\n", - "Selling MTCH on 2018-04-30 00:00:00\n", - "Selling ADBE on 2018-04-30 00:00:00\n", - "Selling RJF on 2018-04-30 00:00:00\n", - "Selling BLK on 2018-04-30 00:00:00\n", - "Selling SWKS on 2018-04-30 00:00:00\n", - "Selling VRTX on 2018-04-30 00:00:00\n", - "Selling CAT on 2018-04-30 00:00:00\n", - "Selling MSFT on 2018-04-30 00:00:00\n", - "Selling FCX on 2018-04-30 00:00:00\n", - "Selling MPWR on 2018-04-30 00:00:00\n", - "Selling INCY on 2018-04-30 00:00:00\n", - "Selling NFLX on 2018-04-30 00:00:00\n", - "Buying WELL on 2018-05-31 00:00:00\n", - "Buying CCI on 2018-05-31 00:00:00\n", - "Buying AEP on 2018-05-31 00:00:00\n", - "Buying PNW on 2018-05-31 00:00:00\n", - "Buying SRE on 2018-05-31 00:00:00\n", - "Buying NI on 2018-05-31 00:00:00\n", - "Buying CMS on 2018-05-31 00:00:00\n", - "Buying DUK on 2018-05-31 00:00:00\n", - "Buying PPL on 2018-05-31 00:00:00\n", - "Buying D on 2018-05-31 00:00:00\n", - "Buying SO on 2018-05-31 00:00:00\n", - "Buying AMT on 2018-05-31 00:00:00\n", - "Buying HAS on 2018-05-31 00:00:00\n", - "Buying ACGL on 2018-05-31 00:00:00\n", - "Selling IDXX on 2018-05-31 00:00:00\n", - "Selling ABBV on 2018-05-31 00:00:00\n", - "Selling AMZN on 2018-05-31 00:00:00\n", - "Selling STLD on 2018-05-31 00:00:00\n", - "Selling BLK on 2018-05-31 00:00:00\n", - "Selling ADBE on 2018-05-31 00:00:00\n", - "Selling CAT on 2018-05-31 00:00:00\n", - "Selling RJF on 2018-05-31 00:00:00\n", - "Selling HWM on 2018-05-31 00:00:00\n", - "Selling MSFT on 2018-05-31 00:00:00\n", - "Selling MPWR on 2018-05-31 00:00:00\n", - "Selling FCX on 2018-05-31 00:00:00\n", - "Selling NFLX on 2018-05-31 00:00:00\n", - "Selling INCY on 2018-05-31 00:00:00\n", - "Buying CMS on 2018-06-30 00:00:00\n", - "Buying AEP on 2018-06-30 00:00:00\n", - "Buying NI on 2018-06-30 00:00:00\n", - "Buying PNW on 2018-06-30 00:00:00\n", - "Buying DUK on 2018-06-30 00:00:00\n", - "Buying SO on 2018-06-30 00:00:00\n", - "Buying PPL on 2018-06-30 00:00:00\n", - "Buying SRE on 2018-06-30 00:00:00\n", - "Buying D on 2018-06-30 00:00:00\n", - "Buying CCI on 2018-06-30 00:00:00\n", - "Buying WELL on 2018-06-30 00:00:00\n", - "Buying DRI on 2018-06-30 00:00:00\n", - "Buying GEN on 2018-06-30 00:00:00\n", - "Buying AMT on 2018-06-30 00:00:00\n", - "Selling ABBV on 2018-06-30 00:00:00\n", - "Selling MPWR on 2018-06-30 00:00:00\n", - "Selling RJF on 2018-06-30 00:00:00\n", - "Selling NUE on 2018-06-30 00:00:00\n", - "Selling LYB on 2018-06-30 00:00:00\n", - "Selling A on 2018-06-30 00:00:00\n", - "Selling NFLX on 2018-06-30 00:00:00\n", - "Selling STLD on 2018-06-30 00:00:00\n", - "Selling IDXX on 2018-06-30 00:00:00\n", - "Selling HWM on 2018-06-30 00:00:00\n", - "Selling CAT on 2018-06-30 00:00:00\n", - "Selling AXON on 2018-06-30 00:00:00\n", - "Selling FCX on 2018-06-30 00:00:00\n", - "Selling INCY on 2018-06-30 00:00:00\n", - "Buying AEP on 2018-07-31 00:00:00\n", - "Buying NI on 2018-07-31 00:00:00\n", - "Buying PNW on 2018-07-31 00:00:00\n", - "Buying DUK on 2018-07-31 00:00:00\n", - "Buying CMS on 2018-07-31 00:00:00\n", - "Buying D on 2018-07-31 00:00:00\n", - "Buying SO on 2018-07-31 00:00:00\n", - "Buying PPL on 2018-07-31 00:00:00\n", - "Buying SRE on 2018-07-31 00:00:00\n", - "Buying DRI on 2018-07-31 00:00:00\n", - "Buying CHD on 2018-07-31 00:00:00\n", - "Buying CLX on 2018-07-31 00:00:00\n", - "Buying CCI on 2018-07-31 00:00:00\n", - "Buying GIS on 2018-07-31 00:00:00\n", - "Selling NUE on 2018-07-31 00:00:00\n", - "Selling NFLX on 2018-07-31 00:00:00\n", - "Selling EPAM on 2018-07-31 00:00:00\n", - "Selling MTD on 2018-07-31 00:00:00\n", - "Selling STLD on 2018-07-31 00:00:00\n", - "Selling RJF on 2018-07-31 00:00:00\n", - "Selling PTC on 2018-07-31 00:00:00\n", - "Selling LYB on 2018-07-31 00:00:00\n", - "Selling FCX on 2018-07-31 00:00:00\n", - "Selling ABBV on 2018-07-31 00:00:00\n", - "Selling A on 2018-07-31 00:00:00\n", - "Selling CAT on 2018-07-31 00:00:00\n", - "Selling MTCH on 2018-07-31 00:00:00\n", - "Selling AXON on 2018-07-31 00:00:00\n", - "Buying AEP on 2018-08-31 00:00:00\n", - "Buying PNW on 2018-08-31 00:00:00\n", - "Buying DUK on 2018-08-31 00:00:00\n", - "Buying CMS on 2018-08-31 00:00:00\n", - "Buying NI on 2018-08-31 00:00:00\n", - "Buying PPL on 2018-08-31 00:00:00\n", - "Buying CLX on 2018-08-31 00:00:00\n", - "Buying DRI on 2018-08-31 00:00:00\n", - "Buying SO on 2018-08-31 00:00:00\n", - "Buying CHD on 2018-08-31 00:00:00\n", - "Buying D on 2018-08-31 00:00:00\n", - "Buying GIS on 2018-08-31 00:00:00\n", - "Buying SJM on 2018-08-31 00:00:00\n", - "Buying INVH on 2018-08-31 00:00:00\n", - "Selling LYB on 2018-08-31 00:00:00\n", - "Selling MTCH on 2018-08-31 00:00:00\n", - "Selling NOW on 2018-08-31 00:00:00\n", - "Selling MPWR on 2018-08-31 00:00:00\n", - "Selling IDXX on 2018-08-31 00:00:00\n", - "Selling NUE on 2018-08-31 00:00:00\n", - "Selling LVS on 2018-08-31 00:00:00\n", - "Selling PTC on 2018-08-31 00:00:00\n", - "Selling NFLX on 2018-08-31 00:00:00\n", - "Selling STLD on 2018-08-31 00:00:00\n", - "Selling FCX on 2018-08-31 00:00:00\n", - "Selling APTV on 2018-08-31 00:00:00\n", - "Selling CAT on 2018-08-31 00:00:00\n", - "Selling AXON on 2018-08-31 00:00:00\n", - "Buying CLX on 2018-09-30 00:00:00\n", - "Buying GIS on 2018-09-30 00:00:00\n", - "Buying AEP on 2018-09-30 00:00:00\n", - "Buying PNW on 2018-09-30 00:00:00\n", - "Buying NI on 2018-09-30 00:00:00\n", - "Buying DUK on 2018-09-30 00:00:00\n", - "Buying CMS on 2018-09-30 00:00:00\n", - "Buying PPL on 2018-09-30 00:00:00\n", - "Buying CHD on 2018-09-30 00:00:00\n", - "Buying SO on 2018-09-30 00:00:00\n", - "Buying SJM on 2018-09-30 00:00:00\n", - "Buying D on 2018-09-30 00:00:00\n", - "Buying ERIE on 2018-09-30 00:00:00\n", - "Buying T on 2018-09-30 00:00:00\n", - "Selling JBL on 2018-09-30 00:00:00\n", - "Selling BWA on 2018-09-30 00:00:00\n", - "Selling ADBE on 2018-09-30 00:00:00\n", - "Selling GILD on 2018-09-30 00:00:00\n", - "Selling NWSA on 2018-09-30 00:00:00\n", - "Selling IDXX on 2018-09-30 00:00:00\n", - "Selling RJF on 2018-09-30 00:00:00\n", - "Selling LVS on 2018-09-30 00:00:00\n", - "Selling NFLX on 2018-09-30 00:00:00\n", - "Selling AXON on 2018-09-30 00:00:00\n", - "Selling PTC on 2018-09-30 00:00:00\n", - "Selling CAT on 2018-09-30 00:00:00\n", - "Selling FCX on 2018-09-30 00:00:00\n", - "Selling APTV on 2018-09-30 00:00:00\n", - "Buying NEM on 2018-10-31 00:00:00\n", - "Buying SO on 2018-10-31 00:00:00\n", - "Buying NI on 2018-10-31 00:00:00\n", - "Buying MKTX on 2018-10-31 00:00:00\n", - "Buying AEP on 2018-10-31 00:00:00\n", - "Buying DUK on 2018-10-31 00:00:00\n", - "Buying SJM on 2018-10-31 00:00:00\n", - "Buying D on 2018-10-31 00:00:00\n", - "Buying PNW on 2018-10-31 00:00:00\n", - "Buying PPL on 2018-10-31 00:00:00\n", - "Buying CMS on 2018-10-31 00:00:00\n", - "Buying GIS on 2018-10-31 00:00:00\n", - "Buying SRE on 2018-10-31 00:00:00\n", - "Buying EXR on 2018-10-31 00:00:00\n", - "Selling BX on 2018-10-31 00:00:00\n", - "Selling EPAM on 2018-10-31 00:00:00\n", - "Selling INCY on 2018-10-31 00:00:00\n", - "Selling CAT on 2018-10-31 00:00:00\n", - "Selling MSFT on 2018-10-31 00:00:00\n", - "Selling MPWR on 2018-10-31 00:00:00\n", - "Selling PTC on 2018-10-31 00:00:00\n", - "Selling NOW on 2018-10-31 00:00:00\n", - "Selling MTCH on 2018-10-31 00:00:00\n", - "Selling CRM on 2018-10-31 00:00:00\n", - "Selling ADBE on 2018-10-31 00:00:00\n", - "Selling AXON on 2018-10-31 00:00:00\n", - "Selling AMZN on 2018-10-31 00:00:00\n", - "Selling NFLX on 2018-10-31 00:00:00\n", - "Buying NEM on 2018-11-30 00:00:00\n", - "Buying SJM on 2018-11-30 00:00:00\n", - "Buying MKTX on 2018-11-30 00:00:00\n", - "Buying PPL on 2018-11-30 00:00:00\n", - "Buying NI on 2018-11-30 00:00:00\n", - "Buying AEP on 2018-11-30 00:00:00\n", - "Buying D on 2018-11-30 00:00:00\n", - "Buying DUK on 2018-11-30 00:00:00\n", - "Buying GIS on 2018-11-30 00:00:00\n", - "Buying SO on 2018-11-30 00:00:00\n", - "Buying CMS on 2018-11-30 00:00:00\n", - "Buying PNW on 2018-11-30 00:00:00\n", - "Buying EXR on 2018-11-30 00:00:00\n", - "Buying CBOE on 2018-11-30 00:00:00\n", - "Selling EW on 2018-11-30 00:00:00\n", - "Selling LVS on 2018-11-30 00:00:00\n", - "Selling EPAM on 2018-11-30 00:00:00\n", - "Selling CF on 2018-11-30 00:00:00\n", - "Selling MSFT on 2018-11-30 00:00:00\n", - "Selling CRL on 2018-11-30 00:00:00\n", - "Selling MPWR on 2018-11-30 00:00:00\n", - "Selling CAT on 2018-11-30 00:00:00\n", - "Selling PTC on 2018-11-30 00:00:00\n", - "Selling ADBE on 2018-11-30 00:00:00\n", - "Selling NOW on 2018-11-30 00:00:00\n", - "Selling CRM on 2018-11-30 00:00:00\n", - "Selling AMZN on 2018-11-30 00:00:00\n", - "Selling NFLX on 2018-11-30 00:00:00\n", - "Buying NEM on 2018-12-31 00:00:00\n", - "Buying D on 2018-12-31 00:00:00\n", - "Buying PPL on 2018-12-31 00:00:00\n", - "Buying NI on 2018-12-31 00:00:00\n", - "Buying AEP on 2018-12-31 00:00:00\n", - "Buying SJM on 2018-12-31 00:00:00\n", - "Buying DUK on 2018-12-31 00:00:00\n", - "Buying MKTX on 2018-12-31 00:00:00\n", - "Buying SO on 2018-12-31 00:00:00\n", - "Buying CMS on 2018-12-31 00:00:00\n", - "Buying PNW on 2018-12-31 00:00:00\n", - "Buying GIS on 2018-12-31 00:00:00\n", - "Buying SRE on 2018-12-31 00:00:00\n", - "Buying EXR on 2018-12-31 00:00:00\n", - "Selling VRTX on 2018-12-31 00:00:00\n", - "Selling EW on 2018-12-31 00:00:00\n", - "Selling CRL on 2018-12-31 00:00:00\n", - "Selling LVS on 2018-12-31 00:00:00\n", - "Selling EPAM on 2018-12-31 00:00:00\n", - "Selling CAT on 2018-12-31 00:00:00\n", - "Selling MSFT on 2018-12-31 00:00:00\n", - "Selling PTC on 2018-12-31 00:00:00\n", - "Selling MPWR on 2018-12-31 00:00:00\n", - "Selling NOW on 2018-12-31 00:00:00\n", - "Selling CRM on 2018-12-31 00:00:00\n", - "Selling ADBE on 2018-12-31 00:00:00\n", - "Selling NFLX on 2018-12-31 00:00:00\n", - "Selling AMZN on 2018-12-31 00:00:00\n", - "Buying NEM on 2019-01-31 00:00:00\n", - "Buying SJM on 2019-01-31 00:00:00\n", - "Buying DUK on 2019-01-31 00:00:00\n", - "Buying D on 2019-01-31 00:00:00\n", - "Buying AEP on 2019-01-31 00:00:00\n", - "Buying PPL on 2019-01-31 00:00:00\n", - "Buying PNW on 2019-01-31 00:00:00\n", - "Buying CMS on 2019-01-31 00:00:00\n", - "Buying CBOE on 2019-01-31 00:00:00\n", - "Buying NI on 2019-01-31 00:00:00\n", - "Buying GIS on 2019-01-31 00:00:00\n", - "Buying EXR on 2019-01-31 00:00:00\n", - "Buying SO on 2019-01-31 00:00:00\n", - "Buying AMT on 2019-01-31 00:00:00\n", - "Selling PTC on 2019-01-31 00:00:00\n", - "Selling CRL on 2019-01-31 00:00:00\n", - "Selling EW on 2019-01-31 00:00:00\n", - "Selling SWKS on 2019-01-31 00:00:00\n", - "Selling MSFT on 2019-01-31 00:00:00\n", - "Selling LVS on 2019-01-31 00:00:00\n", - "Selling MPWR on 2019-01-31 00:00:00\n", - "Selling CAT on 2019-01-31 00:00:00\n", - "Selling FCX on 2019-01-31 00:00:00\n", - "Selling ADBE on 2019-01-31 00:00:00\n", - "Selling CRM on 2019-01-31 00:00:00\n", - "Selling NFLX on 2019-01-31 00:00:00\n", - "Selling NOW on 2019-01-31 00:00:00\n", - "Selling AMZN on 2019-01-31 00:00:00\n", - "Buying NEM on 2019-02-28 00:00:00\n", - "Buying DUK on 2019-02-28 00:00:00\n", - "Buying AEP on 2019-02-28 00:00:00\n", - "Buying SO on 2019-02-28 00:00:00\n", - "Buying PNW on 2019-02-28 00:00:00\n", - "Buying D on 2019-02-28 00:00:00\n", - "Buying EXR on 2019-02-28 00:00:00\n", - "Buying CMS on 2019-02-28 00:00:00\n", - "Buying NI on 2019-02-28 00:00:00\n", - "Buying SRE on 2019-02-28 00:00:00\n", - "Buying AMT on 2019-02-28 00:00:00\n", - "Buying CCI on 2019-02-28 00:00:00\n", - "Buying PPL on 2019-02-28 00:00:00\n", - "Buying CBOE on 2019-02-28 00:00:00\n", - "Selling MSFT on 2019-02-28 00:00:00\n", - "Selling LVS on 2019-02-28 00:00:00\n", - "Selling ULTA on 2019-02-28 00:00:00\n", - "Selling NCLH on 2019-02-28 00:00:00\n", - "Selling SWKS on 2019-02-28 00:00:00\n", - "Selling RVTY on 2019-02-28 00:00:00\n", - "Selling CAT on 2019-02-28 00:00:00\n", - "Selling MPWR on 2019-02-28 00:00:00\n", - "Selling CRM on 2019-02-28 00:00:00\n", - "Selling FCX on 2019-02-28 00:00:00\n", - "Selling ADBE on 2019-02-28 00:00:00\n", - "Selling NOW on 2019-02-28 00:00:00\n", - "Selling NFLX on 2019-02-28 00:00:00\n", - "Selling AMZN on 2019-02-28 00:00:00\n", - "Buying EXR on 2019-03-31 00:00:00\n", - "Buying WELL on 2019-03-31 00:00:00\n", - "Buying O on 2019-03-31 00:00:00\n", - "Buying VICI on 2019-03-31 00:00:00\n", - "Buying SO on 2019-03-31 00:00:00\n", - "Buying DUK on 2019-03-31 00:00:00\n", - "Buying PNW on 2019-03-31 00:00:00\n", - "Buying CMS on 2019-03-31 00:00:00\n", - "Buying AEP on 2019-03-31 00:00:00\n", - "Buying REG on 2019-03-31 00:00:00\n", - "Buying CCI on 2019-03-31 00:00:00\n", - "Buying DLTR on 2019-03-31 00:00:00\n", - "Buying AMT on 2019-03-31 00:00:00\n", - "Buying INVH on 2019-03-31 00:00:00\n", - "Selling HWM on 2019-03-31 00:00:00\n", - "Selling RVTY on 2019-03-31 00:00:00\n", - "Selling CRM on 2019-03-31 00:00:00\n", - "Selling AMZN on 2019-03-31 00:00:00\n", - "Selling NFLX on 2019-03-31 00:00:00\n", - "Selling BMY on 2019-03-31 00:00:00\n", - "Selling MPWR on 2019-03-31 00:00:00\n", - "Selling CAT on 2019-03-31 00:00:00\n", - "Selling AXON on 2019-03-31 00:00:00\n", - "Selling CF on 2019-03-31 00:00:00\n", - "Selling APO on 2019-03-31 00:00:00\n", - "Selling NOW on 2019-03-31 00:00:00\n", - "Selling SWKS on 2019-03-31 00:00:00\n", - "Selling FCX on 2019-03-31 00:00:00\n", - "Buying DLTR on 2019-04-30 00:00:00\n", - "Buying DUK on 2019-04-30 00:00:00\n", - "Buying AEP on 2019-04-30 00:00:00\n", - "Buying PNW on 2019-04-30 00:00:00\n", - "Buying SO on 2019-04-30 00:00:00\n", - "Buying NI on 2019-04-30 00:00:00\n", - "Buying CMS on 2019-04-30 00:00:00\n", - "Buying PHM on 2019-04-30 00:00:00\n", - "Buying MNST on 2019-04-30 00:00:00\n", - "Buying CHD on 2019-04-30 00:00:00\n", - "Buying VICI on 2019-04-30 00:00:00\n", - "Buying KHC on 2019-04-30 00:00:00\n", - "Buying PPL on 2019-04-30 00:00:00\n", - "Buying D on 2019-04-30 00:00:00\n", - "Selling C on 2019-04-30 00:00:00\n", - "Selling TRGP on 2019-04-30 00:00:00\n", - "Selling CAT on 2019-04-30 00:00:00\n", - "Selling APTV on 2019-04-30 00:00:00\n", - "Selling SWKS on 2019-04-30 00:00:00\n", - "Selling PH on 2019-04-30 00:00:00\n", - "Selling MPWR on 2019-04-30 00:00:00\n", - "Selling CVS on 2019-04-30 00:00:00\n", - "Selling APO on 2019-04-30 00:00:00\n", - "Selling FCX on 2019-04-30 00:00:00\n", - "Selling CE on 2019-04-30 00:00:00\n", - "Selling STLD on 2019-04-30 00:00:00\n", - "Selling AXON on 2019-04-30 00:00:00\n", - "Selling BWA on 2019-04-30 00:00:00\n", - "Buying NEM on 2019-05-31 00:00:00\n", - "Buying AEP on 2019-05-31 00:00:00\n", - "Buying PNW on 2019-05-31 00:00:00\n", - "Buying CMS on 2019-05-31 00:00:00\n", - "Buying SO on 2019-05-31 00:00:00\n", - "Buying D on 2019-05-31 00:00:00\n", - "Buying DUK on 2019-05-31 00:00:00\n", - "Buying NI on 2019-05-31 00:00:00\n", - "Buying EXR on 2019-05-31 00:00:00\n", - "Buying PPL on 2019-05-31 00:00:00\n", - "Buying GIS on 2019-05-31 00:00:00\n", - "Buying SJM on 2019-05-31 00:00:00\n", - "Buying WELL on 2019-05-31 00:00:00\n", - "Buying AMT on 2019-05-31 00:00:00\n", - "Selling ROK on 2019-05-31 00:00:00\n", - "Selling TXT on 2019-05-31 00:00:00\n", - "Selling MPWR on 2019-05-31 00:00:00\n", - "Selling CF on 2019-05-31 00:00:00\n", - "Selling BWA on 2019-05-31 00:00:00\n", - "Selling SWKS on 2019-05-31 00:00:00\n", - "Selling PH on 2019-05-31 00:00:00\n", - "Selling KEYS on 2019-05-31 00:00:00\n", - "Selling EPAM on 2019-05-31 00:00:00\n", - "Selling CE on 2019-05-31 00:00:00\n", - "Selling STLD on 2019-05-31 00:00:00\n", - "Selling JBL on 2019-05-31 00:00:00\n", - "Selling FCX on 2019-05-31 00:00:00\n", - "Selling APO on 2019-05-31 00:00:00\n", - "Buying NEM on 2019-06-30 00:00:00\n", - "Buying AEP on 2019-06-30 00:00:00\n", - "Buying CMS on 2019-06-30 00:00:00\n", - "Buying SO on 2019-06-30 00:00:00\n", - "Buying PNW on 2019-06-30 00:00:00\n", - "Buying SJM on 2019-06-30 00:00:00\n", - "Buying EXR on 2019-06-30 00:00:00\n", - "Buying D on 2019-06-30 00:00:00\n", - "Buying NI on 2019-06-30 00:00:00\n", - "Buying DUK on 2019-06-30 00:00:00\n", - "Buying WELL on 2019-06-30 00:00:00\n", - "Buying CHD on 2019-06-30 00:00:00\n", - "Buying CBOE on 2019-06-30 00:00:00\n", - "Buying GIS on 2019-06-30 00:00:00\n", - "Selling APO on 2019-06-30 00:00:00\n", - "Selling APTV on 2019-06-30 00:00:00\n", - "Selling PH on 2019-06-30 00:00:00\n", - "Selling CRM on 2019-06-30 00:00:00\n", - "Selling MPWR on 2019-06-30 00:00:00\n", - "Selling ADBE on 2019-06-30 00:00:00\n", - "Selling FCX on 2019-06-30 00:00:00\n", - "Selling TXT on 2019-06-30 00:00:00\n", - "Selling JBL on 2019-06-30 00:00:00\n", - "Selling LVS on 2019-06-30 00:00:00\n", - "Selling NOW on 2019-06-30 00:00:00\n", - "Selling HAS on 2019-06-30 00:00:00\n", - "Selling PTC on 2019-06-30 00:00:00\n", - "Selling KEYS on 2019-06-30 00:00:00\n", - "Buying PNW on 2019-07-31 00:00:00\n", - "Buying SO on 2019-07-31 00:00:00\n", - "Buying NEM on 2019-07-31 00:00:00\n", - "Buying AEP on 2019-07-31 00:00:00\n", - "Buying CMS on 2019-07-31 00:00:00\n", - "Buying D on 2019-07-31 00:00:00\n", - "Buying AMT on 2019-07-31 00:00:00\n", - "Buying NI on 2019-07-31 00:00:00\n", - "Buying DUK on 2019-07-31 00:00:00\n", - "Buying EXR on 2019-07-31 00:00:00\n", - "Buying WELL on 2019-07-31 00:00:00\n", - "Buying SJM on 2019-07-31 00:00:00\n", - "Buying LHX on 2019-07-31 00:00:00\n", - "Buying SRE on 2019-07-31 00:00:00\n", - "Selling GE on 2019-07-31 00:00:00\n", - "Selling C on 2019-07-31 00:00:00\n", - "Selling CRM on 2019-07-31 00:00:00\n", - "Selling ADBE on 2019-07-31 00:00:00\n", - "Selling HAS on 2019-07-31 00:00:00\n", - "Selling JBL on 2019-07-31 00:00:00\n", - "Selling APO on 2019-07-31 00:00:00\n", - "Selling LVS on 2019-07-31 00:00:00\n", - "Selling TXT on 2019-07-31 00:00:00\n", - "Selling SWKS on 2019-07-31 00:00:00\n", - "Selling NOW on 2019-07-31 00:00:00\n", - "Selling MPWR on 2019-07-31 00:00:00\n", - "Selling PTC on 2019-07-31 00:00:00\n", - "Selling KEYS on 2019-07-31 00:00:00\n", - "Buying NEM on 2019-08-31 00:00:00\n", - "Buying CBOE on 2019-08-31 00:00:00\n", - "Buying KHC on 2019-08-31 00:00:00\n", - "Buying EXR on 2019-08-31 00:00:00\n", - "Buying AMT on 2019-08-31 00:00:00\n", - "Buying SO on 2019-08-31 00:00:00\n", - "Buying DUK on 2019-08-31 00:00:00\n", - "Buying WELL on 2019-08-31 00:00:00\n", - "Buying CMS on 2019-08-31 00:00:00\n", - "Buying AEP on 2019-08-31 00:00:00\n", - "Buying PNW on 2019-08-31 00:00:00\n", - "Buying D on 2019-08-31 00:00:00\n", - "Buying MKTX on 2019-08-31 00:00:00\n", - "Buying O on 2019-08-31 00:00:00\n", - "Selling C on 2019-08-31 00:00:00\n", - "Selling FFIV on 2019-08-31 00:00:00\n", - "Selling TXT on 2019-08-31 00:00:00\n", - "Selling HAS on 2019-08-31 00:00:00\n", - "Selling AXON on 2019-08-31 00:00:00\n", - "Selling PARA on 2019-08-31 00:00:00\n", - "Selling LVS on 2019-08-31 00:00:00\n", - "Selling JBL on 2019-08-31 00:00:00\n", - "Selling PTC on 2019-08-31 00:00:00\n", - "Selling SWKS on 2019-08-31 00:00:00\n", - "Selling GEN on 2019-08-31 00:00:00\n", - "Selling TRGP on 2019-08-31 00:00:00\n", - "Selling MPWR on 2019-08-31 00:00:00\n", - "Selling KEYS on 2019-08-31 00:00:00\n", - "Buying NEM on 2019-09-30 00:00:00\n", - "Buying AMT on 2019-09-30 00:00:00\n", - "Buying KHC on 2019-09-30 00:00:00\n", - "Buying CBOE on 2019-09-30 00:00:00\n", - "Buying EXR on 2019-09-30 00:00:00\n", - "Buying WELL on 2019-09-30 00:00:00\n", - "Buying SO on 2019-09-30 00:00:00\n", - "Buying CMS on 2019-09-30 00:00:00\n", - "Buying MKTX on 2019-09-30 00:00:00\n", - "Buying AEP on 2019-09-30 00:00:00\n", - "Buying DUK on 2019-09-30 00:00:00\n", - "Buying PNW on 2019-09-30 00:00:00\n", - "Buying CHD on 2019-09-30 00:00:00\n", - "Buying D on 2019-09-30 00:00:00\n", - "Selling PTC on 2019-09-30 00:00:00\n", - "Selling C on 2019-09-30 00:00:00\n", - "Selling TXT on 2019-09-30 00:00:00\n", - "Selling HAS on 2019-09-30 00:00:00\n", - "Selling APTV on 2019-09-30 00:00:00\n", - "Selling STLD on 2019-09-30 00:00:00\n", - "Selling EPAM on 2019-09-30 00:00:00\n", - "Selling JBL on 2019-09-30 00:00:00\n", - "Selling BWA on 2019-09-30 00:00:00\n", - "Selling SWKS on 2019-09-30 00:00:00\n", - "Selling CRWD on 2019-09-30 00:00:00\n", - "Selling TRGP on 2019-09-30 00:00:00\n", - "Selling MPWR on 2019-09-30 00:00:00\n", - "Selling KEYS on 2019-09-30 00:00:00\n", - "Buying NEM on 2019-10-31 00:00:00\n", - "Buying AMT on 2019-10-31 00:00:00\n", - "Buying O on 2019-10-31 00:00:00\n", - "Buying EXR on 2019-10-31 00:00:00\n", - "Buying SO on 2019-10-31 00:00:00\n", - "Buying WELL on 2019-10-31 00:00:00\n", - "Buying CMS on 2019-10-31 00:00:00\n", - "Buying SRE on 2019-10-31 00:00:00\n", - "Buying CBOE on 2019-10-31 00:00:00\n", - "Buying INVH on 2019-10-31 00:00:00\n", - "Buying KHC on 2019-10-31 00:00:00\n", - "Buying CHD on 2019-10-31 00:00:00\n", - "Buying DUK on 2019-10-31 00:00:00\n", - "Buying AEP on 2019-10-31 00:00:00\n", - "Selling LYB on 2019-10-31 00:00:00\n", - "Selling BWA on 2019-10-31 00:00:00\n", - "Selling TXT on 2019-10-31 00:00:00\n", - "Selling PH on 2019-10-31 00:00:00\n", - "Selling SWKS on 2019-10-31 00:00:00\n", - "Selling AXON on 2019-10-31 00:00:00\n", - "Selling FCX on 2019-10-31 00:00:00\n", - "Selling PARA on 2019-10-31 00:00:00\n", - "Selling STLD on 2019-10-31 00:00:00\n", - "Selling TRGP on 2019-10-31 00:00:00\n", - "Selling APTV on 2019-10-31 00:00:00\n", - "Selling MPWR on 2019-10-31 00:00:00\n", - "Selling KEYS on 2019-10-31 00:00:00\n", - "Selling CRWD on 2019-10-31 00:00:00\n", - "Buying NEM on 2019-11-30 00:00:00\n", - "Buying CHD on 2019-11-30 00:00:00\n", - "Buying AMT on 2019-11-30 00:00:00\n", - "Buying ULTA on 2019-11-30 00:00:00\n", - "Buying CMS on 2019-11-30 00:00:00\n", - "Buying CCI on 2019-11-30 00:00:00\n", - "Buying TAP on 2019-11-30 00:00:00\n", - "Buying EXR on 2019-11-30 00:00:00\n", - "Buying WELL on 2019-11-30 00:00:00\n", - "Buying O on 2019-11-30 00:00:00\n", - "Buying LHX on 2019-11-30 00:00:00\n", - "Buying AEP on 2019-11-30 00:00:00\n", - "Buying INVH on 2019-11-30 00:00:00\n", - "Buying TSCO on 2019-11-30 00:00:00\n", - "Selling BWA on 2019-11-30 00:00:00\n", - "Selling GE on 2019-11-30 00:00:00\n", - "Selling MTD on 2019-11-30 00:00:00\n", - "Selling CAT on 2019-11-30 00:00:00\n", - "Selling AXON on 2019-11-30 00:00:00\n", - "Selling MPWR on 2019-11-30 00:00:00\n", - "Selling KEYS on 2019-11-30 00:00:00\n", - "Selling PH on 2019-11-30 00:00:00\n", - "Selling STLD on 2019-11-30 00:00:00\n", - "Selling NOW on 2019-11-30 00:00:00\n", - "Selling APTV on 2019-11-30 00:00:00\n", - "Selling SWKS on 2019-11-30 00:00:00\n", - "Selling CRWD on 2019-11-30 00:00:00\n", - "Selling FCX on 2019-11-30 00:00:00\n", - "Buying NEM on 2019-12-31 00:00:00\n", - "Buying CCI on 2019-12-31 00:00:00\n", - "Buying EXR on 2019-12-31 00:00:00\n", - "Buying CMS on 2019-12-31 00:00:00\n", - "Buying PHM on 2019-12-31 00:00:00\n", - "Buying SRE on 2019-12-31 00:00:00\n", - "Buying LHX on 2019-12-31 00:00:00\n", - "Buying AMT on 2019-12-31 00:00:00\n", - "Buying WELL on 2019-12-31 00:00:00\n", - "Buying KHC on 2019-12-31 00:00:00\n", - "Buying AEP on 2019-12-31 00:00:00\n", - "Buying VST on 2019-12-31 00:00:00\n", - "Buying CBOE on 2019-12-31 00:00:00\n", - "Buying NRG on 2019-12-31 00:00:00\n", - "Selling ULTA on 2019-12-31 00:00:00\n", - "Selling NOW on 2019-12-31 00:00:00\n", - "Selling C on 2019-12-31 00:00:00\n", - "Selling LYB on 2019-12-31 00:00:00\n", - "Selling CAT on 2019-12-31 00:00:00\n", - "Selling PH on 2019-12-31 00:00:00\n", - "Selling SWKS on 2019-12-31 00:00:00\n", - "Selling LVS on 2019-12-31 00:00:00\n", - "Selling GE on 2019-12-31 00:00:00\n", - "Selling APTV on 2019-12-31 00:00:00\n", - "Selling RVTY on 2019-12-31 00:00:00\n", - "Selling MPWR on 2019-12-31 00:00:00\n", - "Selling KEYS on 2019-12-31 00:00:00\n", - "Selling FCX on 2019-12-31 00:00:00\n", - "Buying NEM on 2020-01-31 00:00:00\n", - "Buying CHD on 2020-01-31 00:00:00\n", - "Buying CMS on 2020-01-31 00:00:00\n", - "Buying EXR on 2020-01-31 00:00:00\n", - "Buying CLX on 2020-01-31 00:00:00\n", - "Buying CBOE on 2020-01-31 00:00:00\n", - "Buying PNW on 2020-01-31 00:00:00\n", - "Buying NI on 2020-01-31 00:00:00\n", - "Buying AEP on 2020-01-31 00:00:00\n", - "Buying ICE on 2020-01-31 00:00:00\n", - "Buying O on 2020-01-31 00:00:00\n", - "Buying REG on 2020-01-31 00:00:00\n", - "Buying WELL on 2020-01-31 00:00:00\n", - "Buying IRM on 2020-01-31 00:00:00\n", - "Selling CAT on 2020-01-31 00:00:00\n", - "Selling GE on 2020-01-31 00:00:00\n", - "Selling LYV on 2020-01-31 00:00:00\n", - "Selling MTCH on 2020-01-31 00:00:00\n", - "Selling PH on 2020-01-31 00:00:00\n", - "Selling APTV on 2020-01-31 00:00:00\n", - "Selling GS on 2020-01-31 00:00:00\n", - "Selling LYB on 2020-01-31 00:00:00\n", - "Selling DFS on 2020-01-31 00:00:00\n", - "Selling KEYS on 2020-01-31 00:00:00\n", - "Selling SWKS on 2020-01-31 00:00:00\n", - "Selling MPWR on 2020-01-31 00:00:00\n", - "Selling LVS on 2020-01-31 00:00:00\n", - "Selling FCX on 2020-01-31 00:00:00\n", - "Buying CLX on 2020-02-29 00:00:00\n", - "Buying ICE on 2020-02-29 00:00:00\n", - "Buying DGX on 2020-02-29 00:00:00\n", - "Buying MKTX on 2020-02-29 00:00:00\n", - "Buying GILD on 2020-02-29 00:00:00\n", - "Buying CBOE on 2020-02-29 00:00:00\n", - "Buying NEM on 2020-02-29 00:00:00\n", - "Buying CHD on 2020-02-29 00:00:00\n", - "Buying INVH on 2020-02-29 00:00:00\n", - "Buying ERIE on 2020-02-29 00:00:00\n", - "Buying NI on 2020-02-29 00:00:00\n", - "Buying EXR on 2020-02-29 00:00:00\n", - "Buying LH on 2020-02-29 00:00:00\n", - "Buying DUK on 2020-02-29 00:00:00\n", - "Selling CDW on 2020-02-29 00:00:00\n", - "Selling LVS on 2020-02-29 00:00:00\n", - "Selling GE on 2020-02-29 00:00:00\n", - "Selling CE on 2020-02-29 00:00:00\n", - "Selling MSFT on 2020-02-29 00:00:00\n", - "Selling APTV on 2020-02-29 00:00:00\n", - "Selling BLK on 2020-02-29 00:00:00\n", - "Selling LYB on 2020-02-29 00:00:00\n", - "Selling C on 2020-02-29 00:00:00\n", - "Selling MPWR on 2020-02-29 00:00:00\n", - "Selling SWKS on 2020-02-29 00:00:00\n", - "Selling NCLH on 2020-02-29 00:00:00\n", - "Selling LYV on 2020-02-29 00:00:00\n", - "Selling FCX on 2020-02-29 00:00:00\n", - "Buying CLX on 2020-03-31 00:00:00\n", - "Buying NEM on 2020-03-31 00:00:00\n", - "Buying GILD on 2020-03-31 00:00:00\n", - "Buying GEN on 2020-03-31 00:00:00\n", - "Buying SJM on 2020-03-31 00:00:00\n", - "Buying GIS on 2020-03-31 00:00:00\n", - "Buying DG on 2020-03-31 00:00:00\n", - "Buying CHD on 2020-03-31 00:00:00\n", - "Buying AMZN on 2020-03-31 00:00:00\n", - "Buying BDX on 2020-03-31 00:00:00\n", - "Buying BMY on 2020-03-31 00:00:00\n", - "Buying INCY on 2020-03-31 00:00:00\n", - "Buying RVTY on 2020-03-31 00:00:00\n", - "Buying MAR on 2020-03-31 00:00:00\n", - "Selling HWM on 2020-03-31 00:00:00\n", - "Selling L on 2020-03-31 00:00:00\n", - "Selling TXT on 2020-03-31 00:00:00\n", - "Selling VICI on 2020-03-31 00:00:00\n", - "Selling PH on 2020-03-31 00:00:00\n", - "Selling LYB on 2020-03-31 00:00:00\n", - "Selling FCX on 2020-03-31 00:00:00\n", - "Selling MPWR on 2020-03-31 00:00:00\n", - "Selling C on 2020-03-31 00:00:00\n", - "Selling SYF on 2020-03-31 00:00:00\n", - "Selling TRGP on 2020-03-31 00:00:00\n", - "Selling DRI on 2020-03-31 00:00:00\n", - "Selling DFS on 2020-03-31 00:00:00\n", - "Selling NCLH on 2020-03-31 00:00:00\n", - "Buying CLX on 2020-04-30 00:00:00\n", - "Buying GEN on 2020-04-30 00:00:00\n", - "Buying SJM on 2020-04-30 00:00:00\n", - "Buying GIS on 2020-04-30 00:00:00\n", - "Buying NEM on 2020-04-30 00:00:00\n", - "Buying GILD on 2020-04-30 00:00:00\n", - "Buying DG on 2020-04-30 00:00:00\n", - "Buying CHD on 2020-04-30 00:00:00\n", - "Buying AMZN on 2020-04-30 00:00:00\n", - "Buying BMY on 2020-04-30 00:00:00\n", - "Buying BDX on 2020-04-30 00:00:00\n", - "Buying NFLX on 2020-04-30 00:00:00\n", - "Buying INCY on 2020-04-30 00:00:00\n", - "Buying EXR on 2020-04-30 00:00:00\n", - "Selling WELL on 2020-04-30 00:00:00\n", - "Selling VICI on 2020-04-30 00:00:00\n", - "Selling HWM on 2020-04-30 00:00:00\n", - "Selling APO on 2020-04-30 00:00:00\n", - "Selling LYB on 2020-04-30 00:00:00\n", - "Selling MPWR on 2020-04-30 00:00:00\n", - "Selling PH on 2020-04-30 00:00:00\n", - "Selling FCX on 2020-04-30 00:00:00\n", - "Selling C on 2020-04-30 00:00:00\n", - "Selling SYF on 2020-04-30 00:00:00\n", - "Selling TRGP on 2020-04-30 00:00:00\n", - "Selling DRI on 2020-04-30 00:00:00\n", - "Selling DFS on 2020-04-30 00:00:00\n", - "Selling NCLH on 2020-04-30 00:00:00\n", - "Buying CLX on 2020-05-31 00:00:00\n", - "Buying GIS on 2020-05-31 00:00:00\n", - "Buying SJM on 2020-05-31 00:00:00\n", - "Buying GEN on 2020-05-31 00:00:00\n", - "Buying NEM on 2020-05-31 00:00:00\n", - "Buying GILD on 2020-05-31 00:00:00\n", - "Buying DG on 2020-05-31 00:00:00\n", - "Buying CHD on 2020-05-31 00:00:00\n", - "Buying BMY on 2020-05-31 00:00:00\n", - "Buying AMZN on 2020-05-31 00:00:00\n", - "Buying NFLX on 2020-05-31 00:00:00\n", - "Buying BDX on 2020-05-31 00:00:00\n", - "Buying INCY on 2020-05-31 00:00:00\n", - "Buying EXR on 2020-05-31 00:00:00\n", - "Selling TXT on 2020-05-31 00:00:00\n", - "Selling VICI on 2020-05-31 00:00:00\n", - "Selling WELL on 2020-05-31 00:00:00\n", - "Selling LYB on 2020-05-31 00:00:00\n", - "Selling APO on 2020-05-31 00:00:00\n", - "Selling PH on 2020-05-31 00:00:00\n", - "Selling HWM on 2020-05-31 00:00:00\n", - "Selling FCX on 2020-05-31 00:00:00\n", - "Selling C on 2020-05-31 00:00:00\n", - "Selling SYF on 2020-05-31 00:00:00\n", - "Selling TRGP on 2020-05-31 00:00:00\n", - "Selling DRI on 2020-05-31 00:00:00\n", - "Selling DFS on 2020-05-31 00:00:00\n", - "Selling NCLH on 2020-05-31 00:00:00\n", - "Buying CLX on 2020-06-30 00:00:00\n", - "Buying NFLX on 2020-06-30 00:00:00\n", - "Buying GIS on 2020-06-30 00:00:00\n", - "Buying DG on 2020-06-30 00:00:00\n", - "Buying SJM on 2020-06-30 00:00:00\n", - "Buying CRWD on 2020-06-30 00:00:00\n", - "Buying CHD on 2020-06-30 00:00:00\n", - "Buying NEM on 2020-06-30 00:00:00\n", - "Buying BDX on 2020-06-30 00:00:00\n", - "Buying BMY on 2020-06-30 00:00:00\n", - "Buying VRTX on 2020-06-30 00:00:00\n", - "Buying AMZN on 2020-06-30 00:00:00\n", - "Buying ABBV on 2020-06-30 00:00:00\n", - "Buying RMD on 2020-06-30 00:00:00\n", - "Selling PSX on 2020-06-30 00:00:00\n", - "Selling TXT on 2020-06-30 00:00:00\n", - "Selling LYB on 2020-06-30 00:00:00\n", - "Selling FCX on 2020-06-30 00:00:00\n", - "Selling HBAN on 2020-06-30 00:00:00\n", - "Selling APTV on 2020-06-30 00:00:00\n", - "Selling HWM on 2020-06-30 00:00:00\n", - "Selling C on 2020-06-30 00:00:00\n", - "Selling WELL on 2020-06-30 00:00:00\n", - "Selling TRGP on 2020-06-30 00:00:00\n", - "Selling SYF on 2020-06-30 00:00:00\n", - "Selling MAR on 2020-06-30 00:00:00\n", - "Selling DFS on 2020-06-30 00:00:00\n", - "Selling NCLH on 2020-06-30 00:00:00\n", - "Buying CLX on 2020-07-31 00:00:00\n", - "Buying NEM on 2020-07-31 00:00:00\n", - "Buying DG on 2020-07-31 00:00:00\n", - "Buying CHD on 2020-07-31 00:00:00\n", - "Buying D on 2020-07-31 00:00:00\n", - "Buying BDX on 2020-07-31 00:00:00\n", - "Buying GIS on 2020-07-31 00:00:00\n", - "Buying TSCO on 2020-07-31 00:00:00\n", - "Buying SJM on 2020-07-31 00:00:00\n", - "Buying VRTX on 2020-07-31 00:00:00\n", - "Buying ABBV on 2020-07-31 00:00:00\n", - "Buying GILD on 2020-07-31 00:00:00\n", - "Buying DLTR on 2020-07-31 00:00:00\n", - "Buying BMY on 2020-07-31 00:00:00\n", - "Selling PSX on 2020-07-31 00:00:00\n", - "Selling WFC on 2020-07-31 00:00:00\n", - "Selling LYB on 2020-07-31 00:00:00\n", - "Selling FCX on 2020-07-31 00:00:00\n", - "Selling HBAN on 2020-07-31 00:00:00\n", - "Selling TXT on 2020-07-31 00:00:00\n", - "Selling LYV on 2020-07-31 00:00:00\n", - "Selling MAR on 2020-07-31 00:00:00\n", - "Selling C on 2020-07-31 00:00:00\n", - "Selling SYF on 2020-07-31 00:00:00\n", - "Selling DFS on 2020-07-31 00:00:00\n", - "Selling TRGP on 2020-07-31 00:00:00\n", - "Selling HWM on 2020-07-31 00:00:00\n", - "Selling NCLH on 2020-07-31 00:00:00\n", - "Buying CLX on 2020-08-31 00:00:00\n", - "Buying DG on 2020-08-31 00:00:00\n", - "Buying D on 2020-08-31 00:00:00\n", - "Buying CHD on 2020-08-31 00:00:00\n", - "Buying TSCO on 2020-08-31 00:00:00\n", - "Buying DUK on 2020-08-31 00:00:00\n", - "Buying DLTR on 2020-08-31 00:00:00\n", - "Buying BDX on 2020-08-31 00:00:00\n", - "Buying GILD on 2020-08-31 00:00:00\n", - "Buying CMS on 2020-08-31 00:00:00\n", - "Buying ORLY on 2020-08-31 00:00:00\n", - "Buying SJM on 2020-08-31 00:00:00\n", - "Buying AEP on 2020-08-31 00:00:00\n", - "Buying GIS on 2020-08-31 00:00:00\n", - "Selling GS on 2020-08-31 00:00:00\n", - "Selling HBAN on 2020-08-31 00:00:00\n", - "Selling TXT on 2020-08-31 00:00:00\n", - "Selling STLD on 2020-08-31 00:00:00\n", - "Selling PSX on 2020-08-31 00:00:00\n", - "Selling LYB on 2020-08-31 00:00:00\n", - "Selling MAR on 2020-08-31 00:00:00\n", - "Selling SYF on 2020-08-31 00:00:00\n", - "Selling DFS on 2020-08-31 00:00:00\n", - "Selling C on 2020-08-31 00:00:00\n", - "Selling HWM on 2020-08-31 00:00:00\n", - "Selling FCX on 2020-08-31 00:00:00\n", - "Selling TRGP on 2020-08-31 00:00:00\n", - "Selling NCLH on 2020-08-31 00:00:00\n", - "Buying CBOE on 2020-09-30 00:00:00\n", - "Buying NI on 2020-09-30 00:00:00\n", - "Buying CVS on 2020-09-30 00:00:00\n", - "Buying T on 2020-09-30 00:00:00\n", - "Buying LVS on 2020-09-30 00:00:00\n", - "Buying AEP on 2020-09-30 00:00:00\n", - "Buying BDX on 2020-09-30 00:00:00\n", - "Buying D on 2020-09-30 00:00:00\n", - "Buying SO on 2020-09-30 00:00:00\n", - "Buying PNW on 2020-09-30 00:00:00\n", - "Buying LHX on 2020-09-30 00:00:00\n", - "Buying DGX on 2020-09-30 00:00:00\n", - "Buying PARA on 2020-09-30 00:00:00\n", - "Buying DUK on 2020-09-30 00:00:00\n", - "Selling NFLX on 2020-09-30 00:00:00\n", - "Selling JBL on 2020-09-30 00:00:00\n", - "Selling EPAM on 2020-09-30 00:00:00\n", - "Selling PTC on 2020-09-30 00:00:00\n", - "Selling TRGP on 2020-09-30 00:00:00\n", - "Selling FCX on 2020-09-30 00:00:00\n", - "Selling MTCH on 2020-09-30 00:00:00\n", - "Selling AMZN on 2020-09-30 00:00:00\n", - "Selling NOW on 2020-09-30 00:00:00\n", - "Selling MPWR on 2020-09-30 00:00:00\n", - "Selling ADBE on 2020-09-30 00:00:00\n", - "Selling MSFT on 2020-09-30 00:00:00\n", - "Selling CRM on 2020-09-30 00:00:00\n", - "Selling SWKS on 2020-09-30 00:00:00\n", - "Buying CBOE on 2020-10-31 00:00:00\n", - "Buying DGX on 2020-10-31 00:00:00\n", - "Buying T on 2020-10-31 00:00:00\n", - "Buying BDX on 2020-10-31 00:00:00\n", - "Buying AEP on 2020-10-31 00:00:00\n", - "Buying NI on 2020-10-31 00:00:00\n", - "Buying PARA on 2020-10-31 00:00:00\n", - "Buying PNW on 2020-10-31 00:00:00\n", - "Buying CVS on 2020-10-31 00:00:00\n", - "Buying LH on 2020-10-31 00:00:00\n", - "Buying CLX on 2020-10-31 00:00:00\n", - "Buying ERIE on 2020-10-31 00:00:00\n", - "Buying D on 2020-10-31 00:00:00\n", - "Buying SO on 2020-10-31 00:00:00\n", - "Selling ULTA on 2020-10-31 00:00:00\n", - "Selling EPAM on 2020-10-31 00:00:00\n", - "Selling IDXX on 2020-10-31 00:00:00\n", - "Selling NOW on 2020-10-31 00:00:00\n", - "Selling JBL on 2020-10-31 00:00:00\n", - "Selling TRGP on 2020-10-31 00:00:00\n", - "Selling FCX on 2020-10-31 00:00:00\n", - "Selling PTC on 2020-10-31 00:00:00\n", - "Selling MPWR on 2020-10-31 00:00:00\n", - "Selling MSFT on 2020-10-31 00:00:00\n", - "Selling ADBE on 2020-10-31 00:00:00\n", - "Selling AMZN on 2020-10-31 00:00:00\n", - "Selling CRM on 2020-10-31 00:00:00\n", - "Selling SWKS on 2020-10-31 00:00:00\n", - "Buying CLX on 2020-11-30 00:00:00\n", - "Buying DGX on 2020-11-30 00:00:00\n", - "Buying BDX on 2020-11-30 00:00:00\n", - "Buying AEP on 2020-11-30 00:00:00\n", - "Buying EXR on 2020-11-30 00:00:00\n", - "Buying LH on 2020-11-30 00:00:00\n", - "Buying CHD on 2020-11-30 00:00:00\n", - "Buying CRWD on 2020-11-30 00:00:00\n", - "Buying T on 2020-11-30 00:00:00\n", - "Buying ERIE on 2020-11-30 00:00:00\n", - "Buying CBOE on 2020-11-30 00:00:00\n", - "Buying JBHT on 2020-11-30 00:00:00\n", - "Buying DG on 2020-11-30 00:00:00\n", - "Buying SO on 2020-11-30 00:00:00\n", - "Selling JBL on 2020-11-30 00:00:00\n", - "Selling AMZN on 2020-11-30 00:00:00\n", - "Selling HWM on 2020-11-30 00:00:00\n", - "Selling REG on 2020-11-30 00:00:00\n", - "Selling ULTA on 2020-11-30 00:00:00\n", - "Selling LYV on 2020-11-30 00:00:00\n", - "Selling DFS on 2020-11-30 00:00:00\n", - "Selling SWKS on 2020-11-30 00:00:00\n", - "Selling SYY on 2020-11-30 00:00:00\n", - "Selling BKNG on 2020-11-30 00:00:00\n", - "Selling MAR on 2020-11-30 00:00:00\n", - "Selling TRGP on 2020-11-30 00:00:00\n", - "Selling PSX on 2020-11-30 00:00:00\n", - "Selling NCLH on 2020-11-30 00:00:00\n", - "Buying CLX on 2020-12-31 00:00:00\n", - "Buying CRWD on 2020-12-31 00:00:00\n", - "Buying EXR on 2020-12-31 00:00:00\n", - "Buying CHD on 2020-12-31 00:00:00\n", - "Buying ERIE on 2020-12-31 00:00:00\n", - "Buying CCI on 2020-12-31 00:00:00\n", - "Buying LH on 2020-12-31 00:00:00\n", - "Buying DGX on 2020-12-31 00:00:00\n", - "Buying GEN on 2020-12-31 00:00:00\n", - "Buying GIS on 2020-12-31 00:00:00\n", - "Buying TSCO on 2020-12-31 00:00:00\n", - "Buying DG on 2020-12-31 00:00:00\n", - "Buying SJM on 2020-12-31 00:00:00\n", - "Buying AEP on 2020-12-31 00:00:00\n", - "Selling HWM on 2020-12-31 00:00:00\n", - "Selling WFC on 2020-12-31 00:00:00\n", - "Selling DRI on 2020-12-31 00:00:00\n", - "Selling DFS on 2020-12-31 00:00:00\n", - "Selling SYF on 2020-12-31 00:00:00\n", - "Selling JBL on 2020-12-31 00:00:00\n", - "Selling REG on 2020-12-31 00:00:00\n", - "Selling TRGP on 2020-12-31 00:00:00\n", - "Selling MAR on 2020-12-31 00:00:00\n", - "Selling LYV on 2020-12-31 00:00:00\n", - "Selling SYY on 2020-12-31 00:00:00\n", - "Selling BKNG on 2020-12-31 00:00:00\n", - "Selling PSX on 2020-12-31 00:00:00\n", - "Selling NCLH on 2020-12-31 00:00:00\n", - "Buying CLX on 2021-01-31 00:00:00\n", - "Buying IRM on 2021-01-31 00:00:00\n", - "Buying SJM on 2021-01-31 00:00:00\n", - "Buying GIS on 2021-01-31 00:00:00\n", - "Buying MKTX on 2021-01-31 00:00:00\n", - "Buying DGX on 2021-01-31 00:00:00\n", - "Buying CHD on 2021-01-31 00:00:00\n", - "Buying PARA on 2021-01-31 00:00:00\n", - "Buying LH on 2021-01-31 00:00:00\n", - "Buying CCI on 2021-01-31 00:00:00\n", - "Buying ERIE on 2021-01-31 00:00:00\n", - "Buying TSCO on 2021-01-31 00:00:00\n", - "Buying EXR on 2021-01-31 00:00:00\n", - "Buying GILD on 2021-01-31 00:00:00\n", - "Selling TXT on 2021-01-31 00:00:00\n", - "Selling DFS on 2021-01-31 00:00:00\n", - "Selling TRGP on 2021-01-31 00:00:00\n", - "Selling WFC on 2021-01-31 00:00:00\n", - "Selling LVS on 2021-01-31 00:00:00\n", - "Selling SYF on 2021-01-31 00:00:00\n", - "Selling DRI on 2021-01-31 00:00:00\n", - "Selling SYY on 2021-01-31 00:00:00\n", - "Selling LYV on 2021-01-31 00:00:00\n", - "Selling REG on 2021-01-31 00:00:00\n", - "Selling MAR on 2021-01-31 00:00:00\n", - "Selling PSX on 2021-01-31 00:00:00\n", - "Selling BKNG on 2021-01-31 00:00:00\n", - "Selling NCLH on 2021-01-31 00:00:00\n", - "Buying CLX on 2021-02-28 00:00:00\n", - "Buying IRM on 2021-02-28 00:00:00\n", - "Buying SJM on 2021-02-28 00:00:00\n", - "Buying DGX on 2021-02-28 00:00:00\n", - "Buying MKTX on 2021-02-28 00:00:00\n", - "Buying GIS on 2021-02-28 00:00:00\n", - "Buying TAP on 2021-02-28 00:00:00\n", - "Buying CHD on 2021-02-28 00:00:00\n", - "Buying DUK on 2021-02-28 00:00:00\n", - "Buying PARA on 2021-02-28 00:00:00\n", - "Buying D on 2021-02-28 00:00:00\n", - "Buying TSCO on 2021-02-28 00:00:00\n", - "Buying KHC on 2021-02-28 00:00:00\n", - "Buying ERIE on 2021-02-28 00:00:00\n", - "Selling APTV on 2021-02-28 00:00:00\n", - "Selling KMX on 2021-02-28 00:00:00\n", - "Selling FCX on 2021-02-28 00:00:00\n", - "Selling JBL on 2021-02-28 00:00:00\n", - "Selling DFS on 2021-02-28 00:00:00\n", - "Selling SYF on 2021-02-28 00:00:00\n", - "Selling NCLH on 2021-02-28 00:00:00\n", - "Selling MTCH on 2021-02-28 00:00:00\n", - "Selling TXT on 2021-02-28 00:00:00\n", - "Selling NFLX on 2021-02-28 00:00:00\n", - "Selling BKNG on 2021-02-28 00:00:00\n", - "Selling PTC on 2021-02-28 00:00:00\n", - "Selling SWKS on 2021-02-28 00:00:00\n", - "Selling MPWR on 2021-02-28 00:00:00\n", - "Buying PARA on 2021-03-31 00:00:00\n", - "Buying IRM on 2021-03-31 00:00:00\n", - "Buying CLX on 2021-03-31 00:00:00\n", - "Buying SJM on 2021-03-31 00:00:00\n", - "Buying DGX on 2021-03-31 00:00:00\n", - "Buying TAP on 2021-03-31 00:00:00\n", - "Buying GIS on 2021-03-31 00:00:00\n", - "Buying DUK on 2021-03-31 00:00:00\n", - "Buying NI on 2021-03-31 00:00:00\n", - "Buying CHD on 2021-03-31 00:00:00\n", - "Buying AEP on 2021-03-31 00:00:00\n", - "Buying PPL on 2021-03-31 00:00:00\n", - "Buying EXR on 2021-03-31 00:00:00\n", - "Buying CMS on 2021-03-31 00:00:00\n", - "Selling ADBE on 2021-03-31 00:00:00\n", - "Selling SYF on 2021-03-31 00:00:00\n", - "Selling INCY on 2021-03-31 00:00:00\n", - "Selling BKNG on 2021-03-31 00:00:00\n", - "Selling IDXX on 2021-03-31 00:00:00\n", - "Selling NFLX on 2021-03-31 00:00:00\n", - "Selling JBL on 2021-03-31 00:00:00\n", - "Selling CRWD on 2021-03-31 00:00:00\n", - "Selling NOW on 2021-03-31 00:00:00\n", - "Selling MTCH on 2021-03-31 00:00:00\n", - "Selling FCX on 2021-03-31 00:00:00\n", - "Selling SWKS on 2021-03-31 00:00:00\n", - "Selling PTC on 2021-03-31 00:00:00\n", - "Selling MPWR on 2021-03-31 00:00:00\n", - "Buying PARA on 2021-04-30 00:00:00\n", - "Buying HAS on 2021-04-30 00:00:00\n", - "Buying CLX on 2021-04-30 00:00:00\n", - "Buying EXR on 2021-04-30 00:00:00\n", - "Buying SJM on 2021-04-30 00:00:00\n", - "Buying DGX on 2021-04-30 00:00:00\n", - "Buying CMS on 2021-04-30 00:00:00\n", - "Buying PNW on 2021-04-30 00:00:00\n", - "Buying NI on 2021-04-30 00:00:00\n", - "Buying CHD on 2021-04-30 00:00:00\n", - "Buying PPL on 2021-04-30 00:00:00\n", - "Buying T on 2021-04-30 00:00:00\n", - "Buying DUK on 2021-04-30 00:00:00\n", - "Buying AEP on 2021-04-30 00:00:00\n", - "Selling CTAS on 2021-04-30 00:00:00\n", - "Selling AXON on 2021-04-30 00:00:00\n", - "Selling IDXX on 2021-04-30 00:00:00\n", - "Selling PHM on 2021-04-30 00:00:00\n", - "Selling ADBE on 2021-04-30 00:00:00\n", - "Selling MKTX on 2021-04-30 00:00:00\n", - "Selling JBL on 2021-04-30 00:00:00\n", - "Selling NOW on 2021-04-30 00:00:00\n", - "Selling CRWD on 2021-04-30 00:00:00\n", - "Selling PTC on 2021-04-30 00:00:00\n", - "Selling MTCH on 2021-04-30 00:00:00\n", - "Selling FCX on 2021-04-30 00:00:00\n", - "Selling SWKS on 2021-04-30 00:00:00\n", - "Selling MPWR on 2021-04-30 00:00:00\n", - "Buying PARA on 2021-05-31 00:00:00\n", - "Buying GEN on 2021-05-31 00:00:00\n", - "Buying DGX on 2021-05-31 00:00:00\n", - "Buying NI on 2021-05-31 00:00:00\n", - "Buying CVS on 2021-05-31 00:00:00\n", - "Buying COR on 2021-05-31 00:00:00\n", - "Buying CHD on 2021-05-31 00:00:00\n", - "Buying CMS on 2021-05-31 00:00:00\n", - "Buying PPL on 2021-05-31 00:00:00\n", - "Buying VST on 2021-05-31 00:00:00\n", - "Buying CLX on 2021-05-31 00:00:00\n", - "Buying CBOE on 2021-05-31 00:00:00\n", - "Buying BMY on 2021-05-31 00:00:00\n", - "Buying AEP on 2021-05-31 00:00:00\n", - "Selling ADBE on 2021-05-31 00:00:00\n", - "Selling CTAS on 2021-05-31 00:00:00\n", - "Selling NCLH on 2021-05-31 00:00:00\n", - "Selling IDXX on 2021-05-31 00:00:00\n", - "Selling TEL on 2021-05-31 00:00:00\n", - "Selling BWA on 2021-05-31 00:00:00\n", - "Selling JBL on 2021-05-31 00:00:00\n", - "Selling PTC on 2021-05-31 00:00:00\n", - "Selling PHM on 2021-05-31 00:00:00\n", - "Selling MTCH on 2021-05-31 00:00:00\n", - "Selling AXON on 2021-05-31 00:00:00\n", - "Selling FCX on 2021-05-31 00:00:00\n", - "Selling SWKS on 2021-05-31 00:00:00\n", - "Selling MPWR on 2021-05-31 00:00:00\n", - "Buying GEN on 2021-06-30 00:00:00\n", - "Buying CLX on 2021-06-30 00:00:00\n", - "Buying BDX on 2021-06-30 00:00:00\n", - "Buying BMY on 2021-06-30 00:00:00\n", - "Buying CHD on 2021-06-30 00:00:00\n", - "Buying CVS on 2021-06-30 00:00:00\n", - "Buying DGX on 2021-06-30 00:00:00\n", - "Buying INCY on 2021-06-30 00:00:00\n", - "Buying COR on 2021-06-30 00:00:00\n", - "Buying GILD on 2021-06-30 00:00:00\n", - "Buying GIS on 2021-06-30 00:00:00\n", - "Buying EQIX on 2021-06-30 00:00:00\n", - "Buying T on 2021-06-30 00:00:00\n", - "Buying DG on 2021-06-30 00:00:00\n", - "Selling CTAS on 2021-06-30 00:00:00\n", - "Selling TAP on 2021-06-30 00:00:00\n", - "Selling NWSA on 2021-06-30 00:00:00\n", - "Selling BWA on 2021-06-30 00:00:00\n", - "Selling AXON on 2021-06-30 00:00:00\n", - "Selling STLD on 2021-06-30 00:00:00\n", - "Selling NUE on 2021-06-30 00:00:00\n", - "Selling PHM on 2021-06-30 00:00:00\n", - "Selling JBL on 2021-06-30 00:00:00\n", - "Selling APTV on 2021-06-30 00:00:00\n", - "Selling TEL on 2021-06-30 00:00:00\n", - "Selling NCLH on 2021-06-30 00:00:00\n", - "Selling SWKS on 2021-06-30 00:00:00\n", - "Selling MPWR on 2021-06-30 00:00:00\n", - "Buying GEN on 2021-07-31 00:00:00\n", - "Buying BDX on 2021-07-31 00:00:00\n", - "Buying EQIX on 2021-07-31 00:00:00\n", - "Buying CLX on 2021-07-31 00:00:00\n", - "Buying GIS on 2021-07-31 00:00:00\n", - "Buying CHD on 2021-07-31 00:00:00\n", - "Buying CRWD on 2021-07-31 00:00:00\n", - "Buying SJM on 2021-07-31 00:00:00\n", - "Buying VRTX on 2021-07-31 00:00:00\n", - "Buying GILD on 2021-07-31 00:00:00\n", - "Buying INCY on 2021-07-31 00:00:00\n", - "Buying MKTX on 2021-07-31 00:00:00\n", - "Buying DGX on 2021-07-31 00:00:00\n", - "Buying BMY on 2021-07-31 00:00:00\n", - "Selling LYV on 2021-07-31 00:00:00\n", - "Selling PHM on 2021-07-31 00:00:00\n", - "Selling SYF on 2021-07-31 00:00:00\n", - "Selling FCX on 2021-07-31 00:00:00\n", - "Selling DFS on 2021-07-31 00:00:00\n", - "Selling KMX on 2021-07-31 00:00:00\n", - "Selling NUE on 2021-07-31 00:00:00\n", - "Selling MAR on 2021-07-31 00:00:00\n", - "Selling APTV on 2021-07-31 00:00:00\n", - "Selling STLD on 2021-07-31 00:00:00\n", - "Selling TXT on 2021-07-31 00:00:00\n", - "Selling JBL on 2021-07-31 00:00:00\n", - "Selling DRI on 2021-07-31 00:00:00\n", - "Selling NCLH on 2021-07-31 00:00:00\n", - "Buying CLX on 2021-08-31 00:00:00\n", - "Buying EQIX on 2021-08-31 00:00:00\n", - "Buying BDX on 2021-08-31 00:00:00\n", - "Buying NFLX on 2021-08-31 00:00:00\n", - "Buying MKTX on 2021-08-31 00:00:00\n", - "Buying DGX on 2021-08-31 00:00:00\n", - "Buying CHD on 2021-08-31 00:00:00\n", - "Buying RMD on 2021-08-31 00:00:00\n", - "Buying CRWD on 2021-08-31 00:00:00\n", - "Buying SJM on 2021-08-31 00:00:00\n", - "Buying VRTX on 2021-08-31 00:00:00\n", - "Buying RVTY on 2021-08-31 00:00:00\n", - "Buying GIS on 2021-08-31 00:00:00\n", - "Buying CCI on 2021-08-31 00:00:00\n", - "Selling NUE on 2021-08-31 00:00:00\n", - "Selling MAR on 2021-08-31 00:00:00\n", - "Selling WFC on 2021-08-31 00:00:00\n", - "Selling TXT on 2021-08-31 00:00:00\n", - "Selling TRGP on 2021-08-31 00:00:00\n", - "Selling LYB on 2021-08-31 00:00:00\n", - "Selling SYF on 2021-08-31 00:00:00\n", - "Selling DRI on 2021-08-31 00:00:00\n", - "Selling HBAN on 2021-08-31 00:00:00\n", - "Selling DFS on 2021-08-31 00:00:00\n", - "Selling STLD on 2021-08-31 00:00:00\n", - "Selling PSX on 2021-08-31 00:00:00\n", - "Selling FCX on 2021-08-31 00:00:00\n", - "Selling NCLH on 2021-08-31 00:00:00\n", - "Buying CLX on 2021-09-30 00:00:00\n", - "Buying CHD on 2021-09-30 00:00:00\n", - "Buying SJM on 2021-09-30 00:00:00\n", - "Buying EQIX on 2021-09-30 00:00:00\n", - "Buying BDX on 2021-09-30 00:00:00\n", - "Buying INCY on 2021-09-30 00:00:00\n", - "Buying FDS on 2021-09-30 00:00:00\n", - "Buying MKTX on 2021-09-30 00:00:00\n", - "Buying RMD on 2021-09-30 00:00:00\n", - "Buying CMS on 2021-09-30 00:00:00\n", - "Buying D on 2021-09-30 00:00:00\n", - "Buying PNW on 2021-09-30 00:00:00\n", - "Buying GIS on 2021-09-30 00:00:00\n", - "Buying CCI on 2021-09-30 00:00:00\n", - "Selling WFC on 2021-09-30 00:00:00\n", - "Selling BX on 2021-09-30 00:00:00\n", - "Selling GE on 2021-09-30 00:00:00\n", - "Selling SYF on 2021-09-30 00:00:00\n", - "Selling PSX on 2021-09-30 00:00:00\n", - "Selling DRI on 2021-09-30 00:00:00\n", - "Selling APO on 2021-09-30 00:00:00\n", - "Selling HBAN on 2021-09-30 00:00:00\n", - "Selling DFS on 2021-09-30 00:00:00\n", - "Selling TRGP on 2021-09-30 00:00:00\n", - "Selling STLD on 2021-09-30 00:00:00\n", - "Selling NUE on 2021-09-30 00:00:00\n", - "Selling FCX on 2021-09-30 00:00:00\n", - "Selling NCLH on 2021-09-30 00:00:00\n", - "Buying PNW on 2021-10-31 00:00:00\n", - "Buying CLX on 2021-10-31 00:00:00\n", - "Buying CMS on 2021-10-31 00:00:00\n", - "Buying NEM on 2021-10-31 00:00:00\n", - "Buying SJM on 2021-10-31 00:00:00\n", - "Buying CHD on 2021-10-31 00:00:00\n", - "Buying NI on 2021-10-31 00:00:00\n", - "Buying WELL on 2021-10-31 00:00:00\n", - "Buying FDS on 2021-10-31 00:00:00\n", - "Buying DUK on 2021-10-31 00:00:00\n", - "Buying D on 2021-10-31 00:00:00\n", - "Buying AEP on 2021-10-31 00:00:00\n", - "Buying SO on 2021-10-31 00:00:00\n", - "Buying INCY on 2021-10-31 00:00:00\n", - "Selling KMX on 2021-10-31 00:00:00\n", - "Selling KEYS on 2021-10-31 00:00:00\n", - "Selling BLK on 2021-10-31 00:00:00\n", - "Selling STLD on 2021-10-31 00:00:00\n", - "Selling DFS on 2021-10-31 00:00:00\n", - "Selling NOW on 2021-10-31 00:00:00\n", - "Selling PTC on 2021-10-31 00:00:00\n", - "Selling TEL on 2021-10-31 00:00:00\n", - "Selling CAT on 2021-10-31 00:00:00\n", - "Selling J on 2021-10-31 00:00:00\n", - "Selling NUE on 2021-10-31 00:00:00\n", - "Selling BX on 2021-10-31 00:00:00\n", - "Selling APO on 2021-10-31 00:00:00\n", - "Selling FCX on 2021-10-31 00:00:00\n", - "Buying NEM on 2021-11-30 00:00:00\n", - "Buying CLX on 2021-11-30 00:00:00\n", - "Buying PNW on 2021-11-30 00:00:00\n", - "Buying SJM on 2021-11-30 00:00:00\n", - "Buying MKTX on 2021-11-30 00:00:00\n", - "Buying FDS on 2021-11-30 00:00:00\n", - "Buying CMS on 2021-11-30 00:00:00\n", - "Buying BDX on 2021-11-30 00:00:00\n", - "Buying CHD on 2021-11-30 00:00:00\n", - "Buying GILD on 2021-11-30 00:00:00\n", - "Buying DUK on 2021-11-30 00:00:00\n", - "Buying AEP on 2021-11-30 00:00:00\n", - "Buying NI on 2021-11-30 00:00:00\n", - "Buying KHC on 2021-11-30 00:00:00\n", - "Selling DFS on 2021-11-30 00:00:00\n", - "Selling LYV on 2021-11-30 00:00:00\n", - "Selling NOW on 2021-11-30 00:00:00\n", - "Selling NUE on 2021-11-30 00:00:00\n", - "Selling PTC on 2021-11-30 00:00:00\n", - "Selling TEL on 2021-11-30 00:00:00\n", - "Selling PH on 2021-11-30 00:00:00\n", - "Selling KEYS on 2021-11-30 00:00:00\n", - "Selling MPWR on 2021-11-30 00:00:00\n", - "Selling NCLH on 2021-11-30 00:00:00\n", - "Selling EPAM on 2021-11-30 00:00:00\n", - "Selling FCX on 2021-11-30 00:00:00\n", - "Selling APO on 2021-11-30 00:00:00\n", - "Selling BX on 2021-11-30 00:00:00\n", - "Buying NEM on 2021-12-31 00:00:00\n", - "Buying CLX on 2021-12-31 00:00:00\n", - "Buying BMY on 2021-12-31 00:00:00\n", - "Buying SJM on 2021-12-31 00:00:00\n", - "Buying BDX on 2021-12-31 00:00:00\n", - "Buying GILD on 2021-12-31 00:00:00\n", - "Buying DGX on 2021-12-31 00:00:00\n", - "Buying DG on 2021-12-31 00:00:00\n", - "Buying CHD on 2021-12-31 00:00:00\n", - "Buying GIS on 2021-12-31 00:00:00\n", - "Buying PNW on 2021-12-31 00:00:00\n", - "Buying VRTX on 2021-12-31 00:00:00\n", - "Buying DUK on 2021-12-31 00:00:00\n", - "Buying PKG on 2021-12-31 00:00:00\n", - "Selling MPWR on 2021-12-31 00:00:00\n", - "Selling TXT on 2021-12-31 00:00:00\n", - "Selling ULTA on 2021-12-31 00:00:00\n", - "Selling JBL on 2021-12-31 00:00:00\n", - "Selling BKNG on 2021-12-31 00:00:00\n", - "Selling APTV on 2021-12-31 00:00:00\n", - "Selling LYV on 2021-12-31 00:00:00\n", - "Selling FCX on 2021-12-31 00:00:00\n", - "Selling CRM on 2021-12-31 00:00:00\n", - "Selling EPAM on 2021-12-31 00:00:00\n", - "Selling ADBE on 2021-12-31 00:00:00\n", - "Selling BX on 2021-12-31 00:00:00\n", - "Selling NCLH on 2021-12-31 00:00:00\n", - "Selling NOW on 2021-12-31 00:00:00\n", - "Buying NEM on 2022-01-31 00:00:00\n", - "Buying CLX on 2022-01-31 00:00:00\n", - "Buying SJM on 2022-01-31 00:00:00\n", - "Buying BMY on 2022-01-31 00:00:00\n", - "Buying BDX on 2022-01-31 00:00:00\n", - "Buying GIS on 2022-01-31 00:00:00\n", - "Buying DGX on 2022-01-31 00:00:00\n", - "Buying DUK on 2022-01-31 00:00:00\n", - "Buying CMS on 2022-01-31 00:00:00\n", - "Buying KHC on 2022-01-31 00:00:00\n", - "Buying DG on 2022-01-31 00:00:00\n", - "Buying GILD on 2022-01-31 00:00:00\n", - "Buying AEP on 2022-01-31 00:00:00\n", - "Buying PPL on 2022-01-31 00:00:00\n", - "Selling IDXX on 2022-01-31 00:00:00\n", - "Selling JBL on 2022-01-31 00:00:00\n", - "Selling LVS on 2022-01-31 00:00:00\n", - "Selling ULTA on 2022-01-31 00:00:00\n", - "Selling LYV on 2022-01-31 00:00:00\n", - "Selling NFLX on 2022-01-31 00:00:00\n", - "Selling CRWD on 2022-01-31 00:00:00\n", - "Selling BX on 2022-01-31 00:00:00\n", - "Selling MPWR on 2022-01-31 00:00:00\n", - "Selling NCLH on 2022-01-31 00:00:00\n", - "Selling ADBE on 2022-01-31 00:00:00\n", - "Selling CRM on 2022-01-31 00:00:00\n", - "Selling NOW on 2022-01-31 00:00:00\n", - "Selling EPAM on 2022-01-31 00:00:00\n", - "Buying NEM on 2022-02-28 00:00:00\n", - "Buying CLX on 2022-02-28 00:00:00\n", - "Buying SJM on 2022-02-28 00:00:00\n", - "Buying GIS on 2022-02-28 00:00:00\n", - "Buying KHC on 2022-02-28 00:00:00\n", - "Buying BDX on 2022-02-28 00:00:00\n", - "Buying CMS on 2022-02-28 00:00:00\n", - "Buying BMY on 2022-02-28 00:00:00\n", - "Buying GILD on 2022-02-28 00:00:00\n", - "Buying CHD on 2022-02-28 00:00:00\n", - "Buying ABBV on 2022-02-28 00:00:00\n", - "Buying SO on 2022-02-28 00:00:00\n", - "Buying ALL on 2022-02-28 00:00:00\n", - "Buying DUK on 2022-02-28 00:00:00\n", - "Selling LYV on 2022-02-28 00:00:00\n", - "Selling AMZN on 2022-02-28 00:00:00\n", - "Selling ULTA on 2022-02-28 00:00:00\n", - "Selling PHM on 2022-02-28 00:00:00\n", - "Selling MTCH on 2022-02-28 00:00:00\n", - "Selling BX on 2022-02-28 00:00:00\n", - "Selling NCLH on 2022-02-28 00:00:00\n", - "Selling NFLX on 2022-02-28 00:00:00\n", - "Selling CRM on 2022-02-28 00:00:00\n", - "Selling ADBE on 2022-02-28 00:00:00\n", - "Selling MPWR on 2022-02-28 00:00:00\n", - "Selling CRWD on 2022-02-28 00:00:00\n", - "Selling EPAM on 2022-02-28 00:00:00\n", - "Selling NOW on 2022-02-28 00:00:00\n", - "Buying NEM on 2022-03-31 00:00:00\n", - "Buying CF on 2022-03-31 00:00:00\n", - "Buying LHX on 2022-03-31 00:00:00\n", - "Buying KHC on 2022-03-31 00:00:00\n", - "Buying PSX on 2022-03-31 00:00:00\n", - "Buying SJM on 2022-03-31 00:00:00\n", - "Buying CMS on 2022-03-31 00:00:00\n", - "Buying LDOS on 2022-03-31 00:00:00\n", - "Buying SO on 2022-03-31 00:00:00\n", - "Buying CLX on 2022-03-31 00:00:00\n", - "Buying AEP on 2022-03-31 00:00:00\n", - "Buying GIS on 2022-03-31 00:00:00\n", - "Buying D on 2022-03-31 00:00:00\n", - "Buying DUK on 2022-03-31 00:00:00\n", - "Selling SWKS on 2022-03-31 00:00:00\n", - "Selling APTV on 2022-03-31 00:00:00\n", - "Selling AXON on 2022-03-31 00:00:00\n", - "Selling ADBE on 2022-03-31 00:00:00\n", - "Selling CRM on 2022-03-31 00:00:00\n", - "Selling LVS on 2022-03-31 00:00:00\n", - "Selling NFLX on 2022-03-31 00:00:00\n", - "Selling CRWD on 2022-03-31 00:00:00\n", - "Selling BX on 2022-03-31 00:00:00\n", - "Selling NCLH on 2022-03-31 00:00:00\n", - "Selling NOW on 2022-03-31 00:00:00\n", - "Selling MTCH on 2022-03-31 00:00:00\n", - "Selling MPWR on 2022-03-31 00:00:00\n", - "Selling EPAM on 2022-03-31 00:00:00\n", - "Buying NEM on 2022-04-30 00:00:00\n", - "Buying CF on 2022-04-30 00:00:00\n", - "Buying LHX on 2022-04-30 00:00:00\n", - "Buying LDOS on 2022-04-30 00:00:00\n", - "Buying KHC on 2022-04-30 00:00:00\n", - "Buying CMS on 2022-04-30 00:00:00\n", - "Buying SJM on 2022-04-30 00:00:00\n", - "Buying CLX on 2022-04-30 00:00:00\n", - "Buying CHD on 2022-04-30 00:00:00\n", - "Buying HII on 2022-04-30 00:00:00\n", - "Buying DUK on 2022-04-30 00:00:00\n", - "Buying SO on 2022-04-30 00:00:00\n", - "Buying PSX on 2022-04-30 00:00:00\n", - "Buying D on 2022-04-30 00:00:00\n", - "Selling SWKS on 2022-04-30 00:00:00\n", - "Selling APTV on 2022-04-30 00:00:00\n", - "Selling APO on 2022-04-30 00:00:00\n", - "Selling AXON on 2022-04-30 00:00:00\n", - "Selling CRM on 2022-04-30 00:00:00\n", - "Selling LVS on 2022-04-30 00:00:00\n", - "Selling CRWD on 2022-04-30 00:00:00\n", - "Selling AMZN on 2022-04-30 00:00:00\n", - "Selling BX on 2022-04-30 00:00:00\n", - "Selling NCLH on 2022-04-30 00:00:00\n", - "Selling NOW on 2022-04-30 00:00:00\n", - "Selling MTCH on 2022-04-30 00:00:00\n", - "Selling MPWR on 2022-04-30 00:00:00\n", - "Selling EPAM on 2022-04-30 00:00:00\n", - "Buying DUK on 2022-05-31 00:00:00\n", - "Buying CMS on 2022-05-31 00:00:00\n", - "Buying LHX on 2022-05-31 00:00:00\n", - "Buying SO on 2022-05-31 00:00:00\n", - "Buying PNW on 2022-05-31 00:00:00\n", - "Buying D on 2022-05-31 00:00:00\n", - "Buying NEM on 2022-05-31 00:00:00\n", - "Buying ABBV on 2022-05-31 00:00:00\n", - "Buying BMY on 2022-05-31 00:00:00\n", - "Buying SJM on 2022-05-31 00:00:00\n", - "Buying CHD on 2022-05-31 00:00:00\n", - "Buying AEP on 2022-05-31 00:00:00\n", - "Buying SRE on 2022-05-31 00:00:00\n", - "Buying NRG on 2022-05-31 00:00:00\n", - "Selling CRM on 2022-05-31 00:00:00\n", - "Selling ULTA on 2022-05-31 00:00:00\n", - "Selling APTV on 2022-05-31 00:00:00\n", - "Selling EPAM on 2022-05-31 00:00:00\n", - "Selling NFLX on 2022-05-31 00:00:00\n", - "Selling AXON on 2022-05-31 00:00:00\n", - "Selling LVS on 2022-05-31 00:00:00\n", - "Selling BX on 2022-05-31 00:00:00\n", - "Selling AMZN on 2022-05-31 00:00:00\n", - "Selling NOW on 2022-05-31 00:00:00\n", - "Selling MTCH on 2022-05-31 00:00:00\n", - "Selling CRWD on 2022-05-31 00:00:00\n", - "Selling NCLH on 2022-05-31 00:00:00\n", - "Selling MPWR on 2022-05-31 00:00:00\n", - "Buying DUK on 2022-06-30 00:00:00\n", - "Buying CHD on 2022-06-30 00:00:00\n", - "Buying ABBV on 2022-06-30 00:00:00\n", - "Buying PNW on 2022-06-30 00:00:00\n", - "Buying D on 2022-06-30 00:00:00\n", - "Buying CMS on 2022-06-30 00:00:00\n", - "Buying GIS on 2022-06-30 00:00:00\n", - "Buying BMY on 2022-06-30 00:00:00\n", - "Buying NEM on 2022-06-30 00:00:00\n", - "Buying SO on 2022-06-30 00:00:00\n", - "Buying LHX on 2022-06-30 00:00:00\n", - "Buying SJM on 2022-06-30 00:00:00\n", - "Buying GILD on 2022-06-30 00:00:00\n", - "Buying AEP on 2022-06-30 00:00:00\n", - "Selling PTC on 2022-06-30 00:00:00\n", - "Selling APO on 2022-06-30 00:00:00\n", - "Selling ULTA on 2022-06-30 00:00:00\n", - "Selling CRM on 2022-06-30 00:00:00\n", - "Selling NFLX on 2022-06-30 00:00:00\n", - "Selling APTV on 2022-06-30 00:00:00\n", - "Selling AXON on 2022-06-30 00:00:00\n", - "Selling BX on 2022-06-30 00:00:00\n", - "Selling MTCH on 2022-06-30 00:00:00\n", - "Selling NOW on 2022-06-30 00:00:00\n", - "Selling AMZN on 2022-06-30 00:00:00\n", - "Selling CRWD on 2022-06-30 00:00:00\n", - "Selling MPWR on 2022-06-30 00:00:00\n", - "Selling NCLH on 2022-06-30 00:00:00\n", - "Buying ABBV on 2022-07-31 00:00:00\n", - "Buying DUK on 2022-07-31 00:00:00\n", - "Buying CHD on 2022-07-31 00:00:00\n", - "Buying KHC on 2022-07-31 00:00:00\n", - "Buying NEM on 2022-07-31 00:00:00\n", - "Buying PNW on 2022-07-31 00:00:00\n", - "Buying GIS on 2022-07-31 00:00:00\n", - "Buying BMY on 2022-07-31 00:00:00\n", - "Buying D on 2022-07-31 00:00:00\n", - "Buying GILD on 2022-07-31 00:00:00\n", - "Buying CMS on 2022-07-31 00:00:00\n", - "Buying SO on 2022-07-31 00:00:00\n", - "Buying SJM on 2022-07-31 00:00:00\n", - "Buying AEP on 2022-07-31 00:00:00\n", - "Selling CRL on 2022-07-31 00:00:00\n", - "Selling FCX on 2022-07-31 00:00:00\n", - "Selling CRM on 2022-07-31 00:00:00\n", - "Selling GM on 2022-07-31 00:00:00\n", - "Selling NOW on 2022-07-31 00:00:00\n", - "Selling AXON on 2022-07-31 00:00:00\n", - "Selling AMZN on 2022-07-31 00:00:00\n", - "Selling BX on 2022-07-31 00:00:00\n", - "Selling NFLX on 2022-07-31 00:00:00\n", - "Selling MTCH on 2022-07-31 00:00:00\n", - "Selling APTV on 2022-07-31 00:00:00\n", - "Selling MPWR on 2022-07-31 00:00:00\n", - "Selling CRWD on 2022-07-31 00:00:00\n", - "Selling NCLH on 2022-07-31 00:00:00\n", - "Buying KHC on 2022-08-31 00:00:00\n", - "Buying CHD on 2022-08-31 00:00:00\n", - "Buying GIS on 2022-08-31 00:00:00\n", - "Buying NEM on 2022-08-31 00:00:00\n", - "Buying SJM on 2022-08-31 00:00:00\n", - "Buying BMY on 2022-08-31 00:00:00\n", - "Buying CLX on 2022-08-31 00:00:00\n", - "Buying DUK on 2022-08-31 00:00:00\n", - "Buying ABBV on 2022-08-31 00:00:00\n", - "Buying D on 2022-08-31 00:00:00\n", - "Buying PNW on 2022-08-31 00:00:00\n", - "Buying SO on 2022-08-31 00:00:00\n", - "Buying DG on 2022-08-31 00:00:00\n", - "Buying CMS on 2022-08-31 00:00:00\n", - "Selling APO on 2022-08-31 00:00:00\n", - "Selling SWKS on 2022-08-31 00:00:00\n", - "Selling GM on 2022-08-31 00:00:00\n", - "Selling CRM on 2022-08-31 00:00:00\n", - "Selling MTCH on 2022-08-31 00:00:00\n", - "Selling NOW on 2022-08-31 00:00:00\n", - "Selling AXON on 2022-08-31 00:00:00\n", - "Selling AMZN on 2022-08-31 00:00:00\n", - "Selling CRWD on 2022-08-31 00:00:00\n", - "Selling NFLX on 2022-08-31 00:00:00\n", - "Selling MPWR on 2022-08-31 00:00:00\n", - "Selling BX on 2022-08-31 00:00:00\n", - "Selling APTV on 2022-08-31 00:00:00\n", - "Selling NCLH on 2022-08-31 00:00:00\n", - "Buying KHC on 2022-09-30 00:00:00\n", - "Buying GIS on 2022-09-30 00:00:00\n", - "Buying SJM on 2022-09-30 00:00:00\n", - "Buying BMY on 2022-09-30 00:00:00\n", - "Buying CHD on 2022-09-30 00:00:00\n", - "Buying ERIE on 2022-09-30 00:00:00\n", - "Buying ABBV on 2022-09-30 00:00:00\n", - "Buying CLX on 2022-09-30 00:00:00\n", - "Buying CBOE on 2022-09-30 00:00:00\n", - "Buying NEM on 2022-09-30 00:00:00\n", - "Buying T on 2022-09-30 00:00:00\n", - "Buying O on 2022-09-30 00:00:00\n", - "Buying DG on 2022-09-30 00:00:00\n", - "Buying WELL on 2022-09-30 00:00:00\n", - "Selling BLK on 2022-09-30 00:00:00\n", - "Selling MTCH on 2022-09-30 00:00:00\n", - "Selling GM on 2022-09-30 00:00:00\n", - "Selling ADBE on 2022-09-30 00:00:00\n", - "Selling AXON on 2022-09-30 00:00:00\n", - "Selling NOW on 2022-09-30 00:00:00\n", - "Selling CRWD on 2022-09-30 00:00:00\n", - "Selling MPWR on 2022-09-30 00:00:00\n", - "Selling BX on 2022-09-30 00:00:00\n", - "Selling AMZN on 2022-09-30 00:00:00\n", - "Selling KMX on 2022-09-30 00:00:00\n", - "Selling APTV on 2022-09-30 00:00:00\n", - "Selling NFLX on 2022-09-30 00:00:00\n", - "Selling NCLH on 2022-09-30 00:00:00\n", - "Buying GIS on 2022-10-31 00:00:00\n", - "Buying BMY on 2022-10-31 00:00:00\n", - "Buying SJM on 2022-10-31 00:00:00\n", - "Buying KHC on 2022-10-31 00:00:00\n", - "Buying ERIE on 2022-10-31 00:00:00\n", - "Buying ABBV on 2022-10-31 00:00:00\n", - "Buying EW on 2022-10-31 00:00:00\n", - "Buying CHD on 2022-10-31 00:00:00\n", - "Buying DG on 2022-10-31 00:00:00\n", - "Buying INCY on 2022-10-31 00:00:00\n", - "Buying CBOE on 2022-10-31 00:00:00\n", - "Buying HII on 2022-10-31 00:00:00\n", - "Buying ORLY on 2022-10-31 00:00:00\n", - "Buying TAP on 2022-10-31 00:00:00\n", - "Selling PHM on 2022-10-31 00:00:00\n", - "Selling CE on 2022-10-31 00:00:00\n", - "Selling FCX on 2022-10-31 00:00:00\n", - "Selling APO on 2022-10-31 00:00:00\n", - "Selling NFLX on 2022-10-31 00:00:00\n", - "Selling SYF on 2022-10-31 00:00:00\n", - "Selling BLK on 2022-10-31 00:00:00\n", - "Selling MTCH on 2022-10-31 00:00:00\n", - "Selling SWKS on 2022-10-31 00:00:00\n", - "Selling KMX on 2022-10-31 00:00:00\n", - "Selling BX on 2022-10-31 00:00:00\n", - "Selling MPWR on 2022-10-31 00:00:00\n", - "Selling APTV on 2022-10-31 00:00:00\n", - "Selling NCLH on 2022-10-31 00:00:00\n", - "Buying GIS on 2022-11-30 00:00:00\n", - "Buying SJM on 2022-11-30 00:00:00\n", - "Buying BMY on 2022-11-30 00:00:00\n", - "Buying KHC on 2022-11-30 00:00:00\n", - "Buying ERIE on 2022-11-30 00:00:00\n", - "Buying CBOE on 2022-11-30 00:00:00\n", - "Buying CAH on 2022-11-30 00:00:00\n", - "Buying INCY on 2022-11-30 00:00:00\n", - "Buying GEN on 2022-11-30 00:00:00\n", - "Buying ABBV on 2022-11-30 00:00:00\n", - "Buying COR on 2022-11-30 00:00:00\n", - "Buying LDOS on 2022-11-30 00:00:00\n", - "Buying ORLY on 2022-11-30 00:00:00\n", - "Buying LHX on 2022-11-30 00:00:00\n", - "Selling SYF on 2022-11-30 00:00:00\n", - "Selling KMX on 2022-11-30 00:00:00\n", - "Selling AMZN on 2022-11-30 00:00:00\n", - "Selling PARA on 2022-11-30 00:00:00\n", - "Selling FCX on 2022-11-30 00:00:00\n", - "Selling BLK on 2022-11-30 00:00:00\n", - "Selling SWKS on 2022-11-30 00:00:00\n", - "Selling CE on 2022-11-30 00:00:00\n", - "Selling NCLH on 2022-11-30 00:00:00\n", - "Selling EPAM on 2022-11-30 00:00:00\n", - "Selling MTCH on 2022-11-30 00:00:00\n", - "Selling APTV on 2022-11-30 00:00:00\n", - "Selling BX on 2022-11-30 00:00:00\n", - "Selling MPWR on 2022-11-30 00:00:00\n", - "Buying SJM on 2022-12-31 00:00:00\n", - "Buying GIS on 2022-12-31 00:00:00\n", - "Buying KHC on 2022-12-31 00:00:00\n", - "Buying CAH on 2022-12-31 00:00:00\n", - "Buying BMY on 2022-12-31 00:00:00\n", - "Buying INCY on 2022-12-31 00:00:00\n", - "Buying COR on 2022-12-31 00:00:00\n", - "Buying ABBV on 2022-12-31 00:00:00\n", - "Buying CBOE on 2022-12-31 00:00:00\n", - "Buying LDOS on 2022-12-31 00:00:00\n", - "Buying LHX on 2022-12-31 00:00:00\n", - "Buying GEN on 2022-12-31 00:00:00\n", - "Buying ORLY on 2022-12-31 00:00:00\n", - "Buying VRTX on 2022-12-31 00:00:00\n", - "Selling BLK on 2022-12-31 00:00:00\n", - "Selling NOW on 2022-12-31 00:00:00\n", - "Selling NFLX on 2022-12-31 00:00:00\n", - "Selling FCX on 2022-12-31 00:00:00\n", - "Selling MSFT on 2022-12-31 00:00:00\n", - "Selling CE on 2022-12-31 00:00:00\n", - "Selling APTV on 2022-12-31 00:00:00\n", - "Selling AMZN on 2022-12-31 00:00:00\n", - "Selling PARA on 2022-12-31 00:00:00\n", - "Selling SWKS on 2022-12-31 00:00:00\n", - "Selling BX on 2022-12-31 00:00:00\n", - "Selling MTCH on 2022-12-31 00:00:00\n", - "Selling EPAM on 2022-12-31 00:00:00\n", - "Selling MPWR on 2022-12-31 00:00:00\n", - "Buying SJM on 2023-01-31 00:00:00\n", - "Buying CAH on 2023-01-31 00:00:00\n", - "Buying COR on 2023-01-31 00:00:00\n", - "Buying CBOE on 2023-01-31 00:00:00\n", - "Buying INCY on 2023-01-31 00:00:00\n", - "Buying BMY on 2023-01-31 00:00:00\n", - "Buying VRTX on 2023-01-31 00:00:00\n", - "Buying GIS on 2023-01-31 00:00:00\n", - "Buying ORLY on 2023-01-31 00:00:00\n", - "Buying ACGL on 2023-01-31 00:00:00\n", - "Buying LDOS on 2023-01-31 00:00:00\n", - "Buying KHC on 2023-01-31 00:00:00\n", - "Buying GILD on 2023-01-31 00:00:00\n", - "Buying LHX on 2023-01-31 00:00:00\n", - "Selling ADBE on 2023-01-31 00:00:00\n", - "Selling CRM on 2023-01-31 00:00:00\n", - "Selling NFLX on 2023-01-31 00:00:00\n", - "Selling APTV on 2023-01-31 00:00:00\n", - "Selling CE on 2023-01-31 00:00:00\n", - "Selling KMX on 2023-01-31 00:00:00\n", - "Selling NOW on 2023-01-31 00:00:00\n", - "Selling SWKS on 2023-01-31 00:00:00\n", - "Selling PARA on 2023-01-31 00:00:00\n", - "Selling AMZN on 2023-01-31 00:00:00\n", - "Selling EPAM on 2023-01-31 00:00:00\n", - "Selling MTCH on 2023-01-31 00:00:00\n", - "Selling BX on 2023-01-31 00:00:00\n", - "Selling MPWR on 2023-01-31 00:00:00\n", - "Buying SJM on 2023-02-28 00:00:00\n", - "Buying INCY on 2023-02-28 00:00:00\n", - "Buying GIS on 2023-02-28 00:00:00\n", - "Buying CBOE on 2023-02-28 00:00:00\n", - "Buying COR on 2023-02-28 00:00:00\n", - "Buying ACGL on 2023-02-28 00:00:00\n", - "Buying CF on 2023-02-28 00:00:00\n", - "Buying ABBV on 2023-02-28 00:00:00\n", - "Buying CLX on 2023-02-28 00:00:00\n", - "Buying CAH on 2023-02-28 00:00:00\n", - "Buying ORLY on 2023-02-28 00:00:00\n", - "Buying GILD on 2023-02-28 00:00:00\n", - "Buying DG on 2023-02-28 00:00:00\n", - "Buying CVS on 2023-02-28 00:00:00\n", - "Selling MSFT on 2023-02-28 00:00:00\n", - "Selling NFLX on 2023-02-28 00:00:00\n", - "Selling IDXX on 2023-02-28 00:00:00\n", - "Selling NOW on 2023-02-28 00:00:00\n", - "Selling SWKS on 2023-02-28 00:00:00\n", - "Selling MTCH on 2023-02-28 00:00:00\n", - "Selling NCLH on 2023-02-28 00:00:00\n", - "Selling AMZN on 2023-02-28 00:00:00\n", - "Selling CRWD on 2023-02-28 00:00:00\n", - "Selling KMX on 2023-02-28 00:00:00\n", - "Selling EPAM on 2023-02-28 00:00:00\n", - "Selling BX on 2023-02-28 00:00:00\n", - "Selling PARA on 2023-02-28 00:00:00\n", - "Selling MPWR on 2023-02-28 00:00:00\n", - "Buying GIS on 2023-03-31 00:00:00\n", - "Buying CHD on 2023-03-31 00:00:00\n", - "Buying CLX on 2023-03-31 00:00:00\n", - "Buying ULTA on 2023-03-31 00:00:00\n", - "Buying SJM on 2023-03-31 00:00:00\n", - "Buying DG on 2023-03-31 00:00:00\n", - "Buying ABBV on 2023-03-31 00:00:00\n", - "Buying INCY on 2023-03-31 00:00:00\n", - "Buying COR on 2023-03-31 00:00:00\n", - "Buying BMY on 2023-03-31 00:00:00\n", - "Buying ORLY on 2023-03-31 00:00:00\n", - "Buying NEM on 2023-03-31 00:00:00\n", - "Buying CBOE on 2023-03-31 00:00:00\n", - "Buying PSX on 2023-03-31 00:00:00\n", - "Selling NOW on 2023-03-31 00:00:00\n", - "Selling IDXX on 2023-03-31 00:00:00\n", - "Selling ADBE on 2023-03-31 00:00:00\n", - "Selling SYF on 2023-03-31 00:00:00\n", - "Selling EPAM on 2023-03-31 00:00:00\n", - "Selling USB on 2023-03-31 00:00:00\n", - "Selling AMZN on 2023-03-31 00:00:00\n", - "Selling PARA on 2023-03-31 00:00:00\n", - "Selling APO on 2023-03-31 00:00:00\n", - "Selling KMX on 2023-03-31 00:00:00\n", - "Selling CRWD on 2023-03-31 00:00:00\n", - "Selling MPWR on 2023-03-31 00:00:00\n", - "Selling BX on 2023-03-31 00:00:00\n", - "Selling NCLH on 2023-03-31 00:00:00\n", - "Buying GIS on 2023-04-30 00:00:00\n", - "Buying ABBV on 2023-04-30 00:00:00\n", - "Buying CLX on 2023-04-30 00:00:00\n", - "Buying CHD on 2023-04-30 00:00:00\n", - "Buying DG on 2023-04-30 00:00:00\n", - "Buying NEM on 2023-04-30 00:00:00\n", - "Buying SJM on 2023-04-30 00:00:00\n", - "Buying ULTA on 2023-04-30 00:00:00\n", - "Buying KHC on 2023-04-30 00:00:00\n", - "Buying TAP on 2023-04-30 00:00:00\n", - "Buying GILD on 2023-04-30 00:00:00\n", - "Buying DGX on 2023-04-30 00:00:00\n", - "Buying BMY on 2023-04-30 00:00:00\n", - "Buying INCY on 2023-04-30 00:00:00\n", - "Selling NOW on 2023-04-30 00:00:00\n", - "Selling KMX on 2023-04-30 00:00:00\n", - "Selling ADBE on 2023-04-30 00:00:00\n", - "Selling CE on 2023-04-30 00:00:00\n", - "Selling IDXX on 2023-04-30 00:00:00\n", - "Selling AMZN on 2023-04-30 00:00:00\n", - "Selling CRWD on 2023-04-30 00:00:00\n", - "Selling MTCH on 2023-04-30 00:00:00\n", - "Selling APO on 2023-04-30 00:00:00\n", - "Selling BX on 2023-04-30 00:00:00\n", - "Selling HAS on 2023-04-30 00:00:00\n", - "Selling PARA on 2023-04-30 00:00:00\n", - "Selling USB on 2023-04-30 00:00:00\n", - "Selling NCLH on 2023-04-30 00:00:00\n", - "Buying NEM on 2023-05-31 00:00:00\n", - "Buying ULTA on 2023-05-31 00:00:00\n", - "Buying ABBV on 2023-05-31 00:00:00\n", - "Buying GIS on 2023-05-31 00:00:00\n", - "Buying CLX on 2023-05-31 00:00:00\n", - "Buying TAP on 2023-05-31 00:00:00\n", - "Buying SJM on 2023-05-31 00:00:00\n", - "Buying KHC on 2023-05-31 00:00:00\n", - "Buying AEP on 2023-05-31 00:00:00\n", - "Buying CHD on 2023-05-31 00:00:00\n", - "Buying DG on 2023-05-31 00:00:00\n", - "Buying BMY on 2023-05-31 00:00:00\n", - "Buying SO on 2023-05-31 00:00:00\n", - "Buying CMS on 2023-05-31 00:00:00\n", - "Selling KMX on 2023-05-31 00:00:00\n", - "Selling LYV on 2023-05-31 00:00:00\n", - "Selling RJF on 2023-05-31 00:00:00\n", - "Selling GM on 2023-05-31 00:00:00\n", - "Selling STLD on 2023-05-31 00:00:00\n", - "Selling FCX on 2023-05-31 00:00:00\n", - "Selling NCLH on 2023-05-31 00:00:00\n", - "Selling CE on 2023-05-31 00:00:00\n", - "Selling BX on 2023-05-31 00:00:00\n", - "Selling FIS on 2023-05-31 00:00:00\n", - "Selling HBAN on 2023-05-31 00:00:00\n", - "Selling APO on 2023-05-31 00:00:00\n", - "Selling PARA on 2023-05-31 00:00:00\n", - "Selling USB on 2023-05-31 00:00:00\n", - "Buying ABBV on 2023-06-30 00:00:00\n", - "Buying TAP on 2023-06-30 00:00:00\n", - "Buying GIS on 2023-06-30 00:00:00\n", - "Buying SJM on 2023-06-30 00:00:00\n", - "Buying DGX on 2023-06-30 00:00:00\n", - "Buying CLX on 2023-06-30 00:00:00\n", - "Buying NI on 2023-06-30 00:00:00\n", - "Buying SO on 2023-06-30 00:00:00\n", - "Buying AEP on 2023-06-30 00:00:00\n", - "Buying KHC on 2023-06-30 00:00:00\n", - "Buying BMY on 2023-06-30 00:00:00\n", - "Buying CMS on 2023-06-30 00:00:00\n", - "Buying COR on 2023-06-30 00:00:00\n", - "Buying DUK on 2023-06-30 00:00:00\n", - "Selling MPWR on 2023-06-30 00:00:00\n", - "Selling NOW on 2023-06-30 00:00:00\n", - "Selling GM on 2023-06-30 00:00:00\n", - "Selling BX on 2023-06-30 00:00:00\n", - "Selling APO on 2023-06-30 00:00:00\n", - "Selling MTCH on 2023-06-30 00:00:00\n", - "Selling CE on 2023-06-30 00:00:00\n", - "Selling HBAN on 2023-06-30 00:00:00\n", - "Selling FCX on 2023-06-30 00:00:00\n", - "Selling LYV on 2023-06-30 00:00:00\n", - "Selling USB on 2023-06-30 00:00:00\n", - "Selling ADBE on 2023-06-30 00:00:00\n", - "Selling NCLH on 2023-06-30 00:00:00\n", - "Selling PARA on 2023-06-30 00:00:00\n", - "Buying ABBV on 2023-07-31 00:00:00\n", - "Buying SO on 2023-07-31 00:00:00\n", - "Buying GIS on 2023-07-31 00:00:00\n", - "Buying D on 2023-07-31 00:00:00\n", - "Buying SJM on 2023-07-31 00:00:00\n", - "Buying NI on 2023-07-31 00:00:00\n", - "Buying ALL on 2023-07-31 00:00:00\n", - "Buying COR on 2023-07-31 00:00:00\n", - "Buying DG on 2023-07-31 00:00:00\n", - "Buying CMS on 2023-07-31 00:00:00\n", - "Buying AEP on 2023-07-31 00:00:00\n", - "Buying PNW on 2023-07-31 00:00:00\n", - "Buying VST on 2023-07-31 00:00:00\n", - "Buying DUK on 2023-07-31 00:00:00\n", - "Selling APTV on 2023-07-31 00:00:00\n", - "Selling NOW on 2023-07-31 00:00:00\n", - "Selling APO on 2023-07-31 00:00:00\n", - "Selling DFS on 2023-07-31 00:00:00\n", - "Selling BWA on 2023-07-31 00:00:00\n", - "Selling HBAN on 2023-07-31 00:00:00\n", - "Selling SWKS on 2023-07-31 00:00:00\n", - "Selling LYV on 2023-07-31 00:00:00\n", - "Selling BX on 2023-07-31 00:00:00\n", - "Selling STLD on 2023-07-31 00:00:00\n", - "Selling FCX on 2023-07-31 00:00:00\n", - "Selling ADBE on 2023-07-31 00:00:00\n", - "Selling MPWR on 2023-07-31 00:00:00\n", - "Selling PARA on 2023-07-31 00:00:00\n", - "Buying ERIE on 2023-08-31 00:00:00\n", - "Buying ABBV on 2023-08-31 00:00:00\n", - "Buying GIS on 2023-08-31 00:00:00\n", - "Buying CBOE on 2023-08-31 00:00:00\n", - "Buying INCY on 2023-08-31 00:00:00\n", - "Buying PNW on 2023-08-31 00:00:00\n", - "Buying SO on 2023-08-31 00:00:00\n", - "Buying CLX on 2023-08-31 00:00:00\n", - "Buying DUK on 2023-08-31 00:00:00\n", - "Buying PSX on 2023-08-31 00:00:00\n", - "Buying SJM on 2023-08-31 00:00:00\n", - "Buying L on 2023-08-31 00:00:00\n", - "Buying AON on 2023-08-31 00:00:00\n", - "Buying CMS on 2023-08-31 00:00:00\n", - "Selling JBL on 2023-08-31 00:00:00\n", - "Selling AMZN on 2023-08-31 00:00:00\n", - "Selling IDXX on 2023-08-31 00:00:00\n", - "Selling FCX on 2023-08-31 00:00:00\n", - "Selling SWKS on 2023-08-31 00:00:00\n", - "Selling EPAM on 2023-08-31 00:00:00\n", - "Selling MSFT on 2023-08-31 00:00:00\n", - "Selling BX on 2023-08-31 00:00:00\n", - "Selling ADBE on 2023-08-31 00:00:00\n", - "Selling NOW on 2023-08-31 00:00:00\n", - "Selling NCLH on 2023-08-31 00:00:00\n", - "Selling NFLX on 2023-08-31 00:00:00\n", - "Selling CRWD on 2023-08-31 00:00:00\n", - "Selling MPWR on 2023-08-31 00:00:00\n", - "Buying ERIE on 2023-09-30 00:00:00\n", - "Buying SJM on 2023-09-30 00:00:00\n", - "Buying COR on 2023-09-30 00:00:00\n", - "Buying CBOE on 2023-09-30 00:00:00\n", - "Buying KHC on 2023-09-30 00:00:00\n", - "Buying AON on 2023-09-30 00:00:00\n", - "Buying GIS on 2023-09-30 00:00:00\n", - "Buying PNW on 2023-09-30 00:00:00\n", - "Buying ABBV on 2023-09-30 00:00:00\n", - "Buying LH on 2023-09-30 00:00:00\n", - "Buying CAH on 2023-09-30 00:00:00\n", - "Buying VST on 2023-09-30 00:00:00\n", - "Buying INCY on 2023-09-30 00:00:00\n", - "Buying DUK on 2023-09-30 00:00:00\n", - "Selling NUE on 2023-09-30 00:00:00\n", - "Selling BX on 2023-09-30 00:00:00\n", - "Selling PHM on 2023-09-30 00:00:00\n", - "Selling FCX on 2023-09-30 00:00:00\n", - "Selling IDXX on 2023-09-30 00:00:00\n", - "Selling EPAM on 2023-09-30 00:00:00\n", - "Selling SWKS on 2023-09-30 00:00:00\n", - "Selling AMZN on 2023-09-30 00:00:00\n", - "Selling JBL on 2023-09-30 00:00:00\n", - "Selling NOW on 2023-09-30 00:00:00\n", - "Selling CRWD on 2023-09-30 00:00:00\n", - "Selling NFLX on 2023-09-30 00:00:00\n", - "Selling ADBE on 2023-09-30 00:00:00\n", - "Selling MPWR on 2023-09-30 00:00:00\n", - "Buying SJM on 2023-10-31 00:00:00\n", - "Buying COR on 2023-10-31 00:00:00\n", - "Buying GIS on 2023-10-31 00:00:00\n", - "Buying LH on 2023-10-31 00:00:00\n", - "Buying CHD on 2023-10-31 00:00:00\n", - "Buying DGX on 2023-10-31 00:00:00\n", - "Buying KHC on 2023-10-31 00:00:00\n", - "Buying CBOE on 2023-10-31 00:00:00\n", - "Buying RVTY on 2023-10-31 00:00:00\n", - "Buying INCY on 2023-10-31 00:00:00\n", - "Buying CMS on 2023-10-31 00:00:00\n", - "Buying DG on 2023-10-31 00:00:00\n", - "Buying PSX on 2023-10-31 00:00:00\n", - "Buying WTW on 2023-10-31 00:00:00\n", - "Selling GE on 2023-10-31 00:00:00\n", - "Selling NCLH on 2023-10-31 00:00:00\n", - "Selling FCX on 2023-10-31 00:00:00\n", - "Selling BX on 2023-10-31 00:00:00\n", - "Selling APTV on 2023-10-31 00:00:00\n", - "Selling IDXX on 2023-10-31 00:00:00\n", - "Selling NOW on 2023-10-31 00:00:00\n", - "Selling MKTX on 2023-10-31 00:00:00\n", - "Selling ADBE on 2023-10-31 00:00:00\n", - "Selling JBL on 2023-10-31 00:00:00\n", - "Selling EPAM on 2023-10-31 00:00:00\n", - "Selling CRWD on 2023-10-31 00:00:00\n", - "Selling AMZN on 2023-10-31 00:00:00\n", - "Selling MPWR on 2023-10-31 00:00:00\n", - "Buying COR on 2023-11-30 00:00:00\n", - "Buying CHD on 2023-11-30 00:00:00\n", - "Buying SJM on 2023-11-30 00:00:00\n", - "Buying WTW on 2023-11-30 00:00:00\n", - "Buying GIS on 2023-11-30 00:00:00\n", - "Buying CBOE on 2023-11-30 00:00:00\n", - "Buying DGX on 2023-11-30 00:00:00\n", - "Buying LH on 2023-11-30 00:00:00\n", - "Buying ORLY on 2023-11-30 00:00:00\n", - "Buying CAH on 2023-11-30 00:00:00\n", - "Buying BWA on 2023-11-30 00:00:00\n", - "Buying DG on 2023-11-30 00:00:00\n", - "Buying ABBV on 2023-11-30 00:00:00\n", - "Buying KHC on 2023-11-30 00:00:00\n", - "Selling MKTX on 2023-11-30 00:00:00\n", - "Selling AXON on 2023-11-30 00:00:00\n", - "Selling FCX on 2023-11-30 00:00:00\n", - "Selling ADBE on 2023-11-30 00:00:00\n", - "Selling NCLH on 2023-11-30 00:00:00\n", - "Selling CRWD on 2023-11-30 00:00:00\n", - "Selling AMZN on 2023-11-30 00:00:00\n", - "Selling USB on 2023-11-30 00:00:00\n", - "Selling PHM on 2023-11-30 00:00:00\n", - "Selling IDXX on 2023-11-30 00:00:00\n", - "Selling BX on 2023-11-30 00:00:00\n", - "Selling PARA on 2023-11-30 00:00:00\n", - "Selling EPAM on 2023-11-30 00:00:00\n", - "Selling MPWR on 2023-11-30 00:00:00\n", - "Buying WTW on 2023-12-31 00:00:00\n", - "Buying CHD on 2023-12-31 00:00:00\n", - "Buying ORLY on 2023-12-31 00:00:00\n", - "Buying CBOE on 2023-12-31 00:00:00\n", - "Buying COR on 2023-12-31 00:00:00\n", - "Buying GIS on 2023-12-31 00:00:00\n", - "Buying DG on 2023-12-31 00:00:00\n", - "Buying DGX on 2023-12-31 00:00:00\n", - "Buying ACGL on 2023-12-31 00:00:00\n", - "Buying BWA on 2023-12-31 00:00:00\n", - "Buying LH on 2023-12-31 00:00:00\n", - "Buying SJM on 2023-12-31 00:00:00\n", - "Buying CAH on 2023-12-31 00:00:00\n", - "Buying ABBV on 2023-12-31 00:00:00\n", - "Selling EXR on 2023-12-31 00:00:00\n", - "Selling CRL on 2023-12-31 00:00:00\n", - "Selling IDXX on 2023-12-31 00:00:00\n", - "Selling HBAN on 2023-12-31 00:00:00\n", - "Selling HAS on 2023-12-31 00:00:00\n", - "Selling INVH on 2023-12-31 00:00:00\n", - "Selling NCLH on 2023-12-31 00:00:00\n", - "Selling FCX on 2023-12-31 00:00:00\n", - "Selling EPAM on 2023-12-31 00:00:00\n", - "Selling BX on 2023-12-31 00:00:00\n", - "Selling USB on 2023-12-31 00:00:00\n", - "Selling KMX on 2023-12-31 00:00:00\n", - "Selling PARA on 2023-12-31 00:00:00\n", - "Selling MPWR on 2023-12-31 00:00:00\n", - "Buying COR on 2024-01-31 00:00:00\n", - "Buying ACGL on 2024-01-31 00:00:00\n", - "Buying CHD on 2024-01-31 00:00:00\n", - "Buying MMC on 2024-01-31 00:00:00\n", - "Buying CVS on 2024-01-31 00:00:00\n", - "Buying CBOE on 2024-01-31 00:00:00\n", - "Buying CAH on 2024-01-31 00:00:00\n", - "Buying ALL on 2024-01-31 00:00:00\n", - "Buying ERIE on 2024-01-31 00:00:00\n", - "Buying AJG on 2024-01-31 00:00:00\n", - "Buying T on 2024-01-31 00:00:00\n", - "Buying ABBV on 2024-01-31 00:00:00\n", - "Buying KHC on 2024-01-31 00:00:00\n", - "Buying GIS on 2024-01-31 00:00:00\n", - "Selling HAS on 2024-01-31 00:00:00\n", - "Selling MTD on 2024-01-31 00:00:00\n", - "Selling FCX on 2024-01-31 00:00:00\n", - "Selling RVTY on 2024-01-31 00:00:00\n", - "Selling MKTX on 2024-01-31 00:00:00\n", - "Selling SWKS on 2024-01-31 00:00:00\n", - "Selling BX on 2024-01-31 00:00:00\n", - "Selling USB on 2024-01-31 00:00:00\n", - "Selling CRL on 2024-01-31 00:00:00\n", - "Selling APTV on 2024-01-31 00:00:00\n", - "Selling ROK on 2024-01-31 00:00:00\n", - "Selling NCLH on 2024-01-31 00:00:00\n", - "Selling KMX on 2024-01-31 00:00:00\n", - "Selling MPWR on 2024-01-31 00:00:00\n", - "Buying COR on 2024-02-29 00:00:00\n", - "Buying CAH on 2024-02-29 00:00:00\n", - "Buying CVS on 2024-02-29 00:00:00\n", - "Buying KHC on 2024-02-29 00:00:00\n", - "Buying GILD on 2024-02-29 00:00:00\n", - "Buying GIS on 2024-02-29 00:00:00\n", - "Buying T on 2024-02-29 00:00:00\n", - "Buying LDOS on 2024-02-29 00:00:00\n", - "Buying DGX on 2024-02-29 00:00:00\n", - "Buying ACGL on 2024-02-29 00:00:00\n", - "Buying ERIE on 2024-02-29 00:00:00\n", - "Buying SJM on 2024-02-29 00:00:00\n", - "Buying ALL on 2024-02-29 00:00:00\n", - "Buying DFS on 2024-02-29 00:00:00\n", - "Selling HAS on 2024-02-29 00:00:00\n", - "Selling CRM on 2024-02-29 00:00:00\n", - "Selling USB on 2024-02-29 00:00:00\n", - "Selling KEYS on 2024-02-29 00:00:00\n", - "Selling EPAM on 2024-02-29 00:00:00\n", - "Selling BX on 2024-02-29 00:00:00\n", - "Selling AMZN on 2024-02-29 00:00:00\n", - "Selling APTV on 2024-02-29 00:00:00\n", - "Selling CRWD on 2024-02-29 00:00:00\n", - "Selling CRL on 2024-02-29 00:00:00\n", - "Selling MKTX on 2024-02-29 00:00:00\n", - "Selling MPWR on 2024-02-29 00:00:00\n", - "Selling KMX on 2024-02-29 00:00:00\n", - "Selling ROK on 2024-02-29 00:00:00\n", - "Buying COR on 2024-03-31 00:00:00\n", - "Buying CVS on 2024-03-31 00:00:00\n", - "Buying GIS on 2024-03-31 00:00:00\n", - "Buying CAH on 2024-03-31 00:00:00\n", - "Buying KHC on 2024-03-31 00:00:00\n", - "Buying ALL on 2024-03-31 00:00:00\n", - "Buying T on 2024-03-31 00:00:00\n", - "Buying CBOE on 2024-03-31 00:00:00\n", - "Buying GILD on 2024-03-31 00:00:00\n", - "Buying LDOS on 2024-03-31 00:00:00\n", - "Buying INCY on 2024-03-31 00:00:00\n", - "Buying DGX on 2024-03-31 00:00:00\n", - "Buying ACGL on 2024-03-31 00:00:00\n", - "Buying SJM on 2024-03-31 00:00:00\n", - "Selling KEYS on 2024-03-31 00:00:00\n", - "Selling CRM on 2024-03-31 00:00:00\n", - "Selling SWKS on 2024-03-31 00:00:00\n", - "Selling KMX on 2024-03-31 00:00:00\n", - "Selling EPAM on 2024-03-31 00:00:00\n", - "Selling NOW on 2024-03-31 00:00:00\n", - "Selling MKTX on 2024-03-31 00:00:00\n", - "Selling AMZN on 2024-03-31 00:00:00\n", - "Selling JBL on 2024-03-31 00:00:00\n", - "Selling ADBE on 2024-03-31 00:00:00\n", - "Selling CRL on 2024-03-31 00:00:00\n", - "Selling ROK on 2024-03-31 00:00:00\n", - "Selling CRWD on 2024-03-31 00:00:00\n", - "Selling MPWR on 2024-03-31 00:00:00\n", - "Buying GIS on 2024-04-30 00:00:00\n", - "Buying CBOE on 2024-04-30 00:00:00\n", - "Buying KHC on 2024-04-30 00:00:00\n", - "Buying LDOS on 2024-04-30 00:00:00\n", - "Buying ALL on 2024-04-30 00:00:00\n", - "Buying T on 2024-04-30 00:00:00\n", - "Buying CAH on 2024-04-30 00:00:00\n", - "Buying NEM on 2024-04-30 00:00:00\n", - "Buying CHD on 2024-04-30 00:00:00\n", - "Buying SJM on 2024-04-30 00:00:00\n", - "Buying CMS on 2024-04-30 00:00:00\n", - "Buying DUK on 2024-04-30 00:00:00\n", - "Buying BF-B on 2024-04-30 00:00:00\n", - "Buying ACGL on 2024-04-30 00:00:00\n", - "Selling BX on 2024-04-30 00:00:00\n", - "Selling FFIV on 2024-04-30 00:00:00\n", - "Selling NFLX on 2024-04-30 00:00:00\n", - "Selling AMZN on 2024-04-30 00:00:00\n", - "Selling PHM on 2024-04-30 00:00:00\n", - "Selling CRM on 2024-04-30 00:00:00\n", - "Selling GEHC on 2024-04-30 00:00:00\n", - "Selling RMD on 2024-04-30 00:00:00\n", - "Selling SWKS on 2024-04-30 00:00:00\n", - "Selling NOW on 2024-04-30 00:00:00\n", - "Selling JBL on 2024-04-30 00:00:00\n", - "Selling CRL on 2024-04-30 00:00:00\n", - "Selling MPWR on 2024-04-30 00:00:00\n", - "Selling CRWD on 2024-04-30 00:00:00\n", - "Buying CBOE on 2024-05-31 00:00:00\n", - "Buying CAH on 2024-05-31 00:00:00\n", - "Buying ALL on 2024-05-31 00:00:00\n", - "Buying GIS on 2024-05-31 00:00:00\n", - "Buying HII on 2024-05-31 00:00:00\n", - "Buying KHC on 2024-05-31 00:00:00\n", - "Buying LDOS on 2024-05-31 00:00:00\n", - "Buying ACGL on 2024-05-31 00:00:00\n", - "Buying COR on 2024-05-31 00:00:00\n", - "Buying CHD on 2024-05-31 00:00:00\n", - "Buying T on 2024-05-31 00:00:00\n", - "Buying CMS on 2024-05-31 00:00:00\n", - "Buying SJM on 2024-05-31 00:00:00\n", - "Buying L on 2024-05-31 00:00:00\n", - "Selling GEHC on 2024-05-31 00:00:00\n", - "Selling RMD on 2024-05-31 00:00:00\n", - "Selling SWKS on 2024-05-31 00:00:00\n", - "Selling BX on 2024-05-31 00:00:00\n", - "Selling HWM on 2024-05-31 00:00:00\n", - "Selling JBL on 2024-05-31 00:00:00\n", - "Selling NCLH on 2024-05-31 00:00:00\n", - "Selling PHM on 2024-05-31 00:00:00\n", - "Selling APTV on 2024-05-31 00:00:00\n", - "Selling CRM on 2024-05-31 00:00:00\n", - "Selling VST on 2024-05-31 00:00:00\n", - "Selling MPWR on 2024-05-31 00:00:00\n", - "Selling NOW on 2024-05-31 00:00:00\n", - "Selling CRWD on 2024-05-31 00:00:00\n", - "Buying CAH on 2024-06-30 00:00:00\n", - "Buying GIS on 2024-06-30 00:00:00\n", - "Buying CBOE on 2024-06-30 00:00:00\n", - "Buying ALL on 2024-06-30 00:00:00\n", - "Buying CF on 2024-06-30 00:00:00\n", - "Buying KHC on 2024-06-30 00:00:00\n", - "Buying HII on 2024-06-30 00:00:00\n", - "Buying CMS on 2024-06-30 00:00:00\n", - "Buying LDOS on 2024-06-30 00:00:00\n", - "Buying DUK on 2024-06-30 00:00:00\n", - "Buying SJM on 2024-06-30 00:00:00\n", - "Buying COR on 2024-06-30 00:00:00\n", - "Buying ACGL on 2024-06-30 00:00:00\n", - "Buying CHD on 2024-06-30 00:00:00\n", - "Selling A on 2024-06-30 00:00:00\n", - "Selling NFLX on 2024-06-30 00:00:00\n", - "Selling MTD on 2024-06-30 00:00:00\n", - "Selling SWKS on 2024-06-30 00:00:00\n", - "Selling BX on 2024-06-30 00:00:00\n", - "Selling VST on 2024-06-30 00:00:00\n", - "Selling GEHC on 2024-06-30 00:00:00\n", - "Selling HWM on 2024-06-30 00:00:00\n", - "Selling PHM on 2024-06-30 00:00:00\n", - "Selling NCLH on 2024-06-30 00:00:00\n", - "Selling CRM on 2024-06-30 00:00:00\n", - "Selling NOW on 2024-06-30 00:00:00\n", - "Selling MPWR on 2024-06-30 00:00:00\n", - "Selling CRWD on 2024-06-30 00:00:00\n", - "Buying GILD on 2024-07-31 00:00:00\n", - "Buying INCY on 2024-07-31 00:00:00\n", - "Buying T on 2024-07-31 00:00:00\n", - "Buying GIS on 2024-07-31 00:00:00\n", - "Buying CBOE on 2024-07-31 00:00:00\n", - "Buying EPAM on 2024-07-31 00:00:00\n", - "Buying SJM on 2024-07-31 00:00:00\n", - "Buying BMY on 2024-07-31 00:00:00\n", - "Buying CCI on 2024-07-31 00:00:00\n", - "Buying ABBV on 2024-07-31 00:00:00\n", - "Buying CMS on 2024-07-31 00:00:00\n", - "Buying D on 2024-07-31 00:00:00\n", - "Buying TAP on 2024-07-31 00:00:00\n", - "Buying CVS on 2024-07-31 00:00:00\n", - "Selling NOW on 2024-07-31 00:00:00\n", - "Selling FCX on 2024-07-31 00:00:00\n", - "Selling NRG on 2024-07-31 00:00:00\n", - "Selling KEYS on 2024-07-31 00:00:00\n", - "Selling EW on 2024-07-31 00:00:00\n", - "Selling NCLH on 2024-07-31 00:00:00\n", - "Selling PH on 2024-07-31 00:00:00\n", - "Selling BX on 2024-07-31 00:00:00\n", - "Selling SWKS on 2024-07-31 00:00:00\n", - "Selling CRM on 2024-07-31 00:00:00\n", - "Selling GE on 2024-07-31 00:00:00\n", - "Selling CRWD on 2024-07-31 00:00:00\n", - "Selling VST on 2024-07-31 00:00:00\n", - "Selling MPWR on 2024-07-31 00:00:00\n", - "Buying CBOE on 2024-08-31 00:00:00\n", - "Buying GIS on 2024-08-31 00:00:00\n", - "Buying GILD on 2024-08-31 00:00:00\n", - "Buying AMT on 2024-08-31 00:00:00\n", - "Buying CMS on 2024-08-31 00:00:00\n", - "Buying T on 2024-08-31 00:00:00\n", - "Buying D on 2024-08-31 00:00:00\n", - "Buying MNST on 2024-08-31 00:00:00\n", - "Buying SJM on 2024-08-31 00:00:00\n", - "Buying SO on 2024-08-31 00:00:00\n", - "Buying AEP on 2024-08-31 00:00:00\n", - "Buying O on 2024-08-31 00:00:00\n", - "Buying CCI on 2024-08-31 00:00:00\n", - "Buying DUK on 2024-08-31 00:00:00\n", - "Selling KMX on 2024-08-31 00:00:00\n", - "Selling ROK on 2024-08-31 00:00:00\n", - "Selling NRG on 2024-08-31 00:00:00\n", - "Selling FCX on 2024-08-31 00:00:00\n", - "Selling ULTA on 2024-08-31 00:00:00\n", - "Selling AMZN on 2024-08-31 00:00:00\n", - "Selling PH on 2024-08-31 00:00:00\n", - "Selling KEYS on 2024-08-31 00:00:00\n", - "Selling JBL on 2024-08-31 00:00:00\n", - "Selling APO on 2024-08-31 00:00:00\n", - "Selling NCLH on 2024-08-31 00:00:00\n", - "Selling SWKS on 2024-08-31 00:00:00\n", - "Selling VST on 2024-08-31 00:00:00\n", - "Selling MPWR on 2024-08-31 00:00:00\n", - "Buying CBOE on 2024-09-30 00:00:00\n", - "Buying AMT on 2024-09-30 00:00:00\n", - "Buying GIS on 2024-09-30 00:00:00\n", - "Buying T on 2024-09-30 00:00:00\n", - "Buying SJM on 2024-09-30 00:00:00\n", - "Buying CHD on 2024-09-30 00:00:00\n", - "Buying MNST on 2024-09-30 00:00:00\n", - "Buying SO on 2024-09-30 00:00:00\n", - "Buying O on 2024-09-30 00:00:00\n", - "Buying D on 2024-09-30 00:00:00\n", - "Buying CLX on 2024-09-30 00:00:00\n", - "Buying CMS on 2024-09-30 00:00:00\n", - "Buying CCI on 2024-09-30 00:00:00\n", - "Buying DUK on 2024-09-30 00:00:00\n", - "Selling CE on 2024-09-30 00:00:00\n", - "Selling GE on 2024-09-30 00:00:00\n", - "Selling ROK on 2024-09-30 00:00:00\n", - "Selling NRG on 2024-09-30 00:00:00\n", - "Selling AMZN on 2024-09-30 00:00:00\n", - "Selling PH on 2024-09-30 00:00:00\n", - "Selling JBL on 2024-09-30 00:00:00\n", - "Selling APO on 2024-09-30 00:00:00\n", - "Selling KEYS on 2024-09-30 00:00:00\n", - "Selling FCX on 2024-09-30 00:00:00\n", - "Selling NCLH on 2024-09-30 00:00:00\n", - "Selling SWKS on 2024-09-30 00:00:00\n", - "Selling VST on 2024-09-30 00:00:00\n", - "Selling MPWR on 2024-09-30 00:00:00\n", - "Buying CBOE on 2024-10-31 00:00:00\n", - "Buying AMT on 2024-10-31 00:00:00\n", - "Buying T on 2024-10-31 00:00:00\n", - "Buying MNST on 2024-10-31 00:00:00\n", - "Buying CCI on 2024-10-31 00:00:00\n", - "Buying SO on 2024-10-31 00:00:00\n", - "Buying DUK on 2024-10-31 00:00:00\n", - "Buying COR on 2024-10-31 00:00:00\n", - "Buying D on 2024-10-31 00:00:00\n", - "Buying AEP on 2024-10-31 00:00:00\n", - "Buying GIS on 2024-10-31 00:00:00\n", - "Buying WTW on 2024-10-31 00:00:00\n", - "Buying BMY on 2024-10-31 00:00:00\n", - "Buying PNW on 2024-10-31 00:00:00\n", - "Selling DFS on 2024-10-31 00:00:00\n", - "Selling NOW on 2024-10-31 00:00:00\n", - "Selling JBL on 2024-10-31 00:00:00\n", - "Selling CDW on 2024-10-31 00:00:00\n", - "Selling NCLH on 2024-10-31 00:00:00\n", - "Selling AMZN on 2024-10-31 00:00:00\n", - "Selling FCX on 2024-10-31 00:00:00\n", - "Selling KEYS on 2024-10-31 00:00:00\n", - "Selling CRWD on 2024-10-31 00:00:00\n", - "Selling HII on 2024-10-31 00:00:00\n", - "Selling VST on 2024-10-31 00:00:00\n", - "Selling APTV on 2024-10-31 00:00:00\n", - "Selling SWKS on 2024-10-31 00:00:00\n", - "Selling MPWR on 2024-10-31 00:00:00\n", - "Generated 4680 orders.\n" + "Generated 4720 orders.\n" ] } ], @@ -4745,7 +65,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 9, "metadata": {}, "outputs": [ { @@ -4813,3691 +133,3691 @@ "2010-03-29 00:00:00: Portfolio Value - 100000.00\n", "2010-03-30 00:00:00: Portfolio Value - 100000.00\n", "2010-03-31 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-01 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-05 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-06 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-07 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-08 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-09 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-12 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-13 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-14 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-15 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-16 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-19 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-20 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-21 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-22 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-23 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-26 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-27 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-28 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-29 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-30 00:00:00: Portfolio Value - 100000.00\n", - "2010-05-03 00:00:00: Portfolio Value - 98634.81\n", - "2010-05-04 00:00:00: Portfolio Value - 83254.76\n", - "2010-05-05 00:00:00: Portfolio Value - 75156.52\n", - "2010-05-06 00:00:00: Portfolio Value - 56440.60\n", - "2010-05-07 00:00:00: Portfolio Value - 31527.06\n", - "2010-05-10 00:00:00: Portfolio Value - 68563.69\n", - "2010-05-11 00:00:00: Portfolio Value - 68484.71\n", - "2010-05-12 00:00:00: Portfolio Value - 79735.25\n", - "2010-05-13 00:00:00: Portfolio Value - 79931.39\n", - "2010-05-14 00:00:00: Portfolio Value - 71383.19\n", - "2010-05-17 00:00:00: Portfolio Value - 91775.12\n", - "2010-05-18 00:00:00: Portfolio Value - 78102.22\n", - "2010-05-19 00:00:00: Portfolio Value - 62284.86\n", - "2010-05-20 00:00:00: Portfolio Value - 23167.95\n", - "2010-05-21 00:00:00: Portfolio Value - 9552.64\n", - "2010-05-24 00:00:00: Portfolio Value - 13854.47\n", - "2010-05-25 00:00:00: Portfolio Value - 25.06\n", - "2010-05-26 00:00:00: Portfolio Value - -8018.53\n", - "2010-05-27 00:00:00: Portfolio Value - 17000.55\n", - "2010-05-28 00:00:00: Portfolio Value - 10979.47\n", - "2010-06-01 00:00:00: Portfolio Value - 8612.23\n", - "2010-06-02 00:00:00: Portfolio Value - 27575.55\n", - "2010-06-03 00:00:00: Portfolio Value - 55785.96\n", - "2010-06-04 00:00:00: Portfolio Value - 20689.16\n", - "2010-06-07 00:00:00: Portfolio Value - 21791.92\n", - "2010-06-08 00:00:00: Portfolio Value - 32729.53\n", - "2010-06-09 00:00:00: Portfolio Value - 24456.31\n", - "2010-06-10 00:00:00: Portfolio Value - 55782.13\n", - "2010-06-11 00:00:00: Portfolio Value - 49936.77\n", - "2010-06-14 00:00:00: Portfolio Value - 58526.04\n", - "2010-06-15 00:00:00: Portfolio Value - 74188.12\n", - "2010-06-16 00:00:00: Portfolio Value - 82893.46\n", - "2010-06-17 00:00:00: Portfolio Value - 86984.96\n", - "2010-06-18 00:00:00: Portfolio Value - 74848.82\n", - "2010-06-21 00:00:00: Portfolio Value - 72761.51\n", - "2010-06-22 00:00:00: Portfolio Value - 70541.81\n", - "2010-06-23 00:00:00: Portfolio Value - 44591.50\n", - "2010-06-24 00:00:00: Portfolio Value - 38619.95\n", - "2010-06-25 00:00:00: Portfolio Value - 26856.01\n", - "2010-06-28 00:00:00: Portfolio Value - 35209.08\n", - "2010-06-29 00:00:00: Portfolio Value - 10806.59\n", - "2010-06-30 00:00:00: Portfolio Value - 7674.32\n", - "2010-07-01 00:00:00: Portfolio Value - 7958.99\n", - "2010-07-02 00:00:00: Portfolio Value - 14330.37\n", - "2010-07-06 00:00:00: Portfolio Value - 23469.31\n", - "2010-07-07 00:00:00: Portfolio Value - 45620.15\n", - "2010-07-08 00:00:00: Portfolio Value - 52699.32\n", - "2010-07-09 00:00:00: Portfolio Value - 50414.78\n", - "2010-07-12 00:00:00: Portfolio Value - 53694.03\n", - "2010-07-13 00:00:00: Portfolio Value - 63182.05\n", - "2010-07-14 00:00:00: Portfolio Value - 70630.42\n", - "2010-07-15 00:00:00: Portfolio Value - 60264.04\n", - "2010-07-16 00:00:00: Portfolio Value - 38043.42\n", - "2010-07-19 00:00:00: Portfolio Value - 43447.61\n", - "2010-07-20 00:00:00: Portfolio Value - 43643.00\n", - "2010-07-21 00:00:00: Portfolio Value - 21553.98\n", - "2010-07-22 00:00:00: Portfolio Value - 37748.23\n", - "2010-07-23 00:00:00: Portfolio Value - 41658.81\n", - "2010-07-26 00:00:00: Portfolio Value - 54007.04\n", - "2010-07-27 00:00:00: Portfolio Value - 55100.14\n", - "2010-07-28 00:00:00: Portfolio Value - 46726.81\n", - "2010-07-29 00:00:00: Portfolio Value - 5430.11\n", - "2010-07-30 00:00:00: Portfolio Value - 26881.19\n", - "2010-08-02 00:00:00: Portfolio Value - 41747.45\n", - "2010-08-03 00:00:00: Portfolio Value - 33833.06\n", - "2010-08-04 00:00:00: Portfolio Value - 35564.97\n", - "2010-08-05 00:00:00: Portfolio Value - 30758.17\n", - "2010-08-06 00:00:00: Portfolio Value - 28400.40\n", - "2010-08-09 00:00:00: Portfolio Value - 40268.61\n", - "2010-08-10 00:00:00: Portfolio Value - 38422.50\n", - "2010-08-11 00:00:00: Portfolio Value - 16607.67\n", - "2010-08-12 00:00:00: Portfolio Value - 6842.25\n", - "2010-08-13 00:00:00: Portfolio Value - 6867.34\n", - "2010-08-16 00:00:00: Portfolio Value - 2998.41\n", - "2010-08-17 00:00:00: Portfolio Value - 23546.66\n", - "2010-08-18 00:00:00: Portfolio Value - 22551.98\n", - "2010-08-19 00:00:00: Portfolio Value - 10270.82\n", - "2010-08-20 00:00:00: Portfolio Value - 7428.52\n", - "2010-08-23 00:00:00: Portfolio Value - 5627.66\n", - "2010-08-24 00:00:00: Portfolio Value - -4574.86\n", - "2010-08-25 00:00:00: Portfolio Value - -8190.59\n", - "2010-08-26 00:00:00: Portfolio Value - -14724.62\n", - "2010-08-27 00:00:00: Portfolio Value - 3719.88\n", - "2010-08-30 00:00:00: Portfolio Value - -6715.04\n", - "2010-08-31 00:00:00: Portfolio Value - -12598.29\n", - "2010-09-01 00:00:00: Portfolio Value - 14064.99\n", - "2010-09-02 00:00:00: Portfolio Value - 25116.13\n", - "2010-09-03 00:00:00: Portfolio Value - 21188.47\n", - "2010-09-07 00:00:00: Portfolio Value - 16300.13\n", - "2010-09-08 00:00:00: Portfolio Value - 7656.38\n", - "2010-09-09 00:00:00: Portfolio Value - 22246.10\n", - "2010-09-10 00:00:00: Portfolio Value - 25012.04\n", - "2010-09-13 00:00:00: Portfolio Value - 25652.10\n", - "2010-09-14 00:00:00: Portfolio Value - 30610.96\n", - "2010-09-15 00:00:00: Portfolio Value - 44096.52\n", - "2010-09-16 00:00:00: Portfolio Value - 42919.45\n", - "2010-09-17 00:00:00: Portfolio Value - 45951.85\n", - "2010-09-20 00:00:00: Portfolio Value - 56127.99\n", - "2010-09-21 00:00:00: Portfolio Value - 46863.18\n", - "2010-09-22 00:00:00: Portfolio Value - 52781.38\n", - "2010-09-23 00:00:00: Portfolio Value - 41571.72\n", - "2010-09-24 00:00:00: Portfolio Value - 58349.67\n", - "2010-09-27 00:00:00: Portfolio Value - 44950.94\n", - "2010-09-28 00:00:00: Portfolio Value - 50805.65\n", - "2010-09-29 00:00:00: Portfolio Value - 44714.01\n", - "2010-09-30 00:00:00: Portfolio Value - 52964.20\n", - "2010-10-01 00:00:00: Portfolio Value - 50938.75\n", - "2010-10-04 00:00:00: Portfolio Value - 43239.92\n", - "2010-10-05 00:00:00: Portfolio Value - 49419.51\n", - "2010-10-06 00:00:00: Portfolio Value - 51274.03\n", - "2010-10-07 00:00:00: Portfolio Value - 41229.61\n", - "2010-10-08 00:00:00: Portfolio Value - 42925.11\n", - "2010-10-11 00:00:00: Portfolio Value - 48022.23\n", - "2010-10-12 00:00:00: Portfolio Value - 41953.49\n", - "2010-10-13 00:00:00: Portfolio Value - 39595.63\n", - "2010-10-14 00:00:00: Portfolio Value - 49763.71\n", - "2010-10-15 00:00:00: Portfolio Value - 50710.83\n", - "2010-10-18 00:00:00: Portfolio Value - 58953.96\n", - "2010-10-19 00:00:00: Portfolio Value - 48222.40\n", - "2010-10-20 00:00:00: Portfolio Value - 55732.81\n", - "2010-10-21 00:00:00: Portfolio Value - 60340.65\n", - "2010-10-22 00:00:00: Portfolio Value - 63798.11\n", - "2010-10-25 00:00:00: Portfolio Value - 60730.18\n", - "2010-10-26 00:00:00: Portfolio Value - 51020.06\n", - "2010-10-27 00:00:00: Portfolio Value - 60986.93\n", - "2010-10-28 00:00:00: Portfolio Value - 50974.90\n", - "2010-10-29 00:00:00: Portfolio Value - 49302.07\n", - "2010-11-01 00:00:00: Portfolio Value - 42708.07\n", - "2010-11-02 00:00:00: Portfolio Value - 28816.06\n", - "2010-11-03 00:00:00: Portfolio Value - 29016.12\n", - "2010-11-04 00:00:00: Portfolio Value - 51246.97\n", - "2010-11-05 00:00:00: Portfolio Value - 44723.79\n", - "2010-11-08 00:00:00: Portfolio Value - 40960.69\n", - "2010-11-09 00:00:00: Portfolio Value - 43388.46\n", - "2010-11-10 00:00:00: Portfolio Value - 55163.73\n", - "2010-11-11 00:00:00: Portfolio Value - 45593.32\n", - "2010-11-12 00:00:00: Portfolio Value - 52430.31\n", - "2010-11-15 00:00:00: Portfolio Value - 59256.58\n", - "2010-11-16 00:00:00: Portfolio Value - 47977.55\n", - "2010-11-17 00:00:00: Portfolio Value - 54771.18\n", - "2010-11-18 00:00:00: Portfolio Value - 61092.86\n", - "2010-11-19 00:00:00: Portfolio Value - 53905.22\n", - "2010-11-22 00:00:00: Portfolio Value - 55877.61\n", - "2010-11-23 00:00:00: Portfolio Value - 41635.25\n", - "2010-11-24 00:00:00: Portfolio Value - 55438.64\n", - "2010-11-26 00:00:00: Portfolio Value - 52987.45\n", - "2010-11-29 00:00:00: Portfolio Value - 39557.08\n", - "2010-11-30 00:00:00: Portfolio Value - 33000.13\n", - "2010-12-01 00:00:00: Portfolio Value - 61760.94\n", - "2010-12-02 00:00:00: Portfolio Value - 73148.94\n", - "2010-12-03 00:00:00: Portfolio Value - 81360.03\n", - "2010-12-06 00:00:00: Portfolio Value - 74879.56\n", - "2010-12-07 00:00:00: Portfolio Value - 83131.04\n", - "2010-12-08 00:00:00: Portfolio Value - 91624.29\n", - "2010-12-09 00:00:00: Portfolio Value - 82308.60\n", - "2010-12-10 00:00:00: Portfolio Value - 91131.70\n", - "2010-12-13 00:00:00: Portfolio Value - 91839.48\n", - "2010-12-14 00:00:00: Portfolio Value - 117527.04\n", - "2010-12-15 00:00:00: Portfolio Value - 119089.03\n", - "2010-12-16 00:00:00: Portfolio Value - 127300.21\n", - "2010-12-17 00:00:00: Portfolio Value - 141701.12\n", - "2010-12-20 00:00:00: Portfolio Value - 132937.22\n", - "2010-12-21 00:00:00: Portfolio Value - 127195.71\n", - "2010-12-22 00:00:00: Portfolio Value - 134661.65\n", - "2010-12-23 00:00:00: Portfolio Value - 136824.74\n", - "2010-12-27 00:00:00: Portfolio Value - 130880.42\n", - "2010-12-28 00:00:00: Portfolio Value - 141600.08\n", - "2010-12-29 00:00:00: Portfolio Value - 143674.83\n", - "2010-12-30 00:00:00: Portfolio Value - 146025.31\n", - "2010-12-31 00:00:00: Portfolio Value - 128083.93\n", - "2011-01-03 00:00:00: Portfolio Value - 129849.83\n", - "2011-01-04 00:00:00: Portfolio Value - 110709.59\n", - "2011-01-05 00:00:00: Portfolio Value - 111933.50\n", - "2011-01-06 00:00:00: Portfolio Value - 112191.46\n", - "2011-01-07 00:00:00: Portfolio Value - 102917.76\n", - "2011-01-10 00:00:00: Portfolio Value - 100533.25\n", - "2011-01-11 00:00:00: Portfolio Value - 100057.25\n", - "2011-01-12 00:00:00: Portfolio Value - 102564.82\n", - "2011-01-13 00:00:00: Portfolio Value - 102303.69\n", - "2011-01-14 00:00:00: Portfolio Value - 106546.98\n", - "2011-01-18 00:00:00: Portfolio Value - 119578.82\n", - "2011-01-19 00:00:00: Portfolio Value - 121511.96\n", - "2011-01-20 00:00:00: Portfolio Value - 126741.74\n", - "2011-01-21 00:00:00: Portfolio Value - 123626.74\n", - "2011-01-24 00:00:00: Portfolio Value - 142499.22\n", - "2011-01-25 00:00:00: Portfolio Value - 168849.00\n", - "2011-01-26 00:00:00: Portfolio Value - 172968.58\n", - "2011-01-27 00:00:00: Portfolio Value - 186857.69\n", - "2011-01-28 00:00:00: Portfolio Value - 164144.47\n", - "2011-01-31 00:00:00: Portfolio Value - 152763.58\n", - "2011-02-01 00:00:00: Portfolio Value - 150207.71\n", - "2011-02-02 00:00:00: Portfolio Value - 140502.29\n", - "2011-02-03 00:00:00: Portfolio Value - 150586.49\n", - "2011-02-04 00:00:00: Portfolio Value - 171957.33\n", - "2011-02-07 00:00:00: Portfolio Value - 181602.20\n", - "2011-02-08 00:00:00: Portfolio Value - 163618.56\n", - "2011-02-09 00:00:00: Portfolio Value - 174360.45\n", - "2011-02-10 00:00:00: Portfolio Value - 171537.66\n", - "2011-02-11 00:00:00: Portfolio Value - 197574.50\n", - "2011-02-14 00:00:00: Portfolio Value - 167202.42\n", - "2011-02-15 00:00:00: Portfolio Value - 169408.87\n", - "2011-02-16 00:00:00: Portfolio Value - 173718.39\n", - "2011-02-17 00:00:00: Portfolio Value - 179495.42\n", - "2011-02-18 00:00:00: Portfolio Value - 203460.50\n", - "2011-02-22 00:00:00: Portfolio Value - 190468.69\n", - "2011-02-23 00:00:00: Portfolio Value - 167857.71\n", - "2011-02-24 00:00:00: Portfolio Value - 161418.71\n", - "2011-02-25 00:00:00: Portfolio Value - 174577.70\n", - "2011-02-28 00:00:00: Portfolio Value - 182520.50\n", - "2011-03-01 00:00:00: Portfolio Value - 174883.63\n", - "2011-03-02 00:00:00: Portfolio Value - 172061.74\n", - "2011-03-03 00:00:00: Portfolio Value - 194104.40\n", - "2011-03-04 00:00:00: Portfolio Value - 183610.77\n", - "2011-03-07 00:00:00: Portfolio Value - 184451.33\n", - "2011-03-08 00:00:00: Portfolio Value - 197489.95\n", - "2011-03-09 00:00:00: Portfolio Value - 197363.57\n", - "2011-03-10 00:00:00: Portfolio Value - 181659.87\n", - "2011-03-11 00:00:00: Portfolio Value - 194019.73\n", - "2011-03-14 00:00:00: Portfolio Value - 184880.21\n", - "2011-03-15 00:00:00: Portfolio Value - 167598.36\n", - "2011-03-16 00:00:00: Portfolio Value - 164297.75\n", - "2011-03-17 00:00:00: Portfolio Value - 163999.93\n", - "2011-03-18 00:00:00: Portfolio Value - 171344.73\n", - "2011-03-21 00:00:00: Portfolio Value - 191826.33\n", - "2011-03-22 00:00:00: Portfolio Value - 190192.04\n", - "2011-03-23 00:00:00: Portfolio Value - 184779.70\n", - "2011-03-24 00:00:00: Portfolio Value - 182528.78\n", - "2011-03-25 00:00:00: Portfolio Value - 191508.17\n", - "2011-03-28 00:00:00: Portfolio Value - 195248.99\n", - "2011-03-29 00:00:00: Portfolio Value - 205303.68\n", - "2011-03-30 00:00:00: Portfolio Value - 208066.42\n", - "2011-03-31 00:00:00: Portfolio Value - 221109.73\n", - "2011-04-01 00:00:00: Portfolio Value - 243028.45\n", - "2011-04-04 00:00:00: Portfolio Value - 235140.62\n", - "2011-04-05 00:00:00: Portfolio Value - 228635.59\n", - "2011-04-06 00:00:00: Portfolio Value - 247565.42\n", - "2011-04-07 00:00:00: Portfolio Value - 236588.66\n", - "2011-04-08 00:00:00: Portfolio Value - 224153.45\n", - "2011-04-11 00:00:00: Portfolio Value - 232929.77\n", - "2011-04-12 00:00:00: Portfolio Value - 234658.54\n", - "2011-04-13 00:00:00: Portfolio Value - 241479.90\n", - "2011-04-14 00:00:00: Portfolio Value - 252948.06\n", - "2011-04-15 00:00:00: Portfolio Value - 263512.51\n", - "2011-04-18 00:00:00: Portfolio Value - 255669.79\n", - "2011-04-19 00:00:00: Portfolio Value - 251808.30\n", - "2011-04-20 00:00:00: Portfolio Value - 257730.55\n", - "2011-04-21 00:00:00: Portfolio Value - 259701.30\n", - "2011-04-25 00:00:00: Portfolio Value - 257213.14\n", - "2011-04-26 00:00:00: Portfolio Value - 274015.45\n", - "2011-04-27 00:00:00: Portfolio Value - 284499.62\n", - "2011-04-28 00:00:00: Portfolio Value - 303966.90\n", - "2011-04-29 00:00:00: Portfolio Value - 289794.17\n", - "2011-05-02 00:00:00: Portfolio Value - 300439.56\n", - "2011-05-03 00:00:00: Portfolio Value - 297273.60\n", - "2011-05-04 00:00:00: Portfolio Value - 291389.75\n", - "2011-05-05 00:00:00: Portfolio Value - 284090.38\n", - "2011-05-06 00:00:00: Portfolio Value - 288456.21\n", - "2011-05-09 00:00:00: Portfolio Value - 288184.52\n", - "2011-05-10 00:00:00: Portfolio Value - 304049.78\n", - "2011-05-11 00:00:00: Portfolio Value - 314082.07\n", - "2011-05-12 00:00:00: Portfolio Value - 342445.16\n", - "2011-05-13 00:00:00: Portfolio Value - 332777.39\n", - "2011-05-16 00:00:00: Portfolio Value - 331671.11\n", - "2011-05-17 00:00:00: Portfolio Value - 328395.66\n", - "2011-05-18 00:00:00: Portfolio Value - 336482.60\n", - "2011-05-19 00:00:00: Portfolio Value - 343069.22\n", - "2011-05-20 00:00:00: Portfolio Value - 332944.38\n", - "2011-05-23 00:00:00: Portfolio Value - 315539.23\n", - "2011-05-24 00:00:00: Portfolio Value - 308037.51\n", - "2011-05-25 00:00:00: Portfolio Value - 311894.27\n", - "2011-05-26 00:00:00: Portfolio Value - 319608.26\n", - "2011-05-27 00:00:00: Portfolio Value - 318756.10\n", - "2011-05-31 00:00:00: Portfolio Value - 339277.22\n", - "2011-06-01 00:00:00: Portfolio Value - 337738.34\n", - "2011-06-02 00:00:00: Portfolio Value - 342859.79\n", - "2011-06-03 00:00:00: Portfolio Value - 331967.70\n", - "2011-06-06 00:00:00: Portfolio Value - 327775.64\n", - "2011-06-07 00:00:00: Portfolio Value - 325532.19\n", - "2011-06-08 00:00:00: Portfolio Value - 315992.19\n", - "2011-06-09 00:00:00: Portfolio Value - 318386.32\n", - "2011-06-10 00:00:00: Portfolio Value - 288476.69\n", - "2011-06-13 00:00:00: Portfolio Value - 289930.33\n", - "2011-06-14 00:00:00: Portfolio Value - 304465.97\n", - "2011-06-15 00:00:00: Portfolio Value - 282003.34\n", - "2011-06-16 00:00:00: Portfolio Value - 291512.36\n", - "2011-06-17 00:00:00: Portfolio Value - 294989.04\n", - "2011-06-20 00:00:00: Portfolio Value - 301252.60\n", - "2011-06-21 00:00:00: Portfolio Value - 305468.09\n", - "2011-06-22 00:00:00: Portfolio Value - 290807.20\n", - "2011-06-23 00:00:00: Portfolio Value - 275825.80\n", - "2011-06-24 00:00:00: Portfolio Value - 263570.01\n", - "2011-06-27 00:00:00: Portfolio Value - 264155.78\n", - "2011-06-28 00:00:00: Portfolio Value - 271269.69\n", - "2011-06-29 00:00:00: Portfolio Value - 286639.49\n", - "2011-06-30 00:00:00: Portfolio Value - 294737.16\n", - "2011-07-01 00:00:00: Portfolio Value - 317708.92\n", - "2011-07-05 00:00:00: Portfolio Value - 306309.42\n", - "2011-07-06 00:00:00: Portfolio Value - 317230.66\n", - "2011-07-07 00:00:00: Portfolio Value - 323303.48\n", - "2011-07-08 00:00:00: Portfolio Value - 312708.86\n", - "2011-07-11 00:00:00: Portfolio Value - 313030.11\n", - "2011-07-12 00:00:00: Portfolio Value - 323436.56\n", - "2011-07-13 00:00:00: Portfolio Value - 317924.53\n", - "2011-07-14 00:00:00: Portfolio Value - 308400.84\n", - "2011-07-15 00:00:00: Portfolio Value - 322550.61\n", - "2011-07-18 00:00:00: Portfolio Value - 302515.90\n", - "2011-07-19 00:00:00: Portfolio Value - 297095.84\n", - "2011-07-20 00:00:00: Portfolio Value - 297520.75\n", - "2011-07-21 00:00:00: Portfolio Value - 308695.96\n", - "2011-07-22 00:00:00: Portfolio Value - 299084.89\n", - "2011-07-25 00:00:00: Portfolio Value - 287516.20\n", - "2011-07-26 00:00:00: Portfolio Value - 288678.39\n", - "2011-07-27 00:00:00: Portfolio Value - 306177.70\n", - "2011-07-28 00:00:00: Portfolio Value - 288651.95\n", - "2011-07-29 00:00:00: Portfolio Value - 292083.74\n", - "2011-08-01 00:00:00: Portfolio Value - 269319.00\n", - "2011-08-02 00:00:00: Portfolio Value - 244389.53\n", - "2011-08-03 00:00:00: Portfolio Value - 255737.74\n", - "2011-08-04 00:00:00: Portfolio Value - 195769.66\n", - "2011-08-05 00:00:00: Portfolio Value - 216601.44\n", - "2011-08-08 00:00:00: Portfolio Value - 124569.25\n", - "2011-08-09 00:00:00: Portfolio Value - 183773.21\n", - "2011-08-10 00:00:00: Portfolio Value - 151903.60\n", - "2011-08-11 00:00:00: Portfolio Value - 216203.54\n", - "2011-08-12 00:00:00: Portfolio Value - 220088.52\n", - "2011-08-15 00:00:00: Portfolio Value - 259123.64\n", - "2011-08-16 00:00:00: Portfolio Value - 256213.56\n", - "2011-08-17 00:00:00: Portfolio Value - 246528.51\n", - "2011-08-18 00:00:00: Portfolio Value - 201569.12\n", - "2011-08-19 00:00:00: Portfolio Value - 198813.53\n", - "2011-08-22 00:00:00: Portfolio Value - 224865.26\n", - "2011-08-23 00:00:00: Portfolio Value - 266252.61\n", - "2011-08-24 00:00:00: Portfolio Value - 276431.55\n", - "2011-08-25 00:00:00: Portfolio Value - 261233.63\n", - "2011-08-26 00:00:00: Portfolio Value - 285723.22\n", - "2011-08-29 00:00:00: Portfolio Value - 306823.20\n", - "2011-08-30 00:00:00: Portfolio Value - 313091.69\n", - "2011-08-31 00:00:00: Portfolio Value - 327955.01\n", - "2011-09-01 00:00:00: Portfolio Value - 303938.02\n", - "2011-09-02 00:00:00: Portfolio Value - 278621.40\n", - "2011-09-06 00:00:00: Portfolio Value - 270259.92\n", - "2011-09-07 00:00:00: Portfolio Value - 301735.16\n", - "2011-09-08 00:00:00: Portfolio Value - 280697.60\n", - "2011-09-09 00:00:00: Portfolio Value - 226267.88\n", - "2011-09-12 00:00:00: Portfolio Value - 217863.29\n", - "2011-09-13 00:00:00: Portfolio Value - 221689.17\n", - "2011-09-14 00:00:00: Portfolio Value - 235515.54\n", - "2011-09-15 00:00:00: Portfolio Value - 241433.93\n", - "2011-09-16 00:00:00: Portfolio Value - 261211.87\n", - "2011-09-19 00:00:00: Portfolio Value - 238103.39\n", - "2011-09-20 00:00:00: Portfolio Value - 247927.69\n", - "2011-09-21 00:00:00: Portfolio Value - 217490.74\n", - "2011-09-22 00:00:00: Portfolio Value - 206023.77\n", - "2011-09-23 00:00:00: Portfolio Value - 216780.91\n", - "2011-09-26 00:00:00: Portfolio Value - 212436.42\n", - "2011-09-27 00:00:00: Portfolio Value - 244549.19\n", - "2011-09-28 00:00:00: Portfolio Value - 212497.21\n", - "2011-09-29 00:00:00: Portfolio Value - 251189.14\n", - "2011-09-30 00:00:00: Portfolio Value - 253973.33\n", - "2011-10-03 00:00:00: Portfolio Value - 196970.89\n", - "2011-10-04 00:00:00: Portfolio Value - 225482.40\n", - "2011-10-05 00:00:00: Portfolio Value - 226893.23\n", - "2011-10-06 00:00:00: Portfolio Value - 245461.84\n", - "2011-10-07 00:00:00: Portfolio Value - 244462.26\n", - "2011-10-10 00:00:00: Portfolio Value - 274171.17\n", - "2011-10-11 00:00:00: Portfolio Value - 243345.28\n", - "2011-10-12 00:00:00: Portfolio Value - 254531.81\n", - "2011-10-13 00:00:00: Portfolio Value - 268213.56\n", - "2011-10-14 00:00:00: Portfolio Value - 273641.20\n", - "2011-10-17 00:00:00: Portfolio Value - 248507.71\n", - "2011-10-18 00:00:00: Portfolio Value - 261160.04\n", - "2011-10-19 00:00:00: Portfolio Value - 283691.93\n", - "2011-10-20 00:00:00: Portfolio Value - 305098.51\n", - "2011-10-21 00:00:00: Portfolio Value - 358408.72\n", - "2011-10-24 00:00:00: Portfolio Value - 370283.16\n", - "2011-10-25 00:00:00: Portfolio Value - 284949.79\n", - "2011-10-26 00:00:00: Portfolio Value - 282670.12\n", - "2011-10-27 00:00:00: Portfolio Value - 281953.86\n", - "2011-10-28 00:00:00: Portfolio Value - 267885.44\n", - "2011-10-31 00:00:00: Portfolio Value - 274731.91\n", - "2011-11-01 00:00:00: Portfolio Value - 237082.75\n", - "2011-11-02 00:00:00: Portfolio Value - 233695.09\n", - "2011-11-03 00:00:00: Portfolio Value - 244230.84\n", - "2011-11-04 00:00:00: Portfolio Value - 255351.16\n", - "2011-11-07 00:00:00: Portfolio Value - 268828.37\n", - "2011-11-08 00:00:00: Portfolio Value - 279959.29\n", - "2011-11-09 00:00:00: Portfolio Value - 258169.41\n", - "2011-11-10 00:00:00: Portfolio Value - 274284.70\n", - "2011-11-11 00:00:00: Portfolio Value - 287984.78\n", - "2011-11-14 00:00:00: Portfolio Value - 278660.40\n", - "2011-11-15 00:00:00: Portfolio Value - 279200.98\n", - "2011-11-16 00:00:00: Portfolio Value - 269340.40\n", - "2011-11-17 00:00:00: Portfolio Value - 261064.63\n", - "2011-11-18 00:00:00: Portfolio Value - 249759.92\n", - "2011-11-21 00:00:00: Portfolio Value - 232653.39\n", - "2011-11-22 00:00:00: Portfolio Value - 226867.64\n", - "2011-11-23 00:00:00: Portfolio Value - 213922.64\n", - "2011-11-25 00:00:00: Portfolio Value - 231101.89\n", - "2011-11-28 00:00:00: Portfolio Value - 241559.26\n", - "2011-11-29 00:00:00: Portfolio Value - 237443.99\n", - "2011-11-30 00:00:00: Portfolio Value - 267369.30\n", - "2011-12-01 00:00:00: Portfolio Value - 269515.58\n", - "2011-12-02 00:00:00: Portfolio Value - 274910.50\n", - "2011-12-05 00:00:00: Portfolio Value - 290789.88\n", - "2011-12-06 00:00:00: Portfolio Value - 279700.31\n", - "2011-12-07 00:00:00: Portfolio Value - 295417.85\n", - "2011-12-08 00:00:00: Portfolio Value - 287005.39\n", - "2011-12-09 00:00:00: Portfolio Value - 295857.09\n", - "2011-12-12 00:00:00: Portfolio Value - 292785.20\n", - "2011-12-13 00:00:00: Portfolio Value - 294421.58\n", - "2011-12-14 00:00:00: Portfolio Value - 301656.44\n", - "2011-12-15 00:00:00: Portfolio Value - 316385.65\n", - "2011-12-16 00:00:00: Portfolio Value - 320345.46\n", - "2011-12-19 00:00:00: Portfolio Value - 324438.52\n", - "2011-12-20 00:00:00: Portfolio Value - 356237.31\n", - "2011-12-21 00:00:00: Portfolio Value - 371075.08\n", - "2011-12-22 00:00:00: Portfolio Value - 365338.99\n", - "2011-12-23 00:00:00: Portfolio Value - 383187.42\n", - "2011-12-27 00:00:00: Portfolio Value - 395384.13\n", - "2011-12-28 00:00:00: Portfolio Value - 388655.26\n", - "2011-12-29 00:00:00: Portfolio Value - 402147.73\n", - "2011-12-30 00:00:00: Portfolio Value - 398433.74\n", - "2012-01-03 00:00:00: Portfolio Value - 378581.82\n", - "2012-01-04 00:00:00: Portfolio Value - 349255.16\n", - "2012-01-05 00:00:00: Portfolio Value - 354854.02\n", - "2012-01-06 00:00:00: Portfolio Value - 358963.39\n", - "2012-01-09 00:00:00: Portfolio Value - 353347.40\n", - "2012-01-10 00:00:00: Portfolio Value - 364260.37\n", - "2012-01-11 00:00:00: Portfolio Value - 360133.95\n", - "2012-01-12 00:00:00: Portfolio Value - 349556.38\n", - "2012-01-13 00:00:00: Portfolio Value - 351433.78\n", - "2012-01-17 00:00:00: Portfolio Value - 351399.51\n", - "2012-01-18 00:00:00: Portfolio Value - 357172.40\n", - "2012-01-19 00:00:00: Portfolio Value - 361315.63\n", - "2012-01-20 00:00:00: Portfolio Value - 357175.52\n", - "2012-01-23 00:00:00: Portfolio Value - 346731.39\n", - "2012-01-24 00:00:00: Portfolio Value - 352567.77\n", - "2012-01-25 00:00:00: Portfolio Value - 361367.17\n", - "2012-01-26 00:00:00: Portfolio Value - 362262.04\n", - "2012-01-27 00:00:00: Portfolio Value - 360250.25\n", - "2012-01-30 00:00:00: Portfolio Value - 356333.11\n", - "2012-01-31 00:00:00: Portfolio Value - 359572.88\n", - "2012-02-01 00:00:00: Portfolio Value - 383772.96\n", - "2012-02-02 00:00:00: Portfolio Value - 377053.33\n", - "2012-02-03 00:00:00: Portfolio Value - 379300.28\n", - "2012-02-06 00:00:00: Portfolio Value - 376587.84\n", - "2012-02-07 00:00:00: Portfolio Value - 372274.63\n", - "2012-02-08 00:00:00: Portfolio Value - 364137.06\n", - "2012-02-09 00:00:00: Portfolio Value - 366724.56\n", - "2012-02-10 00:00:00: Portfolio Value - 358678.04\n", - "2012-02-13 00:00:00: Portfolio Value - 361748.79\n", - "2012-02-14 00:00:00: Portfolio Value - 353862.04\n", - "2012-02-15 00:00:00: Portfolio Value - 301272.23\n", - "2012-02-16 00:00:00: Portfolio Value - 295722.45\n", - "2012-02-17 00:00:00: Portfolio Value - 289311.35\n", - "2012-02-21 00:00:00: Portfolio Value - 284158.39\n", - "2012-02-22 00:00:00: Portfolio Value - 295906.94\n", - "2012-02-23 00:00:00: Portfolio Value - 301194.93\n", - "2012-02-24 00:00:00: Portfolio Value - 310694.78\n", - "2012-02-27 00:00:00: Portfolio Value - 297271.69\n", - "2012-02-28 00:00:00: Portfolio Value - 301512.48\n", - "2012-02-29 00:00:00: Portfolio Value - 312875.28\n", - "2012-03-01 00:00:00: Portfolio Value - 299267.58\n", - "2012-03-02 00:00:00: Portfolio Value - 294897.04\n", - "2012-03-05 00:00:00: Portfolio Value - 311589.77\n", - "2012-03-06 00:00:00: Portfolio Value - 307438.77\n", - "2012-03-07 00:00:00: Portfolio Value - 305817.65\n", - "2012-03-08 00:00:00: Portfolio Value - 325677.30\n", - "2012-03-09 00:00:00: Portfolio Value - 339141.67\n", - "2012-03-12 00:00:00: Portfolio Value - 343776.00\n", - "2012-03-13 00:00:00: Portfolio Value - 347627.54\n", - "2012-03-14 00:00:00: Portfolio Value - 359200.10\n", - "2012-03-15 00:00:00: Portfolio Value - 361939.49\n", - "2012-03-16 00:00:00: Portfolio Value - 351600.02\n", - "2012-03-19 00:00:00: Portfolio Value - 345195.52\n", - "2012-03-20 00:00:00: Portfolio Value - 331633.98\n", - "2012-03-21 00:00:00: Portfolio Value - 331540.28\n", - "2012-03-22 00:00:00: Portfolio Value - 332180.19\n", - "2012-03-23 00:00:00: Portfolio Value - 324229.87\n", - "2012-03-26 00:00:00: Portfolio Value - 349726.00\n", - "2012-03-27 00:00:00: Portfolio Value - 347344.36\n", - "2012-03-28 00:00:00: Portfolio Value - 347189.69\n", - "2012-03-29 00:00:00: Portfolio Value - 344725.58\n", - "2012-03-30 00:00:00: Portfolio Value - 346778.85\n", - "2012-04-02 00:00:00: Portfolio Value - 348532.91\n", - "2012-04-03 00:00:00: Portfolio Value - 364564.74\n", - "2012-04-04 00:00:00: Portfolio Value - 358660.45\n", - "2012-04-05 00:00:00: Portfolio Value - 354108.02\n", - "2012-04-09 00:00:00: Portfolio Value - 343067.37\n", - "2012-04-10 00:00:00: Portfolio Value - 335010.90\n", - "2012-04-11 00:00:00: Portfolio Value - 352838.89\n", - "2012-04-12 00:00:00: Portfolio Value - 346944.53\n", - "2012-04-13 00:00:00: Portfolio Value - 340121.04\n", - "2012-04-16 00:00:00: Portfolio Value - 342928.89\n", - "2012-04-17 00:00:00: Portfolio Value - 369366.04\n", - "2012-04-18 00:00:00: Portfolio Value - 365488.28\n", - "2012-04-19 00:00:00: Portfolio Value - 370728.21\n", - "2012-04-20 00:00:00: Portfolio Value - 389167.07\n", - "2012-04-23 00:00:00: Portfolio Value - 385800.08\n", - "2012-04-24 00:00:00: Portfolio Value - 402774.33\n", - "2012-04-25 00:00:00: Portfolio Value - 424625.31\n", - "2012-04-26 00:00:00: Portfolio Value - 437694.26\n", - "2012-04-27 00:00:00: Portfolio Value - 448284.32\n", - "2012-04-30 00:00:00: Portfolio Value - 449315.92\n", - "2012-05-01 00:00:00: Portfolio Value - 441003.38\n", - "2012-05-02 00:00:00: Portfolio Value - 441185.12\n", - "2012-05-03 00:00:00: Portfolio Value - 436796.61\n", - "2012-05-04 00:00:00: Portfolio Value - 441255.91\n", - "2012-05-07 00:00:00: Portfolio Value - 443760.29\n", - "2012-05-08 00:00:00: Portfolio Value - 445313.62\n", - "2012-05-09 00:00:00: Portfolio Value - 444763.81\n", - "2012-05-10 00:00:00: Portfolio Value - 454523.62\n", - "2012-05-11 00:00:00: Portfolio Value - 455372.22\n", - "2012-05-14 00:00:00: Portfolio Value - 452735.17\n", - "2012-05-15 00:00:00: Portfolio Value - 461727.91\n", - "2012-05-16 00:00:00: Portfolio Value - 449002.28\n", - "2012-05-17 00:00:00: Portfolio Value - 428707.92\n", - "2012-05-18 00:00:00: Portfolio Value - 403875.81\n", - "2012-05-21 00:00:00: Portfolio Value - 406916.65\n", - "2012-05-22 00:00:00: Portfolio Value - 415227.07\n", - "2012-05-23 00:00:00: Portfolio Value - 417473.23\n", - "2012-05-24 00:00:00: Portfolio Value - 433923.17\n", - "2012-05-25 00:00:00: Portfolio Value - 431743.69\n", - "2012-05-29 00:00:00: Portfolio Value - 433055.86\n", - "2012-05-30 00:00:00: Portfolio Value - 427282.76\n", - "2012-05-31 00:00:00: Portfolio Value - 425180.45\n", - "2012-06-01 00:00:00: Portfolio Value - 421039.82\n", - "2012-06-04 00:00:00: Portfolio Value - 430576.49\n", - "2012-06-05 00:00:00: Portfolio Value - 428182.70\n", - "2012-06-06 00:00:00: Portfolio Value - 447429.98\n", - "2012-06-07 00:00:00: Portfolio Value - 450261.71\n", - "2012-06-08 00:00:00: Portfolio Value - 458375.65\n", - "2012-06-11 00:00:00: Portfolio Value - 448137.26\n", - "2012-06-12 00:00:00: Portfolio Value - 453252.87\n", - "2012-06-13 00:00:00: Portfolio Value - 461726.51\n", - "2012-06-14 00:00:00: Portfolio Value - 467204.03\n", - "2012-06-15 00:00:00: Portfolio Value - 464248.76\n", - "2012-06-18 00:00:00: Portfolio Value - 473020.18\n", - "2012-06-19 00:00:00: Portfolio Value - 472970.34\n", - "2012-06-20 00:00:00: Portfolio Value - 458811.74\n", - "2012-06-21 00:00:00: Portfolio Value - 451079.75\n", - "2012-06-22 00:00:00: Portfolio Value - 464312.32\n", - "2012-06-25 00:00:00: Portfolio Value - 446314.30\n", - "2012-06-26 00:00:00: Portfolio Value - 451324.13\n", - "2012-06-27 00:00:00: Portfolio Value - 465807.97\n", - "2012-06-28 00:00:00: Portfolio Value - 480977.36\n", - "2012-06-29 00:00:00: Portfolio Value - 512449.07\n", - "2012-07-02 00:00:00: Portfolio Value - 530532.22\n", - "2012-07-03 00:00:00: Portfolio Value - 524959.33\n", - "2012-07-05 00:00:00: Portfolio Value - 529681.71\n", - "2012-07-06 00:00:00: Portfolio Value - 513646.52\n", - "2012-07-09 00:00:00: Portfolio Value - 509891.04\n", - "2012-07-10 00:00:00: Portfolio Value - 516599.65\n", - "2012-07-11 00:00:00: Portfolio Value - 525352.56\n", - "2012-07-12 00:00:00: Portfolio Value - 521520.98\n", - "2012-07-13 00:00:00: Portfolio Value - 534454.40\n", - "2012-07-16 00:00:00: Portfolio Value - 525456.66\n", - "2012-07-17 00:00:00: Portfolio Value - 546338.35\n", - "2012-07-18 00:00:00: Portfolio Value - 546914.42\n", - "2012-07-19 00:00:00: Portfolio Value - 537229.84\n", - "2012-07-20 00:00:00: Portfolio Value - 525723.58\n", - "2012-07-23 00:00:00: Portfolio Value - 519716.10\n", - "2012-07-24 00:00:00: Portfolio Value - 500742.51\n", - "2012-07-25 00:00:00: Portfolio Value - 515475.82\n", - "2012-07-26 00:00:00: Portfolio Value - 533187.33\n", - "2012-07-27 00:00:00: Portfolio Value - 559518.12\n", - "2012-07-30 00:00:00: Portfolio Value - 556455.91\n", - "2012-07-31 00:00:00: Portfolio Value - 548422.65\n", - "2012-08-01 00:00:00: Portfolio Value - 523276.35\n", - "2012-08-02 00:00:00: Portfolio Value - 499336.40\n", - "2012-08-03 00:00:00: Portfolio Value - 529257.79\n", - "2012-08-06 00:00:00: Portfolio Value - 506594.83\n", - "2012-08-07 00:00:00: Portfolio Value - 500165.42\n", - "2012-08-08 00:00:00: Portfolio Value - 514335.91\n", - "2012-08-09 00:00:00: Portfolio Value - 506337.25\n", - "2012-08-10 00:00:00: Portfolio Value - 513556.75\n", - "2012-08-13 00:00:00: Portfolio Value - 522278.14\n", - "2012-08-14 00:00:00: Portfolio Value - 541592.71\n", - "2012-08-15 00:00:00: Portfolio Value - 549315.09\n", - "2012-08-16 00:00:00: Portfolio Value - 538452.69\n", - "2012-08-17 00:00:00: Portfolio Value - 545703.34\n", - "2012-08-20 00:00:00: Portfolio Value - 539563.54\n", - "2012-08-21 00:00:00: Portfolio Value - 537429.09\n", - "2012-08-22 00:00:00: Portfolio Value - 522724.53\n", - "2012-08-23 00:00:00: Portfolio Value - 514179.75\n", - "2012-08-24 00:00:00: Portfolio Value - 529441.19\n", - "2012-08-27 00:00:00: Portfolio Value - 528758.54\n", - "2012-08-28 00:00:00: Portfolio Value - 520349.10\n", - "2012-08-29 00:00:00: Portfolio Value - 522180.17\n", - "2012-08-30 00:00:00: Portfolio Value - 521324.73\n", - "2012-08-31 00:00:00: Portfolio Value - 540686.86\n", - "2012-09-04 00:00:00: Portfolio Value - 554659.35\n", - "2012-09-05 00:00:00: Portfolio Value - 542807.74\n", - "2012-09-06 00:00:00: Portfolio Value - 558794.07\n", - "2012-09-07 00:00:00: Portfolio Value - 537457.23\n", - "2012-09-10 00:00:00: Portfolio Value - 530513.53\n", - "2012-09-11 00:00:00: Portfolio Value - 528028.10\n", - "2012-09-12 00:00:00: Portfolio Value - 529726.14\n", - "2012-09-13 00:00:00: Portfolio Value - 542452.06\n", - "2012-09-14 00:00:00: Portfolio Value - 510856.34\n", - "2012-09-17 00:00:00: Portfolio Value - 510507.26\n", - "2012-09-18 00:00:00: Portfolio Value - 504843.74\n", - "2012-09-19 00:00:00: Portfolio Value - 509810.63\n", - "2012-09-20 00:00:00: Portfolio Value - 520931.47\n", - "2012-09-21 00:00:00: Portfolio Value - 517602.79\n", - "2012-09-24 00:00:00: Portfolio Value - 530403.10\n", - "2012-09-25 00:00:00: Portfolio Value - 535399.09\n", - "2012-09-26 00:00:00: Portfolio Value - 539583.74\n", - "2012-09-27 00:00:00: Portfolio Value - 541074.78\n", - "2012-09-28 00:00:00: Portfolio Value - 550971.87\n", - "2012-10-01 00:00:00: Portfolio Value - 554050.68\n", - "2012-10-02 00:00:00: Portfolio Value - 558709.42\n", - "2012-10-03 00:00:00: Portfolio Value - 557707.28\n", - "2012-10-04 00:00:00: Portfolio Value - 563429.35\n", - "2012-10-05 00:00:00: Portfolio Value - 570312.40\n", - "2012-10-08 00:00:00: Portfolio Value - 576919.20\n", - "2012-10-09 00:00:00: Portfolio Value - 548984.87\n", - "2012-10-10 00:00:00: Portfolio Value - 533200.22\n", - "2012-10-11 00:00:00: Portfolio Value - 533794.49\n", - "2012-10-12 00:00:00: Portfolio Value - 532186.99\n", - "2012-10-15 00:00:00: Portfolio Value - 531837.98\n", - "2012-10-16 00:00:00: Portfolio Value - 544811.96\n", - "2012-10-17 00:00:00: Portfolio Value - 538005.78\n", - "2012-10-18 00:00:00: Portfolio Value - 530163.76\n", - "2012-10-19 00:00:00: Portfolio Value - 507334.57\n", - "2012-10-22 00:00:00: Portfolio Value - 504206.99\n", - "2012-10-23 00:00:00: Portfolio Value - 497931.92\n", - "2012-10-24 00:00:00: Portfolio Value - 461973.70\n", - "2012-10-25 00:00:00: Portfolio Value - 467220.76\n", - "2012-10-26 00:00:00: Portfolio Value - 455532.76\n", - "2012-10-31 00:00:00: Portfolio Value - 490317.83\n", - "2012-11-01 00:00:00: Portfolio Value - 499183.13\n", - "2012-11-02 00:00:00: Portfolio Value - 480294.29\n", - "2012-11-05 00:00:00: Portfolio Value - 490390.59\n", - "2012-11-06 00:00:00: Portfolio Value - 511588.04\n", - "2012-11-07 00:00:00: Portfolio Value - 478188.51\n", - "2012-11-08 00:00:00: Portfolio Value - 469542.76\n", - "2012-11-09 00:00:00: Portfolio Value - 470642.62\n", - "2012-11-12 00:00:00: Portfolio Value - 462214.85\n", - "2012-11-13 00:00:00: Portfolio Value - 462447.39\n", - "2012-11-14 00:00:00: Portfolio Value - 453269.18\n", - "2012-11-15 00:00:00: Portfolio Value - 457240.22\n", - "2012-11-16 00:00:00: Portfolio Value - 476939.20\n", - "2012-11-19 00:00:00: Portfolio Value - 478712.06\n", - "2012-11-20 00:00:00: Portfolio Value - 483223.12\n", - "2012-11-21 00:00:00: Portfolio Value - 493219.75\n", - "2012-11-23 00:00:00: Portfolio Value - 499100.79\n", - "2012-11-26 00:00:00: Portfolio Value - 499516.13\n", - "2012-11-27 00:00:00: Portfolio Value - 497733.33\n", - "2012-11-28 00:00:00: Portfolio Value - 508421.97\n", - "2012-11-29 00:00:00: Portfolio Value - 516693.85\n", - "2012-11-30 00:00:00: Portfolio Value - 534948.66\n", - "2012-12-03 00:00:00: Portfolio Value - 521049.14\n", - "2012-12-04 00:00:00: Portfolio Value - 512243.68\n", - "2012-12-05 00:00:00: Portfolio Value - 530952.95\n", - "2012-12-06 00:00:00: Portfolio Value - 534437.07\n", - "2012-12-07 00:00:00: Portfolio Value - 539018.57\n", - "2012-12-10 00:00:00: Portfolio Value - 530798.25\n", - "2012-12-11 00:00:00: Portfolio Value - 538683.59\n", - "2012-12-12 00:00:00: Portfolio Value - 543791.84\n", - "2012-12-13 00:00:00: Portfolio Value - 531559.05\n", - "2012-12-14 00:00:00: Portfolio Value - 518119.35\n", - "2012-12-17 00:00:00: Portfolio Value - 535364.99\n", - "2012-12-18 00:00:00: Portfolio Value - 529422.05\n", - "2012-12-19 00:00:00: Portfolio Value - 521502.14\n", - "2012-12-20 00:00:00: Portfolio Value - 521831.70\n", - "2012-12-21 00:00:00: Portfolio Value - 498148.10\n", - "2012-12-24 00:00:00: Portfolio Value - 493545.92\n", - "2012-12-26 00:00:00: Portfolio Value - 480194.40\n", - "2012-12-27 00:00:00: Portfolio Value - 485454.11\n", - "2012-12-28 00:00:00: Portfolio Value - 474804.02\n", - "2012-12-31 00:00:00: Portfolio Value - 489181.71\n", - "2013-01-02 00:00:00: Portfolio Value - 521271.66\n", - "2013-01-03 00:00:00: Portfolio Value - 535715.22\n", - "2013-01-04 00:00:00: Portfolio Value - 541210.04\n", - "2013-01-07 00:00:00: Portfolio Value - 541068.92\n", - "2013-01-08 00:00:00: Portfolio Value - 553231.09\n", - "2013-01-09 00:00:00: Portfolio Value - 558086.58\n", - "2013-01-10 00:00:00: Portfolio Value - 559176.23\n", - "2013-01-11 00:00:00: Portfolio Value - 561536.42\n", - "2013-01-14 00:00:00: Portfolio Value - 574481.74\n", - "2013-01-15 00:00:00: Portfolio Value - 586156.99\n", - "2013-01-16 00:00:00: Portfolio Value - 569552.34\n", - "2013-01-17 00:00:00: Portfolio Value - 571733.34\n", - "2013-01-18 00:00:00: Portfolio Value - 588520.14\n", - "2013-01-22 00:00:00: Portfolio Value - 584321.26\n", - "2013-01-23 00:00:00: Portfolio Value - 580839.54\n", - "2013-01-24 00:00:00: Portfolio Value - 588304.90\n", - "2013-01-25 00:00:00: Portfolio Value - 614999.67\n", - "2013-01-28 00:00:00: Portfolio Value - 620976.44\n", - "2013-01-29 00:00:00: Portfolio Value - 629397.58\n", - "2013-01-30 00:00:00: Portfolio Value - 634590.41\n", - "2013-01-31 00:00:00: Portfolio Value - 620001.29\n", - "2013-02-01 00:00:00: Portfolio Value - 641875.98\n", - "2013-02-04 00:00:00: Portfolio Value - 636860.92\n", - "2013-02-05 00:00:00: Portfolio Value - 658053.58\n", - "2013-02-06 00:00:00: Portfolio Value - 668644.21\n", - "2013-02-07 00:00:00: Portfolio Value - 668539.84\n", - "2013-02-08 00:00:00: Portfolio Value - 672904.07\n", - "2013-02-11 00:00:00: Portfolio Value - 662163.08\n", - "2013-02-12 00:00:00: Portfolio Value - 653337.56\n", - "2013-02-13 00:00:00: Portfolio Value - 679220.10\n", - "2013-02-14 00:00:00: Portfolio Value - 677208.92\n", - "2013-02-15 00:00:00: Portfolio Value - 681950.15\n", - "2013-02-19 00:00:00: Portfolio Value - 698023.21\n", - "2013-02-20 00:00:00: Portfolio Value - 692932.20\n", - "2013-02-21 00:00:00: Portfolio Value - 691793.21\n", - "2013-02-22 00:00:00: Portfolio Value - 709268.95\n", - "2013-02-25 00:00:00: Portfolio Value - 702682.74\n", - "2013-02-26 00:00:00: Portfolio Value - 724776.42\n", - "2013-02-27 00:00:00: Portfolio Value - 763373.64\n", - "2013-02-28 00:00:00: Portfolio Value - 776112.85\n", - "2013-03-01 00:00:00: Portfolio Value - 777859.94\n", - "2013-03-04 00:00:00: Portfolio Value - 782011.04\n", - "2013-03-05 00:00:00: Portfolio Value - 794851.66\n", - "2013-03-06 00:00:00: Portfolio Value - 773779.29\n", - "2013-03-07 00:00:00: Portfolio Value - 760778.64\n", - "2013-03-08 00:00:00: Portfolio Value - 772261.31\n", - "2013-03-11 00:00:00: Portfolio Value - 780241.56\n", - "2013-03-12 00:00:00: Portfolio Value - 777844.77\n", - "2013-03-13 00:00:00: Portfolio Value - 785585.58\n", - "2013-03-14 00:00:00: Portfolio Value - 797034.26\n", - "2013-03-15 00:00:00: Portfolio Value - 815986.57\n", - "2013-03-18 00:00:00: Portfolio Value - 818225.77\n", - "2013-03-19 00:00:00: Portfolio Value - 843642.21\n", - "2013-03-20 00:00:00: Portfolio Value - 869234.27\n", - "2013-03-21 00:00:00: Portfolio Value - 867351.45\n", - "2013-03-22 00:00:00: Portfolio Value - 885922.46\n", - "2013-03-25 00:00:00: Portfolio Value - 883647.03\n", - "2013-03-26 00:00:00: Portfolio Value - 913604.98\n", - "2013-03-27 00:00:00: Portfolio Value - 926453.87\n", - "2013-03-28 00:00:00: Portfolio Value - 959678.13\n", - "2013-04-01 00:00:00: Portfolio Value - 959822.92\n", - "2013-04-02 00:00:00: Portfolio Value - 971474.96\n", - "2013-04-03 00:00:00: Portfolio Value - 945969.01\n", - "2013-04-04 00:00:00: Portfolio Value - 939355.70\n", - "2013-04-05 00:00:00: Portfolio Value - 931582.87\n", - "2013-04-08 00:00:00: Portfolio Value - 939802.24\n", - "2013-04-09 00:00:00: Portfolio Value - 932387.58\n", - "2013-04-10 00:00:00: Portfolio Value - 949428.77\n", - "2013-04-11 00:00:00: Portfolio Value - 963256.36\n", - "2013-04-12 00:00:00: Portfolio Value - 960748.65\n", - "2013-04-15 00:00:00: Portfolio Value - 935568.43\n", - "2013-04-16 00:00:00: Portfolio Value - 959528.78\n", - "2013-04-17 00:00:00: Portfolio Value - 948475.18\n", - "2013-04-18 00:00:00: Portfolio Value - 938599.55\n", - "2013-04-19 00:00:00: Portfolio Value - 947729.90\n", - "2013-04-22 00:00:00: Portfolio Value - 962434.84\n", - "2013-04-23 00:00:00: Portfolio Value - 973004.64\n", - "2013-04-24 00:00:00: Portfolio Value - 951764.46\n", - "2013-04-25 00:00:00: Portfolio Value - 969900.00\n", - "2013-04-26 00:00:00: Portfolio Value - 957250.54\n", - "2013-04-29 00:00:00: Portfolio Value - 967979.03\n", - "2013-04-30 00:00:00: Portfolio Value - 983799.51\n", - "2013-05-01 00:00:00: Portfolio Value - 979509.34\n", - "2013-05-02 00:00:00: Portfolio Value - 1002278.78\n", - "2013-05-03 00:00:00: Portfolio Value - 1006269.20\n", - "2013-05-06 00:00:00: Portfolio Value - 983737.86\n", - "2013-05-07 00:00:00: Portfolio Value - 996469.12\n", - "2013-05-08 00:00:00: Portfolio Value - 1008886.28\n", - "2013-05-09 00:00:00: Portfolio Value - 1003653.95\n", - "2013-05-10 00:00:00: Portfolio Value - 1015979.58\n", - "2013-05-13 00:00:00: Portfolio Value - 1025813.85\n", - "2013-05-14 00:00:00: Portfolio Value - 1047108.78\n", - "2013-05-15 00:00:00: Portfolio Value - 1054048.44\n", - "2013-05-16 00:00:00: Portfolio Value - 1039029.47\n", - "2013-05-17 00:00:00: Portfolio Value - 1037982.61\n", - "2013-05-20 00:00:00: Portfolio Value - 1013698.32\n", - "2013-05-21 00:00:00: Portfolio Value - 1000016.45\n", - "2013-05-22 00:00:00: Portfolio Value - 972830.49\n", - "2013-05-23 00:00:00: Portfolio Value - 980137.18\n", - "2013-05-24 00:00:00: Portfolio Value - 966854.33\n", - "2013-05-28 00:00:00: Portfolio Value - 969134.62\n", - "2013-05-29 00:00:00: Portfolio Value - 934329.21\n", - "2013-05-30 00:00:00: Portfolio Value - 941333.62\n", - "2013-05-31 00:00:00: Portfolio Value - 886341.18\n", - "2013-06-03 00:00:00: Portfolio Value - 890481.73\n", - "2013-06-04 00:00:00: Portfolio Value - 896043.05\n", - "2013-06-05 00:00:00: Portfolio Value - 878447.46\n", - "2013-06-06 00:00:00: Portfolio Value - 894237.46\n", - "2013-06-07 00:00:00: Portfolio Value - 915236.28\n", - "2013-06-10 00:00:00: Portfolio Value - 907350.73\n", - "2013-06-11 00:00:00: Portfolio Value - 924402.18\n", - "2013-06-12 00:00:00: Portfolio Value - 893597.35\n", - "2013-06-13 00:00:00: Portfolio Value - 921965.39\n", - "2013-06-14 00:00:00: Portfolio Value - 927530.08\n", - "2013-06-17 00:00:00: Portfolio Value - 969449.76\n", - "2013-06-18 00:00:00: Portfolio Value - 983069.69\n", - "2013-06-19 00:00:00: Portfolio Value - 937876.06\n", - "2013-06-20 00:00:00: Portfolio Value - 892755.84\n", - "2013-06-21 00:00:00: Portfolio Value - 912007.51\n", - "2013-06-24 00:00:00: Portfolio Value - 924484.11\n", - "2013-06-25 00:00:00: Portfolio Value - 915490.13\n", - "2013-06-26 00:00:00: Portfolio Value - 934206.30\n", - "2013-06-27 00:00:00: Portfolio Value - 937102.37\n", - "2013-06-28 00:00:00: Portfolio Value - 934617.41\n", - "2013-07-01 00:00:00: Portfolio Value - 944575.58\n", - "2013-07-02 00:00:00: Portfolio Value - 927940.67\n", - "2013-07-03 00:00:00: Portfolio Value - 930359.24\n", - "2013-07-05 00:00:00: Portfolio Value - 943839.29\n", - "2013-07-08 00:00:00: Portfolio Value - 962558.53\n", - "2013-07-09 00:00:00: Portfolio Value - 959501.72\n", - "2013-07-10 00:00:00: Portfolio Value - 968026.15\n", - "2013-07-11 00:00:00: Portfolio Value - 1007177.34\n", - "2013-07-12 00:00:00: Portfolio Value - 1031800.75\n", - "2013-07-15 00:00:00: Portfolio Value - 1041485.23\n", - "2013-07-16 00:00:00: Portfolio Value - 1031066.50\n", - "2013-07-17 00:00:00: Portfolio Value - 1036347.08\n", - "2013-07-18 00:00:00: Portfolio Value - 1042431.62\n", - "2013-07-19 00:00:00: Portfolio Value - 1049835.70\n", - "2013-07-22 00:00:00: Portfolio Value - 1052136.29\n", - "2013-07-23 00:00:00: Portfolio Value - 1044746.35\n", - "2013-07-24 00:00:00: Portfolio Value - 1026425.75\n", - "2013-07-25 00:00:00: Portfolio Value - 1035136.91\n", - "2013-07-26 00:00:00: Portfolio Value - 1030690.98\n", - "2013-07-29 00:00:00: Portfolio Value - 1030640.70\n", - "2013-07-30 00:00:00: Portfolio Value - 1038705.47\n", - "2013-07-31 00:00:00: Portfolio Value - 1061810.16\n", - "2013-08-01 00:00:00: Portfolio Value - 1057390.43\n", - "2013-08-02 00:00:00: Portfolio Value - 1039614.04\n", - "2013-08-05 00:00:00: Portfolio Value - 1021541.81\n", - "2013-08-06 00:00:00: Portfolio Value - 1020324.21\n", - "2013-08-07 00:00:00: Portfolio Value - 1015808.90\n", - "2013-08-08 00:00:00: Portfolio Value - 1021434.57\n", - "2013-08-09 00:00:00: Portfolio Value - 1018045.30\n", - "2013-08-12 00:00:00: Portfolio Value - 1009047.14\n", - "2013-08-13 00:00:00: Portfolio Value - 1011517.65\n", - "2013-08-14 00:00:00: Portfolio Value - 992756.53\n", - "2013-08-15 00:00:00: Portfolio Value - 963171.30\n", - "2013-08-16 00:00:00: Portfolio Value - 962751.48\n", - "2013-08-19 00:00:00: Portfolio Value - 964432.58\n", - "2013-08-20 00:00:00: Portfolio Value - 978131.92\n", - "2013-08-21 00:00:00: Portfolio Value - 944742.52\n", - "2013-08-22 00:00:00: Portfolio Value - 959492.57\n", - "2013-08-23 00:00:00: Portfolio Value - 971939.58\n", - "2013-08-26 00:00:00: Portfolio Value - 953657.42\n", - "2013-08-27 00:00:00: Portfolio Value - 943656.08\n", - "2013-08-28 00:00:00: Portfolio Value - 925114.64\n", - "2013-08-29 00:00:00: Portfolio Value - 928417.42\n", - "2013-08-30 00:00:00: Portfolio Value - 926002.66\n", - "2013-09-03 00:00:00: Portfolio Value - 926136.72\n", - "2013-09-04 00:00:00: Portfolio Value - 933558.41\n", - "2013-09-05 00:00:00: Portfolio Value - 935814.31\n", - "2013-09-06 00:00:00: Portfolio Value - 947602.61\n", - "2013-09-09 00:00:00: Portfolio Value - 962728.30\n", - "2013-09-10 00:00:00: Portfolio Value - 979556.65\n", - "2013-09-11 00:00:00: Portfolio Value - 988420.14\n", - "2013-09-12 00:00:00: Portfolio Value - 996751.71\n", - "2013-09-13 00:00:00: Portfolio Value - 978363.04\n", - "2013-09-16 00:00:00: Portfolio Value - 1006286.68\n", - "2013-09-17 00:00:00: Portfolio Value - 1018803.10\n", - "2013-09-18 00:00:00: Portfolio Value - 1042619.54\n", - "2013-09-19 00:00:00: Portfolio Value - 1043281.66\n", - "2013-09-20 00:00:00: Portfolio Value - 1014800.47\n", - "2013-09-23 00:00:00: Portfolio Value - 1017445.78\n", - "2013-09-24 00:00:00: Portfolio Value - 1017124.39\n", - "2013-09-25 00:00:00: Portfolio Value - 1003943.39\n", - "2013-09-26 00:00:00: Portfolio Value - 1020068.66\n", - "2013-09-27 00:00:00: Portfolio Value - 1005176.98\n", - "2013-09-30 00:00:00: Portfolio Value - 1017751.65\n", - "2013-10-01 00:00:00: Portfolio Value - 1048313.13\n", - "2013-10-02 00:00:00: Portfolio Value - 1042925.74\n", - "2013-10-03 00:00:00: Portfolio Value - 1007704.45\n", - "2013-10-04 00:00:00: Portfolio Value - 1022117.40\n", - "2013-10-07 00:00:00: Portfolio Value - 1010953.28\n", - "2013-10-08 00:00:00: Portfolio Value - 1013059.78\n", - "2013-10-09 00:00:00: Portfolio Value - 1026274.92\n", - "2013-10-10 00:00:00: Portfolio Value - 1075086.22\n", - "2013-10-11 00:00:00: Portfolio Value - 1108892.67\n", - "2013-10-14 00:00:00: Portfolio Value - 1115510.98\n", - "2013-10-15 00:00:00: Portfolio Value - 1086440.74\n", - "2013-10-16 00:00:00: Portfolio Value - 1124343.30\n", - "2013-10-17 00:00:00: Portfolio Value - 1146026.76\n", - "2013-10-18 00:00:00: Portfolio Value - 1152567.18\n", - "2013-10-21 00:00:00: Portfolio Value - 1151142.55\n", - "2013-10-22 00:00:00: Portfolio Value - 1187819.12\n", - "2013-10-23 00:00:00: Portfolio Value - 1204553.34\n", - "2013-10-24 00:00:00: Portfolio Value - 1195643.02\n", - "2013-10-25 00:00:00: Portfolio Value - 1157358.75\n", - "2013-10-28 00:00:00: Portfolio Value - 1174868.04\n", - "2013-10-29 00:00:00: Portfolio Value - 1189229.97\n", - "2013-10-30 00:00:00: Portfolio Value - 1161582.98\n", - "2013-10-31 00:00:00: Portfolio Value - 1167326.12\n", - "2013-11-01 00:00:00: Portfolio Value - 1153565.54\n", - "2013-11-04 00:00:00: Portfolio Value - 1151011.24\n", - "2013-11-05 00:00:00: Portfolio Value - 1143960.23\n", - "2013-11-06 00:00:00: Portfolio Value - 1121074.53\n", - "2013-11-07 00:00:00: Portfolio Value - 1115442.47\n", - "2013-11-08 00:00:00: Portfolio Value - 1127965.90\n", - "2013-11-11 00:00:00: Portfolio Value - 1136245.13\n", - "2013-11-12 00:00:00: Portfolio Value - 1141962.31\n", - "2013-11-13 00:00:00: Portfolio Value - 1155060.93\n", - "2013-11-14 00:00:00: Portfolio Value - 1175173.50\n", - "2013-11-15 00:00:00: Portfolio Value - 1178938.24\n", - "2013-11-18 00:00:00: Portfolio Value - 1147461.01\n", - "2013-11-19 00:00:00: Portfolio Value - 1140319.57\n", - "2013-11-20 00:00:00: Portfolio Value - 1149696.92\n", - "2013-11-21 00:00:00: Portfolio Value - 1163660.78\n", - "2013-11-22 00:00:00: Portfolio Value - 1171510.92\n", - "2013-11-25 00:00:00: Portfolio Value - 1160385.70\n", - "2013-11-26 00:00:00: Portfolio Value - 1145099.14\n", - "2013-11-27 00:00:00: Portfolio Value - 1146527.62\n", - "2013-11-29 00:00:00: Portfolio Value - 1147193.44\n", - "2013-12-02 00:00:00: Portfolio Value - 1146635.75\n", - "2013-12-03 00:00:00: Portfolio Value - 1121689.94\n", - "2013-12-04 00:00:00: Portfolio Value - 1099715.23\n", - "2013-12-05 00:00:00: Portfolio Value - 1105267.40\n", - "2013-12-06 00:00:00: Portfolio Value - 1199012.07\n", - "2013-12-09 00:00:00: Portfolio Value - 1199874.26\n", - "2013-12-10 00:00:00: Portfolio Value - 1167598.95\n", - "2013-12-11 00:00:00: Portfolio Value - 1125450.80\n", - "2013-12-12 00:00:00: Portfolio Value - 1105987.02\n", - "2013-12-13 00:00:00: Portfolio Value - 1128519.37\n", - "2013-12-16 00:00:00: Portfolio Value - 1127112.45\n", - "2013-12-17 00:00:00: Portfolio Value - 1120421.22\n", - "2013-12-18 00:00:00: Portfolio Value - 1160366.69\n", - "2013-12-19 00:00:00: Portfolio Value - 1161796.30\n", - "2013-12-20 00:00:00: Portfolio Value - 1185354.11\n", - "2013-12-23 00:00:00: Portfolio Value - 1183394.44\n", - "2013-12-24 00:00:00: Portfolio Value - 1187427.67\n", - "2013-12-26 00:00:00: Portfolio Value - 1181841.08\n", - "2013-12-27 00:00:00: Portfolio Value - 1193365.51\n", - "2013-12-30 00:00:00: Portfolio Value - 1199239.91\n", - "2013-12-31 00:00:00: Portfolio Value - 1189334.88\n", - "2014-01-02 00:00:00: Portfolio Value - 1139734.98\n", - "2014-01-03 00:00:00: Portfolio Value - 1139888.35\n", - "2014-01-06 00:00:00: Portfolio Value - 1130073.83\n", - "2014-01-07 00:00:00: Portfolio Value - 1157453.89\n", - "2014-01-08 00:00:00: Portfolio Value - 1139661.39\n", - "2014-01-09 00:00:00: Portfolio Value - 1158194.99\n", - "2014-01-10 00:00:00: Portfolio Value - 1153168.66\n", - "2014-01-13 00:00:00: Portfolio Value - 1138941.29\n", - "2014-01-14 00:00:00: Portfolio Value - 1146998.84\n", - "2014-01-15 00:00:00: Portfolio Value - 1159079.41\n", - "2014-01-16 00:00:00: Portfolio Value - 1170075.86\n", - "2014-01-17 00:00:00: Portfolio Value - 1157301.39\n", - "2014-01-21 00:00:00: Portfolio Value - 1188486.69\n", - "2014-01-22 00:00:00: Portfolio Value - 1196574.19\n", - "2014-01-23 00:00:00: Portfolio Value - 1180731.67\n", - "2014-01-24 00:00:00: Portfolio Value - 1127534.22\n", - "2014-01-27 00:00:00: Portfolio Value - 1117385.06\n", - "2014-01-28 00:00:00: Portfolio Value - 1139042.70\n", - "2014-01-29 00:00:00: Portfolio Value - 1118250.06\n", - "2014-01-30 00:00:00: Portfolio Value - 1125332.63\n", - "2014-01-31 00:00:00: Portfolio Value - 1125524.09\n", - "2014-02-03 00:00:00: Portfolio Value - 1064419.87\n", - "2014-02-04 00:00:00: Portfolio Value - 1069111.30\n", - "2014-02-05 00:00:00: Portfolio Value - 1061341.54\n", - "2014-02-06 00:00:00: Portfolio Value - 1046902.16\n", - "2014-02-07 00:00:00: Portfolio Value - 1080154.97\n", - "2014-02-10 00:00:00: Portfolio Value - 1112243.28\n", - "2014-02-11 00:00:00: Portfolio Value - 1136497.66\n", - "2014-02-12 00:00:00: Portfolio Value - 1101642.56\n", - "2014-02-13 00:00:00: Portfolio Value - 1133484.59\n", - "2014-02-14 00:00:00: Portfolio Value - 1145702.20\n", - "2014-02-18 00:00:00: Portfolio Value - 1148123.43\n", - "2014-02-19 00:00:00: Portfolio Value - 1155216.01\n", - "2014-02-20 00:00:00: Portfolio Value - 1189549.63\n", - "2014-02-21 00:00:00: Portfolio Value - 1178093.70\n", - "2014-02-24 00:00:00: Portfolio Value - 1157388.42\n", - "2014-02-25 00:00:00: Portfolio Value - 1146561.16\n", - "2014-02-26 00:00:00: Portfolio Value - 1115893.80\n", - "2014-02-27 00:00:00: Portfolio Value - 1119483.85\n", - "2014-02-28 00:00:00: Portfolio Value - 1132709.04\n", - "2014-03-03 00:00:00: Portfolio Value - 1125153.77\n", - "2014-03-04 00:00:00: Portfolio Value - 1148333.64\n", - "2014-03-05 00:00:00: Portfolio Value - 1134661.49\n", - "2014-03-06 00:00:00: Portfolio Value - 1145632.94\n", - "2014-03-07 00:00:00: Portfolio Value - 1144096.84\n", - "2014-03-10 00:00:00: Portfolio Value - 1156339.40\n", - "2014-03-11 00:00:00: Portfolio Value - 1151673.32\n", - "2014-03-12 00:00:00: Portfolio Value - 1154186.31\n", - "2014-03-13 00:00:00: Portfolio Value - 1147117.07\n", - "2014-03-14 00:00:00: Portfolio Value - 1140381.03\n", - "2014-03-17 00:00:00: Portfolio Value - 1152063.07\n", - "2014-03-18 00:00:00: Portfolio Value - 1164739.38\n", - "2014-03-19 00:00:00: Portfolio Value - 1130494.82\n", - "2014-03-20 00:00:00: Portfolio Value - 1123593.52\n", - "2014-03-21 00:00:00: Portfolio Value - 1123526.92\n", - "2014-03-24 00:00:00: Portfolio Value - 1109640.39\n", - "2014-03-25 00:00:00: Portfolio Value - 1135260.79\n", - "2014-03-26 00:00:00: Portfolio Value - 1136614.05\n", - "2014-03-27 00:00:00: Portfolio Value - 1121270.85\n", - "2014-03-28 00:00:00: Portfolio Value - 1122166.01\n", - "2014-03-31 00:00:00: Portfolio Value - 1158461.67\n", - "2014-04-01 00:00:00: Portfolio Value - 1156368.93\n", - "2014-04-02 00:00:00: Portfolio Value - 1150434.57\n", - "2014-04-03 00:00:00: Portfolio Value - 1159005.26\n", - "2014-04-04 00:00:00: Portfolio Value - 1143663.77\n", - "2014-04-07 00:00:00: Portfolio Value - 1133396.38\n", - "2014-04-08 00:00:00: Portfolio Value - 1129279.82\n", - "2014-04-09 00:00:00: Portfolio Value - 1131577.08\n", - "2014-04-10 00:00:00: Portfolio Value - 1110870.41\n", - "2014-04-11 00:00:00: Portfolio Value - 1094860.73\n", - "2014-04-14 00:00:00: Portfolio Value - 1123486.61\n", - "2014-04-15 00:00:00: Portfolio Value - 1144116.39\n", - "2014-04-16 00:00:00: Portfolio Value - 1149136.42\n", - "2014-04-17 00:00:00: Portfolio Value - 1154598.79\n", - "2014-04-21 00:00:00: Portfolio Value - 1154727.28\n", - "2014-04-22 00:00:00: Portfolio Value - 1148261.37\n", - "2014-04-23 00:00:00: Portfolio Value - 1149917.10\n", - "2014-04-24 00:00:00: Portfolio Value - 1150899.10\n", - "2014-04-25 00:00:00: Portfolio Value - 1160040.18\n", - "2014-04-28 00:00:00: Portfolio Value - 1183129.52\n", - "2014-04-29 00:00:00: Portfolio Value - 1180998.83\n", - "2014-04-30 00:00:00: Portfolio Value - 1159595.79\n", - "2014-05-01 00:00:00: Portfolio Value - 1149854.63\n", - "2014-05-02 00:00:00: Portfolio Value - 1131411.97\n", - "2014-05-05 00:00:00: Portfolio Value - 1134523.86\n", - "2014-05-06 00:00:00: Portfolio Value - 1131048.77\n", - "2014-05-07 00:00:00: Portfolio Value - 1158233.28\n", - "2014-05-08 00:00:00: Portfolio Value - 1166414.12\n", - "2014-05-09 00:00:00: Portfolio Value - 1183211.69\n", - "2014-05-12 00:00:00: Portfolio Value - 1185423.94\n", - "2014-05-13 00:00:00: Portfolio Value - 1182753.90\n", - "2014-05-14 00:00:00: Portfolio Value - 1176558.86\n", - "2014-05-15 00:00:00: Portfolio Value - 1162449.97\n", - "2014-05-16 00:00:00: Portfolio Value - 1185755.83\n", - "2014-05-19 00:00:00: Portfolio Value - 1179971.94\n", - "2014-05-20 00:00:00: Portfolio Value - 1171492.52\n", - "2014-05-21 00:00:00: Portfolio Value - 1171889.75\n", - "2014-05-22 00:00:00: Portfolio Value - 1170997.03\n", - "2014-05-23 00:00:00: Portfolio Value - 1169548.74\n", - "2014-05-27 00:00:00: Portfolio Value - 1173222.83\n", - "2014-05-28 00:00:00: Portfolio Value - 1172526.95\n", - "2014-05-29 00:00:00: Portfolio Value - 1190008.32\n", - "2014-05-30 00:00:00: Portfolio Value - 1191347.47\n", - "2014-06-02 00:00:00: Portfolio Value - 1188733.17\n", - "2014-06-03 00:00:00: Portfolio Value - 1186267.63\n", - "2014-06-04 00:00:00: Portfolio Value - 1222358.12\n", - "2014-06-05 00:00:00: Portfolio Value - 1231327.57\n", - "2014-06-06 00:00:00: Portfolio Value - 1236066.04\n", - "2014-06-09 00:00:00: Portfolio Value - 1264605.25\n", - "2014-06-10 00:00:00: Portfolio Value - 1250405.13\n", - "2014-06-11 00:00:00: Portfolio Value - 1224524.54\n", - "2014-06-12 00:00:00: Portfolio Value - 1225479.93\n", - "2014-06-13 00:00:00: Portfolio Value - 1218304.44\n", - "2014-06-16 00:00:00: Portfolio Value - 1222673.04\n", - "2014-06-17 00:00:00: Portfolio Value - 1214702.29\n", - "2014-06-18 00:00:00: Portfolio Value - 1231238.68\n", - "2014-06-19 00:00:00: Portfolio Value - 1241535.40\n", - "2014-06-20 00:00:00: Portfolio Value - 1232397.00\n", - "2014-06-23 00:00:00: Portfolio Value - 1227856.80\n", - "2014-06-24 00:00:00: Portfolio Value - 1218693.86\n", - "2014-06-25 00:00:00: Portfolio Value - 1222990.17\n", - "2014-06-26 00:00:00: Portfolio Value - 1224541.60\n", - "2014-06-27 00:00:00: Portfolio Value - 1240446.85\n", - "2014-06-30 00:00:00: Portfolio Value - 1229514.04\n", - "2014-07-01 00:00:00: Portfolio Value - 1247970.35\n", - "2014-07-02 00:00:00: Portfolio Value - 1220749.71\n", - "2014-07-03 00:00:00: Portfolio Value - 1211456.71\n", - "2014-07-07 00:00:00: Portfolio Value - 1213535.93\n", - "2014-07-08 00:00:00: Portfolio Value - 1208346.07\n", - "2014-07-09 00:00:00: Portfolio Value - 1211202.46\n", - "2014-07-10 00:00:00: Portfolio Value - 1216951.12\n", - "2014-07-11 00:00:00: Portfolio Value - 1217689.38\n", - "2014-07-14 00:00:00: Portfolio Value - 1215566.28\n", - "2014-07-15 00:00:00: Portfolio Value - 1210745.70\n", - "2014-07-16 00:00:00: Portfolio Value - 1209077.85\n", - "2014-07-17 00:00:00: Portfolio Value - 1193790.06\n", - "2014-07-18 00:00:00: Portfolio Value - 1217435.13\n", - "2014-07-21 00:00:00: Portfolio Value - 1199250.43\n", - "2014-07-22 00:00:00: Portfolio Value - 1201391.05\n", - "2014-07-23 00:00:00: Portfolio Value - 1208721.88\n", - "2014-07-24 00:00:00: Portfolio Value - 1218403.90\n", - "2014-07-25 00:00:00: Portfolio Value - 1185690.04\n", - "2014-07-28 00:00:00: Portfolio Value - 1192740.46\n", - "2014-07-29 00:00:00: Portfolio Value - 1180309.53\n", - "2014-07-30 00:00:00: Portfolio Value - 1158904.30\n", - "2014-07-31 00:00:00: Portfolio Value - 1128389.04\n", - "2014-08-01 00:00:00: Portfolio Value - 1132814.93\n", - "2014-08-04 00:00:00: Portfolio Value - 1103998.07\n", - "2014-08-05 00:00:00: Portfolio Value - 1098011.28\n", - "2014-08-06 00:00:00: Portfolio Value - 1108326.49\n", - "2014-08-07 00:00:00: Portfolio Value - 1115952.94\n", - "2014-08-08 00:00:00: Portfolio Value - 1133422.72\n", - "2014-08-11 00:00:00: Portfolio Value - 1151621.48\n", - "2014-08-12 00:00:00: Portfolio Value - 1151001.68\n", - "2014-08-13 00:00:00: Portfolio Value - 1171116.26\n", - "2014-08-14 00:00:00: Portfolio Value - 1188094.95\n", - "2014-08-15 00:00:00: Portfolio Value - 1183561.16\n", - "2014-08-18 00:00:00: Portfolio Value - 1195718.01\n", - "2014-08-19 00:00:00: Portfolio Value - 1198116.77\n", - "2014-08-20 00:00:00: Portfolio Value - 1196570.02\n", - "2014-08-21 00:00:00: Portfolio Value - 1212481.00\n", - "2014-08-22 00:00:00: Portfolio Value - 1200405.02\n", - "2014-08-25 00:00:00: Portfolio Value - 1192645.93\n", - "2014-08-26 00:00:00: Portfolio Value - 1194152.97\n", - "2014-08-27 00:00:00: Portfolio Value - 1195124.93\n", - "2014-08-28 00:00:00: Portfolio Value - 1200698.10\n", - "2014-08-29 00:00:00: Portfolio Value - 1212886.20\n", - "2014-09-02 00:00:00: Portfolio Value - 1222983.52\n", - "2014-09-03 00:00:00: Portfolio Value - 1224595.25\n", - "2014-09-04 00:00:00: Portfolio Value - 1226127.68\n", - "2014-09-05 00:00:00: Portfolio Value - 1234945.97\n", - "2014-09-08 00:00:00: Portfolio Value - 1226310.95\n", - "2014-09-09 00:00:00: Portfolio Value - 1210523.73\n", - "2014-09-10 00:00:00: Portfolio Value - 1219647.15\n", - "2014-09-11 00:00:00: Portfolio Value - 1225475.04\n", - "2014-09-12 00:00:00: Portfolio Value - 1175102.20\n", - "2014-09-15 00:00:00: Portfolio Value - 1179353.97\n", - "2014-09-16 00:00:00: Portfolio Value - 1180018.63\n", - "2014-09-17 00:00:00: Portfolio Value - 1173258.84\n", - "2014-09-18 00:00:00: Portfolio Value - 1167827.10\n", - "2014-09-19 00:00:00: Portfolio Value - 1157933.45\n", - "2014-09-22 00:00:00: Portfolio Value - 1172240.88\n", - "2014-09-23 00:00:00: Portfolio Value - 1140194.34\n", - "2014-09-24 00:00:00: Portfolio Value - 1151047.64\n", - "2014-09-25 00:00:00: Portfolio Value - 1139359.38\n", - "2014-09-26 00:00:00: Portfolio Value - 1147886.52\n", - "2014-09-29 00:00:00: Portfolio Value - 1158827.67\n", - "2014-09-30 00:00:00: Portfolio Value - 1162321.07\n", - "2014-10-01 00:00:00: Portfolio Value - 1152581.06\n", - "2014-10-02 00:00:00: Portfolio Value - 1156671.69\n", - "2014-10-03 00:00:00: Portfolio Value - 1181303.11\n", - "2014-10-06 00:00:00: Portfolio Value - 1240365.32\n", - "2014-10-07 00:00:00: Portfolio Value - 1254719.08\n", - "2014-10-08 00:00:00: Portfolio Value - 1297866.22\n", - "2014-10-09 00:00:00: Portfolio Value - 1254747.25\n", - "2014-10-10 00:00:00: Portfolio Value - 1251073.28\n", - "2014-10-13 00:00:00: Portfolio Value - 1230075.78\n", - "2014-10-14 00:00:00: Portfolio Value - 1236322.39\n", - "2014-10-15 00:00:00: Portfolio Value - 1219716.06\n", - "2014-10-16 00:00:00: Portfolio Value - 1168236.56\n", - "2014-10-17 00:00:00: Portfolio Value - 1192103.49\n", - "2014-10-20 00:00:00: Portfolio Value - 1212429.80\n", - "2014-10-21 00:00:00: Portfolio Value - 1238450.93\n", - "2014-10-22 00:00:00: Portfolio Value - 1249231.66\n", - "2014-10-23 00:00:00: Portfolio Value - 1247446.09\n", - "2014-10-24 00:00:00: Portfolio Value - 1290293.17\n", - "2014-10-27 00:00:00: Portfolio Value - 1304072.28\n", - "2014-10-28 00:00:00: Portfolio Value - 1317980.66\n", - "2014-10-29 00:00:00: Portfolio Value - 1291983.61\n", - "2014-10-30 00:00:00: Portfolio Value - 1304642.51\n", - "2014-10-31 00:00:00: Portfolio Value - 1319432.86\n", - "2014-11-03 00:00:00: Portfolio Value - 1306020.36\n", - "2014-11-04 00:00:00: Portfolio Value - 1323715.08\n", - "2014-11-05 00:00:00: Portfolio Value - 1344015.12\n", - "2014-11-06 00:00:00: Portfolio Value - 1348720.05\n", - "2014-11-07 00:00:00: Portfolio Value - 1347209.00\n", - "2014-11-10 00:00:00: Portfolio Value - 1369239.88\n", - "2014-11-11 00:00:00: Portfolio Value - 1358817.69\n", - "2014-11-12 00:00:00: Portfolio Value - 1349206.00\n", - "2014-11-13 00:00:00: Portfolio Value - 1355067.81\n", - "2014-11-14 00:00:00: Portfolio Value - 1344406.25\n", - "2014-11-17 00:00:00: Portfolio Value - 1360657.33\n", - "2014-11-18 00:00:00: Portfolio Value - 1369068.61\n", - "2014-11-19 00:00:00: Portfolio Value - 1361917.02\n", - "2014-11-20 00:00:00: Portfolio Value - 1363462.10\n", - "2014-11-21 00:00:00: Portfolio Value - 1358489.23\n", - "2014-11-24 00:00:00: Portfolio Value - 1362774.29\n", - "2014-11-25 00:00:00: Portfolio Value - 1386690.33\n", - "2014-11-26 00:00:00: Portfolio Value - 1430339.76\n", - "2014-11-28 00:00:00: Portfolio Value - 1441692.16\n", - "2014-12-01 00:00:00: Portfolio Value - 1449697.58\n", - "2014-12-02 00:00:00: Portfolio Value - 1459829.79\n", - "2014-12-03 00:00:00: Portfolio Value - 1464048.50\n", - "2014-12-04 00:00:00: Portfolio Value - 1481879.62\n", - "2014-12-05 00:00:00: Portfolio Value - 1464264.47\n", - "2014-12-08 00:00:00: Portfolio Value - 1495506.43\n", - "2014-12-09 00:00:00: Portfolio Value - 1480762.33\n", - "2014-12-10 00:00:00: Portfolio Value - 1460590.45\n", - "2014-12-11 00:00:00: Portfolio Value - 1477878.47\n", - "2014-12-12 00:00:00: Portfolio Value - 1455473.51\n", - "2014-12-15 00:00:00: Portfolio Value - 1462014.89\n", - "2014-12-16 00:00:00: Portfolio Value - 1468384.36\n", - "2014-12-17 00:00:00: Portfolio Value - 1516220.16\n", - "2014-12-18 00:00:00: Portfolio Value - 1561809.14\n", - "2014-12-19 00:00:00: Portfolio Value - 1565693.14\n", - "2014-12-22 00:00:00: Portfolio Value - 1582332.65\n", - "2014-12-23 00:00:00: Portfolio Value - 1598160.61\n", - "2014-12-24 00:00:00: Portfolio Value - 1607887.39\n", - "2014-12-26 00:00:00: Portfolio Value - 1603884.60\n", - "2014-12-29 00:00:00: Portfolio Value - 1601235.57\n", - "2014-12-30 00:00:00: Portfolio Value - 1598716.45\n", - "2014-12-31 00:00:00: Portfolio Value - 1561373.83\n", - "2015-01-02 00:00:00: Portfolio Value - 1566892.43\n", - "2015-01-05 00:00:00: Portfolio Value - 1565620.77\n", - "2015-01-06 00:00:00: Portfolio Value - 1580734.91\n", - "2015-01-07 00:00:00: Portfolio Value - 1611322.22\n", - "2015-01-08 00:00:00: Portfolio Value - 1655574.52\n", - "2015-01-09 00:00:00: Portfolio Value - 1634424.15\n", - "2015-01-12 00:00:00: Portfolio Value - 1625520.18\n", - "2015-01-13 00:00:00: Portfolio Value - 1642258.19\n", - "2015-01-14 00:00:00: Portfolio Value - 1646155.85\n", - "2015-01-15 00:00:00: Portfolio Value - 1662368.07\n", - "2015-01-16 00:00:00: Portfolio Value - 1674182.18\n", - "2015-01-20 00:00:00: Portfolio Value - 1660226.58\n", - "2015-01-21 00:00:00: Portfolio Value - 1669954.38\n", - "2015-01-22 00:00:00: Portfolio Value - 1712082.78\n", - "2015-01-23 00:00:00: Portfolio Value - 1714761.82\n", - "2015-01-26 00:00:00: Portfolio Value - 1725734.12\n", - "2015-01-27 00:00:00: Portfolio Value - 1695684.07\n", - "2015-01-28 00:00:00: Portfolio Value - 1669769.25\n", - "2015-01-29 00:00:00: Portfolio Value - 1696726.15\n", - "2015-01-30 00:00:00: Portfolio Value - 1651403.53\n", - "2015-02-02 00:00:00: Portfolio Value - 1690241.60\n", - "2015-02-03 00:00:00: Portfolio Value - 1711726.11\n", - "2015-02-04 00:00:00: Portfolio Value - 1721645.50\n", - "2015-02-05 00:00:00: Portfolio Value - 1746730.47\n", - "2015-02-06 00:00:00: Portfolio Value - 1696139.08\n", - "2015-02-09 00:00:00: Portfolio Value - 1669072.56\n", - "2015-02-10 00:00:00: Portfolio Value - 1693666.54\n", - "2015-02-11 00:00:00: Portfolio Value - 1749985.58\n", - "2015-02-12 00:00:00: Portfolio Value - 1770904.96\n", - "2015-02-13 00:00:00: Portfolio Value - 1772568.49\n", - "2015-02-17 00:00:00: Portfolio Value - 1767670.54\n", - "2015-02-18 00:00:00: Portfolio Value - 1782843.52\n", - "2015-02-19 00:00:00: Portfolio Value - 1767913.93\n", - "2015-02-20 00:00:00: Portfolio Value - 1779303.71\n", - "2015-02-23 00:00:00: Portfolio Value - 1793380.35\n", - "2015-02-24 00:00:00: Portfolio Value - 1802013.88\n", - "2015-02-25 00:00:00: Portfolio Value - 1806708.54\n", - "2015-02-26 00:00:00: Portfolio Value - 1797313.96\n", - "2015-02-27 00:00:00: Portfolio Value - 1787347.21\n", - "2015-03-02 00:00:00: Portfolio Value - 1798938.81\n", - "2015-03-03 00:00:00: Portfolio Value - 1790948.97\n", - "2015-03-04 00:00:00: Portfolio Value - 1783499.34\n", - "2015-03-05 00:00:00: Portfolio Value - 1802610.24\n", - "2015-03-06 00:00:00: Portfolio Value - 1754336.38\n", - "2015-03-09 00:00:00: Portfolio Value - 1784071.40\n", - "2015-03-10 00:00:00: Portfolio Value - 1730572.85\n", - "2015-03-11 00:00:00: Portfolio Value - 1744524.92\n", - "2015-03-12 00:00:00: Portfolio Value - 1783893.70\n", - "2015-03-13 00:00:00: Portfolio Value - 1759490.04\n", - "2015-03-16 00:00:00: Portfolio Value - 1810578.52\n", - "2015-03-17 00:00:00: Portfolio Value - 1800747.01\n", - "2015-03-18 00:00:00: Portfolio Value - 1835421.86\n", - "2015-03-19 00:00:00: Portfolio Value - 1823783.32\n", - "2015-03-20 00:00:00: Portfolio Value - 1836358.90\n", - "2015-03-23 00:00:00: Portfolio Value - 1846220.63\n", - "2015-03-24 00:00:00: Portfolio Value - 1811532.02\n", - "2015-03-25 00:00:00: Portfolio Value - 1759565.00\n", - "2015-03-26 00:00:00: Portfolio Value - 1759861.48\n", - "2015-03-27 00:00:00: Portfolio Value - 1788896.90\n", - "2015-03-30 00:00:00: Portfolio Value - 1815628.92\n", - "2015-03-31 00:00:00: Portfolio Value - 1803653.71\n", - "2015-04-01 00:00:00: Portfolio Value - 1793582.62\n", - "2015-04-02 00:00:00: Portfolio Value - 1804792.65\n", - "2015-04-06 00:00:00: Portfolio Value - 1832667.80\n", - "2015-04-07 00:00:00: Portfolio Value - 1811328.70\n", - "2015-04-08 00:00:00: Portfolio Value - 1824685.31\n", - "2015-04-09 00:00:00: Portfolio Value - 1834764.32\n", - "2015-04-10 00:00:00: Portfolio Value - 1848625.08\n", - "2015-04-13 00:00:00: Portfolio Value - 1833287.49\n", - "2015-04-14 00:00:00: Portfolio Value - 1828757.61\n", - "2015-04-15 00:00:00: Portfolio Value - 1800940.19\n", - "2015-04-16 00:00:00: Portfolio Value - 1795748.48\n", - "2015-04-17 00:00:00: Portfolio Value - 1761605.55\n", - "2015-04-20 00:00:00: Portfolio Value - 1789666.97\n", - "2015-04-21 00:00:00: Portfolio Value - 1795344.87\n", - "2015-04-22 00:00:00: Portfolio Value - 1783760.62\n", - "2015-04-23 00:00:00: Portfolio Value - 1786996.64\n", - "2015-04-24 00:00:00: Portfolio Value - 1758553.34\n", - "2015-04-27 00:00:00: Portfolio Value - 1730175.54\n", - "2015-04-28 00:00:00: Portfolio Value - 1746122.78\n", - "2015-04-29 00:00:00: Portfolio Value - 1745769.02\n", - "2015-04-30 00:00:00: Portfolio Value - 1706188.49\n", - "2015-05-01 00:00:00: Portfolio Value - 1723683.00\n", - "2015-05-04 00:00:00: Portfolio Value - 1728895.43\n", - "2015-05-05 00:00:00: Portfolio Value - 1689826.68\n", - "2015-05-06 00:00:00: Portfolio Value - 1679177.95\n", - "2015-05-07 00:00:00: Portfolio Value - 1703661.18\n", - "2015-05-08 00:00:00: Portfolio Value - 1710984.89\n", - "2015-05-11 00:00:00: Portfolio Value - 1701495.57\n", - "2015-05-12 00:00:00: Portfolio Value - 1671368.41\n", - "2015-05-13 00:00:00: Portfolio Value - 1602306.79\n", - "2015-05-14 00:00:00: Portfolio Value - 1648421.38\n", - "2015-05-15 00:00:00: Portfolio Value - 1654504.65\n", - "2015-05-18 00:00:00: Portfolio Value - 1678480.39\n", - "2015-05-19 00:00:00: Portfolio Value - 1692757.77\n", - "2015-05-20 00:00:00: Portfolio Value - 1702469.34\n", - "2015-05-21 00:00:00: Portfolio Value - 1695930.63\n", - "2015-05-22 00:00:00: Portfolio Value - 1692610.72\n", - "2015-05-26 00:00:00: Portfolio Value - 1669710.23\n", - "2015-05-27 00:00:00: Portfolio Value - 1682526.24\n", - "2015-05-28 00:00:00: Portfolio Value - 1672970.68\n", - "2015-05-29 00:00:00: Portfolio Value - 1653792.04\n", - "2015-06-01 00:00:00: Portfolio Value - 1675519.65\n", - "2015-06-02 00:00:00: Portfolio Value - 1654550.93\n", - "2015-06-03 00:00:00: Portfolio Value - 1658880.78\n", - "2015-06-04 00:00:00: Portfolio Value - 1635874.96\n", - "2015-06-05 00:00:00: Portfolio Value - 1624246.62\n", - "2015-06-08 00:00:00: Portfolio Value - 1615821.25\n", - "2015-06-09 00:00:00: Portfolio Value - 1606515.10\n", - "2015-06-10 00:00:00: Portfolio Value - 1636479.88\n", - "2015-06-11 00:00:00: Portfolio Value - 1657601.91\n", - "2015-06-12 00:00:00: Portfolio Value - 1629410.25\n", - "2015-06-15 00:00:00: Portfolio Value - 1618808.58\n", - "2015-06-16 00:00:00: Portfolio Value - 1631043.80\n", - "2015-06-17 00:00:00: Portfolio Value - 1640756.25\n", - "2015-06-18 00:00:00: Portfolio Value - 1662854.22\n", - "2015-06-19 00:00:00: Portfolio Value - 1662931.30\n", - "2015-06-22 00:00:00: Portfolio Value - 1671121.60\n", - "2015-06-23 00:00:00: Portfolio Value - 1647254.54\n", - "2015-06-24 00:00:00: Portfolio Value - 1621341.11\n", - "2015-06-25 00:00:00: Portfolio Value - 1631642.06\n", - "2015-06-26 00:00:00: Portfolio Value - 1630103.78\n", - "2015-06-29 00:00:00: Portfolio Value - 1587751.46\n", - "2015-06-30 00:00:00: Portfolio Value - 1608936.49\n", - "2015-07-01 00:00:00: Portfolio Value - 1636841.92\n", - "2015-07-02 00:00:00: Portfolio Value - 1634355.02\n", - "2015-07-06 00:00:00: Portfolio Value - 1638852.06\n", - "2015-07-07 00:00:00: Portfolio Value - 1666824.18\n", - "2015-07-08 00:00:00: Portfolio Value - 1648649.33\n", - "2015-07-09 00:00:00: Portfolio Value - 1650442.28\n", - "2015-07-10 00:00:00: Portfolio Value - 1678830.21\n", - "2015-07-13 00:00:00: Portfolio Value - 1687357.19\n", - "2015-07-14 00:00:00: Portfolio Value - 1691422.81\n", - "2015-07-15 00:00:00: Portfolio Value - 1695078.88\n", - "2015-07-16 00:00:00: Portfolio Value - 1725463.85\n", - "2015-07-17 00:00:00: Portfolio Value - 1717562.50\n", - "2015-07-20 00:00:00: Portfolio Value - 1723736.71\n", - "2015-07-21 00:00:00: Portfolio Value - 1693444.97\n", - "2015-07-22 00:00:00: Portfolio Value - 1697425.19\n", - "2015-07-23 00:00:00: Portfolio Value - 1693371.17\n", - "2015-07-24 00:00:00: Portfolio Value - 1694435.18\n", - "2015-07-27 00:00:00: Portfolio Value - 1690808.26\n", - "2015-07-28 00:00:00: Portfolio Value - 1725017.85\n", - "2015-07-29 00:00:00: Portfolio Value - 1788103.11\n", - "2015-07-30 00:00:00: Portfolio Value - 1787775.08\n", - "2015-07-31 00:00:00: Portfolio Value - 1798874.37\n", - "2015-08-03 00:00:00: Portfolio Value - 1821118.02\n", - "2015-08-04 00:00:00: Portfolio Value - 1820408.44\n", - "2015-08-05 00:00:00: Portfolio Value - 1859746.78\n", - "2015-08-06 00:00:00: Portfolio Value - 1815652.27\n", - "2015-08-07 00:00:00: Portfolio Value - 1828945.56\n", - "2015-08-10 00:00:00: Portfolio Value - 1823788.11\n", - "2015-08-11 00:00:00: Portfolio Value - 1815380.90\n", - "2015-08-12 00:00:00: Portfolio Value - 1809040.77\n", - "2015-08-13 00:00:00: Portfolio Value - 1802296.66\n", - "2015-08-14 00:00:00: Portfolio Value - 1831664.75\n", - "2015-08-17 00:00:00: Portfolio Value - 1823452.73\n", - "2015-08-18 00:00:00: Portfolio Value - 1814228.76\n", - "2015-08-19 00:00:00: Portfolio Value - 1802850.12\n", - "2015-08-20 00:00:00: Portfolio Value - 1761585.03\n", - "2015-08-21 00:00:00: Portfolio Value - 1726538.84\n", - "2015-08-24 00:00:00: Portfolio Value - 1609179.02\n", - "2015-08-25 00:00:00: Portfolio Value - 1576084.68\n", - "2015-08-26 00:00:00: Portfolio Value - 1624400.81\n", - "2015-08-27 00:00:00: Portfolio Value - 1662635.19\n", - "2015-08-28 00:00:00: Portfolio Value - 1647559.68\n", - "2015-08-31 00:00:00: Portfolio Value - 1613881.78\n", - "2015-09-01 00:00:00: Portfolio Value - 1534569.70\n", - "2015-09-02 00:00:00: Portfolio Value - 1564972.04\n", - "2015-09-03 00:00:00: Portfolio Value - 1579452.02\n", - "2015-09-04 00:00:00: Portfolio Value - 1540597.96\n", - "2015-09-08 00:00:00: Portfolio Value - 1603715.27\n", - "2015-09-09 00:00:00: Portfolio Value - 1554316.45\n", - "2015-09-10 00:00:00: Portfolio Value - 1535108.10\n", - "2015-09-11 00:00:00: Portfolio Value - 1529870.04\n", - "2015-09-14 00:00:00: Portfolio Value - 1527359.84\n", - "2015-09-15 00:00:00: Portfolio Value - 1546561.39\n", - "2015-09-16 00:00:00: Portfolio Value - 1575425.65\n", - "2015-09-17 00:00:00: Portfolio Value - 1588204.39\n", - "2015-09-18 00:00:00: Portfolio Value - 1568302.27\n", - "2015-09-21 00:00:00: Portfolio Value - 1604046.48\n", - "2015-09-22 00:00:00: Portfolio Value - 1587653.01\n", - "2015-09-23 00:00:00: Portfolio Value - 1602883.57\n", - "2015-09-24 00:00:00: Portfolio Value - 1606924.40\n", - "2015-09-25 00:00:00: Portfolio Value - 1609688.43\n", - "2015-09-28 00:00:00: Portfolio Value - 1565555.99\n", - "2015-09-29 00:00:00: Portfolio Value - 1581795.11\n", - "2015-09-30 00:00:00: Portfolio Value - 1597326.84\n", - "2015-10-01 00:00:00: Portfolio Value - 1600421.56\n", - "2015-10-02 00:00:00: Portfolio Value - 1649448.20\n", - "2015-10-05 00:00:00: Portfolio Value - 1698344.30\n", - "2015-10-06 00:00:00: Portfolio Value - 1694002.88\n", - "2015-10-07 00:00:00: Portfolio Value - 1730679.14\n", - "2015-10-08 00:00:00: Portfolio Value - 1755947.11\n", - "2015-10-09 00:00:00: Portfolio Value - 1757216.93\n", - "2015-10-12 00:00:00: Portfolio Value - 1776092.58\n", - "2015-10-13 00:00:00: Portfolio Value - 1764863.13\n", - "2015-10-14 00:00:00: Portfolio Value - 1731835.68\n", - "2015-10-15 00:00:00: Portfolio Value - 1744022.03\n", - "2015-10-16 00:00:00: Portfolio Value - 1778059.33\n", - "2015-10-19 00:00:00: Portfolio Value - 1783073.94\n", - "2015-10-20 00:00:00: Portfolio Value - 1789833.34\n", - "2015-10-21 00:00:00: Portfolio Value - 1790511.26\n", - "2015-10-22 00:00:00: Portfolio Value - 1796696.50\n", - "2015-10-23 00:00:00: Portfolio Value - 1819432.78\n", - "2015-10-26 00:00:00: Portfolio Value - 1804088.87\n", - "2015-10-27 00:00:00: Portfolio Value - 1798323.20\n", - "2015-10-28 00:00:00: Portfolio Value - 1757844.56\n", - "2015-10-29 00:00:00: Portfolio Value - 1769146.38\n", - "2015-10-30 00:00:00: Portfolio Value - 1761156.23\n", - "2015-11-02 00:00:00: Portfolio Value - 1796789.32\n", - "2015-11-03 00:00:00: Portfolio Value - 1789442.68\n", - "2015-11-04 00:00:00: Portfolio Value - 1820727.36\n", - "2015-11-05 00:00:00: Portfolio Value - 1819087.38\n", - "2015-11-06 00:00:00: Portfolio Value - 1794178.25\n", - "2015-11-09 00:00:00: Portfolio Value - 1786067.03\n", - "2015-11-10 00:00:00: Portfolio Value - 1795299.88\n", - "2015-11-11 00:00:00: Portfolio Value - 1822045.19\n", - "2015-11-12 00:00:00: Portfolio Value - 1783482.50\n", - "2015-11-13 00:00:00: Portfolio Value - 1784088.89\n", - "2015-11-16 00:00:00: Portfolio Value - 1821733.88\n", - "2015-11-17 00:00:00: Portfolio Value - 1799039.81\n", - "2015-11-18 00:00:00: Portfolio Value - 1830973.74\n", - "2015-11-19 00:00:00: Portfolio Value - 1826180.57\n", - "2015-11-20 00:00:00: Portfolio Value - 1860718.99\n", - "2015-11-23 00:00:00: Portfolio Value - 1871571.29\n", - "2015-11-24 00:00:00: Portfolio Value - 1871178.05\n", - "2015-11-25 00:00:00: Portfolio Value - 1871241.55\n", - "2015-11-27 00:00:00: Portfolio Value - 1881508.81\n", - "2015-11-30 00:00:00: Portfolio Value - 1869788.60\n", - "2015-12-01 00:00:00: Portfolio Value - 1914597.99\n", - "2015-12-02 00:00:00: Portfolio Value - 1897446.07\n", - "2015-12-03 00:00:00: Portfolio Value - 1863187.76\n", - "2015-12-04 00:00:00: Portfolio Value - 1910711.09\n", - "2015-12-07 00:00:00: Portfolio Value - 1914392.60\n", - "2015-12-08 00:00:00: Portfolio Value - 1913865.11\n", - "2015-12-09 00:00:00: Portfolio Value - 1873447.23\n", - "2015-12-10 00:00:00: Portfolio Value - 1874059.31\n", - "2015-12-11 00:00:00: Portfolio Value - 1884141.53\n", - "2015-12-14 00:00:00: Portfolio Value - 1879548.80\n", - "2015-12-15 00:00:00: Portfolio Value - 1905593.06\n", - "2015-12-16 00:00:00: Portfolio Value - 1944095.60\n", - "2015-12-17 00:00:00: Portfolio Value - 1930120.88\n", - "2015-12-18 00:00:00: Portfolio Value - 1864513.81\n", - "2015-12-21 00:00:00: Portfolio Value - 1863089.66\n", - "2015-12-22 00:00:00: Portfolio Value - 1886045.75\n", - "2015-12-23 00:00:00: Portfolio Value - 1918347.73\n", - "2015-12-24 00:00:00: Portfolio Value - 1923261.20\n", - "2015-12-28 00:00:00: Portfolio Value - 1927525.93\n", - "2015-12-29 00:00:00: Portfolio Value - 1981769.51\n", - "2015-12-30 00:00:00: Portfolio Value - 1964341.53\n", - "2015-12-31 00:00:00: Portfolio Value - 1922557.50\n", - "2016-01-04 00:00:00: Portfolio Value - 1833100.72\n", - "2016-01-05 00:00:00: Portfolio Value - 1859652.03\n", - "2016-01-06 00:00:00: Portfolio Value - 1849963.93\n", - "2016-01-07 00:00:00: Portfolio Value - 1767233.76\n", - "2016-01-08 00:00:00: Portfolio Value - 1772585.72\n", - "2016-01-11 00:00:00: Portfolio Value - 1775425.39\n", - "2016-01-12 00:00:00: Portfolio Value - 1809658.10\n", - "2016-01-13 00:00:00: Portfolio Value - 1779787.07\n", - "2016-01-14 00:00:00: Portfolio Value - 1821262.03\n", - "2016-01-15 00:00:00: Portfolio Value - 1807956.72\n", - "2016-01-19 00:00:00: Portfolio Value - 1803804.06\n", - "2016-01-20 00:00:00: Portfolio Value - 1756902.20\n", - "2016-01-21 00:00:00: Portfolio Value - 1757665.22\n", - "2016-01-22 00:00:00: Portfolio Value - 1822668.08\n", - "2016-01-25 00:00:00: Portfolio Value - 1805534.43\n", - "2016-01-26 00:00:00: Portfolio Value - 1798942.80\n", - "2016-01-27 00:00:00: Portfolio Value - 1780971.79\n", - "2016-01-28 00:00:00: Portfolio Value - 1786475.31\n", - "2016-01-29 00:00:00: Portfolio Value - 1844355.45\n", - "2016-02-01 00:00:00: Portfolio Value - 1876579.34\n", - "2016-02-02 00:00:00: Portfolio Value - 1840486.27\n", - "2016-02-03 00:00:00: Portfolio Value - 1842499.67\n", - "2016-02-04 00:00:00: Portfolio Value - 1789503.60\n", - "2016-02-05 00:00:00: Portfolio Value - 1762694.61\n", - "2016-02-08 00:00:00: Portfolio Value - 1757863.03\n", - "2016-02-09 00:00:00: Portfolio Value - 1795924.43\n", - "2016-02-10 00:00:00: Portfolio Value - 1783032.48\n", - "2016-02-11 00:00:00: Portfolio Value - 1771252.89\n", - "2016-02-12 00:00:00: Portfolio Value - 1805481.60\n", - "2016-02-16 00:00:00: Portfolio Value - 1842828.21\n", - "2016-02-17 00:00:00: Portfolio Value - 1854997.48\n", - "2016-02-18 00:00:00: Portfolio Value - 1860417.04\n", - "2016-02-19 00:00:00: Portfolio Value - 1859246.68\n", - "2016-02-22 00:00:00: Portfolio Value - 1871644.63\n", - "2016-02-23 00:00:00: Portfolio Value - 1869373.97\n", - "2016-02-24 00:00:00: Portfolio Value - 1901829.46\n", - "2016-02-25 00:00:00: Portfolio Value - 1939102.39\n", - "2016-02-26 00:00:00: Portfolio Value - 1903916.91\n", - "2016-02-29 00:00:00: Portfolio Value - 1875578.97\n", - "2016-03-01 00:00:00: Portfolio Value - 1897136.33\n", - "2016-03-02 00:00:00: Portfolio Value - 1919077.72\n", - "2016-03-03 00:00:00: Portfolio Value - 1924885.72\n", - "2016-03-04 00:00:00: Portfolio Value - 1936108.55\n", - "2016-03-07 00:00:00: Portfolio Value - 1927820.85\n", - "2016-03-08 00:00:00: Portfolio Value - 1946510.29\n", - "2016-03-09 00:00:00: Portfolio Value - 1954945.79\n", - "2016-03-10 00:00:00: Portfolio Value - 1961282.78\n", - "2016-03-11 00:00:00: Portfolio Value - 1973512.29\n", - "2016-03-14 00:00:00: Portfolio Value - 1971128.08\n", - "2016-03-15 00:00:00: Portfolio Value - 1982167.26\n", - "2016-03-16 00:00:00: Portfolio Value - 1987994.17\n", - "2016-03-17 00:00:00: Portfolio Value - 2000066.60\n", - "2016-03-18 00:00:00: Portfolio Value - 1982100.34\n", - "2016-03-21 00:00:00: Portfolio Value - 1981615.92\n", - "2016-03-22 00:00:00: Portfolio Value - 1976275.01\n", - "2016-03-23 00:00:00: Portfolio Value - 1971465.40\n", - "2016-03-24 00:00:00: Portfolio Value - 1960071.21\n", - "2016-03-28 00:00:00: Portfolio Value - 1969551.38\n", - "2016-03-29 00:00:00: Portfolio Value - 1998028.79\n", - "2016-03-30 00:00:00: Portfolio Value - 2009265.77\n", - "2016-03-31 00:00:00: Portfolio Value - 2007565.22\n", - "2016-04-01 00:00:00: Portfolio Value - 2050981.20\n", - "2016-04-04 00:00:00: Portfolio Value - 2044192.46\n", - "2016-04-05 00:00:00: Portfolio Value - 1995297.27\n", - "2016-04-06 00:00:00: Portfolio Value - 2025972.55\n", - "2016-04-07 00:00:00: Portfolio Value - 2003686.83\n", - "2016-04-08 00:00:00: Portfolio Value - 1984010.26\n", - "2016-04-11 00:00:00: Portfolio Value - 1971852.25\n", - "2016-04-12 00:00:00: Portfolio Value - 2007103.83\n", - "2016-04-13 00:00:00: Portfolio Value - 2012509.70\n", - "2016-04-14 00:00:00: Portfolio Value - 1996606.50\n", - "2016-04-15 00:00:00: Portfolio Value - 2030244.34\n", - "2016-04-18 00:00:00: Portfolio Value - 2056825.34\n", - "2016-04-19 00:00:00: Portfolio Value - 2040459.56\n", - "2016-04-20 00:00:00: Portfolio Value - 2014718.65\n", - "2016-04-21 00:00:00: Portfolio Value - 1982685.11\n", - "2016-04-22 00:00:00: Portfolio Value - 2014019.01\n", - "2016-04-25 00:00:00: Portfolio Value - 2026201.48\n", - "2016-04-26 00:00:00: Portfolio Value - 2032210.20\n", - "2016-04-27 00:00:00: Portfolio Value - 2014841.68\n", - "2016-04-28 00:00:00: Portfolio Value - 2021484.54\n", - "2016-04-29 00:00:00: Portfolio Value - 2021824.65\n", - "2016-05-02 00:00:00: Portfolio Value - 2035222.04\n", - "2016-05-03 00:00:00: Portfolio Value - 2050510.79\n", - "2016-05-04 00:00:00: Portfolio Value - 2092683.93\n", - "2016-05-05 00:00:00: Portfolio Value - 2130822.57\n", - "2016-05-06 00:00:00: Portfolio Value - 2098164.52\n", - "2016-05-09 00:00:00: Portfolio Value - 2142146.06\n", - "2016-05-10 00:00:00: Portfolio Value - 2187330.82\n", - "2016-05-11 00:00:00: Portfolio Value - 2174812.69\n", - "2016-05-12 00:00:00: Portfolio Value - 2189984.61\n", - "2016-05-13 00:00:00: Portfolio Value - 2166914.48\n", - "2016-05-16 00:00:00: Portfolio Value - 2187042.65\n", - "2016-05-17 00:00:00: Portfolio Value - 2133606.49\n", - "2016-05-18 00:00:00: Portfolio Value - 2119702.03\n", - "2016-05-19 00:00:00: Portfolio Value - 2128957.12\n", - "2016-05-20 00:00:00: Portfolio Value - 2136293.66\n", - "2016-05-23 00:00:00: Portfolio Value - 2126173.68\n", - "2016-05-24 00:00:00: Portfolio Value - 2170016.10\n", - "2016-05-25 00:00:00: Portfolio Value - 2145471.98\n", - "2016-05-26 00:00:00: Portfolio Value - 2158602.68\n", - "2016-05-27 00:00:00: Portfolio Value - 2138596.11\n", - "2016-05-31 00:00:00: Portfolio Value - 2136551.68\n", - "2016-06-01 00:00:00: Portfolio Value - 2143392.19\n", - "2016-06-02 00:00:00: Portfolio Value - 2163023.85\n", - "2016-06-03 00:00:00: Portfolio Value - 2163819.15\n", - "2016-06-06 00:00:00: Portfolio Value - 2161925.69\n", - "2016-06-07 00:00:00: Portfolio Value - 2172617.20\n", - "2016-06-08 00:00:00: Portfolio Value - 2189939.39\n", - "2016-06-09 00:00:00: Portfolio Value - 2219868.40\n", - "2016-06-10 00:00:00: Portfolio Value - 2195568.80\n", - "2016-06-13 00:00:00: Portfolio Value - 2177264.85\n", - "2016-06-14 00:00:00: Portfolio Value - 2205395.59\n", - "2016-06-15 00:00:00: Portfolio Value - 2156750.13\n", - "2016-06-16 00:00:00: Portfolio Value - 2169022.08\n", - "2016-06-17 00:00:00: Portfolio Value - 2155391.34\n", - "2016-06-20 00:00:00: Portfolio Value - 2184974.47\n", - "2016-06-21 00:00:00: Portfolio Value - 2236154.78\n", - "2016-06-22 00:00:00: Portfolio Value - 2234020.98\n", - "2016-06-23 00:00:00: Portfolio Value - 2263407.77\n", - "2016-06-24 00:00:00: Portfolio Value - 2145266.64\n", - "2016-06-27 00:00:00: Portfolio Value - 2116054.08\n", - "2016-06-28 00:00:00: Portfolio Value - 2162230.75\n", - "2016-06-29 00:00:00: Portfolio Value - 2216851.62\n", - "2016-06-30 00:00:00: Portfolio Value - 2303525.06\n", - "2016-07-01 00:00:00: Portfolio Value - 2296809.25\n", - "2016-07-05 00:00:00: Portfolio Value - 2336701.20\n", - "2016-07-06 00:00:00: Portfolio Value - 2330154.73\n", - "2016-07-07 00:00:00: Portfolio Value - 2309028.83\n", - "2016-07-08 00:00:00: Portfolio Value - 2343195.11\n", - "2016-07-11 00:00:00: Portfolio Value - 2327406.57\n", - "2016-07-12 00:00:00: Portfolio Value - 2303897.64\n", - "2016-07-13 00:00:00: Portfolio Value - 2323411.20\n", - "2016-07-14 00:00:00: Portfolio Value - 2317264.14\n", - "2016-07-15 00:00:00: Portfolio Value - 2295439.31\n", - "2016-07-18 00:00:00: Portfolio Value - 2282600.78\n", - "2016-07-19 00:00:00: Portfolio Value - 2299294.07\n", - "2016-07-20 00:00:00: Portfolio Value - 2306364.61\n", - "2016-07-21 00:00:00: Portfolio Value - 2294706.61\n", - "2016-07-22 00:00:00: Portfolio Value - 2312923.86\n", - "2016-07-25 00:00:00: Portfolio Value - 2309321.57\n", - "2016-07-26 00:00:00: Portfolio Value - 2316894.40\n", - "2016-07-27 00:00:00: Portfolio Value - 2282666.64\n", - "2016-07-28 00:00:00: Portfolio Value - 2286230.03\n", - "2016-07-29 00:00:00: Portfolio Value - 2310486.18\n", - "2016-08-01 00:00:00: Portfolio Value - 2337577.71\n", - "2016-08-02 00:00:00: Portfolio Value - 2307757.88\n", - "2016-08-03 00:00:00: Portfolio Value - 2267430.73\n", - "2016-08-04 00:00:00: Portfolio Value - 2276459.45\n", - "2016-08-05 00:00:00: Portfolio Value - 2253719.08\n", - "2016-08-08 00:00:00: Portfolio Value - 2260763.16\n", - "2016-08-09 00:00:00: Portfolio Value - 2279306.19\n", - "2016-08-10 00:00:00: Portfolio Value - 2301849.86\n", - "2016-08-11 00:00:00: Portfolio Value - 2310312.78\n", - "2016-08-12 00:00:00: Portfolio Value - 2289121.66\n", - "2016-08-15 00:00:00: Portfolio Value - 2274043.23\n", - "2016-08-16 00:00:00: Portfolio Value - 2266388.57\n", - "2016-08-17 00:00:00: Portfolio Value - 2281672.56\n", - "2016-08-18 00:00:00: Portfolio Value - 2292609.85\n", - "2016-08-19 00:00:00: Portfolio Value - 2294504.89\n", - "2016-08-22 00:00:00: Portfolio Value - 2306558.56\n", - "2016-08-23 00:00:00: Portfolio Value - 2276532.02\n", - "2016-08-24 00:00:00: Portfolio Value - 2274681.09\n", - "2016-08-25 00:00:00: Portfolio Value - 2301324.93\n", - "2016-08-26 00:00:00: Portfolio Value - 2325232.29\n", - "2016-08-29 00:00:00: Portfolio Value - 2350097.27\n", - "2016-08-30 00:00:00: Portfolio Value - 2353884.00\n", - "2016-08-31 00:00:00: Portfolio Value - 2357987.41\n", - "2016-09-01 00:00:00: Portfolio Value - 2365523.50\n", - "2016-09-02 00:00:00: Portfolio Value - 2394445.94\n", - "2016-09-06 00:00:00: Portfolio Value - 2411337.86\n", - "2016-09-07 00:00:00: Portfolio Value - 2403912.15\n", - "2016-09-08 00:00:00: Portfolio Value - 2350490.12\n", - "2016-09-09 00:00:00: Portfolio Value - 2241868.36\n", - "2016-09-12 00:00:00: Portfolio Value - 2291598.19\n", - "2016-09-13 00:00:00: Portfolio Value - 2257492.67\n", - "2016-09-14 00:00:00: Portfolio Value - 2250229.09\n", - "2016-09-15 00:00:00: Portfolio Value - 2302855.76\n", - "2016-09-16 00:00:00: Portfolio Value - 2279838.49\n", - "2016-09-19 00:00:00: Portfolio Value - 2288698.54\n", - "2016-09-20 00:00:00: Portfolio Value - 2304773.95\n", - "2016-09-21 00:00:00: Portfolio Value - 2355119.63\n", - "2016-09-22 00:00:00: Portfolio Value - 2406548.40\n", - "2016-09-23 00:00:00: Portfolio Value - 2378706.44\n", - "2016-09-26 00:00:00: Portfolio Value - 2359984.30\n", - "2016-09-27 00:00:00: Portfolio Value - 2373336.67\n", - "2016-09-28 00:00:00: Portfolio Value - 2373992.04\n", - "2016-09-29 00:00:00: Portfolio Value - 2346953.85\n", - "2016-09-30 00:00:00: Portfolio Value - 2383975.65\n", - "2016-10-03 00:00:00: Portfolio Value - 2347117.31\n", - "2016-10-04 00:00:00: Portfolio Value - 2294395.14\n", - "2016-10-05 00:00:00: Portfolio Value - 2280495.76\n", - "2016-10-06 00:00:00: Portfolio Value - 2288404.47\n", - "2016-10-07 00:00:00: Portfolio Value - 2275020.53\n", - "2016-10-10 00:00:00: Portfolio Value - 2292776.70\n", - "2016-10-11 00:00:00: Portfolio Value - 2230456.98\n", - "2016-10-12 00:00:00: Portfolio Value - 2262436.55\n", - "2016-10-13 00:00:00: Portfolio Value - 2218505.37\n", - "2016-10-14 00:00:00: Portfolio Value - 2224011.99\n", - "2016-10-17 00:00:00: Portfolio Value - 2221011.16\n", - "2016-10-18 00:00:00: Portfolio Value - 2236233.69\n", - "2016-10-19 00:00:00: Portfolio Value - 2222191.56\n", - "2016-10-20 00:00:00: Portfolio Value - 2195245.50\n", - "2016-10-21 00:00:00: Portfolio Value - 2199660.03\n", - "2016-10-24 00:00:00: Portfolio Value - 2203839.70\n", - "2016-10-25 00:00:00: Portfolio Value - 2207061.49\n", - "2016-10-26 00:00:00: Portfolio Value - 2151748.95\n", - "2016-10-27 00:00:00: Portfolio Value - 2129138.00\n", - "2016-10-28 00:00:00: Portfolio Value - 2146001.06\n", - "2016-10-31 00:00:00: Portfolio Value - 2152347.84\n", - "2016-11-01 00:00:00: Portfolio Value - 2098290.61\n", - "2016-11-02 00:00:00: Portfolio Value - 2067067.62\n", - "2016-11-03 00:00:00: Portfolio Value - 2120740.58\n", - "2016-11-04 00:00:00: Portfolio Value - 2059693.40\n", - "2016-11-07 00:00:00: Portfolio Value - 2105067.39\n", - "2016-11-08 00:00:00: Portfolio Value - 2132413.06\n", - "2016-11-09 00:00:00: Portfolio Value - 2059938.32\n", - "2016-11-10 00:00:00: Portfolio Value - 2050292.45\n", - "2016-11-11 00:00:00: Portfolio Value - 2028870.81\n", - "2016-11-14 00:00:00: Portfolio Value - 1967861.16\n", - "2016-11-15 00:00:00: Portfolio Value - 1996386.28\n", - "2016-11-16 00:00:00: Portfolio Value - 2002475.27\n", - "2016-11-17 00:00:00: Portfolio Value - 2032173.76\n", - "2016-11-18 00:00:00: Portfolio Value - 2043137.91\n", - "2016-11-21 00:00:00: Portfolio Value - 2039384.12\n", - "2016-11-22 00:00:00: Portfolio Value - 2006659.77\n", - "2016-11-23 00:00:00: Portfolio Value - 1998601.94\n", - "2016-11-25 00:00:00: Portfolio Value - 2038744.13\n", - "2016-11-28 00:00:00: Portfolio Value - 2062128.96\n", - "2016-11-29 00:00:00: Portfolio Value - 2100457.43\n", - "2016-11-30 00:00:00: Portfolio Value - 2019804.82\n", - "2016-12-01 00:00:00: Portfolio Value - 1927335.24\n", - "2016-12-02 00:00:00: Portfolio Value - 1940869.13\n", - "2016-12-05 00:00:00: Portfolio Value - 1937963.33\n", - "2016-12-06 00:00:00: Portfolio Value - 1966694.72\n", - "2016-12-07 00:00:00: Portfolio Value - 1985470.15\n", - "2016-12-08 00:00:00: Portfolio Value - 1969112.22\n", - "2016-12-09 00:00:00: Portfolio Value - 2011953.26\n", - "2016-12-12 00:00:00: Portfolio Value - 2029777.08\n", - "2016-12-13 00:00:00: Portfolio Value - 2053122.16\n", - "2016-12-14 00:00:00: Portfolio Value - 2005058.08\n", - "2016-12-15 00:00:00: Portfolio Value - 2014272.21\n", - "2016-12-16 00:00:00: Portfolio Value - 2023631.82\n", - "2016-12-19 00:00:00: Portfolio Value - 2038346.62\n", - "2016-12-20 00:00:00: Portfolio Value - 2028423.92\n", - "2016-12-21 00:00:00: Portfolio Value - 2017345.89\n", - "2016-12-22 00:00:00: Portfolio Value - 2033637.22\n", - "2016-12-23 00:00:00: Portfolio Value - 2043144.66\n", - "2016-12-27 00:00:00: Portfolio Value - 2048163.06\n", - "2016-12-28 00:00:00: Portfolio Value - 2017465.66\n", - "2016-12-29 00:00:00: Portfolio Value - 2044205.85\n", - "2016-12-30 00:00:00: Portfolio Value - 2029431.01\n", - "2017-01-03 00:00:00: Portfolio Value - 2028100.80\n", - "2017-01-04 00:00:00: Portfolio Value - 2036374.51\n", - "2017-01-05 00:00:00: Portfolio Value - 2040635.34\n", - "2017-01-06 00:00:00: Portfolio Value - 2066059.41\n", - "2017-01-09 00:00:00: Portfolio Value - 2038823.15\n", - "2017-01-10 00:00:00: Portfolio Value - 2041177.93\n", - "2017-01-11 00:00:00: Portfolio Value - 2058231.45\n", - "2017-01-12 00:00:00: Portfolio Value - 2063410.56\n", - "2017-01-13 00:00:00: Portfolio Value - 2068785.20\n", - "2017-01-17 00:00:00: Portfolio Value - 2085462.67\n", - "2017-01-18 00:00:00: Portfolio Value - 2082591.05\n", - "2017-01-19 00:00:00: Portfolio Value - 2073089.75\n", - "2017-01-20 00:00:00: Portfolio Value - 2082752.98\n", - "2017-01-23 00:00:00: Portfolio Value - 2070449.79\n", - "2017-01-24 00:00:00: Portfolio Value - 2115228.00\n", - "2017-01-25 00:00:00: Portfolio Value - 2131890.46\n", - "2017-01-26 00:00:00: Portfolio Value - 2115069.31\n", - "2017-01-27 00:00:00: Portfolio Value - 2125837.71\n", - "2017-01-30 00:00:00: Portfolio Value - 2117760.48\n", - "2017-01-31 00:00:00: Portfolio Value - 2132560.81\n", - "2017-02-01 00:00:00: Portfolio Value - 2116652.09\n", - "2017-02-02 00:00:00: Portfolio Value - 2135144.48\n", - "2017-02-03 00:00:00: Portfolio Value - 2183006.64\n", - "2017-02-06 00:00:00: Portfolio Value - 2158767.41\n", - "2017-02-07 00:00:00: Portfolio Value - 2190189.07\n", - "2017-02-08 00:00:00: Portfolio Value - 2204273.85\n", - "2017-02-09 00:00:00: Portfolio Value - 2200719.47\n", - "2017-02-10 00:00:00: Portfolio Value - 2223279.04\n", - "2017-02-13 00:00:00: Portfolio Value - 2237810.12\n", - "2017-02-14 00:00:00: Portfolio Value - 2225975.88\n", - "2017-02-15 00:00:00: Portfolio Value - 2239383.55\n", - "2017-02-16 00:00:00: Portfolio Value - 2288793.68\n", - "2017-02-17 00:00:00: Portfolio Value - 2325790.33\n", - "2017-02-21 00:00:00: Portfolio Value - 2329308.67\n", - "2017-02-22 00:00:00: Portfolio Value - 2322054.68\n", - "2017-02-23 00:00:00: Portfolio Value - 2335653.40\n", - "2017-02-24 00:00:00: Portfolio Value - 2365901.02\n", - "2017-02-27 00:00:00: Portfolio Value - 2351360.31\n", - "2017-02-28 00:00:00: Portfolio Value - 2355785.66\n", - "2017-03-01 00:00:00: Portfolio Value - 2402370.90\n", - "2017-03-02 00:00:00: Portfolio Value - 2376040.24\n", - "2017-03-03 00:00:00: Portfolio Value - 2361552.70\n", - "2017-03-06 00:00:00: Portfolio Value - 2341994.58\n", - "2017-03-07 00:00:00: Portfolio Value - 2339347.06\n", - "2017-03-08 00:00:00: Portfolio Value - 2302763.53\n", - "2017-03-09 00:00:00: Portfolio Value - 2312259.75\n", - "2017-03-10 00:00:00: Portfolio Value - 2305086.53\n", - "2017-03-13 00:00:00: Portfolio Value - 2313991.90\n", - "2017-03-14 00:00:00: Portfolio Value - 2289397.08\n", - "2017-03-15 00:00:00: Portfolio Value - 2327196.37\n", - "2017-03-16 00:00:00: Portfolio Value - 2293464.76\n", - "2017-03-17 00:00:00: Portfolio Value - 2328001.50\n", - "2017-03-20 00:00:00: Portfolio Value - 2319851.36\n", - "2017-03-21 00:00:00: Portfolio Value - 2332127.55\n", - "2017-03-22 00:00:00: Portfolio Value - 2343309.57\n", - "2017-03-23 00:00:00: Portfolio Value - 2357198.36\n", - "2017-03-24 00:00:00: Portfolio Value - 2369068.12\n", - "2017-03-27 00:00:00: Portfolio Value - 2365192.47\n", - "2017-03-28 00:00:00: Portfolio Value - 2372344.46\n", - "2017-03-29 00:00:00: Portfolio Value - 2373776.88\n", - "2017-03-30 00:00:00: Portfolio Value - 2351769.41\n", - "2017-03-31 00:00:00: Portfolio Value - 2354693.98\n", - "2017-04-03 00:00:00: Portfolio Value - 2331590.89\n", - "2017-04-04 00:00:00: Portfolio Value - 2323511.80\n", - "2017-04-05 00:00:00: Portfolio Value - 2310406.12\n", - "2017-04-06 00:00:00: Portfolio Value - 2298533.11\n", - "2017-04-07 00:00:00: Portfolio Value - 2288538.95\n", - "2017-04-10 00:00:00: Portfolio Value - 2297127.88\n", - "2017-04-11 00:00:00: Portfolio Value - 2304927.91\n", - "2017-04-12 00:00:00: Portfolio Value - 2298574.61\n", - "2017-04-13 00:00:00: Portfolio Value - 2289531.24\n", - "2017-04-17 00:00:00: Portfolio Value - 2366195.19\n", - "2017-04-18 00:00:00: Portfolio Value - 2378660.81\n", - "2017-04-19 00:00:00: Portfolio Value - 2401205.30\n", - "2017-04-20 00:00:00: Portfolio Value - 2419854.66\n", - "2017-04-21 00:00:00: Portfolio Value - 2401920.13\n", - "2017-04-24 00:00:00: Portfolio Value - 2381502.12\n", - "2017-04-25 00:00:00: Portfolio Value - 2412764.90\n", - "2017-04-26 00:00:00: Portfolio Value - 2413559.41\n", - "2017-04-27 00:00:00: Portfolio Value - 2446772.59\n", - "2017-04-28 00:00:00: Portfolio Value - 2425407.07\n", - "2017-05-01 00:00:00: Portfolio Value - 2429065.23\n", - "2017-05-02 00:00:00: Portfolio Value - 2394591.58\n", - "2017-05-03 00:00:00: Portfolio Value - 2350993.42\n", - "2017-05-04 00:00:00: Portfolio Value - 2448577.14\n", - "2017-05-05 00:00:00: Portfolio Value - 2482916.22\n", - "2017-05-08 00:00:00: Portfolio Value - 2447470.31\n", - "2017-05-09 00:00:00: Portfolio Value - 2403472.19\n", - "2017-05-10 00:00:00: Portfolio Value - 2411606.24\n", - "2017-05-11 00:00:00: Portfolio Value - 2450263.35\n", - "2017-05-12 00:00:00: Portfolio Value - 2447647.51\n", - "2017-05-15 00:00:00: Portfolio Value - 2465746.73\n", - "2017-05-16 00:00:00: Portfolio Value - 2435442.08\n", - "2017-05-17 00:00:00: Portfolio Value - 2421818.16\n", - "2017-05-18 00:00:00: Portfolio Value - 2404521.96\n", - "2017-05-19 00:00:00: Portfolio Value - 2435667.63\n", - "2017-05-22 00:00:00: Portfolio Value - 2466449.81\n", - "2017-05-23 00:00:00: Portfolio Value - 2481831.03\n", - "2017-05-24 00:00:00: Portfolio Value - 2524536.42\n", - "2017-05-25 00:00:00: Portfolio Value - 2548429.76\n", - "2017-05-26 00:00:00: Portfolio Value - 2531597.21\n", - "2017-05-30 00:00:00: Portfolio Value - 2558239.43\n", - "2017-05-31 00:00:00: Portfolio Value - 2605839.49\n", - "2017-06-01 00:00:00: Portfolio Value - 2637086.41\n", - "2017-06-02 00:00:00: Portfolio Value - 2644834.50\n", - "2017-06-05 00:00:00: Portfolio Value - 2646738.14\n", - "2017-06-06 00:00:00: Portfolio Value - 2627118.91\n", - "2017-06-07 00:00:00: Portfolio Value - 2645139.39\n", - "2017-06-08 00:00:00: Portfolio Value - 2615798.47\n", - "2017-06-09 00:00:00: Portfolio Value - 2606080.27\n", - "2017-06-12 00:00:00: Portfolio Value - 2623911.84\n", - "2017-06-13 00:00:00: Portfolio Value - 2654158.13\n", - "2017-06-14 00:00:00: Portfolio Value - 2676502.59\n", - "2017-06-15 00:00:00: Portfolio Value - 2712400.61\n", - "2017-06-16 00:00:00: Portfolio Value - 2724910.16\n", - "2017-06-19 00:00:00: Portfolio Value - 2751039.01\n", - "2017-06-20 00:00:00: Portfolio Value - 2740028.64\n", - "2017-06-21 00:00:00: Portfolio Value - 2714182.71\n", - "2017-06-22 00:00:00: Portfolio Value - 2686749.01\n", - "2017-06-23 00:00:00: Portfolio Value - 2683804.66\n", - "2017-06-26 00:00:00: Portfolio Value - 2676837.54\n", - "2017-06-27 00:00:00: Portfolio Value - 2652195.24\n", - "2017-06-28 00:00:00: Portfolio Value - 2653668.50\n", - "2017-06-29 00:00:00: Portfolio Value - 2608435.05\n", - "2017-06-30 00:00:00: Portfolio Value - 2626979.33\n", - "2017-07-03 00:00:00: Portfolio Value - 2630988.05\n", - "2017-07-05 00:00:00: Portfolio Value - 2644708.31\n", - "2017-07-06 00:00:00: Portfolio Value - 2621227.37\n", - "2017-07-07 00:00:00: Portfolio Value - 2659237.00\n", - "2017-07-10 00:00:00: Portfolio Value - 2663617.42\n", - "2017-07-11 00:00:00: Portfolio Value - 2647750.35\n", - "2017-07-12 00:00:00: Portfolio Value - 2670532.95\n", - "2017-07-13 00:00:00: Portfolio Value - 2662697.80\n", - "2017-07-14 00:00:00: Portfolio Value - 2704391.37\n", - "2017-07-17 00:00:00: Portfolio Value - 2726696.27\n", - "2017-07-18 00:00:00: Portfolio Value - 2737376.78\n", - "2017-07-19 00:00:00: Portfolio Value - 2745554.86\n", - "2017-07-20 00:00:00: Portfolio Value - 2766739.26\n", - "2017-07-21 00:00:00: Portfolio Value - 2808492.82\n", - "2017-07-24 00:00:00: Portfolio Value - 2812035.03\n", - "2017-07-25 00:00:00: Portfolio Value - 2815376.44\n", - "2017-07-26 00:00:00: Portfolio Value - 2816276.24\n", - "2017-07-27 00:00:00: Portfolio Value - 2798944.05\n", - "2017-07-28 00:00:00: Portfolio Value - 2819471.65\n", - "2017-07-31 00:00:00: Portfolio Value - 2801269.51\n", - "2017-08-01 00:00:00: Portfolio Value - 2805302.17\n", - "2017-08-02 00:00:00: Portfolio Value - 2755080.28\n", - "2017-08-03 00:00:00: Portfolio Value - 2762861.11\n", - "2017-08-04 00:00:00: Portfolio Value - 2759457.74\n", - "2017-08-07 00:00:00: Portfolio Value - 2750797.36\n", - "2017-08-08 00:00:00: Portfolio Value - 2729081.34\n", - "2017-08-09 00:00:00: Portfolio Value - 2725729.49\n", - "2017-08-10 00:00:00: Portfolio Value - 2728797.95\n", - "2017-08-11 00:00:00: Portfolio Value - 2747183.49\n", - "2017-08-14 00:00:00: Portfolio Value - 2797915.73\n", - "2017-08-15 00:00:00: Portfolio Value - 2806049.62\n", - "2017-08-16 00:00:00: Portfolio Value - 2805052.11\n", - "2017-08-17 00:00:00: Portfolio Value - 2777588.28\n", - "2017-08-18 00:00:00: Portfolio Value - 2775916.48\n", - "2017-08-21 00:00:00: Portfolio Value - 2821576.17\n", - "2017-08-22 00:00:00: Portfolio Value - 2846460.88\n", - "2017-08-23 00:00:00: Portfolio Value - 2808208.64\n", - "2017-08-24 00:00:00: Portfolio Value - 2782125.77\n", - "2017-08-25 00:00:00: Portfolio Value - 2834792.91\n", - "2017-08-28 00:00:00: Portfolio Value - 2847059.73\n", - "2017-08-29 00:00:00: Portfolio Value - 2839233.96\n", - "2017-08-30 00:00:00: Portfolio Value - 2830766.33\n", - "2017-08-31 00:00:00: Portfolio Value - 2870841.84\n", - "2017-09-01 00:00:00: Portfolio Value - 2859304.23\n", - "2017-09-05 00:00:00: Portfolio Value - 2869037.87\n", - "2017-09-06 00:00:00: Portfolio Value - 2851949.03\n", - "2017-09-07 00:00:00: Portfolio Value - 2864945.59\n", - "2017-09-08 00:00:00: Portfolio Value - 2937060.92\n", - "2017-09-11 00:00:00: Portfolio Value - 2966606.04\n", - "2017-09-12 00:00:00: Portfolio Value - 2968265.41\n", - "2017-09-13 00:00:00: Portfolio Value - 2893394.74\n", - "2017-09-14 00:00:00: Portfolio Value - 2910140.32\n", - "2017-09-15 00:00:00: Portfolio Value - 2917466.16\n", - "2017-09-18 00:00:00: Portfolio Value - 2912546.48\n", - "2017-09-19 00:00:00: Portfolio Value - 2898048.95\n", - "2017-09-20 00:00:00: Portfolio Value - 2898422.26\n", - "2017-09-21 00:00:00: Portfolio Value - 2845642.50\n", - "2017-09-22 00:00:00: Portfolio Value - 2866133.98\n", - "2017-09-25 00:00:00: Portfolio Value - 2876426.25\n", - "2017-09-26 00:00:00: Portfolio Value - 2895738.15\n", - "2017-09-27 00:00:00: Portfolio Value - 2869554.26\n", - "2017-09-28 00:00:00: Portfolio Value - 2862278.73\n", - "2017-09-29 00:00:00: Portfolio Value - 2885179.93\n", - "2017-10-02 00:00:00: Portfolio Value - 2897288.19\n", - "2017-10-03 00:00:00: Portfolio Value - 2869606.71\n", - "2017-10-04 00:00:00: Portfolio Value - 2899596.33\n", - "2017-10-05 00:00:00: Portfolio Value - 2909536.21\n", - "2017-10-06 00:00:00: Portfolio Value - 2916246.67\n", - "2017-10-09 00:00:00: Portfolio Value - 2904677.76\n", - "2017-10-10 00:00:00: Portfolio Value - 2936239.74\n", - "2017-10-11 00:00:00: Portfolio Value - 2969076.28\n", - "2017-10-12 00:00:00: Portfolio Value - 3031654.54\n", - "2017-10-13 00:00:00: Portfolio Value - 3046044.31\n", - "2017-10-16 00:00:00: Portfolio Value - 3049494.23\n", - "2017-10-17 00:00:00: Portfolio Value - 3073144.24\n", - "2017-10-18 00:00:00: Portfolio Value - 3097397.53\n", - "2017-10-19 00:00:00: Portfolio Value - 3109948.67\n", - "2017-10-20 00:00:00: Portfolio Value - 3113322.37\n", - "2017-10-23 00:00:00: Portfolio Value - 3126370.21\n", - "2017-10-24 00:00:00: Portfolio Value - 3101033.47\n", - "2017-10-25 00:00:00: Portfolio Value - 3106079.62\n", - "2017-10-26 00:00:00: Portfolio Value - 3098902.42\n", - "2017-10-27 00:00:00: Portfolio Value - 3134443.60\n", - "2017-10-30 00:00:00: Portfolio Value - 3101514.88\n", - "2017-10-31 00:00:00: Portfolio Value - 3130633.80\n", - "2017-11-01 00:00:00: Portfolio Value - 3171976.27\n", - "2017-11-02 00:00:00: Portfolio Value - 3245689.82\n", - "2017-11-03 00:00:00: Portfolio Value - 3252261.04\n", - "2017-11-06 00:00:00: Portfolio Value - 3243375.01\n", - "2017-11-07 00:00:00: Portfolio Value - 3261590.89\n", - "2017-11-08 00:00:00: Portfolio Value - 3293955.67\n", - "2017-11-09 00:00:00: Portfolio Value - 3295394.78\n", - "2017-11-10 00:00:00: Portfolio Value - 3272411.81\n", - "2017-11-13 00:00:00: Portfolio Value - 3311766.97\n", - "2017-11-14 00:00:00: Portfolio Value - 3358246.54\n", - "2017-11-15 00:00:00: Portfolio Value - 3332028.70\n", - "2017-11-16 00:00:00: Portfolio Value - 3330553.36\n", - "2017-11-17 00:00:00: Portfolio Value - 3301962.45\n", - "2017-11-20 00:00:00: Portfolio Value - 3334471.67\n", - "2017-11-21 00:00:00: Portfolio Value - 3390084.56\n", - "2017-11-22 00:00:00: Portfolio Value - 3358929.83\n", - "2017-11-24 00:00:00: Portfolio Value - 3382614.69\n", - "2017-11-27 00:00:00: Portfolio Value - 3387851.72\n", - "2017-11-28 00:00:00: Portfolio Value - 3420504.78\n", - "2017-11-29 00:00:00: Portfolio Value - 3406619.88\n", - "2017-11-30 00:00:00: Portfolio Value - 3432806.15\n", - "2017-12-01 00:00:00: Portfolio Value - 3417422.78\n", - "2017-12-04 00:00:00: Portfolio Value - 3359444.64\n", - "2017-12-05 00:00:00: Portfolio Value - 3361467.66\n", - "2017-12-06 00:00:00: Portfolio Value - 3370693.11\n", - "2017-12-07 00:00:00: Portfolio Value - 3356016.03\n", - "2017-12-08 00:00:00: Portfolio Value - 3375034.23\n", - "2017-12-11 00:00:00: Portfolio Value - 3357211.51\n", - "2017-12-12 00:00:00: Portfolio Value - 3336018.61\n", - "2017-12-13 00:00:00: Portfolio Value - 3315610.91\n", - "2017-12-14 00:00:00: Portfolio Value - 3319245.24\n", - "2017-12-15 00:00:00: Portfolio Value - 3381622.59\n", - "2017-12-18 00:00:00: Portfolio Value - 3376511.48\n", - "2017-12-19 00:00:00: Portfolio Value - 3360443.04\n", - "2017-12-20 00:00:00: Portfolio Value - 3344492.06\n", - "2017-12-21 00:00:00: Portfolio Value - 3303693.34\n", - "2017-12-22 00:00:00: Portfolio Value - 3304961.07\n", - "2017-12-26 00:00:00: Portfolio Value - 3306475.87\n", - "2017-12-27 00:00:00: Portfolio Value - 3312121.36\n", - "2017-12-28 00:00:00: Portfolio Value - 3304257.64\n", - "2017-12-29 00:00:00: Portfolio Value - 3291096.47\n", - "2018-01-02 00:00:00: Portfolio Value - 3231891.83\n", - "2018-01-03 00:00:00: Portfolio Value - 3233435.74\n", - "2018-01-04 00:00:00: Portfolio Value - 3280083.40\n", - "2018-01-05 00:00:00: Portfolio Value - 3313038.83\n", - "2018-01-08 00:00:00: Portfolio Value - 3342831.44\n", - "2018-01-09 00:00:00: Portfolio Value - 3365363.15\n", - "2018-01-10 00:00:00: Portfolio Value - 3331329.12\n", - "2018-01-11 00:00:00: Portfolio Value - 3330049.86\n", - "2018-01-12 00:00:00: Portfolio Value - 3338362.53\n", - "2018-01-16 00:00:00: Portfolio Value - 3323777.79\n", - "2018-01-17 00:00:00: Portfolio Value - 3388250.75\n", - "2018-01-18 00:00:00: Portfolio Value - 3362677.32\n", - "2018-01-19 00:00:00: Portfolio Value - 3394610.12\n", - "2018-01-22 00:00:00: Portfolio Value - 3433326.42\n", - "2018-01-23 00:00:00: Portfolio Value - 3538514.07\n", - "2018-01-24 00:00:00: Portfolio Value - 3538312.06\n", - "2018-01-25 00:00:00: Portfolio Value - 3604930.48\n", - "2018-01-26 00:00:00: Portfolio Value - 3669298.74\n", - "2018-01-29 00:00:00: Portfolio Value - 3625311.97\n", - "2018-01-30 00:00:00: Portfolio Value - 3615978.10\n", - "2018-01-31 00:00:00: Portfolio Value - 3637518.28\n", - "2018-02-01 00:00:00: Portfolio Value - 3634408.72\n", - "2018-02-02 00:00:00: Portfolio Value - 3518839.77\n", - "2018-02-05 00:00:00: Portfolio Value - 3346261.30\n", - "2018-02-06 00:00:00: Portfolio Value - 3340598.76\n", - "2018-02-07 00:00:00: Portfolio Value - 3314050.43\n", - "2018-02-08 00:00:00: Portfolio Value - 3186191.17\n", - "2018-02-09 00:00:00: Portfolio Value - 3250128.17\n", - "2018-02-12 00:00:00: Portfolio Value - 3315786.46\n", - "2018-02-13 00:00:00: Portfolio Value - 3323250.48\n", - "2018-02-14 00:00:00: Portfolio Value - 3418547.62\n", - "2018-02-15 00:00:00: Portfolio Value - 3481135.44\n", - "2018-02-16 00:00:00: Portfolio Value - 3487443.98\n", - "2018-02-20 00:00:00: Portfolio Value - 3433473.03\n", - "2018-02-21 00:00:00: Portfolio Value - 3408881.17\n", - "2018-02-22 00:00:00: Portfolio Value - 3407443.31\n", - "2018-02-23 00:00:00: Portfolio Value - 3483888.21\n", - "2018-02-26 00:00:00: Portfolio Value - 3571368.66\n", - "2018-02-27 00:00:00: Portfolio Value - 3536107.90\n", - "2018-02-28 00:00:00: Portfolio Value - 3476827.73\n", - "2018-03-01 00:00:00: Portfolio Value - 3431507.94\n", - "2018-03-02 00:00:00: Portfolio Value - 3464323.82\n", - "2018-03-05 00:00:00: Portfolio Value - 3518255.93\n", - "2018-03-06 00:00:00: Portfolio Value - 3520153.29\n", - "2018-03-07 00:00:00: Portfolio Value - 3535897.39\n", - "2018-03-08 00:00:00: Portfolio Value - 3603491.40\n", - "2018-03-09 00:00:00: Portfolio Value - 3682727.75\n", - "2018-03-12 00:00:00: Portfolio Value - 3644434.04\n", - "2018-03-13 00:00:00: Portfolio Value - 3634907.19\n", - "2018-03-14 00:00:00: Portfolio Value - 3628316.07\n", - "2018-03-15 00:00:00: Portfolio Value - 3617223.56\n", - "2018-03-16 00:00:00: Portfolio Value - 3598856.14\n", - "2018-03-19 00:00:00: Portfolio Value - 3560803.14\n", - "2018-03-20 00:00:00: Portfolio Value - 3585771.99\n", - "2018-03-21 00:00:00: Portfolio Value - 3532094.58\n", - "2018-03-22 00:00:00: Portfolio Value - 3466034.69\n", - "2018-03-23 00:00:00: Portfolio Value - 3420618.16\n", - "2018-03-26 00:00:00: Portfolio Value - 3488338.98\n", - "2018-03-27 00:00:00: Portfolio Value - 3453295.28\n", - "2018-03-28 00:00:00: Portfolio Value - 3474977.06\n", - "2018-03-29 00:00:00: Portfolio Value - 3570794.57\n", - "2018-04-02 00:00:00: Portfolio Value - 3455811.98\n", - "2018-04-03 00:00:00: Portfolio Value - 3487996.04\n", - "2018-04-04 00:00:00: Portfolio Value - 3517780.42\n", - "2018-04-05 00:00:00: Portfolio Value - 3521069.80\n", - "2018-04-06 00:00:00: Portfolio Value - 3464200.98\n", - "2018-04-09 00:00:00: Portfolio Value - 3470215.11\n", - "2018-04-10 00:00:00: Portfolio Value - 3513143.46\n", - "2018-04-11 00:00:00: Portfolio Value - 3510239.22\n", - "2018-04-12 00:00:00: Portfolio Value - 3509345.04\n", - "2018-04-13 00:00:00: Portfolio Value - 3537621.98\n", - "2018-04-16 00:00:00: Portfolio Value - 3617907.57\n", - "2018-04-17 00:00:00: Portfolio Value - 3665667.53\n", - "2018-04-18 00:00:00: Portfolio Value - 3664804.40\n", - "2018-04-19 00:00:00: Portfolio Value - 3606833.47\n", - "2018-04-20 00:00:00: Portfolio Value - 3529089.44\n", - "2018-04-23 00:00:00: Portfolio Value - 3528283.55\n", - "2018-04-24 00:00:00: Portfolio Value - 3512190.88\n", - "2018-04-25 00:00:00: Portfolio Value - 3512422.10\n", - "2018-04-26 00:00:00: Portfolio Value - 3549189.96\n", - "2018-04-27 00:00:00: Portfolio Value - 3568804.30\n", - "2018-04-30 00:00:00: Portfolio Value - 3515147.35\n", - "2018-05-01 00:00:00: Portfolio Value - 3468847.43\n", - "2018-05-02 00:00:00: Portfolio Value - 3355156.76\n", - "2018-05-03 00:00:00: Portfolio Value - 3380219.33\n", - "2018-05-04 00:00:00: Portfolio Value - 3369154.12\n", - "2018-05-07 00:00:00: Portfolio Value - 3404478.17\n", - "2018-05-08 00:00:00: Portfolio Value - 3389033.62\n", - "2018-05-09 00:00:00: Portfolio Value - 3411663.76\n", - "2018-05-10 00:00:00: Portfolio Value - 3489955.02\n", - "2018-05-11 00:00:00: Portfolio Value - 3499324.21\n", - "2018-05-14 00:00:00: Portfolio Value - 3462090.57\n", - "2018-05-15 00:00:00: Portfolio Value - 3410195.14\n", - "2018-05-16 00:00:00: Portfolio Value - 3402744.36\n", - "2018-05-17 00:00:00: Portfolio Value - 3387209.38\n", - "2018-05-18 00:00:00: Portfolio Value - 3412228.90\n", - "2018-05-21 00:00:00: Portfolio Value - 3473578.19\n", - "2018-05-22 00:00:00: Portfolio Value - 3430654.59\n", - "2018-05-23 00:00:00: Portfolio Value - 3463593.25\n", - "2018-05-24 00:00:00: Portfolio Value - 3478107.00\n", - "2018-05-25 00:00:00: Portfolio Value - 3478983.76\n", - "2018-05-29 00:00:00: Portfolio Value - 3420554.91\n", - "2018-05-30 00:00:00: Portfolio Value - 3502271.55\n", - "2018-05-31 00:00:00: Portfolio Value - 3445289.29\n", - "2018-06-01 00:00:00: Portfolio Value - 3488685.33\n", - "2018-06-04 00:00:00: Portfolio Value - 3519169.98\n", - "2018-06-05 00:00:00: Portfolio Value - 3539364.69\n", - "2018-06-06 00:00:00: Portfolio Value - 3564369.46\n", - "2018-06-07 00:00:00: Portfolio Value - 3560517.83\n", - "2018-06-08 00:00:00: Portfolio Value - 3629027.68\n", - "2018-06-11 00:00:00: Portfolio Value - 3631751.17\n", - "2018-06-12 00:00:00: Portfolio Value - 3660233.84\n", - "2018-06-13 00:00:00: Portfolio Value - 3641474.35\n", - "2018-06-14 00:00:00: Portfolio Value - 3640346.46\n", - "2018-06-15 00:00:00: Portfolio Value - 3630444.81\n", - "2018-06-18 00:00:00: Portfolio Value - 3627195.14\n", - "2018-06-19 00:00:00: Portfolio Value - 3639031.88\n", - "2018-06-20 00:00:00: Portfolio Value - 3603960.70\n", - "2018-06-21 00:00:00: Portfolio Value - 3620674.65\n", - "2018-06-22 00:00:00: Portfolio Value - 3674257.02\n", - "2018-06-25 00:00:00: Portfolio Value - 3687247.92\n", - "2018-06-26 00:00:00: Portfolio Value - 3714338.60\n", - "2018-06-27 00:00:00: Portfolio Value - 3657351.78\n", - "2018-06-28 00:00:00: Portfolio Value - 3707883.37\n", - "2018-06-29 00:00:00: Portfolio Value - 3728720.07\n", - "2018-07-02 00:00:00: Portfolio Value - 3738333.46\n", - "2018-07-03 00:00:00: Portfolio Value - 3743470.51\n", - "2018-07-05 00:00:00: Portfolio Value - 3806686.49\n", - "2018-07-06 00:00:00: Portfolio Value - 3856254.19\n", - "2018-07-09 00:00:00: Portfolio Value - 3839877.37\n", - "2018-07-10 00:00:00: Portfolio Value - 3841783.00\n", - "2018-07-11 00:00:00: Portfolio Value - 3856788.16\n", - "2018-07-12 00:00:00: Portfolio Value - 3911285.23\n", - "2018-07-13 00:00:00: Portfolio Value - 3924543.00\n", - "2018-07-16 00:00:00: Portfolio Value - 3898280.21\n", - "2018-07-17 00:00:00: Portfolio Value - 3934917.08\n", - "2018-07-18 00:00:00: Portfolio Value - 3889297.02\n", - "2018-07-19 00:00:00: Portfolio Value - 3909555.44\n", - "2018-07-20 00:00:00: Portfolio Value - 3940227.00\n", - "2018-07-23 00:00:00: Portfolio Value - 3943836.63\n", - "2018-07-24 00:00:00: Portfolio Value - 3932287.40\n", - "2018-07-25 00:00:00: Portfolio Value - 3990934.23\n", - "2018-07-26 00:00:00: Portfolio Value - 4021665.22\n", - "2018-07-27 00:00:00: Portfolio Value - 3977029.30\n", - "2018-07-30 00:00:00: Portfolio Value - 3932497.52\n", - "2018-07-31 00:00:00: Portfolio Value - 3996330.00\n", - "2018-08-01 00:00:00: Portfolio Value - 4041759.40\n", - "2018-08-02 00:00:00: Portfolio Value - 4019006.48\n", - "2018-08-03 00:00:00: Portfolio Value - 4033597.62\n", - "2018-08-06 00:00:00: Portfolio Value - 4069273.23\n", - "2018-08-07 00:00:00: Portfolio Value - 4068308.33\n", - "2018-08-08 00:00:00: Portfolio Value - 4140629.07\n", - "2018-08-09 00:00:00: Portfolio Value - 4166446.00\n", - "2018-08-10 00:00:00: Portfolio Value - 4161040.95\n", - "2018-08-13 00:00:00: Portfolio Value - 4138555.32\n", - "2018-08-14 00:00:00: Portfolio Value - 4153984.99\n", - "2018-08-15 00:00:00: Portfolio Value - 4190499.69\n", - "2018-08-16 00:00:00: Portfolio Value - 4215154.10\n", - "2018-08-17 00:00:00: Portfolio Value - 4237071.90\n", - "2018-08-20 00:00:00: Portfolio Value - 4221094.24\n", - "2018-08-21 00:00:00: Portfolio Value - 4185694.84\n", - "2018-08-22 00:00:00: Portfolio Value - 4182755.59\n", - "2018-08-23 00:00:00: Portfolio Value - 4199343.50\n", - "2018-08-24 00:00:00: Portfolio Value - 4225096.85\n", - "2018-08-27 00:00:00: Portfolio Value - 4222488.81\n", - "2018-08-28 00:00:00: Portfolio Value - 4234824.89\n", - "2018-08-29 00:00:00: Portfolio Value - 4264105.11\n", - "2018-08-30 00:00:00: Portfolio Value - 4252800.31\n", - "2018-08-31 00:00:00: Portfolio Value - 4246066.37\n", - "2018-09-04 00:00:00: Portfolio Value - 4278011.84\n", - "2018-09-05 00:00:00: Portfolio Value - 4263926.79\n", - "2018-09-06 00:00:00: Portfolio Value - 4295571.69\n", - "2018-09-07 00:00:00: Portfolio Value - 4279076.75\n", - "2018-09-10 00:00:00: Portfolio Value - 4292493.65\n", - "2018-09-11 00:00:00: Portfolio Value - 4301827.87\n", - "2018-09-12 00:00:00: Portfolio Value - 4327895.21\n", - "2018-09-13 00:00:00: Portfolio Value - 4416645.34\n", - "2018-09-14 00:00:00: Portfolio Value - 4415593.76\n", - "2018-09-17 00:00:00: Portfolio Value - 4365895.80\n", - "2018-09-18 00:00:00: Portfolio Value - 4399851.12\n", - "2018-09-19 00:00:00: Portfolio Value - 4333986.71\n", - "2018-09-20 00:00:00: Portfolio Value - 4360604.93\n", - "2018-09-21 00:00:00: Portfolio Value - 4361512.62\n", - "2018-09-24 00:00:00: Portfolio Value - 4316093.26\n", - "2018-09-25 00:00:00: Portfolio Value - 4332063.92\n", - "2018-09-26 00:00:00: Portfolio Value - 4307753.40\n", - "2018-09-27 00:00:00: Portfolio Value - 4296117.09\n", - "2018-09-28 00:00:00: Portfolio Value - 4320117.77\n", - "2018-10-01 00:00:00: Portfolio Value - 4324800.24\n", - "2018-10-02 00:00:00: Portfolio Value - 4340713.56\n", - "2018-10-03 00:00:00: Portfolio Value - 4251048.41\n", - "2018-10-04 00:00:00: Portfolio Value - 4198290.88\n", - "2018-10-05 00:00:00: Portfolio Value - 4240236.94\n", - "2018-10-08 00:00:00: Portfolio Value - 4212920.78\n", - "2018-10-09 00:00:00: Portfolio Value - 4225389.03\n", - "2018-10-10 00:00:00: Portfolio Value - 4033910.65\n", - "2018-10-11 00:00:00: Portfolio Value - 3913112.36\n", - "2018-10-12 00:00:00: Portfolio Value - 3991888.61\n", - "2018-10-15 00:00:00: Portfolio Value - 3968605.12\n", - "2018-10-16 00:00:00: Portfolio Value - 4108954.75\n", - "2018-10-17 00:00:00: Portfolio Value - 4116367.80\n", - "2018-10-18 00:00:00: Portfolio Value - 4048896.56\n", - "2018-10-19 00:00:00: Portfolio Value - 4052835.50\n", - "2018-10-22 00:00:00: Portfolio Value - 4038856.76\n", - "2018-10-23 00:00:00: Portfolio Value - 3969078.23\n", - "2018-10-24 00:00:00: Portfolio Value - 3920317.95\n", - "2018-10-25 00:00:00: Portfolio Value - 3942284.68\n", - "2018-10-26 00:00:00: Portfolio Value - 3932098.53\n", - "2018-10-29 00:00:00: Portfolio Value - 3954093.86\n", - "2018-10-30 00:00:00: Portfolio Value - 4073944.47\n", - "2018-10-31 00:00:00: Portfolio Value - 4071448.80\n", - "2018-11-01 00:00:00: Portfolio Value - 4108059.56\n", - "2018-11-02 00:00:00: Portfolio Value - 4154951.77\n", - "2018-11-05 00:00:00: Portfolio Value - 4195101.52\n", - "2018-11-06 00:00:00: Portfolio Value - 4245104.42\n", - "2018-11-07 00:00:00: Portfolio Value - 4227215.15\n", - "2018-11-08 00:00:00: Portfolio Value - 4289177.20\n", - "2018-11-09 00:00:00: Portfolio Value - 4304720.14\n", - "2018-11-12 00:00:00: Portfolio Value - 4254276.82\n", - "2018-11-13 00:00:00: Portfolio Value - 4218467.56\n", - "2018-11-14 00:00:00: Portfolio Value - 4205157.97\n", - "2018-11-15 00:00:00: Portfolio Value - 4298927.36\n", - "2018-11-16 00:00:00: Portfolio Value - 4332288.06\n", - "2018-11-19 00:00:00: Portfolio Value - 4296161.80\n", - "2018-11-20 00:00:00: Portfolio Value - 4237124.44\n", - "2018-11-21 00:00:00: Portfolio Value - 4255530.17\n", - "2018-11-23 00:00:00: Portfolio Value - 4290272.08\n", - "2018-11-26 00:00:00: Portfolio Value - 4311153.00\n", - "2018-11-27 00:00:00: Portfolio Value - 4358396.47\n", - "2018-11-28 00:00:00: Portfolio Value - 4459986.85\n", - "2018-11-29 00:00:00: Portfolio Value - 4468842.66\n", - "2018-11-30 00:00:00: Portfolio Value - 4503117.64\n", - "2018-12-03 00:00:00: Portfolio Value - 4518895.45\n", - "2018-12-04 00:00:00: Portfolio Value - 4414655.26\n", - "2018-12-06 00:00:00: Portfolio Value - 4395367.82\n", - "2018-12-07 00:00:00: Portfolio Value - 4366513.07\n", - "2018-12-10 00:00:00: Portfolio Value - 4401143.66\n", - "2018-12-11 00:00:00: Portfolio Value - 4455604.29\n", - "2018-12-12 00:00:00: Portfolio Value - 4461196.53\n", - "2018-12-13 00:00:00: Portfolio Value - 4491327.21\n", - "2018-12-14 00:00:00: Portfolio Value - 4413902.68\n", - "2018-12-17 00:00:00: Portfolio Value - 4237118.82\n", - "2018-12-18 00:00:00: Portfolio Value - 4229702.11\n", - "2018-12-19 00:00:00: Portfolio Value - 4191391.90\n", - "2018-12-20 00:00:00: Portfolio Value - 4106609.15\n", - "2018-12-21 00:00:00: Portfolio Value - 4052510.49\n", - "2018-12-24 00:00:00: Portfolio Value - 3887843.39\n", - "2018-12-26 00:00:00: Portfolio Value - 4077923.57\n", - "2018-12-27 00:00:00: Portfolio Value - 4177119.75\n", - "2018-12-28 00:00:00: Portfolio Value - 4182993.29\n", - "2018-12-31 00:00:00: Portfolio Value - 4233332.17\n", - "2019-01-02 00:00:00: Portfolio Value - 4093352.24\n", - "2019-01-03 00:00:00: Portfolio Value - 3955560.47\n", - "2019-01-04 00:00:00: Portfolio Value - 4082860.25\n", - "2019-01-07 00:00:00: Portfolio Value - 4091799.46\n", - "2019-01-08 00:00:00: Portfolio Value - 4130219.81\n", - "2019-01-09 00:00:00: Portfolio Value - 4159399.84\n", - "2019-01-10 00:00:00: Portfolio Value - 4229206.84\n", - "2019-01-11 00:00:00: Portfolio Value - 4199667.67\n", - "2019-01-14 00:00:00: Portfolio Value - 4156801.66\n", - "2019-01-15 00:00:00: Portfolio Value - 4239624.39\n", - "2019-01-16 00:00:00: Portfolio Value - 4238569.48\n", - "2019-01-17 00:00:00: Portfolio Value - 4279704.62\n", - "2019-01-18 00:00:00: Portfolio Value - 4364184.77\n", - "2019-01-22 00:00:00: Portfolio Value - 4326820.08\n", - "2019-01-23 00:00:00: Portfolio Value - 4344662.57\n", - "2019-01-24 00:00:00: Portfolio Value - 4333566.90\n", - "2019-01-25 00:00:00: Portfolio Value - 4195865.68\n", - "2019-01-28 00:00:00: Portfolio Value - 4148005.14\n", - "2019-01-29 00:00:00: Portfolio Value - 4151486.62\n", - "2019-01-30 00:00:00: Portfolio Value - 4207884.34\n", - "2019-01-31 00:00:00: Portfolio Value - 4306743.83\n", - "2019-02-01 00:00:00: Portfolio Value - 4348057.18\n", - "2019-02-04 00:00:00: Portfolio Value - 4419047.05\n", - "2019-02-05 00:00:00: Portfolio Value - 4364110.75\n", - "2019-02-06 00:00:00: Portfolio Value - 4375352.81\n", - "2019-02-07 00:00:00: Portfolio Value - 4390218.44\n", - "2019-02-08 00:00:00: Portfolio Value - 4477282.63\n", - "2019-02-11 00:00:00: Portfolio Value - 4519272.85\n", - "2019-02-12 00:00:00: Portfolio Value - 4543385.83\n", - "2019-02-13 00:00:00: Portfolio Value - 4554757.88\n", - "2019-02-14 00:00:00: Portfolio Value - 4525158.91\n", - "2019-02-15 00:00:00: Portfolio Value - 4567619.28\n", - "2019-02-19 00:00:00: Portfolio Value - 4560971.41\n", - "2019-02-20 00:00:00: Portfolio Value - 4542154.89\n", - "2019-02-21 00:00:00: Portfolio Value - 4589791.05\n", - "2019-02-22 00:00:00: Portfolio Value - 4628114.30\n", - "2019-02-25 00:00:00: Portfolio Value - 4606231.72\n", - "2019-02-26 00:00:00: Portfolio Value - 4576992.57\n", - "2019-02-27 00:00:00: Portfolio Value - 4605703.34\n", - "2019-02-28 00:00:00: Portfolio Value - 4628195.83\n", - "2019-03-01 00:00:00: Portfolio Value - 4666187.36\n", - "2019-03-04 00:00:00: Portfolio Value - 4647178.20\n", - "2019-03-05 00:00:00: Portfolio Value - 4699787.30\n", - "2019-03-06 00:00:00: Portfolio Value - 4582712.94\n", - "2019-03-07 00:00:00: Portfolio Value - 4580159.66\n", - "2019-03-08 00:00:00: Portfolio Value - 4573300.56\n", - "2019-03-11 00:00:00: Portfolio Value - 4629772.56\n", - "2019-03-12 00:00:00: Portfolio Value - 4647936.99\n", - "2019-03-13 00:00:00: Portfolio Value - 4675756.15\n", - "2019-03-14 00:00:00: Portfolio Value - 4670693.15\n", - "2019-03-15 00:00:00: Portfolio Value - 4668124.40\n", - "2019-03-18 00:00:00: Portfolio Value - 4574981.15\n", - "2019-03-19 00:00:00: Portfolio Value - 4582190.72\n", - "2019-03-20 00:00:00: Portfolio Value - 4560240.35\n", - "2019-03-21 00:00:00: Portfolio Value - 4640509.43\n", - "2019-03-22 00:00:00: Portfolio Value - 4605330.30\n", - "2019-03-25 00:00:00: Portfolio Value - 4628235.79\n", - "2019-03-26 00:00:00: Portfolio Value - 4701287.09\n", - "2019-03-27 00:00:00: Portfolio Value - 4667178.47\n", - "2019-03-28 00:00:00: Portfolio Value - 4695653.86\n", - "2019-03-29 00:00:00: Portfolio Value - 4726274.00\n", - "2019-04-01 00:00:00: Portfolio Value - 4727167.48\n", - "2019-04-02 00:00:00: Portfolio Value - 4726317.62\n", - "2019-04-03 00:00:00: Portfolio Value - 4708426.70\n", - "2019-04-04 00:00:00: Portfolio Value - 4697141.06\n", - "2019-04-05 00:00:00: Portfolio Value - 4675208.07\n", - "2019-04-08 00:00:00: Portfolio Value - 4669842.01\n", - "2019-04-09 00:00:00: Portfolio Value - 4677748.91\n", - "2019-04-10 00:00:00: Portfolio Value - 4705632.91\n", - "2019-04-11 00:00:00: Portfolio Value - 4746018.87\n", - "2019-04-12 00:00:00: Portfolio Value - 4740098.46\n", - "2019-04-15 00:00:00: Portfolio Value - 4760557.00\n", - "2019-04-16 00:00:00: Portfolio Value - 4665757.97\n", - "2019-04-17 00:00:00: Portfolio Value - 4525356.42\n", - "2019-04-18 00:00:00: Portfolio Value - 4583687.24\n", - "2019-04-22 00:00:00: Portfolio Value - 4594403.21\n", - "2019-04-23 00:00:00: Portfolio Value - 4657867.64\n", - "2019-04-24 00:00:00: Portfolio Value - 4700413.28\n", - "2019-04-25 00:00:00: Portfolio Value - 4759329.38\n", - "2019-04-26 00:00:00: Portfolio Value - 4796737.78\n", - "2019-04-29 00:00:00: Portfolio Value - 4775907.26\n", - "2019-04-30 00:00:00: Portfolio Value - 4913684.73\n", - "2019-05-01 00:00:00: Portfolio Value - 4749010.51\n", - "2019-05-02 00:00:00: Portfolio Value - 4787908.68\n", - "2019-05-03 00:00:00: Portfolio Value - 4874937.16\n", - "2019-05-06 00:00:00: Portfolio Value - 4869792.31\n", - "2019-05-07 00:00:00: Portfolio Value - 4770994.07\n", - "2019-05-08 00:00:00: Portfolio Value - 4823478.66\n", - "2019-05-09 00:00:00: Portfolio Value - 4792998.05\n", - "2019-05-10 00:00:00: Portfolio Value - 4819516.48\n", - "2019-05-13 00:00:00: Portfolio Value - 4820127.16\n", - "2019-05-14 00:00:00: Portfolio Value - 4803717.45\n", - "2019-05-15 00:00:00: Portfolio Value - 4867673.94\n", - "2019-05-16 00:00:00: Portfolio Value - 4936883.62\n", - "2019-05-17 00:00:00: Portfolio Value - 4925354.24\n", - "2019-05-20 00:00:00: Portfolio Value - 4911412.64\n", - "2019-05-21 00:00:00: Portfolio Value - 4973046.83\n", - "2019-05-22 00:00:00: Portfolio Value - 5043723.52\n", - "2019-05-23 00:00:00: Portfolio Value - 5028523.73\n", - "2019-05-24 00:00:00: Portfolio Value - 5029758.32\n", - "2019-05-28 00:00:00: Portfolio Value - 4973470.99\n", - "2019-05-29 00:00:00: Portfolio Value - 4966709.68\n", - "2019-05-30 00:00:00: Portfolio Value - 5036636.80\n", - "2019-05-31 00:00:00: Portfolio Value - 4999089.43\n", - "2019-06-03 00:00:00: Portfolio Value - 5032914.93\n", - "2019-06-04 00:00:00: Portfolio Value - 5068754.18\n", - "2019-06-05 00:00:00: Portfolio Value - 5217446.79\n", - "2019-06-06 00:00:00: Portfolio Value - 5249290.63\n", - "2019-06-07 00:00:00: Portfolio Value - 5290191.41\n", - "2019-06-10 00:00:00: Portfolio Value - 5301952.15\n", - "2019-06-11 00:00:00: Portfolio Value - 5237813.83\n", - "2019-06-12 00:00:00: Portfolio Value - 5287493.09\n", - "2019-06-13 00:00:00: Portfolio Value - 5266262.00\n", - "2019-06-14 00:00:00: Portfolio Value - 5266746.85\n", - "2019-06-17 00:00:00: Portfolio Value - 5231085.44\n", - "2019-06-18 00:00:00: Portfolio Value - 5206316.90\n", - "2019-06-19 00:00:00: Portfolio Value - 5215843.44\n", - "2019-06-20 00:00:00: Portfolio Value - 5300995.50\n", - "2019-06-21 00:00:00: Portfolio Value - 5266137.74\n", - "2019-06-24 00:00:00: Portfolio Value - 5348816.05\n", - "2019-06-25 00:00:00: Portfolio Value - 5288047.02\n", - "2019-06-26 00:00:00: Portfolio Value - 5169377.98\n", - "2019-06-27 00:00:00: Portfolio Value - 5254512.58\n", - "2019-06-28 00:00:00: Portfolio Value - 5309196.60\n", - "2019-07-01 00:00:00: Portfolio Value - 5386499.52\n", - "2019-07-02 00:00:00: Portfolio Value - 5422140.29\n", - "2019-07-03 00:00:00: Portfolio Value - 5501061.57\n", - "2019-07-05 00:00:00: Portfolio Value - 5477693.72\n", - "2019-07-08 00:00:00: Portfolio Value - 5432041.36\n", - "2019-07-09 00:00:00: Portfolio Value - 5451566.37\n", - "2019-07-10 00:00:00: Portfolio Value - 5484169.46\n", - "2019-07-11 00:00:00: Portfolio Value - 5519658.13\n", - "2019-07-12 00:00:00: Portfolio Value - 5507284.26\n", - "2019-07-15 00:00:00: Portfolio Value - 5527364.49\n", - "2019-07-16 00:00:00: Portfolio Value - 5490445.66\n", - "2019-07-17 00:00:00: Portfolio Value - 5502524.71\n", - "2019-07-18 00:00:00: Portfolio Value - 5594818.69\n", - "2019-07-19 00:00:00: Portfolio Value - 5522249.71\n", - "2019-07-22 00:00:00: Portfolio Value - 5529588.90\n", - "2019-07-23 00:00:00: Portfolio Value - 5569278.29\n", - "2019-07-24 00:00:00: Portfolio Value - 5573794.27\n", - "2019-07-25 00:00:00: Portfolio Value - 5540526.18\n", - "2019-07-26 00:00:00: Portfolio Value - 5622454.03\n", - "2019-07-29 00:00:00: Portfolio Value - 5657072.10\n", - "2019-07-30 00:00:00: Portfolio Value - 5669726.95\n", - "2019-07-31 00:00:00: Portfolio Value - 5564594.34\n", - "2019-08-01 00:00:00: Portfolio Value - 5592598.01\n", - "2019-08-02 00:00:00: Portfolio Value - 5583481.99\n", - "2019-08-05 00:00:00: Portfolio Value - 5362212.19\n", - "2019-08-06 00:00:00: Portfolio Value - 5502006.13\n", - "2019-08-07 00:00:00: Portfolio Value - 5674290.06\n", - "2019-08-08 00:00:00: Portfolio Value - 5778844.96\n", - "2019-08-09 00:00:00: Portfolio Value - 5789309.44\n", - "2019-08-12 00:00:00: Portfolio Value - 5725003.91\n", - "2019-08-13 00:00:00: Portfolio Value - 5791376.30\n", - "2019-08-14 00:00:00: Portfolio Value - 5667187.87\n", - "2019-08-15 00:00:00: Portfolio Value - 5765973.29\n", - "2019-08-16 00:00:00: Portfolio Value - 5863415.51\n", - "2019-08-19 00:00:00: Portfolio Value - 5920266.07\n", - "2019-08-20 00:00:00: Portfolio Value - 5852503.41\n", - "2019-08-21 00:00:00: Portfolio Value - 5904189.13\n", - "2019-08-22 00:00:00: Portfolio Value - 5914317.71\n", - "2019-08-23 00:00:00: Portfolio Value - 5764468.26\n", - "2019-08-26 00:00:00: Portfolio Value - 5833812.43\n", - "2019-08-27 00:00:00: Portfolio Value - 5889806.94\n", - "2019-08-28 00:00:00: Portfolio Value - 5921513.24\n", - "2019-08-29 00:00:00: Portfolio Value - 5958395.04\n", - "2019-08-30 00:00:00: Portfolio Value - 6121428.37\n", - "2019-09-03 00:00:00: Portfolio Value - 6090340.97\n", - "2019-09-04 00:00:00: Portfolio Value - 6196368.81\n", - "2019-09-05 00:00:00: Portfolio Value - 6164358.74\n", - "2019-09-06 00:00:00: Portfolio Value - 6191569.90\n", - "2019-09-09 00:00:00: Portfolio Value - 5975038.49\n", - "2019-09-10 00:00:00: Portfolio Value - 5833926.32\n", - "2019-09-11 00:00:00: Portfolio Value - 5850437.26\n", - "2019-09-12 00:00:00: Portfolio Value - 5927277.94\n", - "2019-09-13 00:00:00: Portfolio Value - 5858916.64\n", - "2019-09-16 00:00:00: Portfolio Value - 5838176.47\n", - "2019-09-17 00:00:00: Portfolio Value - 5943996.49\n", - "2019-09-18 00:00:00: Portfolio Value - 5950135.22\n", - "2019-09-19 00:00:00: Portfolio Value - 5939039.43\n", - "2019-09-20 00:00:00: Portfolio Value - 5898569.65\n", - "2019-09-23 00:00:00: Portfolio Value - 5881764.27\n", - "2019-09-24 00:00:00: Portfolio Value - 5861285.05\n", - "2019-09-25 00:00:00: Portfolio Value - 5892987.01\n", - "2019-09-26 00:00:00: Portfolio Value - 5911163.93\n", - "2019-09-27 00:00:00: Portfolio Value - 5820110.46\n", - "2019-09-30 00:00:00: Portfolio Value - 5863966.50\n", - "2019-10-01 00:00:00: Portfolio Value - 5772390.94\n", - "2019-10-02 00:00:00: Portfolio Value - 5648049.62\n", - "2019-10-03 00:00:00: Portfolio Value - 5708212.87\n", - "2019-10-04 00:00:00: Portfolio Value - 5843932.78\n", - "2019-10-07 00:00:00: Portfolio Value - 5842293.67\n", - "2019-10-08 00:00:00: Portfolio Value - 5728787.31\n", - "2019-10-09 00:00:00: Portfolio Value - 5802493.08\n", - "2019-10-10 00:00:00: Portfolio Value - 5804205.96\n", - "2019-10-11 00:00:00: Portfolio Value - 5768493.60\n", - "2019-10-14 00:00:00: Portfolio Value - 5720030.54\n", - "2019-10-15 00:00:00: Portfolio Value - 5748356.57\n", - "2019-10-16 00:00:00: Portfolio Value - 5764546.54\n", - "2019-10-17 00:00:00: Portfolio Value - 5792653.12\n", - "2019-10-18 00:00:00: Portfolio Value - 5787985.83\n", - "2019-10-21 00:00:00: Portfolio Value - 5767999.15\n", - "2019-10-22 00:00:00: Portfolio Value - 5648479.79\n", - "2019-10-23 00:00:00: Portfolio Value - 5650691.86\n", - "2019-10-24 00:00:00: Portfolio Value - 5671320.16\n", - "2019-10-25 00:00:00: Portfolio Value - 5712565.54\n", - "2019-10-28 00:00:00: Portfolio Value - 5701318.44\n", - "2019-10-29 00:00:00: Portfolio Value - 5802859.84\n", - "2019-10-30 00:00:00: Portfolio Value - 5886040.67\n", - "2019-10-31 00:00:00: Portfolio Value - 5795641.89\n", - "2019-11-01 00:00:00: Portfolio Value - 5790682.40\n", - "2019-11-04 00:00:00: Portfolio Value - 5702698.87\n", - "2019-11-05 00:00:00: Portfolio Value - 5524336.60\n", - "2019-11-06 00:00:00: Portfolio Value - 5595402.64\n", - "2019-11-07 00:00:00: Portfolio Value - 5528381.73\n", - "2019-11-08 00:00:00: Portfolio Value - 5517652.98\n", - "2019-11-11 00:00:00: Portfolio Value - 5503570.15\n", - "2019-11-12 00:00:00: Portfolio Value - 5500745.00\n", - "2019-11-13 00:00:00: Portfolio Value - 5586402.33\n", - "2019-11-14 00:00:00: Portfolio Value - 5637781.29\n", - "2019-11-15 00:00:00: Portfolio Value - 5623441.78\n", - "2019-11-18 00:00:00: Portfolio Value - 5620895.31\n", - "2019-11-19 00:00:00: Portfolio Value - 5695411.99\n", - "2019-11-20 00:00:00: Portfolio Value - 5721285.12\n", - "2019-11-21 00:00:00: Portfolio Value - 5674597.07\n", - "2019-11-22 00:00:00: Portfolio Value - 5668460.49\n", - "2019-11-25 00:00:00: Portfolio Value - 5691855.54\n", - "2019-11-26 00:00:00: Portfolio Value - 5795611.94\n", - "2019-11-27 00:00:00: Portfolio Value - 5874669.15\n", - "2019-11-29 00:00:00: Portfolio Value - 5842308.12\n", - "2019-12-02 00:00:00: Portfolio Value - 5793278.49\n", - "2019-12-03 00:00:00: Portfolio Value - 5747170.57\n", - "2019-12-04 00:00:00: Portfolio Value - 5787198.66\n", - "2019-12-05 00:00:00: Portfolio Value - 5817490.88\n", - "2019-12-06 00:00:00: Portfolio Value - 5810300.73\n", - "2019-12-09 00:00:00: Portfolio Value - 5811144.51\n", - "2019-12-10 00:00:00: Portfolio Value - 5797277.79\n", - "2019-12-11 00:00:00: Portfolio Value - 5844340.67\n", - "2019-12-12 00:00:00: Portfolio Value - 5895044.59\n", - "2019-12-13 00:00:00: Portfolio Value - 5992945.64\n", - "2019-12-16 00:00:00: Portfolio Value - 6026989.66\n", - "2019-12-17 00:00:00: Portfolio Value - 6001355.98\n", - "2019-12-18 00:00:00: Portfolio Value - 6013926.57\n", - "2019-12-19 00:00:00: Portfolio Value - 6091128.82\n", - "2019-12-20 00:00:00: Portfolio Value - 6188203.02\n", - "2019-12-23 00:00:00: Portfolio Value - 6151690.00\n", - "2019-12-24 00:00:00: Portfolio Value - 6161196.15\n", - "2019-12-26 00:00:00: Portfolio Value - 6158785.24\n", - "2019-12-27 00:00:00: Portfolio Value - 6193239.71\n", - "2019-12-30 00:00:00: Portfolio Value - 6157360.85\n", - "2019-12-31 00:00:00: Portfolio Value - 6182807.66\n", - "2020-01-02 00:00:00: Portfolio Value - 6227131.12\n", - "2020-01-03 00:00:00: Portfolio Value - 6251926.88\n", - "2020-01-06 00:00:00: Portfolio Value - 6303955.54\n", - "2020-01-07 00:00:00: Portfolio Value - 6262514.02\n", - "2020-01-08 00:00:00: Portfolio Value - 6286934.55\n", - "2020-01-09 00:00:00: Portfolio Value - 6330795.60\n", - "2020-01-10 00:00:00: Portfolio Value - 6348962.99\n", - "2020-01-13 00:00:00: Portfolio Value - 6394499.49\n", - "2020-01-14 00:00:00: Portfolio Value - 6355114.93\n", - "2020-01-15 00:00:00: Portfolio Value - 6437750.83\n", - "2020-01-16 00:00:00: Portfolio Value - 6476264.67\n", - "2020-01-17 00:00:00: Portfolio Value - 6495828.01\n", - "2020-01-21 00:00:00: Portfolio Value - 6538311.98\n", - "2020-01-22 00:00:00: Portfolio Value - 6565924.34\n", - "2020-01-23 00:00:00: Portfolio Value - 6578352.65\n", - "2020-01-24 00:00:00: Portfolio Value - 6593368.69\n", - "2020-01-27 00:00:00: Portfolio Value - 6586757.11\n", - "2020-01-28 00:00:00: Portfolio Value - 6650224.34\n", - "2020-01-29 00:00:00: Portfolio Value - 6651513.59\n", - "2020-01-30 00:00:00: Portfolio Value - 6684157.35\n", - "2020-01-31 00:00:00: Portfolio Value - 6597759.80\n", - "2020-02-03 00:00:00: Portfolio Value - 6721423.59\n", - "2020-02-04 00:00:00: Portfolio Value - 6885948.10\n", - "2020-02-05 00:00:00: Portfolio Value - 6877304.90\n", - "2020-02-06 00:00:00: Portfolio Value - 6646764.82\n", - "2020-02-07 00:00:00: Portfolio Value - 6635153.77\n", - "2020-02-10 00:00:00: Portfolio Value - 6737757.29\n", - "2020-02-11 00:00:00: Portfolio Value - 6735141.73\n", - "2020-02-12 00:00:00: Portfolio Value - 6691867.08\n", - "2020-02-13 00:00:00: Portfolio Value - 6786149.71\n", - "2020-02-14 00:00:00: Portfolio Value - 6882054.65\n", - "2020-02-18 00:00:00: Portfolio Value - 6912569.37\n", - "2020-02-19 00:00:00: Portfolio Value - 6870794.61\n", - "2020-02-20 00:00:00: Portfolio Value - 6813039.25\n", - "2020-02-21 00:00:00: Portfolio Value - 6800358.61\n", - "2020-02-24 00:00:00: Portfolio Value - 6696790.80\n", - "2020-02-25 00:00:00: Portfolio Value - 6539554.46\n", - "2020-02-26 00:00:00: Portfolio Value - 6577320.38\n", - "2020-02-27 00:00:00: Portfolio Value - 6331059.61\n", - "2020-02-28 00:00:00: Portfolio Value - 6125117.81\n", - "2020-03-02 00:00:00: Portfolio Value - 6593239.08\n", - "2020-03-03 00:00:00: Portfolio Value - 6437072.84\n", - "2020-03-04 00:00:00: Portfolio Value - 6803218.51\n", - "2020-03-05 00:00:00: Portfolio Value - 6666709.57\n", - "2020-03-06 00:00:00: Portfolio Value - 6548240.39\n", - "2020-03-09 00:00:00: Portfolio Value - 6154211.10\n", - "2020-03-10 00:00:00: Portfolio Value - 6378432.31\n", - "2020-03-11 00:00:00: Portfolio Value - 6155541.71\n", - "2020-03-12 00:00:00: Portfolio Value - 5518139.34\n", - "2020-03-13 00:00:00: Portfolio Value - 5891843.84\n", - "2020-03-16 00:00:00: Portfolio Value - 5393966.59\n", - "2020-03-17 00:00:00: Portfolio Value - 6213632.30\n", - "2020-03-18 00:00:00: Portfolio Value - 5735144.43\n", - "2020-03-19 00:00:00: Portfolio Value - 5385677.95\n", - "2020-03-20 00:00:00: Portfolio Value - 4999383.46\n", - "2020-03-23 00:00:00: Portfolio Value - 4730841.69\n", - "2020-03-24 00:00:00: Portfolio Value - 5211686.26\n", - "2020-03-25 00:00:00: Portfolio Value - 5233816.58\n", - "2020-03-26 00:00:00: Portfolio Value - 5603810.94\n", - "2020-03-27 00:00:00: Portfolio Value - 5566190.71\n", - "2020-03-30 00:00:00: Portfolio Value - 5860949.48\n", - "2020-03-31 00:00:00: Portfolio Value - 5727196.92\n", - "2020-04-01 00:00:00: Portfolio Value - 5513878.72\n", - "2020-04-02 00:00:00: Portfolio Value - 5719776.73\n", - "2020-04-03 00:00:00: Portfolio Value - 5655847.84\n", - "2020-04-06 00:00:00: Portfolio Value - 6025830.08\n", - "2020-04-07 00:00:00: Portfolio Value - 5985109.77\n", - "2020-04-08 00:00:00: Portfolio Value - 6175152.51\n", - "2020-04-09 00:00:00: Portfolio Value - 6273375.91\n", - "2020-04-13 00:00:00: Portfolio Value - 6140805.57\n", - "2020-04-14 00:00:00: Portfolio Value - 6454325.32\n", - "2020-04-15 00:00:00: Portfolio Value - 6315741.43\n", - "2020-04-16 00:00:00: Portfolio Value - 6431619.83\n", - "2020-04-17 00:00:00: Portfolio Value - 6567132.92\n", - "2020-04-20 00:00:00: Portfolio Value - 6459132.54\n", - "2020-04-21 00:00:00: Portfolio Value - 6231407.98\n", - "2020-04-22 00:00:00: Portfolio Value - 6428278.61\n", - "2020-04-23 00:00:00: Portfolio Value - 6267444.27\n", - "2020-04-24 00:00:00: Portfolio Value - 6339129.73\n", - "2020-04-27 00:00:00: Portfolio Value - 6369048.68\n", - "2020-04-28 00:00:00: Portfolio Value - 6227613.61\n", - "2020-04-29 00:00:00: Portfolio Value - 6200423.54\n", - "2020-04-30 00:00:00: Portfolio Value - 6155313.05\n", - "2020-05-01 00:00:00: Portfolio Value - 6229670.95\n", - "2020-05-04 00:00:00: Portfolio Value - 6314164.91\n", - "2020-05-05 00:00:00: Portfolio Value - 6518354.25\n", - "2020-05-06 00:00:00: Portfolio Value - 6433756.55\n", - "2020-05-07 00:00:00: Portfolio Value - 6527211.43\n", - "2020-05-08 00:00:00: Portfolio Value - 6574154.68\n", - "2020-05-11 00:00:00: Portfolio Value - 6706679.71\n", - "2020-05-12 00:00:00: Portfolio Value - 6669600.62\n", - "2020-05-13 00:00:00: Portfolio Value - 6596410.54\n", - "2020-05-14 00:00:00: Portfolio Value - 6648349.30\n", - "2020-05-15 00:00:00: Portfolio Value - 6687134.94\n", - "2020-05-18 00:00:00: Portfolio Value - 6805834.80\n", - "2020-05-19 00:00:00: Portfolio Value - 6750675.13\n", - "2020-05-20 00:00:00: Portfolio Value - 6636359.62\n", - "2020-05-21 00:00:00: Portfolio Value - 6531011.44\n", - "2020-05-22 00:00:00: Portfolio Value - 6565397.75\n", - "2020-05-26 00:00:00: Portfolio Value - 6509952.69\n", - "2020-05-27 00:00:00: Portfolio Value - 6508650.54\n", - "2020-05-28 00:00:00: Portfolio Value - 6732746.59\n", - "2020-05-29 00:00:00: Portfolio Value - 6813751.96\n", - "2020-06-01 00:00:00: Portfolio Value - 6805186.34\n", - "2020-06-02 00:00:00: Portfolio Value - 6827665.08\n", - "2020-06-03 00:00:00: Portfolio Value - 6875103.84\n", - "2020-06-04 00:00:00: Portfolio Value - 6780333.77\n", - "2020-06-05 00:00:00: Portfolio Value - 6783518.58\n", - "2020-06-08 00:00:00: Portfolio Value - 6863295.02\n", - "2020-06-09 00:00:00: Portfolio Value - 6790219.95\n", - "2020-06-10 00:00:00: Portfolio Value - 6856929.28\n", - "2020-06-11 00:00:00: Portfolio Value - 6550908.81\n", - "2020-06-12 00:00:00: Portfolio Value - 6552066.18\n", - "2020-06-15 00:00:00: Portfolio Value - 6643805.37\n", - "2020-06-16 00:00:00: Portfolio Value - 6756760.70\n", - "2020-06-17 00:00:00: Portfolio Value - 6887861.53\n", - "2020-06-18 00:00:00: Portfolio Value - 6950191.36\n", - "2020-06-19 00:00:00: Portfolio Value - 6809607.66\n", - "2020-06-22 00:00:00: Portfolio Value - 6903850.19\n", - "2020-06-23 00:00:00: Portfolio Value - 6933890.79\n", - "2020-06-24 00:00:00: Portfolio Value - 6820279.33\n", - "2020-06-25 00:00:00: Portfolio Value - 6919371.79\n", - "2020-06-26 00:00:00: Portfolio Value - 6918367.56\n", - "2020-06-29 00:00:00: Portfolio Value - 6984945.74\n", - "2020-06-30 00:00:00: Portfolio Value - 7138944.62\n", - "2020-07-01 00:00:00: Portfolio Value - 7162753.64\n", - "2020-07-02 00:00:00: Portfolio Value - 7171517.11\n", - "2020-07-06 00:00:00: Portfolio Value - 7111633.33\n", - "2020-07-07 00:00:00: Portfolio Value - 7124933.26\n", - "2020-07-08 00:00:00: Portfolio Value - 7204876.37\n", - "2020-07-09 00:00:00: Portfolio Value - 7293285.56\n", - "2020-07-10 00:00:00: Portfolio Value - 7346515.43\n", - "2020-07-13 00:00:00: Portfolio Value - 7232231.62\n", - "2020-07-14 00:00:00: Portfolio Value - 7419617.69\n", - "2020-07-15 00:00:00: Portfolio Value - 7424024.04\n", - "2020-07-16 00:00:00: Portfolio Value - 7421974.59\n", - "2020-07-17 00:00:00: Portfolio Value - 7505227.38\n", - "2020-07-20 00:00:00: Portfolio Value - 7575123.85\n", - "2020-07-21 00:00:00: Portfolio Value - 7605179.52\n", - "2020-07-22 00:00:00: Portfolio Value - 7683445.08\n", - "2020-07-23 00:00:00: Portfolio Value - 7680330.46\n", - "2020-07-24 00:00:00: Portfolio Value - 7649594.30\n", - "2020-07-27 00:00:00: Portfolio Value - 7710814.52\n", - "2020-07-28 00:00:00: Portfolio Value - 7742610.60\n", - "2020-07-29 00:00:00: Portfolio Value - 7888067.59\n", - "2020-07-30 00:00:00: Portfolio Value - 7886926.49\n", - "2020-07-31 00:00:00: Portfolio Value - 8049803.13\n", - "2020-08-03 00:00:00: Portfolio Value - 8017152.91\n", - "2020-08-04 00:00:00: Portfolio Value - 8006448.52\n", - "2020-08-05 00:00:00: Portfolio Value - 8039265.66\n", - "2020-08-06 00:00:00: Portfolio Value - 7671194.21\n", - "2020-08-07 00:00:00: Portfolio Value - 7708484.96\n", - "2020-08-10 00:00:00: Portfolio Value - 7645700.77\n", - "2020-08-11 00:00:00: Portfolio Value - 7524305.09\n", - "2020-08-12 00:00:00: Portfolio Value - 7605855.93\n", - "2020-08-13 00:00:00: Portfolio Value - 7666015.86\n", - "2020-08-14 00:00:00: Portfolio Value - 7632145.66\n", - "2020-08-17 00:00:00: Portfolio Value - 7677907.82\n", - "2020-08-18 00:00:00: Portfolio Value - 7730957.95\n", - "2020-08-19 00:00:00: Portfolio Value - 7716369.46\n", - "2020-08-20 00:00:00: Portfolio Value - 7667147.26\n", - "2020-08-21 00:00:00: Portfolio Value - 7562703.03\n", - "2020-08-24 00:00:00: Portfolio Value - 7472192.86\n", - "2020-08-25 00:00:00: Portfolio Value - 7492142.05\n", - "2020-08-26 00:00:00: Portfolio Value - 7519228.63\n", - "2020-08-27 00:00:00: Portfolio Value - 7513401.64\n", - "2020-08-28 00:00:00: Portfolio Value - 7438934.52\n", - "2020-08-31 00:00:00: Portfolio Value - 7494515.33\n", - "2020-09-01 00:00:00: Portfolio Value - 7473689.77\n", - "2020-09-02 00:00:00: Portfolio Value - 7709920.85\n", - "2020-09-03 00:00:00: Portfolio Value - 7376918.22\n", - "2020-09-04 00:00:00: Portfolio Value - 7214897.56\n", - "2020-09-08 00:00:00: Portfolio Value - 7090304.63\n", - "2020-09-09 00:00:00: Portfolio Value - 7306173.97\n", - "2020-09-10 00:00:00: Portfolio Value - 7200738.21\n", - "2020-09-11 00:00:00: Portfolio Value - 7200834.13\n", - "2020-09-14 00:00:00: Portfolio Value - 7302100.83\n", - "2020-09-15 00:00:00: Portfolio Value - 7242791.10\n", - "2020-09-16 00:00:00: Portfolio Value - 7192682.19\n", - "2020-09-17 00:00:00: Portfolio Value - 7179985.28\n", - "2020-09-18 00:00:00: Portfolio Value - 7151668.10\n", - "2020-09-21 00:00:00: Portfolio Value - 7110401.64\n", - "2020-09-22 00:00:00: Portfolio Value - 7177568.08\n", - "2020-09-23 00:00:00: Portfolio Value - 7104819.01\n", - "2020-09-24 00:00:00: Portfolio Value - 7037408.05\n", - "2020-09-25 00:00:00: Portfolio Value - 7137663.14\n", - "2020-09-28 00:00:00: Portfolio Value - 7255177.22\n", - "2020-09-29 00:00:00: Portfolio Value - 7265952.35\n", - "2020-09-30 00:00:00: Portfolio Value - 7350709.82\n", - "2020-10-01 00:00:00: Portfolio Value - 7403229.35\n", - "2020-10-02 00:00:00: Portfolio Value - 7317611.73\n", - "2020-10-05 00:00:00: Portfolio Value - 7367566.76\n", - "2020-10-06 00:00:00: Portfolio Value - 7309560.48\n", - "2020-10-07 00:00:00: Portfolio Value - 7380473.08\n", - "2020-10-08 00:00:00: Portfolio Value - 7392043.89\n", - "2020-10-09 00:00:00: Portfolio Value - 7482129.90\n", - "2020-10-12 00:00:00: Portfolio Value - 7557118.61\n", - "2020-10-13 00:00:00: Portfolio Value - 7576838.79\n", - "2020-10-14 00:00:00: Portfolio Value - 7507818.95\n", - "2020-10-15 00:00:00: Portfolio Value - 7561802.11\n", - "2020-10-16 00:00:00: Portfolio Value - 7564081.31\n", - "2020-10-19 00:00:00: Portfolio Value - 7474278.84\n", - "2020-10-20 00:00:00: Portfolio Value - 7465656.95\n", - "2020-10-21 00:00:00: Portfolio Value - 7485854.36\n", - "2020-10-22 00:00:00: Portfolio Value - 7501566.48\n", - "2020-10-23 00:00:00: Portfolio Value - 7529337.44\n", - "2020-10-26 00:00:00: Portfolio Value - 7457676.31\n", - "2020-10-27 00:00:00: Portfolio Value - 7541078.80\n", - "2020-10-28 00:00:00: Portfolio Value - 7269740.61\n", - "2020-10-29 00:00:00: Portfolio Value - 7202734.89\n", - "2020-10-30 00:00:00: Portfolio Value - 7211307.77\n", - "2020-11-02 00:00:00: Portfolio Value - 7380989.17\n", - "2020-11-03 00:00:00: Portfolio Value - 7510479.31\n", - "2020-11-04 00:00:00: Portfolio Value - 7747719.99\n", - "2020-11-05 00:00:00: Portfolio Value - 7798801.39\n", - "2020-11-06 00:00:00: Portfolio Value - 7894225.20\n", - "2020-11-09 00:00:00: Portfolio Value - 7817588.17\n", - "2020-11-10 00:00:00: Portfolio Value - 7782920.75\n", - "2020-11-11 00:00:00: Portfolio Value - 7928170.47\n", - "2020-11-12 00:00:00: Portfolio Value - 7880107.94\n", - "2020-11-13 00:00:00: Portfolio Value - 7981951.50\n", - "2020-11-16 00:00:00: Portfolio Value - 8052553.42\n", - "2020-11-17 00:00:00: Portfolio Value - 7992529.93\n", - "2020-11-18 00:00:00: Portfolio Value - 7824858.97\n", - "2020-11-19 00:00:00: Portfolio Value - 7838663.26\n", - "2020-11-20 00:00:00: Portfolio Value - 7775111.14\n", - "2020-11-23 00:00:00: Portfolio Value - 7748694.29\n", - "2020-11-24 00:00:00: Portfolio Value - 7713284.66\n", - "2020-11-25 00:00:00: Portfolio Value - 7742220.90\n", - "2020-11-27 00:00:00: Portfolio Value - 7796352.22\n", - "2020-11-30 00:00:00: Portfolio Value - 7823651.16\n", - "2020-12-01 00:00:00: Portfolio Value - 7944879.42\n", - "2020-12-02 00:00:00: Portfolio Value - 7862740.41\n", - "2020-12-03 00:00:00: Portfolio Value - 7799418.41\n", - "2020-12-04 00:00:00: Portfolio Value - 7905071.78\n", - "2020-12-07 00:00:00: Portfolio Value - 7825438.39\n", - "2020-12-08 00:00:00: Portfolio Value - 7910498.00\n", - "2020-12-09 00:00:00: Portfolio Value - 7838141.53\n", - "2020-12-10 00:00:00: Portfolio Value - 7849529.56\n", - "2020-12-11 00:00:00: Portfolio Value - 7863786.17\n", - "2020-12-14 00:00:00: Portfolio Value - 7851404.61\n", - "2020-12-15 00:00:00: Portfolio Value - 8000430.85\n", - "2020-12-16 00:00:00: Portfolio Value - 8068977.11\n", - "2020-12-17 00:00:00: Portfolio Value - 8109832.22\n", - "2020-12-18 00:00:00: Portfolio Value - 8186171.03\n", - "2020-12-21 00:00:00: Portfolio Value - 8053473.02\n", - "2020-12-22 00:00:00: Portfolio Value - 8055976.80\n", - "2020-12-23 00:00:00: Portfolio Value - 7982188.90\n", - "2020-12-24 00:00:00: Portfolio Value - 8057507.71\n", - "2020-12-28 00:00:00: Portfolio Value - 8061551.05\n", - "2020-12-29 00:00:00: Portfolio Value - 8017165.04\n", - "2020-12-30 00:00:00: Portfolio Value - 7987488.76\n", - "2020-12-31 00:00:00: Portfolio Value - 8090549.87\n", - "2021-01-04 00:00:00: Portfolio Value - 7937026.30\n", - "2021-01-05 00:00:00: Portfolio Value - 7912541.38\n", - "2021-01-06 00:00:00: Portfolio Value - 7873609.40\n", - "2021-01-07 00:00:00: Portfolio Value - 7893304.58\n", - "2021-01-08 00:00:00: Portfolio Value - 7909593.26\n", - "2021-01-11 00:00:00: Portfolio Value - 7815494.61\n", - "2021-01-12 00:00:00: Portfolio Value - 7815074.40\n", - "2021-01-13 00:00:00: Portfolio Value - 7860703.11\n", - "2021-01-14 00:00:00: Portfolio Value - 7711372.90\n", - "2021-01-15 00:00:00: Portfolio Value - 7773878.65\n", - "2021-01-19 00:00:00: Portfolio Value - 7787669.31\n", - "2021-01-20 00:00:00: Portfolio Value - 7903819.05\n", - "2021-01-21 00:00:00: Portfolio Value - 7859561.54\n", - "2021-01-22 00:00:00: Portfolio Value - 7800465.98\n", - "2021-01-25 00:00:00: Portfolio Value - 7954994.41\n", - "2021-01-26 00:00:00: Portfolio Value - 7955257.07\n", - "2021-01-27 00:00:00: Portfolio Value - 7808203.97\n", - "2021-01-28 00:00:00: Portfolio Value - 7855613.19\n", - "2021-01-29 00:00:00: Portfolio Value - 7749606.20\n", - "2021-02-01 00:00:00: Portfolio Value - 7823460.00\n", - "2021-02-02 00:00:00: Portfolio Value - 7853066.33\n", - "2021-02-03 00:00:00: Portfolio Value - 7682744.09\n", - "2021-02-04 00:00:00: Portfolio Value - 7701661.04\n", - "2021-02-05 00:00:00: Portfolio Value - 7843215.99\n", - "2021-02-08 00:00:00: Portfolio Value - 7816028.29\n", - "2021-02-09 00:00:00: Portfolio Value - 7820614.72\n", - "2021-02-10 00:00:00: Portfolio Value - 7885438.07\n", - "2021-02-11 00:00:00: Portfolio Value - 7860438.04\n", - "2021-02-12 00:00:00: Portfolio Value - 7841617.65\n", - "2021-02-16 00:00:00: Portfolio Value - 7702272.12\n", - "2021-02-17 00:00:00: Portfolio Value - 7756908.89\n", - "2021-02-18 00:00:00: Portfolio Value - 7782356.83\n", - "2021-02-19 00:00:00: Portfolio Value - 7670444.32\n", - "2021-02-22 00:00:00: Portfolio Value - 7565647.88\n", - "2021-02-23 00:00:00: Portfolio Value - 7551098.49\n", - "2021-02-24 00:00:00: Portfolio Value - 7322943.62\n", - "2021-02-25 00:00:00: Portfolio Value - 7182364.91\n", - "2021-02-26 00:00:00: Portfolio Value - 7102254.86\n", - "2021-03-01 00:00:00: Portfolio Value - 7244726.25\n", - "2021-03-02 00:00:00: Portfolio Value - 7170742.45\n", - "2021-03-03 00:00:00: Portfolio Value - 7045023.19\n", - "2021-03-04 00:00:00: Portfolio Value - 6928484.97\n", - "2021-03-05 00:00:00: Portfolio Value - 7155663.98\n", - "2021-03-08 00:00:00: Portfolio Value - 7126247.08\n", - "2021-03-09 00:00:00: Portfolio Value - 7227717.56\n", - "2021-03-10 00:00:00: Portfolio Value - 7181131.10\n", - "2021-03-11 00:00:00: Portfolio Value - 7193492.52\n", - "2021-03-12 00:00:00: Portfolio Value - 7225119.18\n", - "2021-03-15 00:00:00: Portfolio Value - 7266732.67\n", - "2021-03-16 00:00:00: Portfolio Value - 7325276.38\n", - "2021-03-17 00:00:00: Portfolio Value - 7291496.01\n", - "2021-03-18 00:00:00: Portfolio Value - 7134020.54\n", - "2021-03-19 00:00:00: Portfolio Value - 7136773.38\n", - "2021-03-22 00:00:00: Portfolio Value - 7279356.78\n", - "2021-03-23 00:00:00: Portfolio Value - 7326611.13\n", - "2021-03-24 00:00:00: Portfolio Value - 7351614.18\n", - "2021-03-25 00:00:00: Portfolio Value - 7290571.60\n", - "2021-03-26 00:00:00: Portfolio Value - 7451958.75\n", - "2021-03-29 00:00:00: Portfolio Value - 7551287.36\n", - "2021-03-30 00:00:00: Portfolio Value - 7411083.86\n", - "2021-03-31 00:00:00: Portfolio Value - 7445893.68\n", - "2021-04-01 00:00:00: Portfolio Value - 7530660.05\n", - "2021-04-05 00:00:00: Portfolio Value - 7643581.23\n", - "2021-04-06 00:00:00: Portfolio Value - 7656181.54\n", - "2021-04-07 00:00:00: Portfolio Value - 7655105.33\n", - "2021-04-08 00:00:00: Portfolio Value - 7675579.92\n", - "2021-04-09 00:00:00: Portfolio Value - 7726538.16\n", - "2021-04-12 00:00:00: Portfolio Value - 7768789.58\n", - "2021-04-13 00:00:00: Portfolio Value - 7819323.51\n", - "2021-04-14 00:00:00: Portfolio Value - 7743080.88\n", - "2021-04-15 00:00:00: Portfolio Value - 7860807.00\n", - "2021-04-16 00:00:00: Portfolio Value - 7908605.18\n", - "2021-04-19 00:00:00: Portfolio Value - 7849065.30\n", - "2021-04-20 00:00:00: Portfolio Value - 7882103.94\n", - "2021-04-21 00:00:00: Portfolio Value - 7915596.59\n", - "2021-04-22 00:00:00: Portfolio Value - 7923723.46\n", - "2021-04-23 00:00:00: Portfolio Value - 7888558.57\n", - "2021-04-26 00:00:00: Portfolio Value - 7840982.13\n", - "2021-04-27 00:00:00: Portfolio Value - 7911949.63\n", - "2021-04-28 00:00:00: Portfolio Value - 7948615.02\n", - "2021-04-29 00:00:00: Portfolio Value - 7935780.13\n", - "2021-04-30 00:00:00: Portfolio Value - 7865704.53\n", - "2021-05-03 00:00:00: Portfolio Value - 7924167.54\n", - "2021-05-04 00:00:00: Portfolio Value - 7876085.40\n", - "2021-05-05 00:00:00: Portfolio Value - 7769544.81\n", - "2021-05-06 00:00:00: Portfolio Value - 7732236.97\n", - "2021-05-07 00:00:00: Portfolio Value - 7818521.37\n", - "2021-05-10 00:00:00: Portfolio Value - 7883264.27\n", - "2021-05-11 00:00:00: Portfolio Value - 7811482.10\n", - "2021-05-12 00:00:00: Portfolio Value - 7666538.77\n", - "2021-05-13 00:00:00: Portfolio Value - 7737645.75\n", - "2021-05-14 00:00:00: Portfolio Value - 7742537.50\n", - "2021-05-17 00:00:00: Portfolio Value - 7667227.06\n", - "2021-05-18 00:00:00: Portfolio Value - 7642592.41\n", - "2021-05-19 00:00:00: Portfolio Value - 7646769.20\n", - "2021-05-20 00:00:00: Portfolio Value - 7761440.55\n", - "2021-05-21 00:00:00: Portfolio Value - 7742077.48\n", - "2021-05-24 00:00:00: Portfolio Value - 7798547.58\n", - "2021-05-25 00:00:00: Portfolio Value - 7750623.12\n", - "2021-05-26 00:00:00: Portfolio Value - 7699469.41\n", - "2021-05-27 00:00:00: Portfolio Value - 7663591.10\n", - "2021-05-28 00:00:00: Portfolio Value - 7655721.18\n", - "2021-06-01 00:00:00: Portfolio Value - 7570068.66\n", - "2021-06-02 00:00:00: Portfolio Value - 7565697.05\n", - "2021-06-03 00:00:00: Portfolio Value - 7560039.09\n", - "2021-06-04 00:00:00: Portfolio Value - 7601147.30\n", - "2021-06-07 00:00:00: Portfolio Value - 7569393.23\n", - "2021-06-08 00:00:00: Portfolio Value - 7531136.86\n", - "2021-06-09 00:00:00: Portfolio Value - 7610510.84\n", - "2021-06-10 00:00:00: Portfolio Value - 7747921.07\n", - "2021-06-11 00:00:00: Portfolio Value - 7720289.20\n", - "2021-06-14 00:00:00: Portfolio Value - 7845793.80\n", - "2021-06-15 00:00:00: Portfolio Value - 7880362.99\n", - "2021-06-16 00:00:00: Portfolio Value - 7724440.46\n", - "2021-06-17 00:00:00: Portfolio Value - 7833791.64\n", - "2021-06-18 00:00:00: Portfolio Value - 7726404.59\n", - "2021-06-21 00:00:00: Portfolio Value - 7822535.61\n", - "2021-06-22 00:00:00: Portfolio Value - 7880780.91\n", - "2021-06-23 00:00:00: Portfolio Value - 7839435.73\n", - "2021-06-24 00:00:00: Portfolio Value - 7860718.17\n", - "2021-06-25 00:00:00: Portfolio Value - 7923593.95\n", - "2021-06-28 00:00:00: Portfolio Value - 7951573.36\n", - "2021-06-29 00:00:00: Portfolio Value - 7971054.24\n", - "2021-06-30 00:00:00: Portfolio Value - 7905955.34\n", - "2021-07-01 00:00:00: Portfolio Value - 7956160.98\n", - "2021-07-02 00:00:00: Portfolio Value - 8005367.74\n", - "2021-07-06 00:00:00: Portfolio Value - 8023705.31\n", - "2021-07-07 00:00:00: Portfolio Value - 8160095.76\n", - "2021-07-08 00:00:00: Portfolio Value - 8083441.81\n", - "2021-07-09 00:00:00: Portfolio Value - 8076638.54\n", - "2021-07-12 00:00:00: Portfolio Value - 8037961.51\n", - "2021-07-13 00:00:00: Portfolio Value - 8023307.26\n", - "2021-07-14 00:00:00: Portfolio Value - 8008937.61\n", - "2021-07-15 00:00:00: Portfolio Value - 8050310.78\n", - "2021-07-16 00:00:00: Portfolio Value - 8213647.00\n", - "2021-07-19 00:00:00: Portfolio Value - 8092470.72\n", - "2021-07-20 00:00:00: Portfolio Value - 8112452.54\n", - "2021-07-21 00:00:00: Portfolio Value - 8123249.80\n", - "2021-07-22 00:00:00: Portfolio Value - 8201873.32\n", - "2021-07-23 00:00:00: Portfolio Value - 8328067.15\n", - "2021-07-26 00:00:00: Portfolio Value - 8120996.06\n", - "2021-07-27 00:00:00: Portfolio Value - 8191221.71\n", - "2021-07-28 00:00:00: Portfolio Value - 8130375.39\n", - "2021-07-29 00:00:00: Portfolio Value - 8205941.26\n", - "2021-07-30 00:00:00: Portfolio Value - 8212888.36\n", - "2021-08-02 00:00:00: Portfolio Value - 8198461.11\n", - "2021-08-03 00:00:00: Portfolio Value - 8041618.76\n", - "2021-08-04 00:00:00: Portfolio Value - 7969804.66\n", - "2021-08-05 00:00:00: Portfolio Value - 7875545.21\n", - "2021-08-06 00:00:00: Portfolio Value - 7841472.02\n", - "2021-08-09 00:00:00: Portfolio Value - 7836101.02\n", - "2021-08-10 00:00:00: Portfolio Value - 7761349.11\n", - "2021-08-11 00:00:00: Portfolio Value - 7813889.20\n", - "2021-08-12 00:00:00: Portfolio Value - 7828699.61\n", - "2021-08-13 00:00:00: Portfolio Value - 7824384.35\n", - "2021-08-16 00:00:00: Portfolio Value - 7949918.50\n", - "2021-08-17 00:00:00: Portfolio Value - 7993732.26\n", - "2021-08-18 00:00:00: Portfolio Value - 7897557.75\n", - "2021-08-19 00:00:00: Portfolio Value - 8013853.68\n", - "2021-08-20 00:00:00: Portfolio Value - 8056838.52\n", - "2021-08-23 00:00:00: Portfolio Value - 8031815.13\n", - "2021-08-24 00:00:00: Portfolio Value - 7950608.74\n", - "2021-08-25 00:00:00: Portfolio Value - 7905183.10\n", - "2021-08-26 00:00:00: Portfolio Value - 7899040.39\n", - "2021-08-27 00:00:00: Portfolio Value - 7973225.91\n", - "2021-08-30 00:00:00: Portfolio Value - 8014914.33\n", - "2021-08-31 00:00:00: Portfolio Value - 8065926.01\n", - "2021-09-01 00:00:00: Portfolio Value - 8131538.44\n", - "2021-09-02 00:00:00: Portfolio Value - 8323655.90\n", - "2021-09-03 00:00:00: Portfolio Value - 8350283.26\n", - "2021-09-07 00:00:00: Portfolio Value - 8356793.33\n", - "2021-09-08 00:00:00: Portfolio Value - 8497210.92\n", - "2021-09-09 00:00:00: Portfolio Value - 8498364.46\n", - "2021-09-10 00:00:00: Portfolio Value - 8530031.29\n", - "2021-09-13 00:00:00: Portfolio Value - 8490866.64\n", - "2021-09-14 00:00:00: Portfolio Value - 8481409.89\n", - "2021-09-15 00:00:00: Portfolio Value - 8489844.66\n", - "2021-09-16 00:00:00: Portfolio Value - 8407319.38\n", - "2021-09-17 00:00:00: Portfolio Value - 8344521.58\n", - "2021-09-20 00:00:00: Portfolio Value - 8305948.68\n", - "2021-09-21 00:00:00: Portfolio Value - 8359539.71\n", - "2021-09-22 00:00:00: Portfolio Value - 8382486.19\n", - "2021-09-23 00:00:00: Portfolio Value - 8353449.94\n", - "2021-09-24 00:00:00: Portfolio Value - 8390008.03\n", - "2021-09-27 00:00:00: Portfolio Value - 8259581.61\n", - "2021-09-28 00:00:00: Portfolio Value - 8123702.39\n", - "2021-09-29 00:00:00: Portfolio Value - 8197483.30\n", - "2021-09-30 00:00:00: Portfolio Value - 8161660.83\n", - "2021-10-01 00:00:00: Portfolio Value - 8224090.57\n", - "2021-10-04 00:00:00: Portfolio Value - 8077591.57\n", - "2021-10-05 00:00:00: Portfolio Value - 8154088.54\n", - "2021-10-06 00:00:00: Portfolio Value - 8248024.45\n", - "2021-10-07 00:00:00: Portfolio Value - 8242706.04\n", - "2021-10-08 00:00:00: Portfolio Value - 8222832.97\n", - "2021-10-11 00:00:00: Portfolio Value - 8155507.60\n", - "2021-10-12 00:00:00: Portfolio Value - 8204437.24\n", - "2021-10-13 00:00:00: Portfolio Value - 8238897.71\n", - "2021-10-14 00:00:00: Portfolio Value - 8345599.23\n", - "2021-10-15 00:00:00: Portfolio Value - 8317735.05\n", - "2021-10-18 00:00:00: Portfolio Value - 8243658.74\n", - "2021-10-19 00:00:00: Portfolio Value - 8406918.50\n", - "2021-10-20 00:00:00: Portfolio Value - 8442276.30\n", - "2021-10-21 00:00:00: Portfolio Value - 8606174.88\n", - "2021-10-22 00:00:00: Portfolio Value - 8637794.71\n", - "2021-10-25 00:00:00: Portfolio Value - 8557557.85\n", - "2021-10-26 00:00:00: Portfolio Value - 8526545.46\n", - "2021-10-27 00:00:00: Portfolio Value - 8420055.92\n", - "2021-10-28 00:00:00: Portfolio Value - 8449611.84\n", - "2021-10-29 00:00:00: Portfolio Value - 8419366.64\n", - "2021-11-01 00:00:00: Portfolio Value - 8409227.44\n", - "2021-11-02 00:00:00: Portfolio Value - 8359528.22\n", - "2021-11-03 00:00:00: Portfolio Value - 8422491.90\n", - "2021-11-04 00:00:00: Portfolio Value - 8384661.73\n", - "2021-11-05 00:00:00: Portfolio Value - 8350991.58\n", - "2021-11-08 00:00:00: Portfolio Value - 8355852.90\n", - "2021-11-09 00:00:00: Portfolio Value - 8358853.88\n", - "2021-11-10 00:00:00: Portfolio Value - 8340795.90\n", - "2021-11-11 00:00:00: Portfolio Value - 8217916.06\n", - "2021-11-12 00:00:00: Portfolio Value - 8260860.46\n", - "2021-11-15 00:00:00: Portfolio Value - 8363326.98\n", - "2021-11-16 00:00:00: Portfolio Value - 8412717.82\n", - "2021-11-17 00:00:00: Portfolio Value - 8469035.91\n", - "2021-11-18 00:00:00: Portfolio Value - 8369583.96\n", - "2021-11-19 00:00:00: Portfolio Value - 8429971.74\n", - "2021-11-22 00:00:00: Portfolio Value - 8363930.35\n", - "2021-11-23 00:00:00: Portfolio Value - 8347558.40\n", - "2021-11-24 00:00:00: Portfolio Value - 8369118.11\n", - "2021-11-26 00:00:00: Portfolio Value - 8279507.15\n", - "2021-11-29 00:00:00: Portfolio Value - 8342315.20\n", - "2021-11-30 00:00:00: Portfolio Value - 8132853.05\n", - "2021-12-01 00:00:00: Portfolio Value - 8163302.95\n", - "2021-12-02 00:00:00: Portfolio Value - 8292036.75\n", - "2021-12-03 00:00:00: Portfolio Value - 8275619.53\n", - "2021-12-06 00:00:00: Portfolio Value - 8385434.63\n", - "2021-12-07 00:00:00: Portfolio Value - 8436853.37\n", - "2021-12-08 00:00:00: Portfolio Value - 8514834.45\n", - "2021-12-09 00:00:00: Portfolio Value - 8404485.43\n", - "2021-12-10 00:00:00: Portfolio Value - 8438912.14\n", - "2021-12-13 00:00:00: Portfolio Value - 8566023.15\n", - "2021-12-14 00:00:00: Portfolio Value - 8391635.80\n", - "2021-12-15 00:00:00: Portfolio Value - 8510205.87\n", - "2021-12-16 00:00:00: Portfolio Value - 8550597.28\n", - "2021-12-17 00:00:00: Portfolio Value - 8423502.82\n", - "2021-12-20 00:00:00: Portfolio Value - 8402192.92\n", - "2021-12-21 00:00:00: Portfolio Value - 8458274.88\n", - "2021-12-22 00:00:00: Portfolio Value - 8456803.59\n", - "2021-12-23 00:00:00: Portfolio Value - 8461947.60\n", - "2021-12-27 00:00:00: Portfolio Value - 8557018.46\n", - "2021-12-28 00:00:00: Portfolio Value - 8562300.48\n", - "2021-12-29 00:00:00: Portfolio Value - 8565798.41\n", - "2021-12-30 00:00:00: Portfolio Value - 8583903.01\n", - "2021-12-31 00:00:00: Portfolio Value - 8587703.67\n", - "2022-01-03 00:00:00: Portfolio Value - 8466441.56\n", - "2022-01-04 00:00:00: Portfolio Value - 8409368.33\n", - "2022-01-05 00:00:00: Portfolio Value - 8242658.24\n", - "2022-01-06 00:00:00: Portfolio Value - 8198826.04\n", - "2022-01-07 00:00:00: Portfolio Value - 8143115.50\n", - "2022-01-10 00:00:00: Portfolio Value - 8192260.17\n", - "2022-01-11 00:00:00: Portfolio Value - 8225556.38\n", - "2022-01-12 00:00:00: Portfolio Value - 8279227.03\n", - "2022-01-13 00:00:00: Portfolio Value - 8308005.27\n", - "2022-01-14 00:00:00: Portfolio Value - 8257547.83\n", - "2022-01-18 00:00:00: Portfolio Value - 8094016.78\n", - "2022-01-19 00:00:00: Portfolio Value - 8147267.02\n", - "2022-01-20 00:00:00: Portfolio Value - 8130242.76\n", - "2022-01-21 00:00:00: Portfolio Value - 8132544.81\n", - "2022-01-24 00:00:00: Portfolio Value - 8162633.91\n", - "2022-01-25 00:00:00: Portfolio Value - 7976158.37\n", - "2022-01-26 00:00:00: Portfolio Value - 7834166.43\n", - "2022-01-27 00:00:00: Portfolio Value - 7694562.22\n", - "2022-01-28 00:00:00: Portfolio Value - 7834510.74\n", - "2022-01-31 00:00:00: Portfolio Value - 7993857.93\n", - "2022-02-01 00:00:00: Portfolio Value - 7952927.99\n", - "2022-02-02 00:00:00: Portfolio Value - 8104750.50\n", - "2022-02-03 00:00:00: Portfolio Value - 8094265.57\n", - "2022-02-04 00:00:00: Portfolio Value - 7972465.09\n", - "2022-02-07 00:00:00: Portfolio Value - 7954022.84\n", - "2022-02-08 00:00:00: Portfolio Value - 7909381.60\n", - "2022-02-09 00:00:00: Portfolio Value - 8014664.82\n", - "2022-02-10 00:00:00: Portfolio Value - 7830098.52\n", - "2022-02-11 00:00:00: Portfolio Value - 7785437.99\n", - "2022-02-14 00:00:00: Portfolio Value - 7666910.42\n", - "2022-02-15 00:00:00: Portfolio Value - 7705537.90\n", - "2022-02-16 00:00:00: Portfolio Value - 7770418.76\n", - "2022-02-17 00:00:00: Portfolio Value - 7713249.26\n", - "2022-02-18 00:00:00: Portfolio Value - 7726990.06\n", - "2022-02-22 00:00:00: Portfolio Value - 7679006.40\n", - "2022-02-23 00:00:00: Portfolio Value - 7582976.65\n", - "2022-02-24 00:00:00: Portfolio Value - 7685716.51\n", - "2022-02-25 00:00:00: Portfolio Value - 7868051.19\n", - "2022-02-28 00:00:00: Portfolio Value - 7857042.93\n", - "2022-03-01 00:00:00: Portfolio Value - 7891847.49\n", - "2022-03-02 00:00:00: Portfolio Value - 7896653.80\n", - "2022-03-03 00:00:00: Portfolio Value - 7918937.10\n", - "2022-03-04 00:00:00: Portfolio Value - 8015791.36\n", - "2022-03-07 00:00:00: Portfolio Value - 7934151.30\n", - "2022-03-08 00:00:00: Portfolio Value - 7615470.56\n", - "2022-03-09 00:00:00: Portfolio Value - 7802746.14\n", - "2022-03-10 00:00:00: Portfolio Value - 7644704.83\n", - "2022-03-11 00:00:00: Portfolio Value - 7491007.36\n", - "2022-03-14 00:00:00: Portfolio Value - 7543608.31\n", - "2022-03-15 00:00:00: Portfolio Value - 7761038.52\n", - "2022-03-16 00:00:00: Portfolio Value - 7866445.01\n", - "2022-03-17 00:00:00: Portfolio Value - 8013392.56\n", - "2022-03-18 00:00:00: Portfolio Value - 8139099.30\n", - "2022-03-21 00:00:00: Portfolio Value - 8125454.85\n", - "2022-03-22 00:00:00: Portfolio Value - 8154573.91\n", - "2022-03-23 00:00:00: Portfolio Value - 7940612.19\n", - "2022-03-24 00:00:00: Portfolio Value - 8051645.28\n", - "2022-03-25 00:00:00: Portfolio Value - 8123451.83\n", - "2022-03-28 00:00:00: Portfolio Value - 8285715.20\n", - "2022-03-29 00:00:00: Portfolio Value - 8403539.59\n", - "2022-03-30 00:00:00: Portfolio Value - 8442035.34\n", - "2022-03-31 00:00:00: Portfolio Value - 8337083.00\n", - "2022-04-01 00:00:00: Portfolio Value - 8454988.91\n", - "2022-04-04 00:00:00: Portfolio Value - 8440877.42\n", - "2022-04-05 00:00:00: Portfolio Value - 8490917.23\n", - "2022-04-06 00:00:00: Portfolio Value - 8620347.62\n", - "2022-04-07 00:00:00: Portfolio Value - 8695703.83\n", - "2022-04-08 00:00:00: Portfolio Value - 8665510.38\n", - "2022-04-11 00:00:00: Portfolio Value - 8503892.91\n", - "2022-04-12 00:00:00: Portfolio Value - 8365149.36\n", - "2022-04-13 00:00:00: Portfolio Value - 8348116.45\n", - "2022-04-14 00:00:00: Portfolio Value - 8300279.33\n", - "2022-04-18 00:00:00: Portfolio Value - 8117910.45\n", - "2022-04-19 00:00:00: Portfolio Value - 8242125.53\n", - "2022-04-20 00:00:00: Portfolio Value - 8342382.91\n", - "2022-04-21 00:00:00: Portfolio Value - 8275067.29\n", - "2022-04-22 00:00:00: Portfolio Value - 8083029.80\n", - "2022-04-25 00:00:00: Portfolio Value - 8174827.50\n", - "2022-04-26 00:00:00: Portfolio Value - 7948107.83\n", - "2022-04-27 00:00:00: Portfolio Value - 7932957.82\n", - "2022-04-28 00:00:00: Portfolio Value - 7911880.23\n", - "2022-04-29 00:00:00: Portfolio Value - 7500951.75\n", - "2022-05-02 00:00:00: Portfolio Value - 7405147.89\n", - "2022-05-03 00:00:00: Portfolio Value - 7389838.01\n", - "2022-05-04 00:00:00: Portfolio Value - 7551049.16\n", - "2022-05-05 00:00:00: Portfolio Value - 7468731.89\n", - "2022-05-06 00:00:00: Portfolio Value - 7462230.01\n", - "2022-05-09 00:00:00: Portfolio Value - 7276270.97\n", - "2022-05-10 00:00:00: Portfolio Value - 7267476.09\n", - "2022-05-11 00:00:00: Portfolio Value - 7182056.13\n", - "2022-05-12 00:00:00: Portfolio Value - 7220903.13\n", - "2022-05-13 00:00:00: Portfolio Value - 7337774.81\n", - "2022-05-16 00:00:00: Portfolio Value - 7341028.56\n", - "2022-05-17 00:00:00: Portfolio Value - 7356100.21\n", - "2022-05-18 00:00:00: Portfolio Value - 7052729.67\n", - "2022-05-19 00:00:00: Portfolio Value - 7030726.91\n", - "2022-05-20 00:00:00: Portfolio Value - 7067193.48\n", - "2022-05-23 00:00:00: Portfolio Value - 7160977.15\n", - "2022-05-24 00:00:00: Portfolio Value - 7176498.68\n", - "2022-05-25 00:00:00: Portfolio Value - 7096406.59\n", - "2022-05-26 00:00:00: Portfolio Value - 7245992.05\n", - "2022-05-27 00:00:00: Portfolio Value - 7392824.75\n", - "2022-05-31 00:00:00: Portfolio Value - 7254028.38\n", - "2022-06-01 00:00:00: Portfolio Value - 7157097.21\n", - "2022-06-02 00:00:00: Portfolio Value - 7359463.09\n", - "2022-06-03 00:00:00: Portfolio Value - 7256680.06\n", - "2022-06-06 00:00:00: Portfolio Value - 7299897.80\n", - "2022-06-07 00:00:00: Portfolio Value - 7331725.19\n", - "2022-06-08 00:00:00: Portfolio Value - 7209726.84\n", - "2022-06-09 00:00:00: Portfolio Value - 7024022.43\n", - "2022-06-10 00:00:00: Portfolio Value - 6983401.09\n", - "2022-06-13 00:00:00: Portfolio Value - 6805496.56\n", - "2022-06-14 00:00:00: Portfolio Value - 6683794.71\n", - "2022-06-15 00:00:00: Portfolio Value - 6675664.97\n", - "2022-06-16 00:00:00: Portfolio Value - 6556621.28\n", - "2022-06-17 00:00:00: Portfolio Value - 6556898.05\n", - "2022-06-21 00:00:00: Portfolio Value - 6745843.27\n", - "2022-06-22 00:00:00: Portfolio Value - 6877482.58\n", - "2022-06-23 00:00:00: Portfolio Value - 7131843.31\n", - "2022-06-24 00:00:00: Portfolio Value - 7326663.73\n", - "2022-06-27 00:00:00: Portfolio Value - 7339374.05\n", - "2022-06-28 00:00:00: Portfolio Value - 7171262.13\n", - "2022-06-29 00:00:00: Portfolio Value - 7263670.74\n", - "2022-06-30 00:00:00: Portfolio Value - 7273105.35\n", - "2022-07-01 00:00:00: Portfolio Value - 7453892.77\n", - "2022-07-05 00:00:00: Portfolio Value - 7448776.25\n", - "2022-07-06 00:00:00: Portfolio Value - 7521859.89\n", - "2022-07-07 00:00:00: Portfolio Value - 7502973.08\n", - "2022-07-08 00:00:00: Portfolio Value - 7451898.00\n", - "2022-07-11 00:00:00: Portfolio Value - 7408347.24\n", - "2022-07-12 00:00:00: Portfolio Value - 7298839.01\n", - "2022-07-13 00:00:00: Portfolio Value - 7296334.70\n", - "2022-07-14 00:00:00: Portfolio Value - 7296686.34\n", - "2022-07-15 00:00:00: Portfolio Value - 7370191.75\n", - "2022-07-18 00:00:00: Portfolio Value - 7145945.83\n", - "2022-07-19 00:00:00: Portfolio Value - 7350423.97\n", - "2022-07-20 00:00:00: Portfolio Value - 7347003.80\n", - "2022-07-21 00:00:00: Portfolio Value - 7476125.52\n", - "2022-07-22 00:00:00: Portfolio Value - 7503349.16\n", - "2022-07-25 00:00:00: Portfolio Value - 7536325.13\n", - "2022-07-26 00:00:00: Portfolio Value - 7582403.34\n", - "2022-07-27 00:00:00: Portfolio Value - 7616698.94\n", - "2022-07-28 00:00:00: Portfolio Value - 7740845.24\n", - "2022-07-29 00:00:00: Portfolio Value - 7734617.59\n", - "2022-08-01 00:00:00: Portfolio Value - 7664261.68\n", - "2022-08-02 00:00:00: Portfolio Value - 7658606.00\n", - "2022-08-03 00:00:00: Portfolio Value - 7724135.19\n", - "2022-08-04 00:00:00: Portfolio Value - 7751159.70\n", - "2022-08-05 00:00:00: Portfolio Value - 7781694.72\n", - "2022-08-08 00:00:00: Portfolio Value - 7808200.15\n", - "2022-08-09 00:00:00: Portfolio Value - 7803676.55\n", - "2022-08-10 00:00:00: Portfolio Value - 7932501.45\n", - "2022-08-11 00:00:00: Portfolio Value - 7879616.25\n", - "2022-08-12 00:00:00: Portfolio Value - 8014867.40\n", - "2022-08-15 00:00:00: Portfolio Value - 8071864.56\n", - "2022-08-16 00:00:00: Portfolio Value - 8062645.50\n", - "2022-08-17 00:00:00: Portfolio Value - 8035135.89\n", - "2022-08-18 00:00:00: Portfolio Value - 8042013.76\n", - "2022-08-19 00:00:00: Portfolio Value - 7988288.51\n", - "2022-08-22 00:00:00: Portfolio Value - 7860955.80\n", - "2022-08-23 00:00:00: Portfolio Value - 7694724.89\n", - "2022-08-24 00:00:00: Portfolio Value - 7687709.62\n", - "2022-08-25 00:00:00: Portfolio Value - 7760021.48\n", - "2022-08-26 00:00:00: Portfolio Value - 7524214.56\n", - "2022-08-29 00:00:00: Portfolio Value - 7494133.41\n", - "2022-08-30 00:00:00: Portfolio Value - 7434942.62\n", - "2022-08-31 00:00:00: Portfolio Value - 7395114.30\n", - "2022-09-01 00:00:00: Portfolio Value - 7456689.81\n", - "2022-09-02 00:00:00: Portfolio Value - 7329798.76\n", - "2022-09-06 00:00:00: Portfolio Value - 7345621.89\n", - "2022-09-07 00:00:00: Portfolio Value - 7638551.28\n", - "2022-09-08 00:00:00: Portfolio Value - 7640325.02\n", - "2022-09-09 00:00:00: Portfolio Value - 7735204.15\n", - "2022-09-12 00:00:00: Portfolio Value - 7779531.92\n", - "2022-09-13 00:00:00: Portfolio Value - 7528550.37\n", - "2022-09-14 00:00:00: Portfolio Value - 7552041.04\n", - "2022-09-15 00:00:00: Portfolio Value - 7422597.00\n", - "2022-09-16 00:00:00: Portfolio Value - 7375187.92\n", - "2022-09-19 00:00:00: Portfolio Value - 7388507.13\n", - "2022-09-20 00:00:00: Portfolio Value - 7265011.22\n", - "2022-09-21 00:00:00: Portfolio Value - 7125964.07\n", - "2022-09-22 00:00:00: Portfolio Value - 7039873.09\n", - "2022-09-23 00:00:00: Portfolio Value - 7020471.96\n", - "2022-09-26 00:00:00: Portfolio Value - 6980205.77\n", - "2022-09-27 00:00:00: Portfolio Value - 6863674.77\n", - "2022-09-28 00:00:00: Portfolio Value - 6969255.64\n", - "2022-09-29 00:00:00: Portfolio Value - 6883890.19\n", - "2022-09-30 00:00:00: Portfolio Value - 6779231.54\n", - "2022-10-03 00:00:00: Portfolio Value - 7017979.97\n", - "2022-10-04 00:00:00: Portfolio Value - 7218618.28\n", - "2022-10-05 00:00:00: Portfolio Value - 7237975.83\n", - "2022-10-06 00:00:00: Portfolio Value - 7083839.95\n", - "2022-10-07 00:00:00: Portfolio Value - 6825655.21\n", - "2022-10-10 00:00:00: Portfolio Value - 6810308.60\n", - "2022-10-11 00:00:00: Portfolio Value - 6782635.56\n", - "2022-10-12 00:00:00: Portfolio Value - 6662139.18\n", - "2022-10-13 00:00:00: Portfolio Value - 6811986.79\n", - "2022-10-14 00:00:00: Portfolio Value - 6646200.12\n", - "2022-10-17 00:00:00: Portfolio Value - 6847847.11\n", - "2022-10-18 00:00:00: Portfolio Value - 6966642.70\n", - "2022-10-19 00:00:00: Portfolio Value - 6913590.54\n", - "2022-10-20 00:00:00: Portfolio Value - 6752347.80\n", - "2022-10-21 00:00:00: Portfolio Value - 6843284.92\n", - "2022-10-24 00:00:00: Portfolio Value - 6962536.85\n", - "2022-10-25 00:00:00: Portfolio Value - 7026908.14\n", - "2022-10-26 00:00:00: Portfolio Value - 7088957.81\n", - "2022-10-27 00:00:00: Portfolio Value - 7149720.53\n", - "2022-10-28 00:00:00: Portfolio Value - 7336684.48\n", - "2022-10-31 00:00:00: Portfolio Value - 7322852.77\n", - "2022-11-01 00:00:00: Portfolio Value - 7281881.65\n", - "2022-11-02 00:00:00: Portfolio Value - 7109376.37\n", - "2022-11-03 00:00:00: Portfolio Value - 6958922.72\n", - "2022-11-04 00:00:00: Portfolio Value - 6982882.34\n", - "2022-11-07 00:00:00: Portfolio Value - 7114527.10\n", - "2022-11-08 00:00:00: Portfolio Value - 7135740.95\n", - "2022-11-09 00:00:00: Portfolio Value - 7059554.48\n", - "2022-11-10 00:00:00: Portfolio Value - 7435375.00\n", - "2022-11-11 00:00:00: Portfolio Value - 7266280.99\n", - "2022-11-14 00:00:00: Portfolio Value - 7207488.78\n", - "2022-11-15 00:00:00: Portfolio Value - 7288995.57\n", - "2022-11-16 00:00:00: Portfolio Value - 7287407.85\n", - "2022-11-17 00:00:00: Portfolio Value - 7183699.03\n", - "2022-11-18 00:00:00: Portfolio Value - 7345255.96\n", - "2022-11-21 00:00:00: Portfolio Value - 7512323.35\n", - "2022-11-22 00:00:00: Portfolio Value - 7555905.84\n", - "2022-11-23 00:00:00: Portfolio Value - 7603303.82\n", - "2022-11-25 00:00:00: Portfolio Value - 7676350.37\n", - "2022-11-28 00:00:00: Portfolio Value - 7554345.42\n", - "2022-11-29 00:00:00: Portfolio Value - 7528017.17\n", - "2022-11-30 00:00:00: Portfolio Value - 7787821.19\n", - "2022-12-01 00:00:00: Portfolio Value - 7821783.88\n", - "2022-12-02 00:00:00: Portfolio Value - 7863897.68\n", - "2022-12-05 00:00:00: Portfolio Value - 7639099.30\n", - "2022-12-06 00:00:00: Portfolio Value - 7608550.48\n", - "2022-12-07 00:00:00: Portfolio Value - 7619279.19\n", - "2022-12-08 00:00:00: Portfolio Value - 7671827.83\n", - "2022-12-09 00:00:00: Portfolio Value - 7605932.94\n", - "2022-12-12 00:00:00: Portfolio Value - 7687405.92\n", - "2022-12-13 00:00:00: Portfolio Value - 7745741.90\n", - "2022-12-14 00:00:00: Portfolio Value - 7723738.89\n", - "2022-12-15 00:00:00: Portfolio Value - 7586198.80\n", - "2022-12-16 00:00:00: Portfolio Value - 7479489.09\n", - "2022-12-19 00:00:00: Portfolio Value - 7450053.86\n", - "2022-12-20 00:00:00: Portfolio Value - 7449842.47\n", - "2022-12-21 00:00:00: Portfolio Value - 7590461.13\n", - "2022-12-22 00:00:00: Portfolio Value - 7547680.50\n", - "2022-12-23 00:00:00: Portfolio Value - 7589588.34\n", - "2022-12-27 00:00:00: Portfolio Value - 7587189.94\n", - "2022-12-28 00:00:00: Portfolio Value - 7498670.15\n", - "2022-12-29 00:00:00: Portfolio Value - 7642822.20\n", - "2022-12-30 00:00:00: Portfolio Value - 7554994.76\n", - "2023-01-03 00:00:00: Portfolio Value - 7587289.75\n", - "2023-01-04 00:00:00: Portfolio Value - 7622329.03\n", - "2023-01-05 00:00:00: Portfolio Value - 7478243.90\n", - "2023-01-06 00:00:00: Portfolio Value - 7673206.67\n", - "2023-01-09 00:00:00: Portfolio Value - 7580986.45\n", - "2023-01-10 00:00:00: Portfolio Value - 7576716.93\n", - "2023-01-11 00:00:00: Portfolio Value - 7651929.94\n", - "2023-01-12 00:00:00: Portfolio Value - 7564273.19\n", - "2023-01-13 00:00:00: Portfolio Value - 7631871.82\n", - "2023-01-17 00:00:00: Portfolio Value - 7705522.78\n", - "2023-01-18 00:00:00: Portfolio Value - 7573957.12\n", - "2023-01-19 00:00:00: Portfolio Value - 7544340.69\n", - "2023-01-20 00:00:00: Portfolio Value - 7685297.59\n", - "2023-01-23 00:00:00: Portfolio Value - 7692135.31\n", - "2023-01-24 00:00:00: Portfolio Value - 7636543.51\n", - "2023-01-25 00:00:00: Portfolio Value - 7594218.31\n", - "2023-01-26 00:00:00: Portfolio Value - 7582011.73\n", - "2023-01-27 00:00:00: Portfolio Value - 7484176.98\n", - "2023-01-30 00:00:00: Portfolio Value - 7473627.03\n", - "2023-01-31 00:00:00: Portfolio Value - 7593430.62\n", - "2023-02-01 00:00:00: Portfolio Value - 7569352.51\n", - "2023-02-02 00:00:00: Portfolio Value - 7478337.71\n", - "2023-02-03 00:00:00: Portfolio Value - 7443443.86\n", - "2023-02-06 00:00:00: Portfolio Value - 7463319.66\n", - "2023-02-07 00:00:00: Portfolio Value - 7548622.67\n", - "2023-02-08 00:00:00: Portfolio Value - 7498418.18\n", - "2023-02-09 00:00:00: Portfolio Value - 7262649.78\n", - "2023-02-10 00:00:00: Portfolio Value - 7357749.17\n", - "2023-02-13 00:00:00: Portfolio Value - 7419130.78\n", - "2023-02-14 00:00:00: Portfolio Value - 7220504.54\n", - "2023-02-15 00:00:00: Portfolio Value - 7292364.18\n", - "2023-02-16 00:00:00: Portfolio Value - 7238890.96\n", - "2023-02-17 00:00:00: Portfolio Value - 7321257.13\n", - "2023-02-21 00:00:00: Portfolio Value - 7233775.68\n", - "2023-02-22 00:00:00: Portfolio Value - 7229328.68\n", - "2023-02-23 00:00:00: Portfolio Value - 7209643.98\n", - "2023-02-24 00:00:00: Portfolio Value - 7140072.35\n", - "2023-02-27 00:00:00: Portfolio Value - 7132470.72\n", - "2023-02-28 00:00:00: Portfolio Value - 7130481.40\n", - "2023-03-01 00:00:00: Portfolio Value - 7099107.45\n", - "2023-03-02 00:00:00: Portfolio Value - 7201792.69\n", - "2023-03-03 00:00:00: Portfolio Value - 7310388.61\n", - "2023-03-06 00:00:00: Portfolio Value - 7293556.27\n", - "2023-03-07 00:00:00: Portfolio Value - 7214250.22\n", - "2023-03-08 00:00:00: Portfolio Value - 7193474.44\n", - "2023-03-09 00:00:00: Portfolio Value - 7099955.14\n", - "2023-03-10 00:00:00: Portfolio Value - 7006769.73\n", - "2023-03-13 00:00:00: Portfolio Value - 7048195.21\n", - "2023-03-14 00:00:00: Portfolio Value - 7143782.07\n", - "2023-03-15 00:00:00: Portfolio Value - 7108119.24\n", - "2023-03-16 00:00:00: Portfolio Value - 7281013.73\n", - "2023-03-17 00:00:00: Portfolio Value - 7162061.42\n", - "2023-03-20 00:00:00: Portfolio Value - 7319282.93\n", - "2023-03-21 00:00:00: Portfolio Value - 7340504.79\n", - "2023-03-22 00:00:00: Portfolio Value - 7234012.36\n", - "2023-03-23 00:00:00: Portfolio Value - 7209121.93\n", - "2023-03-24 00:00:00: Portfolio Value - 7363559.42\n", - "2023-03-27 00:00:00: Portfolio Value - 7382604.90\n", - "2023-03-28 00:00:00: Portfolio Value - 7370417.71\n", - "2023-03-29 00:00:00: Portfolio Value - 7458132.81\n", - "2023-03-30 00:00:00: Portfolio Value - 7456151.57\n", - "2023-03-31 00:00:00: Portfolio Value - 7525965.35\n", - "2023-04-03 00:00:00: Portfolio Value - 7527091.04\n", - "2023-04-04 00:00:00: Portfolio Value - 7567300.84\n", - "2023-04-05 00:00:00: Portfolio Value - 7672273.71\n", - "2023-04-06 00:00:00: Portfolio Value - 7736159.17\n", - "2023-04-10 00:00:00: Portfolio Value - 7677552.25\n", - "2023-04-11 00:00:00: Portfolio Value - 7711562.71\n", - "2023-04-12 00:00:00: Portfolio Value - 7722736.33\n", - "2023-04-13 00:00:00: Portfolio Value - 7802717.44\n", - "2023-04-14 00:00:00: Portfolio Value - 7724188.41\n", - "2023-04-17 00:00:00: Portfolio Value - 7786600.21\n", - "2023-04-18 00:00:00: Portfolio Value - 7776468.87\n", - "2023-04-19 00:00:00: Portfolio Value - 7781138.14\n", - "2023-04-20 00:00:00: Portfolio Value - 7881734.31\n", - "2023-04-21 00:00:00: Portfolio Value - 7943654.71\n", - "2023-04-24 00:00:00: Portfolio Value - 7928431.85\n", - "2023-04-25 00:00:00: Portfolio Value - 7921657.36\n", - "2023-04-26 00:00:00: Portfolio Value - 7803268.84\n", - "2023-04-27 00:00:00: Portfolio Value - 7895037.35\n", - "2023-04-28 00:00:00: Portfolio Value - 8061108.83\n", - "2023-05-01 00:00:00: Portfolio Value - 8100288.93\n", - "2023-05-02 00:00:00: Portfolio Value - 7967653.67\n", - "2023-05-03 00:00:00: Portfolio Value - 8130539.42\n", - "2023-05-04 00:00:00: Portfolio Value - 8047481.38\n", - "2023-05-05 00:00:00: Portfolio Value - 8119653.20\n", - "2023-05-08 00:00:00: Portfolio Value - 8089148.57\n", - "2023-05-09 00:00:00: Portfolio Value - 8103141.30\n", - "2023-05-10 00:00:00: Portfolio Value - 8212462.28\n", - "2023-05-11 00:00:00: Portfolio Value - 8219845.80\n", - "2023-05-12 00:00:00: Portfolio Value - 8226758.20\n", - "2023-05-15 00:00:00: Portfolio Value - 8144463.89\n", - "2023-05-16 00:00:00: Portfolio Value - 8131769.51\n", - "2023-05-17 00:00:00: Portfolio Value - 8028737.53\n", - "2023-05-18 00:00:00: Portfolio Value - 8043988.35\n", - "2023-05-19 00:00:00: Portfolio Value - 8126795.67\n", - "2023-05-22 00:00:00: Portfolio Value - 8088803.01\n", - "2023-05-23 00:00:00: Portfolio Value - 7884583.99\n", - "2023-05-24 00:00:00: Portfolio Value - 7852702.90\n", - "2023-05-25 00:00:00: Portfolio Value - 7768559.71\n", - "2023-05-26 00:00:00: Portfolio Value - 7831935.29\n", - "2023-05-30 00:00:00: Portfolio Value - 7780730.02\n", - "2023-05-31 00:00:00: Portfolio Value - 7799194.81\n", - "2023-06-01 00:00:00: Portfolio Value - 7963309.06\n", - "2023-06-02 00:00:00: Portfolio Value - 8052269.15\n", - "2023-06-05 00:00:00: Portfolio Value - 8111793.35\n", - "2023-06-06 00:00:00: Portfolio Value - 8024632.02\n", - "2023-06-07 00:00:00: Portfolio Value - 7928364.49\n", - "2023-06-08 00:00:00: Portfolio Value - 7964139.15\n", - "2023-06-09 00:00:00: Portfolio Value - 7984373.95\n", - "2023-06-12 00:00:00: Portfolio Value - 7966208.34\n", - "2023-06-13 00:00:00: Portfolio Value - 7920141.15\n", - "2023-06-14 00:00:00: Portfolio Value - 8001301.93\n", - "2023-06-15 00:00:00: Portfolio Value - 8130850.54\n", - "2023-06-16 00:00:00: Portfolio Value - 8199249.63\n", - "2023-06-20 00:00:00: Portfolio Value - 8133030.55\n", - "2023-06-21 00:00:00: Portfolio Value - 8186245.14\n", - "2023-06-22 00:00:00: Portfolio Value - 8226863.68\n", - "2023-06-23 00:00:00: Portfolio Value - 8140929.90\n", - "2023-06-26 00:00:00: Portfolio Value - 8110570.35\n", - "2023-06-27 00:00:00: Portfolio Value - 8167932.31\n", - "2023-06-28 00:00:00: Portfolio Value - 8130807.64\n", - "2023-06-29 00:00:00: Portfolio Value - 8174851.07\n", - "2023-06-30 00:00:00: Portfolio Value - 8323053.88\n", - "2023-07-03 00:00:00: Portfolio Value - 8190262.72\n", - "2023-07-05 00:00:00: Portfolio Value - 8227194.66\n", - "2023-07-06 00:00:00: Portfolio Value - 8242997.98\n", - "2023-07-07 00:00:00: Portfolio Value - 8156766.37\n", - "2023-07-10 00:00:00: Portfolio Value - 8187616.83\n", - "2023-07-11 00:00:00: Portfolio Value - 8217746.93\n", - "2023-07-12 00:00:00: Portfolio Value - 8189334.60\n", - "2023-07-13 00:00:00: Portfolio Value - 8224684.54\n", - "2023-07-14 00:00:00: Portfolio Value - 8280186.02\n", - "2023-07-17 00:00:00: Portfolio Value - 8300374.53\n", - "2023-07-18 00:00:00: Portfolio Value - 8230662.23\n", - "2023-07-19 00:00:00: Portfolio Value - 8179570.99\n", - "2023-07-20 00:00:00: Portfolio Value - 8382402.32\n", - "2023-07-21 00:00:00: Portfolio Value - 8462869.18\n", - "2023-07-24 00:00:00: Portfolio Value - 8534040.19\n", - "2023-07-25 00:00:00: Portfolio Value - 8584030.11\n", - "2023-07-26 00:00:00: Portfolio Value - 8614290.35\n", - "2023-07-27 00:00:00: Portfolio Value - 8357130.48\n", - "2023-07-28 00:00:00: Portfolio Value - 8344963.12\n", - "2023-07-31 00:00:00: Portfolio Value - 8275442.03\n", - "2023-08-01 00:00:00: Portfolio Value - 8378112.90\n", - "2023-08-02 00:00:00: Portfolio Value - 8405700.90\n", - "2023-08-03 00:00:00: Portfolio Value - 8393420.44\n", - "2023-08-04 00:00:00: Portfolio Value - 8057370.48\n", - "2023-08-07 00:00:00: Portfolio Value - 8187148.85\n", - "2023-08-08 00:00:00: Portfolio Value - 8101037.84\n", - "2023-08-09 00:00:00: Portfolio Value - 8147159.32\n", - "2023-08-10 00:00:00: Portfolio Value - 8073807.45\n", - "2023-08-11 00:00:00: Portfolio Value - 8184297.22\n", - "2023-08-14 00:00:00: Portfolio Value - 8181140.74\n", - "2023-08-15 00:00:00: Portfolio Value - 8120481.81\n", - "2023-08-16 00:00:00: Portfolio Value - 8050390.98\n", - "2023-08-17 00:00:00: Portfolio Value - 7876935.25\n", - "2023-08-18 00:00:00: Portfolio Value - 7897833.92\n", - "2023-08-21 00:00:00: Portfolio Value - 7918864.98\n", - "2023-08-22 00:00:00: Portfolio Value - 7923605.95\n", - "2023-08-23 00:00:00: Portfolio Value - 8001621.81\n", - "2023-08-24 00:00:00: Portfolio Value - 8046770.78\n", - "2023-08-25 00:00:00: Portfolio Value - 8143812.90\n", - "2023-08-28 00:00:00: Portfolio Value - 8162927.05\n", - "2023-08-29 00:00:00: Portfolio Value - 8202431.66\n", - "2023-08-30 00:00:00: Portfolio Value - 8241636.20\n", - "2023-08-31 00:00:00: Portfolio Value - 8200363.33\n", - "2023-09-01 00:00:00: Portfolio Value - 8187035.81\n", - "2023-09-05 00:00:00: Portfolio Value - 8009817.10\n", - "2023-09-06 00:00:00: Portfolio Value - 8004226.32\n", - "2023-09-07 00:00:00: Portfolio Value - 8064527.53\n", - "2023-09-08 00:00:00: Portfolio Value - 8015937.24\n", - "2023-09-11 00:00:00: Portfolio Value - 8062347.96\n", - "2023-09-12 00:00:00: Portfolio Value - 8020314.81\n", - "2023-09-13 00:00:00: Portfolio Value - 8002090.15\n", - "2023-09-14 00:00:00: Portfolio Value - 8073889.00\n", - "2023-09-15 00:00:00: Portfolio Value - 8011213.13\n", - "2023-09-18 00:00:00: Portfolio Value - 8053717.38\n", - "2023-09-19 00:00:00: Portfolio Value - 8056086.80\n", - "2023-09-20 00:00:00: Portfolio Value - 8053271.38\n", - "2023-09-21 00:00:00: Portfolio Value - 7924969.14\n", - "2023-09-22 00:00:00: Portfolio Value - 7932275.58\n", - "2023-09-25 00:00:00: Portfolio Value - 7952715.23\n", - "2023-09-26 00:00:00: Portfolio Value - 7876976.18\n", - "2023-09-27 00:00:00: Portfolio Value - 7836312.76\n", - "2023-09-28 00:00:00: Portfolio Value - 7828135.45\n", - "2023-09-29 00:00:00: Portfolio Value - 7709686.64\n", - "2023-10-02 00:00:00: Portfolio Value - 7650959.36\n", - "2023-10-03 00:00:00: Portfolio Value - 7648326.71\n", - "2023-10-04 00:00:00: Portfolio Value - 7773706.52\n", - "2023-10-05 00:00:00: Portfolio Value - 7700242.60\n", - "2023-10-06 00:00:00: Portfolio Value - 7743192.54\n", - "2023-10-09 00:00:00: Portfolio Value - 7833066.77\n", - "2023-10-10 00:00:00: Portfolio Value - 7876923.51\n", - "2023-10-11 00:00:00: Portfolio Value - 7848180.97\n", - "2023-10-12 00:00:00: Portfolio Value - 7752960.65\n", - "2023-10-13 00:00:00: Portfolio Value - 7863355.68\n", - "2023-10-16 00:00:00: Portfolio Value - 7902583.13\n", - "2023-10-17 00:00:00: Portfolio Value - 7880392.66\n", - "2023-10-18 00:00:00: Portfolio Value - 7861061.27\n", - "2023-10-19 00:00:00: Portfolio Value - 7774955.20\n", - "2023-10-20 00:00:00: Portfolio Value - 7751146.43\n", - "2023-10-23 00:00:00: Portfolio Value - 7701370.32\n", - "2023-10-24 00:00:00: Portfolio Value - 7757454.37\n", - "2023-10-25 00:00:00: Portfolio Value - 7721066.03\n", - "2023-10-26 00:00:00: Portfolio Value - 7801299.79\n", - "2023-10-27 00:00:00: Portfolio Value - 7666605.66\n", - "2023-10-30 00:00:00: Portfolio Value - 7759154.46\n", - "2023-10-31 00:00:00: Portfolio Value - 7933075.79\n", - "2023-11-01 00:00:00: Portfolio Value - 7939907.29\n", - "2023-11-02 00:00:00: Portfolio Value - 8068928.94\n", - "2023-11-03 00:00:00: Portfolio Value - 8070622.29\n", - "2023-11-06 00:00:00: Portfolio Value - 8098289.16\n", - "2023-11-07 00:00:00: Portfolio Value - 8136703.94\n", - "2023-11-08 00:00:00: Portfolio Value - 8129737.64\n", - "2023-11-09 00:00:00: Portfolio Value - 7989475.07\n", - "2023-11-10 00:00:00: Portfolio Value - 8070579.32\n", - "2023-11-13 00:00:00: Portfolio Value - 8105751.26\n", - "2023-11-14 00:00:00: Portfolio Value - 8097747.49\n", - "2023-11-15 00:00:00: Portfolio Value - 8066497.32\n", - "2023-11-16 00:00:00: Portfolio Value - 8157864.39\n", - "2023-11-17 00:00:00: Portfolio Value - 8112042.03\n", - "2023-11-20 00:00:00: Portfolio Value - 8139476.58\n", - "2023-11-21 00:00:00: Portfolio Value - 8237468.40\n", - "2023-11-22 00:00:00: Portfolio Value - 8281796.22\n", - "2023-11-24 00:00:00: Portfolio Value - 8321957.43\n", - "2023-11-27 00:00:00: Portfolio Value - 8324512.35\n", - "2023-11-28 00:00:00: Portfolio Value - 8265750.02\n", - "2023-11-29 00:00:00: Portfolio Value - 8205948.78\n", - "2023-11-30 00:00:00: Portfolio Value - 8307732.10\n", - "2023-12-01 00:00:00: Portfolio Value - 8250975.97\n", - "2023-12-04 00:00:00: Portfolio Value - 8212421.64\n", - "2023-12-05 00:00:00: Portfolio Value - 8129455.66\n", - "2023-12-06 00:00:00: Portfolio Value - 8087969.94\n", - "2023-12-07 00:00:00: Portfolio Value - 8074640.90\n", - "2023-12-08 00:00:00: Portfolio Value - 8030215.58\n", - "2023-12-11 00:00:00: Portfolio Value - 8129063.80\n", - "2023-12-12 00:00:00: Portfolio Value - 8252609.38\n", - "2023-12-13 00:00:00: Portfolio Value - 8350432.70\n", - "2023-12-14 00:00:00: Portfolio Value - 7899347.54\n", - "2023-12-15 00:00:00: Portfolio Value - 7800222.69\n", - "2023-12-18 00:00:00: Portfolio Value - 7922774.21\n", - "2023-12-19 00:00:00: Portfolio Value - 7892672.07\n", - "2023-12-20 00:00:00: Portfolio Value - 7815476.97\n", - "2023-12-21 00:00:00: Portfolio Value - 7958445.76\n", - "2023-12-22 00:00:00: Portfolio Value - 7979316.78\n", - "2023-12-26 00:00:00: Portfolio Value - 7989813.81\n", - "2023-12-27 00:00:00: Portfolio Value - 7985349.80\n", - "2023-12-28 00:00:00: Portfolio Value - 8012319.58\n", - "2023-12-29 00:00:00: Portfolio Value - 8058876.81\n", - "2024-01-02 00:00:00: Portfolio Value - 8051293.99\n", - "2024-01-03 00:00:00: Portfolio Value - 7975744.03\n", - "2024-01-04 00:00:00: Portfolio Value - 8049535.62\n", - "2024-01-05 00:00:00: Portfolio Value - 7974552.85\n", - "2024-01-08 00:00:00: Portfolio Value - 8108255.36\n", - "2024-01-09 00:00:00: Portfolio Value - 8090943.27\n", - "2024-01-10 00:00:00: Portfolio Value - 8166029.69\n", - "2024-01-11 00:00:00: Portfolio Value - 8174066.38\n", - "2024-01-12 00:00:00: Portfolio Value - 8233655.37\n", - "2024-01-16 00:00:00: Portfolio Value - 8181625.18\n", - "2024-01-17 00:00:00: Portfolio Value - 8209959.89\n", - "2024-01-18 00:00:00: Portfolio Value - 8270412.31\n", - "2024-01-19 00:00:00: Portfolio Value - 8325084.98\n", - "2024-01-22 00:00:00: Portfolio Value - 8348998.03\n", - "2024-01-23 00:00:00: Portfolio Value - 8409351.93\n", - "2024-01-24 00:00:00: Portfolio Value - 8307408.52\n", - "2024-01-25 00:00:00: Portfolio Value - 8416175.44\n", - "2024-01-26 00:00:00: Portfolio Value - 8426050.13\n", - "2024-01-29 00:00:00: Portfolio Value - 8373290.71\n", - "2024-01-30 00:00:00: Portfolio Value - 8370334.80\n", - "2024-01-31 00:00:00: Portfolio Value - 8380282.23\n", - "2024-02-01 00:00:00: Portfolio Value - 8518739.39\n", - "2024-02-02 00:00:00: Portfolio Value - 8537109.89\n", - "2024-02-05 00:00:00: Portfolio Value - 8514713.86\n", - "2024-02-06 00:00:00: Portfolio Value - 8671011.56\n", - "2024-02-07 00:00:00: Portfolio Value - 8693637.31\n", - "2024-02-08 00:00:00: Portfolio Value - 8603630.47\n", - "2024-02-09 00:00:00: Portfolio Value - 8644031.31\n", - "2024-02-12 00:00:00: Portfolio Value - 8577038.95\n", - "2024-02-13 00:00:00: Portfolio Value - 8565166.12\n", - "2024-02-14 00:00:00: Portfolio Value - 8631466.97\n", - "2024-02-15 00:00:00: Portfolio Value - 8708417.21\n", - "2024-02-16 00:00:00: Portfolio Value - 8661975.68\n", - "2024-02-20 00:00:00: Portfolio Value - 8663497.87\n", - "2024-02-21 00:00:00: Portfolio Value - 8620919.07\n", - "2024-02-22 00:00:00: Portfolio Value - 8696381.42\n", - "2024-02-23 00:00:00: Portfolio Value - 8781511.58\n", - "2024-02-26 00:00:00: Portfolio Value - 8666870.05\n", - "2024-02-27 00:00:00: Portfolio Value - 8629518.86\n", - "2024-02-28 00:00:00: Portfolio Value - 8589906.97\n", - "2024-02-29 00:00:00: Portfolio Value - 8563770.98\n", - "2024-03-01 00:00:00: Portfolio Value - 8532155.89\n", - "2024-03-04 00:00:00: Portfolio Value - 8585876.18\n", - "2024-03-05 00:00:00: Portfolio Value - 8549359.58\n", - "2024-03-06 00:00:00: Portfolio Value - 8661245.11\n", - "2024-03-07 00:00:00: Portfolio Value - 8759602.59\n", - "2024-03-08 00:00:00: Portfolio Value - 8780472.68\n", - "2024-03-11 00:00:00: Portfolio Value - 8788130.69\n", - "2024-03-12 00:00:00: Portfolio Value - 8839409.66\n", - "2024-03-13 00:00:00: Portfolio Value - 8797109.89\n", - "2024-03-14 00:00:00: Portfolio Value - 8742719.91\n", - "2024-03-15 00:00:00: Portfolio Value - 8770706.36\n", - "2024-03-18 00:00:00: Portfolio Value - 8793750.89\n", - "2024-03-19 00:00:00: Portfolio Value - 8879632.61\n", - "2024-03-20 00:00:00: Portfolio Value - 8835549.41\n", - "2024-03-21 00:00:00: Portfolio Value - 8780380.78\n", - "2024-03-22 00:00:00: Portfolio Value - 8802431.37\n", - "2024-03-25 00:00:00: Portfolio Value - 8751439.34\n", - "2024-03-26 00:00:00: Portfolio Value - 8737052.28\n", - "2024-03-27 00:00:00: Portfolio Value - 8937282.15\n", - "2024-03-28 00:00:00: Portfolio Value - 8973076.98\n", - "2024-04-01 00:00:00: Portfolio Value - 8803877.22\n", - "2024-04-02 00:00:00: Portfolio Value - 8678086.47\n", - "2024-04-03 00:00:00: Portfolio Value - 8796991.89\n", - "2024-04-04 00:00:00: Portfolio Value - 8670313.25\n", - "2024-04-05 00:00:00: Portfolio Value - 8805415.67\n", - "2024-04-08 00:00:00: Portfolio Value - 8721317.82\n", - "2024-04-09 00:00:00: Portfolio Value - 8775540.87\n", - "2024-04-10 00:00:00: Portfolio Value - 8694433.70\n", - "2024-04-11 00:00:00: Portfolio Value - 8611365.09\n", - "2024-04-12 00:00:00: Portfolio Value - 8519089.75\n", - "2024-04-15 00:00:00: Portfolio Value - 8450341.41\n", - "2024-04-16 00:00:00: Portfolio Value - 8465025.37\n", - "2024-04-17 00:00:00: Portfolio Value - 8413824.16\n", - "2024-04-18 00:00:00: Portfolio Value - 8511646.09\n", - "2024-04-19 00:00:00: Portfolio Value - 8617305.36\n", - "2024-04-22 00:00:00: Portfolio Value - 8647509.34\n", - "2024-04-23 00:00:00: Portfolio Value - 8709839.45\n", - "2024-04-24 00:00:00: Portfolio Value - 8744145.64\n", - "2024-04-25 00:00:00: Portfolio Value - 8686133.09\n", - "2024-04-26 00:00:00: Portfolio Value - 8811047.57\n", - "2024-04-29 00:00:00: Portfolio Value - 8840635.59\n", - "2024-04-30 00:00:00: Portfolio Value - 8902677.83\n", - "2024-05-01 00:00:00: Portfolio Value - 9049466.29\n", - "2024-05-02 00:00:00: Portfolio Value - 9082421.85\n", - "2024-05-03 00:00:00: Portfolio Value - 9041097.30\n", - "2024-05-06 00:00:00: Portfolio Value - 9164609.54\n", - "2024-05-07 00:00:00: Portfolio Value - 9275624.70\n", - "2024-05-08 00:00:00: Portfolio Value - 9215271.48\n", - "2024-05-09 00:00:00: Portfolio Value - 9292877.94\n", - "2024-05-10 00:00:00: Portfolio Value - 9358525.56\n", - "2024-05-13 00:00:00: Portfolio Value - 9284085.02\n", - "2024-05-14 00:00:00: Portfolio Value - 9262083.03\n", - "2024-05-15 00:00:00: Portfolio Value - 9330675.49\n", - "2024-05-16 00:00:00: Portfolio Value - 9395743.96\n", - "2024-05-17 00:00:00: Portfolio Value - 9419503.51\n", - "2024-05-20 00:00:00: Portfolio Value - 9414381.21\n", - "2024-05-21 00:00:00: Portfolio Value - 9424511.81\n", - "2024-05-22 00:00:00: Portfolio Value - 9478323.63\n", - "2024-05-23 00:00:00: Portfolio Value - 9266971.10\n", - "2024-05-24 00:00:00: Portfolio Value - 9278886.93\n", - "2024-05-28 00:00:00: Portfolio Value - 9079699.28\n", - "2024-05-29 00:00:00: Portfolio Value - 9001798.13\n", - "2024-05-30 00:00:00: Portfolio Value - 9103432.29\n", - "2024-05-31 00:00:00: Portfolio Value - 9253041.76\n", - "2024-06-03 00:00:00: Portfolio Value - 9309448.80\n", - "2024-06-04 00:00:00: Portfolio Value - 9438973.56\n", - "2024-06-05 00:00:00: Portfolio Value - 9409926.65\n", - "2024-06-06 00:00:00: Portfolio Value - 9415771.47\n", - "2024-06-07 00:00:00: Portfolio Value - 9480526.68\n", - "2024-06-10 00:00:00: Portfolio Value - 9493640.31\n", - "2024-06-11 00:00:00: Portfolio Value - 9495498.86\n", - "2024-06-12 00:00:00: Portfolio Value - 9460283.48\n", - "2024-06-13 00:00:00: Portfolio Value - 9468906.49\n", - "2024-06-14 00:00:00: Portfolio Value - 9508829.15\n", - "2024-06-17 00:00:00: Portfolio Value - 9569361.57\n", - "2024-06-18 00:00:00: Portfolio Value - 9614748.65\n", - "2024-06-20 00:00:00: Portfolio Value - 9708048.32\n", - "2024-06-21 00:00:00: Portfolio Value - 9697753.77\n", - "2024-06-24 00:00:00: Portfolio Value - 9553065.54\n", - "2024-06-25 00:00:00: Portfolio Value - 9483757.01\n", - "2024-06-26 00:00:00: Portfolio Value - 9391322.93\n", - "2024-06-27 00:00:00: Portfolio Value - 9536923.50\n", - "2024-06-28 00:00:00: Portfolio Value - 9463636.60\n", - "2024-07-01 00:00:00: Portfolio Value - 9332018.72\n", - "2024-07-02 00:00:00: Portfolio Value - 9417070.23\n", - "2024-07-03 00:00:00: Portfolio Value - 9392952.41\n", - "2024-07-05 00:00:00: Portfolio Value - 9502443.87\n", - "2024-07-08 00:00:00: Portfolio Value - 9438135.72\n", - "2024-07-09 00:00:00: Portfolio Value - 9363130.85\n", - "2024-07-10 00:00:00: Portfolio Value - 9473580.40\n", - "2024-07-11 00:00:00: Portfolio Value - 9531467.20\n", - "2024-07-12 00:00:00: Portfolio Value - 9642763.73\n", - "2024-07-15 00:00:00: Portfolio Value - 9553548.35\n", - "2024-07-16 00:00:00: Portfolio Value - 9626254.63\n", - "2024-07-17 00:00:00: Portfolio Value - 9727726.15\n", - "2024-07-18 00:00:00: Portfolio Value - 9792035.77\n", - "2024-07-19 00:00:00: Portfolio Value - 9720052.20\n", - "2024-07-22 00:00:00: Portfolio Value - 9804648.43\n", - "2024-07-23 00:00:00: Portfolio Value - 9833313.15\n", - "2024-07-24 00:00:00: Portfolio Value - 9859087.26\n", - "2024-07-25 00:00:00: Portfolio Value - 9893117.28\n", - "2024-07-26 00:00:00: Portfolio Value - 9976380.25\n", - "2024-07-29 00:00:00: Portfolio Value - 10073524.70\n", - "2024-07-30 00:00:00: Portfolio Value - 10110117.72\n", - "2024-07-31 00:00:00: Portfolio Value - 9921644.32\n", - "2024-08-01 00:00:00: Portfolio Value - 10072696.00\n", - "2024-08-02 00:00:00: Portfolio Value - 10379680.37\n", - "2024-08-05 00:00:00: Portfolio Value - 10110599.29\n", - "2024-08-06 00:00:00: Portfolio Value - 10159911.84\n", - "2024-08-07 00:00:00: Portfolio Value - 10116680.65\n", - "2024-08-08 00:00:00: Portfolio Value - 10193460.15\n", - "2024-08-09 00:00:00: Portfolio Value - 10213774.42\n", - "2024-08-12 00:00:00: Portfolio Value - 10172849.30\n", - "2024-08-13 00:00:00: Portfolio Value - 10208088.29\n", - "2024-08-14 00:00:00: Portfolio Value - 10343499.59\n", - "2024-08-15 00:00:00: Portfolio Value - 10309339.77\n", - "2024-08-16 00:00:00: Portfolio Value - 10308956.23\n", - "2024-08-19 00:00:00: Portfolio Value - 10432249.35\n", - "2024-08-20 00:00:00: Portfolio Value - 10423010.08\n", - "2024-08-21 00:00:00: Portfolio Value - 10469218.23\n", - "2024-08-22 00:00:00: Portfolio Value - 10541149.25\n", - "2024-08-23 00:00:00: Portfolio Value - 10515260.50\n", - "2024-08-26 00:00:00: Portfolio Value - 10555632.72\n", - "2024-08-27 00:00:00: Portfolio Value - 10758399.53\n", - "2024-08-28 00:00:00: Portfolio Value - 10824071.61\n", - "2024-08-29 00:00:00: Portfolio Value - 10877195.86\n", - "2024-08-30 00:00:00: Portfolio Value - 10963401.20\n", - "2024-09-03 00:00:00: Portfolio Value - 11076927.07\n", - "2024-09-04 00:00:00: Portfolio Value - 11121778.64\n", - "2024-09-05 00:00:00: Portfolio Value - 11072653.50\n", - "2024-09-06 00:00:00: Portfolio Value - 10990109.28\n", - "2024-09-09 00:00:00: Portfolio Value - 11137936.00\n", - "2024-09-10 00:00:00: Portfolio Value - 11226773.72\n", - "2024-09-11 00:00:00: Portfolio Value - 11079613.31\n", - "2024-09-12 00:00:00: Portfolio Value - 11096641.60\n", - "2024-09-13 00:00:00: Portfolio Value - 11106678.50\n", - "2024-09-16 00:00:00: Portfolio Value - 11134313.28\n", - "2024-09-17 00:00:00: Portfolio Value - 11000036.30\n", - "2024-09-18 00:00:00: Portfolio Value - 10808431.05\n", - "2024-09-19 00:00:00: Portfolio Value - 10711157.89\n", - "2024-09-20 00:00:00: Portfolio Value - 10731675.13\n", - "2024-09-23 00:00:00: Portfolio Value - 10864228.17\n", - "2024-09-24 00:00:00: Portfolio Value - 10806826.76\n", - "2024-09-25 00:00:00: Portfolio Value - 10790506.71\n", - "2024-09-26 00:00:00: Portfolio Value - 10714918.08\n", - "2024-09-27 00:00:00: Portfolio Value - 10750375.60\n", - "2024-09-30 00:00:00: Portfolio Value - 10903364.80\n", - "2024-10-01 00:00:00: Portfolio Value - 10996801.72\n", - "2024-10-02 00:00:00: Portfolio Value - 10953132.55\n", - "2024-10-03 00:00:00: Portfolio Value - 10881709.75\n", - "2024-10-04 00:00:00: Portfolio Value - 10810053.06\n", - "2024-10-07 00:00:00: Portfolio Value - 10681577.16\n", - "2024-10-08 00:00:00: Portfolio Value - 10892925.31\n", - "2024-10-09 00:00:00: Portfolio Value - 11003837.22\n", - "2024-10-10 00:00:00: Portfolio Value - 10785160.04\n", - "2024-10-11 00:00:00: Portfolio Value - 10841308.22\n", - "2024-10-14 00:00:00: Portfolio Value - 10930896.48\n", - "2024-10-15 00:00:00: Portfolio Value - 10935700.93\n", - "2024-10-16 00:00:00: Portfolio Value - 10941296.48\n", - "2024-10-17 00:00:00: Portfolio Value - 10935024.64\n", - "2024-10-18 00:00:00: Portfolio Value - 10956064.92\n", - "2024-10-21 00:00:00: Portfolio Value - 10941772.39\n", - "2024-10-22 00:00:00: Portfolio Value - 10910470.31\n", - "2024-10-23 00:00:00: Portfolio Value - 10920516.09\n", - "2024-10-24 00:00:00: Portfolio Value - 10862000.71\n", - "2024-10-25 00:00:00: Portfolio Value - 10880556.70\n", - "2024-10-28 00:00:00: Portfolio Value - 10808053.55\n", - "2024-10-29 00:00:00: Portfolio Value - 10859497.07\n", - "2024-10-30 00:00:00: Portfolio Value - 10928478.77\n", - "2024-10-31 00:00:00: Portfolio Value - 10911993.40\n", - "2024-11-01 00:00:00: Portfolio Value - 10906106.25\n", - "2024-11-04 00:00:00: Portfolio Value - 10966328.23\n", - "2024-11-05 00:00:00: Portfolio Value - 11141554.72\n", - "2024-11-06 00:00:00: Portfolio Value - 11142996.85\n", - "2024-11-07 00:00:00: Portfolio Value - 11054031.72\n", - "2024-11-08 00:00:00: Portfolio Value - 11330503.87\n", - "2024-11-11 00:00:00: Portfolio Value - 11307673.66\n", - "2024-11-12 00:00:00: Portfolio Value - 11372013.78\n", - "2024-11-13 00:00:00: Portfolio Value - 11272164.78\n", - "2024-11-14 00:00:00: Portfolio Value - 10958974.45\n", - "2024-11-15 00:00:00: Portfolio Value - 10921182.57\n", - "2024-11-18 00:00:00: Portfolio Value - 10982787.23\n", - "2024-11-19 00:00:00: Portfolio Value - 10969940.83\n" + "2010-04-01 00:00:00: Portfolio Value - 109748.62\n", + "2010-04-05 00:00:00: Portfolio Value - 130800.08\n", + "2010-04-06 00:00:00: Portfolio Value - 159801.17\n", + "2010-04-07 00:00:00: Portfolio Value - 157465.85\n", + "2010-04-08 00:00:00: Portfolio Value - 149997.45\n", + "2010-04-09 00:00:00: Portfolio Value - 145756.31\n", + "2010-04-12 00:00:00: Portfolio Value - 149606.00\n", + "2010-04-13 00:00:00: Portfolio Value - 148406.44\n", + "2010-04-14 00:00:00: Portfolio Value - 140679.70\n", + "2010-04-15 00:00:00: Portfolio Value - 160181.13\n", + "2010-04-16 00:00:00: Portfolio Value - 176100.35\n", + "2010-04-19 00:00:00: Portfolio Value - 168663.39\n", + "2010-04-20 00:00:00: Portfolio Value - 162298.75\n", + "2010-04-21 00:00:00: Portfolio Value - 176449.62\n", + "2010-04-22 00:00:00: Portfolio Value - 191850.58\n", + "2010-04-23 00:00:00: Portfolio Value - 186854.88\n", + "2010-04-26 00:00:00: Portfolio Value - 215632.26\n", + "2010-04-27 00:00:00: Portfolio Value - 210035.33\n", + "2010-04-28 00:00:00: Portfolio Value - 223724.20\n", + "2010-04-29 00:00:00: Portfolio Value - 220663.73\n", + "2010-04-30 00:00:00: Portfolio Value - 233771.38\n", + "2010-05-03 00:00:00: Portfolio Value - 250624.71\n", + "2010-05-04 00:00:00: Portfolio Value - 258007.29\n", + "2010-05-05 00:00:00: Portfolio Value - 282682.86\n", + "2010-05-06 00:00:00: Portfolio Value - 282244.54\n", + "2010-05-07 00:00:00: Portfolio Value - 238191.80\n", + "2010-05-10 00:00:00: Portfolio Value - 301245.71\n", + "2010-05-11 00:00:00: Portfolio Value - 352217.60\n", + "2010-05-12 00:00:00: Portfolio Value - 359956.46\n", + "2010-05-13 00:00:00: Portfolio Value - 338535.94\n", + "2010-05-14 00:00:00: Portfolio Value - 323690.15\n", + "2010-05-17 00:00:00: Portfolio Value - 317322.54\n", + "2010-05-18 00:00:00: Portfolio Value - 322222.40\n", + "2010-05-19 00:00:00: Portfolio Value - 292604.38\n", + "2010-05-20 00:00:00: Portfolio Value - 308967.41\n", + "2010-05-21 00:00:00: Portfolio Value - 286001.97\n", + "2010-05-24 00:00:00: Portfolio Value - 336496.31\n", + "2010-05-25 00:00:00: Portfolio Value - 326958.00\n", + "2010-05-26 00:00:00: Portfolio Value - 335006.63\n", + "2010-05-27 00:00:00: Portfolio Value - 319659.80\n", + "2010-05-28 00:00:00: Portfolio Value - 331183.09\n", + "2010-06-01 00:00:00: Portfolio Value - 351054.61\n", + "2010-06-02 00:00:00: Portfolio Value - 337356.86\n", + "2010-06-03 00:00:00: Portfolio Value - 357398.23\n", + "2010-06-04 00:00:00: Portfolio Value - 358917.84\n", + "2010-06-07 00:00:00: Portfolio Value - 338807.13\n", + "2010-06-08 00:00:00: Portfolio Value - 354756.99\n", + "2010-06-09 00:00:00: Portfolio Value - 379369.70\n", + "2010-06-10 00:00:00: Portfolio Value - 398970.98\n", + "2010-06-11 00:00:00: Portfolio Value - 409064.62\n", + "2010-06-14 00:00:00: Portfolio Value - 438890.27\n", + "2010-06-15 00:00:00: Portfolio Value - 416353.70\n", + "2010-06-16 00:00:00: Portfolio Value - 420330.12\n", + "2010-06-17 00:00:00: Portfolio Value - 419635.53\n", + "2010-06-18 00:00:00: Portfolio Value - 409504.28\n", + "2010-06-21 00:00:00: Portfolio Value - 408681.47\n", + "2010-06-22 00:00:00: Portfolio Value - 408714.86\n", + "2010-06-23 00:00:00: Portfolio Value - 419958.31\n", + "2010-06-24 00:00:00: Portfolio Value - 418215.07\n", + "2010-06-25 00:00:00: Portfolio Value - 412945.88\n", + "2010-06-28 00:00:00: Portfolio Value - 429613.26\n", + "2010-06-29 00:00:00: Portfolio Value - 434837.79\n", + "2010-06-30 00:00:00: Portfolio Value - 439758.97\n", + "2010-07-01 00:00:00: Portfolio Value - 460656.34\n", + "2010-07-02 00:00:00: Portfolio Value - 445340.71\n", + "2010-07-06 00:00:00: Portfolio Value - 419615.68\n", + "2010-07-07 00:00:00: Portfolio Value - 446846.89\n", + "2010-07-08 00:00:00: Portfolio Value - 418532.93\n", + "2010-07-09 00:00:00: Portfolio Value - 407480.10\n", + "2010-07-12 00:00:00: Portfolio Value - 420597.08\n", + "2010-07-13 00:00:00: Portfolio Value - 412776.69\n", + "2010-07-14 00:00:00: Portfolio Value - 435914.92\n", + "2010-07-15 00:00:00: Portfolio Value - 406824.61\n", + "2010-07-16 00:00:00: Portfolio Value - 411067.23\n", + "2010-07-19 00:00:00: Portfolio Value - 403935.75\n", + "2010-07-20 00:00:00: Portfolio Value - 395655.34\n", + "2010-07-21 00:00:00: Portfolio Value - 415134.20\n", + "2010-07-22 00:00:00: Portfolio Value - 409317.41\n", + "2010-07-23 00:00:00: Portfolio Value - 429604.36\n", + "2010-07-26 00:00:00: Portfolio Value - 402253.82\n", + "2010-07-27 00:00:00: Portfolio Value - 404434.42\n", + "2010-07-28 00:00:00: Portfolio Value - 413017.81\n", + "2010-07-29 00:00:00: Portfolio Value - 398396.52\n", + "2010-07-30 00:00:00: Portfolio Value - 429851.71\n", + "2010-08-02 00:00:00: Portfolio Value - 419712.90\n", + "2010-08-03 00:00:00: Portfolio Value - 429252.14\n", + "2010-08-04 00:00:00: Portfolio Value - 431645.99\n", + "2010-08-05 00:00:00: Portfolio Value - 434245.08\n", + "2010-08-06 00:00:00: Portfolio Value - 454866.16\n", + "2010-08-09 00:00:00: Portfolio Value - 460672.29\n", + "2010-08-10 00:00:00: Portfolio Value - 463472.79\n", + "2010-08-11 00:00:00: Portfolio Value - 474280.30\n", + "2010-08-12 00:00:00: Portfolio Value - 479025.07\n", + "2010-08-13 00:00:00: Portfolio Value - 479789.52\n", + "2010-08-16 00:00:00: Portfolio Value - 499045.47\n", + "2010-08-17 00:00:00: Portfolio Value - 511688.74\n", + "2010-08-18 00:00:00: Portfolio Value - 527834.85\n", + "2010-08-19 00:00:00: Portfolio Value - 535952.06\n", + "2010-08-20 00:00:00: Portfolio Value - 564911.58\n", + "2010-08-23 00:00:00: Portfolio Value - 564581.66\n", + "2010-08-24 00:00:00: Portfolio Value - 546754.99\n", + "2010-08-25 00:00:00: Portfolio Value - 553297.47\n", + "2010-08-26 00:00:00: Portfolio Value - 576532.57\n", + "2010-08-27 00:00:00: Portfolio Value - 597195.81\n", + "2010-08-30 00:00:00: Portfolio Value - 583331.83\n", + "2010-08-31 00:00:00: Portfolio Value - 579736.88\n", + "2010-09-01 00:00:00: Portfolio Value - 586325.28\n", + "2010-09-02 00:00:00: Portfolio Value - 591042.36\n", + "2010-09-03 00:00:00: Portfolio Value - 593372.68\n", + "2010-09-07 00:00:00: Portfolio Value - 607804.07\n", + "2010-09-08 00:00:00: Portfolio Value - 625383.29\n", + "2010-09-09 00:00:00: Portfolio Value - 604529.65\n", + "2010-09-10 00:00:00: Portfolio Value - 605944.07\n", + "2010-09-13 00:00:00: Portfolio Value - 645796.31\n", + "2010-09-14 00:00:00: Portfolio Value - 598365.08\n", + "2010-09-15 00:00:00: Portfolio Value - 561812.21\n", + "2010-09-16 00:00:00: Portfolio Value - 574878.25\n", + "2010-09-17 00:00:00: Portfolio Value - 565307.21\n", + "2010-09-20 00:00:00: Portfolio Value - 557050.48\n", + "2010-09-21 00:00:00: Portfolio Value - 561543.90\n", + "2010-09-22 00:00:00: Portfolio Value - 587018.05\n", + "2010-09-23 00:00:00: Portfolio Value - 612860.30\n", + "2010-09-24 00:00:00: Portfolio Value - 593184.50\n", + "2010-09-27 00:00:00: Portfolio Value - 617109.09\n", + "2010-09-28 00:00:00: Portfolio Value - 614229.61\n", + "2010-09-29 00:00:00: Portfolio Value - 619650.06\n", + "2010-09-30 00:00:00: Portfolio Value - 600124.16\n", + "2010-10-01 00:00:00: Portfolio Value - 572048.00\n", + "2010-10-04 00:00:00: Portfolio Value - 597567.40\n", + "2010-10-05 00:00:00: Portfolio Value - 626383.04\n", + "2010-10-06 00:00:00: Portfolio Value - 648738.33\n", + "2010-10-07 00:00:00: Portfolio Value - 627509.84\n", + "2010-10-08 00:00:00: Portfolio Value - 593902.02\n", + "2010-10-11 00:00:00: Portfolio Value - 567433.84\n", + "2010-10-12 00:00:00: Portfolio Value - 575900.71\n", + "2010-10-13 00:00:00: Portfolio Value - 579359.39\n", + "2010-10-14 00:00:00: Portfolio Value - 581770.55\n", + "2010-10-15 00:00:00: Portfolio Value - 592442.52\n", + "2010-10-18 00:00:00: Portfolio Value - 573632.55\n", + "2010-10-19 00:00:00: Portfolio Value - 558896.63\n", + "2010-10-20 00:00:00: Portfolio Value - 594857.07\n", + "2010-10-21 00:00:00: Portfolio Value - 651365.76\n", + "2010-10-22 00:00:00: Portfolio Value - 682900.18\n", + "2010-10-25 00:00:00: Portfolio Value - 698976.13\n", + "2010-10-26 00:00:00: Portfolio Value - 708773.37\n", + "2010-10-27 00:00:00: Portfolio Value - 752411.14\n", + "2010-10-28 00:00:00: Portfolio Value - 736877.52\n", + "2010-10-29 00:00:00: Portfolio Value - 721160.23\n", + "2010-11-01 00:00:00: Portfolio Value - 710462.14\n", + "2010-11-02 00:00:00: Portfolio Value - 709492.94\n", + "2010-11-03 00:00:00: Portfolio Value - 788817.71\n", + "2010-11-04 00:00:00: Portfolio Value - 772566.17\n", + "2010-11-05 00:00:00: Portfolio Value - 765972.86\n", + "2010-11-08 00:00:00: Portfolio Value - 790160.11\n", + "2010-11-09 00:00:00: Portfolio Value - 808483.47\n", + "2010-11-10 00:00:00: Portfolio Value - 817494.37\n", + "2010-11-11 00:00:00: Portfolio Value - 809015.74\n", + "2010-11-12 00:00:00: Portfolio Value - 789788.26\n", + "2010-11-15 00:00:00: Portfolio Value - 770673.69\n", + "2010-11-16 00:00:00: Portfolio Value - 775678.84\n", + "2010-11-17 00:00:00: Portfolio Value - 761413.75\n", + "2010-11-18 00:00:00: Portfolio Value - 793393.42\n", + "2010-11-19 00:00:00: Portfolio Value - 848574.13\n", + "2010-11-22 00:00:00: Portfolio Value - 946683.82\n", + "2010-11-23 00:00:00: Portfolio Value - 964865.28\n", + "2010-11-24 00:00:00: Portfolio Value - 987335.51\n", + "2010-11-26 00:00:00: Portfolio Value - 1017957.34\n", + "2010-11-29 00:00:00: Portfolio Value - 1032640.23\n", + "2010-11-30 00:00:00: Portfolio Value - 1038386.79\n", + "2010-12-01 00:00:00: Portfolio Value - 1044076.10\n", + "2010-12-02 00:00:00: Portfolio Value - 990037.35\n", + "2010-12-03 00:00:00: Portfolio Value - 982363.50\n", + "2010-12-06 00:00:00: Portfolio Value - 996007.45\n", + "2010-12-07 00:00:00: Portfolio Value - 988367.95\n", + "2010-12-08 00:00:00: Portfolio Value - 954893.84\n", + "2010-12-09 00:00:00: Portfolio Value - 946533.64\n", + "2010-12-10 00:00:00: Portfolio Value - 947993.81\n", + "2010-12-13 00:00:00: Portfolio Value - 916708.78\n", + "2010-12-14 00:00:00: Portfolio Value - 872617.35\n", + "2010-12-15 00:00:00: Portfolio Value - 864746.58\n", + "2010-12-16 00:00:00: Portfolio Value - 884555.83\n", + "2010-12-17 00:00:00: Portfolio Value - 876742.00\n", + "2010-12-20 00:00:00: Portfolio Value - 855269.92\n", + "2010-12-21 00:00:00: Portfolio Value - 850776.31\n", + "2010-12-22 00:00:00: Portfolio Value - 856461.74\n", + "2010-12-23 00:00:00: Portfolio Value - 859895.86\n", + "2010-12-27 00:00:00: Portfolio Value - 836770.52\n", + "2010-12-28 00:00:00: Portfolio Value - 833675.15\n", + "2010-12-29 00:00:00: Portfolio Value - 819369.56\n", + "2010-12-30 00:00:00: Portfolio Value - 826739.95\n", + "2010-12-31 00:00:00: Portfolio Value - 788440.23\n", + "2011-01-03 00:00:00: Portfolio Value - 810008.49\n", + "2011-01-04 00:00:00: Portfolio Value - 804914.94\n", + "2011-01-05 00:00:00: Portfolio Value - 804816.59\n", + "2011-01-06 00:00:00: Portfolio Value - 825446.18\n", + "2011-01-07 00:00:00: Portfolio Value - 844312.58\n", + "2011-01-10 00:00:00: Portfolio Value - 850314.84\n", + "2011-01-11 00:00:00: Portfolio Value - 815991.69\n", + "2011-01-12 00:00:00: Portfolio Value - 806769.44\n", + "2011-01-13 00:00:00: Portfolio Value - 809070.85\n", + "2011-01-14 00:00:00: Portfolio Value - 789268.95\n", + "2011-01-18 00:00:00: Portfolio Value - 769990.61\n", + "2011-01-19 00:00:00: Portfolio Value - 810215.12\n", + "2011-01-20 00:00:00: Portfolio Value - 659557.24\n", + "2011-01-21 00:00:00: Portfolio Value - 639885.73\n", + "2011-01-24 00:00:00: Portfolio Value - 603448.99\n", + "2011-01-25 00:00:00: Portfolio Value - 593817.02\n", + "2011-01-26 00:00:00: Portfolio Value - 614860.64\n", + "2011-01-27 00:00:00: Portfolio Value - 657596.72\n", + "2011-01-28 00:00:00: Portfolio Value - 680016.92\n", + "2011-01-31 00:00:00: Portfolio Value - 663922.82\n", + "2011-02-01 00:00:00: Portfolio Value - 662342.65\n", + "2011-02-02 00:00:00: Portfolio Value - 697498.49\n", + "2011-02-03 00:00:00: Portfolio Value - 732691.78\n", + "2011-02-04 00:00:00: Portfolio Value - 781282.80\n", + "2011-02-07 00:00:00: Portfolio Value - 765793.08\n", + "2011-02-08 00:00:00: Portfolio Value - 752240.51\n", + "2011-02-09 00:00:00: Portfolio Value - 761167.55\n", + "2011-02-10 00:00:00: Portfolio Value - 778815.10\n", + "2011-02-11 00:00:00: Portfolio Value - 801018.12\n", + "2011-02-14 00:00:00: Portfolio Value - 820931.01\n", + "2011-02-15 00:00:00: Portfolio Value - 792911.40\n", + "2011-02-16 00:00:00: Portfolio Value - 796804.23\n", + "2011-02-17 00:00:00: Portfolio Value - 790955.50\n", + "2011-02-18 00:00:00: Portfolio Value - 762685.36\n", + "2011-02-22 00:00:00: Portfolio Value - 759168.26\n", + "2011-02-23 00:00:00: Portfolio Value - 732062.03\n", + "2011-02-24 00:00:00: Portfolio Value - 729898.44\n", + "2011-02-25 00:00:00: Portfolio Value - 730344.90\n", + "2011-02-28 00:00:00: Portfolio Value - 698643.47\n", + "2011-03-01 00:00:00: Portfolio Value - 684069.26\n", + "2011-03-02 00:00:00: Portfolio Value - 702483.20\n", + "2011-03-03 00:00:00: Portfolio Value - 668389.44\n", + "2011-03-04 00:00:00: Portfolio Value - 700682.02\n", + "2011-03-07 00:00:00: Portfolio Value - 687583.52\n", + "2011-03-08 00:00:00: Portfolio Value - 684767.87\n", + "2011-03-09 00:00:00: Portfolio Value - 659052.41\n", + "2011-03-10 00:00:00: Portfolio Value - 717986.05\n", + "2011-03-11 00:00:00: Portfolio Value - 751732.50\n", + "2011-03-14 00:00:00: Portfolio Value - 761748.50\n", + "2011-03-15 00:00:00: Portfolio Value - 811175.94\n", + "2011-03-16 00:00:00: Portfolio Value - 830775.77\n", + "2011-03-17 00:00:00: Portfolio Value - 793125.99\n", + "2011-03-18 00:00:00: Portfolio Value - 742180.30\n", + "2011-03-21 00:00:00: Portfolio Value - 762997.85\n", + "2011-03-22 00:00:00: Portfolio Value - 735604.10\n", + "2011-03-23 00:00:00: Portfolio Value - 786106.67\n", + "2011-03-24 00:00:00: Portfolio Value - 794839.69\n", + "2011-03-25 00:00:00: Portfolio Value - 782312.54\n", + "2011-03-28 00:00:00: Portfolio Value - 780262.27\n", + "2011-03-29 00:00:00: Portfolio Value - 793139.93\n", + "2011-03-30 00:00:00: Portfolio Value - 733658.46\n", + "2011-03-31 00:00:00: Portfolio Value - 725218.37\n", + "2011-04-01 00:00:00: Portfolio Value - 675406.01\n", + "2011-04-04 00:00:00: Portfolio Value - 688777.13\n", + "2011-04-05 00:00:00: Portfolio Value - 711197.08\n", + "2011-04-06 00:00:00: Portfolio Value - 696601.28\n", + "2011-04-07 00:00:00: Portfolio Value - 707340.51\n", + "2011-04-08 00:00:00: Portfolio Value - 726687.35\n", + "2011-04-11 00:00:00: Portfolio Value - 712862.49\n", + "2011-04-12 00:00:00: Portfolio Value - 719065.20\n", + "2011-04-13 00:00:00: Portfolio Value - 738321.74\n", + "2011-04-14 00:00:00: Portfolio Value - 747842.25\n", + "2011-04-15 00:00:00: Portfolio Value - 746479.86\n", + "2011-04-18 00:00:00: Portfolio Value - 759697.61\n", + "2011-04-19 00:00:00: Portfolio Value - 768291.07\n", + "2011-04-20 00:00:00: Portfolio Value - 825841.80\n", + "2011-04-21 00:00:00: Portfolio Value - 835293.73\n", + "2011-04-25 00:00:00: Portfolio Value - 836243.90\n", + "2011-04-26 00:00:00: Portfolio Value - 802259.14\n", + "2011-04-27 00:00:00: Portfolio Value - 760243.67\n", + "2011-04-28 00:00:00: Portfolio Value - 762976.53\n", + "2011-04-29 00:00:00: Portfolio Value - 746450.21\n", + "2011-05-02 00:00:00: Portfolio Value - 751180.65\n", + "2011-05-03 00:00:00: Portfolio Value - 759250.39\n", + "2011-05-04 00:00:00: Portfolio Value - 735277.95\n", + "2011-05-05 00:00:00: Portfolio Value - 751970.53\n", + "2011-05-06 00:00:00: Portfolio Value - 734562.76\n", + "2011-05-09 00:00:00: Portfolio Value - 741178.66\n", + "2011-05-10 00:00:00: Portfolio Value - 747741.63\n", + "2011-05-11 00:00:00: Portfolio Value - 754350.66\n", + "2011-05-12 00:00:00: Portfolio Value - 785253.52\n", + "2011-05-13 00:00:00: Portfolio Value - 775560.02\n", + "2011-05-16 00:00:00: Portfolio Value - 761466.08\n", + "2011-05-17 00:00:00: Portfolio Value - 744429.66\n", + "2011-05-18 00:00:00: Portfolio Value - 787578.20\n", + "2011-05-19 00:00:00: Portfolio Value - 772097.37\n", + "2011-05-20 00:00:00: Portfolio Value - 772795.86\n", + "2011-05-23 00:00:00: Portfolio Value - 765984.03\n", + "2011-05-24 00:00:00: Portfolio Value - 774126.75\n", + "2011-05-25 00:00:00: Portfolio Value - 798780.85\n", + "2011-05-26 00:00:00: Portfolio Value - 813986.43\n", + "2011-05-27 00:00:00: Portfolio Value - 815113.32\n", + "2011-05-31 00:00:00: Portfolio Value - 784575.55\n", + "2011-06-01 00:00:00: Portfolio Value - 786587.50\n", + "2011-06-02 00:00:00: Portfolio Value - 800165.46\n", + "2011-06-03 00:00:00: Portfolio Value - 827502.67\n", + "2011-06-06 00:00:00: Portfolio Value - 824912.12\n", + "2011-06-07 00:00:00: Portfolio Value - 830477.72\n", + "2011-06-08 00:00:00: Portfolio Value - 850789.12\n", + "2011-06-09 00:00:00: Portfolio Value - 835146.62\n", + "2011-06-10 00:00:00: Portfolio Value - 836994.26\n", + "2011-06-13 00:00:00: Portfolio Value - 813148.66\n", + "2011-06-14 00:00:00: Portfolio Value - 830072.99\n", + "2011-06-15 00:00:00: Portfolio Value - 843419.20\n", + "2011-06-16 00:00:00: Portfolio Value - 799783.45\n", + "2011-06-17 00:00:00: Portfolio Value - 799298.18\n", + "2011-06-20 00:00:00: Portfolio Value - 802810.44\n", + "2011-06-21 00:00:00: Portfolio Value - 847909.82\n", + "2011-06-22 00:00:00: Portfolio Value - 860025.47\n", + "2011-06-23 00:00:00: Portfolio Value - 899812.20\n", + "2011-06-24 00:00:00: Portfolio Value - 920390.76\n", + "2011-06-27 00:00:00: Portfolio Value - 926083.74\n", + "2011-06-28 00:00:00: Portfolio Value - 944337.31\n", + "2011-06-29 00:00:00: Portfolio Value - 924046.50\n", + "2011-06-30 00:00:00: Portfolio Value - 936590.42\n", + "2011-07-01 00:00:00: Portfolio Value - 945175.40\n", + "2011-07-05 00:00:00: Portfolio Value - 1019139.23\n", + "2011-07-06 00:00:00: Portfolio Value - 1009677.94\n", + "2011-07-07 00:00:00: Portfolio Value - 1017125.59\n", + "2011-07-08 00:00:00: Portfolio Value - 1029511.83\n", + "2011-07-11 00:00:00: Portfolio Value - 1035849.41\n", + "2011-07-12 00:00:00: Portfolio Value - 1035217.17\n", + "2011-07-13 00:00:00: Portfolio Value - 1063626.09\n", + "2011-07-14 00:00:00: Portfolio Value - 1047343.19\n", + "2011-07-15 00:00:00: Portfolio Value - 1057685.90\n", + "2011-07-18 00:00:00: Portfolio Value - 1043940.15\n", + "2011-07-19 00:00:00: Portfolio Value - 1079149.18\n", + "2011-07-20 00:00:00: Portfolio Value - 1015007.20\n", + "2011-07-21 00:00:00: Portfolio Value - 918638.44\n", + "2011-07-22 00:00:00: Portfolio Value - 932470.35\n", + "2011-07-25 00:00:00: Portfolio Value - 911999.02\n", + "2011-07-26 00:00:00: Portfolio Value - 891514.02\n", + "2011-07-27 00:00:00: Portfolio Value - 893607.38\n", + "2011-07-28 00:00:00: Portfolio Value - 844864.45\n", + "2011-07-29 00:00:00: Portfolio Value - 842386.89\n", + "2011-08-01 00:00:00: Portfolio Value - 846112.53\n", + "2011-08-02 00:00:00: Portfolio Value - 808152.24\n", + "2011-08-03 00:00:00: Portfolio Value - 837289.85\n", + "2011-08-04 00:00:00: Portfolio Value - 822901.44\n", + "2011-08-05 00:00:00: Portfolio Value - 803003.17\n", + "2011-08-08 00:00:00: Portfolio Value - 828323.51\n", + "2011-08-09 00:00:00: Portfolio Value - 814003.12\n", + "2011-08-10 00:00:00: Portfolio Value - 875511.21\n", + "2011-08-11 00:00:00: Portfolio Value - 830827.41\n", + "2011-08-12 00:00:00: Portfolio Value - 901828.49\n", + "2011-08-15 00:00:00: Portfolio Value - 868987.69\n", + "2011-08-16 00:00:00: Portfolio Value - 855837.52\n", + "2011-08-17 00:00:00: Portfolio Value - 790691.34\n", + "2011-08-18 00:00:00: Portfolio Value - 766550.58\n", + "2011-08-19 00:00:00: Portfolio Value - 739879.48\n", + "2011-08-22 00:00:00: Portfolio Value - 732612.25\n", + "2011-08-23 00:00:00: Portfolio Value - 741690.93\n", + "2011-08-24 00:00:00: Portfolio Value - 720367.62\n", + "2011-08-25 00:00:00: Portfolio Value - 735158.33\n", + "2011-08-26 00:00:00: Portfolio Value - 756367.62\n", + "2011-08-29 00:00:00: Portfolio Value - 747891.45\n", + "2011-08-30 00:00:00: Portfolio Value - 766665.44\n", + "2011-08-31 00:00:00: Portfolio Value - 808449.28\n", + "2011-09-01 00:00:00: Portfolio Value - 819557.40\n", + "2011-09-02 00:00:00: Portfolio Value - 799743.71\n", + "2011-09-06 00:00:00: Portfolio Value - 823760.51\n", + "2011-09-07 00:00:00: Portfolio Value - 809384.12\n", + "2011-09-08 00:00:00: Portfolio Value - 826850.44\n", + "2011-09-09 00:00:00: Portfolio Value - 878879.44\n", + "2011-09-12 00:00:00: Portfolio Value - 895976.54\n", + "2011-09-13 00:00:00: Portfolio Value - 901591.12\n", + "2011-09-14 00:00:00: Portfolio Value - 904269.61\n", + "2011-09-15 00:00:00: Portfolio Value - 804488.17\n", + "2011-09-16 00:00:00: Portfolio Value - 775253.76\n", + "2011-09-19 00:00:00: Portfolio Value - 806531.15\n", + "2011-09-20 00:00:00: Portfolio Value - 738170.98\n", + "2011-09-21 00:00:00: Portfolio Value - 778701.70\n", + "2011-09-22 00:00:00: Portfolio Value - 787017.62\n", + "2011-09-23 00:00:00: Portfolio Value - 798315.69\n", + "2011-09-26 00:00:00: Portfolio Value - 811130.55\n", + "2011-09-27 00:00:00: Portfolio Value - 801431.17\n", + "2011-09-28 00:00:00: Portfolio Value - 813837.24\n", + "2011-09-29 00:00:00: Portfolio Value - 752471.62\n", + "2011-09-30 00:00:00: Portfolio Value - 735297.40\n", + "2011-10-03 00:00:00: Portfolio Value - 778259.34\n", + "2011-10-04 00:00:00: Portfolio Value - 795530.18\n", + "2011-10-05 00:00:00: Portfolio Value - 823818.21\n", + "2011-10-06 00:00:00: Portfolio Value - 844201.88\n", + "2011-10-07 00:00:00: Portfolio Value - 862343.79\n", + "2011-10-10 00:00:00: Portfolio Value - 851497.71\n", + "2011-10-11 00:00:00: Portfolio Value - 865816.25\n", + "2011-10-12 00:00:00: Portfolio Value - 864379.47\n", + "2011-10-13 00:00:00: Portfolio Value - 867343.47\n", + "2011-10-14 00:00:00: Portfolio Value - 872664.98\n", + "2011-10-17 00:00:00: Portfolio Value - 875094.64\n", + "2011-10-18 00:00:00: Portfolio Value - 857815.59\n", + "2011-10-19 00:00:00: Portfolio Value - 882049.66\n", + "2011-10-20 00:00:00: Portfolio Value - 860627.02\n", + "2011-10-21 00:00:00: Portfolio Value - 861078.91\n", + "2011-10-24 00:00:00: Portfolio Value - 896216.98\n", + "2011-10-25 00:00:00: Portfolio Value - 822891.74\n", + "2011-10-26 00:00:00: Portfolio Value - 833916.50\n", + "2011-10-27 00:00:00: Portfolio Value - 788564.96\n", + "2011-10-28 00:00:00: Portfolio Value - 810654.04\n", + "2011-10-31 00:00:00: Portfolio Value - 862007.33\n", + "2011-11-01 00:00:00: Portfolio Value - 924285.42\n", + "2011-11-02 00:00:00: Portfolio Value - 926962.06\n", + "2011-11-03 00:00:00: Portfolio Value - 928160.26\n", + "2011-11-04 00:00:00: Portfolio Value - 952673.86\n", + "2011-11-07 00:00:00: Portfolio Value - 912640.98\n", + "2011-11-08 00:00:00: Portfolio Value - 889940.75\n", + "2011-11-09 00:00:00: Portfolio Value - 937998.60\n", + "2011-11-10 00:00:00: Portfolio Value - 907972.81\n", + "2011-11-11 00:00:00: Portfolio Value - 882014.73\n", + "2011-11-14 00:00:00: Portfolio Value - 913087.63\n", + "2011-11-15 00:00:00: Portfolio Value - 896263.84\n", + "2011-11-16 00:00:00: Portfolio Value - 907028.60\n", + "2011-11-17 00:00:00: Portfolio Value - 891696.24\n", + "2011-11-18 00:00:00: Portfolio Value - 879730.01\n", + "2011-11-21 00:00:00: Portfolio Value - 858371.06\n", + "2011-11-22 00:00:00: Portfolio Value - 857967.21\n", + "2011-11-23 00:00:00: Portfolio Value - 864407.81\n", + "2011-11-25 00:00:00: Portfolio Value - 841960.75\n", + "2011-11-28 00:00:00: Portfolio Value - 876989.58\n", + "2011-11-29 00:00:00: Portfolio Value - 868167.97\n", + "2011-11-30 00:00:00: Portfolio Value - 855652.17\n", + "2011-12-01 00:00:00: Portfolio Value - 861511.48\n", + "2011-12-02 00:00:00: Portfolio Value - 879678.68\n", + "2011-12-05 00:00:00: Portfolio Value - 854684.45\n", + "2011-12-06 00:00:00: Portfolio Value - 834791.41\n", + "2011-12-07 00:00:00: Portfolio Value - 810041.41\n", + "2011-12-08 00:00:00: Portfolio Value - 840014.83\n", + "2011-12-09 00:00:00: Portfolio Value - 826835.89\n", + "2011-12-12 00:00:00: Portfolio Value - 842059.35\n", + "2011-12-13 00:00:00: Portfolio Value - 819536.01\n", + "2011-12-14 00:00:00: Portfolio Value - 769755.30\n", + "2011-12-15 00:00:00: Portfolio Value - 765976.34\n", + "2011-12-16 00:00:00: Portfolio Value - 750417.53\n", + "2011-12-19 00:00:00: Portfolio Value - 758073.50\n", + "2011-12-20 00:00:00: Portfolio Value - 739966.34\n", + "2011-12-21 00:00:00: Portfolio Value - 702066.53\n", + "2011-12-22 00:00:00: Portfolio Value - 678370.45\n", + "2011-12-23 00:00:00: Portfolio Value - 675878.42\n", + "2011-12-27 00:00:00: Portfolio Value - 681889.21\n", + "2011-12-28 00:00:00: Portfolio Value - 677442.70\n", + "2011-12-29 00:00:00: Portfolio Value - 665625.29\n", + "2011-12-30 00:00:00: Portfolio Value - 668316.41\n", + "2012-01-03 00:00:00: Portfolio Value - 666534.01\n", + "2012-01-04 00:00:00: Portfolio Value - 688789.99\n", + "2012-01-05 00:00:00: Portfolio Value - 697293.32\n", + "2012-01-06 00:00:00: Portfolio Value - 706460.28\n", + "2012-01-09 00:00:00: Portfolio Value - 730518.93\n", + "2012-01-10 00:00:00: Portfolio Value - 680901.77\n", + "2012-01-11 00:00:00: Portfolio Value - 703918.72\n", + "2012-01-12 00:00:00: Portfolio Value - 703179.97\n", + "2012-01-13 00:00:00: Portfolio Value - 694717.92\n", + "2012-01-17 00:00:00: Portfolio Value - 698511.87\n", + "2012-01-18 00:00:00: Portfolio Value - 716149.63\n", + "2012-01-19 00:00:00: Portfolio Value - 778609.94\n", + "2012-01-20 00:00:00: Portfolio Value - 765980.64\n", + "2012-01-23 00:00:00: Portfolio Value - 767183.76\n", + "2012-01-24 00:00:00: Portfolio Value - 764874.90\n", + "2012-01-25 00:00:00: Portfolio Value - 761737.07\n", + "2012-01-26 00:00:00: Portfolio Value - 752811.75\n", + "2012-01-27 00:00:00: Portfolio Value - 771099.55\n", + "2012-01-30 00:00:00: Portfolio Value - 811689.59\n", + "2012-01-31 00:00:00: Portfolio Value - 794772.50\n", + "2012-02-01 00:00:00: Portfolio Value - 811438.15\n", + "2012-02-02 00:00:00: Portfolio Value - 811821.16\n", + "2012-02-03 00:00:00: Portfolio Value - 805695.99\n", + "2012-02-06 00:00:00: Portfolio Value - 812292.98\n", + "2012-02-07 00:00:00: Portfolio Value - 814320.90\n", + "2012-02-08 00:00:00: Portfolio Value - 805701.92\n", + "2012-02-09 00:00:00: Portfolio Value - 813888.52\n", + "2012-02-10 00:00:00: Portfolio Value - 817042.41\n", + "2012-02-13 00:00:00: Portfolio Value - 824749.21\n", + "2012-02-14 00:00:00: Portfolio Value - 824911.23\n", + "2012-02-15 00:00:00: Portfolio Value - 817249.59\n", + "2012-02-16 00:00:00: Portfolio Value - 795917.90\n", + "2012-02-17 00:00:00: Portfolio Value - 763177.98\n", + "2012-02-21 00:00:00: Portfolio Value - 763404.57\n", + "2012-02-22 00:00:00: Portfolio Value - 770001.82\n", + "2012-02-23 00:00:00: Portfolio Value - 744800.07\n", + "2012-02-24 00:00:00: Portfolio Value - 736103.44\n", + "2012-02-27 00:00:00: Portfolio Value - 730800.37\n", + "2012-02-28 00:00:00: Portfolio Value - 735046.50\n", + "2012-02-29 00:00:00: Portfolio Value - 717110.14\n", + "2012-03-01 00:00:00: Portfolio Value - 734692.44\n", + "2012-03-02 00:00:00: Portfolio Value - 746759.48\n", + "2012-03-05 00:00:00: Portfolio Value - 751044.55\n", + "2012-03-06 00:00:00: Portfolio Value - 737602.75\n", + "2012-03-07 00:00:00: Portfolio Value - 735060.18\n", + "2012-03-08 00:00:00: Portfolio Value - 761279.49\n", + "2012-03-09 00:00:00: Portfolio Value - 759311.16\n", + "2012-03-12 00:00:00: Portfolio Value - 766053.19\n", + "2012-03-13 00:00:00: Portfolio Value - 755590.73\n", + "2012-03-14 00:00:00: Portfolio Value - 770117.96\n", + "2012-03-15 00:00:00: Portfolio Value - 763864.09\n", + "2012-03-16 00:00:00: Portfolio Value - 751685.19\n", + "2012-03-19 00:00:00: Portfolio Value - 778591.05\n", + "2012-03-20 00:00:00: Portfolio Value - 769490.64\n", + "2012-03-21 00:00:00: Portfolio Value - 781593.69\n", + "2012-03-22 00:00:00: Portfolio Value - 805895.55\n", + "2012-03-23 00:00:00: Portfolio Value - 782902.17\n", + "2012-03-26 00:00:00: Portfolio Value - 771480.81\n", + "2012-03-27 00:00:00: Portfolio Value - 755121.16\n", + "2012-03-28 00:00:00: Portfolio Value - 732546.38\n", + "2012-03-29 00:00:00: Portfolio Value - 760219.29\n", + "2012-03-30 00:00:00: Portfolio Value - 701199.51\n", + "2012-04-02 00:00:00: Portfolio Value - 703626.41\n", + "2012-04-03 00:00:00: Portfolio Value - 718987.61\n", + "2012-04-04 00:00:00: Portfolio Value - 727898.88\n", + "2012-04-05 00:00:00: Portfolio Value - 732925.71\n", + "2012-04-09 00:00:00: Portfolio Value - 732418.48\n", + "2012-04-10 00:00:00: Portfolio Value - 718596.62\n", + "2012-04-11 00:00:00: Portfolio Value - 709279.15\n", + "2012-04-12 00:00:00: Portfolio Value - 690245.20\n", + "2012-04-13 00:00:00: Portfolio Value - 717953.90\n", + "2012-04-16 00:00:00: Portfolio Value - 693818.84\n", + "2012-04-17 00:00:00: Portfolio Value - 685340.91\n", + "2012-04-18 00:00:00: Portfolio Value - 735229.30\n", + "2012-04-19 00:00:00: Portfolio Value - 813223.88\n", + "2012-04-20 00:00:00: Portfolio Value - 820875.96\n", + "2012-04-23 00:00:00: Portfolio Value - 810283.17\n", + "2012-04-24 00:00:00: Portfolio Value - 793933.67\n", + "2012-04-25 00:00:00: Portfolio Value - 786114.11\n", + "2012-04-26 00:00:00: Portfolio Value - 748518.37\n", + "2012-04-27 00:00:00: Portfolio Value - 786651.65\n", + "2012-04-30 00:00:00: Portfolio Value - 761083.47\n", + "2012-05-01 00:00:00: Portfolio Value - 785375.05\n", + "2012-05-02 00:00:00: Portfolio Value - 832927.51\n", + "2012-05-03 00:00:00: Portfolio Value - 856373.35\n", + "2012-05-04 00:00:00: Portfolio Value - 817516.72\n", + "2012-05-07 00:00:00: Portfolio Value - 809364.59\n", + "2012-05-08 00:00:00: Portfolio Value - 797211.60\n", + "2012-05-09 00:00:00: Portfolio Value - 825697.18\n", + "2012-05-10 00:00:00: Portfolio Value - 814744.19\n", + "2012-05-11 00:00:00: Portfolio Value - 838423.29\n", + "2012-05-14 00:00:00: Portfolio Value - 846051.27\n", + "2012-05-15 00:00:00: Portfolio Value - 838717.08\n", + "2012-05-16 00:00:00: Portfolio Value - 853855.54\n", + "2012-05-17 00:00:00: Portfolio Value - 805615.83\n", + "2012-05-18 00:00:00: Portfolio Value - 831504.85\n", + "2012-05-21 00:00:00: Portfolio Value - 889806.33\n", + "2012-05-22 00:00:00: Portfolio Value - 938392.59\n", + "2012-05-23 00:00:00: Portfolio Value - 921544.35\n", + "2012-05-24 00:00:00: Portfolio Value - 869097.05\n", + "2012-05-25 00:00:00: Portfolio Value - 858770.93\n", + "2012-05-29 00:00:00: Portfolio Value - 810765.87\n", + "2012-05-30 00:00:00: Portfolio Value - 817304.32\n", + "2012-05-31 00:00:00: Portfolio Value - 770805.69\n", + "2012-06-01 00:00:00: Portfolio Value - 743691.97\n", + "2012-06-04 00:00:00: Portfolio Value - 738702.16\n", + "2012-06-05 00:00:00: Portfolio Value - 751676.85\n", + "2012-06-06 00:00:00: Portfolio Value - 769368.74\n", + "2012-06-07 00:00:00: Portfolio Value - 757201.41\n", + "2012-06-08 00:00:00: Portfolio Value - 729204.03\n", + "2012-06-11 00:00:00: Portfolio Value - 706591.16\n", + "2012-06-12 00:00:00: Portfolio Value - 714915.04\n", + "2012-06-13 00:00:00: Portfolio Value - 699584.24\n", + "2012-06-14 00:00:00: Portfolio Value - 690663.25\n", + "2012-06-15 00:00:00: Portfolio Value - 676263.73\n", + "2012-06-18 00:00:00: Portfolio Value - 714352.72\n", + "2012-06-19 00:00:00: Portfolio Value - 715103.76\n", + "2012-06-20 00:00:00: Portfolio Value - 707576.70\n", + "2012-06-21 00:00:00: Portfolio Value - 690696.56\n", + "2012-06-22 00:00:00: Portfolio Value - 710503.12\n", + "2012-06-25 00:00:00: Portfolio Value - 704579.94\n", + "2012-06-26 00:00:00: Portfolio Value - 666018.48\n", + "2012-06-27 00:00:00: Portfolio Value - 650757.41\n", + "2012-06-28 00:00:00: Portfolio Value - 602103.59\n", + "2012-06-29 00:00:00: Portfolio Value - 621832.90\n", + "2012-07-02 00:00:00: Portfolio Value - 595842.32\n", + "2012-07-03 00:00:00: Portfolio Value - 581895.89\n", + "2012-07-05 00:00:00: Portfolio Value - 645711.06\n", + "2012-07-06 00:00:00: Portfolio Value - 630546.95\n", + "2012-07-09 00:00:00: Portfolio Value - 629594.91\n", + "2012-07-10 00:00:00: Portfolio Value - 606338.51\n", + "2012-07-11 00:00:00: Portfolio Value - 563003.49\n", + "2012-07-12 00:00:00: Portfolio Value - 581077.22\n", + "2012-07-13 00:00:00: Portfolio Value - 552826.81\n", + "2012-07-16 00:00:00: Portfolio Value - 540706.20\n", + "2012-07-17 00:00:00: Portfolio Value - 533073.23\n", + "2012-07-18 00:00:00: Portfolio Value - 608184.67\n", + "2012-07-19 00:00:00: Portfolio Value - 635336.84\n", + "2012-07-20 00:00:00: Portfolio Value - 576312.79\n", + "2012-07-23 00:00:00: Portfolio Value - 612551.38\n", + "2012-07-24 00:00:00: Portfolio Value - 609923.46\n", + "2012-07-25 00:00:00: Portfolio Value - 577650.28\n", + "2012-07-26 00:00:00: Portfolio Value - 515751.76\n", + "2012-07-27 00:00:00: Portfolio Value - 501369.04\n", + "2012-07-30 00:00:00: Portfolio Value - 498121.87\n", + "2012-07-31 00:00:00: Portfolio Value - 475511.96\n", + "2012-08-01 00:00:00: Portfolio Value - 500423.69\n", + "2012-08-02 00:00:00: Portfolio Value - 451439.79\n", + "2012-08-03 00:00:00: Portfolio Value - 450161.36\n", + "2012-08-06 00:00:00: Portfolio Value - 482868.01\n", + "2012-08-07 00:00:00: Portfolio Value - 517965.19\n", + "2012-08-08 00:00:00: Portfolio Value - 485293.54\n", + "2012-08-09 00:00:00: Portfolio Value - 477049.75\n", + "2012-08-10 00:00:00: Portfolio Value - 467984.24\n", + "2012-08-13 00:00:00: Portfolio Value - 463229.14\n", + "2012-08-14 00:00:00: Portfolio Value - 472062.66\n", + "2012-08-15 00:00:00: Portfolio Value - 450818.71\n", + "2012-08-16 00:00:00: Portfolio Value - 497287.30\n", + "2012-08-17 00:00:00: Portfolio Value - 485321.91\n", + "2012-08-20 00:00:00: Portfolio Value - 463612.49\n", + "2012-08-21 00:00:00: Portfolio Value - 481692.69\n", + "2012-08-22 00:00:00: Portfolio Value - 471115.62\n", + "2012-08-23 00:00:00: Portfolio Value - 473943.16\n", + "2012-08-24 00:00:00: Portfolio Value - 473850.38\n", + "2012-08-27 00:00:00: Portfolio Value - 481856.10\n", + "2012-08-28 00:00:00: Portfolio Value - 470678.73\n", + "2012-08-29 00:00:00: Portfolio Value - 474001.83\n", + "2012-08-30 00:00:00: Portfolio Value - 449887.08\n", + "2012-08-31 00:00:00: Portfolio Value - 440591.11\n", + "2012-09-04 00:00:00: Portfolio Value - 419294.56\n", + "2012-09-05 00:00:00: Portfolio Value - 386721.55\n", + "2012-09-06 00:00:00: Portfolio Value - 381322.35\n", + "2012-09-07 00:00:00: Portfolio Value - 419415.82\n", + "2012-09-10 00:00:00: Portfolio Value - 435044.85\n", + "2012-09-11 00:00:00: Portfolio Value - 441626.42\n", + "2012-09-12 00:00:00: Portfolio Value - 449689.31\n", + "2012-09-13 00:00:00: Portfolio Value - 399916.53\n", + "2012-09-14 00:00:00: Portfolio Value - 453749.55\n", + "2012-09-17 00:00:00: Portfolio Value - 434762.31\n", + "2012-09-18 00:00:00: Portfolio Value - 439046.80\n", + "2012-09-19 00:00:00: Portfolio Value - 476833.66\n", + "2012-09-20 00:00:00: Portfolio Value - 476813.35\n", + "2012-09-21 00:00:00: Portfolio Value - 460454.35\n", + "2012-09-24 00:00:00: Portfolio Value - 472096.39\n", + "2012-09-25 00:00:00: Portfolio Value - 471280.65\n", + "2012-09-26 00:00:00: Portfolio Value - 457544.24\n", + "2012-09-27 00:00:00: Portfolio Value - 433348.44\n", + "2012-09-28 00:00:00: Portfolio Value - 426375.84\n", + "2012-10-01 00:00:00: Portfolio Value - 418618.27\n", + "2012-10-02 00:00:00: Portfolio Value - 450950.72\n", + "2012-10-03 00:00:00: Portfolio Value - 421644.80\n", + "2012-10-04 00:00:00: Portfolio Value - 411053.66\n", + "2012-10-05 00:00:00: Portfolio Value - 399214.04\n", + "2012-10-08 00:00:00: Portfolio Value - 387436.98\n", + "2012-10-09 00:00:00: Portfolio Value - 350195.39\n", + "2012-10-10 00:00:00: Portfolio Value - 360998.28\n", + "2012-10-11 00:00:00: Portfolio Value - 356647.06\n", + "2012-10-12 00:00:00: Portfolio Value - 351531.83\n", + "2012-10-15 00:00:00: Portfolio Value - 325960.80\n", + "2012-10-16 00:00:00: Portfolio Value - 336232.51\n", + "2012-10-17 00:00:00: Portfolio Value - 336278.47\n", + "2012-10-18 00:00:00: Portfolio Value - 341508.29\n", + "2012-10-19 00:00:00: Portfolio Value - 317821.44\n", + "2012-10-22 00:00:00: Portfolio Value - 321781.31\n", + "2012-10-23 00:00:00: Portfolio Value - 316250.95\n", + "2012-10-24 00:00:00: Portfolio Value - 302067.81\n", + "2012-10-25 00:00:00: Portfolio Value - 258226.66\n", + "2012-10-26 00:00:00: Portfolio Value - 251626.48\n", + "2012-10-31 00:00:00: Portfolio Value - 241560.43\n", + "2012-11-01 00:00:00: Portfolio Value - 274497.43\n", + "2012-11-02 00:00:00: Portfolio Value - 243990.86\n", + "2012-11-05 00:00:00: Portfolio Value - 293537.64\n", + "2012-11-06 00:00:00: Portfolio Value - 309267.69\n", + "2012-11-07 00:00:00: Portfolio Value - 355772.01\n", + "2012-11-08 00:00:00: Portfolio Value - 366252.69\n", + "2012-11-09 00:00:00: Portfolio Value - 355555.81\n", + "2012-11-12 00:00:00: Portfolio Value - 309336.24\n", + "2012-11-13 00:00:00: Portfolio Value - 324492.03\n", + "2012-11-14 00:00:00: Portfolio Value - 329601.45\n", + "2012-11-15 00:00:00: Portfolio Value - 338498.56\n", + "2012-11-16 00:00:00: Portfolio Value - 323259.30\n", + "2012-11-19 00:00:00: Portfolio Value - 330131.01\n", + "2012-11-20 00:00:00: Portfolio Value - 305648.82\n", + "2012-11-21 00:00:00: Portfolio Value - 330766.68\n", + "2012-11-23 00:00:00: Portfolio Value - 333914.15\n", + "2012-11-26 00:00:00: Portfolio Value - 343162.10\n", + "2012-11-27 00:00:00: Portfolio Value - 353914.26\n", + "2012-11-28 00:00:00: Portfolio Value - 342493.81\n", + "2012-11-29 00:00:00: Portfolio Value - 333952.68\n", + "2012-11-30 00:00:00: Portfolio Value - 333797.42\n", + "2012-12-03 00:00:00: Portfolio Value - 321977.69\n", + "2012-12-04 00:00:00: Portfolio Value - 356529.85\n", + "2012-12-05 00:00:00: Portfolio Value - 349782.39\n", + "2012-12-06 00:00:00: Portfolio Value - 339528.87\n", + "2012-12-07 00:00:00: Portfolio Value - 315886.90\n", + "2012-12-10 00:00:00: Portfolio Value - 297367.15\n", + "2012-12-11 00:00:00: Portfolio Value - 239839.57\n", + "2012-12-12 00:00:00: Portfolio Value - 253854.72\n", + "2012-12-13 00:00:00: Portfolio Value - 248768.89\n", + "2012-12-14 00:00:00: Portfolio Value - 216987.94\n", + "2012-12-17 00:00:00: Portfolio Value - 195325.68\n", + "2012-12-18 00:00:00: Portfolio Value - 217410.17\n", + "2012-12-19 00:00:00: Portfolio Value - 208185.25\n", + "2012-12-20 00:00:00: Portfolio Value - 181177.79\n", + "2012-12-21 00:00:00: Portfolio Value - 197494.69\n", + "2012-12-24 00:00:00: Portfolio Value - 191423.00\n", + "2012-12-26 00:00:00: Portfolio Value - 206128.58\n", + "2012-12-27 00:00:00: Portfolio Value - 198513.78\n", + "2012-12-28 00:00:00: Portfolio Value - 203289.94\n", + "2012-12-31 00:00:00: Portfolio Value - 201455.14\n", + "2013-01-02 00:00:00: Portfolio Value - 164998.01\n", + "2013-01-03 00:00:00: Portfolio Value - 175339.77\n", + "2013-01-04 00:00:00: Portfolio Value - 122726.50\n", + "2013-01-07 00:00:00: Portfolio Value - 115924.16\n", + "2013-01-08 00:00:00: Portfolio Value - 145939.50\n", + "2013-01-09 00:00:00: Portfolio Value - 125344.18\n", + "2013-01-10 00:00:00: Portfolio Value - 91965.69\n", + "2013-01-11 00:00:00: Portfolio Value - 74251.99\n", + "2013-01-14 00:00:00: Portfolio Value - 79102.80\n", + "2013-01-15 00:00:00: Portfolio Value - 77511.79\n", + "2013-01-16 00:00:00: Portfolio Value - 66883.67\n", + "2013-01-17 00:00:00: Portfolio Value - 15656.78\n", + "2013-01-18 00:00:00: Portfolio Value - -22544.69\n", + "2013-01-22 00:00:00: Portfolio Value - -50486.78\n", + "2013-01-23 00:00:00: Portfolio Value - -21100.64\n", + "2013-01-24 00:00:00: Portfolio Value - 47853.37\n", + "2013-01-25 00:00:00: Portfolio Value - 105873.04\n", + "2013-01-28 00:00:00: Portfolio Value - 118578.66\n", + "2013-01-29 00:00:00: Portfolio Value - 93745.84\n", + "2013-01-30 00:00:00: Portfolio Value - 84537.66\n", + "2013-01-31 00:00:00: Portfolio Value - 86989.26\n", + "2013-02-01 00:00:00: Portfolio Value - 72855.51\n", + "2013-02-04 00:00:00: Portfolio Value - 137820.23\n", + "2013-02-05 00:00:00: Portfolio Value - 123012.78\n", + "2013-02-06 00:00:00: Portfolio Value - 152989.19\n", + "2013-02-07 00:00:00: Portfolio Value - 157499.94\n", + "2013-02-08 00:00:00: Portfolio Value - 139490.75\n", + "2013-02-11 00:00:00: Portfolio Value - 119349.11\n", + "2013-02-12 00:00:00: Portfolio Value - 135136.73\n", + "2013-02-13 00:00:00: Portfolio Value - 132902.15\n", + "2013-02-14 00:00:00: Portfolio Value - 33810.09\n", + "2013-02-15 00:00:00: Portfolio Value - 62448.69\n", + "2013-02-19 00:00:00: Portfolio Value - 39562.12\n", + "2013-02-20 00:00:00: Portfolio Value - 74992.60\n", + "2013-02-21 00:00:00: Portfolio Value - 99021.48\n", + "2013-02-22 00:00:00: Portfolio Value - 65656.02\n", + "2013-02-25 00:00:00: Portfolio Value - 65716.70\n", + "2013-02-26 00:00:00: Portfolio Value - 54726.83\n", + "2013-02-27 00:00:00: Portfolio Value - 30367.31\n", + "2013-02-28 00:00:00: Portfolio Value - 71517.17\n", + "2013-03-01 00:00:00: Portfolio Value - 76662.55\n", + "2013-03-04 00:00:00: Portfolio Value - 36416.88\n", + "2013-03-05 00:00:00: Portfolio Value - 3738.94\n", + "2013-03-06 00:00:00: Portfolio Value - -18342.36\n", + "2013-03-07 00:00:00: Portfolio Value - -16366.97\n", + "2013-03-08 00:00:00: Portfolio Value - 4195.53\n", + "2013-03-11 00:00:00: Portfolio Value - -816.29\n", + "2013-03-12 00:00:00: Portfolio Value - -28580.45\n", + "2013-03-13 00:00:00: Portfolio Value - -46026.95\n", + "2013-03-14 00:00:00: Portfolio Value - -58231.20\n", + "2013-03-15 00:00:00: Portfolio Value - -120798.21\n", + "2013-03-18 00:00:00: Portfolio Value - -98314.74\n", + "2013-03-19 00:00:00: Portfolio Value - -93899.66\n", + "2013-03-20 00:00:00: Portfolio Value - -126563.77\n", + "2013-03-21 00:00:00: Portfolio Value - -98666.46\n", + "2013-03-22 00:00:00: Portfolio Value - -117542.77\n", + "2013-03-25 00:00:00: Portfolio Value - -114415.36\n", + "2013-03-26 00:00:00: Portfolio Value - -129590.27\n", + "2013-03-27 00:00:00: Portfolio Value - -118289.06\n", + "2013-03-28 00:00:00: Portfolio Value - -120042.65\n", + "2013-04-01 00:00:00: Portfolio Value - -136355.86\n", + "2013-04-02 00:00:00: Portfolio Value - -176448.82\n", + "2013-04-03 00:00:00: Portfolio Value - -114242.73\n", + "2013-04-04 00:00:00: Portfolio Value - -118150.16\n", + "2013-04-05 00:00:00: Portfolio Value - -167211.00\n", + "2013-04-08 00:00:00: Portfolio Value - -204890.11\n", + "2013-04-09 00:00:00: Portfolio Value - -218975.15\n", + "2013-04-10 00:00:00: Portfolio Value - -293247.45\n", + "2013-04-11 00:00:00: Portfolio Value - -297449.77\n", + "2013-04-12 00:00:00: Portfolio Value - -288260.78\n", + "2013-04-15 00:00:00: Portfolio Value - -255118.89\n", + "2013-04-16 00:00:00: Portfolio Value - -255174.77\n", + "2013-04-17 00:00:00: Portfolio Value - -230724.17\n", + "2013-04-18 00:00:00: Portfolio Value - -208978.53\n", + "2013-04-19 00:00:00: Portfolio Value - -256231.67\n", + "2013-04-22 00:00:00: Portfolio Value - -234871.24\n", + "2013-04-23 00:00:00: Portfolio Value - -229702.44\n", + "2013-04-24 00:00:00: Portfolio Value - -203062.29\n", + "2013-04-25 00:00:00: Portfolio Value - -220013.22\n", + "2013-04-26 00:00:00: Portfolio Value - -224297.52\n", + "2013-04-29 00:00:00: Portfolio Value - -251354.08\n", + "2013-04-30 00:00:00: Portfolio Value - -249176.87\n", + "2013-05-01 00:00:00: Portfolio Value - -242583.54\n", + "2013-05-02 00:00:00: Portfolio Value - -217870.01\n", + "2013-05-03 00:00:00: Portfolio Value - -258657.26\n", + "2013-05-06 00:00:00: Portfolio Value - -252618.87\n", + "2013-05-07 00:00:00: Portfolio Value - -264914.41\n", + "2013-05-08 00:00:00: Portfolio Value - -257608.27\n", + "2013-05-09 00:00:00: Portfolio Value - -220673.14\n", + "2013-05-10 00:00:00: Portfolio Value - -193292.71\n", + "2013-05-13 00:00:00: Portfolio Value - -198556.39\n", + "2013-05-14 00:00:00: Portfolio Value - -231851.64\n", + "2013-05-15 00:00:00: Portfolio Value - -266634.01\n", + "2013-05-16 00:00:00: Portfolio Value - -239082.71\n", + "2013-05-17 00:00:00: Portfolio Value - -261121.19\n", + "2013-05-20 00:00:00: Portfolio Value - -227069.21\n", + "2013-05-21 00:00:00: Portfolio Value - -258517.66\n", + "2013-05-22 00:00:00: Portfolio Value - -211902.79\n", + "2013-05-23 00:00:00: Portfolio Value - -171096.02\n", + "2013-05-24 00:00:00: Portfolio Value - -178077.62\n", + "2013-05-28 00:00:00: Portfolio Value - -202399.22\n", + "2013-05-29 00:00:00: Portfolio Value - -178556.39\n", + "2013-05-30 00:00:00: Portfolio Value - -167185.17\n", + "2013-05-31 00:00:00: Portfolio Value - -130598.62\n", + "2013-06-03 00:00:00: Portfolio Value - -159512.28\n", + "2013-06-04 00:00:00: Portfolio Value - -167201.42\n", + "2013-06-05 00:00:00: Portfolio Value - -121446.92\n", + "2013-06-06 00:00:00: Portfolio Value - -163491.50\n", + "2013-06-07 00:00:00: Portfolio Value - -223528.77\n", + "2013-06-10 00:00:00: Portfolio Value - -251411.50\n", + "2013-06-11 00:00:00: Portfolio Value - -233836.46\n", + "2013-06-12 00:00:00: Portfolio Value - -97580.59\n", + "2013-06-13 00:00:00: Portfolio Value - -111394.10\n", + "2013-06-14 00:00:00: Portfolio Value - -107738.99\n", + "2013-06-17 00:00:00: Portfolio Value - -129510.86\n", + "2013-06-18 00:00:00: Portfolio Value - -111502.78\n", + "2013-06-19 00:00:00: Portfolio Value - -55575.29\n", + "2013-06-20 00:00:00: Portfolio Value - 57371.93\n", + "2013-06-21 00:00:00: Portfolio Value - 67145.83\n", + "2013-06-24 00:00:00: Portfolio Value - 78641.98\n", + "2013-06-25 00:00:00: Portfolio Value - 30258.08\n", + "2013-06-26 00:00:00: Portfolio Value - -13948.03\n", + "2013-06-27 00:00:00: Portfolio Value - -40433.07\n", + "2013-06-28 00:00:00: Portfolio Value - -600.01\n", + "2013-07-01 00:00:00: Portfolio Value - 28748.08\n", + "2013-07-02 00:00:00: Portfolio Value - 19322.45\n", + "2013-07-03 00:00:00: Portfolio Value - 38813.24\n", + "2013-07-05 00:00:00: Portfolio Value - 52573.03\n", + "2013-07-08 00:00:00: Portfolio Value - 41028.61\n", + "2013-07-09 00:00:00: Portfolio Value - -7190.05\n", + "2013-07-10 00:00:00: Portfolio Value - -36359.68\n", + "2013-07-11 00:00:00: Portfolio Value - -82542.48\n", + "2013-07-12 00:00:00: Portfolio Value - -67322.19\n", + "2013-07-15 00:00:00: Portfolio Value - -70372.27\n", + "2013-07-16 00:00:00: Portfolio Value - -36890.20\n", + "2013-07-17 00:00:00: Portfolio Value - -81962.12\n", + "2013-07-18 00:00:00: Portfolio Value - -116962.06\n", + "2013-07-19 00:00:00: Portfolio Value - -131964.04\n", + "2013-07-22 00:00:00: Portfolio Value - -151825.80\n", + "2013-07-23 00:00:00: Portfolio Value - -170861.93\n", + "2013-07-24 00:00:00: Portfolio Value - -194607.72\n", + "2013-07-25 00:00:00: Portfolio Value - -132327.34\n", + "2013-07-26 00:00:00: Portfolio Value - -119811.89\n", + "2013-07-29 00:00:00: Portfolio Value - -103430.94\n", + "2013-07-30 00:00:00: Portfolio Value - -52802.40\n", + "2013-07-31 00:00:00: Portfolio Value - -63310.24\n", + "2013-08-01 00:00:00: Portfolio Value - -27386.42\n", + "2013-08-02 00:00:00: Portfolio Value - -17632.07\n", + "2013-08-05 00:00:00: Portfolio Value - -19094.70\n", + "2013-08-06 00:00:00: Portfolio Value - -19622.75\n", + "2013-08-07 00:00:00: Portfolio Value - -8609.91\n", + "2013-08-08 00:00:00: Portfolio Value - 62289.68\n", + "2013-08-09 00:00:00: Portfolio Value - 56234.76\n", + "2013-08-12 00:00:00: Portfolio Value - 91753.21\n", + "2013-08-13 00:00:00: Portfolio Value - 102011.40\n", + "2013-08-14 00:00:00: Portfolio Value - 121687.57\n", + "2013-08-15 00:00:00: Portfolio Value - 137765.78\n", + "2013-08-16 00:00:00: Portfolio Value - 140819.03\n", + "2013-08-19 00:00:00: Portfolio Value - 172374.98\n", + "2013-08-20 00:00:00: Portfolio Value - 187415.70\n", + "2013-08-21 00:00:00: Portfolio Value - 280617.68\n", + "2013-08-22 00:00:00: Portfolio Value - 265101.76\n", + "2013-08-23 00:00:00: Portfolio Value - 257621.10\n", + "2013-08-26 00:00:00: Portfolio Value - 274221.56\n", + "2013-08-27 00:00:00: Portfolio Value - 270575.36\n", + "2013-08-28 00:00:00: Portfolio Value - 283156.70\n", + "2013-08-29 00:00:00: Portfolio Value - 257065.88\n", + "2013-08-30 00:00:00: Portfolio Value - 260716.98\n", + "2013-09-03 00:00:00: Portfolio Value - 248517.32\n", + "2013-09-04 00:00:00: Portfolio Value - 258579.30\n", + "2013-09-05 00:00:00: Portfolio Value - 317475.76\n", + "2013-09-06 00:00:00: Portfolio Value - 322040.59\n", + "2013-09-09 00:00:00: Portfolio Value - 344073.66\n", + "2013-09-10 00:00:00: Portfolio Value - 357132.53\n", + "2013-09-11 00:00:00: Portfolio Value - 367798.12\n", + "2013-09-12 00:00:00: Portfolio Value - 363214.68\n", + "2013-09-13 00:00:00: Portfolio Value - 428528.59\n", + "2013-09-16 00:00:00: Portfolio Value - 368777.72\n", + "2013-09-17 00:00:00: Portfolio Value - 367647.07\n", + "2013-09-18 00:00:00: Portfolio Value - 340858.68\n", + "2013-09-19 00:00:00: Portfolio Value - 316542.97\n", + "2013-09-20 00:00:00: Portfolio Value - 324834.58\n", + "2013-09-23 00:00:00: Portfolio Value - 317930.89\n", + "2013-09-24 00:00:00: Portfolio Value - 355016.18\n", + "2013-09-25 00:00:00: Portfolio Value - 376108.37\n", + "2013-09-26 00:00:00: Portfolio Value - 379798.84\n", + "2013-09-27 00:00:00: Portfolio Value - 385358.35\n", + "2013-09-30 00:00:00: Portfolio Value - 367407.82\n", + "2013-10-01 00:00:00: Portfolio Value - 441418.80\n", + "2013-10-02 00:00:00: Portfolio Value - 472434.79\n", + "2013-10-03 00:00:00: Portfolio Value - 513752.43\n", + "2013-10-04 00:00:00: Portfolio Value - 519683.56\n", + "2013-10-07 00:00:00: Portfolio Value - 527068.41\n", + "2013-10-08 00:00:00: Portfolio Value - 483288.22\n", + "2013-10-09 00:00:00: Portfolio Value - 431343.08\n", + "2013-10-10 00:00:00: Portfolio Value - 404524.69\n", + "2013-10-11 00:00:00: Portfolio Value - 377935.41\n", + "2013-10-14 00:00:00: Portfolio Value - 394361.57\n", + "2013-10-15 00:00:00: Portfolio Value - 383882.53\n", + "2013-10-16 00:00:00: Portfolio Value - 340142.50\n", + "2013-10-17 00:00:00: Portfolio Value - 291450.79\n", + "2013-10-18 00:00:00: Portfolio Value - 323139.48\n", + "2013-10-21 00:00:00: Portfolio Value - 367231.37\n", + "2013-10-22 00:00:00: Portfolio Value - 302959.55\n", + "2013-10-23 00:00:00: Portfolio Value - 307215.52\n", + "2013-10-24 00:00:00: Portfolio Value - 290635.92\n", + "2013-10-25 00:00:00: Portfolio Value - 201590.68\n", + "2013-10-28 00:00:00: Portfolio Value - 178901.34\n", + "2013-10-29 00:00:00: Portfolio Value - 196900.71\n", + "2013-10-30 00:00:00: Portfolio Value - 193937.81\n", + "2013-10-31 00:00:00: Portfolio Value - 251420.86\n", + "2013-11-01 00:00:00: Portfolio Value - 207989.73\n", + "2013-11-04 00:00:00: Portfolio Value - 245183.11\n", + "2013-11-05 00:00:00: Portfolio Value - 275691.10\n", + "2013-11-06 00:00:00: Portfolio Value - 235026.49\n", + "2013-11-07 00:00:00: Portfolio Value - 283274.68\n", + "2013-11-08 00:00:00: Portfolio Value - 281688.64\n", + "2013-11-11 00:00:00: Portfolio Value - 299750.62\n", + "2013-11-12 00:00:00: Portfolio Value - 355835.51\n", + "2013-11-13 00:00:00: Portfolio Value - 382596.26\n", + "2013-11-14 00:00:00: Portfolio Value - 349530.79\n", + "2013-11-15 00:00:00: Portfolio Value - 346482.86\n", + "2013-11-18 00:00:00: Portfolio Value - 321430.40\n", + "2013-11-19 00:00:00: Portfolio Value - 277617.20\n", + "2013-11-20 00:00:00: Portfolio Value - 315301.29\n", + "2013-11-21 00:00:00: Portfolio Value - 313138.88\n", + "2013-11-22 00:00:00: Portfolio Value - 335216.62\n", + "2013-11-25 00:00:00: Portfolio Value - 311974.87\n", + "2013-11-26 00:00:00: Portfolio Value - 303455.06\n", + "2013-11-27 00:00:00: Portfolio Value - 279296.71\n", + "2013-11-29 00:00:00: Portfolio Value - 289866.71\n", + "2013-12-02 00:00:00: Portfolio Value - 267903.45\n", + "2013-12-03 00:00:00: Portfolio Value - 322952.50\n", + "2013-12-04 00:00:00: Portfolio Value - 280290.97\n", + "2013-12-05 00:00:00: Portfolio Value - 270108.52\n", + "2013-12-06 00:00:00: Portfolio Value - 144904.69\n", + "2013-12-09 00:00:00: Portfolio Value - 133767.00\n", + "2013-12-10 00:00:00: Portfolio Value - 188895.44\n", + "2013-12-11 00:00:00: Portfolio Value - 227357.70\n", + "2013-12-12 00:00:00: Portfolio Value - 250179.76\n", + "2013-12-13 00:00:00: Portfolio Value - 178673.21\n", + "2013-12-16 00:00:00: Portfolio Value - 143521.06\n", + "2013-12-17 00:00:00: Portfolio Value - 160233.60\n", + "2013-12-18 00:00:00: Portfolio Value - 115690.84\n", + "2013-12-19 00:00:00: Portfolio Value - 146357.84\n", + "2013-12-20 00:00:00: Portfolio Value - 131122.60\n", + "2013-12-23 00:00:00: Portfolio Value - 123414.10\n", + "2013-12-24 00:00:00: Portfolio Value - 124481.95\n", + "2013-12-26 00:00:00: Portfolio Value - 133760.76\n", + "2013-12-27 00:00:00: Portfolio Value - 99132.96\n", + "2013-12-30 00:00:00: Portfolio Value - 122396.74\n", + "2013-12-31 00:00:00: Portfolio Value - 111641.75\n", + "2014-01-02 00:00:00: Portfolio Value - 129530.94\n", + "2014-01-03 00:00:00: Portfolio Value - 128604.60\n", + "2014-01-06 00:00:00: Portfolio Value - 109534.89\n", + "2014-01-07 00:00:00: Portfolio Value - 61638.36\n", + "2014-01-08 00:00:00: Portfolio Value - 102044.16\n", + "2014-01-09 00:00:00: Portfolio Value - 96523.73\n", + "2014-01-10 00:00:00: Portfolio Value - 111836.67\n", + "2014-01-13 00:00:00: Portfolio Value - 169058.00\n", + "2014-01-14 00:00:00: Portfolio Value - 178715.17\n", + "2014-01-15 00:00:00: Portfolio Value - 158734.28\n", + "2014-01-16 00:00:00: Portfolio Value - 114071.00\n", + "2014-01-17 00:00:00: Portfolio Value - 110102.68\n", + "2014-01-21 00:00:00: Portfolio Value - 103229.52\n", + "2014-01-22 00:00:00: Portfolio Value - 65322.60\n", + "2014-01-23 00:00:00: Portfolio Value - 192486.61\n", + "2014-01-24 00:00:00: Portfolio Value - 231140.03\n", + "2014-01-27 00:00:00: Portfolio Value - 248701.42\n", + "2014-01-28 00:00:00: Portfolio Value - 302056.77\n", + "2014-01-29 00:00:00: Portfolio Value - 296708.38\n", + "2014-01-30 00:00:00: Portfolio Value - 292982.18\n", + "2014-01-31 00:00:00: Portfolio Value - 310105.64\n", + "2014-02-03 00:00:00: Portfolio Value - 359931.72\n", + "2014-02-04 00:00:00: Portfolio Value - 336144.41\n", + "2014-02-05 00:00:00: Portfolio Value - 351979.19\n", + "2014-02-06 00:00:00: Portfolio Value - 356672.68\n", + "2014-02-07 00:00:00: Portfolio Value - 370368.02\n", + "2014-02-10 00:00:00: Portfolio Value - 354471.37\n", + "2014-02-11 00:00:00: Portfolio Value - 330371.58\n", + "2014-02-12 00:00:00: Portfolio Value - 371433.52\n", + "2014-02-13 00:00:00: Portfolio Value - 318567.30\n", + "2014-02-14 00:00:00: Portfolio Value - 317164.15\n", + "2014-02-18 00:00:00: Portfolio Value - 325947.60\n", + "2014-02-19 00:00:00: Portfolio Value - 307203.90\n", + "2014-02-20 00:00:00: Portfolio Value - 344471.71\n", + "2014-02-21 00:00:00: Portfolio Value - 368130.36\n", + "2014-02-24 00:00:00: Portfolio Value - 408953.09\n", + "2014-02-25 00:00:00: Portfolio Value - 466418.69\n", + "2014-02-26 00:00:00: Portfolio Value - 497709.10\n", + "2014-02-27 00:00:00: Portfolio Value - 435129.09\n", + "2014-02-28 00:00:00: Portfolio Value - 408170.50\n", + "2014-03-03 00:00:00: Portfolio Value - 419402.99\n", + "2014-03-04 00:00:00: Portfolio Value - 412010.18\n", + "2014-03-05 00:00:00: Portfolio Value - 406386.54\n", + "2014-03-06 00:00:00: Portfolio Value - 369315.21\n", + "2014-03-07 00:00:00: Portfolio Value - 362290.41\n", + "2014-03-10 00:00:00: Portfolio Value - 334853.60\n", + "2014-03-11 00:00:00: Portfolio Value - 375717.30\n", + "2014-03-12 00:00:00: Portfolio Value - 362170.12\n", + "2014-03-13 00:00:00: Portfolio Value - 376815.21\n", + "2014-03-14 00:00:00: Portfolio Value - 395174.69\n", + "2014-03-17 00:00:00: Portfolio Value - 402510.63\n", + "2014-03-18 00:00:00: Portfolio Value - 414520.59\n", + "2014-03-19 00:00:00: Portfolio Value - 464904.94\n", + "2014-03-20 00:00:00: Portfolio Value - 457191.37\n", + "2014-03-21 00:00:00: Portfolio Value - 407943.99\n", + "2014-03-24 00:00:00: Portfolio Value - 318889.65\n", + "2014-03-25 00:00:00: Portfolio Value - 262817.74\n", + "2014-03-26 00:00:00: Portfolio Value - 230530.49\n", + "2014-03-27 00:00:00: Portfolio Value - 247851.14\n", + "2014-03-28 00:00:00: Portfolio Value - 211396.58\n", + "2014-03-31 00:00:00: Portfolio Value - 199706.68\n", + "2014-04-01 00:00:00: Portfolio Value - 233281.01\n", + "2014-04-02 00:00:00: Portfolio Value - 237059.81\n", + "2014-04-03 00:00:00: Portfolio Value - 213525.56\n", + "2014-04-04 00:00:00: Portfolio Value - 209367.41\n", + "2014-04-07 00:00:00: Portfolio Value - 229204.19\n", + "2014-04-08 00:00:00: Portfolio Value - 260010.15\n", + "2014-04-09 00:00:00: Portfolio Value - 284769.88\n", + "2014-04-10 00:00:00: Portfolio Value - 287962.57\n", + "2014-04-11 00:00:00: Portfolio Value - 292562.89\n", + "2014-04-14 00:00:00: Portfolio Value - 263812.62\n", + "2014-04-15 00:00:00: Portfolio Value - 232535.78\n", + "2014-04-16 00:00:00: Portfolio Value - 166836.93\n", + "2014-04-17 00:00:00: Portfolio Value - 213821.00\n", + "2014-04-21 00:00:00: Portfolio Value - 253947.77\n", + "2014-04-22 00:00:00: Portfolio Value - 295002.10\n", + "2014-04-23 00:00:00: Portfolio Value - 230638.41\n", + "2014-04-24 00:00:00: Portfolio Value - 249256.06\n", + "2014-04-25 00:00:00: Portfolio Value - 198509.70\n", + "2014-04-28 00:00:00: Portfolio Value - 175687.04\n", + "2014-04-29 00:00:00: Portfolio Value - 198496.45\n", + "2014-04-30 00:00:00: Portfolio Value - 210492.12\n", + "2014-05-01 00:00:00: Portfolio Value - 228033.56\n", + "2014-05-02 00:00:00: Portfolio Value - 285982.84\n", + "2014-05-05 00:00:00: Portfolio Value - 281978.59\n", + "2014-05-06 00:00:00: Portfolio Value - 271114.61\n", + "2014-05-07 00:00:00: Portfolio Value - 211043.72\n", + "2014-05-08 00:00:00: Portfolio Value - 161269.76\n", + "2014-05-09 00:00:00: Portfolio Value - 176728.09\n", + "2014-05-12 00:00:00: Portfolio Value - 249424.62\n", + "2014-05-13 00:00:00: Portfolio Value - 222508.02\n", + "2014-05-14 00:00:00: Portfolio Value - 211531.18\n", + "2014-05-15 00:00:00: Portfolio Value - 192210.06\n", + "2014-05-16 00:00:00: Portfolio Value - 173817.44\n", + "2014-05-19 00:00:00: Portfolio Value - 209362.48\n", + "2014-05-20 00:00:00: Portfolio Value - 213195.23\n", + "2014-05-21 00:00:00: Portfolio Value - 181871.54\n", + "2014-05-22 00:00:00: Portfolio Value - 210814.88\n", + "2014-05-23 00:00:00: Portfolio Value - 212287.77\n", + "2014-05-27 00:00:00: Portfolio Value - 194092.91\n", + "2014-05-28 00:00:00: Portfolio Value - 190918.37\n", + "2014-05-29 00:00:00: Portfolio Value - 202153.80\n", + "2014-05-30 00:00:00: Portfolio Value - 207922.62\n", + "2014-06-02 00:00:00: Portfolio Value - 215364.05\n", + "2014-06-03 00:00:00: Portfolio Value - 202136.28\n", + "2014-06-04 00:00:00: Portfolio Value - 188766.50\n", + "2014-06-05 00:00:00: Portfolio Value - 205241.55\n", + "2014-06-06 00:00:00: Portfolio Value - 152057.45\n", + "2014-06-09 00:00:00: Portfolio Value - 168908.91\n", + "2014-06-10 00:00:00: Portfolio Value - 181855.05\n", + "2014-06-11 00:00:00: Portfolio Value - 247000.53\n", + "2014-06-12 00:00:00: Portfolio Value - 226011.59\n", + "2014-06-13 00:00:00: Portfolio Value - 221657.48\n", + "2014-06-16 00:00:00: Portfolio Value - 224775.56\n", + "2014-06-17 00:00:00: Portfolio Value - 249739.48\n", + "2014-06-18 00:00:00: Portfolio Value - 167970.18\n", + "2014-06-19 00:00:00: Portfolio Value - 153124.94\n", + "2014-06-20 00:00:00: Portfolio Value - 133399.92\n", + "2014-06-23 00:00:00: Portfolio Value - 139208.06\n", + "2014-06-24 00:00:00: Portfolio Value - 140235.24\n", + "2014-06-25 00:00:00: Portfolio Value - 138786.42\n", + "2014-06-26 00:00:00: Portfolio Value - 136415.24\n", + "2014-06-27 00:00:00: Portfolio Value - 134777.92\n", + "2014-06-30 00:00:00: Portfolio Value - 104118.87\n", + "2014-07-01 00:00:00: Portfolio Value - 138002.06\n", + "2014-07-02 00:00:00: Portfolio Value - 144559.75\n", + "2014-07-03 00:00:00: Portfolio Value - 140099.73\n", + "2014-07-07 00:00:00: Portfolio Value - 120288.24\n", + "2014-07-08 00:00:00: Portfolio Value - 76102.67\n", + "2014-07-09 00:00:00: Portfolio Value - 64895.99\n", + "2014-07-10 00:00:00: Portfolio Value - 68174.64\n", + "2014-07-11 00:00:00: Portfolio Value - 42457.30\n", + "2014-07-14 00:00:00: Portfolio Value - 18904.81\n", + "2014-07-15 00:00:00: Portfolio Value - -25316.79\n", + "2014-07-16 00:00:00: Portfolio Value - -60465.10\n", + "2014-07-17 00:00:00: Portfolio Value - -31686.47\n", + "2014-07-18 00:00:00: Portfolio Value - -44116.46\n", + "2014-07-21 00:00:00: Portfolio Value - -13646.77\n", + "2014-07-22 00:00:00: Portfolio Value - -42455.68\n", + "2014-07-23 00:00:00: Portfolio Value - -34985.93\n", + "2014-07-24 00:00:00: Portfolio Value - -35068.95\n", + "2014-07-25 00:00:00: Portfolio Value - -10657.69\n", + "2014-07-28 00:00:00: Portfolio Value - -32012.53\n", + "2014-07-29 00:00:00: Portfolio Value - -11014.03\n", + "2014-07-30 00:00:00: Portfolio Value - 130.74\n", + "2014-07-31 00:00:00: Portfolio Value - 40366.63\n", + "2014-08-01 00:00:00: Portfolio Value - 37810.54\n", + "2014-08-04 00:00:00: Portfolio Value - 59395.39\n", + "2014-08-05 00:00:00: Portfolio Value - 87692.33\n", + "2014-08-06 00:00:00: Portfolio Value - 46147.58\n", + "2014-08-07 00:00:00: Portfolio Value - 42164.98\n", + "2014-08-08 00:00:00: Portfolio Value - 19688.48\n", + "2014-08-11 00:00:00: Portfolio Value - 40537.61\n", + "2014-08-12 00:00:00: Portfolio Value - -30270.68\n", + "2014-08-13 00:00:00: Portfolio Value - -24379.44\n", + "2014-08-14 00:00:00: Portfolio Value - -43132.93\n", + "2014-08-15 00:00:00: Portfolio Value - -59037.78\n", + "2014-08-18 00:00:00: Portfolio Value - -80111.90\n", + "2014-08-19 00:00:00: Portfolio Value - -63424.62\n", + "2014-08-20 00:00:00: Portfolio Value - -32491.18\n", + "2014-08-21 00:00:00: Portfolio Value - -92655.99\n", + "2014-08-22 00:00:00: Portfolio Value - -60596.09\n", + "2014-08-25 00:00:00: Portfolio Value - -101459.04\n", + "2014-08-26 00:00:00: Portfolio Value - -88550.74\n", + "2014-08-27 00:00:00: Portfolio Value - -87086.31\n", + "2014-08-28 00:00:00: Portfolio Value - -82260.60\n", + "2014-08-29 00:00:00: Portfolio Value - -99338.36\n", + "2014-09-02 00:00:00: Portfolio Value - -87783.82\n", + "2014-09-03 00:00:00: Portfolio Value - -112740.43\n", + "2014-09-04 00:00:00: Portfolio Value - -117891.33\n", + "2014-09-05 00:00:00: Portfolio Value - -116898.24\n", + "2014-09-08 00:00:00: Portfolio Value - -110808.58\n", + "2014-09-09 00:00:00: Portfolio Value - -48403.31\n", + "2014-09-10 00:00:00: Portfolio Value - -60709.36\n", + "2014-09-11 00:00:00: Portfolio Value - -55208.26\n", + "2014-09-12 00:00:00: Portfolio Value - -11684.22\n", + "2014-09-15 00:00:00: Portfolio Value - -39021.84\n", + "2014-09-16 00:00:00: Portfolio Value - -56613.98\n", + "2014-09-17 00:00:00: Portfolio Value - -51125.87\n", + "2014-09-18 00:00:00: Portfolio Value - -60412.44\n", + "2014-09-19 00:00:00: Portfolio Value - -30857.81\n", + "2014-09-22 00:00:00: Portfolio Value - -68029.79\n", + "2014-09-23 00:00:00: Portfolio Value - -65987.82\n", + "2014-09-24 00:00:00: Portfolio Value - -55105.29\n", + "2014-09-25 00:00:00: Portfolio Value - -19835.06\n", + "2014-09-26 00:00:00: Portfolio Value - -76942.05\n", + "2014-09-29 00:00:00: Portfolio Value - -67961.43\n", + "2014-09-30 00:00:00: Portfolio Value - -81154.16\n", + "2014-10-01 00:00:00: Portfolio Value - -68795.24\n", + "2014-10-02 00:00:00: Portfolio Value - -76366.58\n", + "2014-10-03 00:00:00: Portfolio Value - -86855.85\n", + "2014-10-06 00:00:00: Portfolio Value - -55626.60\n", + "2014-10-07 00:00:00: Portfolio Value - -59635.57\n", + "2014-10-08 00:00:00: Portfolio Value - -102625.06\n", + "2014-10-09 00:00:00: Portfolio Value - -35224.34\n", + "2014-10-10 00:00:00: Portfolio Value - -14748.71\n", + "2014-10-13 00:00:00: Portfolio Value - -16211.59\n", + "2014-10-14 00:00:00: Portfolio Value - 14752.73\n", + "2014-10-15 00:00:00: Portfolio Value - 15328.67\n", + "2014-10-16 00:00:00: Portfolio Value - -25411.21\n", + "2014-10-17 00:00:00: Portfolio Value - -120432.96\n", + "2014-10-20 00:00:00: Portfolio Value - -57402.79\n", + "2014-10-21 00:00:00: Portfolio Value - -69192.91\n", + "2014-10-22 00:00:00: Portfolio Value - -59165.47\n", + "2014-10-23 00:00:00: Portfolio Value - -57317.04\n", + "2014-10-24 00:00:00: Portfolio Value - -75568.06\n", + "2014-10-27 00:00:00: Portfolio Value - -66585.61\n", + "2014-10-28 00:00:00: Portfolio Value - -38137.78\n", + "2014-10-29 00:00:00: Portfolio Value - -49898.04\n", + "2014-10-30 00:00:00: Portfolio Value - -55446.13\n", + "2014-10-31 00:00:00: Portfolio Value - -42256.91\n", + "2014-11-03 00:00:00: Portfolio Value - -42858.96\n", + "2014-11-04 00:00:00: Portfolio Value - -96557.45\n", + "2014-11-05 00:00:00: Portfolio Value - -145197.98\n", + "2014-11-06 00:00:00: Portfolio Value - -154667.59\n", + "2014-11-07 00:00:00: Portfolio Value - -156334.94\n", + "2014-11-10 00:00:00: Portfolio Value - -140191.60\n", + "2014-11-11 00:00:00: Portfolio Value - -162649.23\n", + "2014-11-12 00:00:00: Portfolio Value - -115767.99\n", + "2014-11-13 00:00:00: Portfolio Value - -133420.87\n", + "2014-11-14 00:00:00: Portfolio Value - -92075.35\n", + "2014-11-17 00:00:00: Portfolio Value - -116548.96\n", + "2014-11-18 00:00:00: Portfolio Value - -119448.11\n", + "2014-11-19 00:00:00: Portfolio Value - -111542.88\n", + "2014-11-20 00:00:00: Portfolio Value - -74766.93\n", + "2014-11-21 00:00:00: Portfolio Value - -128066.90\n", + "2014-11-24 00:00:00: Portfolio Value - -98495.48\n", + "2014-11-25 00:00:00: Portfolio Value - -143485.26\n", + "2014-11-26 00:00:00: Portfolio Value - -135236.93\n", + "2014-11-28 00:00:00: Portfolio Value - -175071.55\n", + "2014-12-01 00:00:00: Portfolio Value - -201830.44\n", + "2014-12-02 00:00:00: Portfolio Value - -195441.55\n", + "2014-12-03 00:00:00: Portfolio Value - -154733.17\n", + "2014-12-04 00:00:00: Portfolio Value - -197189.47\n", + "2014-12-05 00:00:00: Portfolio Value - -210645.33\n", + "2014-12-08 00:00:00: Portfolio Value - -248916.29\n", + "2014-12-09 00:00:00: Portfolio Value - -231859.99\n", + "2014-12-10 00:00:00: Portfolio Value - -248694.51\n", + "2014-12-11 00:00:00: Portfolio Value - -219137.04\n", + "2014-12-12 00:00:00: Portfolio Value - -157521.40\n", + "2014-12-15 00:00:00: Portfolio Value - -127997.72\n", + "2014-12-16 00:00:00: Portfolio Value - -112326.75\n", + "2014-12-17 00:00:00: Portfolio Value - -126020.99\n", + "2014-12-18 00:00:00: Portfolio Value - -203651.96\n", + "2014-12-19 00:00:00: Portfolio Value - -228552.68\n", + "2014-12-22 00:00:00: Portfolio Value - -203276.65\n", + "2014-12-23 00:00:00: Portfolio Value - -238120.54\n", + "2014-12-24 00:00:00: Portfolio Value - -236207.37\n", + "2014-12-26 00:00:00: Portfolio Value - -238555.41\n", + "2014-12-29 00:00:00: Portfolio Value - -222065.03\n", + "2014-12-30 00:00:00: Portfolio Value - -213325.96\n", + "2014-12-31 00:00:00: Portfolio Value - -175522.09\n", + "2015-01-02 00:00:00: Portfolio Value - -160694.15\n", + "2015-01-05 00:00:00: Portfolio Value - -131457.69\n", + "2015-01-06 00:00:00: Portfolio Value - -137201.00\n", + "2015-01-07 00:00:00: Portfolio Value - -151841.54\n", + "2015-01-08 00:00:00: Portfolio Value - -160467.95\n", + "2015-01-09 00:00:00: Portfolio Value - -140686.26\n", + "2015-01-12 00:00:00: Portfolio Value - -130797.28\n", + "2015-01-13 00:00:00: Portfolio Value - -135604.94\n", + "2015-01-14 00:00:00: Portfolio Value - -128553.02\n", + "2015-01-15 00:00:00: Portfolio Value - -145281.22\n", + "2015-01-16 00:00:00: Portfolio Value - -151931.58\n", + "2015-01-20 00:00:00: Portfolio Value - -131357.95\n", + "2015-01-21 00:00:00: Portfolio Value - -65519.22\n", + "2015-01-22 00:00:00: Portfolio Value - -163077.34\n", + "2015-01-23 00:00:00: Portfolio Value - -66578.68\n", + "2015-01-26 00:00:00: Portfolio Value - -24981.52\n", + "2015-01-27 00:00:00: Portfolio Value - 50441.47\n", + "2015-01-28 00:00:00: Portfolio Value - 60890.38\n", + "2015-01-29 00:00:00: Portfolio Value - 26613.47\n", + "2015-01-30 00:00:00: Portfolio Value - 61665.09\n", + "2015-02-02 00:00:00: Portfolio Value - 5535.56\n", + "2015-02-03 00:00:00: Portfolio Value - -29968.04\n", + "2015-02-04 00:00:00: Portfolio Value - -36889.48\n", + "2015-02-05 00:00:00: Portfolio Value - -89206.44\n", + "2015-02-06 00:00:00: Portfolio Value - -65840.72\n", + "2015-02-09 00:00:00: Portfolio Value - -20100.01\n", + "2015-02-10 00:00:00: Portfolio Value - -40468.88\n", + "2015-02-11 00:00:00: Portfolio Value - -63896.09\n", + "2015-02-12 00:00:00: Portfolio Value - -108978.82\n", + "2015-02-13 00:00:00: Portfolio Value - -60923.95\n", + "2015-02-17 00:00:00: Portfolio Value - -84057.05\n", + "2015-02-18 00:00:00: Portfolio Value - -79788.87\n", + "2015-02-19 00:00:00: Portfolio Value - -67729.01\n", + "2015-02-20 00:00:00: Portfolio Value - -59687.69\n", + "2015-02-23 00:00:00: Portfolio Value - -74314.18\n", + "2015-02-24 00:00:00: Portfolio Value - -94767.19\n", + "2015-02-25 00:00:00: Portfolio Value - -28113.35\n", + "2015-02-26 00:00:00: Portfolio Value - 20959.63\n", + "2015-02-27 00:00:00: Portfolio Value - 39300.13\n", + "2015-03-02 00:00:00: Portfolio Value - 71702.34\n", + "2015-03-03 00:00:00: Portfolio Value - 71618.64\n", + "2015-03-04 00:00:00: Portfolio Value - 58147.29\n", + "2015-03-05 00:00:00: Portfolio Value - 51810.51\n", + "2015-03-06 00:00:00: Portfolio Value - 47720.48\n", + "2015-03-09 00:00:00: Portfolio Value - 30201.01\n", + "2015-03-10 00:00:00: Portfolio Value - 92881.14\n", + "2015-03-11 00:00:00: Portfolio Value - 88611.63\n", + "2015-03-12 00:00:00: Portfolio Value - 22876.78\n", + "2015-03-13 00:00:00: Portfolio Value - 31088.38\n", + "2015-03-16 00:00:00: Portfolio Value - 1896.97\n", + "2015-03-17 00:00:00: Portfolio Value - 338.09\n", + "2015-03-18 00:00:00: Portfolio Value - 10066.22\n", + "2015-03-19 00:00:00: Portfolio Value - 101631.65\n", + "2015-03-20 00:00:00: Portfolio Value - -2669.89\n", + "2015-03-23 00:00:00: Portfolio Value - 37528.53\n", + "2015-03-24 00:00:00: Portfolio Value - 121515.91\n", + "2015-03-25 00:00:00: Portfolio Value - 144839.13\n", + "2015-03-26 00:00:00: Portfolio Value - 141469.07\n", + "2015-03-27 00:00:00: Portfolio Value - 184087.87\n", + "2015-03-30 00:00:00: Portfolio Value - 140484.90\n", + "2015-03-31 00:00:00: Portfolio Value - 162227.76\n", + "2015-04-01 00:00:00: Portfolio Value - 113467.96\n", + "2015-04-02 00:00:00: Portfolio Value - 84878.06\n", + "2015-04-06 00:00:00: Portfolio Value - 113410.97\n", + "2015-04-07 00:00:00: Portfolio Value - 88433.29\n", + "2015-04-08 00:00:00: Portfolio Value - 120103.53\n", + "2015-04-09 00:00:00: Portfolio Value - 111881.69\n", + "2015-04-10 00:00:00: Portfolio Value - 153494.44\n", + "2015-04-13 00:00:00: Portfolio Value - 229780.80\n", + "2015-04-14 00:00:00: Portfolio Value - 188342.99\n", + "2015-04-15 00:00:00: Portfolio Value - 189010.94\n", + "2015-04-16 00:00:00: Portfolio Value - 346445.41\n", + "2015-04-17 00:00:00: Portfolio Value - 383623.89\n", + "2015-04-20 00:00:00: Portfolio Value - 420974.91\n", + "2015-04-21 00:00:00: Portfolio Value - 454336.86\n", + "2015-04-22 00:00:00: Portfolio Value - 434453.99\n", + "2015-04-23 00:00:00: Portfolio Value - 419288.49\n", + "2015-04-24 00:00:00: Portfolio Value - 370324.75\n", + "2015-04-27 00:00:00: Portfolio Value - 357352.33\n", + "2015-04-28 00:00:00: Portfolio Value - 267398.06\n", + "2015-04-29 00:00:00: Portfolio Value - 339161.72\n", + "2015-04-30 00:00:00: Portfolio Value - 318598.01\n", + "2015-05-01 00:00:00: Portfolio Value - 325889.14\n", + "2015-05-04 00:00:00: Portfolio Value - 315606.46\n", + "2015-05-05 00:00:00: Portfolio Value - 348297.16\n", + "2015-05-06 00:00:00: Portfolio Value - 409299.99\n", + "2015-05-07 00:00:00: Portfolio Value - 404774.50\n", + "2015-05-08 00:00:00: Portfolio Value - 348346.02\n", + "2015-05-11 00:00:00: Portfolio Value - 393920.61\n", + "2015-05-12 00:00:00: Portfolio Value - 441058.81\n", + "2015-05-13 00:00:00: Portfolio Value - 357411.39\n", + "2015-05-14 00:00:00: Portfolio Value - 327438.20\n", + "2015-05-15 00:00:00: Portfolio Value - 368544.20\n", + "2015-05-18 00:00:00: Portfolio Value - 347482.80\n", + "2015-05-19 00:00:00: Portfolio Value - 322336.26\n", + "2015-05-20 00:00:00: Portfolio Value - 319488.43\n", + "2015-05-21 00:00:00: Portfolio Value - 365522.09\n", + "2015-05-22 00:00:00: Portfolio Value - 340986.30\n", + "2015-05-26 00:00:00: Portfolio Value - 345527.48\n", + "2015-05-27 00:00:00: Portfolio Value - 335583.60\n", + "2015-05-28 00:00:00: Portfolio Value - 321794.87\n", + "2015-05-29 00:00:00: Portfolio Value - 366973.83\n", + "2015-06-01 00:00:00: Portfolio Value - 361482.43\n", + "2015-06-02 00:00:00: Portfolio Value - 387442.72\n", + "2015-06-03 00:00:00: Portfolio Value - 417423.77\n", + "2015-06-04 00:00:00: Portfolio Value - 436965.36\n", + "2015-06-05 00:00:00: Portfolio Value - 491861.79\n", + "2015-06-08 00:00:00: Portfolio Value - 465136.56\n", + "2015-06-09 00:00:00: Portfolio Value - 507074.91\n", + "2015-06-10 00:00:00: Portfolio Value - 501481.62\n", + "2015-06-11 00:00:00: Portfolio Value - 483835.68\n", + "2015-06-12 00:00:00: Portfolio Value - 495632.57\n", + "2015-06-15 00:00:00: Portfolio Value - 484268.34\n", + "2015-06-16 00:00:00: Portfolio Value - 472340.95\n", + "2015-06-17 00:00:00: Portfolio Value - 483331.29\n", + "2015-06-18 00:00:00: Portfolio Value - 467052.15\n", + "2015-06-19 00:00:00: Portfolio Value - 449192.12\n", + "2015-06-22 00:00:00: Portfolio Value - 481174.46\n", + "2015-06-23 00:00:00: Portfolio Value - 475914.55\n", + "2015-06-24 00:00:00: Portfolio Value - 501801.18\n", + "2015-06-25 00:00:00: Portfolio Value - 508343.00\n", + "2015-06-26 00:00:00: Portfolio Value - 474335.90\n", + "2015-06-29 00:00:00: Portfolio Value - 509986.12\n", + "2015-06-30 00:00:00: Portfolio Value - 552746.36\n", + "2015-07-01 00:00:00: Portfolio Value - 548686.53\n", + "2015-07-02 00:00:00: Portfolio Value - 572807.01\n", + "2015-07-06 00:00:00: Portfolio Value - 598106.68\n", + "2015-07-07 00:00:00: Portfolio Value - 627749.26\n", + "2015-07-08 00:00:00: Portfolio Value - 642011.73\n", + "2015-07-09 00:00:00: Portfolio Value - 660473.60\n", + "2015-07-10 00:00:00: Portfolio Value - 664036.59\n", + "2015-07-13 00:00:00: Portfolio Value - 725306.59\n", + "2015-07-14 00:00:00: Portfolio Value - 756313.85\n", + "2015-07-15 00:00:00: Portfolio Value - 666896.96\n", + "2015-07-16 00:00:00: Portfolio Value - 784248.25\n", + "2015-07-17 00:00:00: Portfolio Value - 725500.95\n", + "2015-07-20 00:00:00: Portfolio Value - 694978.70\n", + "2015-07-21 00:00:00: Portfolio Value - 704472.04\n", + "2015-07-22 00:00:00: Portfolio Value - 728548.63\n", + "2015-07-23 00:00:00: Portfolio Value - 731685.62\n", + "2015-07-24 00:00:00: Portfolio Value - 728250.84\n", + "2015-07-27 00:00:00: Portfolio Value - 711321.37\n", + "2015-07-28 00:00:00: Portfolio Value - 744750.24\n", + "2015-07-29 00:00:00: Portfolio Value - 672618.23\n", + "2015-07-30 00:00:00: Portfolio Value - 695749.82\n", + "2015-07-31 00:00:00: Portfolio Value - 748738.75\n", + "2015-08-03 00:00:00: Portfolio Value - 678804.78\n", + "2015-08-04 00:00:00: Portfolio Value - 831515.82\n", + "2015-08-05 00:00:00: Portfolio Value - 830215.30\n", + "2015-08-06 00:00:00: Portfolio Value - 774453.02\n", + "2015-08-07 00:00:00: Portfolio Value - 731861.83\n", + "2015-08-10 00:00:00: Portfolio Value - 755920.52\n", + "2015-08-11 00:00:00: Portfolio Value - 796305.08\n", + "2015-08-12 00:00:00: Portfolio Value - 787068.64\n", + "2015-08-13 00:00:00: Portfolio Value - 848412.18\n", + "2015-08-14 00:00:00: Portfolio Value - 805185.82\n", + "2015-08-17 00:00:00: Portfolio Value - 875331.76\n", + "2015-08-18 00:00:00: Portfolio Value - 858665.99\n", + "2015-08-19 00:00:00: Portfolio Value - 856312.18\n", + "2015-08-20 00:00:00: Portfolio Value - 784444.26\n", + "2015-08-21 00:00:00: Portfolio Value - 779811.46\n", + "2015-08-24 00:00:00: Portfolio Value - 757196.70\n", + "2015-08-25 00:00:00: Portfolio Value - 866363.43\n", + "2015-08-26 00:00:00: Portfolio Value - 945452.97\n", + "2015-08-27 00:00:00: Portfolio Value - 966290.80\n", + "2015-08-28 00:00:00: Portfolio Value - 1039840.42\n", + "2015-08-31 00:00:00: Portfolio Value - 1038442.61\n", + "2015-09-01 00:00:00: Portfolio Value - 1012253.75\n", + "2015-09-02 00:00:00: Portfolio Value - 1045261.13\n", + "2015-09-03 00:00:00: Portfolio Value - 921238.73\n", + "2015-09-04 00:00:00: Portfolio Value - 952902.93\n", + "2015-09-08 00:00:00: Portfolio Value - 900761.03\n", + "2015-09-09 00:00:00: Portfolio Value - 918782.90\n", + "2015-09-10 00:00:00: Portfolio Value - 916680.34\n", + "2015-09-11 00:00:00: Portfolio Value - 925197.32\n", + "2015-09-14 00:00:00: Portfolio Value - 899658.10\n", + "2015-09-15 00:00:00: Portfolio Value - 902640.59\n", + "2015-09-16 00:00:00: Portfolio Value - 883233.12\n", + "2015-09-17 00:00:00: Portfolio Value - 875476.81\n", + "2015-09-18 00:00:00: Portfolio Value - 831842.17\n", + "2015-09-21 00:00:00: Portfolio Value - 725820.74\n", + "2015-09-22 00:00:00: Portfolio Value - 750373.10\n", + "2015-09-23 00:00:00: Portfolio Value - 753033.21\n", + "2015-09-24 00:00:00: Portfolio Value - 864558.41\n", + "2015-09-25 00:00:00: Portfolio Value - 784781.79\n", + "2015-09-28 00:00:00: Portfolio Value - 752818.31\n", + "2015-09-29 00:00:00: Portfolio Value - 775086.46\n", + "2015-09-30 00:00:00: Portfolio Value - 848737.03\n", + "2015-10-01 00:00:00: Portfolio Value - 936441.98\n", + "2015-10-02 00:00:00: Portfolio Value - 962503.84\n", + "2015-10-05 00:00:00: Portfolio Value - 901689.21\n", + "2015-10-06 00:00:00: Portfolio Value - 808074.82\n", + "2015-10-07 00:00:00: Portfolio Value - 742964.15\n", + "2015-10-08 00:00:00: Portfolio Value - 774063.38\n", + "2015-10-09 00:00:00: Portfolio Value - 777405.44\n", + "2015-10-12 00:00:00: Portfolio Value - 788836.87\n", + "2015-10-13 00:00:00: Portfolio Value - 692663.16\n", + "2015-10-14 00:00:00: Portfolio Value - 630436.43\n", + "2015-10-15 00:00:00: Portfolio Value - 541763.50\n", + "2015-10-16 00:00:00: Portfolio Value - 446017.60\n", + "2015-10-19 00:00:00: Portfolio Value - 481730.22\n", + "2015-10-20 00:00:00: Portfolio Value - 458365.83\n", + "2015-10-21 00:00:00: Portfolio Value - 480649.41\n", + "2015-10-22 00:00:00: Portfolio Value - 383337.30\n", + "2015-10-23 00:00:00: Portfolio Value - 369962.85\n", + "2015-10-26 00:00:00: Portfolio Value - 421067.46\n", + "2015-10-27 00:00:00: Portfolio Value - 483611.66\n", + "2015-10-28 00:00:00: Portfolio Value - 525385.39\n", + "2015-10-29 00:00:00: Portfolio Value - 422295.95\n", + "2015-10-30 00:00:00: Portfolio Value - 430504.89\n", + "2015-11-02 00:00:00: Portfolio Value - 396364.45\n", + "2015-11-03 00:00:00: Portfolio Value - 382128.22\n", + "2015-11-04 00:00:00: Portfolio Value - 364172.16\n", + "2015-11-05 00:00:00: Portfolio Value - 386718.74\n", + "2015-11-06 00:00:00: Portfolio Value - 271291.01\n", + "2015-11-09 00:00:00: Portfolio Value - 305038.67\n", + "2015-11-10 00:00:00: Portfolio Value - 307398.79\n", + "2015-11-11 00:00:00: Portfolio Value - 249805.79\n", + "2015-11-12 00:00:00: Portfolio Value - 240258.00\n", + "2015-11-13 00:00:00: Portfolio Value - 164036.10\n", + "2015-11-16 00:00:00: Portfolio Value - 168217.13\n", + "2015-11-17 00:00:00: Portfolio Value - 244066.48\n", + "2015-11-18 00:00:00: Portfolio Value - 270199.24\n", + "2015-11-19 00:00:00: Portfolio Value - 323582.84\n", + "2015-11-20 00:00:00: Portfolio Value - 298260.88\n", + "2015-11-23 00:00:00: Portfolio Value - 309517.93\n", + "2015-11-24 00:00:00: Portfolio Value - 354874.48\n", + "2015-11-25 00:00:00: Portfolio Value - 372240.34\n", + "2015-11-27 00:00:00: Portfolio Value - 394535.29\n", + "2015-11-30 00:00:00: Portfolio Value - 302685.11\n", + "2015-12-01 00:00:00: Portfolio Value - 269510.01\n", + "2015-12-02 00:00:00: Portfolio Value - 360026.39\n", + "2015-12-03 00:00:00: Portfolio Value - 340306.83\n", + "2015-12-04 00:00:00: Portfolio Value - 393010.37\n", + "2015-12-07 00:00:00: Portfolio Value - 394616.24\n", + "2015-12-08 00:00:00: Portfolio Value - 455469.27\n", + "2015-12-09 00:00:00: Portfolio Value - 441460.02\n", + "2015-12-10 00:00:00: Portfolio Value - 433682.61\n", + "2015-12-11 00:00:00: Portfolio Value - 532105.81\n", + "2015-12-14 00:00:00: Portfolio Value - 591009.57\n", + "2015-12-15 00:00:00: Portfolio Value - 518212.80\n", + "2015-12-16 00:00:00: Portfolio Value - 549108.94\n", + "2015-12-17 00:00:00: Portfolio Value - 493089.88\n", + "2015-12-18 00:00:00: Portfolio Value - 556903.82\n", + "2015-12-21 00:00:00: Portfolio Value - 480481.91\n", + "2015-12-22 00:00:00: Portfolio Value - 416198.49\n", + "2015-12-23 00:00:00: Portfolio Value - 358596.69\n", + "2015-12-24 00:00:00: Portfolio Value - 346484.90\n", + "2015-12-28 00:00:00: Portfolio Value - 312254.26\n", + "2015-12-29 00:00:00: Portfolio Value - 306456.55\n", + "2015-12-30 00:00:00: Portfolio Value - 295533.13\n", + "2015-12-31 00:00:00: Portfolio Value - 280303.87\n", + "2016-01-04 00:00:00: Portfolio Value - 314304.95\n", + "2016-01-05 00:00:00: Portfolio Value - 280255.42\n", + "2016-01-06 00:00:00: Portfolio Value - 375461.73\n", + "2016-01-07 00:00:00: Portfolio Value - 406057.74\n", + "2016-01-08 00:00:00: Portfolio Value - 400254.08\n", + "2016-01-11 00:00:00: Portfolio Value - 395490.10\n", + "2016-01-12 00:00:00: Portfolio Value - 354995.60\n", + "2016-01-13 00:00:00: Portfolio Value - 279853.50\n", + "2016-01-14 00:00:00: Portfolio Value - 211553.26\n", + "2016-01-15 00:00:00: Portfolio Value - 269772.86\n", + "2016-01-19 00:00:00: Portfolio Value - 319449.82\n", + "2016-01-20 00:00:00: Portfolio Value - 330998.95\n", + "2016-01-21 00:00:00: Portfolio Value - 351199.65\n", + "2016-01-22 00:00:00: Portfolio Value - 308327.57\n", + "2016-01-25 00:00:00: Portfolio Value - 369044.94\n", + "2016-01-26 00:00:00: Portfolio Value - 342327.07\n", + "2016-01-27 00:00:00: Portfolio Value - 261101.95\n", + "2016-01-28 00:00:00: Portfolio Value - 231834.71\n", + "2016-01-29 00:00:00: Portfolio Value - 135444.63\n", + "2016-02-01 00:00:00: Portfolio Value - 172235.50\n", + "2016-02-02 00:00:00: Portfolio Value - 191622.29\n", + "2016-02-03 00:00:00: Portfolio Value - 178514.58\n", + "2016-02-04 00:00:00: Portfolio Value - 125679.97\n", + "2016-02-05 00:00:00: Portfolio Value - 106340.15\n", + "2016-02-08 00:00:00: Portfolio Value - 301807.82\n", + "2016-02-09 00:00:00: Portfolio Value - 316290.64\n", + "2016-02-10 00:00:00: Portfolio Value - 252988.40\n", + "2016-02-11 00:00:00: Portfolio Value - 235458.39\n", + "2016-02-12 00:00:00: Portfolio Value - 173566.10\n", + "2016-02-16 00:00:00: Portfolio Value - 170257.04\n", + "2016-02-17 00:00:00: Portfolio Value - 243532.69\n", + "2016-02-18 00:00:00: Portfolio Value - 179963.04\n", + "2016-02-19 00:00:00: Portfolio Value - 157096.60\n", + "2016-02-22 00:00:00: Portfolio Value - 227366.09\n", + "2016-02-23 00:00:00: Portfolio Value - 268615.15\n", + "2016-02-24 00:00:00: Portfolio Value - 292031.98\n", + "2016-02-25 00:00:00: Portfolio Value - 251661.16\n", + "2016-02-26 00:00:00: Portfolio Value - 299648.40\n", + "2016-02-29 00:00:00: Portfolio Value - 266703.13\n", + "2016-03-01 00:00:00: Portfolio Value - 250651.34\n", + "2016-03-02 00:00:00: Portfolio Value - 226249.13\n", + "2016-03-03 00:00:00: Portfolio Value - 184935.67\n", + "2016-03-04 00:00:00: Portfolio Value - 193894.04\n", + "2016-03-07 00:00:00: Portfolio Value - 163708.26\n", + "2016-03-08 00:00:00: Portfolio Value - 173152.04\n", + "2016-03-09 00:00:00: Portfolio Value - 113505.19\n", + "2016-03-10 00:00:00: Portfolio Value - 144320.33\n", + "2016-03-11 00:00:00: Portfolio Value - 134135.25\n", + "2016-03-14 00:00:00: Portfolio Value - 148230.09\n", + "2016-03-15 00:00:00: Portfolio Value - 155933.68\n", + "2016-03-16 00:00:00: Portfolio Value - 146339.51\n", + "2016-03-17 00:00:00: Portfolio Value - 65964.31\n", + "2016-03-18 00:00:00: Portfolio Value - 63974.05\n", + "2016-03-21 00:00:00: Portfolio Value - 94177.33\n", + "2016-03-22 00:00:00: Portfolio Value - 82942.34\n", + "2016-03-23 00:00:00: Portfolio Value - 63642.47\n", + "2016-03-24 00:00:00: Portfolio Value - 85242.23\n", + "2016-03-28 00:00:00: Portfolio Value - 88735.63\n", + "2016-03-29 00:00:00: Portfolio Value - 54767.59\n", + "2016-03-30 00:00:00: Portfolio Value - 59652.80\n", + "2016-03-31 00:00:00: Portfolio Value - 75792.47\n", + "2016-04-01 00:00:00: Portfolio Value - 55532.41\n", + "2016-04-04 00:00:00: Portfolio Value - 41853.82\n", + "2016-04-05 00:00:00: Portfolio Value - 78469.46\n", + "2016-04-06 00:00:00: Portfolio Value - 137221.88\n", + "2016-04-07 00:00:00: Portfolio Value - 174253.43\n", + "2016-04-08 00:00:00: Portfolio Value - 140643.47\n", + "2016-04-11 00:00:00: Portfolio Value - 140337.08\n", + "2016-04-12 00:00:00: Portfolio Value - 166969.15\n", + "2016-04-13 00:00:00: Portfolio Value - 159120.45\n", + "2016-04-14 00:00:00: Portfolio Value - 102746.53\n", + "2016-04-15 00:00:00: Portfolio Value - 72205.70\n", + "2016-04-18 00:00:00: Portfolio Value - 60657.01\n", + "2016-04-19 00:00:00: Portfolio Value - -149825.28\n", + "2016-04-20 00:00:00: Portfolio Value - -142355.11\n", + "2016-04-21 00:00:00: Portfolio Value - -86888.47\n", + "2016-04-22 00:00:00: Portfolio Value - -108776.62\n", + "2016-04-25 00:00:00: Portfolio Value - -134803.17\n", + "2016-04-26 00:00:00: Portfolio Value - -187122.94\n", + "2016-04-27 00:00:00: Portfolio Value - -237388.31\n", + "2016-04-28 00:00:00: Portfolio Value - -203150.16\n", + "2016-04-29 00:00:00: Portfolio Value - -172424.84\n", + "2016-05-02 00:00:00: Portfolio Value - -167560.72\n", + "2016-05-03 00:00:00: Portfolio Value - -159716.43\n", + "2016-05-04 00:00:00: Portfolio Value - -176793.32\n", + "2016-05-05 00:00:00: Portfolio Value - -178762.06\n", + "2016-05-06 00:00:00: Portfolio Value - -180140.05\n", + "2016-05-09 00:00:00: Portfolio Value - -174434.37\n", + "2016-05-10 00:00:00: Portfolio Value - -172516.42\n", + "2016-05-11 00:00:00: Portfolio Value - -203104.01\n", + "2016-05-12 00:00:00: Portfolio Value - -212816.45\n", + "2016-05-13 00:00:00: Portfolio Value - -151557.65\n", + "2016-05-16 00:00:00: Portfolio Value - -132964.30\n", + "2016-05-17 00:00:00: Portfolio Value - -120944.40\n", + "2016-05-18 00:00:00: Portfolio Value - -139926.55\n", + "2016-05-19 00:00:00: Portfolio Value - -113802.40\n", + "2016-05-20 00:00:00: Portfolio Value - -102663.62\n", + "2016-05-23 00:00:00: Portfolio Value - -86082.99\n", + "2016-05-24 00:00:00: Portfolio Value - -153079.55\n", + "2016-05-25 00:00:00: Portfolio Value - -107983.06\n", + "2016-05-26 00:00:00: Portfolio Value - -47874.83\n", + "2016-05-27 00:00:00: Portfolio Value - 30761.29\n", + "2016-05-31 00:00:00: Portfolio Value - 64697.77\n", + "2016-06-01 00:00:00: Portfolio Value - 54634.34\n", + "2016-06-02 00:00:00: Portfolio Value - 86198.48\n", + "2016-06-03 00:00:00: Portfolio Value - 67589.31\n", + "2016-06-06 00:00:00: Portfolio Value - 27029.97\n", + "2016-06-07 00:00:00: Portfolio Value - 95985.18\n", + "2016-06-08 00:00:00: Portfolio Value - 47515.19\n", + "2016-06-09 00:00:00: Portfolio Value - 39965.38\n", + "2016-06-10 00:00:00: Portfolio Value - 90882.39\n", + "2016-06-13 00:00:00: Portfolio Value - 80474.98\n", + "2016-06-14 00:00:00: Portfolio Value - 122370.22\n", + "2016-06-15 00:00:00: Portfolio Value - 139261.49\n", + "2016-06-16 00:00:00: Portfolio Value - 129651.93\n", + "2016-06-17 00:00:00: Portfolio Value - 107874.94\n", + "2016-06-20 00:00:00: Portfolio Value - 77936.34\n", + "2016-06-21 00:00:00: Portfolio Value - 12668.67\n", + "2016-06-22 00:00:00: Portfolio Value - 40009.61\n", + "2016-06-23 00:00:00: Portfolio Value - 3452.25\n", + "2016-06-24 00:00:00: Portfolio Value - 92771.38\n", + "2016-06-27 00:00:00: Portfolio Value - 92880.18\n", + "2016-06-28 00:00:00: Portfolio Value - 85539.87\n", + "2016-06-29 00:00:00: Portfolio Value - 32346.20\n", + "2016-06-30 00:00:00: Portfolio Value - -11473.15\n", + "2016-07-01 00:00:00: Portfolio Value - 56889.82\n", + "2016-07-05 00:00:00: Portfolio Value - 88537.32\n", + "2016-07-06 00:00:00: Portfolio Value - 89605.82\n", + "2016-07-07 00:00:00: Portfolio Value - 127449.07\n", + "2016-07-08 00:00:00: Portfolio Value - 86872.39\n", + "2016-07-11 00:00:00: Portfolio Value - 72262.52\n", + "2016-07-12 00:00:00: Portfolio Value - 10882.93\n", + "2016-07-13 00:00:00: Portfolio Value - -45019.59\n", + "2016-07-14 00:00:00: Portfolio Value - 7866.86\n", + "2016-07-15 00:00:00: Portfolio Value - 24504.04\n", + "2016-07-18 00:00:00: Portfolio Value - 19106.94\n", + "2016-07-19 00:00:00: Portfolio Value - -50353.15\n", + "2016-07-20 00:00:00: Portfolio Value - -30372.38\n", + "2016-07-21 00:00:00: Portfolio Value - -10514.84\n", + "2016-07-22 00:00:00: Portfolio Value - -53297.08\n", + "2016-07-25 00:00:00: Portfolio Value - -18958.02\n", + "2016-07-26 00:00:00: Portfolio Value - 44078.90\n", + "2016-07-27 00:00:00: Portfolio Value - 45762.32\n", + "2016-07-28 00:00:00: Portfolio Value - 11767.32\n", + "2016-07-29 00:00:00: Portfolio Value - 56946.00\n", + "2016-08-01 00:00:00: Portfolio Value - 39404.24\n", + "2016-08-02 00:00:00: Portfolio Value - 46894.80\n", + "2016-08-03 00:00:00: Portfolio Value - 100780.00\n", + "2016-08-04 00:00:00: Portfolio Value - 140597.01\n", + "2016-08-05 00:00:00: Portfolio Value - 178518.86\n", + "2016-08-08 00:00:00: Portfolio Value - 192562.13\n", + "2016-08-09 00:00:00: Portfolio Value - 182779.30\n", + "2016-08-10 00:00:00: Portfolio Value - 185745.78\n", + "2016-08-11 00:00:00: Portfolio Value - 184031.04\n", + "2016-08-12 00:00:00: Portfolio Value - 170003.78\n", + "2016-08-15 00:00:00: Portfolio Value - 126599.18\n", + "2016-08-16 00:00:00: Portfolio Value - 119670.82\n", + "2016-08-17 00:00:00: Portfolio Value - 77591.63\n", + "2016-08-18 00:00:00: Portfolio Value - 96647.00\n", + "2016-08-19 00:00:00: Portfolio Value - 98182.94\n", + "2016-08-22 00:00:00: Portfolio Value - 88745.36\n", + "2016-08-23 00:00:00: Portfolio Value - 95277.98\n", + "2016-08-24 00:00:00: Portfolio Value - 115427.82\n", + "2016-08-25 00:00:00: Portfolio Value - 82252.66\n", + "2016-08-26 00:00:00: Portfolio Value - -2458.95\n", + "2016-08-29 00:00:00: Portfolio Value - -53939.04\n", + "2016-08-30 00:00:00: Portfolio Value - -128732.67\n", + "2016-08-31 00:00:00: Portfolio Value - -155151.22\n", + "2016-09-01 00:00:00: Portfolio Value - -145790.91\n", + "2016-09-02 00:00:00: Portfolio Value - -179063.69\n", + "2016-09-06 00:00:00: Portfolio Value - -152013.62\n", + "2016-09-07 00:00:00: Portfolio Value - -209861.11\n", + "2016-09-08 00:00:00: Portfolio Value - -218637.17\n", + "2016-09-09 00:00:00: Portfolio Value - -140279.01\n", + "2016-09-12 00:00:00: Portfolio Value - -166758.27\n", + "2016-09-13 00:00:00: Portfolio Value - -135197.59\n", + "2016-09-14 00:00:00: Portfolio Value - -90067.07\n", + "2016-09-15 00:00:00: Portfolio Value - -180343.77\n", + "2016-09-16 00:00:00: Portfolio Value - -149526.00\n", + "2016-09-19 00:00:00: Portfolio Value - -210223.76\n", + "2016-09-20 00:00:00: Portfolio Value - -152661.62\n", + "2016-09-21 00:00:00: Portfolio Value - -217663.47\n", + "2016-09-22 00:00:00: Portfolio Value - -233130.03\n", + "2016-09-23 00:00:00: Portfolio Value - -195407.43\n", + "2016-09-26 00:00:00: Portfolio Value - -184248.52\n", + "2016-09-27 00:00:00: Portfolio Value - -148133.89\n", + "2016-09-28 00:00:00: Portfolio Value - -109933.23\n", + "2016-09-29 00:00:00: Portfolio Value - -74963.50\n", + "2016-09-30 00:00:00: Portfolio Value - -62660.91\n", + "2016-10-03 00:00:00: Portfolio Value - 36862.62\n", + "2016-10-04 00:00:00: Portfolio Value - 82800.41\n", + "2016-10-05 00:00:00: Portfolio Value - 114192.51\n", + "2016-10-06 00:00:00: Portfolio Value - 134729.09\n", + "2016-10-07 00:00:00: Portfolio Value - 133390.53\n", + "2016-10-10 00:00:00: Portfolio Value - 74518.67\n", + "2016-10-11 00:00:00: Portfolio Value - 61238.79\n", + "2016-10-12 00:00:00: Portfolio Value - -251.70\n", + "2016-10-13 00:00:00: Portfolio Value - 103379.72\n", + "2016-10-14 00:00:00: Portfolio Value - 54973.27\n", + "2016-10-17 00:00:00: Portfolio Value - 35849.54\n", + "2016-10-18 00:00:00: Portfolio Value - 142850.71\n", + "2016-10-19 00:00:00: Portfolio Value - 198610.31\n", + "2016-10-20 00:00:00: Portfolio Value - 203062.52\n", + "2016-10-21 00:00:00: Portfolio Value - 249093.76\n", + "2016-10-24 00:00:00: Portfolio Value - 222560.79\n", + "2016-10-25 00:00:00: Portfolio Value - 198986.28\n", + "2016-10-26 00:00:00: Portfolio Value - 248343.69\n", + "2016-10-27 00:00:00: Portfolio Value - 299466.39\n", + "2016-10-28 00:00:00: Portfolio Value - 356082.13\n", + "2016-10-31 00:00:00: Portfolio Value - 342437.54\n", + "2016-11-01 00:00:00: Portfolio Value - 363826.97\n", + "2016-11-02 00:00:00: Portfolio Value - 386170.02\n", + "2016-11-03 00:00:00: Portfolio Value - 295463.02\n", + "2016-11-04 00:00:00: Portfolio Value - 293686.31\n", + "2016-11-07 00:00:00: Portfolio Value - 261702.74\n", + "2016-11-08 00:00:00: Portfolio Value - 278179.59\n", + "2016-11-09 00:00:00: Portfolio Value - 375049.94\n", + "2016-11-10 00:00:00: Portfolio Value - 384666.75\n", + "2016-11-11 00:00:00: Portfolio Value - 452271.89\n", + "2016-11-14 00:00:00: Portfolio Value - 441885.05\n", + "2016-11-15 00:00:00: Portfolio Value - 441372.77\n", + "2016-11-16 00:00:00: Portfolio Value - 460689.01\n", + "2016-11-17 00:00:00: Portfolio Value - 504546.06\n", + "2016-11-18 00:00:00: Portfolio Value - 463523.44\n", + "2016-11-21 00:00:00: Portfolio Value - 489263.84\n", + "2016-11-22 00:00:00: Portfolio Value - 522039.66\n", + "2016-11-23 00:00:00: Portfolio Value - 571887.44\n", + "2016-11-25 00:00:00: Portfolio Value - 586809.20\n", + "2016-11-28 00:00:00: Portfolio Value - 558391.42\n", + "2016-11-29 00:00:00: Portfolio Value - 551827.72\n", + "2016-11-30 00:00:00: Portfolio Value - 551085.79\n", + "2016-12-01 00:00:00: Portfolio Value - 566163.41\n", + "2016-12-02 00:00:00: Portfolio Value - 601074.57\n", + "2016-12-05 00:00:00: Portfolio Value - 610152.07\n", + "2016-12-06 00:00:00: Portfolio Value - 677597.46\n", + "2016-12-07 00:00:00: Portfolio Value - 587537.52\n", + "2016-12-08 00:00:00: Portfolio Value - 404967.76\n", + "2016-12-09 00:00:00: Portfolio Value - 367285.17\n", + "2016-12-12 00:00:00: Portfolio Value - 308952.92\n", + "2016-12-13 00:00:00: Portfolio Value - 251602.09\n", + "2016-12-14 00:00:00: Portfolio Value - 290450.23\n", + "2016-12-15 00:00:00: Portfolio Value - 325439.24\n", + "2016-12-16 00:00:00: Portfolio Value - 351749.64\n", + "2016-12-19 00:00:00: Portfolio Value - 308543.90\n", + "2016-12-20 00:00:00: Portfolio Value - 271530.26\n", + "2016-12-21 00:00:00: Portfolio Value - 318980.64\n", + "2016-12-22 00:00:00: Portfolio Value - 322020.09\n", + "2016-12-23 00:00:00: Portfolio Value - 321210.25\n", + "2016-12-27 00:00:00: Portfolio Value - 318667.86\n", + "2016-12-28 00:00:00: Portfolio Value - 321057.58\n", + "2016-12-29 00:00:00: Portfolio Value - 332776.33\n", + "2016-12-30 00:00:00: Portfolio Value - 293148.37\n", + "2017-01-03 00:00:00: Portfolio Value - 317895.99\n", + "2017-01-04 00:00:00: Portfolio Value - 312315.16\n", + "2017-01-05 00:00:00: Portfolio Value - 357443.60\n", + "2017-01-06 00:00:00: Portfolio Value - 329466.82\n", + "2017-01-09 00:00:00: Portfolio Value - 439220.74\n", + "2017-01-10 00:00:00: Portfolio Value - 499709.39\n", + "2017-01-11 00:00:00: Portfolio Value - 460099.48\n", + "2017-01-12 00:00:00: Portfolio Value - 458908.32\n", + "2017-01-13 00:00:00: Portfolio Value - 507541.40\n", + "2017-01-17 00:00:00: Portfolio Value - 507051.36\n", + "2017-01-18 00:00:00: Portfolio Value - 494884.11\n", + "2017-01-19 00:00:00: Portfolio Value - 557250.54\n", + "2017-01-20 00:00:00: Portfolio Value - 502132.35\n", + "2017-01-23 00:00:00: Portfolio Value - 498817.23\n", + "2017-01-24 00:00:00: Portfolio Value - 575155.10\n", + "2017-01-25 00:00:00: Portfolio Value - 629479.31\n", + "2017-01-26 00:00:00: Portfolio Value - 595981.75\n", + "2017-01-27 00:00:00: Portfolio Value - 663332.17\n", + "2017-01-30 00:00:00: Portfolio Value - 618461.41\n", + "2017-01-31 00:00:00: Portfolio Value - 650930.69\n", + "2017-02-01 00:00:00: Portfolio Value - 646860.91\n", + "2017-02-02 00:00:00: Portfolio Value - 635187.71\n", + "2017-02-03 00:00:00: Portfolio Value - 555150.42\n", + "2017-02-06 00:00:00: Portfolio Value - 626378.79\n", + "2017-02-07 00:00:00: Portfolio Value - 633973.11\n", + "2017-02-08 00:00:00: Portfolio Value - 711727.06\n", + "2017-02-09 00:00:00: Portfolio Value - 700872.72\n", + "2017-02-10 00:00:00: Portfolio Value - 646902.51\n", + "2017-02-13 00:00:00: Portfolio Value - 607582.60\n", + "2017-02-14 00:00:00: Portfolio Value - 619684.43\n", + "2017-02-15 00:00:00: Portfolio Value - 585506.40\n", + "2017-02-16 00:00:00: Portfolio Value - 587748.60\n", + "2017-02-17 00:00:00: Portfolio Value - 623087.72\n", + "2017-02-21 00:00:00: Portfolio Value - 650207.31\n", + "2017-02-22 00:00:00: Portfolio Value - 646865.93\n", + "2017-02-23 00:00:00: Portfolio Value - 595138.65\n", + "2017-02-24 00:00:00: Portfolio Value - 645685.65\n", + "2017-02-27 00:00:00: Portfolio Value - 663969.27\n", + "2017-02-28 00:00:00: Portfolio Value - 652020.14\n", + "2017-03-01 00:00:00: Portfolio Value - 631877.09\n", + "2017-03-02 00:00:00: Portfolio Value - 626138.01\n", + "2017-03-03 00:00:00: Portfolio Value - 642928.07\n", + "2017-03-06 00:00:00: Portfolio Value - 649856.14\n", + "2017-03-07 00:00:00: Portfolio Value - 650940.56\n", + "2017-03-08 00:00:00: Portfolio Value - 747668.26\n", + "2017-03-09 00:00:00: Portfolio Value - 705836.45\n", + "2017-03-10 00:00:00: Portfolio Value - 843820.73\n", + "2017-03-13 00:00:00: Portfolio Value - 863133.61\n", + "2017-03-14 00:00:00: Portfolio Value - 848017.55\n", + "2017-03-15 00:00:00: Portfolio Value - 868671.53\n", + "2017-03-16 00:00:00: Portfolio Value - 835949.55\n", + "2017-03-17 00:00:00: Portfolio Value - 907318.82\n", + "2017-03-20 00:00:00: Portfolio Value - 889726.04\n", + "2017-03-21 00:00:00: Portfolio Value - 821700.06\n", + "2017-03-22 00:00:00: Portfolio Value - 831392.64\n", + "2017-03-23 00:00:00: Portfolio Value - 811437.72\n", + "2017-03-24 00:00:00: Portfolio Value - 828482.12\n", + "2017-03-27 00:00:00: Portfolio Value - 872760.39\n", + "2017-03-28 00:00:00: Portfolio Value - 888629.16\n", + "2017-03-29 00:00:00: Portfolio Value - 859089.47\n", + "2017-03-30 00:00:00: Portfolio Value - 849422.01\n", + "2017-03-31 00:00:00: Portfolio Value - 791124.60\n", + "2017-04-03 00:00:00: Portfolio Value - 827047.06\n", + "2017-04-04 00:00:00: Portfolio Value - 843242.51\n", + "2017-04-05 00:00:00: Portfolio Value - 800411.02\n", + "2017-04-06 00:00:00: Portfolio Value - 758843.73\n", + "2017-04-07 00:00:00: Portfolio Value - 759670.63\n", + "2017-04-10 00:00:00: Portfolio Value - 740368.70\n", + "2017-04-11 00:00:00: Portfolio Value - 764935.09\n", + "2017-04-12 00:00:00: Portfolio Value - 736750.75\n", + "2017-04-13 00:00:00: Portfolio Value - 746962.93\n", + "2017-04-17 00:00:00: Portfolio Value - 622217.13\n", + "2017-04-18 00:00:00: Portfolio Value - 609969.82\n", + "2017-04-19 00:00:00: Portfolio Value - 598274.13\n", + "2017-04-20 00:00:00: Portfolio Value - 578697.25\n", + "2017-04-21 00:00:00: Portfolio Value - 629280.35\n", + "2017-04-24 00:00:00: Portfolio Value - 588638.95\n", + "2017-04-25 00:00:00: Portfolio Value - 658611.24\n", + "2017-04-26 00:00:00: Portfolio Value - 669729.71\n", + "2017-04-27 00:00:00: Portfolio Value - 612213.69\n", + "2017-04-28 00:00:00: Portfolio Value - 587437.39\n", + "2017-05-01 00:00:00: Portfolio Value - 590036.78\n", + "2017-05-02 00:00:00: Portfolio Value - 624288.72\n", + "2017-05-03 00:00:00: Portfolio Value - 652462.47\n", + "2017-05-04 00:00:00: Portfolio Value - 646876.77\n", + "2017-05-05 00:00:00: Portfolio Value - 638918.53\n", + "2017-05-08 00:00:00: Portfolio Value - 610956.87\n", + "2017-05-09 00:00:00: Portfolio Value - 710877.87\n", + "2017-05-10 00:00:00: Portfolio Value - 726653.03\n", + "2017-05-11 00:00:00: Portfolio Value - 678421.39\n", + "2017-05-12 00:00:00: Portfolio Value - 658183.31\n", + "2017-05-15 00:00:00: Portfolio Value - 629413.56\n", + "2017-05-16 00:00:00: Portfolio Value - 578010.12\n", + "2017-05-17 00:00:00: Portfolio Value - 618583.06\n", + "2017-05-18 00:00:00: Portfolio Value - 708092.81\n", + "2017-05-19 00:00:00: Portfolio Value - 709107.22\n", + "2017-05-22 00:00:00: Portfolio Value - 684328.33\n", + "2017-05-23 00:00:00: Portfolio Value - 642779.87\n", + "2017-05-24 00:00:00: Portfolio Value - 575782.13\n", + "2017-05-25 00:00:00: Portfolio Value - 591660.79\n", + "2017-05-26 00:00:00: Portfolio Value - 595477.23\n", + "2017-05-30 00:00:00: Portfolio Value - 582675.14\n", + "2017-05-31 00:00:00: Portfolio Value - 579732.66\n", + "2017-06-01 00:00:00: Portfolio Value - 579206.94\n", + "2017-06-02 00:00:00: Portfolio Value - 609370.74\n", + "2017-06-05 00:00:00: Portfolio Value - 543729.71\n", + "2017-06-06 00:00:00: Portfolio Value - 486205.11\n", + "2017-06-07 00:00:00: Portfolio Value - 465799.20\n", + "2017-06-08 00:00:00: Portfolio Value - 497528.53\n", + "2017-06-09 00:00:00: Portfolio Value - 437360.07\n", + "2017-06-12 00:00:00: Portfolio Value - 379244.67\n", + "2017-06-13 00:00:00: Portfolio Value - 398580.71\n", + "2017-06-14 00:00:00: Portfolio Value - 374849.47\n", + "2017-06-15 00:00:00: Portfolio Value - 363641.93\n", + "2017-06-16 00:00:00: Portfolio Value - 392130.68\n", + "2017-06-19 00:00:00: Portfolio Value - 356062.72\n", + "2017-06-20 00:00:00: Portfolio Value - 360833.22\n", + "2017-06-21 00:00:00: Portfolio Value - 413478.35\n", + "2017-06-22 00:00:00: Portfolio Value - 369466.43\n", + "2017-06-23 00:00:00: Portfolio Value - 462298.36\n", + "2017-06-26 00:00:00: Portfolio Value - 387777.69\n", + "2017-06-27 00:00:00: Portfolio Value - 316586.87\n", + "2017-06-28 00:00:00: Portfolio Value - 340491.57\n", + "2017-06-29 00:00:00: Portfolio Value - 345773.92\n", + "2017-06-30 00:00:00: Portfolio Value - 340033.56\n", + "2017-07-03 00:00:00: Portfolio Value - 294316.59\n", + "2017-07-05 00:00:00: Portfolio Value - 268159.00\n", + "2017-07-06 00:00:00: Portfolio Value - 264241.19\n", + "2017-07-07 00:00:00: Portfolio Value - 275485.36\n", + "2017-07-10 00:00:00: Portfolio Value - 216156.54\n", + "2017-07-11 00:00:00: Portfolio Value - 203228.09\n", + "2017-07-12 00:00:00: Portfolio Value - 199430.68\n", + "2017-07-13 00:00:00: Portfolio Value - 145276.78\n", + "2017-07-14 00:00:00: Portfolio Value - 165541.17\n", + "2017-07-17 00:00:00: Portfolio Value - 224049.57\n", + "2017-07-18 00:00:00: Portfolio Value - 410079.56\n", + "2017-07-19 00:00:00: Portfolio Value - 402512.21\n", + "2017-07-20 00:00:00: Portfolio Value - 386982.83\n", + "2017-07-21 00:00:00: Portfolio Value - 382964.69\n", + "2017-07-24 00:00:00: Portfolio Value - 359415.92\n", + "2017-07-25 00:00:00: Portfolio Value - 364677.91\n", + "2017-07-26 00:00:00: Portfolio Value - 328151.14\n", + "2017-07-27 00:00:00: Portfolio Value - 286678.06\n", + "2017-07-28 00:00:00: Portfolio Value - 312915.57\n", + "2017-07-31 00:00:00: Portfolio Value - 272320.15\n", + "2017-08-01 00:00:00: Portfolio Value - 207814.83\n", + "2017-08-02 00:00:00: Portfolio Value - 116997.33\n", + "2017-08-03 00:00:00: Portfolio Value - 125596.86\n", + "2017-08-04 00:00:00: Portfolio Value - 169250.12\n", + "2017-08-07 00:00:00: Portfolio Value - 193026.82\n", + "2017-08-08 00:00:00: Portfolio Value - 157203.26\n", + "2017-08-09 00:00:00: Portfolio Value - 63908.32\n", + "2017-08-10 00:00:00: Portfolio Value - 6600.44\n", + "2017-08-11 00:00:00: Portfolio Value - 41602.66\n", + "2017-08-14 00:00:00: Portfolio Value - -22091.67\n", + "2017-08-15 00:00:00: Portfolio Value - -97639.47\n", + "2017-08-16 00:00:00: Portfolio Value - -91750.43\n", + "2017-08-17 00:00:00: Portfolio Value - -70269.91\n", + "2017-08-18 00:00:00: Portfolio Value - -51749.41\n", + "2017-08-21 00:00:00: Portfolio Value - -91865.36\n", + "2017-08-22 00:00:00: Portfolio Value - -116538.79\n", + "2017-08-23 00:00:00: Portfolio Value - -147063.77\n", + "2017-08-24 00:00:00: Portfolio Value - -117818.62\n", + "2017-08-25 00:00:00: Portfolio Value - -235068.26\n", + "2017-08-28 00:00:00: Portfolio Value - -195813.87\n", + "2017-08-29 00:00:00: Portfolio Value - -183723.13\n", + "2017-08-30 00:00:00: Portfolio Value - -41311.34\n", + "2017-08-31 00:00:00: Portfolio Value - -68985.59\n", + "2017-09-01 00:00:00: Portfolio Value - -54855.29\n", + "2017-09-05 00:00:00: Portfolio Value - -1556.02\n", + "2017-09-06 00:00:00: Portfolio Value - 75802.32\n", + "2017-09-07 00:00:00: Portfolio Value - 25075.04\n", + "2017-09-08 00:00:00: Portfolio Value - -11822.94\n", + "2017-09-11 00:00:00: Portfolio Value - -64412.61\n", + "2017-09-12 00:00:00: Portfolio Value - -77697.42\n", + "2017-09-13 00:00:00: Portfolio Value - 16501.41\n", + "2017-09-14 00:00:00: Portfolio Value - 15022.79\n", + "2017-09-15 00:00:00: Portfolio Value - -19796.50\n", + "2017-09-18 00:00:00: Portfolio Value - 13508.69\n", + "2017-09-19 00:00:00: Portfolio Value - 12103.16\n", + "2017-09-20 00:00:00: Portfolio Value - 45249.55\n", + "2017-09-21 00:00:00: Portfolio Value - 49941.40\n", + "2017-09-22 00:00:00: Portfolio Value - 31245.88\n", + "2017-09-25 00:00:00: Portfolio Value - -37635.87\n", + "2017-09-26 00:00:00: Portfolio Value - -35061.86\n", + "2017-09-27 00:00:00: Portfolio Value - -18641.76\n", + "2017-09-28 00:00:00: Portfolio Value - -54884.49\n", + "2017-09-29 00:00:00: Portfolio Value - -58187.80\n", + "2017-10-02 00:00:00: Portfolio Value - -127824.81\n", + "2017-10-03 00:00:00: Portfolio Value - -155823.97\n", + "2017-10-04 00:00:00: Portfolio Value - -152253.41\n", + "2017-10-05 00:00:00: Portfolio Value - -153522.47\n", + "2017-10-06 00:00:00: Portfolio Value - -117138.25\n", + "2017-10-09 00:00:00: Portfolio Value - -157172.33\n", + "2017-10-10 00:00:00: Portfolio Value - -238708.80\n", + "2017-10-11 00:00:00: Portfolio Value - -374442.20\n", + "2017-10-12 00:00:00: Portfolio Value - -504933.36\n", + "2017-10-13 00:00:00: Portfolio Value - -370434.31\n", + "2017-10-16 00:00:00: Portfolio Value - -341984.04\n", + "2017-10-17 00:00:00: Portfolio Value - -286927.96\n", + "2017-10-18 00:00:00: Portfolio Value - -394741.46\n", + "2017-10-19 00:00:00: Portfolio Value - -437980.53\n", + "2017-10-20 00:00:00: Portfolio Value - -436863.42\n", + "2017-10-23 00:00:00: Portfolio Value - -426175.08\n", + "2017-10-24 00:00:00: Portfolio Value - -374616.83\n", + "2017-10-25 00:00:00: Portfolio Value - -348695.11\n", + "2017-10-26 00:00:00: Portfolio Value - -330136.50\n", + "2017-10-27 00:00:00: Portfolio Value - -287793.54\n", + "2017-10-30 00:00:00: Portfolio Value - -291181.86\n", + "2017-10-31 00:00:00: Portfolio Value - -272924.17\n", + "2017-11-01 00:00:00: Portfolio Value - -336168.01\n", + "2017-11-02 00:00:00: Portfolio Value - -466120.05\n", + "2017-11-03 00:00:00: Portfolio Value - -493029.12\n", + "2017-11-06 00:00:00: Portfolio Value - -490711.37\n", + "2017-11-07 00:00:00: Portfolio Value - -474879.22\n", + "2017-11-08 00:00:00: Portfolio Value - -566037.21\n", + "2017-11-09 00:00:00: Portfolio Value - -456546.70\n", + "2017-11-10 00:00:00: Portfolio Value - -390509.60\n", + "2017-11-13 00:00:00: Portfolio Value - -330686.27\n", + "2017-11-14 00:00:00: Portfolio Value - -337343.22\n", + "2017-11-15 00:00:00: Portfolio Value - -360893.83\n", + "2017-11-16 00:00:00: Portfolio Value - -287182.66\n", + "2017-11-17 00:00:00: Portfolio Value - -241455.28\n", + "2017-11-20 00:00:00: Portfolio Value - -332558.71\n", + "2017-11-21 00:00:00: Portfolio Value - -372127.00\n", + "2017-11-22 00:00:00: Portfolio Value - -334560.53\n", + "2017-11-24 00:00:00: Portfolio Value - -375299.82\n", + "2017-11-27 00:00:00: Portfolio Value - -448676.17\n", + "2017-11-28 00:00:00: Portfolio Value - -427569.33\n", + "2017-11-29 00:00:00: Portfolio Value - -450373.02\n", + "2017-11-30 00:00:00: Portfolio Value - -455806.53\n", + "2017-12-01 00:00:00: Portfolio Value - -568578.16\n", + "2017-12-04 00:00:00: Portfolio Value - -490197.84\n", + "2017-12-05 00:00:00: Portfolio Value - -473576.50\n", + "2017-12-06 00:00:00: Portfolio Value - -486807.75\n", + "2017-12-07 00:00:00: Portfolio Value - -483008.16\n", + "2017-12-08 00:00:00: Portfolio Value - -431952.61\n", + "2017-12-11 00:00:00: Portfolio Value - -477620.58\n", + "2017-12-12 00:00:00: Portfolio Value - -559871.02\n", + "2017-12-13 00:00:00: Portfolio Value - -488119.46\n", + "2017-12-14 00:00:00: Portfolio Value - -492976.85\n", + "2017-12-15 00:00:00: Portfolio Value - -511181.05\n", + "2017-12-18 00:00:00: Portfolio Value - -510213.34\n", + "2017-12-19 00:00:00: Portfolio Value - -394631.10\n", + "2017-12-20 00:00:00: Portfolio Value - -373419.95\n", + "2017-12-21 00:00:00: Portfolio Value - -314279.52\n", + "2017-12-22 00:00:00: Portfolio Value - -309455.85\n", + "2017-12-26 00:00:00: Portfolio Value - -337875.15\n", + "2017-12-27 00:00:00: Portfolio Value - -362006.83\n", + "2017-12-28 00:00:00: Portfolio Value - -355613.30\n", + "2017-12-29 00:00:00: Portfolio Value - -358831.38\n", + "2018-01-02 00:00:00: Portfolio Value - -148128.82\n", + "2018-01-03 00:00:00: Portfolio Value - -80696.08\n", + "2018-01-04 00:00:00: Portfolio Value - -157913.57\n", + "2018-01-05 00:00:00: Portfolio Value - -178176.76\n", + "2018-01-08 00:00:00: Portfolio Value - -234773.78\n", + "2018-01-09 00:00:00: Portfolio Value - -286374.95\n", + "2018-01-10 00:00:00: Portfolio Value - -195673.66\n", + "2018-01-11 00:00:00: Portfolio Value - -151704.38\n", + "2018-01-12 00:00:00: Portfolio Value - -182396.33\n", + "2018-01-16 00:00:00: Portfolio Value - -309856.51\n", + "2018-01-17 00:00:00: Portfolio Value - -410375.54\n", + "2018-01-18 00:00:00: Portfolio Value - -338361.41\n", + "2018-01-19 00:00:00: Portfolio Value - -400247.25\n", + "2018-01-22 00:00:00: Portfolio Value - -408591.81\n", + "2018-01-23 00:00:00: Portfolio Value - -127251.12\n", + "2018-01-24 00:00:00: Portfolio Value - -45982.77\n", + "2018-01-25 00:00:00: Portfolio Value - 84156.65\n", + "2018-01-26 00:00:00: Portfolio Value - 38159.79\n", + "2018-01-29 00:00:00: Portfolio Value - 215243.59\n", + "2018-01-30 00:00:00: Portfolio Value - 213774.52\n", + "2018-01-31 00:00:00: Portfolio Value - 38104.92\n", + "2018-02-01 00:00:00: Portfolio Value - -67232.35\n", + "2018-02-02 00:00:00: Portfolio Value - 71721.98\n", + "2018-02-05 00:00:00: Portfolio Value - 111344.93\n", + "2018-02-06 00:00:00: Portfolio Value - 189951.68\n", + "2018-02-07 00:00:00: Portfolio Value - 196722.19\n", + "2018-02-08 00:00:00: Portfolio Value - 203394.10\n", + "2018-02-09 00:00:00: Portfolio Value - 116880.54\n", + "2018-02-12 00:00:00: Portfolio Value - 107310.56\n", + "2018-02-13 00:00:00: Portfolio Value - 74579.23\n", + "2018-02-14 00:00:00: Portfolio Value - 6297.31\n", + "2018-02-15 00:00:00: Portfolio Value - 142625.92\n", + "2018-02-16 00:00:00: Portfolio Value - 96926.12\n", + "2018-02-20 00:00:00: Portfolio Value - 91843.21\n", + "2018-02-21 00:00:00: Portfolio Value - 206281.05\n", + "2018-02-22 00:00:00: Portfolio Value - 218442.87\n", + "2018-02-23 00:00:00: Portfolio Value - 151549.96\n", + "2018-02-26 00:00:00: Portfolio Value - 93007.89\n", + "2018-02-27 00:00:00: Portfolio Value - 137461.85\n", + "2018-02-28 00:00:00: Portfolio Value - 149874.09\n", + "2018-03-01 00:00:00: Portfolio Value - 233098.10\n", + "2018-03-02 00:00:00: Portfolio Value - 341008.45\n", + "2018-03-05 00:00:00: Portfolio Value - 367438.28\n", + "2018-03-06 00:00:00: Portfolio Value - 406501.83\n", + "2018-03-07 00:00:00: Portfolio Value - 321167.27\n", + "2018-03-08 00:00:00: Portfolio Value - 266769.29\n", + "2018-03-09 00:00:00: Portfolio Value - 217842.48\n", + "2018-03-12 00:00:00: Portfolio Value - 118866.30\n", + "2018-03-13 00:00:00: Portfolio Value - 100996.85\n", + "2018-03-14 00:00:00: Portfolio Value - 103574.07\n", + "2018-03-15 00:00:00: Portfolio Value - 86898.70\n", + "2018-03-16 00:00:00: Portfolio Value - 73968.50\n", + "2018-03-19 00:00:00: Portfolio Value - 103977.65\n", + "2018-03-20 00:00:00: Portfolio Value - 67996.15\n", + "2018-03-21 00:00:00: Portfolio Value - 54842.34\n", + "2018-03-22 00:00:00: Portfolio Value - 33171.47\n", + "2018-03-23 00:00:00: Portfolio Value - 126749.85\n", + "2018-03-26 00:00:00: Portfolio Value - 152452.31\n", + "2018-03-27 00:00:00: Portfolio Value - 61840.31\n", + "2018-03-28 00:00:00: Portfolio Value - -79738.35\n", + "2018-03-29 00:00:00: Portfolio Value - -123437.24\n", + "2018-04-02 00:00:00: Portfolio Value - -103208.67\n", + "2018-04-03 00:00:00: Portfolio Value - -139020.31\n", + "2018-04-04 00:00:00: Portfolio Value - -148728.74\n", + "2018-04-05 00:00:00: Portfolio Value - -135523.33\n", + "2018-04-06 00:00:00: Portfolio Value - -192890.59\n", + "2018-04-09 00:00:00: Portfolio Value - -195698.80\n", + "2018-04-10 00:00:00: Portfolio Value - -121870.37\n", + "2018-04-11 00:00:00: Portfolio Value - -60059.70\n", + "2018-04-12 00:00:00: Portfolio Value - 10413.42\n", + "2018-04-13 00:00:00: Portfolio Value - 141874.88\n", + "2018-04-16 00:00:00: Portfolio Value - 123303.80\n", + "2018-04-17 00:00:00: Portfolio Value - 374067.44\n", + "2018-04-18 00:00:00: Portfolio Value - 413597.14\n", + "2018-04-19 00:00:00: Portfolio Value - 414338.74\n", + "2018-04-20 00:00:00: Portfolio Value - 407044.21\n", + "2018-04-23 00:00:00: Portfolio Value - 359170.00\n", + "2018-04-24 00:00:00: Portfolio Value - 197582.02\n", + "2018-04-25 00:00:00: Portfolio Value - 254053.15\n", + "2018-04-26 00:00:00: Portfolio Value - 232069.06\n", + "2018-04-27 00:00:00: Portfolio Value - 227487.57\n", + "2018-04-30 00:00:00: Portfolio Value - 291330.98\n", + "2018-05-01 00:00:00: Portfolio Value - 343055.87\n", + "2018-05-02 00:00:00: Portfolio Value - 470910.03\n", + "2018-05-03 00:00:00: Portfolio Value - 600086.16\n", + "2018-05-04 00:00:00: Portfolio Value - 632972.93\n", + "2018-05-07 00:00:00: Portfolio Value - 698113.87\n", + "2018-05-08 00:00:00: Portfolio Value - 751507.15\n", + "2018-05-09 00:00:00: Portfolio Value - 690658.90\n", + "2018-05-10 00:00:00: Portfolio Value - 599342.82\n", + "2018-05-11 00:00:00: Portfolio Value - 611756.96\n", + "2018-05-14 00:00:00: Portfolio Value - 635529.93\n", + "2018-05-15 00:00:00: Portfolio Value - 753493.49\n", + "2018-05-16 00:00:00: Portfolio Value - 819290.73\n", + "2018-05-17 00:00:00: Portfolio Value - 808828.54\n", + "2018-05-18 00:00:00: Portfolio Value - 757663.70\n", + "2018-05-21 00:00:00: Portfolio Value - 792154.68\n", + "2018-05-22 00:00:00: Portfolio Value - 731202.79\n", + "2018-05-23 00:00:00: Portfolio Value - 840120.58\n", + "2018-05-24 00:00:00: Portfolio Value - 889124.73\n", + "2018-05-25 00:00:00: Portfolio Value - 921989.38\n", + "2018-05-29 00:00:00: Portfolio Value - 953517.82\n", + "2018-05-30 00:00:00: Portfolio Value - 884946.45\n", + "2018-05-31 00:00:00: Portfolio Value - 791555.58\n", + "2018-06-01 00:00:00: Portfolio Value - 833134.96\n", + "2018-06-04 00:00:00: Portfolio Value - 869637.03\n", + "2018-06-05 00:00:00: Portfolio Value - 969261.52\n", + "2018-06-06 00:00:00: Portfolio Value - 865575.54\n", + "2018-06-07 00:00:00: Portfolio Value - 860039.43\n", + "2018-06-08 00:00:00: Portfolio Value - 799448.90\n", + "2018-06-11 00:00:00: Portfolio Value - 726510.82\n", + "2018-06-12 00:00:00: Portfolio Value - 761485.10\n", + "2018-06-13 00:00:00: Portfolio Value - 1053458.61\n", + "2018-06-14 00:00:00: Portfolio Value - 1219056.65\n", + "2018-06-15 00:00:00: Portfolio Value - 1215941.96\n", + "2018-06-18 00:00:00: Portfolio Value - 1150651.93\n", + "2018-06-19 00:00:00: Portfolio Value - 1236542.87\n", + "2018-06-20 00:00:00: Portfolio Value - 1347450.51\n", + "2018-06-21 00:00:00: Portfolio Value - 1317643.17\n", + "2018-06-22 00:00:00: Portfolio Value - 1300234.83\n", + "2018-06-25 00:00:00: Portfolio Value - 1044381.99\n", + "2018-06-26 00:00:00: Portfolio Value - 1125038.38\n", + "2018-06-27 00:00:00: Portfolio Value - 1075782.76\n", + "2018-06-28 00:00:00: Portfolio Value - 1149773.83\n", + "2018-06-29 00:00:00: Portfolio Value - 1097767.45\n", + "2018-07-02 00:00:00: Portfolio Value - 1166641.62\n", + "2018-07-03 00:00:00: Portfolio Value - 1165781.43\n", + "2018-07-05 00:00:00: Portfolio Value - 1206076.83\n", + "2018-07-06 00:00:00: Portfolio Value - 1279360.70\n", + "2018-07-09 00:00:00: Portfolio Value - 1358824.50\n", + "2018-07-10 00:00:00: Portfolio Value - 1316987.57\n", + "2018-07-11 00:00:00: Portfolio Value - 1340455.13\n", + "2018-07-12 00:00:00: Portfolio Value - 1261474.80\n", + "2018-07-13 00:00:00: Portfolio Value - 1142685.06\n", + "2018-07-16 00:00:00: Portfolio Value - 1165994.19\n", + "2018-07-17 00:00:00: Portfolio Value - 950459.05\n", + "2018-07-18 00:00:00: Portfolio Value - 926857.89\n", + "2018-07-19 00:00:00: Portfolio Value - 886861.88\n", + "2018-07-20 00:00:00: Portfolio Value - 845247.16\n", + "2018-07-23 00:00:00: Portfolio Value - 834584.75\n", + "2018-07-24 00:00:00: Portfolio Value - 769591.13\n", + "2018-07-25 00:00:00: Portfolio Value - 850645.20\n", + "2018-07-26 00:00:00: Portfolio Value - 839964.80\n", + "2018-07-27 00:00:00: Portfolio Value - 767623.38\n", + "2018-07-30 00:00:00: Portfolio Value - 630983.22\n", + "2018-07-31 00:00:00: Portfolio Value - 609864.82\n", + "2018-08-01 00:00:00: Portfolio Value - 653381.76\n", + "2018-08-02 00:00:00: Portfolio Value - 698960.73\n", + "2018-08-03 00:00:00: Portfolio Value - 555063.94\n", + "2018-08-06 00:00:00: Portfolio Value - 665732.86\n", + "2018-08-07 00:00:00: Portfolio Value - 656834.91\n", + "2018-08-08 00:00:00: Portfolio Value - 624265.27\n", + "2018-08-09 00:00:00: Portfolio Value - 685440.60\n", + "2018-08-10 00:00:00: Portfolio Value - 721476.09\n", + "2018-08-13 00:00:00: Portfolio Value - 680655.47\n", + "2018-08-14 00:00:00: Portfolio Value - 682031.73\n", + "2018-08-15 00:00:00: Portfolio Value - 621474.71\n", + "2018-08-16 00:00:00: Portfolio Value - 542140.10\n", + "2018-08-17 00:00:00: Portfolio Value - 554578.59\n", + "2018-08-20 00:00:00: Portfolio Value - 648633.95\n", + "2018-08-21 00:00:00: Portfolio Value - 771108.36\n", + "2018-08-22 00:00:00: Portfolio Value - 752447.09\n", + "2018-08-23 00:00:00: Portfolio Value - 804717.49\n", + "2018-08-24 00:00:00: Portfolio Value - 956922.51\n", + "2018-08-27 00:00:00: Portfolio Value - 960834.73\n", + "2018-08-28 00:00:00: Portfolio Value - 1031703.71\n", + "2018-08-29 00:00:00: Portfolio Value - 988591.33\n", + "2018-08-30 00:00:00: Portfolio Value - 1038858.71\n", + "2018-08-31 00:00:00: Portfolio Value - 1042530.51\n", + "2018-09-04 00:00:00: Portfolio Value - 1109608.02\n", + "2018-09-05 00:00:00: Portfolio Value - 957541.15\n", + "2018-09-06 00:00:00: Portfolio Value - 986062.48\n", + "2018-09-07 00:00:00: Portfolio Value - 1062597.69\n", + "2018-09-10 00:00:00: Portfolio Value - 1035796.67\n", + "2018-09-11 00:00:00: Portfolio Value - 1099965.83\n", + "2018-09-12 00:00:00: Portfolio Value - 1238242.11\n", + "2018-09-13 00:00:00: Portfolio Value - 1262057.76\n", + "2018-09-14 00:00:00: Portfolio Value - 1165315.12\n", + "2018-09-17 00:00:00: Portfolio Value - 1130361.93\n", + "2018-09-18 00:00:00: Portfolio Value - 1282883.94\n", + "2018-09-19 00:00:00: Portfolio Value - 1248224.19\n", + "2018-09-20 00:00:00: Portfolio Value - 1199732.84\n", + "2018-09-21 00:00:00: Portfolio Value - 1169862.44\n", + "2018-09-24 00:00:00: Portfolio Value - 1339334.73\n", + "2018-09-25 00:00:00: Portfolio Value - 1353752.24\n", + "2018-09-26 00:00:00: Portfolio Value - 1508213.65\n", + "2018-09-27 00:00:00: Portfolio Value - 1477644.26\n", + "2018-09-28 00:00:00: Portfolio Value - 1473979.63\n", + "2018-10-01 00:00:00: Portfolio Value - 1460587.12\n", + "2018-10-02 00:00:00: Portfolio Value - 1346620.98\n", + "2018-10-03 00:00:00: Portfolio Value - 1381152.69\n", + "2018-10-04 00:00:00: Portfolio Value - 1221595.03\n", + "2018-10-05 00:00:00: Portfolio Value - 1117190.18\n", + "2018-10-08 00:00:00: Portfolio Value - 1092924.34\n", + "2018-10-09 00:00:00: Portfolio Value - 1214865.89\n", + "2018-10-10 00:00:00: Portfolio Value - 1206760.49\n", + "2018-10-11 00:00:00: Portfolio Value - 1209579.18\n", + "2018-10-12 00:00:00: Portfolio Value - 1339851.63\n", + "2018-10-15 00:00:00: Portfolio Value - 1304011.51\n", + "2018-10-16 00:00:00: Portfolio Value - 1461804.51\n", + "2018-10-17 00:00:00: Portfolio Value - 1521451.97\n", + "2018-10-18 00:00:00: Portfolio Value - 1413496.65\n", + "2018-10-19 00:00:00: Portfolio Value - 1184570.79\n", + "2018-10-22 00:00:00: Portfolio Value - 1244477.59\n", + "2018-10-23 00:00:00: Portfolio Value - 1276588.48\n", + "2018-10-24 00:00:00: Portfolio Value - 1036334.99\n", + "2018-10-25 00:00:00: Portfolio Value - 1155342.40\n", + "2018-10-26 00:00:00: Portfolio Value - 1274124.34\n", + "2018-10-29 00:00:00: Portfolio Value - 1102414.37\n", + "2018-10-30 00:00:00: Portfolio Value - 951231.08\n", + "2018-10-31 00:00:00: Portfolio Value - 1050865.97\n", + "2018-11-01 00:00:00: Portfolio Value - 1296179.55\n", + "2018-11-02 00:00:00: Portfolio Value - 1300193.38\n", + "2018-11-05 00:00:00: Portfolio Value - 1339476.71\n", + "2018-11-06 00:00:00: Portfolio Value - 1284211.08\n", + "2018-11-07 00:00:00: Portfolio Value - 1283306.66\n", + "2018-11-08 00:00:00: Portfolio Value - 1298058.24\n", + "2018-11-09 00:00:00: Portfolio Value - 1208520.28\n", + "2018-11-12 00:00:00: Portfolio Value - 1180948.00\n", + "2018-11-13 00:00:00: Portfolio Value - 1221637.79\n", + "2018-11-14 00:00:00: Portfolio Value - 1217054.93\n", + "2018-11-15 00:00:00: Portfolio Value - 1261375.32\n", + "2018-11-16 00:00:00: Portfolio Value - 1192360.08\n", + "2018-11-19 00:00:00: Portfolio Value - 1087309.16\n", + "2018-11-20 00:00:00: Portfolio Value - 1083561.86\n", + "2018-11-21 00:00:00: Portfolio Value - 1010992.96\n", + "2018-11-23 00:00:00: Portfolio Value - 1009890.29\n", + "2018-11-26 00:00:00: Portfolio Value - 957769.65\n", + "2018-11-27 00:00:00: Portfolio Value - 970873.93\n", + "2018-11-28 00:00:00: Portfolio Value - 1032654.24\n", + "2018-11-29 00:00:00: Portfolio Value - 1176733.88\n", + "2018-11-30 00:00:00: Portfolio Value - 1041404.01\n", + "2018-12-03 00:00:00: Portfolio Value - 1092464.47\n", + "2018-12-04 00:00:00: Portfolio Value - 1099611.81\n", + "2018-12-06 00:00:00: Portfolio Value - 1193582.84\n", + "2018-12-07 00:00:00: Portfolio Value - 894190.31\n", + "2018-12-10 00:00:00: Portfolio Value - 925782.60\n", + "2018-12-11 00:00:00: Portfolio Value - 901526.99\n", + "2018-12-12 00:00:00: Portfolio Value - 1035539.50\n", + "2018-12-13 00:00:00: Portfolio Value - 1017252.99\n", + "2018-12-14 00:00:00: Portfolio Value - 1020631.32\n", + "2018-12-17 00:00:00: Portfolio Value - 1094347.92\n", + "2018-12-18 00:00:00: Portfolio Value - 1117416.93\n", + "2018-12-19 00:00:00: Portfolio Value - 1110839.39\n", + "2018-12-20 00:00:00: Portfolio Value - 1046522.58\n", + "2018-12-21 00:00:00: Portfolio Value - 1016972.22\n", + "2018-12-24 00:00:00: Portfolio Value - 1015238.88\n", + "2018-12-26 00:00:00: Portfolio Value - 1102181.71\n", + "2018-12-27 00:00:00: Portfolio Value - 1105632.77\n", + "2018-12-28 00:00:00: Portfolio Value - 1079071.32\n", + "2018-12-31 00:00:00: Portfolio Value - 1191751.56\n", + "2019-01-02 00:00:00: Portfolio Value - 1233737.73\n", + "2019-01-03 00:00:00: Portfolio Value - 1325251.27\n", + "2019-01-04 00:00:00: Portfolio Value - 1507532.21\n", + "2019-01-07 00:00:00: Portfolio Value - 1773417.53\n", + "2019-01-08 00:00:00: Portfolio Value - 1794669.51\n", + "2019-01-09 00:00:00: Portfolio Value - 1803660.73\n", + "2019-01-10 00:00:00: Portfolio Value - 1745476.87\n", + "2019-01-11 00:00:00: Portfolio Value - 1902783.40\n", + "2019-01-14 00:00:00: Portfolio Value - 1834629.11\n", + "2019-01-15 00:00:00: Portfolio Value - 1984257.13\n", + "2019-01-16 00:00:00: Portfolio Value - 1793624.88\n", + "2019-01-17 00:00:00: Portfolio Value - 1814020.10\n", + "2019-01-18 00:00:00: Portfolio Value - 1705333.74\n", + "2019-01-22 00:00:00: Portfolio Value - 1629995.01\n", + "2019-01-23 00:00:00: Portfolio Value - 1609726.72\n", + "2019-01-24 00:00:00: Portfolio Value - 1618627.16\n", + "2019-01-25 00:00:00: Portfolio Value - 1569676.44\n", + "2019-01-28 00:00:00: Portfolio Value - 1538205.91\n", + "2019-01-29 00:00:00: Portfolio Value - 1498422.66\n", + "2019-01-30 00:00:00: Portfolio Value - 1588935.65\n", + "2019-01-31 00:00:00: Portfolio Value - 1482385.18\n", + "2019-02-01 00:00:00: Portfolio Value - 1456429.12\n", + "2019-02-04 00:00:00: Portfolio Value - 1505537.43\n", + "2019-02-05 00:00:00: Portfolio Value - 1579793.72\n", + "2019-02-06 00:00:00: Portfolio Value - 1603416.52\n", + "2019-02-07 00:00:00: Portfolio Value - 1498209.46\n", + "2019-02-08 00:00:00: Portfolio Value - 1544571.63\n", + "2019-02-11 00:00:00: Portfolio Value - 1541505.57\n", + "2019-02-12 00:00:00: Portfolio Value - 1663810.39\n", + "2019-02-13 00:00:00: Portfolio Value - 1592801.71\n", + "2019-02-14 00:00:00: Portfolio Value - 1587618.38\n", + "2019-02-15 00:00:00: Portfolio Value - 1511025.05\n", + "2019-02-19 00:00:00: Portfolio Value - 1538330.96\n", + "2019-02-20 00:00:00: Portfolio Value - 1483348.82\n", + "2019-02-21 00:00:00: Portfolio Value - 1487540.88\n", + "2019-02-22 00:00:00: Portfolio Value - 1541778.04\n", + "2019-02-25 00:00:00: Portfolio Value - 1539980.38\n", + "2019-02-26 00:00:00: Portfolio Value - 1529427.47\n", + "2019-02-27 00:00:00: Portfolio Value - 1527094.90\n", + "2019-02-28 00:00:00: Portfolio Value - 1458886.11\n", + "2019-03-01 00:00:00: Portfolio Value - 1431245.47\n", + "2019-03-04 00:00:00: Portfolio Value - 1402086.25\n", + "2019-03-05 00:00:00: Portfolio Value - 1452387.40\n", + "2019-03-06 00:00:00: Portfolio Value - 1555205.76\n", + "2019-03-07 00:00:00: Portfolio Value - 1467510.28\n", + "2019-03-08 00:00:00: Portfolio Value - 1420082.21\n", + "2019-03-11 00:00:00: Portfolio Value - 1440560.28\n", + "2019-03-12 00:00:00: Portfolio Value - 1366712.00\n", + "2019-03-13 00:00:00: Portfolio Value - 1384144.96\n", + "2019-03-14 00:00:00: Portfolio Value - 1298086.21\n", + "2019-03-15 00:00:00: Portfolio Value - 1436437.27\n", + "2019-03-18 00:00:00: Portfolio Value - 1398731.70\n", + "2019-03-19 00:00:00: Portfolio Value - 1346208.06\n", + "2019-03-20 00:00:00: Portfolio Value - 1484451.77\n", + "2019-03-21 00:00:00: Portfolio Value - 1495126.45\n", + "2019-03-22 00:00:00: Portfolio Value - 1440410.29\n", + "2019-03-25 00:00:00: Portfolio Value - 1535968.54\n", + "2019-03-26 00:00:00: Portfolio Value - 1442920.68\n", + "2019-03-27 00:00:00: Portfolio Value - 1438795.46\n", + "2019-03-28 00:00:00: Portfolio Value - 1444882.87\n", + "2019-03-29 00:00:00: Portfolio Value - 1442815.03\n", + "2019-04-01 00:00:00: Portfolio Value - 1495087.96\n", + "2019-04-02 00:00:00: Portfolio Value - 1512765.31\n", + "2019-04-03 00:00:00: Portfolio Value - 1472984.94\n", + "2019-04-04 00:00:00: Portfolio Value - 1454433.71\n", + "2019-04-05 00:00:00: Portfolio Value - 1406379.33\n", + "2019-04-08 00:00:00: Portfolio Value - 1368117.10\n", + "2019-04-09 00:00:00: Portfolio Value - 1363731.36\n", + "2019-04-10 00:00:00: Portfolio Value - 1368835.43\n", + "2019-04-11 00:00:00: Portfolio Value - 1354991.00\n", + "2019-04-12 00:00:00: Portfolio Value - 1117998.09\n", + "2019-04-15 00:00:00: Portfolio Value - 1203794.62\n", + "2019-04-16 00:00:00: Portfolio Value - 1250841.78\n", + "2019-04-17 00:00:00: Portfolio Value - 1164817.12\n", + "2019-04-18 00:00:00: Portfolio Value - 1219795.54\n", + "2019-04-22 00:00:00: Portfolio Value - 1384209.82\n", + "2019-04-23 00:00:00: Portfolio Value - 1383963.48\n", + "2019-04-24 00:00:00: Portfolio Value - 1269257.40\n", + "2019-04-25 00:00:00: Portfolio Value - 1175044.80\n", + "2019-04-26 00:00:00: Portfolio Value - 1219658.64\n", + "2019-04-29 00:00:00: Portfolio Value - 1149516.93\n", + "2019-04-30 00:00:00: Portfolio Value - 980952.13\n", + "2019-05-01 00:00:00: Portfolio Value - 1110136.76\n", + "2019-05-02 00:00:00: Portfolio Value - 1130832.29\n", + "2019-05-03 00:00:00: Portfolio Value - 1178020.18\n", + "2019-05-06 00:00:00: Portfolio Value - 1187544.96\n", + "2019-05-07 00:00:00: Portfolio Value - 1213859.78\n", + "2019-05-08 00:00:00: Portfolio Value - 1139223.08\n", + "2019-05-09 00:00:00: Portfolio Value - 1127798.60\n", + "2019-05-10 00:00:00: Portfolio Value - 1068137.70\n", + "2019-05-13 00:00:00: Portfolio Value - 957518.87\n", + "2019-05-14 00:00:00: Portfolio Value - 936110.58\n", + "2019-05-15 00:00:00: Portfolio Value - 1013959.61\n", + "2019-05-16 00:00:00: Portfolio Value - 988984.59\n", + "2019-05-17 00:00:00: Portfolio Value - 951343.70\n", + "2019-05-20 00:00:00: Portfolio Value - 1016885.51\n", + "2019-05-21 00:00:00: Portfolio Value - 1033135.92\n", + "2019-05-22 00:00:00: Portfolio Value - 999449.85\n", + "2019-05-23 00:00:00: Portfolio Value - 886670.31\n", + "2019-05-24 00:00:00: Portfolio Value - 902516.37\n", + "2019-05-28 00:00:00: Portfolio Value - 961698.52\n", + "2019-05-29 00:00:00: Portfolio Value - 905389.28\n", + "2019-05-30 00:00:00: Portfolio Value - 971193.21\n", + "2019-05-31 00:00:00: Portfolio Value - 957933.95\n", + "2019-06-03 00:00:00: Portfolio Value - 886895.96\n", + "2019-06-04 00:00:00: Portfolio Value - 998842.53\n", + "2019-06-05 00:00:00: Portfolio Value - 899508.92\n", + "2019-06-06 00:00:00: Portfolio Value - 918724.58\n", + "2019-06-07 00:00:00: Portfolio Value - 921295.85\n", + "2019-06-10 00:00:00: Portfolio Value - 754491.40\n", + "2019-06-11 00:00:00: Portfolio Value - 829027.61\n", + "2019-06-12 00:00:00: Portfolio Value - 753418.00\n", + "2019-06-13 00:00:00: Portfolio Value - 773805.79\n", + "2019-06-14 00:00:00: Portfolio Value - 730992.34\n", + "2019-06-17 00:00:00: Portfolio Value - 856790.94\n", + "2019-06-18 00:00:00: Portfolio Value - 912808.32\n", + "2019-06-19 00:00:00: Portfolio Value - 860203.33\n", + "2019-06-20 00:00:00: Portfolio Value - 834105.45\n", + "2019-06-21 00:00:00: Portfolio Value - 872068.91\n", + "2019-06-24 00:00:00: Portfolio Value - 843175.99\n", + "2019-06-25 00:00:00: Portfolio Value - 862157.96\n", + "2019-06-26 00:00:00: Portfolio Value - 903358.39\n", + "2019-06-27 00:00:00: Portfolio Value - 864089.23\n", + "2019-06-28 00:00:00: Portfolio Value - 774635.72\n", + "2019-07-01 00:00:00: Portfolio Value - 791341.24\n", + "2019-07-02 00:00:00: Portfolio Value - 741233.28\n", + "2019-07-03 00:00:00: Portfolio Value - 733386.87\n", + "2019-07-05 00:00:00: Portfolio Value - 683771.40\n", + "2019-07-08 00:00:00: Portfolio Value - 712727.39\n", + "2019-07-09 00:00:00: Portfolio Value - 682702.66\n", + "2019-07-10 00:00:00: Portfolio Value - 624467.23\n", + "2019-07-11 00:00:00: Portfolio Value - 588658.91\n", + "2019-07-12 00:00:00: Portfolio Value - 611008.99\n", + "2019-07-15 00:00:00: Portfolio Value - 575830.68\n", + "2019-07-16 00:00:00: Portfolio Value - 663184.20\n", + "2019-07-17 00:00:00: Portfolio Value - 665582.46\n", + "2019-07-18 00:00:00: Portfolio Value - 288471.13\n", + "2019-07-19 00:00:00: Portfolio Value - 248613.22\n", + "2019-07-22 00:00:00: Portfolio Value - 168363.20\n", + "2019-07-23 00:00:00: Portfolio Value - 148828.56\n", + "2019-07-24 00:00:00: Portfolio Value - 238699.39\n", + "2019-07-25 00:00:00: Portfolio Value - 417944.12\n", + "2019-07-26 00:00:00: Portfolio Value - 482641.94\n", + "2019-07-29 00:00:00: Portfolio Value - 421637.58\n", + "2019-07-30 00:00:00: Portfolio Value - 376745.85\n", + "2019-07-31 00:00:00: Portfolio Value - 406867.53\n", + "2019-08-01 00:00:00: Portfolio Value - 251674.71\n", + "2019-08-02 00:00:00: Portfolio Value - 157005.25\n", + "2019-08-05 00:00:00: Portfolio Value - 248299.43\n", + "2019-08-06 00:00:00: Portfolio Value - 202523.60\n", + "2019-08-07 00:00:00: Portfolio Value - 71827.42\n", + "2019-08-08 00:00:00: Portfolio Value - 41944.27\n", + "2019-08-09 00:00:00: Portfolio Value - 18159.75\n", + "2019-08-12 00:00:00: Portfolio Value - 76780.04\n", + "2019-08-13 00:00:00: Portfolio Value - 105953.55\n", + "2019-08-14 00:00:00: Portfolio Value - 25310.57\n", + "2019-08-15 00:00:00: Portfolio Value - -77390.43\n", + "2019-08-16 00:00:00: Portfolio Value - -75502.71\n", + "2019-08-19 00:00:00: Portfolio Value - -35192.31\n", + "2019-08-20 00:00:00: Portfolio Value - -74288.03\n", + "2019-08-21 00:00:00: Portfolio Value - -116021.28\n", + "2019-08-22 00:00:00: Portfolio Value - -75718.91\n", + "2019-08-23 00:00:00: Portfolio Value - -88416.60\n", + "2019-08-26 00:00:00: Portfolio Value - -66992.37\n", + "2019-08-27 00:00:00: Portfolio Value - -199546.17\n", + "2019-08-28 00:00:00: Portfolio Value - -138846.16\n", + "2019-08-29 00:00:00: Portfolio Value - -124191.52\n", + "2019-08-30 00:00:00: Portfolio Value - -511403.20\n", + "2019-09-03 00:00:00: Portfolio Value - -628013.58\n", + "2019-09-04 00:00:00: Portfolio Value - -664025.48\n", + "2019-09-05 00:00:00: Portfolio Value - -567990.71\n", + "2019-09-06 00:00:00: Portfolio Value - -579976.66\n", + "2019-09-09 00:00:00: Portfolio Value - -447337.69\n", + "2019-09-10 00:00:00: Portfolio Value - -309502.10\n", + "2019-09-11 00:00:00: Portfolio Value - -315497.87\n", + "2019-09-12 00:00:00: Portfolio Value - -447570.62\n", + "2019-09-13 00:00:00: Portfolio Value - -431098.61\n", + "2019-09-16 00:00:00: Portfolio Value - -496366.19\n", + "2019-09-17 00:00:00: Portfolio Value - -501595.80\n", + "2019-09-18 00:00:00: Portfolio Value - -627410.84\n", + "2019-09-19 00:00:00: Portfolio Value - -765357.16\n", + "2019-09-20 00:00:00: Portfolio Value - -863434.89\n", + "2019-09-23 00:00:00: Portfolio Value - -913013.88\n", + "2019-09-24 00:00:00: Portfolio Value - -978124.05\n", + "2019-09-25 00:00:00: Portfolio Value - -952137.76\n", + "2019-09-26 00:00:00: Portfolio Value - -1073259.85\n", + "2019-09-27 00:00:00: Portfolio Value - -896991.21\n", + "2019-09-30 00:00:00: Portfolio Value - -802626.59\n", + "2019-10-01 00:00:00: Portfolio Value - -622311.93\n", + "2019-10-02 00:00:00: Portfolio Value - -523812.99\n", + "2019-10-03 00:00:00: Portfolio Value - -604408.33\n", + "2019-10-04 00:00:00: Portfolio Value - -696452.54\n", + "2019-10-07 00:00:00: Portfolio Value - -707094.25\n", + "2019-10-08 00:00:00: Portfolio Value - -659503.64\n", + "2019-10-09 00:00:00: Portfolio Value - -716845.71\n", + "2019-10-10 00:00:00: Portfolio Value - -626052.93\n", + "2019-10-11 00:00:00: Portfolio Value - -562441.92\n", + "2019-10-14 00:00:00: Portfolio Value - -583864.76\n", + "2019-10-15 00:00:00: Portfolio Value - -641860.96\n", + "2019-10-16 00:00:00: Portfolio Value - -611861.53\n", + "2019-10-17 00:00:00: Portfolio Value - -578087.30\n", + "2019-10-18 00:00:00: Portfolio Value - -713239.63\n", + "2019-10-21 00:00:00: Portfolio Value - -743547.81\n", + "2019-10-22 00:00:00: Portfolio Value - -799211.62\n", + "2019-10-23 00:00:00: Portfolio Value - -788465.53\n", + "2019-10-24 00:00:00: Portfolio Value - -758325.40\n", + "2019-10-25 00:00:00: Portfolio Value - -544331.54\n", + "2019-10-28 00:00:00: Portfolio Value - -494567.55\n", + "2019-10-29 00:00:00: Portfolio Value - -543451.59\n", + "2019-10-30 00:00:00: Portfolio Value - -467489.49\n", + "2019-10-31 00:00:00: Portfolio Value - -530165.21\n", + "2019-11-01 00:00:00: Portfolio Value - -554193.18\n", + "2019-11-04 00:00:00: Portfolio Value - -440818.08\n", + "2019-11-05 00:00:00: Portfolio Value - -415230.95\n", + "2019-11-06 00:00:00: Portfolio Value - -517063.41\n", + "2019-11-07 00:00:00: Portfolio Value - -504503.36\n", + "2019-11-08 00:00:00: Portfolio Value - -518602.20\n", + "2019-11-11 00:00:00: Portfolio Value - -472135.27\n", + "2019-11-12 00:00:00: Portfolio Value - -451433.29\n", + "2019-11-13 00:00:00: Portfolio Value - -583710.08\n", + "2019-11-14 00:00:00: Portfolio Value - -565278.96\n", + "2019-11-15 00:00:00: Portfolio Value - -587920.27\n", + "2019-11-18 00:00:00: Portfolio Value - -559570.63\n", + "2019-11-19 00:00:00: Portfolio Value - -658278.25\n", + "2019-11-20 00:00:00: Portfolio Value - -657059.10\n", + "2019-11-21 00:00:00: Portfolio Value - -569198.83\n", + "2019-11-22 00:00:00: Portfolio Value - -519287.66\n", + "2019-11-25 00:00:00: Portfolio Value - -461877.56\n", + "2019-11-26 00:00:00: Portfolio Value - -532119.12\n", + "2019-11-27 00:00:00: Portfolio Value - -571407.74\n", + "2019-11-29 00:00:00: Portfolio Value - -599574.85\n", + "2019-12-02 00:00:00: Portfolio Value - -475518.15\n", + "2019-12-03 00:00:00: Portfolio Value - -499165.77\n", + "2019-12-04 00:00:00: Portfolio Value - -606459.65\n", + "2019-12-05 00:00:00: Portfolio Value - -666606.94\n", + "2019-12-06 00:00:00: Portfolio Value - -575104.01\n", + "2019-12-09 00:00:00: Portfolio Value - -680602.86\n", + "2019-12-10 00:00:00: Portfolio Value - -723326.52\n", + "2019-12-11 00:00:00: Portfolio Value - -666906.81\n", + "2019-12-12 00:00:00: Portfolio Value - -613756.44\n", + "2019-12-13 00:00:00: Portfolio Value - -770488.92\n", + "2019-12-16 00:00:00: Portfolio Value - -860879.06\n", + "2019-12-17 00:00:00: Portfolio Value - -739043.34\n", + "2019-12-18 00:00:00: Portfolio Value - -748195.81\n", + "2019-12-19 00:00:00: Portfolio Value - -724316.22\n", + "2019-12-20 00:00:00: Portfolio Value - -727076.69\n", + "2019-12-23 00:00:00: Portfolio Value - -706338.56\n", + "2019-12-24 00:00:00: Portfolio Value - -713312.12\n", + "2019-12-26 00:00:00: Portfolio Value - -799249.58\n", + "2019-12-27 00:00:00: Portfolio Value - -832883.10\n", + "2019-12-30 00:00:00: Portfolio Value - -869020.19\n", + "2019-12-31 00:00:00: Portfolio Value - -906746.56\n", + "2020-01-02 00:00:00: Portfolio Value - -868712.11\n", + "2020-01-03 00:00:00: Portfolio Value - -991606.12\n", + "2020-01-06 00:00:00: Portfolio Value - -920494.69\n", + "2020-01-07 00:00:00: Portfolio Value - -1013960.34\n", + "2020-01-08 00:00:00: Portfolio Value - -958996.17\n", + "2020-01-09 00:00:00: Portfolio Value - -1059813.97\n", + "2020-01-10 00:00:00: Portfolio Value - -1166348.09\n", + "2020-01-13 00:00:00: Portfolio Value - -1141369.48\n", + "2020-01-14 00:00:00: Portfolio Value - -999597.26\n", + "2020-01-15 00:00:00: Portfolio Value - -1167443.46\n", + "2020-01-16 00:00:00: Portfolio Value - -1213588.47\n", + "2020-01-17 00:00:00: Portfolio Value - -1222915.77\n", + "2020-01-21 00:00:00: Portfolio Value - -1280492.48\n", + "2020-01-22 00:00:00: Portfolio Value - -1485329.94\n", + "2020-01-23 00:00:00: Portfolio Value - -1371432.13\n", + "2020-01-24 00:00:00: Portfolio Value - -1316717.52\n", + "2020-01-27 00:00:00: Portfolio Value - -1345867.82\n", + "2020-01-28 00:00:00: Portfolio Value - -1437843.09\n", + "2020-01-29 00:00:00: Portfolio Value - -1476187.86\n", + "2020-01-30 00:00:00: Portfolio Value - -1501269.45\n", + "2020-01-31 00:00:00: Portfolio Value - -1455683.76\n", + "2020-02-03 00:00:00: Portfolio Value - -1429297.71\n", + "2020-02-04 00:00:00: Portfolio Value - -1345786.61\n", + "2020-02-05 00:00:00: Portfolio Value - -1313442.05\n", + "2020-02-06 00:00:00: Portfolio Value - -1359031.18\n", + "2020-02-07 00:00:00: Portfolio Value - -1409433.94\n", + "2020-02-10 00:00:00: Portfolio Value - -1427231.06\n", + "2020-02-11 00:00:00: Portfolio Value - -1546097.24\n", + "2020-02-12 00:00:00: Portfolio Value - -1533205.15\n", + "2020-02-13 00:00:00: Portfolio Value - -1591747.25\n", + "2020-02-14 00:00:00: Portfolio Value - -1681346.51\n", + "2020-02-18 00:00:00: Portfolio Value - -1611606.39\n", + "2020-02-19 00:00:00: Portfolio Value - -1625654.85\n", + "2020-02-20 00:00:00: Portfolio Value - -1442609.24\n", + "2020-02-21 00:00:00: Portfolio Value - -1423055.25\n", + "2020-02-24 00:00:00: Portfolio Value - -1401707.00\n", + "2020-02-25 00:00:00: Portfolio Value - -1384613.63\n", + "2020-02-26 00:00:00: Portfolio Value - -1349770.58\n", + "2020-02-27 00:00:00: Portfolio Value - -976878.00\n", + "2020-02-28 00:00:00: Portfolio Value - -830684.45\n", + "2020-03-02 00:00:00: Portfolio Value - -1299158.38\n", + "2020-03-03 00:00:00: Portfolio Value - -1433424.44\n", + "2020-03-04 00:00:00: Portfolio Value - -1585485.84\n", + "2020-03-05 00:00:00: Portfolio Value - -1469522.24\n", + "2020-03-06 00:00:00: Portfolio Value - -1303839.67\n", + "2020-03-09 00:00:00: Portfolio Value - -1072717.62\n", + "2020-03-10 00:00:00: Portfolio Value - -1394720.81\n", + "2020-03-11 00:00:00: Portfolio Value - -1411747.36\n", + "2020-03-12 00:00:00: Portfolio Value - -1296846.61\n", + "2020-03-13 00:00:00: Portfolio Value - -1754314.86\n", + "2020-03-16 00:00:00: Portfolio Value - -1249185.00\n", + "2020-03-17 00:00:00: Portfolio Value - -1728019.81\n", + "2020-03-18 00:00:00: Portfolio Value - -1722173.19\n", + "2020-03-19 00:00:00: Portfolio Value - -1694907.94\n", + "2020-03-20 00:00:00: Portfolio Value - -1047805.39\n", + "2020-03-23 00:00:00: Portfolio Value - -417174.26\n", + "2020-03-24 00:00:00: Portfolio Value - -826808.94\n", + "2020-03-25 00:00:00: Portfolio Value - -1089760.05\n", + "2020-03-26 00:00:00: Portfolio Value - -1698031.56\n", + "2020-03-27 00:00:00: Portfolio Value - -1730876.89\n", + "2020-03-30 00:00:00: Portfolio Value - -1962067.19\n", + "2020-03-31 00:00:00: Portfolio Value - -1722136.90\n", + "2020-04-01 00:00:00: Portfolio Value - -1526661.71\n", + "2020-04-02 00:00:00: Portfolio Value - -1816752.13\n", + "2020-04-03 00:00:00: Portfolio Value - -1757455.88\n", + "2020-04-06 00:00:00: Portfolio Value - -1903835.51\n", + "2020-04-07 00:00:00: Portfolio Value - -1674248.40\n", + "2020-04-08 00:00:00: Portfolio Value - -1923788.32\n", + "2020-04-09 00:00:00: Portfolio Value - -2206605.12\n", + "2020-04-13 00:00:00: Portfolio Value - -1728492.63\n", + "2020-04-14 00:00:00: Portfolio Value - -1824589.48\n", + "2020-04-15 00:00:00: Portfolio Value - -1583376.01\n", + "2020-04-16 00:00:00: Portfolio Value - -1667541.03\n", + "2020-04-17 00:00:00: Portfolio Value - -1907746.26\n", + "2020-04-20 00:00:00: Portfolio Value - -1685191.50\n", + "2020-04-21 00:00:00: Portfolio Value - -1657406.25\n", + "2020-04-22 00:00:00: Portfolio Value - -1942830.04\n", + "2020-04-23 00:00:00: Portfolio Value - -1765126.22\n", + "2020-04-24 00:00:00: Portfolio Value - -1850829.34\n", + "2020-04-27 00:00:00: Portfolio Value - -2063093.15\n", + "2020-04-28 00:00:00: Portfolio Value - -1948310.42\n", + "2020-04-29 00:00:00: Portfolio Value - -1977972.37\n", + "2020-04-30 00:00:00: Portfolio Value - -1851252.03\n", + "2020-05-01 00:00:00: Portfolio Value - -1711241.50\n", + "2020-05-04 00:00:00: Portfolio Value - -1612279.01\n", + "2020-05-05 00:00:00: Portfolio Value - -1833694.46\n", + "2020-05-06 00:00:00: Portfolio Value - -1754352.16\n", + "2020-05-07 00:00:00: Portfolio Value - -1813338.07\n", + "2020-05-08 00:00:00: Portfolio Value - -1758125.25\n", + "2020-05-11 00:00:00: Portfolio Value - -1668870.97\n", + "2020-05-12 00:00:00: Portfolio Value - -1547249.31\n", + "2020-05-13 00:00:00: Portfolio Value - -1840253.26\n", + "2020-05-14 00:00:00: Portfolio Value - -1807538.50\n", + "2020-05-15 00:00:00: Portfolio Value - -1761984.00\n", + "2020-05-18 00:00:00: Portfolio Value - -1659608.62\n", + "2020-05-19 00:00:00: Portfolio Value - -1562825.93\n", + "2020-05-20 00:00:00: Portfolio Value - -1675593.56\n", + "2020-05-21 00:00:00: Portfolio Value - -1676613.84\n", + "2020-05-22 00:00:00: Portfolio Value - -1961439.95\n", + "2020-05-26 00:00:00: Portfolio Value - -1857521.47\n", + "2020-05-27 00:00:00: Portfolio Value - -2001985.01\n", + "2020-05-28 00:00:00: Portfolio Value - -2219872.96\n", + "2020-05-29 00:00:00: Portfolio Value - -2253928.34\n", + "2020-06-01 00:00:00: Portfolio Value - -2328745.87\n", + "2020-06-02 00:00:00: Portfolio Value - -2320514.07\n", + "2020-06-03 00:00:00: Portfolio Value - -2322258.48\n", + "2020-06-04 00:00:00: Portfolio Value - -2262551.43\n", + "2020-06-05 00:00:00: Portfolio Value - -2318417.48\n", + "2020-06-08 00:00:00: Portfolio Value - -2284485.49\n", + "2020-06-09 00:00:00: Portfolio Value - -2345654.83\n", + "2020-06-10 00:00:00: Portfolio Value - -2468153.65\n", + "2020-06-11 00:00:00: Portfolio Value - -2145964.77\n", + "2020-06-12 00:00:00: Portfolio Value - -2329669.44\n", + "2020-06-15 00:00:00: Portfolio Value - -2440338.27\n", + "2020-06-16 00:00:00: Portfolio Value - -2398712.55\n", + "2020-06-17 00:00:00: Portfolio Value - -2387866.53\n", + "2020-06-18 00:00:00: Portfolio Value - -2348299.18\n", + "2020-06-19 00:00:00: Portfolio Value - -2412274.47\n", + "2020-06-22 00:00:00: Portfolio Value - -2226353.63\n", + "2020-06-23 00:00:00: Portfolio Value - -2234092.89\n", + "2020-06-24 00:00:00: Portfolio Value - -2147322.83\n", + "2020-06-25 00:00:00: Portfolio Value - -2202842.07\n", + "2020-06-26 00:00:00: Portfolio Value - -2150661.69\n", + "2020-06-29 00:00:00: Portfolio Value - -2041023.99\n", + "2020-06-30 00:00:00: Portfolio Value - -2191046.34\n", + "2020-07-01 00:00:00: Portfolio Value - -2125478.79\n", + "2020-07-02 00:00:00: Portfolio Value - -2171462.76\n", + "2020-07-06 00:00:00: Portfolio Value - -2106788.45\n", + "2020-07-07 00:00:00: Portfolio Value - -2118260.81\n", + "2020-07-08 00:00:00: Portfolio Value - -2186342.56\n", + "2020-07-09 00:00:00: Portfolio Value - -2131926.00\n", + "2020-07-10 00:00:00: Portfolio Value - -1838279.77\n", + "2020-07-13 00:00:00: Portfolio Value - -1901443.41\n", + "2020-07-14 00:00:00: Portfolio Value - -1971366.99\n", + "2020-07-15 00:00:00: Portfolio Value - -1828719.96\n", + "2020-07-16 00:00:00: Portfolio Value - -1778182.07\n", + "2020-07-17 00:00:00: Portfolio Value - -2312341.91\n", + "2020-07-20 00:00:00: Portfolio Value - -2299544.57\n", + "2020-07-21 00:00:00: Portfolio Value - -2280999.67\n", + "2020-07-22 00:00:00: Portfolio Value - -2333648.76\n", + "2020-07-23 00:00:00: Portfolio Value - -2361634.55\n", + "2020-07-24 00:00:00: Portfolio Value - -2307480.67\n", + "2020-07-27 00:00:00: Portfolio Value - -2384533.90\n", + "2020-07-28 00:00:00: Portfolio Value - -2492955.63\n", + "2020-07-29 00:00:00: Portfolio Value - -2785930.78\n", + "2020-07-30 00:00:00: Portfolio Value - -2794002.37\n", + "2020-07-31 00:00:00: Portfolio Value - -2890773.25\n", + "2020-08-03 00:00:00: Portfolio Value - -2814885.19\n", + "2020-08-04 00:00:00: Portfolio Value - -2622713.20\n", + "2020-08-05 00:00:00: Portfolio Value - -2782945.98\n", + "2020-08-06 00:00:00: Portfolio Value - -3003377.41\n", + "2020-08-07 00:00:00: Portfolio Value - -3140024.25\n", + "2020-08-10 00:00:00: Portfolio Value - -2905328.48\n", + "2020-08-11 00:00:00: Portfolio Value - -2907652.49\n", + "2020-08-12 00:00:00: Portfolio Value - -3039358.44\n", + "2020-08-13 00:00:00: Portfolio Value - -2981004.55\n", + "2020-08-14 00:00:00: Portfolio Value - -2858219.99\n", + "2020-08-17 00:00:00: Portfolio Value - -2889152.19\n", + "2020-08-18 00:00:00: Portfolio Value - -2921188.93\n", + "2020-08-19 00:00:00: Portfolio Value - -2928428.77\n", + "2020-08-20 00:00:00: Portfolio Value - -2889929.59\n", + "2020-08-21 00:00:00: Portfolio Value - -2878336.68\n", + "2020-08-24 00:00:00: Portfolio Value - -2820473.81\n", + "2020-08-25 00:00:00: Portfolio Value - -2831291.39\n", + "2020-08-26 00:00:00: Portfolio Value - -2345549.43\n", + "2020-08-27 00:00:00: Portfolio Value - -2432691.64\n", + "2020-08-28 00:00:00: Portfolio Value - -2447290.20\n", + "2020-08-31 00:00:00: Portfolio Value - -2397690.16\n", + "2020-09-01 00:00:00: Portfolio Value - -2216336.57\n", + "2020-09-02 00:00:00: Portfolio Value - -2471259.39\n", + "2020-09-03 00:00:00: Portfolio Value - -2183962.86\n", + "2020-09-04 00:00:00: Portfolio Value - -2004912.35\n", + "2020-09-08 00:00:00: Portfolio Value - -1837885.53\n", + "2020-09-09 00:00:00: Portfolio Value - -2083989.00\n", + "2020-09-10 00:00:00: Portfolio Value - -2106897.93\n", + "2020-09-11 00:00:00: Portfolio Value - -2106270.31\n", + "2020-09-14 00:00:00: Portfolio Value - -2246538.36\n", + "2020-09-15 00:00:00: Portfolio Value - -2274352.03\n", + "2020-09-16 00:00:00: Portfolio Value - -2322580.00\n", + "2020-09-17 00:00:00: Portfolio Value - -2276153.68\n", + "2020-09-18 00:00:00: Portfolio Value - -2432528.53\n", + "2020-09-21 00:00:00: Portfolio Value - -2417077.15\n", + "2020-09-22 00:00:00: Portfolio Value - -2403965.02\n", + "2020-09-23 00:00:00: Portfolio Value - -2363049.33\n", + "2020-09-24 00:00:00: Portfolio Value - -2351896.15\n", + "2020-09-25 00:00:00: Portfolio Value - -2530784.76\n", + "2020-09-28 00:00:00: Portfolio Value - -2526079.50\n", + "2020-09-29 00:00:00: Portfolio Value - -2510304.25\n", + "2020-09-30 00:00:00: Portfolio Value - -2550265.17\n", + "2020-10-01 00:00:00: Portfolio Value - -2407992.19\n", + "2020-10-02 00:00:00: Portfolio Value - -2546643.13\n", + "2020-10-05 00:00:00: Portfolio Value - -2469885.57\n", + "2020-10-06 00:00:00: Portfolio Value - -2633194.46\n", + "2020-10-07 00:00:00: Portfolio Value - -2485566.92\n", + "2020-10-08 00:00:00: Portfolio Value - -2629613.33\n", + "2020-10-09 00:00:00: Portfolio Value - -2699593.26\n", + "2020-10-12 00:00:00: Portfolio Value - -2795522.17\n", + "2020-10-13 00:00:00: Portfolio Value - -2845470.36\n", + "2020-10-14 00:00:00: Portfolio Value - -2904168.12\n", + "2020-10-15 00:00:00: Portfolio Value - -2860937.61\n", + "2020-10-16 00:00:00: Portfolio Value - -2993178.99\n", + "2020-10-19 00:00:00: Portfolio Value - -2777100.22\n", + "2020-10-20 00:00:00: Portfolio Value - -2888022.47\n", + "2020-10-21 00:00:00: Portfolio Value - -3073879.11\n", + "2020-10-22 00:00:00: Portfolio Value - -2869004.65\n", + "2020-10-23 00:00:00: Portfolio Value - -2873631.66\n", + "2020-10-26 00:00:00: Portfolio Value - -2856520.89\n", + "2020-10-27 00:00:00: Portfolio Value - -2778760.57\n", + "2020-10-28 00:00:00: Portfolio Value - -2583978.78\n", + "2020-10-29 00:00:00: Portfolio Value - -2450157.98\n", + "2020-10-30 00:00:00: Portfolio Value - -2501054.44\n", + "2020-11-02 00:00:00: Portfolio Value - -2542340.86\n", + "2020-11-03 00:00:00: Portfolio Value - -2595859.31\n", + "2020-11-04 00:00:00: Portfolio Value - -3091177.14\n", + "2020-11-05 00:00:00: Portfolio Value - -3047116.43\n", + "2020-11-06 00:00:00: Portfolio Value - -2940349.31\n", + "2020-11-09 00:00:00: Portfolio Value - -2412265.50\n", + "2020-11-10 00:00:00: Portfolio Value - -2049265.43\n", + "2020-11-11 00:00:00: Portfolio Value - -2426124.76\n", + "2020-11-12 00:00:00: Portfolio Value - -2474343.46\n", + "2020-11-13 00:00:00: Portfolio Value - -2503851.51\n", + "2020-11-16 00:00:00: Portfolio Value - -2336258.87\n", + "2020-11-17 00:00:00: Portfolio Value - -2261864.24\n", + "2020-11-18 00:00:00: Portfolio Value - -2184581.48\n", + "2020-11-19 00:00:00: Portfolio Value - -2166819.60\n", + "2020-11-20 00:00:00: Portfolio Value - -2158322.54\n", + "2020-11-23 00:00:00: Portfolio Value - -2157720.79\n", + "2020-11-24 00:00:00: Portfolio Value - -1917545.74\n", + "2020-11-25 00:00:00: Portfolio Value - -2134911.81\n", + "2020-11-27 00:00:00: Portfolio Value - -2330848.96\n", + "2020-11-30 00:00:00: Portfolio Value - -2261159.50\n", + "2020-12-01 00:00:00: Portfolio Value - -2240615.06\n", + "2020-12-02 00:00:00: Portfolio Value - -2311439.88\n", + "2020-12-03 00:00:00: Portfolio Value - -2317931.76\n", + "2020-12-04 00:00:00: Portfolio Value - -2289934.60\n", + "2020-12-07 00:00:00: Portfolio Value - -2201998.65\n", + "2020-12-08 00:00:00: Portfolio Value - -2262563.86\n", + "2020-12-09 00:00:00: Portfolio Value - -2133377.63\n", + "2020-12-10 00:00:00: Portfolio Value - -2068298.13\n", + "2020-12-11 00:00:00: Portfolio Value - -2111881.85\n", + "2020-12-14 00:00:00: Portfolio Value - -1935730.55\n", + "2020-12-15 00:00:00: Portfolio Value - -2023550.60\n", + "2020-12-16 00:00:00: Portfolio Value - -1932735.42\n", + "2020-12-17 00:00:00: Portfolio Value - -2044066.37\n", + "2020-12-18 00:00:00: Portfolio Value - -2043470.99\n", + "2020-12-21 00:00:00: Portfolio Value - -2095143.59\n", + "2020-12-22 00:00:00: Portfolio Value - -2159403.12\n", + "2020-12-23 00:00:00: Portfolio Value - -2277588.55\n", + "2020-12-24 00:00:00: Portfolio Value - -2366988.74\n", + "2020-12-28 00:00:00: Portfolio Value - -2359543.82\n", + "2020-12-29 00:00:00: Portfolio Value - -2235339.58\n", + "2020-12-30 00:00:00: Portfolio Value - -2254728.01\n", + "2020-12-31 00:00:00: Portfolio Value - -2325446.78\n", + "2021-01-04 00:00:00: Portfolio Value - -2385879.78\n", + "2021-01-05 00:00:00: Portfolio Value - -2391009.69\n", + "2021-01-06 00:00:00: Portfolio Value - -2405263.56\n", + "2021-01-07 00:00:00: Portfolio Value - -2566170.47\n", + "2021-01-08 00:00:00: Portfolio Value - -2607482.65\n", + "2021-01-11 00:00:00: Portfolio Value - -2701184.84\n", + "2021-01-12 00:00:00: Portfolio Value - -2737987.72\n", + "2021-01-13 00:00:00: Portfolio Value - -2743001.69\n", + "2021-01-14 00:00:00: Portfolio Value - -2448653.47\n", + "2021-01-15 00:00:00: Portfolio Value - -2548126.80\n", + "2021-01-19 00:00:00: Portfolio Value - -2555845.71\n", + "2021-01-20 00:00:00: Portfolio Value - -2034064.50\n", + "2021-01-21 00:00:00: Portfolio Value - -2064760.45\n", + "2021-01-22 00:00:00: Portfolio Value - -2148462.90\n", + "2021-01-25 00:00:00: Portfolio Value - -2141375.42\n", + "2021-01-26 00:00:00: Portfolio Value - -2182268.52\n", + "2021-01-27 00:00:00: Portfolio Value - -2282658.32\n", + "2021-01-28 00:00:00: Portfolio Value - -2348017.78\n", + "2021-01-29 00:00:00: Portfolio Value - -2395229.42\n", + "2021-02-01 00:00:00: Portfolio Value - -2602896.41\n", + "2021-02-02 00:00:00: Portfolio Value - -2708512.44\n", + "2021-02-03 00:00:00: Portfolio Value - -2560505.61\n", + "2021-02-04 00:00:00: Portfolio Value - -2509132.96\n", + "2021-02-05 00:00:00: Portfolio Value - -2391350.94\n", + "2021-02-08 00:00:00: Portfolio Value - -2338871.75\n", + "2021-02-09 00:00:00: Portfolio Value - -2445778.04\n", + "2021-02-10 00:00:00: Portfolio Value - -2388571.17\n", + "2021-02-11 00:00:00: Portfolio Value - -2330430.96\n", + "2021-02-12 00:00:00: Portfolio Value - -2274910.02\n", + "2021-02-16 00:00:00: Portfolio Value - -2197114.87\n", + "2021-02-17 00:00:00: Portfolio Value - -2181479.13\n", + "2021-02-18 00:00:00: Portfolio Value - -2066494.55\n", + "2021-02-19 00:00:00: Portfolio Value - -2021595.21\n", + "2021-02-22 00:00:00: Portfolio Value - -1756682.77\n", + "2021-02-23 00:00:00: Portfolio Value - -1489712.53\n", + "2021-02-24 00:00:00: Portfolio Value - -1337290.04\n", + "2021-02-25 00:00:00: Portfolio Value - -1235791.72\n", + "2021-02-26 00:00:00: Portfolio Value - -1418790.17\n", + "2021-03-01 00:00:00: Portfolio Value - -1507705.23\n", + "2021-03-02 00:00:00: Portfolio Value - -1403600.84\n", + "2021-03-03 00:00:00: Portfolio Value - -1280980.91\n", + "2021-03-04 00:00:00: Portfolio Value - -1169463.23\n", + "2021-03-05 00:00:00: Portfolio Value - -1212324.73\n", + "2021-03-08 00:00:00: Portfolio Value - -1171826.17\n", + "2021-03-09 00:00:00: Portfolio Value - -1582322.25\n", + "2021-03-10 00:00:00: Portfolio Value - -1633439.08\n", + "2021-03-11 00:00:00: Portfolio Value - -1594370.21\n", + "2021-03-12 00:00:00: Portfolio Value - -1729638.80\n", + "2021-03-15 00:00:00: Portfolio Value - -1768333.80\n", + "2021-03-16 00:00:00: Portfolio Value - -1848585.15\n", + "2021-03-17 00:00:00: Portfolio Value - -1838580.28\n", + "2021-03-18 00:00:00: Portfolio Value - -1896100.31\n", + "2021-03-19 00:00:00: Portfolio Value - -1947270.41\n", + "2021-03-22 00:00:00: Portfolio Value - -1937259.52\n", + "2021-03-23 00:00:00: Portfolio Value - -1860883.86\n", + "2021-03-24 00:00:00: Portfolio Value - -1944372.42\n", + "2021-03-25 00:00:00: Portfolio Value - -2072109.42\n", + "2021-03-26 00:00:00: Portfolio Value - -2419938.15\n", + "2021-03-29 00:00:00: Portfolio Value - -2442952.36\n", + "2021-03-30 00:00:00: Portfolio Value - -2255722.74\n", + "2021-03-31 00:00:00: Portfolio Value - -2292415.04\n", + "2021-04-01 00:00:00: Portfolio Value - -2278149.90\n", + "2021-04-05 00:00:00: Portfolio Value - -2505606.61\n", + "2021-04-06 00:00:00: Portfolio Value - -2463386.65\n", + "2021-04-07 00:00:00: Portfolio Value - -2480601.29\n", + "2021-04-08 00:00:00: Portfolio Value - -2606968.97\n", + "2021-04-09 00:00:00: Portfolio Value - -2645605.37\n", + "2021-04-12 00:00:00: Portfolio Value - -2655681.11\n", + "2021-04-13 00:00:00: Portfolio Value - -2711509.50\n", + "2021-04-14 00:00:00: Portfolio Value - -2734784.42\n", + "2021-04-15 00:00:00: Portfolio Value - -3106038.01\n", + "2021-04-16 00:00:00: Portfolio Value - -3025121.92\n", + "2021-04-19 00:00:00: Portfolio Value - -2961747.43\n", + "2021-04-20 00:00:00: Portfolio Value - -3104468.68\n", + "2021-04-21 00:00:00: Portfolio Value - -3413354.94\n", + "2021-04-22 00:00:00: Portfolio Value - -3262688.94\n", + "2021-04-23 00:00:00: Portfolio Value - -3470821.78\n", + "2021-04-26 00:00:00: Portfolio Value - -3478111.71\n", + "2021-04-27 00:00:00: Portfolio Value - -3504225.85\n", + "2021-04-28 00:00:00: Portfolio Value - -3464761.79\n", + "2021-04-29 00:00:00: Portfolio Value - -3579652.07\n", + "2021-04-30 00:00:00: Portfolio Value - -3674873.07\n", + "2021-05-03 00:00:00: Portfolio Value - -3729902.77\n", + "2021-05-04 00:00:00: Portfolio Value - -3896067.82\n", + "2021-05-05 00:00:00: Portfolio Value - -3953740.09\n", + "2021-05-06 00:00:00: Portfolio Value - -4036879.14\n", + "2021-05-07 00:00:00: Portfolio Value - -4125816.38\n", + "2021-05-10 00:00:00: Portfolio Value - -4083090.81\n", + "2021-05-11 00:00:00: Portfolio Value - -3882461.74\n", + "2021-05-12 00:00:00: Portfolio Value - -3796590.01\n", + "2021-05-13 00:00:00: Portfolio Value - -3840867.67\n", + "2021-05-14 00:00:00: Portfolio Value - -3911801.51\n", + "2021-05-17 00:00:00: Portfolio Value - -3829208.65\n", + "2021-05-18 00:00:00: Portfolio Value - -3766703.22\n", + "2021-05-19 00:00:00: Portfolio Value - -3800705.97\n", + "2021-05-20 00:00:00: Portfolio Value - -3859176.62\n", + "2021-05-21 00:00:00: Portfolio Value - -3973857.03\n", + "2021-05-24 00:00:00: Portfolio Value - -4023232.78\n", + "2021-05-25 00:00:00: Portfolio Value - -4093021.72\n", + "2021-05-26 00:00:00: Portfolio Value - -4082901.25\n", + "2021-05-27 00:00:00: Portfolio Value - -4081914.80\n", + "2021-05-28 00:00:00: Portfolio Value - -4059118.83\n", + "2021-06-01 00:00:00: Portfolio Value - -4040883.97\n", + "2021-06-02 00:00:00: Portfolio Value - -4324323.66\n", + "2021-06-03 00:00:00: Portfolio Value - -4485016.04\n", + "2021-06-04 00:00:00: Portfolio Value - -4636928.81\n", + "2021-06-07 00:00:00: Portfolio Value - -4606090.16\n", + "2021-06-08 00:00:00: Portfolio Value - -4610801.95\n", + "2021-06-09 00:00:00: Portfolio Value - -4658716.01\n", + "2021-06-10 00:00:00: Portfolio Value - -4706466.45\n", + "2021-06-11 00:00:00: Portfolio Value - -4853023.60\n", + "2021-06-14 00:00:00: Portfolio Value - -4813272.26\n", + "2021-06-15 00:00:00: Portfolio Value - -4784097.66\n", + "2021-06-16 00:00:00: Portfolio Value - -4607521.64\n", + "2021-06-17 00:00:00: Portfolio Value - -4819435.33\n", + "2021-06-18 00:00:00: Portfolio Value - -4585590.31\n", + "2021-06-21 00:00:00: Portfolio Value - -4716894.86\n", + "2021-06-22 00:00:00: Portfolio Value - -4635574.24\n", + "2021-06-23 00:00:00: Portfolio Value - -4403263.36\n", + "2021-06-24 00:00:00: Portfolio Value - -4301244.58\n", + "2021-06-25 00:00:00: Portfolio Value - -4340351.12\n", + "2021-06-28 00:00:00: Portfolio Value - -4517963.91\n", + "2021-06-29 00:00:00: Portfolio Value - -4538815.42\n", + "2021-06-30 00:00:00: Portfolio Value - -4547934.82\n", + "2021-07-01 00:00:00: Portfolio Value - -4467287.10\n", + "2021-07-02 00:00:00: Portfolio Value - -4618626.89\n", + "2021-07-06 00:00:00: Portfolio Value - -4722024.59\n", + "2021-07-07 00:00:00: Portfolio Value - -4962176.66\n", + "2021-07-08 00:00:00: Portfolio Value - -4861321.81\n", + "2021-07-09 00:00:00: Portfolio Value - -4940001.23\n", + "2021-07-12 00:00:00: Portfolio Value - -5091083.13\n", + "2021-07-13 00:00:00: Portfolio Value - -5053472.41\n", + "2021-07-14 00:00:00: Portfolio Value - -4816024.24\n", + "2021-07-15 00:00:00: Portfolio Value - -4906659.90\n", + "2021-07-16 00:00:00: Portfolio Value - -5095608.65\n", + "2021-07-19 00:00:00: Portfolio Value - -4920686.14\n", + "2021-07-20 00:00:00: Portfolio Value - -5145958.23\n", + "2021-07-21 00:00:00: Portfolio Value - -5221478.67\n", + "2021-07-22 00:00:00: Portfolio Value - -5202168.29\n", + "2021-07-23 00:00:00: Portfolio Value - -5277430.60\n", + "2021-07-26 00:00:00: Portfolio Value - -5105663.39\n", + "2021-07-27 00:00:00: Portfolio Value - -5040239.30\n", + "2021-07-28 00:00:00: Portfolio Value - -5103247.11\n", + "2021-07-29 00:00:00: Portfolio Value - -5032152.41\n", + "2021-07-30 00:00:00: Portfolio Value - -5171225.47\n", + "2021-08-02 00:00:00: Portfolio Value - -5319000.28\n", + "2021-08-03 00:00:00: Portfolio Value - -5256750.74\n", + "2021-08-04 00:00:00: Portfolio Value - -5379611.67\n", + "2021-08-05 00:00:00: Portfolio Value - -5341221.54\n", + "2021-08-06 00:00:00: Portfolio Value - -5354645.06\n", + "2021-08-09 00:00:00: Portfolio Value - -5398529.43\n", + "2021-08-10 00:00:00: Portfolio Value - -5390659.52\n", + "2021-08-11 00:00:00: Portfolio Value - -5565615.22\n", + "2021-08-12 00:00:00: Portfolio Value - -5661418.08\n", + "2021-08-13 00:00:00: Portfolio Value - -5699342.41\n", + "2021-08-16 00:00:00: Portfolio Value - -5755216.92\n", + "2021-08-17 00:00:00: Portfolio Value - -5765569.14\n", + "2021-08-18 00:00:00: Portfolio Value - -5516870.85\n", + "2021-08-19 00:00:00: Portfolio Value - -5559340.43\n", + "2021-08-20 00:00:00: Portfolio Value - -5671645.74\n", + "2021-08-23 00:00:00: Portfolio Value - -5645605.94\n", + "2021-08-24 00:00:00: Portfolio Value - -5516577.62\n", + "2021-08-25 00:00:00: Portfolio Value - -5463351.23\n", + "2021-08-26 00:00:00: Portfolio Value - -5562896.55\n", + "2021-08-27 00:00:00: Portfolio Value - -5661414.82\n", + "2021-08-30 00:00:00: Portfolio Value - -5752816.61\n", + "2021-08-31 00:00:00: Portfolio Value - -5669020.48\n", + "2021-09-01 00:00:00: Portfolio Value - -5758968.76\n", + "2021-09-02 00:00:00: Portfolio Value - -5802481.12\n", + "2021-09-03 00:00:00: Portfolio Value - -5806014.88\n", + "2021-09-07 00:00:00: Portfolio Value - -5510121.88\n", + "2021-09-08 00:00:00: Portfolio Value - -5580246.87\n", + "2021-09-09 00:00:00: Portfolio Value - -5495807.22\n", + "2021-09-10 00:00:00: Portfolio Value - -5454468.98\n", + "2021-09-13 00:00:00: Portfolio Value - -5424288.93\n", + "2021-09-14 00:00:00: Portfolio Value - -5429284.10\n", + "2021-09-15 00:00:00: Portfolio Value - -5501152.47\n", + "2021-09-16 00:00:00: Portfolio Value - -5308090.58\n", + "2021-09-17 00:00:00: Portfolio Value - -5209221.65\n", + "2021-09-20 00:00:00: Portfolio Value - -5047826.67\n", + "2021-09-21 00:00:00: Portfolio Value - -5091629.17\n", + "2021-09-22 00:00:00: Portfolio Value - -5042544.43\n", + "2021-09-23 00:00:00: Portfolio Value - -5124992.37\n", + "2021-09-24 00:00:00: Portfolio Value - -5059569.10\n", + "2021-09-27 00:00:00: Portfolio Value - -4758853.73\n", + "2021-09-28 00:00:00: Portfolio Value - -4452960.94\n", + "2021-09-29 00:00:00: Portfolio Value - -4277261.04\n", + "2021-09-30 00:00:00: Portfolio Value - -4086890.07\n", + "2021-10-01 00:00:00: Portfolio Value - -3918889.37\n", + "2021-10-04 00:00:00: Portfolio Value - -3699267.23\n", + "2021-10-05 00:00:00: Portfolio Value - -3479987.39\n", + "2021-10-06 00:00:00: Portfolio Value - -3524112.02\n", + "2021-10-07 00:00:00: Portfolio Value - -3711127.86\n", + "2021-10-08 00:00:00: Portfolio Value - -3620530.63\n", + "2021-10-11 00:00:00: Portfolio Value - -3558357.78\n", + "2021-10-12 00:00:00: Portfolio Value - -3608054.22\n", + "2021-10-13 00:00:00: Portfolio Value - -3820722.90\n", + "2021-10-14 00:00:00: Portfolio Value - -4008451.46\n", + "2021-10-15 00:00:00: Portfolio Value - -4194852.11\n", + "2021-10-18 00:00:00: Portfolio Value - -4141626.87\n", + "2021-10-19 00:00:00: Portfolio Value - -4514879.22\n", + "2021-10-20 00:00:00: Portfolio Value - -4693288.24\n", + "2021-10-21 00:00:00: Portfolio Value - -4557381.45\n", + "2021-10-22 00:00:00: Portfolio Value - -4647979.36\n", + "2021-10-25 00:00:00: Portfolio Value - -4687257.79\n", + "2021-10-26 00:00:00: Portfolio Value - -4896596.58\n", + "2021-10-27 00:00:00: Portfolio Value - -4698159.30\n", + "2021-10-28 00:00:00: Portfolio Value - -4906518.05\n", + "2021-10-29 00:00:00: Portfolio Value - -4839408.97\n", + "2021-11-01 00:00:00: Portfolio Value - -4619468.45\n", + "2021-11-02 00:00:00: Portfolio Value - -4646160.03\n", + "2021-11-03 00:00:00: Portfolio Value - -4326203.87\n", + "2021-11-04 00:00:00: Portfolio Value - -4310916.27\n", + "2021-11-05 00:00:00: Portfolio Value - -4173461.32\n", + "2021-11-08 00:00:00: Portfolio Value - -4296038.89\n", + "2021-11-09 00:00:00: Portfolio Value - -4340666.80\n", + "2021-11-10 00:00:00: Portfolio Value - -4229216.12\n", + "2021-11-11 00:00:00: Portfolio Value - -4231360.49\n", + "2021-11-12 00:00:00: Portfolio Value - -4109442.54\n", + "2021-11-15 00:00:00: Portfolio Value - -3944302.22\n", + "2021-11-16 00:00:00: Portfolio Value - -3900501.26\n", + "2021-11-17 00:00:00: Portfolio Value - -3689537.98\n", + "2021-11-18 00:00:00: Portfolio Value - -3619294.42\n", + "2021-11-19 00:00:00: Portfolio Value - -3725330.05\n", + "2021-11-22 00:00:00: Portfolio Value - -3817917.12\n", + "2021-11-23 00:00:00: Portfolio Value - -3926040.32\n", + "2021-11-24 00:00:00: Portfolio Value - -3981953.30\n", + "2021-11-26 00:00:00: Portfolio Value - -3834982.24\n", + "2021-11-29 00:00:00: Portfolio Value - -4236061.84\n", + "2021-11-30 00:00:00: Portfolio Value - -4221554.17\n", + "2021-12-01 00:00:00: Portfolio Value - -4576109.60\n", + "2021-12-02 00:00:00: Portfolio Value - -4600189.23\n", + "2021-12-03 00:00:00: Portfolio Value - -4315726.39\n", + "2021-12-06 00:00:00: Portfolio Value - -3936023.89\n", + "2021-12-07 00:00:00: Portfolio Value - -4247258.71\n", + "2021-12-08 00:00:00: Portfolio Value - -4205673.65\n", + "2021-12-09 00:00:00: Portfolio Value - -4054573.60\n", + "2021-12-10 00:00:00: Portfolio Value - -4123050.17\n", + "2021-12-13 00:00:00: Portfolio Value - -4284266.67\n", + "2021-12-14 00:00:00: Portfolio Value - -4049046.56\n", + "2021-12-15 00:00:00: Portfolio Value - -4222692.28\n", + "2021-12-16 00:00:00: Portfolio Value - -4316602.50\n", + "2021-12-17 00:00:00: Portfolio Value - -4256652.27\n", + "2021-12-20 00:00:00: Portfolio Value - -4103202.98\n", + "2021-12-21 00:00:00: Portfolio Value - -3883916.16\n", + "2021-12-22 00:00:00: Portfolio Value - -3899850.88\n", + "2021-12-23 00:00:00: Portfolio Value - -3884181.72\n", + "2021-12-27 00:00:00: Portfolio Value - -3986791.30\n", + "2021-12-28 00:00:00: Portfolio Value - -3948711.84\n", + "2021-12-29 00:00:00: Portfolio Value - -3832190.82\n", + "2021-12-30 00:00:00: Portfolio Value - -3854803.51\n", + "2021-12-31 00:00:00: Portfolio Value - -3909884.89\n", + "2022-01-03 00:00:00: Portfolio Value - -3838914.13\n", + "2022-01-04 00:00:00: Portfolio Value - -3773754.09\n", + "2022-01-05 00:00:00: Portfolio Value - -3565339.35\n", + "2022-01-06 00:00:00: Portfolio Value - -3586028.29\n", + "2022-01-07 00:00:00: Portfolio Value - -3674620.55\n", + "2022-01-10 00:00:00: Portfolio Value - -3624113.36\n", + "2022-01-11 00:00:00: Portfolio Value - -3768477.73\n", + "2022-01-12 00:00:00: Portfolio Value - -3679632.51\n", + "2022-01-13 00:00:00: Portfolio Value - -3466595.74\n", + "2022-01-14 00:00:00: Portfolio Value - -3271334.80\n", + "2022-01-18 00:00:00: Portfolio Value - -3175345.87\n", + "2022-01-19 00:00:00: Portfolio Value - -3050888.59\n", + "2022-01-20 00:00:00: Portfolio Value - -3144066.29\n", + "2022-01-21 00:00:00: Portfolio Value - -3865374.21\n", + "2022-01-24 00:00:00: Portfolio Value - -3879500.15\n", + "2022-01-25 00:00:00: Portfolio Value - -4019201.57\n", + "2022-01-26 00:00:00: Portfolio Value - -4026173.97\n", + "2022-01-27 00:00:00: Portfolio Value - -3722800.28\n", + "2022-01-28 00:00:00: Portfolio Value - -4221526.41\n", + "2022-01-31 00:00:00: Portfolio Value - -4084882.05\n", + "2022-02-01 00:00:00: Portfolio Value - -3751416.89\n", + "2022-02-02 00:00:00: Portfolio Value - -4005504.13\n", + "2022-02-03 00:00:00: Portfolio Value - -4019566.30\n", + "2022-02-04 00:00:00: Portfolio Value - -4013854.51\n", + "2022-02-07 00:00:00: Portfolio Value - -4004745.41\n", + "2022-02-08 00:00:00: Portfolio Value - -3841118.92\n", + "2022-02-09 00:00:00: Portfolio Value - -3902741.42\n", + "2022-02-10 00:00:00: Portfolio Value - -3412315.98\n", + "2022-02-11 00:00:00: Portfolio Value - -3538985.89\n", + "2022-02-14 00:00:00: Portfolio Value - -3430839.31\n", + "2022-02-15 00:00:00: Portfolio Value - -3369673.37\n", + "2022-02-16 00:00:00: Portfolio Value - -3429215.97\n", + "2022-02-17 00:00:00: Portfolio Value - -3411869.94\n", + "2022-02-18 00:00:00: Portfolio Value - -3208766.04\n", + "2022-02-22 00:00:00: Portfolio Value - -3223421.22\n", + "2022-02-23 00:00:00: Portfolio Value - -3191215.85\n", + "2022-02-24 00:00:00: Portfolio Value - -3191186.08\n", + "2022-02-25 00:00:00: Portfolio Value - -3255923.58\n", + "2022-02-28 00:00:00: Portfolio Value - -3198806.26\n", + "2022-03-01 00:00:00: Portfolio Value - -3148937.64\n", + "2022-03-02 00:00:00: Portfolio Value - -3341515.89\n", + "2022-03-03 00:00:00: Portfolio Value - -3488758.74\n", + "2022-03-04 00:00:00: Portfolio Value - -3350004.21\n", + "2022-03-07 00:00:00: Portfolio Value - -3360580.65\n", + "2022-03-08 00:00:00: Portfolio Value - -3070341.02\n", + "2022-03-09 00:00:00: Portfolio Value - -3253520.63\n", + "2022-03-10 00:00:00: Portfolio Value - -3198169.72\n", + "2022-03-11 00:00:00: Portfolio Value - -3169076.40\n", + "2022-03-14 00:00:00: Portfolio Value - -3356939.24\n", + "2022-03-15 00:00:00: Portfolio Value - -3481818.40\n", + "2022-03-16 00:00:00: Portfolio Value - -3423530.00\n", + "2022-03-17 00:00:00: Portfolio Value - -3563414.85\n", + "2022-03-18 00:00:00: Portfolio Value - -3595823.51\n", + "2022-03-21 00:00:00: Portfolio Value - -3611820.83\n", + "2022-03-22 00:00:00: Portfolio Value - -3699717.94\n", + "2022-03-23 00:00:00: Portfolio Value - -3625781.77\n", + "2022-03-24 00:00:00: Portfolio Value - -3634024.62\n", + "2022-03-25 00:00:00: Portfolio Value - -3744776.44\n", + "2022-03-28 00:00:00: Portfolio Value - -3941363.88\n", + "2022-03-29 00:00:00: Portfolio Value - -4028196.74\n", + "2022-03-30 00:00:00: Portfolio Value - -4143521.47\n", + "2022-03-31 00:00:00: Portfolio Value - -4098960.99\n", + "2022-04-01 00:00:00: Portfolio Value - -4208979.14\n", + "2022-04-04 00:00:00: Portfolio Value - -4178218.98\n", + "2022-04-05 00:00:00: Portfolio Value - -4075958.70\n", + "2022-04-06 00:00:00: Portfolio Value - -4095929.18\n", + "2022-04-07 00:00:00: Portfolio Value - -4197428.19\n", + "2022-04-08 00:00:00: Portfolio Value - -4143393.71\n", + "2022-04-11 00:00:00: Portfolio Value - -3988037.31\n", + "2022-04-12 00:00:00: Portfolio Value - -3839575.53\n", + "2022-04-13 00:00:00: Portfolio Value - -3727314.76\n", + "2022-04-14 00:00:00: Portfolio Value - -3452938.13\n", + "2022-04-18 00:00:00: Portfolio Value - -3556206.90\n", + "2022-04-19 00:00:00: Portfolio Value - -3588602.06\n", + "2022-04-20 00:00:00: Portfolio Value - -4622645.29\n", + "2022-04-21 00:00:00: Portfolio Value - -4521595.44\n", + "2022-04-22 00:00:00: Portfolio Value - -4376342.20\n", + "2022-04-25 00:00:00: Portfolio Value - -4366688.68\n", + "2022-04-26 00:00:00: Portfolio Value - -4239997.74\n", + "2022-04-27 00:00:00: Portfolio Value - -4332152.29\n", + "2022-04-28 00:00:00: Portfolio Value - -4428184.24\n", + "2022-04-29 00:00:00: Portfolio Value - -4280670.52\n", + "2022-05-02 00:00:00: Portfolio Value - -4168611.88\n", + "2022-05-03 00:00:00: Portfolio Value - -4699226.66\n", + "2022-05-04 00:00:00: Portfolio Value - -4860150.99\n", + "2022-05-05 00:00:00: Portfolio Value - -4642276.86\n", + "2022-05-06 00:00:00: Portfolio Value - -4744886.97\n", + "2022-05-09 00:00:00: Portfolio Value - -4320863.25\n", + "2022-05-10 00:00:00: Portfolio Value - -4181580.72\n", + "2022-05-11 00:00:00: Portfolio Value - -4172796.90\n", + "2022-05-12 00:00:00: Portfolio Value - -4146769.34\n", + "2022-05-13 00:00:00: Portfolio Value - -4405293.27\n", + "2022-05-16 00:00:00: Portfolio Value - -4232577.53\n", + "2022-05-17 00:00:00: Portfolio Value - -4490660.08\n", + "2022-05-18 00:00:00: Portfolio Value - -4620399.36\n", + "2022-05-19 00:00:00: Portfolio Value - -4552716.52\n", + "2022-05-20 00:00:00: Portfolio Value - -4813579.81\n", + "2022-05-23 00:00:00: Portfolio Value - -5004370.79\n", + "2022-05-24 00:00:00: Portfolio Value - -5177531.56\n", + "2022-05-25 00:00:00: Portfolio Value - -5120724.07\n", + "2022-05-26 00:00:00: Portfolio Value - -4927486.77\n", + "2022-05-27 00:00:00: Portfolio Value - -5075994.13\n", + "2022-05-31 00:00:00: Portfolio Value - -4972460.19\n", + "2022-06-01 00:00:00: Portfolio Value - -4770579.22\n", + "2022-06-02 00:00:00: Portfolio Value - -5037769.42\n", + "2022-06-03 00:00:00: Portfolio Value - -4922242.45\n", + "2022-06-06 00:00:00: Portfolio Value - -5027333.00\n", + "2022-06-07 00:00:00: Portfolio Value - -4995550.80\n", + "2022-06-08 00:00:00: Portfolio Value - -4544135.10\n", + "2022-06-09 00:00:00: Portfolio Value - -4518396.34\n", + "2022-06-10 00:00:00: Portfolio Value - -4159919.66\n", + "2022-06-13 00:00:00: Portfolio Value - -4013344.59\n", + "2022-06-14 00:00:00: Portfolio Value - -3993913.73\n", + "2022-06-15 00:00:00: Portfolio Value - -4020849.06\n", + "2022-06-16 00:00:00: Portfolio Value - -3964313.63\n", + "2022-06-17 00:00:00: Portfolio Value - -3919897.84\n", + "2022-06-21 00:00:00: Portfolio Value - -4314039.36\n", + "2022-06-22 00:00:00: Portfolio Value - -4312172.78\n", + "2022-06-23 00:00:00: Portfolio Value - -4615188.41\n", + "2022-06-24 00:00:00: Portfolio Value - -4692485.55\n", + "2022-06-27 00:00:00: Portfolio Value - -4646009.23\n", + "2022-06-28 00:00:00: Portfolio Value - -4544879.54\n", + "2022-06-29 00:00:00: Portfolio Value - -4407606.91\n", + "2022-06-30 00:00:00: Portfolio Value - -4444630.51\n", + "2022-07-01 00:00:00: Portfolio Value - -4447946.09\n", + "2022-07-05 00:00:00: Portfolio Value - -4320337.38\n", + "2022-07-06 00:00:00: Portfolio Value - -4352083.05\n", + "2022-07-07 00:00:00: Portfolio Value - -4355741.88\n", + "2022-07-08 00:00:00: Portfolio Value - -4437102.12\n", + "2022-07-11 00:00:00: Portfolio Value - -4383498.99\n", + "2022-07-12 00:00:00: Portfolio Value - -4283123.88\n", + "2022-07-13 00:00:00: Portfolio Value - -4132169.45\n", + "2022-07-14 00:00:00: Portfolio Value - -4011165.56\n", + "2022-07-15 00:00:00: Portfolio Value - -4025835.28\n", + "2022-07-18 00:00:00: Portfolio Value - -3919679.96\n", + "2022-07-19 00:00:00: Portfolio Value - -4184079.99\n", + "2022-07-20 00:00:00: Portfolio Value - -4078903.00\n", + "2022-07-21 00:00:00: Portfolio Value - -4159139.39\n", + "2022-07-22 00:00:00: Portfolio Value - -4139633.67\n", + "2022-07-25 00:00:00: Portfolio Value - -4117534.55\n", + "2022-07-26 00:00:00: Portfolio Value - -4080686.98\n", + "2022-07-27 00:00:00: Portfolio Value - -4077709.28\n", + "2022-07-28 00:00:00: Portfolio Value - -4587293.78\n", + "2022-07-29 00:00:00: Portfolio Value - -4762393.83\n", + "2022-08-01 00:00:00: Portfolio Value - -4685753.45\n", + "2022-08-02 00:00:00: Portfolio Value - -4801239.96\n", + "2022-08-03 00:00:00: Portfolio Value - -5036407.59\n", + "2022-08-04 00:00:00: Portfolio Value - -5166960.50\n", + "2022-08-05 00:00:00: Portfolio Value - -5155054.58\n", + "2022-08-08 00:00:00: Portfolio Value - -5113414.79\n", + "2022-08-09 00:00:00: Portfolio Value - -5105003.59\n", + "2022-08-10 00:00:00: Portfolio Value - -5332663.84\n", + "2022-08-11 00:00:00: Portfolio Value - -5173359.44\n", + "2022-08-12 00:00:00: Portfolio Value - -5416971.26\n", + "2022-08-15 00:00:00: Portfolio Value - -5562372.69\n", + "2022-08-16 00:00:00: Portfolio Value - -5505561.59\n", + "2022-08-17 00:00:00: Portfolio Value - -5386103.93\n", + "2022-08-18 00:00:00: Portfolio Value - -5343182.48\n", + "2022-08-19 00:00:00: Portfolio Value - -5084795.18\n", + "2022-08-22 00:00:00: Portfolio Value - -4984588.13\n", + "2022-08-23 00:00:00: Portfolio Value - -4980254.78\n", + "2022-08-24 00:00:00: Portfolio Value - -4910828.82\n", + "2022-08-25 00:00:00: Portfolio Value - -5085327.89\n", + "2022-08-26 00:00:00: Portfolio Value - -4787136.69\n", + "2022-08-29 00:00:00: Portfolio Value - -4630989.24\n", + "2022-08-30 00:00:00: Portfolio Value - -4624123.35\n", + "2022-08-31 00:00:00: Portfolio Value - -4520196.34\n", + "2022-09-01 00:00:00: Portfolio Value - -4291354.12\n", + "2022-09-02 00:00:00: Portfolio Value - -4174626.43\n", + "2022-09-06 00:00:00: Portfolio Value - -4269604.46\n", + "2022-09-07 00:00:00: Portfolio Value - -4254225.10\n", + "2022-09-08 00:00:00: Portfolio Value - -4473114.22\n", + "2022-09-09 00:00:00: Portfolio Value - -4461780.27\n", + "2022-09-12 00:00:00: Portfolio Value - -4449682.59\n", + "2022-09-13 00:00:00: Portfolio Value - -3992682.82\n", + "2022-09-14 00:00:00: Portfolio Value - -3871709.05\n", + "2022-09-15 00:00:00: Portfolio Value - -3452054.48\n", + "2022-09-16 00:00:00: Portfolio Value - -3512659.07\n", + "2022-09-19 00:00:00: Portfolio Value - -3499239.78\n", + "2022-09-20 00:00:00: Portfolio Value - -3332464.99\n", + "2022-09-21 00:00:00: Portfolio Value - -3337720.52\n", + "2022-09-22 00:00:00: Portfolio Value - -3241818.07\n", + "2022-09-23 00:00:00: Portfolio Value - -3162998.76\n", + "2022-09-26 00:00:00: Portfolio Value - -3001988.67\n", + "2022-09-27 00:00:00: Portfolio Value - -2871098.83\n", + "2022-09-28 00:00:00: Portfolio Value - -2659245.42\n", + "2022-09-29 00:00:00: Portfolio Value - -2415808.66\n", + "2022-09-30 00:00:00: Portfolio Value - -2363832.64\n", + "2022-10-03 00:00:00: Portfolio Value - -2568354.45\n", + "2022-10-04 00:00:00: Portfolio Value - -2797245.43\n", + "2022-10-05 00:00:00: Portfolio Value - -2684163.70\n", + "2022-10-06 00:00:00: Portfolio Value - -2449519.79\n", + "2022-10-07 00:00:00: Portfolio Value - -2290935.02\n", + "2022-10-10 00:00:00: Portfolio Value - -2094634.61\n", + "2022-10-11 00:00:00: Portfolio Value - -1992267.88\n", + "2022-10-12 00:00:00: Portfolio Value - -1832347.64\n", + "2022-10-13 00:00:00: Portfolio Value - -2102346.83\n", + "2022-10-14 00:00:00: Portfolio Value - -1850618.30\n", + "2022-10-17 00:00:00: Portfolio Value - -1958104.15\n", + "2022-10-18 00:00:00: Portfolio Value - -2066963.61\n", + "2022-10-19 00:00:00: Portfolio Value - -1813778.77\n", + "2022-10-20 00:00:00: Portfolio Value - -1846834.98\n", + "2022-10-21 00:00:00: Portfolio Value - -1872356.82\n", + "2022-10-24 00:00:00: Portfolio Value - -2003969.47\n", + "2022-10-25 00:00:00: Portfolio Value - -2276295.66\n", + "2022-10-26 00:00:00: Portfolio Value - -2249110.23\n", + "2022-10-27 00:00:00: Portfolio Value - -2318034.72\n", + "2022-10-28 00:00:00: Portfolio Value - -2647400.73\n", + "2022-10-31 00:00:00: Portfolio Value - -2434253.68\n", + "2022-11-01 00:00:00: Portfolio Value - -2491877.89\n", + "2022-11-02 00:00:00: Portfolio Value - -2713922.28\n", + "2022-11-03 00:00:00: Portfolio Value - -2869564.43\n", + "2022-11-04 00:00:00: Portfolio Value - -3304638.37\n", + "2022-11-07 00:00:00: Portfolio Value - -3500858.30\n", + "2022-11-08 00:00:00: Portfolio Value - -3498510.39\n", + "2022-11-09 00:00:00: Portfolio Value - -3493720.16\n", + "2022-11-10 00:00:00: Portfolio Value - -4406731.92\n", + "2022-11-11 00:00:00: Portfolio Value - -4427683.15\n", + "2022-11-14 00:00:00: Portfolio Value - -4069484.77\n", + "2022-11-15 00:00:00: Portfolio Value - -4074784.43\n", + "2022-11-16 00:00:00: Portfolio Value - -3844182.10\n", + "2022-11-17 00:00:00: Portfolio Value - -3901646.11\n", + "2022-11-18 00:00:00: Portfolio Value - -3943589.28\n", + "2022-11-21 00:00:00: Portfolio Value - -3990415.78\n", + "2022-11-22 00:00:00: Portfolio Value - -4075333.38\n", + "2022-11-23 00:00:00: Portfolio Value - -4213890.54\n", + "2022-11-25 00:00:00: Portfolio Value - -4306403.03\n", + "2022-11-28 00:00:00: Portfolio Value - -4065589.20\n", + "2022-11-29 00:00:00: Portfolio Value - -4094190.20\n", + "2022-11-30 00:00:00: Portfolio Value - -3928374.96\n", + "2022-12-01 00:00:00: Portfolio Value - -3952539.02\n", + "2022-12-02 00:00:00: Portfolio Value - -3744067.35\n", + "2022-12-05 00:00:00: Portfolio Value - -3798342.79\n", + "2022-12-06 00:00:00: Portfolio Value - -3904567.50\n", + "2022-12-07 00:00:00: Portfolio Value - -3739157.98\n", + "2022-12-08 00:00:00: Portfolio Value - -3702516.44\n", + "2022-12-09 00:00:00: Portfolio Value - -3670729.20\n", + "2022-12-12 00:00:00: Portfolio Value - -3689481.30\n", + "2022-12-13 00:00:00: Portfolio Value - -3975845.21\n", + "2022-12-14 00:00:00: Portfolio Value - -3876627.88\n", + "2022-12-15 00:00:00: Portfolio Value - -3958598.99\n", + "2022-12-16 00:00:00: Portfolio Value - -3974277.40\n", + "2022-12-19 00:00:00: Portfolio Value - -3920344.06\n", + "2022-12-20 00:00:00: Portfolio Value - -3850516.12\n", + "2022-12-21 00:00:00: Portfolio Value - -4023334.27\n", + "2022-12-22 00:00:00: Portfolio Value - -3766595.64\n", + "2022-12-23 00:00:00: Portfolio Value - -3816788.39\n", + "2022-12-27 00:00:00: Portfolio Value - -3803531.11\n", + "2022-12-28 00:00:00: Portfolio Value - -3828341.98\n", + "2022-12-29 00:00:00: Portfolio Value - -3939190.45\n", + "2022-12-30 00:00:00: Portfolio Value - -3742231.51\n", + "2023-01-03 00:00:00: Portfolio Value - -3720114.66\n", + "2023-01-04 00:00:00: Portfolio Value - -3761050.60\n", + "2023-01-05 00:00:00: Portfolio Value - -3358293.01\n", + "2023-01-06 00:00:00: Portfolio Value - -3697592.49\n", + "2023-01-09 00:00:00: Portfolio Value - -3937636.49\n", + "2023-01-10 00:00:00: Portfolio Value - -3913703.69\n", + "2023-01-11 00:00:00: Portfolio Value - -4071683.70\n", + "2023-01-12 00:00:00: Portfolio Value - -4018567.43\n", + "2023-01-13 00:00:00: Portfolio Value - -3916088.96\n", + "2023-01-17 00:00:00: Portfolio Value - -3784268.26\n", + "2023-01-18 00:00:00: Portfolio Value - -3679154.67\n", + "2023-01-19 00:00:00: Portfolio Value - -3648890.15\n", + "2023-01-20 00:00:00: Portfolio Value - -3549930.59\n", + "2023-01-23 00:00:00: Portfolio Value - -3511341.69\n", + "2023-01-24 00:00:00: Portfolio Value - -3448627.19\n", + "2023-01-25 00:00:00: Portfolio Value - -3385040.82\n", + "2023-01-26 00:00:00: Portfolio Value - -3446405.87\n", + "2023-01-27 00:00:00: Portfolio Value - -3515918.79\n", + "2023-01-30 00:00:00: Portfolio Value - -3446346.53\n", + "2023-01-31 00:00:00: Portfolio Value - -3611431.27\n", + "2023-02-01 00:00:00: Portfolio Value - -3687357.35\n", + "2023-02-02 00:00:00: Portfolio Value - -3851285.11\n", + "2023-02-03 00:00:00: Portfolio Value - -3455913.60\n", + "2023-02-06 00:00:00: Portfolio Value - -3321906.35\n", + "2023-02-07 00:00:00: Portfolio Value - -3383625.08\n", + "2023-02-08 00:00:00: Portfolio Value - -3300680.25\n", + "2023-02-09 00:00:00: Portfolio Value - -3367887.38\n", + "2023-02-10 00:00:00: Portfolio Value - -3696981.57\n", + "2023-02-13 00:00:00: Portfolio Value - -3717815.15\n", + "2023-02-14 00:00:00: Portfolio Value - -3563493.73\n", + "2023-02-15 00:00:00: Portfolio Value - -3500953.08\n", + "2023-02-16 00:00:00: Portfolio Value - -3396256.66\n", + "2023-02-17 00:00:00: Portfolio Value - -3345889.21\n", + "2023-02-21 00:00:00: Portfolio Value - -3138423.44\n", + "2023-02-22 00:00:00: Portfolio Value - -2919520.00\n", + "2023-02-23 00:00:00: Portfolio Value - -3137555.31\n", + "2023-02-24 00:00:00: Portfolio Value - -2954488.20\n", + "2023-02-27 00:00:00: Portfolio Value - -2885306.62\n", + "2023-02-28 00:00:00: Portfolio Value - -2793695.64\n", + "2023-03-01 00:00:00: Portfolio Value - -2686525.43\n", + "2023-03-02 00:00:00: Portfolio Value - -2773698.73\n", + "2023-03-03 00:00:00: Portfolio Value - -2993259.54\n", + "2023-03-06 00:00:00: Portfolio Value - -3000529.81\n", + "2023-03-07 00:00:00: Portfolio Value - -2791889.80\n", + "2023-03-08 00:00:00: Portfolio Value - -2858121.63\n", + "2023-03-09 00:00:00: Portfolio Value - -2774214.69\n", + "2023-03-10 00:00:00: Portfolio Value - -2580079.32\n", + "2023-03-13 00:00:00: Portfolio Value - -2607340.28\n", + "2023-03-14 00:00:00: Portfolio Value - -2747058.92\n", + "2023-03-15 00:00:00: Portfolio Value - -2689811.21\n", + "2023-03-16 00:00:00: Portfolio Value - -2845018.23\n", + "2023-03-17 00:00:00: Portfolio Value - -2886460.03\n", + "2023-03-20 00:00:00: Portfolio Value - -2866305.66\n", + "2023-03-21 00:00:00: Portfolio Value - -2972302.58\n", + "2023-03-22 00:00:00: Portfolio Value - -2868791.33\n", + "2023-03-23 00:00:00: Portfolio Value - -2771047.28\n", + "2023-03-24 00:00:00: Portfolio Value - -2692099.08\n", + "2023-03-27 00:00:00: Portfolio Value - -2648837.76\n", + "2023-03-28 00:00:00: Portfolio Value - -2530816.28\n", + "2023-03-29 00:00:00: Portfolio Value - -2676120.00\n", + "2023-03-30 00:00:00: Portfolio Value - -2655466.55\n", + "2023-03-31 00:00:00: Portfolio Value - -2667850.01\n", + "2023-04-03 00:00:00: Portfolio Value - -2528163.77\n", + "2023-04-04 00:00:00: Portfolio Value - -2549002.91\n", + "2023-04-05 00:00:00: Portfolio Value - -2610445.51\n", + "2023-04-06 00:00:00: Portfolio Value - -2701477.04\n", + "2023-04-10 00:00:00: Portfolio Value - -2715170.45\n", + "2023-04-11 00:00:00: Portfolio Value - -2800782.22\n", + "2023-04-12 00:00:00: Portfolio Value - -2803758.99\n", + "2023-04-13 00:00:00: Portfolio Value - -2787057.95\n", + "2023-04-14 00:00:00: Portfolio Value - -2918947.41\n", + "2023-04-17 00:00:00: Portfolio Value - -3137973.02\n", + "2023-04-18 00:00:00: Portfolio Value - -3019363.23\n", + "2023-04-19 00:00:00: Portfolio Value - -3136134.69\n", + "2023-04-20 00:00:00: Portfolio Value - -3129786.86\n", + "2023-04-21 00:00:00: Portfolio Value - -2971693.06\n", + "2023-04-24 00:00:00: Portfolio Value - -2902181.56\n", + "2023-04-25 00:00:00: Portfolio Value - -2760778.97\n", + "2023-04-26 00:00:00: Portfolio Value - -2648245.30\n", + "2023-04-27 00:00:00: Portfolio Value - -2692679.67\n", + "2023-04-28 00:00:00: Portfolio Value - -2672811.41\n", + "2023-05-01 00:00:00: Portfolio Value - -2765496.09\n", + "2023-05-02 00:00:00: Portfolio Value - -2495436.09\n", + "2023-05-03 00:00:00: Portfolio Value - -2393343.22\n", + "2023-05-04 00:00:00: Portfolio Value - -2377695.95\n", + "2023-05-05 00:00:00: Portfolio Value - -2224153.28\n", + "2023-05-08 00:00:00: Portfolio Value - -2109908.66\n", + "2023-05-09 00:00:00: Portfolio Value - -1954296.45\n", + "2023-05-10 00:00:00: Portfolio Value - -2153865.69\n", + "2023-05-11 00:00:00: Portfolio Value - -2062061.36\n", + "2023-05-12 00:00:00: Portfolio Value - -2044835.54\n", + "2023-05-15 00:00:00: Portfolio Value - -2076522.71\n", + "2023-05-16 00:00:00: Portfolio Value - -1960717.76\n", + "2023-05-17 00:00:00: Portfolio Value - -2182922.06\n", + "2023-05-18 00:00:00: Portfolio Value - -1969372.25\n", + "2023-05-19 00:00:00: Portfolio Value - -2182581.43\n", + "2023-05-22 00:00:00: Portfolio Value - -2403706.51\n", + "2023-05-23 00:00:00: Portfolio Value - -2249930.15\n", + "2023-05-24 00:00:00: Portfolio Value - -2005836.37\n", + "2023-05-25 00:00:00: Portfolio Value - -2659870.50\n", + "2023-05-26 00:00:00: Portfolio Value - -3080683.80\n", + "2023-05-30 00:00:00: Portfolio Value - -3122367.93\n", + "2023-05-31 00:00:00: Portfolio Value - -3024208.84\n", + "2023-06-01 00:00:00: Portfolio Value - -3110382.88\n", + "2023-06-02 00:00:00: Portfolio Value - -3114716.07\n", + "2023-06-05 00:00:00: Portfolio Value - -3044256.13\n", + "2023-06-06 00:00:00: Portfolio Value - -3118715.96\n", + "2023-06-07 00:00:00: Portfolio Value - -3056390.86\n", + "2023-06-08 00:00:00: Portfolio Value - -3160996.15\n", + "2023-06-09 00:00:00: Portfolio Value - -3100324.01\n", + "2023-06-12 00:00:00: Portfolio Value - -3240861.56\n", + "2023-06-13 00:00:00: Portfolio Value - -3147069.69\n", + "2023-06-14 00:00:00: Portfolio Value - -3223574.25\n", + "2023-06-15 00:00:00: Portfolio Value - -3284043.11\n", + "2023-06-16 00:00:00: Portfolio Value - -3371026.03\n", + "2023-06-20 00:00:00: Portfolio Value - -3176317.00\n", + "2023-06-21 00:00:00: Portfolio Value - -3079974.80\n", + "2023-06-22 00:00:00: Portfolio Value - -2943571.36\n", + "2023-06-23 00:00:00: Portfolio Value - -2976657.34\n", + "2023-06-26 00:00:00: Portfolio Value - -2997543.89\n", + "2023-06-27 00:00:00: Portfolio Value - -3099633.70\n", + "2023-06-28 00:00:00: Portfolio Value - -2956154.33\n", + "2023-06-29 00:00:00: Portfolio Value - -3074993.19\n", + "2023-06-30 00:00:00: Portfolio Value - -2991817.36\n", + "2023-07-03 00:00:00: Portfolio Value - -2947408.52\n", + "2023-07-05 00:00:00: Portfolio Value - -2921258.62\n", + "2023-07-06 00:00:00: Portfolio Value - -2852786.99\n", + "2023-07-07 00:00:00: Portfolio Value - -2796057.13\n", + "2023-07-10 00:00:00: Portfolio Value - -2876664.30\n", + "2023-07-11 00:00:00: Portfolio Value - -2981698.07\n", + "2023-07-12 00:00:00: Portfolio Value - -3237925.07\n", + "2023-07-13 00:00:00: Portfolio Value - -3455610.32\n", + "2023-07-14 00:00:00: Portfolio Value - -3395148.85\n", + "2023-07-17 00:00:00: Portfolio Value - -3422160.00\n", + "2023-07-18 00:00:00: Portfolio Value - -3247709.45\n", + "2023-07-19 00:00:00: Portfolio Value - -3388849.43\n", + "2023-07-20 00:00:00: Portfolio Value - -3648130.38\n", + "2023-07-21 00:00:00: Portfolio Value - -3836836.99\n", + "2023-07-24 00:00:00: Portfolio Value - -4019330.61\n", + "2023-07-25 00:00:00: Portfolio Value - -3987814.73\n", + "2023-07-26 00:00:00: Portfolio Value - -3936622.58\n", + "2023-07-27 00:00:00: Portfolio Value - -3680744.28\n", + "2023-07-28 00:00:00: Portfolio Value - -3765751.77\n", + "2023-07-31 00:00:00: Portfolio Value - -3768500.52\n", + "2023-08-01 00:00:00: Portfolio Value - -3818125.38\n", + "2023-08-02 00:00:00: Portfolio Value - -3706305.70\n", + "2023-08-03 00:00:00: Portfolio Value - -3329393.33\n", + "2023-08-04 00:00:00: Portfolio Value - -3802469.91\n", + "2023-08-07 00:00:00: Portfolio Value - -3641589.97\n", + "2023-08-08 00:00:00: Portfolio Value - -3533755.18\n", + "2023-08-09 00:00:00: Portfolio Value - -3608036.45\n", + "2023-08-10 00:00:00: Portfolio Value - -3633502.30\n", + "2023-08-11 00:00:00: Portfolio Value - -3605194.32\n", + "2023-08-14 00:00:00: Portfolio Value - -3611720.28\n", + "2023-08-15 00:00:00: Portfolio Value - -3382598.15\n", + "2023-08-16 00:00:00: Portfolio Value - -3325662.86\n", + "2023-08-17 00:00:00: Portfolio Value - -3565689.41\n", + "2023-08-18 00:00:00: Portfolio Value - -3431032.67\n", + "2023-08-21 00:00:00: Portfolio Value - -3524320.41\n", + "2023-08-22 00:00:00: Portfolio Value - -3554004.72\n", + "2023-08-23 00:00:00: Portfolio Value - -3679018.60\n", + "2023-08-24 00:00:00: Portfolio Value - -3792061.89\n", + "2023-08-25 00:00:00: Portfolio Value - -3817090.59\n", + "2023-08-28 00:00:00: Portfolio Value - -3825349.13\n", + "2023-08-29 00:00:00: Portfolio Value - -3943773.83\n", + "2023-08-30 00:00:00: Portfolio Value - -3965078.61\n", + "2023-08-31 00:00:00: Portfolio Value - -4085921.06\n", + "2023-09-01 00:00:00: Portfolio Value - -4097736.90\n", + "2023-09-05 00:00:00: Portfolio Value - -4085255.33\n", + "2023-09-06 00:00:00: Portfolio Value - -4064462.49\n", + "2023-09-07 00:00:00: Portfolio Value - -4148370.68\n", + "2023-09-08 00:00:00: Portfolio Value - -4157762.01\n", + "2023-09-11 00:00:00: Portfolio Value - -4098088.29\n", + "2023-09-12 00:00:00: Portfolio Value - -4125894.18\n", + "2023-09-13 00:00:00: Portfolio Value - -4527092.40\n", + "2023-09-14 00:00:00: Portfolio Value - -4821300.67\n", + "2023-09-15 00:00:00: Portfolio Value - -4620786.33\n", + "2023-09-18 00:00:00: Portfolio Value - -4659202.09\n", + "2023-09-19 00:00:00: Portfolio Value - -4562388.37\n", + "2023-09-20 00:00:00: Portfolio Value - -4606557.06\n", + "2023-09-21 00:00:00: Portfolio Value - -4332371.67\n", + "2023-09-22 00:00:00: Portfolio Value - -4318044.54\n", + "2023-09-25 00:00:00: Portfolio Value - -4242067.35\n", + "2023-09-26 00:00:00: Portfolio Value - -4030693.95\n", + "2023-09-27 00:00:00: Portfolio Value - -3802220.20\n", + "2023-09-28 00:00:00: Portfolio Value - -3859509.62\n", + "2023-09-29 00:00:00: Portfolio Value - -3972548.79\n", + "2023-10-02 00:00:00: Portfolio Value - -3879892.77\n", + "2023-10-03 00:00:00: Portfolio Value - -3638261.93\n", + "2023-10-04 00:00:00: Portfolio Value - -3827883.37\n", + "2023-10-05 00:00:00: Portfolio Value - -3925254.28\n", + "2023-10-06 00:00:00: Portfolio Value - -4020822.72\n", + "2023-10-09 00:00:00: Portfolio Value - -4091845.04\n", + "2023-10-10 00:00:00: Portfolio Value - -4199994.24\n", + "2023-10-11 00:00:00: Portfolio Value - -4504828.30\n", + "2023-10-12 00:00:00: Portfolio Value - -4517839.91\n", + "2023-10-13 00:00:00: Portfolio Value - -4549795.13\n", + "2023-10-16 00:00:00: Portfolio Value - -4536111.15\n", + "2023-10-17 00:00:00: Portfolio Value - -4492657.85\n", + "2023-10-18 00:00:00: Portfolio Value - -4457398.81\n", + "2023-10-19 00:00:00: Portfolio Value - -3819447.91\n", + "2023-10-20 00:00:00: Portfolio Value - -3697509.08\n", + "2023-10-23 00:00:00: Portfolio Value - -3565291.38\n", + "2023-10-24 00:00:00: Portfolio Value - -3524920.90\n", + "2023-10-25 00:00:00: Portfolio Value - -3327181.86\n", + "2023-10-26 00:00:00: Portfolio Value - -3601462.40\n", + "2023-10-27 00:00:00: Portfolio Value - -3497611.05\n", + "2023-10-30 00:00:00: Portfolio Value - -3527985.86\n", + "2023-10-31 00:00:00: Portfolio Value - -3843636.15\n", + "2023-11-01 00:00:00: Portfolio Value - -3920667.77\n", + "2023-11-02 00:00:00: Portfolio Value - -4362406.19\n", + "2023-11-03 00:00:00: Portfolio Value - -4561005.97\n", + "2023-11-06 00:00:00: Portfolio Value - -4446779.25\n", + "2023-11-07 00:00:00: Portfolio Value - -4435636.50\n", + "2023-11-08 00:00:00: Portfolio Value - -4442132.15\n", + "2023-11-09 00:00:00: Portfolio Value - -4339380.92\n", + "2023-11-10 00:00:00: Portfolio Value - -4533355.92\n", + "2023-11-13 00:00:00: Portfolio Value - -4474701.74\n", + "2023-11-14 00:00:00: Portfolio Value - -4890849.14\n", + "2023-11-15 00:00:00: Portfolio Value - -4747857.75\n", + "2023-11-16 00:00:00: Portfolio Value - -4868944.00\n", + "2023-11-17 00:00:00: Portfolio Value - -4827930.13\n", + "2023-11-20 00:00:00: Portfolio Value - -4950934.93\n", + "2023-11-21 00:00:00: Portfolio Value - -4940788.88\n", + "2023-11-22 00:00:00: Portfolio Value - -5035852.25\n", + "2023-11-24 00:00:00: Portfolio Value - -5031789.61\n", + "2023-11-27 00:00:00: Portfolio Value - -5080894.96\n", + "2023-11-28 00:00:00: Portfolio Value - -5153626.00\n", + "2023-11-29 00:00:00: Portfolio Value - -5255271.80\n", + "2023-11-30 00:00:00: Portfolio Value - -5173310.72\n", + "2023-12-01 00:00:00: Portfolio Value - -5104639.08\n", + "2023-12-04 00:00:00: Portfolio Value - -5109769.59\n", + "2023-12-05 00:00:00: Portfolio Value - -5127091.38\n", + "2023-12-06 00:00:00: Portfolio Value - -4963117.74\n", + "2023-12-07 00:00:00: Portfolio Value - -5060039.12\n", + "2023-12-08 00:00:00: Portfolio Value - -5029132.77\n", + "2023-12-11 00:00:00: Portfolio Value - -5130847.08\n", + "2023-12-12 00:00:00: Portfolio Value - -5090519.72\n", + "2023-12-13 00:00:00: Portfolio Value - -5167355.51\n", + "2023-12-14 00:00:00: Portfolio Value - -5291230.96\n", + "2023-12-15 00:00:00: Portfolio Value - -5361475.99\n", + "2023-12-18 00:00:00: Portfolio Value - -5089708.74\n", + "2023-12-19 00:00:00: Portfolio Value - -5021070.12\n", + "2023-12-20 00:00:00: Portfolio Value - -4892048.92\n", + "2023-12-21 00:00:00: Portfolio Value - -4986216.83\n", + "2023-12-22 00:00:00: Portfolio Value - -5082967.12\n", + "2023-12-26 00:00:00: Portfolio Value - -5092629.18\n", + "2023-12-27 00:00:00: Portfolio Value - -5134853.01\n", + "2023-12-28 00:00:00: Portfolio Value - -5171651.45\n", + "2023-12-29 00:00:00: Portfolio Value - -5149409.78\n", + "2024-01-02 00:00:00: Portfolio Value - -5135575.93\n", + "2024-01-03 00:00:00: Portfolio Value - -4946846.18\n", + "2024-01-04 00:00:00: Portfolio Value - -4876293.91\n", + "2024-01-05 00:00:00: Portfolio Value - -4802633.20\n", + "2024-01-08 00:00:00: Portfolio Value - -4844632.27\n", + "2024-01-09 00:00:00: Portfolio Value - -4777244.88\n", + "2024-01-10 00:00:00: Portfolio Value - -4808188.37\n", + "2024-01-11 00:00:00: Portfolio Value - -4652154.15\n", + "2024-01-12 00:00:00: Portfolio Value - -4817150.16\n", + "2024-01-16 00:00:00: Portfolio Value - -5014083.24\n", + "2024-01-17 00:00:00: Portfolio Value - -4841584.91\n", + "2024-01-18 00:00:00: Portfolio Value - -4830000.93\n", + "2024-01-19 00:00:00: Portfolio Value - -5155018.35\n", + "2024-01-22 00:00:00: Portfolio Value - -4952484.16\n", + "2024-01-23 00:00:00: Portfolio Value - -4873091.40\n", + "2024-01-24 00:00:00: Portfolio Value - -4383590.90\n", + "2024-01-25 00:00:00: Portfolio Value - -4124312.61\n", + "2024-01-26 00:00:00: Portfolio Value - -3901695.56\n", + "2024-01-29 00:00:00: Portfolio Value - -4002355.80\n", + "2024-01-30 00:00:00: Portfolio Value - -4085089.52\n", + "2024-01-31 00:00:00: Portfolio Value - -4164625.62\n", + "2024-02-01 00:00:00: Portfolio Value - -4170844.06\n", + "2024-02-02 00:00:00: Portfolio Value - -4224054.15\n", + "2024-02-05 00:00:00: Portfolio Value - -4201992.78\n", + "2024-02-06 00:00:00: Portfolio Value - -4172673.89\n", + "2024-02-07 00:00:00: Portfolio Value - -4273232.21\n", + "2024-02-08 00:00:00: Portfolio Value - -4465988.62\n", + "2024-02-09 00:00:00: Portfolio Value - -4558814.97\n", + "2024-02-12 00:00:00: Portfolio Value - -4500029.22\n", + "2024-02-13 00:00:00: Portfolio Value - -4239173.78\n", + "2024-02-14 00:00:00: Portfolio Value - -4245666.19\n", + "2024-02-15 00:00:00: Portfolio Value - -4220672.52\n", + "2024-02-16 00:00:00: Portfolio Value - -4012277.88\n", + "2024-02-20 00:00:00: Portfolio Value - -4016673.88\n", + "2024-02-21 00:00:00: Portfolio Value - -4104285.36\n", + "2024-02-22 00:00:00: Portfolio Value - -4113372.42\n", + "2024-02-23 00:00:00: Portfolio Value - -4138756.85\n", + "2024-02-26 00:00:00: Portfolio Value - -4029531.43\n", + "2024-02-27 00:00:00: Portfolio Value - -3722957.30\n", + "2024-02-28 00:00:00: Portfolio Value - -4050506.01\n", + "2024-02-29 00:00:00: Portfolio Value - -4027470.75\n", + "2024-03-01 00:00:00: Portfolio Value - -4066390.95\n", + "2024-03-04 00:00:00: Portfolio Value - -4206362.58\n", + "2024-03-05 00:00:00: Portfolio Value - -4177616.83\n", + "2024-03-06 00:00:00: Portfolio Value - -4254814.00\n", + "2024-03-07 00:00:00: Portfolio Value - -4287598.97\n", + "2024-03-08 00:00:00: Portfolio Value - -4261616.32\n", + "2024-03-11 00:00:00: Portfolio Value - -4080330.69\n", + "2024-03-12 00:00:00: Portfolio Value - -4086825.20\n", + "2024-03-13 00:00:00: Portfolio Value - -3848884.54\n", + "2024-03-14 00:00:00: Portfolio Value - -3658311.99\n", + "2024-03-15 00:00:00: Portfolio Value - -3449679.31\n", + "2024-03-18 00:00:00: Portfolio Value - -3386795.71\n", + "2024-03-19 00:00:00: Portfolio Value - -3282529.36\n", + "2024-03-20 00:00:00: Portfolio Value - -3274586.54\n", + "2024-03-21 00:00:00: Portfolio Value - -3463776.63\n", + "2024-03-22 00:00:00: Portfolio Value - -3181761.87\n", + "2024-03-25 00:00:00: Portfolio Value - -3168576.58\n", + "2024-03-26 00:00:00: Portfolio Value - -3164189.84\n", + "2024-03-27 00:00:00: Portfolio Value - -3452163.97\n", + "2024-03-28 00:00:00: Portfolio Value - -3570201.72\n", + "2024-04-01 00:00:00: Portfolio Value - -3352060.57\n", + "2024-04-02 00:00:00: Portfolio Value - -3214368.63\n", + "2024-04-03 00:00:00: Portfolio Value - -3315834.32\n", + "2024-04-04 00:00:00: Portfolio Value - -3178055.17\n", + "2024-04-05 00:00:00: Portfolio Value - -2986379.13\n", + "2024-04-08 00:00:00: Portfolio Value - -3190161.93\n", + "2024-04-09 00:00:00: Portfolio Value - -3310084.50\n", + "2024-04-10 00:00:00: Portfolio Value - -2908823.74\n", + "2024-04-11 00:00:00: Portfolio Value - -2835856.20\n", + "2024-04-12 00:00:00: Portfolio Value - -2638117.63\n", + "2024-04-15 00:00:00: Portfolio Value - -2792890.34\n", + "2024-04-16 00:00:00: Portfolio Value - -2711324.02\n", + "2024-04-17 00:00:00: Portfolio Value - -2870224.50\n", + "2024-04-18 00:00:00: Portfolio Value - -2858408.83\n", + "2024-04-19 00:00:00: Portfolio Value - -3329695.16\n", + "2024-04-22 00:00:00: Portfolio Value - -3509735.57\n", + "2024-04-23 00:00:00: Portfolio Value - -3390519.93\n", + "2024-04-24 00:00:00: Portfolio Value - -3680204.88\n", + "2024-04-25 00:00:00: Portfolio Value - -3537533.02\n", + "2024-04-26 00:00:00: Portfolio Value - -3358363.76\n", + "2024-04-29 00:00:00: Portfolio Value - -3381292.63\n", + "2024-04-30 00:00:00: Portfolio Value - -3523616.34\n", + "2024-05-01 00:00:00: Portfolio Value - -3510416.07\n", + "2024-05-02 00:00:00: Portfolio Value - -3791070.36\n", + "2024-05-03 00:00:00: Portfolio Value - -3733617.23\n", + "2024-05-06 00:00:00: Portfolio Value - -3729996.67\n", + "2024-05-07 00:00:00: Portfolio Value - -3717117.24\n", + "2024-05-08 00:00:00: Portfolio Value - -3671209.40\n", + "2024-05-09 00:00:00: Portfolio Value - -4015319.21\n", + "2024-05-10 00:00:00: Portfolio Value - -4011254.18\n", + "2024-05-13 00:00:00: Portfolio Value - -3958941.76\n", + "2024-05-14 00:00:00: Portfolio Value - -4239391.21\n", + "2024-05-15 00:00:00: Portfolio Value - -4532573.34\n", + "2024-05-16 00:00:00: Portfolio Value - -4490478.80\n", + "2024-05-17 00:00:00: Portfolio Value - -4457353.04\n", + "2024-05-20 00:00:00: Portfolio Value - -4320202.56\n", + "2024-05-21 00:00:00: Portfolio Value - -4339125.13\n", + "2024-05-22 00:00:00: Portfolio Value - -4359713.21\n", + "2024-05-23 00:00:00: Portfolio Value - -4369059.30\n", + "2024-05-24 00:00:00: Portfolio Value - -4213825.72\n", + "2024-05-28 00:00:00: Portfolio Value - -4182447.57\n", + "2024-05-29 00:00:00: Portfolio Value - -3946249.55\n", + "2024-05-30 00:00:00: Portfolio Value - -4039277.14\n", + "2024-05-31 00:00:00: Portfolio Value - -4086007.44\n", + "2024-06-03 00:00:00: Portfolio Value - -4169815.02\n", + "2024-06-04 00:00:00: Portfolio Value - -4378637.29\n", + "2024-06-05 00:00:00: Portfolio Value - -4385554.11\n", + "2024-06-06 00:00:00: Portfolio Value - -4400338.08\n", + "2024-06-07 00:00:00: Portfolio Value - -4335608.79\n", + "2024-06-10 00:00:00: Portfolio Value - -4385357.80\n", + "2024-06-11 00:00:00: Portfolio Value - -4251383.60\n", + "2024-06-12 00:00:00: Portfolio Value - -4431393.33\n", + "2024-06-13 00:00:00: Portfolio Value - -4357514.63\n", + "2024-06-14 00:00:00: Portfolio Value - -4609212.81\n", + "2024-06-17 00:00:00: Portfolio Value - -4603455.22\n", + "2024-06-18 00:00:00: Portfolio Value - -4745878.45\n", + "2024-06-20 00:00:00: Portfolio Value - -4652275.21\n", + "2024-06-21 00:00:00: Portfolio Value - -4716975.95\n", + "2024-06-24 00:00:00: Portfolio Value - -5007927.62\n", + "2024-06-25 00:00:00: Portfolio Value - -5006996.98\n", + "2024-06-26 00:00:00: Portfolio Value - -4880093.51\n", + "2024-06-27 00:00:00: Portfolio Value - -4746347.62\n", + "2024-06-28 00:00:00: Portfolio Value - -4883108.30\n", + "2024-07-01 00:00:00: Portfolio Value - -5029641.86\n", + "2024-07-02 00:00:00: Portfolio Value - -5014187.83\n", + "2024-07-03 00:00:00: Portfolio Value - -5051935.03\n", + "2024-07-05 00:00:00: Portfolio Value - -5038624.96\n", + "2024-07-08 00:00:00: Portfolio Value - -5125302.73\n", + "2024-07-09 00:00:00: Portfolio Value - -5337397.70\n", + "2024-07-10 00:00:00: Portfolio Value - -5580669.98\n", + "2024-07-11 00:00:00: Portfolio Value - -5748291.09\n", + "2024-07-12 00:00:00: Portfolio Value - -5775065.94\n", + "2024-07-15 00:00:00: Portfolio Value - -5785034.02\n", + "2024-07-16 00:00:00: Portfolio Value - -5942547.78\n", + "2024-07-17 00:00:00: Portfolio Value - -5777896.55\n", + "2024-07-18 00:00:00: Portfolio Value - -5909888.76\n", + "2024-07-19 00:00:00: Portfolio Value - -5799201.53\n", + "2024-07-22 00:00:00: Portfolio Value - -6041183.92\n", + "2024-07-23 00:00:00: Portfolio Value - -6073983.33\n", + "2024-07-24 00:00:00: Portfolio Value - -5922053.00\n", + "2024-07-25 00:00:00: Portfolio Value - -5822116.12\n", + "2024-07-26 00:00:00: Portfolio Value - -6239105.54\n", + "2024-07-29 00:00:00: Portfolio Value - -6324311.47\n", + "2024-07-30 00:00:00: Portfolio Value - -6183558.54\n", + "2024-07-31 00:00:00: Portfolio Value - -6497091.78\n", + "2024-08-01 00:00:00: Portfolio Value - -6579682.09\n", + "2024-08-02 00:00:00: Portfolio Value - -6507773.32\n", + "2024-08-05 00:00:00: Portfolio Value - -6271244.94\n", + "2024-08-06 00:00:00: Portfolio Value - -6376709.72\n", + "2024-08-07 00:00:00: Portfolio Value - -6220243.86\n", + "2024-08-08 00:00:00: Portfolio Value - -6472065.65\n", + "2024-08-09 00:00:00: Portfolio Value - -6423144.48\n", + "2024-08-12 00:00:00: Portfolio Value - -6314562.64\n", + "2024-08-13 00:00:00: Portfolio Value - -6469918.81\n", + "2024-08-14 00:00:00: Portfolio Value - -6440777.90\n", + "2024-08-15 00:00:00: Portfolio Value - -6408180.44\n", + "2024-08-16 00:00:00: Portfolio Value - -6283581.05\n", + "2024-08-19 00:00:00: Portfolio Value - -6124947.89\n", + "2024-08-20 00:00:00: Portfolio Value - -5983408.84\n", + "2024-08-21 00:00:00: Portfolio Value - -6101674.76\n", + "2024-08-22 00:00:00: Portfolio Value - -6092598.54\n", + "2024-08-23 00:00:00: Portfolio Value - -6344335.96\n", + "2024-08-26 00:00:00: Portfolio Value - -6234499.11\n", + "2024-08-27 00:00:00: Portfolio Value - -6281993.33\n", + "2024-08-28 00:00:00: Portfolio Value - -6314717.38\n", + "2024-08-29 00:00:00: Portfolio Value - -6400820.97\n", + "2024-08-30 00:00:00: Portfolio Value - -6507643.16\n", + "2024-09-03 00:00:00: Portfolio Value - -6269425.33\n", + "2024-09-04 00:00:00: Portfolio Value - -6418849.71\n", + "2024-09-05 00:00:00: Portfolio Value - -6211429.68\n", + "2024-09-06 00:00:00: Portfolio Value - -6065711.02\n", + "2024-09-09 00:00:00: Portfolio Value - -6218111.41\n", + "2024-09-10 00:00:00: Portfolio Value - -6435372.46\n", + "2024-09-11 00:00:00: Portfolio Value - -6493299.93\n", + "2024-09-12 00:00:00: Portfolio Value - -6532760.98\n", + "2024-09-13 00:00:00: Portfolio Value - -6308814.01\n", + "2024-09-16 00:00:00: Portfolio Value - -6139548.20\n", + "2024-09-17 00:00:00: Portfolio Value - -5840269.64\n", + "2024-09-18 00:00:00: Portfolio Value - -6078254.51\n", + "2024-09-19 00:00:00: Portfolio Value - -6181281.67\n", + "2024-09-20 00:00:00: Portfolio Value - -6141867.34\n", + "2024-09-23 00:00:00: Portfolio Value - -6308041.82\n", + "2024-09-24 00:00:00: Portfolio Value - -6079357.03\n", + "2024-09-25 00:00:00: Portfolio Value - -6092816.68\n", + "2024-09-26 00:00:00: Portfolio Value - -6125745.59\n", + "2024-09-27 00:00:00: Portfolio Value - -6163894.74\n", + "2024-09-30 00:00:00: Portfolio Value - -6334270.90\n", + "2024-10-01 00:00:00: Portfolio Value - -6111838.78\n", + "2024-10-02 00:00:00: Portfolio Value - -6398383.65\n", + "2024-10-03 00:00:00: Portfolio Value - -6365888.91\n", + "2024-10-04 00:00:00: Portfolio Value - -6207095.99\n", + "2024-10-07 00:00:00: Portfolio Value - -6215669.06\n", + "2024-10-08 00:00:00: Portfolio Value - -6173253.25\n", + "2024-10-09 00:00:00: Portfolio Value - -6242429.29\n", + "2024-10-10 00:00:00: Portfolio Value - -6124371.55\n", + "2024-10-11 00:00:00: Portfolio Value - -6461766.88\n", + "2024-10-14 00:00:00: Portfolio Value - -6670600.14\n", + "2024-10-15 00:00:00: Portfolio Value - -6807565.88\n", + "2024-10-16 00:00:00: Portfolio Value - -6966270.64\n", + "2024-10-17 00:00:00: Portfolio Value - -6947139.86\n", + "2024-10-18 00:00:00: Portfolio Value - -6376336.54\n", + "2024-10-21 00:00:00: Portfolio Value - -6055986.76\n", + "2024-10-22 00:00:00: Portfolio Value - -6050001.50\n", + "2024-10-23 00:00:00: Portfolio Value - -6232382.16\n", + "2024-10-24 00:00:00: Portfolio Value - -6161653.78\n", + "2024-10-25 00:00:00: Portfolio Value - -5892216.49\n", + "2024-10-28 00:00:00: Portfolio Value - -5995849.54\n", + "2024-10-29 00:00:00: Portfolio Value - -5974783.41\n", + "2024-10-30 00:00:00: Portfolio Value - -6077824.52\n", + "2024-10-31 00:00:00: Portfolio Value - -5364207.62\n", + "2024-11-01 00:00:00: Portfolio Value - -5240518.89\n", + "2024-11-04 00:00:00: Portfolio Value - -5393325.90\n", + "2024-11-05 00:00:00: Portfolio Value - -5588327.41\n", + "2024-11-06 00:00:00: Portfolio Value - -5473313.53\n", + "2024-11-07 00:00:00: Portfolio Value - -5470671.34\n", + "2024-11-08 00:00:00: Portfolio Value - -5602598.31\n", + "2024-11-11 00:00:00: Portfolio Value - -5161846.84\n", + "2024-11-12 00:00:00: Portfolio Value - -4887148.81\n", + "2024-11-13 00:00:00: Portfolio Value - -4571233.44\n", + "2024-11-14 00:00:00: Portfolio Value - -4362749.44\n", + "2024-11-15 00:00:00: Portfolio Value - -4358806.24\n", + "2024-11-18 00:00:00: Portfolio Value - -4256494.45\n", + "2024-11-19 00:00:00: Portfolio Value - -4056604.97\n" ] } ], @@ -8517,7 +3837,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 10, "metadata": {}, "outputs": [ { @@ -8526,13 +3846,13 @@ "text": [ "\n", "Performance Metrics:\n", - "Daily Return: -0.08207647451220856\n", - "Cumulative Return: 108.69940830764796\n", - "Log Return: -0.0002514022663968894\n", - "Volatility: 83.32539912798578\n", - "Sharpe Ratio: -0.24827689748357096\n", - "Max Drawdown: -1.1472462334251403\n", - "VaR 5%: -0.03783174253972108\n" + "Daily Return: -0.018809001356327005\n", + "Cumulative Return: -41.56604969280639\n", + "Log Return: 0.0007022100658567331\n", + "Volatility: 135.77371916967215\n", + "Sharpe Ratio: -0.03494320086986429\n", + "Max Drawdown: -4.51077011773663\n", + "VaR 5%: -0.28133187311958946\n" ] }, { @@ -8545,7 +3865,7 @@ }, { "data": { - "image/png": "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J070L7d582bp1KmT+Q909tlny5w5c6RRo0YyefJkqVy5ssV3UHRRe3uovR3U3R5qbw+1t4fa20HdowfBKwzOO+88GTRokPTv398/U4/+p1m9erUsWLBA5s2bJ2eeeaZ5HOFF7e2h9nZQd3uovT3U3h5qbwd1j0wEr3xau3attG/fXj799FN/925aWpokJCTYblrEo/b2UHs7qLs91N4eam8PtbeDukcujvE6RW5e/e6776RkyZL+/xijRo0y503QMbfwBrW3h9rbQd3tofb2UHt7qL0d1D3yxdluQFE/qd2PP/4ol19+ucycOVNuuukmOXDggLzxxhucGNND1N4eam8HdbeH2ttD7e2h9nZQ9yhge1rFouzgwYNOvXr1HJ/P5yQmJjpPPvmk7SZFDWpvD7W3g7rbQ+3tofb2UHs7qHtk4xivfOrSpYvUr19fxo8fL0lJSbabE1WovT3U3g7qbg+1t4fa20Pt7aDukYvglU+ZmZkSGxtruxlRidrbQ+3toO72UHt7qL091N4O6h65CF4AAAAA4DFmNQQAAAAAjxG8AAAAAMBjBC8AAAAA8BjBCwAAAAA8RvACAAAAAI8RvAAAAADAYwQvAAAAAPAYwQsAELUGDBggPp/PXOLj46Vy5crSpUsXmTRpkmRlZeV5Pf/+97+lTJkynrYVAFC0EbwAAFGte/fusnXrVlm/fr189tlncsEFF8hdd90ll1xyiWRkZNhuHgAgQhC8AABRLTExUapUqSLVqlWTs846Sx544AH56KOPTAjTniw1fvx4adasmZQoUUJq1Kght912m+zbt8889tVXX8nAgQNlz549/t6zRx55xDx2+PBhueeee8y69blt2rQxywMAog/BCwCAHC688EI588wzZerUqeZ2TEyM/P3vf5dly5bJ66+/Ll9++aXce++95rH27dvLc889J8nJyabnTC8attQdd9whc+fOlSlTpsjixYulT58+poftt99+s/r+AAAFz+c4jmPhdQEAKBTHeP3555/y4Ycf5nrs6quvNmFp+fLluR5777335JZbbpGdO3ea29ozdvfdd5t1uTZs2CB169Y116eddpr//s6dO8s555wjTzzxhGfvCwBQ+MTZbgAAAIWR7pfUYYPqiy++kDFjxsjKlSslNTXVHPt16NAhOXDggBQvXvyYz1+yZIlkZmZKgwYNgu7X4Yfly5cvkPcAACg8CF4AABzDihUrpE6dOmbSDZ1o49Zbb5XHH39cypUrJ999953ccMMNkpaWdtzgpceAxcbGyoIFC8x1oJIlSxbQuwAAFBYELwAActBjuLTHavDgwSY46dTy48aNM8d6qXfeeSdo+YSEBNO7Fahly5bmvu3bt8v5559foO0HABQ+BC8AQFTToX8pKSkmJG3btk2mT59uhhVqL1e/fv1k6dKlkp6eLv/4xz/k0ksvle+//14mTJgQtI7atWubHq5Zs2aZSTm0F0yHGF577bVmHRraNIjt2LHDLNO8eXPp2bOntfcMACh4zGoIAIhqGrSqVq1qwpPOODh79mwzg6FOKa9DBDVI6XTyY8eOlaZNm8pbb71lglkgndlQJ9u46qqrpGLFivLUU0+Z+1977TUTvIYOHSoNGzaU3r17y08//SQ1a9a09G4BALYwqyEAAAAAeIweLwAAAADwGMELAAAAADxG8AIAAAAAjxG8AAAAAMBjBC8AAAAA8BjBCwAAAAA8RvACAAAAAI8RvAAAAADAYwQvAAAAAPAYwQsAAAAAPEbwAgAAAACPEbwAAAAAQLz1/+xrEPW/odPGAAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA14AAAH9CAYAAAAKz62bAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvc2/+5QAAAAlwSFlzAAAPYQAAD2EBqD+naQAAYfVJREFUeJzt3QecU1X2wPGTMr0w9N5UEBAEFKSIgEpREGV1Wawga1ldcVexYgGxoq7Y1rW3tfztZRVEuoogINKb0qQPdXqf5P85d0iYYQacgbx5Kb/v5xOSvPfycnMmJO/k3nuew+v1egUAAAAAYBmndbsGAAAAACgSLwAAAACwGIkXAAAAAFiMxAsAAAAALEbiBQAAAAAWI/ECAAAAAIuReAEAAACAxUi8AAAAAMBiJF4AAAAAYDESLwBAyFm0aJH07NlTEhISxOFwyNKlSyv92Lfeess8ZvPmzf5lffv2NRcAAKxC4gUAqHLS4rvExsZK69atZfTo0ZKamhrQ53r00Ufliy++KLe8sLBQhg0bJvv375enn35a3nnnHWnevLkEE03iSscpLi5OTj31VHnmmWfE4/Ec0z7ff/9983gAQGhy290AAEDoefDBB6Vly5aSl5cnc+fOlRdffFGmTJkiK1eulPj4+IAlXn/+859l6NChZZZv2LBBfv/9d3n11Vfl2muvDchzTZs2TQKtSZMm8thjj5nbe/fuNYnTrbfeKnv27JFHHnmkyvvTx2t8b7nlloC3FQBgPRIvAECVnX/++dKlSxdzW5Of2rVry6RJk+TLL7+Uyy677Jj36/V6TTKnPURHsnv3bnOdkpIigRIdHS2BVqNGDbnyyiv992+44QZp06aNPP/88yZxdblcEgxycnICliwDAI6MoYYAgON2zjnnmOtNmzaZ66KiInnooYfkxBNPlJiYGGnRooXcc889kp+fX+ZxuvyCCy6Qb7/91iRymnC9/PLLZnhedna2vP322/7heldffbW59OnTxzxWhxvq8tJzs2bNmiVnnXWWmfulidlFF10ka9as+cP2VzTHSxO8a665RurXr2+GVHbs2NG051jpPrp27SqZmZn+5NHn3XffldNPP928/lq1asmll14qW7duLdO+yZMnm54+Xzw0dkeas6bmzJljlut16f20b99eFi9eLL179zYJl/5d9LG67b/+9S955ZVX/H83ba/Opytt165dMmrUKNOjp9s0bNjQxPnw5wcAlEWPFwDguOnwP6U9X75eME1SdKjgbbfdJgsWLDDD7jQJ+vzzz8s8dt26daaX7G9/+5tcd911cvLJJ5t5W7qPM844Q66//nqznSYDqnHjxmYY4j/+8Q+TGGhipGbMmGF64k444QR54IEHJDc31/QunXnmmfLLL7/4E5XK0MdqkrJ+/Xozf02HVX788ccm8UtLS5N//vOfxxQnX4JTurdOhx3ef//98pe//MW8Zh2KqO3WxGjJkiVm23vvvVfS09Nl27ZtZl6bSkxMPKY27Nu3z8RJkzvtkfPFzzecURND/VtoO5944gm5+OKLZePGjRIVFWW2ueSSS2TVqlVy8803m5hqEjl9+nTZsmVLlWIMABHHCwBAJb355pte/eqYMWOGd8+ePd6tW7d6P/jgA2/t2rW9cXFx3m3btnmXLl1qtrn22mvLPPb22283y2fNmuVf1rx5c7Ns6tSp5Z4rISHBO3LkyHLLZ8+ebR7z8ccfl1neqVMnb7169bz79u3zL1u2bJnX6XR6R4wYUe41bNq0yb+sT58+5uLzzDPPmG3effdd/7KCggJvjx49vImJid6MjIyjxkn31aZNGxMjvaxdu9Z7xx13mH0OHjzYv93mzZu9LpfL+8gjj5R5/IoVK7xut7vMcn2cxutwFb2e0nHS69Lt0mUvvfRSmW31sbpc/4779+/3L//yyy/N8q+++srcP3DggLn/5JNPHvX1AwDKY6ghAKDK+vXrJ3Xr1pWmTZuanhPtfdGeLO2N0iIbasyYMWUeoz1fSofMlaa9SQMHDjyu9uzcudOUlNceKR2q56OVBPv37+9vU2Xp9g0aNCgzX017fLSXLSsrS7777rs/3MfatWtNjPSic7uefPJJufDCC83QQJ/PPvvMVDnU3i4twOG76HO3atVKZs+eLYGmwwN1qGBFhg8fLjVr1vTf12GbSnu8lA6F1PlwOnzxwIEDAW8bAIQzhhoCAKrshRdeMGXk3W63GaqmwwOdzpLf8nQekt4+6aSTyjxGkwkdNqfrD0+8jpdvn9qOw7Vt29bMIdM5Yzr3q7L708TH95pK76v08x2NDrvTyouaWOlQTB1SqMMIda6Xz2+//WYKiuhzVcQ3vC+QNDk+UjGRZs2albnvS8J8SZYmbY8//rhJovXv3r17dzNHb8SIEebvCwA4MhIvAECV6dwrX1XDI9E5QpVxtAqGoUyTPO0Z9NG5ZqeddpopZvHcc8+ZZZqUaZy++eabCqscVmYe15HiXFxcXOV4H6nSoiaHPlrOfsiQIeYca5rQ6vw0nb+nhU06d+78h+0FgEhF4gUACCg9mbEmFNqb4+shUnqCZS1MUdmTHVc2cfM9p69QR0VD/urUqVPp3i7f/pYvX25eR+leL91X6eerCh32qMUstGrj7bffbnqXtGCIJjXa66c9iMcSD1+vlMa2tMr0yh0rbbf2eulF/86dOnWSp556ylRnBABUjDleAICAGjRokLl+5plnyizX83ypwYMHV2o/migdnkwciZY014N/raRY+jF6wmE9ObKvTZWl22vZ9A8//NC/TEvka7VB7YXylbSvqjvvvFMKCwv9sdCKgdrLNGHChDK9SkrvawXC0vHQyoaH81V7/P7778v0dmlZeCvO+aXnWTv8+ZOSksqdKgAAUBY9XgCAgNLzXY0cOdIc+GsSpEnKwoULTVI0dOhQOfvssyu1Hz2vlZaI1ySlUaNGpleoW7duR9xei1domfQePXqY82/5ysnriYy1vHxVaAl77ZnSYh16ziudr/XJJ5/Ijz/+aBJKTTSORbt27UxS99prr5khepq0PPzwwzJ27FhTal7jo/vW86FpsRJth/aO+eKhiaAWLdEy+poA6pC/U045xcy10n3s37/fFBf54IMPTKIYaL/++quce+65phiIvhad46ft1N5MLbICADiKCiodAgBQIV/p8kWLFh11u8LCQu+ECRO8LVu29EZFRXmbNm3qHTt2rDcvL6/MdloevXR59dK0BHvv3r1NmXp9Tl9p+SOVk1da5v7MM880j0lOTvYOGTLEu3r16gpfw9HKyavU1FTvqFGjvHXq1PFGR0d7O3ToYB5bGbqvU045pcJ1c+bMMc8/fvx4/7JPP/3U26tXL1NCXy9aiv6mm27yrlu3zr9NVlaW9/LLL/empKSYx5cuLb9hwwZvv379vDExMd769et777nnHu/06dMrLCdfUbt85eQrKhNfuq179+417dL2aTtr1Kjh7datm/ejjz6qVFwAIJI59J+jJWYAAAAAgOPDHC8AAAAAsBiJFwAAAABYjMQLAAAAACxG4gUAAAAAFiPxAgAAAACLkXgBAAAAgMU4gXIVeTwe2bFjhznBpcPhsLs5AAAA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GzfODIFQmnDpl4Qe8Ouv0bD2fe9LgPVgVHtatNdLh3nql4L+6KC39UsCgY27HvTUrl1b7rvvPtPbqL28//vf/8z14sWL5eGHH+aXUItir58resCvPY06p7FZs2bm/uTJk2XQoEGmN4CDoeP3ySefyIwZM0xi65s7p5/vmvCWnsOr93WY56JFi2T69OlmGe/9wMRef+BRZ5xxhing06hRI3Nff1zTHhj9zD/zzDNtbm14vud99MdkPZbU935+fr50797dJF86vFwTMR1yrstRTbyoVp9//rm3UaNG3tq1a3s3bdpklhUWFprrjRs3es8991zvDTfc4M3KyjLLiouLzfpRo0Z5e/fubWvbwzH2RUVF/vUej8d/OzMz09uqVSvvTz/9ZEtbIyH2+t72ycvLM/FOTU019ydMmOCNjY31xsTEeBcvXlzmb4PAvOf379/vveaaa7xJSUneiy++2Pw9fH+T1157zVujRg1vTk6Ore0P1896pcu++eYbb7t27bz//e9//cvfffddb0JCgnfr1q22tDscaDzr1avnPeOMM7x169b1nnnmmd5PP/3UrPvll19MzCdOnOjNz8/3P2bXrl3eCy+80HvVVVfZ2PLwjL3+X1D6OV76c3/z5s3mc3/9+vU2tjj84+77vG/QoIH/PX/rrbea79i4uDjvzz//bGPLIw89XtXovffek0cffdRMqtZelokTJ5rlvnks2uOihR1++eUXM/dC6a90ul6743XoYVZWls2vIrxiX7qqT+nhJToPQGOtvS8+Ov8OgYu97xdo7QnQ9/9pp51m5rzo+PN///vfMnz4cImPjze/iurfhkIbgX3P62fKueeea+Yy6i+ipee26HBnXc4QoMB/1vu0aNHCDHnTv4f+6uzrEdMhb9rjrkMPUTX6GaFzVx577DETf+3V0rnSJ554orz22mtmXp1+vmiMP/vsszJFHerXr296YagqGfjY69xR7VHRz/HSnzNz5swx175eMLV//37bXkO4xl3pe79Pnz7mfa9TK9555x3p16+fNG/e3P/ZQ6GN6sEnTDXwvZm1ap4e6Dz++ONy4YUXmg8d3wePb1iJlrjVseda1a30OXV2795tPpwSExNtehXhG/uKPmw08dUkWA9OlyxZImeffbb52zDMM/Cx1y9iTXK11K0OK9SDotWrV5thKf3795fLL7/cbEt5+cDF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AAAAAMBiJF4AAAAAYDESLwAAAACwGIkXAAAAAFiMxAsAELGuvvpqcTgc5hIVFSX169eX/v37yxtvvCEej6fS+3nrrbckJSXF0rYCAEIbiRcAIKKdd955snPnTtm8ebN88803cvbZZ8s///lPueCCC6SoqMju5gEAwgSJFwAgosXExEiDBg2kcePGctppp8k999wjX375pUnCtCdLTZo0STp06CAJCQnStGlT+fvf/y5ZWVlm3Zw5c2TUqFGSnp7u7z174IEHzLr8/Hy5/fbbzb71sd26dTPbAwAiD4kXAACHOeecc6Rjx47y2WefmftOp1Oee+45WbVqlbz99tsya9YsufPOO826nj17yjPPPCPJycmm50wvmmyp0aNHy/z58+WDDz6Q5cuXy7Bhw0wP22+//Wbr6wMAVD+H1+v12vC8AAAExRyvtLQ0+eKLL8qtu/TSS02ytHr16nLrPvnkE7nhhhtk79695r72jN1yyy1mXz5btmyRE044wVw3atTIv7xfv35yxhlnyKOPPmrZ6wIABB+33Q0AACAY6e+SOmxQzZgxQx577DFZu3atZGRkmLlfeXl5kpOTI/Hx8RU+fsWKFVJcXCytW7cus1yHH9auXbtaXgMAIHiQeAEAUIE1a9ZIy5YtTdENLbRx4403yiOPPCK1atWSuXPnyjXXXCMFBQVHTLx0DpjL5ZLFixeb69ISExOr6VUAAIIFiRcAAIfROVzaY3XrrbeaxElLyz/11FNmrpf66KOPymwfHR1terdK69y5s1m2e/duOeuss6q1/QCA4EPiBQCIaDr0b9euXSZJSk1NlalTp5phhdrLNWLECFm5cqUUFhbK888/L0OGDJEff/xRXnrppTL7aNGihenhmjlzpinKob1gOsTwiiuuMPvQpE0TsT179phtTj31VBk8eLBtrxkAUP2oaggAiGiaaDVs2NAkT1pxcPbs2aaCoZaU1yGCmkhpOfnHH39c2rdvL++9955JzErTyoZabGP48OFSt25deeKJJ8zyN9980yRet912m5x88skydOhQWbRokTRr1symVwsAsAtVDQEAAADAYvR4AQAAAIDFSLwAAAAAwGIkXgAAAABgMRIvAAAAALAYiRcAAAAAWIzECwAAAAAsRuIFAAAAABYj8QIAAAAAi5F4AQAAAIDFSLwAAAAAwGIkXgAAAABgMRIvAAAAABBr/T9BYEJx21WcsQAAAABJRU5ErkJggg==", "text/plain": [ "
" ] From ab51eb4e54303fa117f76c12cf49170b015cd860 Mon Sep 17 00:00:00 2001 From: Daniel Wang Date: Sat, 22 Mar 2025 15:47:11 -0400 Subject: [PATCH 3/4] Fixed some of the issues Nathan mentioend --- backtester/bab.ipynb | 23908 +++++--------------------------- backtester/order_generator.py | 7 +- backtester/smr.ipynb | 12102 +++++----------- 3 files changed, 7411 insertions(+), 28606 deletions(-) diff --git a/backtester/bab.ipynb b/backtester/bab.ipynb index f0c2539..17358ac 100644 --- a/backtester/bab.ipynb +++ b/backtester/bab.ipynb @@ -2,16552 +2,9 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "[*********************100%***********************] 1 of 1 completed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Buying CHTR on 2010-04-30 00:00:00\n", - "Buying COO on 2010-04-30 00:00:00\n", - "Buying VRSK on 2010-04-30 00:00:00\n", - "Buying BSX on 2010-04-30 00:00:00\n", - "Buying BRO on 2010-04-30 00:00:00\n", - "Buying RMD on 2010-04-30 00:00:00\n", - "Buying WTW on 2010-04-30 00:00:00\n", - "Buying KMB on 2010-04-30 00:00:00\n", - "Buying WMT on 2010-04-30 00:00:00\n", - "Buying CLX on 2010-04-30 00:00:00\n", - "Buying AVY on 2010-04-30 00:00:00\n", - "Buying COST on 2010-04-30 00:00:00\n", - "Buying CL on 2010-04-30 00:00:00\n", - "Buying BR on 2010-04-30 00:00:00\n", - "Buying AWK on 2010-04-30 00:00:00\n", - "Buying EA on 2010-04-30 00:00:00\n", - "Buying LDOS on 2010-04-30 00:00:00\n", - "Buying TECH on 2010-04-30 00:00:00\n", - "Buying EXPD on 2010-04-30 00:00:00\n", - "Buying MDLZ on 2010-04-30 00:00:00\n", - "Buying EG on 2010-04-30 00:00:00\n", - "Buying PG on 2010-04-30 00:00:00\n", - "Buying JNJ on 2010-04-30 00:00:00\n", - "Buying QCOM on 2010-04-30 00:00:00\n", - "Buying HRL on 2010-04-30 00:00:00\n", - "Buying DUK on 2010-04-30 00:00:00\n", - "Buying TYL on 2010-04-30 00:00:00\n", - "Buying ABT on 2010-04-30 00:00:00\n", - "Buying LLY on 2010-04-30 00:00:00\n", - "Buying FE on 2010-04-30 00:00:00\n", - "Buying VZ on 2010-04-30 00:00:00\n", - "Buying CHD on 2010-04-30 00:00:00\n", - "Buying AJG on 2010-04-30 00:00:00\n", - "Buying SHW on 2010-04-30 00:00:00\n", - "Buying BDX on 2010-04-30 00:00:00\n", - "Buying MCD on 2010-04-30 00:00:00\n", - "Buying BAX on 2010-04-30 00:00:00\n", - "Buying AZO on 2010-04-30 00:00:00\n", - "Buying MTCH on 2010-04-30 00:00:00\n", - "Buying ACGL on 2010-04-30 00:00:00\n", - "Buying PCG on 2010-04-30 00:00:00\n", - "Buying CB on 2010-04-30 00:00:00\n", - "Buying CTAS on 2010-04-30 00:00:00\n", - "Selling BXP on 2010-04-30 00:00:00\n", - "Selling F on 2010-04-30 00:00:00\n", - "Selling CE on 2010-04-30 00:00:00\n", - "Selling GS on 2010-04-30 00:00:00\n", - "Selling AKAM on 2010-04-30 00:00:00\n", - "Selling PARA on 2010-04-30 00:00:00\n", - "Selling STX on 2010-04-30 00:00:00\n", - "Selling DFS on 2010-04-30 00:00:00\n", - "Selling SMCI on 2010-04-30 00:00:00\n", - "Selling FITB on 2010-04-30 00:00:00\n", - "Selling PFG on 2010-04-30 00:00:00\n", - "Selling NVDA on 2010-04-30 00:00:00\n", - "Selling AMP on 2010-04-30 00:00:00\n", - "Selling PRU on 2010-04-30 00:00:00\n", - "Selling DAL on 2010-04-30 00:00:00\n", - "Selling COF on 2010-04-30 00:00:00\n", - "Selling HAL on 2010-04-30 00:00:00\n", - "Selling BLDR on 2010-04-30 00:00:00\n", - "Selling WYNN on 2010-04-30 00:00:00\n", - "Selling FCX on 2010-04-30 00:00:00\n", - "Selling TER on 2010-04-30 00:00:00\n", - "Selling WDC on 2010-04-30 00:00:00\n", - "Selling BKR on 2010-04-30 00:00:00\n", - "Selling REGN on 2010-04-30 00:00:00\n", - "Selling INCY on 2010-04-30 00:00:00\n", - "Selling MAS on 2010-04-30 00:00:00\n", - "Selling AMD on 2010-04-30 00:00:00\n", - "Selling IVZ on 2010-04-30 00:00:00\n", - "Selling STLD on 2010-04-30 00:00:00\n", - "Selling IPG on 2010-04-30 00:00:00\n", - "Selling JBL on 2010-04-30 00:00:00\n", - "Selling FSLR on 2010-04-30 00:00:00\n", - "Selling MU on 2010-04-30 00:00:00\n", - "Selling UAL on 2010-04-30 00:00:00\n", - "Selling LEN on 2010-04-30 00:00:00\n", - "Selling ULTA on 2010-04-30 00:00:00\n", - "Selling RCL on 2010-04-30 00:00:00\n", - "Selling CBRE on 2010-04-30 00:00:00\n", - "Selling AIG on 2010-04-30 00:00:00\n", - "Selling URI on 2010-04-30 00:00:00\n", - "Selling C on 2010-04-30 00:00:00\n", - "Selling LVS on 2010-04-30 00:00:00\n", - "Selling MGM on 2010-04-30 00:00:00\n", - "Buying VRSK on 2010-05-31 00:00:00\n", - "Buying LDOS on 2010-05-31 00:00:00\n", - "Buying DLTR on 2010-05-31 00:00:00\n", - "Buying HRL on 2010-05-31 00:00:00\n", - "Buying WMT on 2010-05-31 00:00:00\n", - "Buying BAX on 2010-05-31 00:00:00\n", - "Buying KMB on 2010-05-31 00:00:00\n", - "Buying CHTR on 2010-05-31 00:00:00\n", - "Buying LLY on 2010-05-31 00:00:00\n", - "Buying FICO on 2010-05-31 00:00:00\n", - "Buying BMY on 2010-05-31 00:00:00\n", - "Buying CHD on 2010-05-31 00:00:00\n", - "Buying FIS on 2010-05-31 00:00:00\n", - "Buying CLX on 2010-05-31 00:00:00\n", - "Buying SO on 2010-05-31 00:00:00\n", - "Buying SJM on 2010-05-31 00:00:00\n", - "Buying ABT on 2010-05-31 00:00:00\n", - "Buying ED on 2010-05-31 00:00:00\n", - "Buying TECH on 2010-05-31 00:00:00\n", - "Buying DUK on 2010-05-31 00:00:00\n", - "Buying KO on 2010-05-31 00:00:00\n", - "Buying CL on 2010-05-31 00:00:00\n", - "Buying BDX on 2010-05-31 00:00:00\n", - "Buying PEP on 2010-05-31 00:00:00\n", - "Buying JNJ on 2010-05-31 00:00:00\n", - "Buying PG on 2010-05-31 00:00:00\n", - "Buying PCG on 2010-05-31 00:00:00\n", - "Buying LH on 2010-05-31 00:00:00\n", - "Buying COST on 2010-05-31 00:00:00\n", - "Buying VRTX on 2010-05-31 00:00:00\n", - "Buying CPB on 2010-05-31 00:00:00\n", - "Buying KR on 2010-05-31 00:00:00\n", - "Buying VZ on 2010-05-31 00:00:00\n", - "Buying DG on 2010-05-31 00:00:00\n", - "Buying QCOM on 2010-05-31 00:00:00\n", - "Buying NEE on 2010-05-31 00:00:00\n", - "Buying DGX on 2010-05-31 00:00:00\n", - "Buying K on 2010-05-31 00:00:00\n", - "Buying MKC on 2010-05-31 00:00:00\n", - "Buying GIS on 2010-05-31 00:00:00\n", - "Buying MCO on 2010-05-31 00:00:00\n", - "Buying FE on 2010-05-31 00:00:00\n", - "Buying COO on 2010-05-31 00:00:00\n", - "Selling F on 2010-05-31 00:00:00\n", - "Selling NFLX on 2010-05-31 00:00:00\n", - "Selling MET on 2010-05-31 00:00:00\n", - "Selling FSLR on 2010-05-31 00:00:00\n", - "Selling PRU on 2010-05-31 00:00:00\n", - "Selling NTAP on 2010-05-31 00:00:00\n", - "Selling PARA on 2010-05-31 00:00:00\n", - "Selling EQR on 2010-05-31 00:00:00\n", - "Selling MHK on 2010-05-31 00:00:00\n", - "Selling BKNG on 2010-05-31 00:00:00\n", - "Selling AIG on 2010-05-31 00:00:00\n", - "Selling DD on 2010-05-31 00:00:00\n", - "Selling CMI on 2010-05-31 00:00:00\n", - "Selling CE on 2010-05-31 00:00:00\n", - "Selling HIG on 2010-05-31 00:00:00\n", - "Selling IVZ on 2010-05-31 00:00:00\n", - "Selling HBAN on 2010-05-31 00:00:00\n", - "Selling PLD on 2010-05-31 00:00:00\n", - "Selling RF on 2010-05-31 00:00:00\n", - "Selling MU on 2010-05-31 00:00:00\n", - "Selling AMD on 2010-05-31 00:00:00\n", - "Selling IPG on 2010-05-31 00:00:00\n", - "Selling AMP on 2010-05-31 00:00:00\n", - "Selling TER on 2010-05-31 00:00:00\n", - "Selling LULU on 2010-05-31 00:00:00\n", - "Selling LYV on 2010-05-31 00:00:00\n", - "Selling TXT on 2010-05-31 00:00:00\n", - "Selling LEN on 2010-05-31 00:00:00\n", - "Selling JBL on 2010-05-31 00:00:00\n", - "Selling PFG on 2010-05-31 00:00:00\n", - "Selling FITB on 2010-05-31 00:00:00\n", - "Selling AFL on 2010-05-31 00:00:00\n", - "Selling UAL on 2010-05-31 00:00:00\n", - "Selling WYNN on 2010-05-31 00:00:00\n", - "Selling HST on 2010-05-31 00:00:00\n", - "Selling URI on 2010-05-31 00:00:00\n", - "Selling MAS on 2010-05-31 00:00:00\n", - "Selling CBRE on 2010-05-31 00:00:00\n", - "Selling RCL on 2010-05-31 00:00:00\n", - "Selling BLDR on 2010-05-31 00:00:00\n", - "Selling INCY on 2010-05-31 00:00:00\n", - "Selling LVS on 2010-05-31 00:00:00\n", - "Selling MGM on 2010-05-31 00:00:00\n", - "Buying CHTR on 2010-06-30 00:00:00\n", - "Buying WMT on 2010-06-30 00:00:00\n", - "Buying BMY on 2010-06-30 00:00:00\n", - "Buying LDOS on 2010-06-30 00:00:00\n", - "Buying KMB on 2010-06-30 00:00:00\n", - "Buying DLTR on 2010-06-30 00:00:00\n", - "Buying HRL on 2010-06-30 00:00:00\n", - "Buying BAX on 2010-06-30 00:00:00\n", - "Buying VRSK on 2010-06-30 00:00:00\n", - "Buying LLY on 2010-06-30 00:00:00\n", - "Buying JNJ on 2010-06-30 00:00:00\n", - "Buying CLX on 2010-06-30 00:00:00\n", - "Buying PG on 2010-06-30 00:00:00\n", - "Buying FIS on 2010-06-30 00:00:00\n", - "Buying SO on 2010-06-30 00:00:00\n", - "Buying CHD on 2010-06-30 00:00:00\n", - "Buying SJM on 2010-06-30 00:00:00\n", - "Buying CL on 2010-06-30 00:00:00\n", - "Buying CPB on 2010-06-30 00:00:00\n", - "Buying DG on 2010-06-30 00:00:00\n", - "Buying ABT on 2010-06-30 00:00:00\n", - "Buying VZ on 2010-06-30 00:00:00\n", - "Buying PEP on 2010-06-30 00:00:00\n", - "Buying HSY on 2010-06-30 00:00:00\n", - "Buying NEM on 2010-06-30 00:00:00\n", - "Buying GIS on 2010-06-30 00:00:00\n", - "Buying KO on 2010-06-30 00:00:00\n", - "Buying BDX on 2010-06-30 00:00:00\n", - "Buying DUK on 2010-06-30 00:00:00\n", - "Buying COST on 2010-06-30 00:00:00\n", - "Buying ED on 2010-06-30 00:00:00\n", - "Buying K on 2010-06-30 00:00:00\n", - "Buying AZO on 2010-06-30 00:00:00\n", - "Buying TECH on 2010-06-30 00:00:00\n", - "Buying TAP on 2010-06-30 00:00:00\n", - "Buying UNH on 2010-06-30 00:00:00\n", - "Buying LH on 2010-06-30 00:00:00\n", - "Buying MDLZ on 2010-06-30 00:00:00\n", - "Buying DGX on 2010-06-30 00:00:00\n", - "Buying KR on 2010-06-30 00:00:00\n", - "Buying FE on 2010-06-30 00:00:00\n", - "Buying PCG on 2010-06-30 00:00:00\n", - "Buying MKC on 2010-06-30 00:00:00\n", - "Selling PLD on 2010-06-30 00:00:00\n", - "Selling MHK on 2010-06-30 00:00:00\n", - "Selling CTRA on 2010-06-30 00:00:00\n", - "Selling HAL on 2010-06-30 00:00:00\n", - "Selling AMP on 2010-06-30 00:00:00\n", - "Selling FCX on 2010-06-30 00:00:00\n", - "Selling DD on 2010-06-30 00:00:00\n", - "Selling CE on 2010-06-30 00:00:00\n", - "Selling HBAN on 2010-06-30 00:00:00\n", - "Selling PRU on 2010-06-30 00:00:00\n", - "Selling J on 2010-06-30 00:00:00\n", - "Selling LYV on 2010-06-30 00:00:00\n", - "Selling IPG on 2010-06-30 00:00:00\n", - "Selling RF on 2010-06-30 00:00:00\n", - "Selling HIG on 2010-06-30 00:00:00\n", - "Selling BWA on 2010-06-30 00:00:00\n", - "Selling LEN on 2010-06-30 00:00:00\n", - "Selling BKR on 2010-06-30 00:00:00\n", - "Selling IVZ on 2010-06-30 00:00:00\n", - "Selling FSLR on 2010-06-30 00:00:00\n", - "Selling PARA on 2010-06-30 00:00:00\n", - "Selling IP on 2010-06-30 00:00:00\n", - "Selling JBL on 2010-06-30 00:00:00\n", - "Selling FITB on 2010-06-30 00:00:00\n", - "Selling LULU on 2010-06-30 00:00:00\n", - "Selling PFG on 2010-06-30 00:00:00\n", - "Selling CMI on 2010-06-30 00:00:00\n", - "Selling AFL on 2010-06-30 00:00:00\n", - "Selling WYNN on 2010-06-30 00:00:00\n", - "Selling AMD on 2010-06-30 00:00:00\n", - "Selling TER on 2010-06-30 00:00:00\n", - "Selling MU on 2010-06-30 00:00:00\n", - "Selling HST on 2010-06-30 00:00:00\n", - "Selling TXT on 2010-06-30 00:00:00\n", - "Selling MAS on 2010-06-30 00:00:00\n", - "Selling UAL on 2010-06-30 00:00:00\n", - "Selling INCY on 2010-06-30 00:00:00\n", - "Selling CBRE on 2010-06-30 00:00:00\n", - "Selling URI on 2010-06-30 00:00:00\n", - "Selling RCL on 2010-06-30 00:00:00\n", - "Selling LVS on 2010-06-30 00:00:00\n", - "Selling MGM on 2010-06-30 00:00:00\n", - "Selling BLDR on 2010-06-30 00:00:00\n", - "Buying CHTR on 2010-07-31 00:00:00\n", - "Buying DLTR on 2010-07-31 00:00:00\n", - "Buying HSY on 2010-07-31 00:00:00\n", - "Buying FIS on 2010-07-31 00:00:00\n", - "Buying VRSK on 2010-07-31 00:00:00\n", - "Buying BMY on 2010-07-31 00:00:00\n", - "Buying LDOS on 2010-07-31 00:00:00\n", - "Buying WMT on 2010-07-31 00:00:00\n", - "Buying KMB on 2010-07-31 00:00:00\n", - "Buying JNJ on 2010-07-31 00:00:00\n", - "Buying HRL on 2010-07-31 00:00:00\n", - "Buying LLY on 2010-07-31 00:00:00\n", - "Buying CLX on 2010-07-31 00:00:00\n", - "Buying PG on 2010-07-31 00:00:00\n", - "Buying CPB on 2010-07-31 00:00:00\n", - "Buying BAX on 2010-07-31 00:00:00\n", - "Buying SO on 2010-07-31 00:00:00\n", - "Buying LH on 2010-07-31 00:00:00\n", - "Buying SJM on 2010-07-31 00:00:00\n", - "Buying DG on 2010-07-31 00:00:00\n", - "Buying VZ on 2010-07-31 00:00:00\n", - "Buying ABT on 2010-07-31 00:00:00\n", - "Buying AZO on 2010-07-31 00:00:00\n", - "Buying CL on 2010-07-31 00:00:00\n", - "Buying GIS on 2010-07-31 00:00:00\n", - "Buying K on 2010-07-31 00:00:00\n", - "Buying KO on 2010-07-31 00:00:00\n", - "Buying KDP on 2010-07-31 00:00:00\n", - "Buying PEP on 2010-07-31 00:00:00\n", - "Buying TAP on 2010-07-31 00:00:00\n", - "Buying DUK on 2010-07-31 00:00:00\n", - "Buying CHD on 2010-07-31 00:00:00\n", - "Buying ED on 2010-07-31 00:00:00\n", - "Buying NEM on 2010-07-31 00:00:00\n", - "Buying UNH on 2010-07-31 00:00:00\n", - "Buying DGX on 2010-07-31 00:00:00\n", - "Buying UHS on 2010-07-31 00:00:00\n", - "Buying KR on 2010-07-31 00:00:00\n", - "Buying TECH on 2010-07-31 00:00:00\n", - "Buying T on 2010-07-31 00:00:00\n", - "Buying MKC on 2010-07-31 00:00:00\n", - "Buying COR on 2010-07-31 00:00:00\n", - "Buying MDLZ on 2010-07-31 00:00:00\n", - "Selling MET on 2010-07-31 00:00:00\n", - "Selling EQR on 2010-07-31 00:00:00\n", - "Selling J on 2010-07-31 00:00:00\n", - "Selling PHM on 2010-07-31 00:00:00\n", - "Selling CE on 2010-07-31 00:00:00\n", - "Selling AES on 2010-07-31 00:00:00\n", - "Selling IPG on 2010-07-31 00:00:00\n", - "Selling DD on 2010-07-31 00:00:00\n", - "Selling KIM on 2010-07-31 00:00:00\n", - "Selling HIG on 2010-07-31 00:00:00\n", - "Selling IVZ on 2010-07-31 00:00:00\n", - "Selling KEY on 2010-07-31 00:00:00\n", - "Selling FFIV on 2010-07-31 00:00:00\n", - "Selling MHK on 2010-07-31 00:00:00\n", - "Selling PLD on 2010-07-31 00:00:00\n", - "Selling FCX on 2010-07-31 00:00:00\n", - "Selling LULU on 2010-07-31 00:00:00\n", - "Selling BWA on 2010-07-31 00:00:00\n", - "Selling PARA on 2010-07-31 00:00:00\n", - "Selling IP on 2010-07-31 00:00:00\n", - "Selling AMD on 2010-07-31 00:00:00\n", - "Selling PFG on 2010-07-31 00:00:00\n", - "Selling LYV on 2010-07-31 00:00:00\n", - "Selling HBAN on 2010-07-31 00:00:00\n", - "Selling WYNN on 2010-07-31 00:00:00\n", - "Selling JBL on 2010-07-31 00:00:00\n", - "Selling TER on 2010-07-31 00:00:00\n", - "Selling MU on 2010-07-31 00:00:00\n", - "Selling RF on 2010-07-31 00:00:00\n", - "Selling AFL on 2010-07-31 00:00:00\n", - "Selling MAS on 2010-07-31 00:00:00\n", - "Selling UAL on 2010-07-31 00:00:00\n", - "Selling URI on 2010-07-31 00:00:00\n", - "Selling CBRE on 2010-07-31 00:00:00\n", - "Selling CMI on 2010-07-31 00:00:00\n", - "Selling TXT on 2010-07-31 00:00:00\n", - "Selling HST on 2010-07-31 00:00:00\n", - "Selling LVS on 2010-07-31 00:00:00\n", - "Selling INCY on 2010-07-31 00:00:00\n", - "Selling FITB on 2010-07-31 00:00:00\n", - "Selling RCL on 2010-07-31 00:00:00\n", - "Selling MGM on 2010-07-31 00:00:00\n", - "Selling BLDR on 2010-07-31 00:00:00\n", - "Buying CHTR on 2010-08-31 00:00:00\n", - "Buying DLTR on 2010-08-31 00:00:00\n", - "Buying HSY on 2010-08-31 00:00:00\n", - "Buying VRSK on 2010-08-31 00:00:00\n", - "Buying NFLX on 2010-08-31 00:00:00\n", - "Buying JNJ on 2010-08-31 00:00:00\n", - "Buying EW on 2010-08-31 00:00:00\n", - "Buying CL on 2010-08-31 00:00:00\n", - "Buying SJM on 2010-08-31 00:00:00\n", - "Buying AZO on 2010-08-31 00:00:00\n", - "Buying CPB on 2010-08-31 00:00:00\n", - "Buying WMT on 2010-08-31 00:00:00\n", - "Buying GIS on 2010-08-31 00:00:00\n", - "Buying KMB on 2010-08-31 00:00:00\n", - "Buying PG on 2010-08-31 00:00:00\n", - "Buying MO on 2010-08-31 00:00:00\n", - "Buying MNST on 2010-08-31 00:00:00\n", - "Buying PEP on 2010-08-31 00:00:00\n", - "Buying MCK on 2010-08-31 00:00:00\n", - "Buying LLY on 2010-08-31 00:00:00\n", - "Buying CLX on 2010-08-31 00:00:00\n", - "Buying KO on 2010-08-31 00:00:00\n", - "Buying VZ on 2010-08-31 00:00:00\n", - "Buying K on 2010-08-31 00:00:00\n", - "Buying PM on 2010-08-31 00:00:00\n", - "Buying COR on 2010-08-31 00:00:00\n", - "Buying KDP on 2010-08-31 00:00:00\n", - "Buying TPL on 2010-08-31 00:00:00\n", - "Buying DG on 2010-08-31 00:00:00\n", - "Buying ABT on 2010-08-31 00:00:00\n", - "Buying SO on 2010-08-31 00:00:00\n", - "Buying HRL on 2010-08-31 00:00:00\n", - "Buying DVA on 2010-08-31 00:00:00\n", - "Buying BMY on 2010-08-31 00:00:00\n", - "Buying LH on 2010-08-31 00:00:00\n", - "Buying GS on 2010-08-31 00:00:00\n", - "Buying MKC on 2010-08-31 00:00:00\n", - "Buying NEM on 2010-08-31 00:00:00\n", - "Buying KR on 2010-08-31 00:00:00\n", - "Buying CHD on 2010-08-31 00:00:00\n", - "Buying DUK on 2010-08-31 00:00:00\n", - "Buying FIS on 2010-08-31 00:00:00\n", - "Buying ORLY on 2010-08-31 00:00:00\n", - "Selling LRCX on 2010-08-31 00:00:00\n", - "Selling MAR on 2010-08-31 00:00:00\n", - "Selling PCAR on 2010-08-31 00:00:00\n", - "Selling AFL on 2010-08-31 00:00:00\n", - "Selling KIM on 2010-08-31 00:00:00\n", - "Selling FFIV on 2010-08-31 00:00:00\n", - "Selling DD on 2010-08-31 00:00:00\n", - "Selling UAL on 2010-08-31 00:00:00\n", - "Selling AIG on 2010-08-31 00:00:00\n", - "Selling PFG on 2010-08-31 00:00:00\n", - "Selling TTWO on 2010-08-31 00:00:00\n", - "Selling BWA on 2010-08-31 00:00:00\n", - "Selling INCY on 2010-08-31 00:00:00\n", - "Selling STT on 2010-08-31 00:00:00\n", - "Selling AES on 2010-08-31 00:00:00\n", - "Selling DFS on 2010-08-31 00:00:00\n", - "Selling TXT on 2010-08-31 00:00:00\n", - "Selling PLD on 2010-08-31 00:00:00\n", - "Selling AMD on 2010-08-31 00:00:00\n", - "Selling PHM on 2010-08-31 00:00:00\n", - "Selling WYNN on 2010-08-31 00:00:00\n", - "Selling CE on 2010-08-31 00:00:00\n", - "Selling CMI on 2010-08-31 00:00:00\n", - "Selling MHK on 2010-08-31 00:00:00\n", - "Selling HST on 2010-08-31 00:00:00\n", - "Selling FCX on 2010-08-31 00:00:00\n", - "Selling PARA on 2010-08-31 00:00:00\n", - "Selling IVZ on 2010-08-31 00:00:00\n", - "Selling HIG on 2010-08-31 00:00:00\n", - "Selling IP on 2010-08-31 00:00:00\n", - "Selling LVS on 2010-08-31 00:00:00\n", - "Selling HBAN on 2010-08-31 00:00:00\n", - "Selling KEY on 2010-08-31 00:00:00\n", - "Selling TER on 2010-08-31 00:00:00\n", - "Selling MAS on 2010-08-31 00:00:00\n", - "Selling RF on 2010-08-31 00:00:00\n", - "Selling MU on 2010-08-31 00:00:00\n", - "Selling FITB on 2010-08-31 00:00:00\n", - "Selling URI on 2010-08-31 00:00:00\n", - "Selling LYV on 2010-08-31 00:00:00\n", - "Selling MGM on 2010-08-31 00:00:00\n", - "Selling RCL on 2010-08-31 00:00:00\n", - "Selling BLDR on 2010-08-31 00:00:00\n", - "Buying NFLX on 2010-09-30 00:00:00\n", - "Buying CHTR on 2010-09-30 00:00:00\n", - "Buying DLTR on 2010-09-30 00:00:00\n", - "Buying HSY on 2010-09-30 00:00:00\n", - "Buying CPB on 2010-09-30 00:00:00\n", - "Buying NEM on 2010-09-30 00:00:00\n", - "Buying VRSK on 2010-09-30 00:00:00\n", - "Buying CL on 2010-09-30 00:00:00\n", - "Buying EW on 2010-09-30 00:00:00\n", - "Buying GIS on 2010-09-30 00:00:00\n", - "Buying DVA on 2010-09-30 00:00:00\n", - "Buying PG on 2010-09-30 00:00:00\n", - "Buying MO on 2010-09-30 00:00:00\n", - "Buying KMB on 2010-09-30 00:00:00\n", - "Buying SJM on 2010-09-30 00:00:00\n", - "Buying SO on 2010-09-30 00:00:00\n", - "Buying CLX on 2010-09-30 00:00:00\n", - "Buying MKC on 2010-09-30 00:00:00\n", - "Buying PEP on 2010-09-30 00:00:00\n", - "Buying PPL on 2010-09-30 00:00:00\n", - "Buying ABT on 2010-09-30 00:00:00\n", - "Buying LH on 2010-09-30 00:00:00\n", - "Buying AZO on 2010-09-30 00:00:00\n", - "Buying BMY on 2010-09-30 00:00:00\n", - "Buying PCG on 2010-09-30 00:00:00\n", - "Buying KO on 2010-09-30 00:00:00\n", - "Buying MNST on 2010-09-30 00:00:00\n", - "Buying DUK on 2010-09-30 00:00:00\n", - "Buying K on 2010-09-30 00:00:00\n", - "Buying JNJ on 2010-09-30 00:00:00\n", - "Buying TPL on 2010-09-30 00:00:00\n", - "Buying T on 2010-09-30 00:00:00\n", - "Buying KR on 2010-09-30 00:00:00\n", - "Buying WMT on 2010-09-30 00:00:00\n", - "Buying AEP on 2010-09-30 00:00:00\n", - "Buying VZ on 2010-09-30 00:00:00\n", - "Buying TSN on 2010-09-30 00:00:00\n", - "Buying EXC on 2010-09-30 00:00:00\n", - "Buying LLY on 2010-09-30 00:00:00\n", - "Buying ED on 2010-09-30 00:00:00\n", - "Buying BF-B on 2010-09-30 00:00:00\n", - "Buying MCD on 2010-09-30 00:00:00\n", - "Buying NEE on 2010-09-30 00:00:00\n", - "Selling PCAR on 2010-09-30 00:00:00\n", - "Selling DAL on 2010-09-30 00:00:00\n", - "Selling WFC on 2010-09-30 00:00:00\n", - "Selling IP on 2010-09-30 00:00:00\n", - "Selling BWA on 2010-09-30 00:00:00\n", - "Selling RL on 2010-09-30 00:00:00\n", - "Selling DFS on 2010-09-30 00:00:00\n", - "Selling CCL on 2010-09-30 00:00:00\n", - "Selling DD on 2010-09-30 00:00:00\n", - "Selling BAC on 2010-09-30 00:00:00\n", - "Selling TXT on 2010-09-30 00:00:00\n", - "Selling STT on 2010-09-30 00:00:00\n", - "Selling TROW on 2010-09-30 00:00:00\n", - "Selling CMI on 2010-09-30 00:00:00\n", - "Selling MET on 2010-09-30 00:00:00\n", - "Selling WYNN on 2010-09-30 00:00:00\n", - "Selling PLD on 2010-09-30 00:00:00\n", - "Selling MAR on 2010-09-30 00:00:00\n", - "Selling ALGN on 2010-09-30 00:00:00\n", - "Selling TER on 2010-09-30 00:00:00\n", - "Selling CE on 2010-09-30 00:00:00\n", - "Selling AFL on 2010-09-30 00:00:00\n", - "Selling HST on 2010-09-30 00:00:00\n", - "Selling URI on 2010-09-30 00:00:00\n", - "Selling MU on 2010-09-30 00:00:00\n", - "Selling LEN on 2010-09-30 00:00:00\n", - "Selling PHM on 2010-09-30 00:00:00\n", - "Selling PFG on 2010-09-30 00:00:00\n", - "Selling AIG on 2010-09-30 00:00:00\n", - "Selling IVZ on 2010-09-30 00:00:00\n", - "Selling PARA on 2010-09-30 00:00:00\n", - "Selling MAS on 2010-09-30 00:00:00\n", - "Selling HBAN on 2010-09-30 00:00:00\n", - "Selling JBL on 2010-09-30 00:00:00\n", - "Selling KEY on 2010-09-30 00:00:00\n", - "Selling RF on 2010-09-30 00:00:00\n", - "Selling HIG on 2010-09-30 00:00:00\n", - "Selling MGM on 2010-09-30 00:00:00\n", - "Selling FITB on 2010-09-30 00:00:00\n", - "Selling MHK on 2010-09-30 00:00:00\n", - "Selling RCL on 2010-09-30 00:00:00\n", - "Selling LYV on 2010-09-30 00:00:00\n", - "Selling BLDR on 2010-09-30 00:00:00\n", - "Buying EW on 2010-10-31 00:00:00\n", - "Buying CHTR on 2010-10-31 00:00:00\n", - "Buying DLTR on 2010-10-31 00:00:00\n", - "Buying NFLX on 2010-10-31 00:00:00\n", - "Buying VRSK on 2010-10-31 00:00:00\n", - "Buying CPB on 2010-10-31 00:00:00\n", - "Buying TPL on 2010-10-31 00:00:00\n", - "Buying GIS on 2010-10-31 00:00:00\n", - "Buying CL on 2010-10-31 00:00:00\n", - "Buying BF-B on 2010-10-31 00:00:00\n", - "Buying TSN on 2010-10-31 00:00:00\n", - "Buying KMB on 2010-10-31 00:00:00\n", - "Buying NEM on 2010-10-31 00:00:00\n", - "Buying DVA on 2010-10-31 00:00:00\n", - "Buying SO on 2010-10-31 00:00:00\n", - "Buying PCG on 2010-10-31 00:00:00\n", - "Buying PG on 2010-10-31 00:00:00\n", - "Buying CMS on 2010-10-31 00:00:00\n", - "Buying PPL on 2010-10-31 00:00:00\n", - "Buying MO on 2010-10-31 00:00:00\n", - "Buying AWK on 2010-10-31 00:00:00\n", - "Buying AEP on 2010-10-31 00:00:00\n", - "Buying CLX on 2010-10-31 00:00:00\n", - "Buying ED on 2010-10-31 00:00:00\n", - "Buying HRL on 2010-10-31 00:00:00\n", - "Buying MKC on 2010-10-31 00:00:00\n", - "Buying MCD on 2010-10-31 00:00:00\n", - "Buying DUK on 2010-10-31 00:00:00\n", - "Buying AZO on 2010-10-31 00:00:00\n", - "Buying LLY on 2010-10-31 00:00:00\n", - "Buying PEP on 2010-10-31 00:00:00\n", - "Buying K on 2010-10-31 00:00:00\n", - "Buying WRB on 2010-10-31 00:00:00\n", - "Buying WMT on 2010-10-31 00:00:00\n", - "Buying COST on 2010-10-31 00:00:00\n", - "Buying T on 2010-10-31 00:00:00\n", - "Buying NEE on 2010-10-31 00:00:00\n", - "Buying CHD on 2010-10-31 00:00:00\n", - "Buying SJM on 2010-10-31 00:00:00\n", - "Buying KO on 2010-10-31 00:00:00\n", - "Buying ATO on 2010-10-31 00:00:00\n", - "Buying HPQ on 2010-10-31 00:00:00\n", - "Buying MTCH on 2010-10-31 00:00:00\n", - "Selling ALGN on 2010-10-31 00:00:00\n", - "Selling IEX on 2010-10-31 00:00:00\n", - "Selling PRU on 2010-10-31 00:00:00\n", - "Selling APH on 2010-10-31 00:00:00\n", - "Selling MAS on 2010-10-31 00:00:00\n", - "Selling MAR on 2010-10-31 00:00:00\n", - "Selling ROK on 2010-10-31 00:00:00\n", - "Selling NDSN on 2010-10-31 00:00:00\n", - "Selling DECK on 2010-10-31 00:00:00\n", - "Selling CMI on 2010-10-31 00:00:00\n", - "Selling TDY on 2010-10-31 00:00:00\n", - "Selling AIG on 2010-10-31 00:00:00\n", - "Selling MET on 2010-10-31 00:00:00\n", - "Selling WFC on 2010-10-31 00:00:00\n", - "Selling IVZ on 2010-10-31 00:00:00\n", - "Selling PCAR on 2010-10-31 00:00:00\n", - "Selling HST on 2010-10-31 00:00:00\n", - "Selling FICO on 2010-10-31 00:00:00\n", - "Selling HBAN on 2010-10-31 00:00:00\n", - "Selling TER on 2010-10-31 00:00:00\n", - "Selling STT on 2010-10-31 00:00:00\n", - "Selling MU on 2010-10-31 00:00:00\n", - "Selling KEY on 2010-10-31 00:00:00\n", - "Selling WYNN on 2010-10-31 00:00:00\n", - "Selling CBRE on 2010-10-31 00:00:00\n", - "Selling PARA on 2010-10-31 00:00:00\n", - "Selling GNRC on 2010-10-31 00:00:00\n", - "Selling FCX on 2010-10-31 00:00:00\n", - "Selling FITB on 2010-10-31 00:00:00\n", - "Selling RF on 2010-10-31 00:00:00\n", - "Selling TXT on 2010-10-31 00:00:00\n", - "Selling TROW on 2010-10-31 00:00:00\n", - "Selling PFG on 2010-10-31 00:00:00\n", - "Selling MHK on 2010-10-31 00:00:00\n", - "Selling CE on 2010-10-31 00:00:00\n", - "Selling MGM on 2010-10-31 00:00:00\n", - "Selling JBL on 2010-10-31 00:00:00\n", - "Selling AXON on 2010-10-31 00:00:00\n", - "Selling HIG on 2010-10-31 00:00:00\n", - "Selling LYV on 2010-10-31 00:00:00\n", - "Selling URI on 2010-10-31 00:00:00\n", - "Selling RCL on 2010-10-31 00:00:00\n", - "Selling BLDR on 2010-10-31 00:00:00\n", - "Buying NFLX on 2010-11-30 00:00:00\n", - "Buying EW on 2010-11-30 00:00:00\n", - "Buying CLX on 2010-11-30 00:00:00\n", - "Buying K on 2010-11-30 00:00:00\n", - "Buying DLTR on 2010-11-30 00:00:00\n", - "Buying AVGO on 2010-11-30 00:00:00\n", - "Buying HRL on 2010-11-30 00:00:00\n", - "Buying KMB on 2010-11-30 00:00:00\n", - "Buying AZO on 2010-11-30 00:00:00\n", - "Buying DG on 2010-11-30 00:00:00\n", - "Buying REGN on 2010-11-30 00:00:00\n", - "Buying SJM on 2010-11-30 00:00:00\n", - "Buying PPL on 2010-11-30 00:00:00\n", - "Buying WMT on 2010-11-30 00:00:00\n", - "Buying CL on 2010-11-30 00:00:00\n", - "Buying CBOE on 2010-11-30 00:00:00\n", - "Buying AEP on 2010-11-30 00:00:00\n", - "Buying SO on 2010-11-30 00:00:00\n", - "Buying PCG on 2010-11-30 00:00:00\n", - "Buying TPL on 2010-11-30 00:00:00\n", - "Buying VRSK on 2010-11-30 00:00:00\n", - "Buying HPQ on 2010-11-30 00:00:00\n", - "Buying BR on 2010-11-30 00:00:00\n", - "Buying HSY on 2010-11-30 00:00:00\n", - "Buying ED on 2010-11-30 00:00:00\n", - "Buying HOLX on 2010-11-30 00:00:00\n", - "Buying CPB on 2010-11-30 00:00:00\n", - "Buying KR on 2010-11-30 00:00:00\n", - "Buying COST on 2010-11-30 00:00:00\n", - "Buying DUK on 2010-11-30 00:00:00\n", - "Buying FE on 2010-11-30 00:00:00\n", - "Buying ACN on 2010-11-30 00:00:00\n", - "Buying PEP on 2010-11-30 00:00:00\n", - "Buying FTNT on 2010-11-30 00:00:00\n", - "Buying MCD on 2010-11-30 00:00:00\n", - "Buying MNST on 2010-11-30 00:00:00\n", - "Buying AWK on 2010-11-30 00:00:00\n", - "Buying GIS on 2010-11-30 00:00:00\n", - "Buying LLY on 2010-11-30 00:00:00\n", - "Buying DLR on 2010-11-30 00:00:00\n", - "Buying ABT on 2010-11-30 00:00:00\n", - "Buying CRL on 2010-11-30 00:00:00\n", - "Buying CHD on 2010-11-30 00:00:00\n", - "Selling LRCX on 2010-11-30 00:00:00\n", - "Selling C on 2010-11-30 00:00:00\n", - "Selling IP on 2010-11-30 00:00:00\n", - "Selling EXR on 2010-11-30 00:00:00\n", - "Selling TDY on 2010-11-30 00:00:00\n", - "Selling HAL on 2010-11-30 00:00:00\n", - "Selling AFL on 2010-11-30 00:00:00\n", - "Selling MAS on 2010-11-30 00:00:00\n", - "Selling MET on 2010-11-30 00:00:00\n", - "Selling MHK on 2010-11-30 00:00:00\n", - "Selling HES on 2010-11-30 00:00:00\n", - "Selling BEN on 2010-11-30 00:00:00\n", - "Selling DD on 2010-11-30 00:00:00\n", - "Selling FICO on 2010-11-30 00:00:00\n", - "Selling IVZ on 2010-11-30 00:00:00\n", - "Selling STT on 2010-11-30 00:00:00\n", - "Selling KIM on 2010-11-30 00:00:00\n", - "Selling FITB on 2010-11-30 00:00:00\n", - "Selling BAC on 2010-11-30 00:00:00\n", - "Selling WFC on 2010-11-30 00:00:00\n", - "Selling WYNN on 2010-11-30 00:00:00\n", - "Selling CBRE on 2010-11-30 00:00:00\n", - "Selling PCAR on 2010-11-30 00:00:00\n", - "Selling HBAN on 2010-11-30 00:00:00\n", - "Selling NDSN on 2010-11-30 00:00:00\n", - "Selling LVS on 2010-11-30 00:00:00\n", - "Selling TXT on 2010-11-30 00:00:00\n", - "Selling MCO on 2010-11-30 00:00:00\n", - "Selling TROW on 2010-11-30 00:00:00\n", - "Selling HST on 2010-11-30 00:00:00\n", - "Selling STX on 2010-11-30 00:00:00\n", - "Selling HIG on 2010-11-30 00:00:00\n", - "Selling URI on 2010-11-30 00:00:00\n", - "Selling LYV on 2010-11-30 00:00:00\n", - "Selling JBL on 2010-11-30 00:00:00\n", - "Selling MGM on 2010-11-30 00:00:00\n", - "Selling PFG on 2010-11-30 00:00:00\n", - "Selling CE on 2010-11-30 00:00:00\n", - "Selling AXON on 2010-11-30 00:00:00\n", - "Selling MU on 2010-11-30 00:00:00\n", - "Selling FCX on 2010-11-30 00:00:00\n", - "Selling RCL on 2010-11-30 00:00:00\n", - "Selling BLDR on 2010-11-30 00:00:00\n", - "Buying NFLX on 2010-12-31 00:00:00\n", - "Buying K on 2010-12-31 00:00:00\n", - "Buying DG on 2010-12-31 00:00:00\n", - "Buying KR on 2010-12-31 00:00:00\n", - "Buying CPRT on 2010-12-31 00:00:00\n", - "Buying HRL on 2010-12-31 00:00:00\n", - "Buying TPL on 2010-12-31 00:00:00\n", - "Buying MNST on 2010-12-31 00:00:00\n", - "Buying CLX on 2010-12-31 00:00:00\n", - "Buying DPZ on 2010-12-31 00:00:00\n", - "Buying VRTX on 2010-12-31 00:00:00\n", - "Buying MPWR on 2010-12-31 00:00:00\n", - "Buying CBOE on 2010-12-31 00:00:00\n", - "Buying CRL on 2010-12-31 00:00:00\n", - "Buying DLTR on 2010-12-31 00:00:00\n", - "Buying DLR on 2010-12-31 00:00:00\n", - "Buying SJM on 2010-12-31 00:00:00\n", - "Buying KMB on 2010-12-31 00:00:00\n", - "Buying SO on 2010-12-31 00:00:00\n", - "Buying CMG on 2010-12-31 00:00:00\n", - "Buying GIS on 2010-12-31 00:00:00\n", - "Buying WMT on 2010-12-31 00:00:00\n", - "Buying HSY on 2010-12-31 00:00:00\n", - "Buying REGN on 2010-12-31 00:00:00\n", - "Buying AWK on 2010-12-31 00:00:00\n", - "Buying INTC on 2010-12-31 00:00:00\n", - "Buying EXC on 2010-12-31 00:00:00\n", - "Buying TJX on 2010-12-31 00:00:00\n", - "Buying FTNT on 2010-12-31 00:00:00\n", - "Buying ED on 2010-12-31 00:00:00\n", - "Buying LLY on 2010-12-31 00:00:00\n", - "Buying SHW on 2010-12-31 00:00:00\n", - "Buying WEC on 2010-12-31 00:00:00\n", - "Buying DUK on 2010-12-31 00:00:00\n", - "Buying MDLZ on 2010-12-31 00:00:00\n", - "Buying AEP on 2010-12-31 00:00:00\n", - "Buying AZO on 2010-12-31 00:00:00\n", - "Buying TDG on 2010-12-31 00:00:00\n", - "Buying CPB on 2010-12-31 00:00:00\n", - "Buying FE on 2010-12-31 00:00:00\n", - "Buying ORLY on 2010-12-31 00:00:00\n", - "Buying NRG on 2010-12-31 00:00:00\n", - "Buying PEP on 2010-12-31 00:00:00\n", - "Selling APH on 2010-12-31 00:00:00\n", - "Selling TFC on 2010-12-31 00:00:00\n", - "Selling FITB on 2010-12-31 00:00:00\n", - "Selling KIM on 2010-12-31 00:00:00\n", - "Selling STT on 2010-12-31 00:00:00\n", - "Selling HST on 2010-12-31 00:00:00\n", - "Selling SWKS on 2010-12-31 00:00:00\n", - "Selling BSX on 2010-12-31 00:00:00\n", - "Selling PLD on 2010-12-31 00:00:00\n", - "Selling RF on 2010-12-31 00:00:00\n", - "Selling AXON on 2010-12-31 00:00:00\n", - "Selling WYNN on 2010-12-31 00:00:00\n", - "Selling LEN on 2010-12-31 00:00:00\n", - "Selling TROW on 2010-12-31 00:00:00\n", - "Selling MGM on 2010-12-31 00:00:00\n", - "Selling VLO on 2010-12-31 00:00:00\n", - "Selling APA on 2010-12-31 00:00:00\n", - "Selling C on 2010-12-31 00:00:00\n", - "Selling DD on 2010-12-31 00:00:00\n", - "Selling WFC on 2010-12-31 00:00:00\n", - "Selling NDSN on 2010-12-31 00:00:00\n", - "Selling PCAR on 2010-12-31 00:00:00\n", - "Selling MAS on 2010-12-31 00:00:00\n", - "Selling IP on 2010-12-31 00:00:00\n", - "Selling AIG on 2010-12-31 00:00:00\n", - "Selling HES on 2010-12-31 00:00:00\n", - "Selling J on 2010-12-31 00:00:00\n", - "Selling HAL on 2010-12-31 00:00:00\n", - "Selling DHI on 2010-12-31 00:00:00\n", - "Selling PHM on 2010-12-31 00:00:00\n", - "Selling BLDR on 2010-12-31 00:00:00\n", - "Selling BAC on 2010-12-31 00:00:00\n", - "Selling VMC on 2010-12-31 00:00:00\n", - "Selling STX on 2010-12-31 00:00:00\n", - "Selling RCL on 2010-12-31 00:00:00\n", - "Selling JBL on 2010-12-31 00:00:00\n", - "Selling HIG on 2010-12-31 00:00:00\n", - "Selling LVS on 2010-12-31 00:00:00\n", - "Selling CE on 2010-12-31 00:00:00\n", - "Selling URI on 2010-12-31 00:00:00\n", - "Selling PFG on 2010-12-31 00:00:00\n", - "Selling MU on 2010-12-31 00:00:00\n", - "Selling FCX on 2010-12-31 00:00:00\n", - "Buying NFLX on 2011-01-31 00:00:00\n", - "Buying DG on 2011-01-31 00:00:00\n", - "Buying KR on 2011-01-31 00:00:00\n", - "Buying K on 2011-01-31 00:00:00\n", - "Buying DLTR on 2011-01-31 00:00:00\n", - "Buying TPL on 2011-01-31 00:00:00\n", - "Buying CPRT on 2011-01-31 00:00:00\n", - "Buying HRL on 2011-01-31 00:00:00\n", - "Buying CLX on 2011-01-31 00:00:00\n", - "Buying KMB on 2011-01-31 00:00:00\n", - "Buying SJM on 2011-01-31 00:00:00\n", - "Buying TJX on 2011-01-31 00:00:00\n", - "Buying HSY on 2011-01-31 00:00:00\n", - "Buying ERIE on 2011-01-31 00:00:00\n", - "Buying CBOE on 2011-01-31 00:00:00\n", - "Buying GIS on 2011-01-31 00:00:00\n", - "Buying CPB on 2011-01-31 00:00:00\n", - "Buying DLR on 2011-01-31 00:00:00\n", - "Buying CL on 2011-01-31 00:00:00\n", - "Buying MDLZ on 2011-01-31 00:00:00\n", - "Buying SO on 2011-01-31 00:00:00\n", - "Buying MNST on 2011-01-31 00:00:00\n", - "Buying WMT on 2011-01-31 00:00:00\n", - "Buying ED on 2011-01-31 00:00:00\n", - "Buying CRL on 2011-01-31 00:00:00\n", - "Buying HAS on 2011-01-31 00:00:00\n", - "Buying ABT on 2011-01-31 00:00:00\n", - "Buying AZO on 2011-01-31 00:00:00\n", - "Buying SYY on 2011-01-31 00:00:00\n", - "Buying D on 2011-01-31 00:00:00\n", - "Buying DVA on 2011-01-31 00:00:00\n", - "Buying WEC on 2011-01-31 00:00:00\n", - "Buying MO on 2011-01-31 00:00:00\n", - "Buying MPWR on 2011-01-31 00:00:00\n", - "Buying NRG on 2011-01-31 00:00:00\n", - "Buying DUK on 2011-01-31 00:00:00\n", - "Buying MDT on 2011-01-31 00:00:00\n", - "Buying EXC on 2011-01-31 00:00:00\n", - "Buying JNJ on 2011-01-31 00:00:00\n", - "Buying PG on 2011-01-31 00:00:00\n", - "Buying WM on 2011-01-31 00:00:00\n", - "Buying NEE on 2011-01-31 00:00:00\n", - "Buying TDG on 2011-01-31 00:00:00\n", - "Selling LRCX on 2011-01-31 00:00:00\n", - "Selling KEY on 2011-01-31 00:00:00\n", - "Selling C on 2011-01-31 00:00:00\n", - "Selling NDSN on 2011-01-31 00:00:00\n", - "Selling BWA on 2011-01-31 00:00:00\n", - "Selling WFC on 2011-01-31 00:00:00\n", - "Selling HST on 2011-01-31 00:00:00\n", - "Selling MET on 2011-01-31 00:00:00\n", - "Selling TROW on 2011-01-31 00:00:00\n", - "Selling MSCI on 2011-01-31 00:00:00\n", - "Selling PCAR on 2011-01-31 00:00:00\n", - "Selling NVDA on 2011-01-31 00:00:00\n", - "Selling NTAP on 2011-01-31 00:00:00\n", - "Selling LVS on 2011-01-31 00:00:00\n", - "Selling AIG on 2011-01-31 00:00:00\n", - "Selling IP on 2011-01-31 00:00:00\n", - "Selling STX on 2011-01-31 00:00:00\n", - "Selling VLO on 2011-01-31 00:00:00\n", - "Selling TFC on 2011-01-31 00:00:00\n", - "Selling STT on 2011-01-31 00:00:00\n", - "Selling RCL on 2011-01-31 00:00:00\n", - "Selling VMC on 2011-01-31 00:00:00\n", - "Selling LEN on 2011-01-31 00:00:00\n", - "Selling MS on 2011-01-31 00:00:00\n", - "Selling MGM on 2011-01-31 00:00:00\n", - "Selling CE on 2011-01-31 00:00:00\n", - "Selling URI on 2011-01-31 00:00:00\n", - "Selling DHI on 2011-01-31 00:00:00\n", - "Selling SWKS on 2011-01-31 00:00:00\n", - "Selling MAS on 2011-01-31 00:00:00\n", - "Selling HBAN on 2011-01-31 00:00:00\n", - "Selling BAC on 2011-01-31 00:00:00\n", - "Selling RF on 2011-01-31 00:00:00\n", - "Selling F on 2011-01-31 00:00:00\n", - "Selling J on 2011-01-31 00:00:00\n", - "Selling BLDR on 2011-01-31 00:00:00\n", - "Selling HIG on 2011-01-31 00:00:00\n", - "Selling NXPI on 2011-01-31 00:00:00\n", - "Selling JBL on 2011-01-31 00:00:00\n", - "Selling FCX on 2011-01-31 00:00:00\n", - "Selling PHM on 2011-01-31 00:00:00\n", - "Selling PFG on 2011-01-31 00:00:00\n", - "Selling MU on 2011-01-31 00:00:00\n", - "Buying KR on 2011-02-28 00:00:00\n", - "Buying MDLZ on 2011-02-28 00:00:00\n", - "Buying HSY on 2011-02-28 00:00:00\n", - "Buying GIS on 2011-02-28 00:00:00\n", - "Buying K on 2011-02-28 00:00:00\n", - "Buying CPB on 2011-02-28 00:00:00\n", - "Buying PEG on 2011-02-28 00:00:00\n", - "Buying PG on 2011-02-28 00:00:00\n", - "Buying KMB on 2011-02-28 00:00:00\n", - "Buying ABT on 2011-02-28 00:00:00\n", - "Buying CL on 2011-02-28 00:00:00\n", - "Buying HRL on 2011-02-28 00:00:00\n", - "Buying CHTR on 2011-02-28 00:00:00\n", - "Buying ERIE on 2011-02-28 00:00:00\n", - "Buying TJX on 2011-02-28 00:00:00\n", - "Buying MO on 2011-02-28 00:00:00\n", - "Buying SYY on 2011-02-28 00:00:00\n", - "Buying ED on 2011-02-28 00:00:00\n", - "Buying PM on 2011-02-28 00:00:00\n", - "Buying SO on 2011-02-28 00:00:00\n", - "Buying D on 2011-02-28 00:00:00\n", - "Buying DUK on 2011-02-28 00:00:00\n", - "Buying MKC on 2011-02-28 00:00:00\n", - "Buying FE on 2011-02-28 00:00:00\n", - "Buying SJM on 2011-02-28 00:00:00\n", - "Buying MCD on 2011-02-28 00:00:00\n", - "Buying KO on 2011-02-28 00:00:00\n", - "Buying PCG on 2011-02-28 00:00:00\n", - "Buying PPL on 2011-02-28 00:00:00\n", - "Buying VTR on 2011-02-28 00:00:00\n", - "Buying VRTX on 2011-02-28 00:00:00\n", - "Buying JNJ on 2011-02-28 00:00:00\n", - "Buying EA on 2011-02-28 00:00:00\n", - "Buying COP on 2011-02-28 00:00:00\n", - "Buying LMT on 2011-02-28 00:00:00\n", - "Buying BMY on 2011-02-28 00:00:00\n", - "Buying NEE on 2011-02-28 00:00:00\n", - "Buying SRE on 2011-02-28 00:00:00\n", - "Buying LH on 2011-02-28 00:00:00\n", - "Buying MA on 2011-02-28 00:00:00\n", - "Buying EXC on 2011-02-28 00:00:00\n", - "Buying CVX on 2011-02-28 00:00:00\n", - "Buying PEP on 2011-02-28 00:00:00\n", - "Selling BWA on 2011-02-28 00:00:00\n", - "Selling MET on 2011-02-28 00:00:00\n", - "Selling HST on 2011-02-28 00:00:00\n", - "Selling ADSK on 2011-02-28 00:00:00\n", - "Selling TROW on 2011-02-28 00:00:00\n", - "Selling FITB on 2011-02-28 00:00:00\n", - "Selling CNC on 2011-02-28 00:00:00\n", - "Selling MS on 2011-02-28 00:00:00\n", - "Selling LYV on 2011-02-28 00:00:00\n", - "Selling LRCX on 2011-02-28 00:00:00\n", - "Selling PRU on 2011-02-28 00:00:00\n", - "Selling ADBE on 2011-02-28 00:00:00\n", - "Selling RCL on 2011-02-28 00:00:00\n", - "Selling DHI on 2011-02-28 00:00:00\n", - "Selling ON on 2011-02-28 00:00:00\n", - "Selling A on 2011-02-28 00:00:00\n", - "Selling KEY on 2011-02-28 00:00:00\n", - "Selling VMC on 2011-02-28 00:00:00\n", - "Selling PFG on 2011-02-28 00:00:00\n", - "Selling CE on 2011-02-28 00:00:00\n", - "Selling WFC on 2011-02-28 00:00:00\n", - "Selling IPG on 2011-02-28 00:00:00\n", - "Selling VLO on 2011-02-28 00:00:00\n", - "Selling CCL on 2011-02-28 00:00:00\n", - "Selling BAC on 2011-02-28 00:00:00\n", - "Selling UAL on 2011-02-28 00:00:00\n", - "Selling MAS on 2011-02-28 00:00:00\n", - "Selling PHM on 2011-02-28 00:00:00\n", - "Selling SWKS on 2011-02-28 00:00:00\n", - "Selling LEN on 2011-02-28 00:00:00\n", - "Selling URI on 2011-02-28 00:00:00\n", - "Selling EXPD on 2011-02-28 00:00:00\n", - "Selling J on 2011-02-28 00:00:00\n", - "Selling HIG on 2011-02-28 00:00:00\n", - "Selling RF on 2011-02-28 00:00:00\n", - "Selling MGM on 2011-02-28 00:00:00\n", - "Selling LULU on 2011-02-28 00:00:00\n", - "Selling F on 2011-02-28 00:00:00\n", - "Selling MU on 2011-02-28 00:00:00\n", - "Selling NVDA on 2011-02-28 00:00:00\n", - "Selling JBL on 2011-02-28 00:00:00\n", - "Selling NXPI on 2011-02-28 00:00:00\n", - "Selling BLDR on 2011-02-28 00:00:00\n", - "Buying NFLX on 2011-03-31 00:00:00\n", - "Buying MDLZ on 2011-03-31 00:00:00\n", - "Buying SBAC on 2011-03-31 00:00:00\n", - "Buying HSY on 2011-03-31 00:00:00\n", - "Buying K on 2011-03-31 00:00:00\n", - "Buying CPB on 2011-03-31 00:00:00\n", - "Buying SYY on 2011-03-31 00:00:00\n", - "Buying FSLR on 2011-03-31 00:00:00\n", - "Buying KR on 2011-03-31 00:00:00\n", - "Buying CHTR on 2011-03-31 00:00:00\n", - "Buying GIS on 2011-03-31 00:00:00\n", - "Buying DLTR on 2011-03-31 00:00:00\n", - "Buying ERIE on 2011-03-31 00:00:00\n", - "Buying AMT on 2011-03-31 00:00:00\n", - "Buying BBY on 2011-03-31 00:00:00\n", - "Buying PG on 2011-03-31 00:00:00\n", - "Buying FE on 2011-03-31 00:00:00\n", - "Buying DUK on 2011-03-31 00:00:00\n", - "Buying TGT on 2011-03-31 00:00:00\n", - "Buying NEM on 2011-03-31 00:00:00\n", - "Buying ED on 2011-03-31 00:00:00\n", - "Buying MKC on 2011-03-31 00:00:00\n", - "Buying SO on 2011-03-31 00:00:00\n", - "Buying PPL on 2011-03-31 00:00:00\n", - "Buying KMB on 2011-03-31 00:00:00\n", - "Buying MCD on 2011-03-31 00:00:00\n", - "Buying ABT on 2011-03-31 00:00:00\n", - "Buying WMT on 2011-03-31 00:00:00\n", - "Buying TPL on 2011-03-31 00:00:00\n", - "Buying AZO on 2011-03-31 00:00:00\n", - "Buying EXPE on 2011-03-31 00:00:00\n", - "Buying DG on 2011-03-31 00:00:00\n", - "Buying CL on 2011-03-31 00:00:00\n", - "Buying SBUX on 2011-03-31 00:00:00\n", - "Buying UHS on 2011-03-31 00:00:00\n", - "Buying BIIB on 2011-03-31 00:00:00\n", - "Buying PM on 2011-03-31 00:00:00\n", - "Buying MO on 2011-03-31 00:00:00\n", - "Buying CMG on 2011-03-31 00:00:00\n", - "Buying JNJ on 2011-03-31 00:00:00\n", - "Buying KDP on 2011-03-31 00:00:00\n", - "Buying TRGP on 2011-03-31 00:00:00\n", - "Buying KO on 2011-03-31 00:00:00\n", - "Buying CAG on 2011-03-31 00:00:00\n", - "Selling PTC on 2011-03-31 00:00:00\n", - "Selling DXCM on 2011-03-31 00:00:00\n", - "Selling A on 2011-03-31 00:00:00\n", - "Selling WY on 2011-03-31 00:00:00\n", - "Selling BX on 2011-03-31 00:00:00\n", - "Selling PFG on 2011-03-31 00:00:00\n", - "Selling WYNN on 2011-03-31 00:00:00\n", - "Selling CBRE on 2011-03-31 00:00:00\n", - "Selling ETN on 2011-03-31 00:00:00\n", - "Selling HST on 2011-03-31 00:00:00\n", - "Selling BLK on 2011-03-31 00:00:00\n", - "Selling CNC on 2011-03-31 00:00:00\n", - "Selling KLAC on 2011-03-31 00:00:00\n", - "Selling STLD on 2011-03-31 00:00:00\n", - "Selling AMD on 2011-03-31 00:00:00\n", - "Selling PARA on 2011-03-31 00:00:00\n", - "Selling ALB on 2011-03-31 00:00:00\n", - "Selling SWKS on 2011-03-31 00:00:00\n", - "Selling CCL on 2011-03-31 00:00:00\n", - "Selling TROW on 2011-03-31 00:00:00\n", - "Selling MOS on 2011-03-31 00:00:00\n", - "Selling VMC on 2011-03-31 00:00:00\n", - "Selling IVZ on 2011-03-31 00:00:00\n", - "Selling EXPD on 2011-03-31 00:00:00\n", - "Selling LRCX on 2011-03-31 00:00:00\n", - "Selling FTNT on 2011-03-31 00:00:00\n", - "Selling TXT on 2011-03-31 00:00:00\n", - "Selling JBL on 2011-03-31 00:00:00\n", - "Selling J on 2011-03-31 00:00:00\n", - "Selling F on 2011-03-31 00:00:00\n", - "Selling CE on 2011-03-31 00:00:00\n", - "Selling URI on 2011-03-31 00:00:00\n", - "Selling TER on 2011-03-31 00:00:00\n", - "Selling RF on 2011-03-31 00:00:00\n", - "Selling RCL on 2011-03-31 00:00:00\n", - "Selling IPG on 2011-03-31 00:00:00\n", - "Selling MGM on 2011-03-31 00:00:00\n", - "Selling HIG on 2011-03-31 00:00:00\n", - "Selling LVS on 2011-03-31 00:00:00\n", - "Selling MU on 2011-03-31 00:00:00\n", - "Selling NVDA on 2011-03-31 00:00:00\n", - "Selling VLO on 2011-03-31 00:00:00\n", - "Selling NXPI on 2011-03-31 00:00:00\n", - "Selling BLDR on 2011-03-31 00:00:00\n", - "Buying NFLX on 2011-04-30 00:00:00\n", - "Buying SBAC on 2011-04-30 00:00:00\n", - "Buying FSLR on 2011-04-30 00:00:00\n", - "Buying KR on 2011-04-30 00:00:00\n", - "Buying MDLZ on 2011-04-30 00:00:00\n", - "Buying HSY on 2011-04-30 00:00:00\n", - "Buying EXPE on 2011-04-30 00:00:00\n", - "Buying DG on 2011-04-30 00:00:00\n", - "Buying CPB on 2011-04-30 00:00:00\n", - "Buying SYY on 2011-04-30 00:00:00\n", - "Buying BBY on 2011-04-30 00:00:00\n", - "Buying IRM on 2011-04-30 00:00:00\n", - "Buying NEM on 2011-04-30 00:00:00\n", - "Buying K on 2011-04-30 00:00:00\n", - "Buying PPL on 2011-04-30 00:00:00\n", - "Buying TGT on 2011-04-30 00:00:00\n", - "Buying CMG on 2011-04-30 00:00:00\n", - "Buying AZO on 2011-04-30 00:00:00\n", - "Buying FE on 2011-04-30 00:00:00\n", - "Buying GIS on 2011-04-30 00:00:00\n", - "Buying KDP on 2011-04-30 00:00:00\n", - "Buying SBUX on 2011-04-30 00:00:00\n", - "Buying AKAM on 2011-04-30 00:00:00\n", - "Buying WMT on 2011-04-30 00:00:00\n", - "Buying PEP on 2011-04-30 00:00:00\n", - "Buying DUK on 2011-04-30 00:00:00\n", - "Buying MCD on 2011-04-30 00:00:00\n", - "Buying PG on 2011-04-30 00:00:00\n", - "Buying CHTR on 2011-04-30 00:00:00\n", - "Buying KMB on 2011-04-30 00:00:00\n", - "Buying SO on 2011-04-30 00:00:00\n", - "Buying CAG on 2011-04-30 00:00:00\n", - "Buying PM on 2011-04-30 00:00:00\n", - "Buying CL on 2011-04-30 00:00:00\n", - "Buying ED on 2011-04-30 00:00:00\n", - "Buying ABT on 2011-04-30 00:00:00\n", - "Buying MO on 2011-04-30 00:00:00\n", - "Buying CLX on 2011-04-30 00:00:00\n", - "Buying MKC on 2011-04-30 00:00:00\n", - "Buying DLR on 2011-04-30 00:00:00\n", - "Buying AMGN on 2011-04-30 00:00:00\n", - "Buying LLY on 2011-04-30 00:00:00\n", - "Buying WTW on 2011-04-30 00:00:00\n", - "Buying KO on 2011-04-30 00:00:00\n", - "Selling CMI on 2011-04-30 00:00:00\n", - "Selling SWKS on 2011-04-30 00:00:00\n", - "Selling AMAT on 2011-04-30 00:00:00\n", - "Selling PCAR on 2011-04-30 00:00:00\n", - "Selling J on 2011-04-30 00:00:00\n", - "Selling RJF on 2011-04-30 00:00:00\n", - "Selling SLB on 2011-04-30 00:00:00\n", - "Selling TROW on 2011-04-30 00:00:00\n", - "Selling LRCX on 2011-04-30 00:00:00\n", - "Selling EXPD on 2011-04-30 00:00:00\n", - "Selling A on 2011-04-30 00:00:00\n", - "Selling STLD on 2011-04-30 00:00:00\n", - "Selling BWA on 2011-04-30 00:00:00\n", - "Selling WYNN on 2011-04-30 00:00:00\n", - "Selling ETN on 2011-04-30 00:00:00\n", - "Selling PARA on 2011-04-30 00:00:00\n", - "Selling BX on 2011-04-30 00:00:00\n", - "Selling APA on 2011-04-30 00:00:00\n", - "Selling AXON on 2011-04-30 00:00:00\n", - "Selling CAT on 2011-04-30 00:00:00\n", - "Selling WY on 2011-04-30 00:00:00\n", - "Selling MPWR on 2011-04-30 00:00:00\n", - "Selling AMD on 2011-04-30 00:00:00\n", - "Selling DD on 2011-04-30 00:00:00\n", - "Selling MGM on 2011-04-30 00:00:00\n", - "Selling TXT on 2011-04-30 00:00:00\n", - "Selling CNC on 2011-04-30 00:00:00\n", - "Selling FTNT on 2011-04-30 00:00:00\n", - "Selling LVS on 2011-04-30 00:00:00\n", - "Selling JBL on 2011-04-30 00:00:00\n", - "Selling ALB on 2011-04-30 00:00:00\n", - "Selling VMC on 2011-04-30 00:00:00\n", - "Selling RCL on 2011-04-30 00:00:00\n", - "Selling NVDA on 2011-04-30 00:00:00\n", - "Selling KLAC on 2011-04-30 00:00:00\n", - "Selling IVZ on 2011-04-30 00:00:00\n", - "Selling IPG on 2011-04-30 00:00:00\n", - "Selling CE on 2011-04-30 00:00:00\n", - "Selling BLDR on 2011-04-30 00:00:00\n", - "Selling TER on 2011-04-30 00:00:00\n", - "Selling HIG on 2011-04-30 00:00:00\n", - "Selling VLO on 2011-04-30 00:00:00\n", - "Selling MU on 2011-04-30 00:00:00\n", - "Selling NXPI on 2011-04-30 00:00:00\n", - "Buying UAL on 2011-05-31 00:00:00\n", - "Buying NFLX on 2011-05-31 00:00:00\n", - "Buying CMG on 2011-05-31 00:00:00\n", - "Buying SBAC on 2011-05-31 00:00:00\n", - "Buying IRM on 2011-05-31 00:00:00\n", - "Buying AMT on 2011-05-31 00:00:00\n", - "Buying KDP on 2011-05-31 00:00:00\n", - "Buying SBUX on 2011-05-31 00:00:00\n", - "Buying DAL on 2011-05-31 00:00:00\n", - "Buying DPZ on 2011-05-31 00:00:00\n", - "Buying LULU on 2011-05-31 00:00:00\n", - "Buying TGT on 2011-05-31 00:00:00\n", - "Buying CPB on 2011-05-31 00:00:00\n", - "Buying KR on 2011-05-31 00:00:00\n", - "Buying DRI on 2011-05-31 00:00:00\n", - "Buying DG on 2011-05-31 00:00:00\n", - "Buying MCD on 2011-05-31 00:00:00\n", - "Buying AZO on 2011-05-31 00:00:00\n", - "Buying BBY on 2011-05-31 00:00:00\n", - "Buying WMT on 2011-05-31 00:00:00\n", - "Buying K on 2011-05-31 00:00:00\n", - "Buying NKE on 2011-05-31 00:00:00\n", - "Buying CLX on 2011-05-31 00:00:00\n", - "Buying PPL on 2011-05-31 00:00:00\n", - "Buying GRMN on 2011-05-31 00:00:00\n", - "Buying MDLZ on 2011-05-31 00:00:00\n", - "Buying AKAM on 2011-05-31 00:00:00\n", - "Buying KMB on 2011-05-31 00:00:00\n", - "Buying ROST on 2011-05-31 00:00:00\n", - "Buying DLR on 2011-05-31 00:00:00\n", - "Buying HSY on 2011-05-31 00:00:00\n", - "Buying CVS on 2011-05-31 00:00:00\n", - "Buying VRSK on 2011-05-31 00:00:00\n", - "Buying NVR on 2011-05-31 00:00:00\n", - "Buying PG on 2011-05-31 00:00:00\n", - "Buying MO on 2011-05-31 00:00:00\n", - "Buying JCI on 2011-05-31 00:00:00\n", - "Buying ICE on 2011-05-31 00:00:00\n", - "Buying CAG on 2011-05-31 00:00:00\n", - "Buying SYK on 2011-05-31 00:00:00\n", - "Buying SO on 2011-05-31 00:00:00\n", - "Buying AEP on 2011-05-31 00:00:00\n", - "Buying ABT on 2011-05-31 00:00:00\n", - "Buying LLY on 2011-05-31 00:00:00\n", - "Selling MPWR on 2011-05-31 00:00:00\n", - "Selling WAT on 2011-05-31 00:00:00\n", - "Selling IVZ on 2011-05-31 00:00:00\n", - "Selling PFG on 2011-05-31 00:00:00\n", - "Selling URI on 2011-05-31 00:00:00\n", - "Selling PTC on 2011-05-31 00:00:00\n", - "Selling BWA on 2011-05-31 00:00:00\n", - "Selling REGN on 2011-05-31 00:00:00\n", - "Selling PCAR on 2011-05-31 00:00:00\n", - "Selling AMAT on 2011-05-31 00:00:00\n", - "Selling SCHW on 2011-05-31 00:00:00\n", - "Selling ORCL on 2011-05-31 00:00:00\n", - "Selling AES on 2011-05-31 00:00:00\n", - "Selling RJF on 2011-05-31 00:00:00\n", - "Selling AMD on 2011-05-31 00:00:00\n", - "Selling ADI on 2011-05-31 00:00:00\n", - "Selling CDNS on 2011-05-31 00:00:00\n", - "Selling CTRA on 2011-05-31 00:00:00\n", - "Selling KLAC on 2011-05-31 00:00:00\n", - "Selling CBRE on 2011-05-31 00:00:00\n", - "Selling FTNT on 2011-05-31 00:00:00\n", - "Selling DD on 2011-05-31 00:00:00\n", - "Selling MTD on 2011-05-31 00:00:00\n", - "Selling HES on 2011-05-31 00:00:00\n", - "Selling NVDA on 2011-05-31 00:00:00\n", - "Selling J on 2011-05-31 00:00:00\n", - "Selling CAT on 2011-05-31 00:00:00\n", - "Selling EQT on 2011-05-31 00:00:00\n", - "Selling SLB on 2011-05-31 00:00:00\n", - "Selling APA on 2011-05-31 00:00:00\n", - "Selling LVS on 2011-05-31 00:00:00\n", - "Selling ALB on 2011-05-31 00:00:00\n", - "Selling LYB on 2011-05-31 00:00:00\n", - "Selling WYNN on 2011-05-31 00:00:00\n", - "Selling HIG on 2011-05-31 00:00:00\n", - "Selling DXCM on 2011-05-31 00:00:00\n", - "Selling VLO on 2011-05-31 00:00:00\n", - "Selling BX on 2011-05-31 00:00:00\n", - "Selling TER on 2011-05-31 00:00:00\n", - "Selling CE on 2011-05-31 00:00:00\n", - "Selling NDSN on 2011-05-31 00:00:00\n", - "Selling MU on 2011-05-31 00:00:00\n", - "Selling NXPI on 2011-05-31 00:00:00\n", - "Selling BLDR on 2011-05-31 00:00:00\n", - "Buying UAL on 2011-06-30 00:00:00\n", - "Buying AZO on 2011-06-30 00:00:00\n", - "Buying KDP on 2011-06-30 00:00:00\n", - "Buying DGX on 2011-06-30 00:00:00\n", - "Buying EIX on 2011-06-30 00:00:00\n", - "Buying VRSK on 2011-06-30 00:00:00\n", - "Buying ABT on 2011-06-30 00:00:00\n", - "Buying PG on 2011-06-30 00:00:00\n", - "Buying CPB on 2011-06-30 00:00:00\n", - "Buying WBA on 2011-06-30 00:00:00\n", - "Buying EXC on 2011-06-30 00:00:00\n", - "Buying AEP on 2011-06-30 00:00:00\n", - "Buying MCD on 2011-06-30 00:00:00\n", - "Buying ED on 2011-06-30 00:00:00\n", - "Buying SO on 2011-06-30 00:00:00\n", - "Buying K on 2011-06-30 00:00:00\n", - "Buying XEL on 2011-06-30 00:00:00\n", - "Buying PPL on 2011-06-30 00:00:00\n", - "Buying HSY on 2011-06-30 00:00:00\n", - "Buying HII on 2011-06-30 00:00:00\n", - "Buying AIG on 2011-06-30 00:00:00\n", - "Buying MDLZ on 2011-06-30 00:00:00\n", - "Buying MO on 2011-06-30 00:00:00\n", - "Buying GRMN on 2011-06-30 00:00:00\n", - "Buying DUK on 2011-06-30 00:00:00\n", - "Buying PEP on 2011-06-30 00:00:00\n", - "Buying WMT on 2011-06-30 00:00:00\n", - "Buying NEE on 2011-06-30 00:00:00\n", - "Buying KMB on 2011-06-30 00:00:00\n", - "Buying WEC on 2011-06-30 00:00:00\n", - "Buying NVR on 2011-06-30 00:00:00\n", - "Buying KO on 2011-06-30 00:00:00\n", - "Buying ACGL on 2011-06-30 00:00:00\n", - "Buying KMI on 2011-06-30 00:00:00\n", - "Buying SBAC on 2011-06-30 00:00:00\n", - "Buying CMG on 2011-06-30 00:00:00\n", - "Buying DAL on 2011-06-30 00:00:00\n", - "Buying ORLY on 2011-06-30 00:00:00\n", - "Buying LMT on 2011-06-30 00:00:00\n", - "Buying CLX on 2011-06-30 00:00:00\n", - "Buying SYK on 2011-06-30 00:00:00\n", - "Buying AMGN on 2011-06-30 00:00:00\n", - "Buying CHTR on 2011-06-30 00:00:00\n", - "Buying TGT on 2011-06-30 00:00:00\n", - "Selling PRU on 2011-06-30 00:00:00\n", - "Selling PCAR on 2011-06-30 00:00:00\n", - "Selling IP on 2011-06-30 00:00:00\n", - "Selling SLB on 2011-06-30 00:00:00\n", - "Selling MOH on 2011-06-30 00:00:00\n", - "Selling FFIV on 2011-06-30 00:00:00\n", - "Selling HIG on 2011-06-30 00:00:00\n", - "Selling JNPR on 2011-06-30 00:00:00\n", - "Selling RJF on 2011-06-30 00:00:00\n", - "Selling ORCL on 2011-06-30 00:00:00\n", - "Selling JBL on 2011-06-30 00:00:00\n", - "Selling NVDA on 2011-06-30 00:00:00\n", - "Selling BWA on 2011-06-30 00:00:00\n", - "Selling SWKS on 2011-06-30 00:00:00\n", - "Selling EQT on 2011-06-30 00:00:00\n", - "Selling TER on 2011-06-30 00:00:00\n", - "Selling DOV on 2011-06-30 00:00:00\n", - "Selling WY on 2011-06-30 00:00:00\n", - "Selling HAL on 2011-06-30 00:00:00\n", - "Selling PFG on 2011-06-30 00:00:00\n", - "Selling MTD on 2011-06-30 00:00:00\n", - "Selling ALB on 2011-06-30 00:00:00\n", - "Selling J on 2011-06-30 00:00:00\n", - "Selling EBAY on 2011-06-30 00:00:00\n", - "Selling FSLR on 2011-06-30 00:00:00\n", - "Selling POOL on 2011-06-30 00:00:00\n", - "Selling CE on 2011-06-30 00:00:00\n", - "Selling TT on 2011-06-30 00:00:00\n", - "Selling BKR on 2011-06-30 00:00:00\n", - "Selling NDSN on 2011-06-30 00:00:00\n", - "Selling CAT on 2011-06-30 00:00:00\n", - "Selling HES on 2011-06-30 00:00:00\n", - "Selling FCX on 2011-06-30 00:00:00\n", - "Selling DXCM on 2011-06-30 00:00:00\n", - "Selling CBRE on 2011-06-30 00:00:00\n", - "Selling VLO on 2011-06-30 00:00:00\n", - "Selling CTRA on 2011-06-30 00:00:00\n", - "Selling CMI on 2011-06-30 00:00:00\n", - "Selling TSLA on 2011-06-30 00:00:00\n", - "Selling LYB on 2011-06-30 00:00:00\n", - "Selling NXPI on 2011-06-30 00:00:00\n", - "Selling MU on 2011-06-30 00:00:00\n", - "Selling URI on 2011-06-30 00:00:00\n", - "Selling BLDR on 2011-06-30 00:00:00\n", - "Buying MTCH on 2011-07-31 00:00:00\n", - "Buying CPB on 2011-07-31 00:00:00\n", - "Buying AZO on 2011-07-31 00:00:00\n", - "Buying EIX on 2011-07-31 00:00:00\n", - "Buying EXC on 2011-07-31 00:00:00\n", - "Buying ABT on 2011-07-31 00:00:00\n", - "Buying WBA on 2011-07-31 00:00:00\n", - "Buying PEP on 2011-07-31 00:00:00\n", - "Buying HII on 2011-07-31 00:00:00\n", - "Buying K on 2011-07-31 00:00:00\n", - "Buying VRSK on 2011-07-31 00:00:00\n", - "Buying SO on 2011-07-31 00:00:00\n", - "Buying KMI on 2011-07-31 00:00:00\n", - "Buying AEP on 2011-07-31 00:00:00\n", - "Buying CPAY on 2011-07-31 00:00:00\n", - "Buying VRTX on 2011-07-31 00:00:00\n", - "Buying DUK on 2011-07-31 00:00:00\n", - "Buying CLX on 2011-07-31 00:00:00\n", - "Buying PG on 2011-07-31 00:00:00\n", - "Buying MCD on 2011-07-31 00:00:00\n", - "Buying ED on 2011-07-31 00:00:00\n", - "Buying MO on 2011-07-31 00:00:00\n", - "Buying MDLZ on 2011-07-31 00:00:00\n", - "Buying KDP on 2011-07-31 00:00:00\n", - "Buying WTW on 2011-07-31 00:00:00\n", - "Buying PPL on 2011-07-31 00:00:00\n", - "Buying GIS on 2011-07-31 00:00:00\n", - "Buying XEL on 2011-07-31 00:00:00\n", - "Buying JNJ on 2011-07-31 00:00:00\n", - "Buying AJG on 2011-07-31 00:00:00\n", - "Buying ORLY on 2011-07-31 00:00:00\n", - "Buying WEC on 2011-07-31 00:00:00\n", - "Buying ETR on 2011-07-31 00:00:00\n", - "Buying BRO on 2011-07-31 00:00:00\n", - "Buying EVRG on 2011-07-31 00:00:00\n", - "Buying AMGN on 2011-07-31 00:00:00\n", - "Buying COR on 2011-07-31 00:00:00\n", - "Buying WMT on 2011-07-31 00:00:00\n", - "Buying TPL on 2011-07-31 00:00:00\n", - "Buying KMB on 2011-07-31 00:00:00\n", - "Buying NEE on 2011-07-31 00:00:00\n", - "Buying EW on 2011-07-31 00:00:00\n", - "Buying SRE on 2011-07-31 00:00:00\n", - "Buying HSY on 2011-07-31 00:00:00\n", - "Selling A on 2011-07-31 00:00:00\n", - "Selling MS on 2011-07-31 00:00:00\n", - "Selling PCAR on 2011-07-31 00:00:00\n", - "Selling WY on 2011-07-31 00:00:00\n", - "Selling BX on 2011-07-31 00:00:00\n", - "Selling CAT on 2011-07-31 00:00:00\n", - "Selling MTD on 2011-07-31 00:00:00\n", - "Selling WAB on 2011-07-31 00:00:00\n", - "Selling LYV on 2011-07-31 00:00:00\n", - "Selling SWKS on 2011-07-31 00:00:00\n", - "Selling IVZ on 2011-07-31 00:00:00\n", - "Selling J on 2011-07-31 00:00:00\n", - "Selling RF on 2011-07-31 00:00:00\n", - "Selling RJF on 2011-07-31 00:00:00\n", - "Selling ROK on 2011-07-31 00:00:00\n", - "Selling FSLR on 2011-07-31 00:00:00\n", - "Selling PFG on 2011-07-31 00:00:00\n", - "Selling BLK on 2011-07-31 00:00:00\n", - "Selling FCX on 2011-07-31 00:00:00\n", - "Selling ORCL on 2011-07-31 00:00:00\n", - "Selling NDAQ on 2011-07-31 00:00:00\n", - "Selling NVDA on 2011-07-31 00:00:00\n", - "Selling TSLA on 2011-07-31 00:00:00\n", - "Selling CE on 2011-07-31 00:00:00\n", - "Selling HES on 2011-07-31 00:00:00\n", - "Selling HAL on 2011-07-31 00:00:00\n", - "Selling NDSN on 2011-07-31 00:00:00\n", - "Selling TROW on 2011-07-31 00:00:00\n", - "Selling JBL on 2011-07-31 00:00:00\n", - "Selling PHM on 2011-07-31 00:00:00\n", - "Selling TER on 2011-07-31 00:00:00\n", - "Selling RCL on 2011-07-31 00:00:00\n", - "Selling CMI on 2011-07-31 00:00:00\n", - "Selling IPG on 2011-07-31 00:00:00\n", - "Selling CTRA on 2011-07-31 00:00:00\n", - "Selling MGM on 2011-07-31 00:00:00\n", - "Selling LYB on 2011-07-31 00:00:00\n", - "Selling VLO on 2011-07-31 00:00:00\n", - "Selling CBRE on 2011-07-31 00:00:00\n", - "Selling MU on 2011-07-31 00:00:00\n", - "Selling NXPI on 2011-07-31 00:00:00\n", - "Selling JNPR on 2011-07-31 00:00:00\n", - "Selling BLDR on 2011-07-31 00:00:00\n", - "Selling URI on 2011-07-31 00:00:00\n", - "Buying NEM on 2011-08-31 00:00:00\n", - "Buying SO on 2011-08-31 00:00:00\n", - "Buying CAG on 2011-08-31 00:00:00\n", - "Buying PG on 2011-08-31 00:00:00\n", - "Buying K on 2011-08-31 00:00:00\n", - "Buying GIS on 2011-08-31 00:00:00\n", - "Buying PCG on 2011-08-31 00:00:00\n", - "Buying KMB on 2011-08-31 00:00:00\n", - "Buying CL on 2011-08-31 00:00:00\n", - "Buying SYY on 2011-08-31 00:00:00\n", - "Buying PEP on 2011-08-31 00:00:00\n", - "Buying HII on 2011-08-31 00:00:00\n", - "Buying ED on 2011-08-31 00:00:00\n", - "Buying CPB on 2011-08-31 00:00:00\n", - "Buying AZO on 2011-08-31 00:00:00\n", - "Buying WMT on 2011-08-31 00:00:00\n", - "Buying MCD on 2011-08-31 00:00:00\n", - "Buying MDLZ on 2011-08-31 00:00:00\n", - "Buying DG on 2011-08-31 00:00:00\n", - "Buying ORLY on 2011-08-31 00:00:00\n", - "Buying DUK on 2011-08-31 00:00:00\n", - "Buying KR on 2011-08-31 00:00:00\n", - "Buying HSY on 2011-08-31 00:00:00\n", - "Buying JNJ on 2011-08-31 00:00:00\n", - "Buying D on 2011-08-31 00:00:00\n", - "Buying AMGN on 2011-08-31 00:00:00\n", - "Buying WBA on 2011-08-31 00:00:00\n", - "Buying GRMN on 2011-08-31 00:00:00\n", - "Buying MO on 2011-08-31 00:00:00\n", - "Buying T on 2011-08-31 00:00:00\n", - "Buying VRSK on 2011-08-31 00:00:00\n", - "Buying ABT on 2011-08-31 00:00:00\n", - "Buying PPL on 2011-08-31 00:00:00\n", - "Buying PM on 2011-08-31 00:00:00\n", - "Buying TPL on 2011-08-31 00:00:00\n", - "Buying XEL on 2011-08-31 00:00:00\n", - "Buying VZ on 2011-08-31 00:00:00\n", - "Buying EXC on 2011-08-31 00:00:00\n", - "Buying WEC on 2011-08-31 00:00:00\n", - "Buying NVR on 2011-08-31 00:00:00\n", - "Buying KO on 2011-08-31 00:00:00\n", - "Buying BMY on 2011-08-31 00:00:00\n", - "Buying ETR on 2011-08-31 00:00:00\n", - "Buying AEP on 2011-08-31 00:00:00\n", - "Selling RJF on 2011-08-31 00:00:00\n", - "Selling NVDA on 2011-08-31 00:00:00\n", - "Selling KEY on 2011-08-31 00:00:00\n", - "Selling TMUS on 2011-08-31 00:00:00\n", - "Selling FITB on 2011-08-31 00:00:00\n", - "Selling PRU on 2011-08-31 00:00:00\n", - "Selling JNPR on 2011-08-31 00:00:00\n", - "Selling ULTA on 2011-08-31 00:00:00\n", - "Selling KKR on 2011-08-31 00:00:00\n", - "Selling TXT on 2011-08-31 00:00:00\n", - "Selling TDG on 2011-08-31 00:00:00\n", - "Selling NDAQ on 2011-08-31 00:00:00\n", - "Selling ROK on 2011-08-31 00:00:00\n", - "Selling HAL on 2011-08-31 00:00:00\n", - "Selling ALB on 2011-08-31 00:00:00\n", - "Selling NDSN on 2011-08-31 00:00:00\n", - "Selling CBRE on 2011-08-31 00:00:00\n", - "Selling WMB on 2011-08-31 00:00:00\n", - "Selling MCO on 2011-08-31 00:00:00\n", - "Selling MS on 2011-08-31 00:00:00\n", - "Selling AMP on 2011-08-31 00:00:00\n", - "Selling PFG on 2011-08-31 00:00:00\n", - "Selling CMI on 2011-08-31 00:00:00\n", - "Selling A on 2011-08-31 00:00:00\n", - "Selling DXCM on 2011-08-31 00:00:00\n", - "Selling IPG on 2011-08-31 00:00:00\n", - "Selling DECK on 2011-08-31 00:00:00\n", - "Selling PARA on 2011-08-31 00:00:00\n", - "Selling BX on 2011-08-31 00:00:00\n", - "Selling VLO on 2011-08-31 00:00:00\n", - "Selling RCL on 2011-08-31 00:00:00\n", - "Selling MGM on 2011-08-31 00:00:00\n", - "Selling CE on 2011-08-31 00:00:00\n", - "Selling NXPI on 2011-08-31 00:00:00\n", - "Selling RF on 2011-08-31 00:00:00\n", - "Selling C on 2011-08-31 00:00:00\n", - "Selling MU on 2011-08-31 00:00:00\n", - "Selling JBL on 2011-08-31 00:00:00\n", - "Selling LYB on 2011-08-31 00:00:00\n", - "Selling IVZ on 2011-08-31 00:00:00\n", - "Selling BAC on 2011-08-31 00:00:00\n", - "Selling BLDR on 2011-08-31 00:00:00\n", - "Selling HIG on 2011-08-31 00:00:00\n", - "Selling URI on 2011-08-31 00:00:00\n", - "Buying NEM on 2011-09-30 00:00:00\n", - "Buying SO on 2011-09-30 00:00:00\n", - "Buying GIS on 2011-09-30 00:00:00\n", - "Buying CAG on 2011-09-30 00:00:00\n", - "Buying PEP on 2011-09-30 00:00:00\n", - "Buying KMB on 2011-09-30 00:00:00\n", - "Buying K on 2011-09-30 00:00:00\n", - "Buying ED on 2011-09-30 00:00:00\n", - "Buying PG on 2011-09-30 00:00:00\n", - "Buying PCG on 2011-09-30 00:00:00\n", - "Buying ORLY on 2011-09-30 00:00:00\n", - "Buying SYY on 2011-09-30 00:00:00\n", - "Buying AZO on 2011-09-30 00:00:00\n", - "Buying CPB on 2011-09-30 00:00:00\n", - "Buying WMT on 2011-09-30 00:00:00\n", - "Buying DUK on 2011-09-30 00:00:00\n", - "Buying PPL on 2011-09-30 00:00:00\n", - "Buying MDLZ on 2011-09-30 00:00:00\n", - "Buying DG on 2011-09-30 00:00:00\n", - "Buying MCD on 2011-09-30 00:00:00\n", - "Buying JNJ on 2011-09-30 00:00:00\n", - "Buying MO on 2011-09-30 00:00:00\n", - "Buying WBA on 2011-09-30 00:00:00\n", - "Buying T on 2011-09-30 00:00:00\n", - "Buying KR on 2011-09-30 00:00:00\n", - "Buying D on 2011-09-30 00:00:00\n", - "Buying HSY on 2011-09-30 00:00:00\n", - "Buying CL on 2011-09-30 00:00:00\n", - "Buying VZ on 2011-09-30 00:00:00\n", - "Buying EXC on 2011-09-30 00:00:00\n", - "Buying AMGN on 2011-09-30 00:00:00\n", - "Buying NVR on 2011-09-30 00:00:00\n", - "Buying VRSK on 2011-09-30 00:00:00\n", - "Buying ABT on 2011-09-30 00:00:00\n", - "Buying XEL on 2011-09-30 00:00:00\n", - "Buying HII on 2011-09-30 00:00:00\n", - "Buying KDP on 2011-09-30 00:00:00\n", - "Buying AEP on 2011-09-30 00:00:00\n", - "Buying DLTR on 2011-09-30 00:00:00\n", - "Buying BMY on 2011-09-30 00:00:00\n", - "Buying GRMN on 2011-09-30 00:00:00\n", - "Buying WEC on 2011-09-30 00:00:00\n", - "Buying SJM on 2011-09-30 00:00:00\n", - "Buying LLY on 2011-09-30 00:00:00\n", - "Selling ROK on 2011-09-30 00:00:00\n", - "Selling NVDA on 2011-09-30 00:00:00\n", - "Selling PHM on 2011-09-30 00:00:00\n", - "Selling MCO on 2011-09-30 00:00:00\n", - "Selling RJF on 2011-09-30 00:00:00\n", - "Selling NDAQ on 2011-09-30 00:00:00\n", - "Selling GNRC on 2011-09-30 00:00:00\n", - "Selling MET on 2011-09-30 00:00:00\n", - "Selling NDSN on 2011-09-30 00:00:00\n", - "Selling CBRE on 2011-09-30 00:00:00\n", - "Selling KKR on 2011-09-30 00:00:00\n", - "Selling TXT on 2011-09-30 00:00:00\n", - "Selling HAL on 2011-09-30 00:00:00\n", - "Selling VLO on 2011-09-30 00:00:00\n", - "Selling AMP on 2011-09-30 00:00:00\n", - "Selling PRU on 2011-09-30 00:00:00\n", - "Selling CMI on 2011-09-30 00:00:00\n", - "Selling HBAN on 2011-09-30 00:00:00\n", - "Selling ALB on 2011-09-30 00:00:00\n", - "Selling FITB on 2011-09-30 00:00:00\n", - "Selling AIG on 2011-09-30 00:00:00\n", - "Selling DD on 2011-09-30 00:00:00\n", - "Selling MGM on 2011-09-30 00:00:00\n", - "Selling KEY on 2011-09-30 00:00:00\n", - "Selling DXCM on 2011-09-30 00:00:00\n", - "Selling A on 2011-09-30 00:00:00\n", - "Selling RCL on 2011-09-30 00:00:00\n", - "Selling PFG on 2011-09-30 00:00:00\n", - "Selling MU on 2011-09-30 00:00:00\n", - "Selling PARA on 2011-09-30 00:00:00\n", - "Selling NXPI on 2011-09-30 00:00:00\n", - "Selling IPG on 2011-09-30 00:00:00\n", - "Selling JBL on 2011-09-30 00:00:00\n", - "Selling BX on 2011-09-30 00:00:00\n", - "Selling MS on 2011-09-30 00:00:00\n", - "Selling LYB on 2011-09-30 00:00:00\n", - "Selling C on 2011-09-30 00:00:00\n", - "Selling RF on 2011-09-30 00:00:00\n", - "Selling IVZ on 2011-09-30 00:00:00\n", - "Selling CE on 2011-09-30 00:00:00\n", - "Selling BLDR on 2011-09-30 00:00:00\n", - "Selling BAC on 2011-09-30 00:00:00\n", - "Selling HIG on 2011-09-30 00:00:00\n", - "Selling URI on 2011-09-30 00:00:00\n", - "Buying NEM on 2011-10-31 00:00:00\n", - "Buying SO on 2011-10-31 00:00:00\n", - "Buying GIS on 2011-10-31 00:00:00\n", - "Buying CAG on 2011-10-31 00:00:00\n", - "Buying KMB on 2011-10-31 00:00:00\n", - "Buying K on 2011-10-31 00:00:00\n", - "Buying ED on 2011-10-31 00:00:00\n", - "Buying HSY on 2011-10-31 00:00:00\n", - "Buying PG on 2011-10-31 00:00:00\n", - "Buying DG on 2011-10-31 00:00:00\n", - "Buying AZO on 2011-10-31 00:00:00\n", - "Buying CPB on 2011-10-31 00:00:00\n", - "Buying PEP on 2011-10-31 00:00:00\n", - "Buying DUK on 2011-10-31 00:00:00\n", - "Buying WMT on 2011-10-31 00:00:00\n", - "Buying PCG on 2011-10-31 00:00:00\n", - "Buying PPL on 2011-10-31 00:00:00\n", - "Buying SYY on 2011-10-31 00:00:00\n", - "Buying DLTR on 2011-10-31 00:00:00\n", - "Buying MO on 2011-10-31 00:00:00\n", - "Buying KDP on 2011-10-31 00:00:00\n", - "Buying D on 2011-10-31 00:00:00\n", - "Buying BMY on 2011-10-31 00:00:00\n", - "Buying ORLY on 2011-10-31 00:00:00\n", - "Buying WBA on 2011-10-31 00:00:00\n", - "Buying MDLZ on 2011-10-31 00:00:00\n", - "Buying MCD on 2011-10-31 00:00:00\n", - "Buying XEL on 2011-10-31 00:00:00\n", - "Buying VZ on 2011-10-31 00:00:00\n", - "Buying CL on 2011-10-31 00:00:00\n", - "Buying SJM on 2011-10-31 00:00:00\n", - "Buying LLY on 2011-10-31 00:00:00\n", - "Buying ABT on 2011-10-31 00:00:00\n", - "Buying EXC on 2011-10-31 00:00:00\n", - "Buying T on 2011-10-31 00:00:00\n", - "Buying CHD on 2011-10-31 00:00:00\n", - "Buying AEP on 2011-10-31 00:00:00\n", - "Buying JNJ on 2011-10-31 00:00:00\n", - "Buying KO on 2011-10-31 00:00:00\n", - "Buying KR on 2011-10-31 00:00:00\n", - "Buying CLX on 2011-10-31 00:00:00\n", - "Buying WEC on 2011-10-31 00:00:00\n", - "Buying PM on 2011-10-31 00:00:00\n", - "Buying VRSK on 2011-10-31 00:00:00\n", - "Selling CMI on 2011-10-31 00:00:00\n", - "Selling FCX on 2011-10-31 00:00:00\n", - "Selling AFL on 2011-10-31 00:00:00\n", - "Selling ROK on 2011-10-31 00:00:00\n", - "Selling ALB on 2011-10-31 00:00:00\n", - "Selling TROW on 2011-10-31 00:00:00\n", - "Selling JBL on 2011-10-31 00:00:00\n", - "Selling NDSN on 2011-10-31 00:00:00\n", - "Selling HST on 2011-10-31 00:00:00\n", - "Selling MPC on 2011-10-31 00:00:00\n", - "Selling STLD on 2011-10-31 00:00:00\n", - "Selling FITB on 2011-10-31 00:00:00\n", - "Selling PARA on 2011-10-31 00:00:00\n", - "Selling VLO on 2011-10-31 00:00:00\n", - "Selling HBAN on 2011-10-31 00:00:00\n", - "Selling RJF on 2011-10-31 00:00:00\n", - "Selling IPG on 2011-10-31 00:00:00\n", - "Selling MGM on 2011-10-31 00:00:00\n", - "Selling NXPI on 2011-10-31 00:00:00\n", - "Selling KEY on 2011-10-31 00:00:00\n", - "Selling HAL on 2011-10-31 00:00:00\n", - "Selling CBRE on 2011-10-31 00:00:00\n", - "Selling MU on 2011-10-31 00:00:00\n", - "Selling DD on 2011-10-31 00:00:00\n", - "Selling MET on 2011-10-31 00:00:00\n", - "Selling AIG on 2011-10-31 00:00:00\n", - "Selling KKR on 2011-10-31 00:00:00\n", - "Selling BX on 2011-10-31 00:00:00\n", - "Selling RCL on 2011-10-31 00:00:00\n", - "Selling PRU on 2011-10-31 00:00:00\n", - "Selling AMP on 2011-10-31 00:00:00\n", - "Selling PHM on 2011-10-31 00:00:00\n", - "Selling A on 2011-10-31 00:00:00\n", - "Selling PFG on 2011-10-31 00:00:00\n", - "Selling LYB on 2011-10-31 00:00:00\n", - "Selling CE on 2011-10-31 00:00:00\n", - "Selling IVZ on 2011-10-31 00:00:00\n", - "Selling C on 2011-10-31 00:00:00\n", - "Selling URI on 2011-10-31 00:00:00\n", - "Selling MS on 2011-10-31 00:00:00\n", - "Selling BAC on 2011-10-31 00:00:00\n", - "Selling RF on 2011-10-31 00:00:00\n", - "Selling HIG on 2011-10-31 00:00:00\n", - "Selling BLDR on 2011-10-31 00:00:00\n", - "Buying GIS on 2011-11-30 00:00:00\n", - "Buying SO on 2011-11-30 00:00:00\n", - "Buying DLTR on 2011-11-30 00:00:00\n", - "Buying K on 2011-11-30 00:00:00\n", - "Buying CLX on 2011-11-30 00:00:00\n", - "Buying HSY on 2011-11-30 00:00:00\n", - "Buying CPB on 2011-11-30 00:00:00\n", - "Buying DUK on 2011-11-30 00:00:00\n", - "Buying PEP on 2011-11-30 00:00:00\n", - "Buying KMB on 2011-11-30 00:00:00\n", - "Buying ED on 2011-11-30 00:00:00\n", - "Buying KMI on 2011-11-30 00:00:00\n", - "Buying AZO on 2011-11-30 00:00:00\n", - "Buying MO on 2011-11-30 00:00:00\n", - "Buying WMT on 2011-11-30 00:00:00\n", - "Buying CAG on 2011-11-30 00:00:00\n", - "Buying AWK on 2011-11-30 00:00:00\n", - "Buying DG on 2011-11-30 00:00:00\n", - "Buying COST on 2011-11-30 00:00:00\n", - "Buying KDP on 2011-11-30 00:00:00\n", - "Buying PPL on 2011-11-30 00:00:00\n", - "Buying REGN on 2011-11-30 00:00:00\n", - "Buying CHD on 2011-11-30 00:00:00\n", - "Buying PCG on 2011-11-30 00:00:00\n", - "Buying SJM on 2011-11-30 00:00:00\n", - "Buying LMT on 2011-11-30 00:00:00\n", - "Buying D on 2011-11-30 00:00:00\n", - "Buying BMY on 2011-11-30 00:00:00\n", - "Buying ORLY on 2011-11-30 00:00:00\n", - "Buying ULTA on 2011-11-30 00:00:00\n", - "Buying PG on 2011-11-30 00:00:00\n", - "Buying WBA on 2011-11-30 00:00:00\n", - "Buying VZ on 2011-11-30 00:00:00\n", - "Buying EVRG on 2011-11-30 00:00:00\n", - "Buying XEL on 2011-11-30 00:00:00\n", - "Buying MDLZ on 2011-11-30 00:00:00\n", - "Buying EXC on 2011-11-30 00:00:00\n", - "Buying ABT on 2011-11-30 00:00:00\n", - "Buying MCD on 2011-11-30 00:00:00\n", - "Buying ETR on 2011-11-30 00:00:00\n", - "Buying AEP on 2011-11-30 00:00:00\n", - "Buying LLY on 2011-11-30 00:00:00\n", - "Buying NEE on 2011-11-30 00:00:00\n", - "Buying WEC on 2011-11-30 00:00:00\n", - "Selling APA on 2011-11-30 00:00:00\n", - "Selling ROK on 2011-11-30 00:00:00\n", - "Selling HES on 2011-11-30 00:00:00\n", - "Selling LYB on 2011-11-30 00:00:00\n", - "Selling MGM on 2011-11-30 00:00:00\n", - "Selling AFL on 2011-11-30 00:00:00\n", - "Selling HBAN on 2011-11-30 00:00:00\n", - "Selling EOG on 2011-11-30 00:00:00\n", - "Selling PLD on 2011-11-30 00:00:00\n", - "Selling BEN on 2011-11-30 00:00:00\n", - "Selling BKR on 2011-11-30 00:00:00\n", - "Selling TROW on 2011-11-30 00:00:00\n", - "Selling JPM on 2011-11-30 00:00:00\n", - "Selling PRU on 2011-11-30 00:00:00\n", - "Selling HST on 2011-11-30 00:00:00\n", - "Selling PTC on 2011-11-30 00:00:00\n", - "Selling RJF on 2011-11-30 00:00:00\n", - "Selling BX on 2011-11-30 00:00:00\n", - "Selling AMP on 2011-11-30 00:00:00\n", - "Selling AMD on 2011-11-30 00:00:00\n", - "Selling NXPI on 2011-11-30 00:00:00\n", - "Selling FICO on 2011-11-30 00:00:00\n", - "Selling DD on 2011-11-30 00:00:00\n", - "Selling KKR on 2011-11-30 00:00:00\n", - "Selling A on 2011-11-30 00:00:00\n", - "Selling URI on 2011-11-30 00:00:00\n", - "Selling FCX on 2011-11-30 00:00:00\n", - "Selling CBRE on 2011-11-30 00:00:00\n", - "Selling HIG on 2011-11-30 00:00:00\n", - "Selling STLD on 2011-11-30 00:00:00\n", - "Selling PFG on 2011-11-30 00:00:00\n", - "Selling RCL on 2011-11-30 00:00:00\n", - "Selling HAL on 2011-11-30 00:00:00\n", - "Selling AIG on 2011-11-30 00:00:00\n", - "Selling IVZ on 2011-11-30 00:00:00\n", - "Selling MET on 2011-11-30 00:00:00\n", - "Selling BAC on 2011-11-30 00:00:00\n", - "Selling CE on 2011-11-30 00:00:00\n", - "Selling PHM on 2011-11-30 00:00:00\n", - "Selling C on 2011-11-30 00:00:00\n", - "Selling FSLR on 2011-11-30 00:00:00\n", - "Selling RF on 2011-11-30 00:00:00\n", - "Selling MS on 2011-11-30 00:00:00\n", - "Selling BLDR on 2011-11-30 00:00:00\n", - "Buying CLX on 2011-12-31 00:00:00\n", - "Buying HSY on 2011-12-31 00:00:00\n", - "Buying DLTR on 2011-12-31 00:00:00\n", - "Buying DG on 2011-12-31 00:00:00\n", - "Buying K on 2011-12-31 00:00:00\n", - "Buying KMI on 2011-12-31 00:00:00\n", - "Buying AZO on 2011-12-31 00:00:00\n", - "Buying SO on 2011-12-31 00:00:00\n", - "Buying GIS on 2011-12-31 00:00:00\n", - "Buying MO on 2011-12-31 00:00:00\n", - "Buying CHD on 2011-12-31 00:00:00\n", - "Buying VRTX on 2011-12-31 00:00:00\n", - "Buying CPB on 2011-12-31 00:00:00\n", - "Buying KMB on 2011-12-31 00:00:00\n", - "Buying WMT on 2011-12-31 00:00:00\n", - "Buying PEP on 2011-12-31 00:00:00\n", - "Buying AWK on 2011-12-31 00:00:00\n", - "Buying DUK on 2011-12-31 00:00:00\n", - "Buying MCD on 2011-12-31 00:00:00\n", - "Buying COST on 2011-12-31 00:00:00\n", - "Buying KDP on 2011-12-31 00:00:00\n", - "Buying KO on 2011-12-31 00:00:00\n", - "Buying ED on 2011-12-31 00:00:00\n", - "Buying LMT on 2011-12-31 00:00:00\n", - "Buying ABT on 2011-12-31 00:00:00\n", - "Buying PPL on 2011-12-31 00:00:00\n", - "Buying SJM on 2011-12-31 00:00:00\n", - "Buying CL on 2011-12-31 00:00:00\n", - "Buying PCG on 2011-12-31 00:00:00\n", - "Buying PG on 2011-12-31 00:00:00\n", - "Buying TGT on 2011-12-31 00:00:00\n", - "Buying BMY on 2011-12-31 00:00:00\n", - "Buying CAG on 2011-12-31 00:00:00\n", - "Buying LLY on 2011-12-31 00:00:00\n", - "Buying GRMN on 2011-12-31 00:00:00\n", - "Buying REGN on 2011-12-31 00:00:00\n", - "Buying MDLZ on 2011-12-31 00:00:00\n", - "Buying ETR on 2011-12-31 00:00:00\n", - "Buying D on 2011-12-31 00:00:00\n", - "Buying AMGN on 2011-12-31 00:00:00\n", - "Buying EXC on 2011-12-31 00:00:00\n", - "Buying SHW on 2011-12-31 00:00:00\n", - "Buying EVRG on 2011-12-31 00:00:00\n", - "Buying PM on 2011-12-31 00:00:00\n", - "Selling GS on 2011-12-31 00:00:00\n", - "Selling JNPR on 2011-12-31 00:00:00\n", - "Selling LEN on 2011-12-31 00:00:00\n", - "Selling ADSK on 2011-12-31 00:00:00\n", - "Selling APA on 2011-12-31 00:00:00\n", - "Selling ROK on 2011-12-31 00:00:00\n", - "Selling HST on 2011-12-31 00:00:00\n", - "Selling WYNN on 2011-12-31 00:00:00\n", - "Selling BLK on 2011-12-31 00:00:00\n", - "Selling PRU on 2011-12-31 00:00:00\n", - "Selling TER on 2011-12-31 00:00:00\n", - "Selling BK on 2011-12-31 00:00:00\n", - "Selling FICO on 2011-12-31 00:00:00\n", - "Selling BX on 2011-12-31 00:00:00\n", - "Selling JPM on 2011-12-31 00:00:00\n", - "Selling BKR on 2011-12-31 00:00:00\n", - "Selling SCHW on 2011-12-31 00:00:00\n", - "Selling RJF on 2011-12-31 00:00:00\n", - "Selling AMD on 2011-12-31 00:00:00\n", - "Selling HAL on 2011-12-31 00:00:00\n", - "Selling TROW on 2011-12-31 00:00:00\n", - "Selling HIG on 2011-12-31 00:00:00\n", - "Selling STLD on 2011-12-31 00:00:00\n", - "Selling FCX on 2011-12-31 00:00:00\n", - "Selling MAS on 2011-12-31 00:00:00\n", - "Selling IVZ on 2011-12-31 00:00:00\n", - "Selling A on 2011-12-31 00:00:00\n", - "Selling MET on 2011-12-31 00:00:00\n", - "Selling CE on 2011-12-31 00:00:00\n", - "Selling NXPI on 2011-12-31 00:00:00\n", - "Selling PTC on 2011-12-31 00:00:00\n", - "Selling PFG on 2011-12-31 00:00:00\n", - "Selling AMP on 2011-12-31 00:00:00\n", - "Selling AIG on 2011-12-31 00:00:00\n", - "Selling BAC on 2011-12-31 00:00:00\n", - "Selling RCL on 2011-12-31 00:00:00\n", - "Selling CBRE on 2011-12-31 00:00:00\n", - "Selling KKR on 2011-12-31 00:00:00\n", - "Selling C on 2011-12-31 00:00:00\n", - "Selling PHM on 2011-12-31 00:00:00\n", - "Selling RF on 2011-12-31 00:00:00\n", - "Selling MS on 2011-12-31 00:00:00\n", - "Selling BLDR on 2011-12-31 00:00:00\n", - "Selling FSLR on 2011-12-31 00:00:00\n", - "Buying CLX on 2012-01-31 00:00:00\n", - "Buying K on 2012-01-31 00:00:00\n", - "Buying HSY on 2012-01-31 00:00:00\n", - "Buying KMI on 2012-01-31 00:00:00\n", - "Buying DG on 2012-01-31 00:00:00\n", - "Buying DLTR on 2012-01-31 00:00:00\n", - "Buying SO on 2012-01-31 00:00:00\n", - "Buying AZO on 2012-01-31 00:00:00\n", - "Buying CHD on 2012-01-31 00:00:00\n", - "Buying MO on 2012-01-31 00:00:00\n", - "Buying AWK on 2012-01-31 00:00:00\n", - "Buying TGT on 2012-01-31 00:00:00\n", - "Buying WTW on 2012-01-31 00:00:00\n", - "Buying GIS on 2012-01-31 00:00:00\n", - "Buying MCD on 2012-01-31 00:00:00\n", - "Buying CPB on 2012-01-31 00:00:00\n", - "Buying WMT on 2012-01-31 00:00:00\n", - "Buying ED on 2012-01-31 00:00:00\n", - "Buying KMB on 2012-01-31 00:00:00\n", - "Buying CL on 2012-01-31 00:00:00\n", - "Buying PCG on 2012-01-31 00:00:00\n", - "Buying TSN on 2012-01-31 00:00:00\n", - "Buying TPL on 2012-01-31 00:00:00\n", - "Buying DUK on 2012-01-31 00:00:00\n", - "Buying VRTX on 2012-01-31 00:00:00\n", - "Buying PEP on 2012-01-31 00:00:00\n", - "Buying COST on 2012-01-31 00:00:00\n", - "Buying EXC on 2012-01-31 00:00:00\n", - "Buying ORLY on 2012-01-31 00:00:00\n", - "Buying KO on 2012-01-31 00:00:00\n", - "Buying PPL on 2012-01-31 00:00:00\n", - "Buying PM on 2012-01-31 00:00:00\n", - "Buying AMGN on 2012-01-31 00:00:00\n", - "Buying WEC on 2012-01-31 00:00:00\n", - "Buying VRSK on 2012-01-31 00:00:00\n", - "Buying KDP on 2012-01-31 00:00:00\n", - "Buying ACGL on 2012-01-31 00:00:00\n", - "Buying LOW on 2012-01-31 00:00:00\n", - "Buying CBOE on 2012-01-31 00:00:00\n", - "Buying NEE on 2012-01-31 00:00:00\n", - "Buying GRMN on 2012-01-31 00:00:00\n", - "Buying D on 2012-01-31 00:00:00\n", - "Buying XEL on 2012-01-31 00:00:00\n", - "Buying LNT on 2012-01-31 00:00:00\n", - "Selling EMN on 2012-01-31 00:00:00\n", - "Selling MPWR on 2012-01-31 00:00:00\n", - "Selling PTC on 2012-01-31 00:00:00\n", - "Selling BK on 2012-01-31 00:00:00\n", - "Selling AMP on 2012-01-31 00:00:00\n", - "Selling SLB on 2012-01-31 00:00:00\n", - "Selling FFIV on 2012-01-31 00:00:00\n", - "Selling MET on 2012-01-31 00:00:00\n", - "Selling WYNN on 2012-01-31 00:00:00\n", - "Selling APA on 2012-01-31 00:00:00\n", - "Selling IVZ on 2012-01-31 00:00:00\n", - "Selling GS on 2012-01-31 00:00:00\n", - "Selling SCHW on 2012-01-31 00:00:00\n", - "Selling BKR on 2012-01-31 00:00:00\n", - "Selling CE on 2012-01-31 00:00:00\n", - "Selling TT on 2012-01-31 00:00:00\n", - "Selling RJF on 2012-01-31 00:00:00\n", - "Selling A on 2012-01-31 00:00:00\n", - "Selling ON on 2012-01-31 00:00:00\n", - "Selling HIG on 2012-01-31 00:00:00\n", - "Selling HAL on 2012-01-31 00:00:00\n", - "Selling JPM on 2012-01-31 00:00:00\n", - "Selling PFG on 2012-01-31 00:00:00\n", - "Selling ADSK on 2012-01-31 00:00:00\n", - "Selling BLDR on 2012-01-31 00:00:00\n", - "Selling TER on 2012-01-31 00:00:00\n", - "Selling BAC on 2012-01-31 00:00:00\n", - "Selling FICO on 2012-01-31 00:00:00\n", - "Selling JNPR on 2012-01-31 00:00:00\n", - "Selling FCX on 2012-01-31 00:00:00\n", - "Selling CBRE on 2012-01-31 00:00:00\n", - "Selling NXPI on 2012-01-31 00:00:00\n", - "Selling KKR on 2012-01-31 00:00:00\n", - "Selling STLD on 2012-01-31 00:00:00\n", - "Selling RCL on 2012-01-31 00:00:00\n", - "Selling AIG on 2012-01-31 00:00:00\n", - "Selling AMD on 2012-01-31 00:00:00\n", - "Selling RF on 2012-01-31 00:00:00\n", - "Selling SWKS on 2012-01-31 00:00:00\n", - "Selling FSLR on 2012-01-31 00:00:00\n", - "Selling MAS on 2012-01-31 00:00:00\n", - "Selling PHM on 2012-01-31 00:00:00\n", - "Selling C on 2012-01-31 00:00:00\n", - "Selling MS on 2012-01-31 00:00:00\n", - "Buying HSY on 2012-02-29 00:00:00\n", - "Buying DG on 2012-02-29 00:00:00\n", - "Buying KDP on 2012-02-29 00:00:00\n", - "Buying MO on 2012-02-29 00:00:00\n", - "Buying GIS on 2012-02-29 00:00:00\n", - "Buying PPL on 2012-02-29 00:00:00\n", - "Buying SO on 2012-02-29 00:00:00\n", - "Buying DLTR on 2012-02-29 00:00:00\n", - "Buying CHD on 2012-02-29 00:00:00\n", - "Buying EW on 2012-02-29 00:00:00\n", - "Buying AZO on 2012-02-29 00:00:00\n", - "Buying SJM on 2012-02-29 00:00:00\n", - "Buying MCD on 2012-02-29 00:00:00\n", - "Buying ED on 2012-02-29 00:00:00\n", - "Buying LLY on 2012-02-29 00:00:00\n", - "Buying CL on 2012-02-29 00:00:00\n", - "Buying MSI on 2012-02-29 00:00:00\n", - "Buying CBOE on 2012-02-29 00:00:00\n", - "Buying EXC on 2012-02-29 00:00:00\n", - "Buying KMB on 2012-02-29 00:00:00\n", - "Buying VMC on 2012-02-29 00:00:00\n", - "Buying TGT on 2012-02-29 00:00:00\n", - "Buying BMY on 2012-02-29 00:00:00\n", - "Buying CPB on 2012-02-29 00:00:00\n", - "Buying NEE on 2012-02-29 00:00:00\n", - "Buying YUM on 2012-02-29 00:00:00\n", - "Buying ES on 2012-02-29 00:00:00\n", - "Buying K on 2012-02-29 00:00:00\n", - "Buying ABT on 2012-02-29 00:00:00\n", - "Buying DUK on 2012-02-29 00:00:00\n", - "Buying AWK on 2012-02-29 00:00:00\n", - "Buying CLX on 2012-02-29 00:00:00\n", - "Buying KO on 2012-02-29 00:00:00\n", - "Buying CPRT on 2012-02-29 00:00:00\n", - "Buying PG on 2012-02-29 00:00:00\n", - "Buying VRSK on 2012-02-29 00:00:00\n", - "Buying VRTX on 2012-02-29 00:00:00\n", - "Buying WEC on 2012-02-29 00:00:00\n", - "Buying VZ on 2012-02-29 00:00:00\n", - "Buying GRMN on 2012-02-29 00:00:00\n", - "Buying PM on 2012-02-29 00:00:00\n", - "Buying MRK on 2012-02-29 00:00:00\n", - "Buying FE on 2012-02-29 00:00:00\n", - "Buying KR on 2012-02-29 00:00:00\n", - "Selling CMI on 2012-02-29 00:00:00\n", - "Selling JBL on 2012-02-29 00:00:00\n", - "Selling PFG on 2012-02-29 00:00:00\n", - "Selling IVZ on 2012-02-29 00:00:00\n", - "Selling RJF on 2012-02-29 00:00:00\n", - "Selling EMN on 2012-02-29 00:00:00\n", - "Selling ON on 2012-02-29 00:00:00\n", - "Selling TER on 2012-02-29 00:00:00\n", - "Selling SWKS on 2012-02-29 00:00:00\n", - "Selling SLB on 2012-02-29 00:00:00\n", - "Selling BKR on 2012-02-29 00:00:00\n", - "Selling MPWR on 2012-02-29 00:00:00\n", - "Selling DXCM on 2012-02-29 00:00:00\n", - "Selling MGM on 2012-02-29 00:00:00\n", - "Selling DHI on 2012-02-29 00:00:00\n", - "Selling AMP on 2012-02-29 00:00:00\n", - "Selling LEN on 2012-02-29 00:00:00\n", - "Selling GM on 2012-02-29 00:00:00\n", - "Selling JNPR on 2012-02-29 00:00:00\n", - "Selling RF on 2012-02-29 00:00:00\n", - "Selling TXT on 2012-02-29 00:00:00\n", - "Selling JPM on 2012-02-29 00:00:00\n", - "Selling CE on 2012-02-29 00:00:00\n", - "Selling TT on 2012-02-29 00:00:00\n", - "Selling SCHW on 2012-02-29 00:00:00\n", - "Selling A on 2012-02-29 00:00:00\n", - "Selling GS on 2012-02-29 00:00:00\n", - "Selling SMCI on 2012-02-29 00:00:00\n", - "Selling RCL on 2012-02-29 00:00:00\n", - "Selling CBRE on 2012-02-29 00:00:00\n", - "Selling FCX on 2012-02-29 00:00:00\n", - "Selling AIG on 2012-02-29 00:00:00\n", - "Selling MU on 2012-02-29 00:00:00\n", - "Selling BLDR on 2012-02-29 00:00:00\n", - "Selling AMD on 2012-02-29 00:00:00\n", - "Selling NXPI on 2012-02-29 00:00:00\n", - "Selling STLD on 2012-02-29 00:00:00\n", - "Selling BAC on 2012-02-29 00:00:00\n", - "Selling HIG on 2012-02-29 00:00:00\n", - "Selling C on 2012-02-29 00:00:00\n", - "Selling MAS on 2012-02-29 00:00:00\n", - "Selling PHM on 2012-02-29 00:00:00\n", - "Selling MS on 2012-02-29 00:00:00\n", - "Selling FSLR on 2012-02-29 00:00:00\n", - "Buying KDP on 2012-03-31 00:00:00\n", - "Buying SO on 2012-03-31 00:00:00\n", - "Buying FE on 2012-03-31 00:00:00\n", - "Buying DG on 2012-03-31 00:00:00\n", - "Buying CBOE on 2012-03-31 00:00:00\n", - "Buying KR on 2012-03-31 00:00:00\n", - "Buying PPL on 2012-03-31 00:00:00\n", - "Buying EXC on 2012-03-31 00:00:00\n", - "Buying AZO on 2012-03-31 00:00:00\n", - "Buying MSI on 2012-03-31 00:00:00\n", - "Buying ED on 2012-03-31 00:00:00\n", - "Buying PG on 2012-03-31 00:00:00\n", - "Buying SJM on 2012-03-31 00:00:00\n", - "Buying EIX on 2012-03-31 00:00:00\n", - "Buying MCK on 2012-03-31 00:00:00\n", - "Buying CNP on 2012-03-31 00:00:00\n", - "Buying K on 2012-03-31 00:00:00\n", - "Buying EW on 2012-03-31 00:00:00\n", - "Buying HII on 2012-03-31 00:00:00\n", - "Buying KMB on 2012-03-31 00:00:00\n", - "Buying CMS on 2012-03-31 00:00:00\n", - "Buying D on 2012-03-31 00:00:00\n", - "Buying NI on 2012-03-31 00:00:00\n", - "Buying HSY on 2012-03-31 00:00:00\n", - "Buying GIS on 2012-03-31 00:00:00\n", - "Buying JNJ on 2012-03-31 00:00:00\n", - "Buying TPL on 2012-03-31 00:00:00\n", - "Buying MCD on 2012-03-31 00:00:00\n", - "Buying DUK on 2012-03-31 00:00:00\n", - "Buying KO on 2012-03-31 00:00:00\n", - "Buying AEP on 2012-03-31 00:00:00\n", - "Buying SYY on 2012-03-31 00:00:00\n", - "Buying XEL on 2012-03-31 00:00:00\n", - "Buying CAG on 2012-03-31 00:00:00\n", - "Buying CL on 2012-03-31 00:00:00\n", - "Buying CPB on 2012-03-31 00:00:00\n", - "Buying AON on 2012-03-31 00:00:00\n", - "Buying AMT on 2012-03-31 00:00:00\n", - "Buying COST on 2012-03-31 00:00:00\n", - "Buying CHD on 2012-03-31 00:00:00\n", - "Buying DLTR on 2012-03-31 00:00:00\n", - "Buying PEG on 2012-03-31 00:00:00\n", - "Buying AEE on 2012-03-31 00:00:00\n", - "Buying PEP on 2012-03-31 00:00:00\n", - "Selling HBAN on 2012-03-31 00:00:00\n", - "Selling AMP on 2012-03-31 00:00:00\n", - "Selling WFC on 2012-03-31 00:00:00\n", - "Selling FCX on 2012-03-31 00:00:00\n", - "Selling CAT on 2012-03-31 00:00:00\n", - "Selling RJF on 2012-03-31 00:00:00\n", - "Selling A on 2012-03-31 00:00:00\n", - "Selling JBL on 2012-03-31 00:00:00\n", - "Selling DD on 2012-03-31 00:00:00\n", - "Selling CBRE on 2012-03-31 00:00:00\n", - "Selling SCHW on 2012-03-31 00:00:00\n", - "Selling MPWR on 2012-03-31 00:00:00\n", - "Selling JPM on 2012-03-31 00:00:00\n", - "Selling HST on 2012-03-31 00:00:00\n", - "Selling KEY on 2012-03-31 00:00:00\n", - "Selling FTNT on 2012-03-31 00:00:00\n", - "Selling BWA on 2012-03-31 00:00:00\n", - "Selling MET on 2012-03-31 00:00:00\n", - "Selling PHM on 2012-03-31 00:00:00\n", - "Selling DXCM on 2012-03-31 00:00:00\n", - "Selling MGM on 2012-03-31 00:00:00\n", - "Selling LEN on 2012-03-31 00:00:00\n", - "Selling FSLR on 2012-03-31 00:00:00\n", - "Selling TMUS on 2012-03-31 00:00:00\n", - "Selling TSLA on 2012-03-31 00:00:00\n", - "Selling ALGN on 2012-03-31 00:00:00\n", - "Selling SWKS on 2012-03-31 00:00:00\n", - "Selling STLD on 2012-03-31 00:00:00\n", - "Selling TXT on 2012-03-31 00:00:00\n", - "Selling GM on 2012-03-31 00:00:00\n", - "Selling J on 2012-03-31 00:00:00\n", - "Selling ADSK on 2012-03-31 00:00:00\n", - "Selling RCL on 2012-03-31 00:00:00\n", - "Selling C on 2012-03-31 00:00:00\n", - "Selling GS on 2012-03-31 00:00:00\n", - "Selling CE on 2012-03-31 00:00:00\n", - "Selling LYB on 2012-03-31 00:00:00\n", - "Selling CMI on 2012-03-31 00:00:00\n", - "Selling AMD on 2012-03-31 00:00:00\n", - "Selling HIG on 2012-03-31 00:00:00\n", - "Selling BAC on 2012-03-31 00:00:00\n", - "Selling MAS on 2012-03-31 00:00:00\n", - "Selling BLDR on 2012-03-31 00:00:00\n", - "Selling MS on 2012-03-31 00:00:00\n", - "Buying KDP on 2012-04-30 00:00:00\n", - "Buying SO on 2012-04-30 00:00:00\n", - "Buying SJM on 2012-04-30 00:00:00\n", - "Buying PG on 2012-04-30 00:00:00\n", - "Buying EXC on 2012-04-30 00:00:00\n", - "Buying GIS on 2012-04-30 00:00:00\n", - "Buying K on 2012-04-30 00:00:00\n", - "Buying ED on 2012-04-30 00:00:00\n", - "Buying PPL on 2012-04-30 00:00:00\n", - "Buying AZO on 2012-04-30 00:00:00\n", - "Buying KMB on 2012-04-30 00:00:00\n", - "Buying TPL on 2012-04-30 00:00:00\n", - "Buying FE on 2012-04-30 00:00:00\n", - "Buying NEE on 2012-04-30 00:00:00\n", - "Buying D on 2012-04-30 00:00:00\n", - "Buying CLX on 2012-04-30 00:00:00\n", - "Buying PEP on 2012-04-30 00:00:00\n", - "Buying AEP on 2012-04-30 00:00:00\n", - "Buying DUK on 2012-04-30 00:00:00\n", - "Buying MO on 2012-04-30 00:00:00\n", - "Buying CMS on 2012-04-30 00:00:00\n", - "Buying KR on 2012-04-30 00:00:00\n", - "Buying XEL on 2012-04-30 00:00:00\n", - "Buying MCD on 2012-04-30 00:00:00\n", - "Buying AON on 2012-04-30 00:00:00\n", - "Buying CPB on 2012-04-30 00:00:00\n", - "Buying EIX on 2012-04-30 00:00:00\n", - "Buying CAG on 2012-04-30 00:00:00\n", - "Buying ACGL on 2012-04-30 00:00:00\n", - "Buying CBOE on 2012-04-30 00:00:00\n", - "Buying KO on 2012-04-30 00:00:00\n", - "Buying HSY on 2012-04-30 00:00:00\n", - "Buying WEC on 2012-04-30 00:00:00\n", - "Buying JNJ on 2012-04-30 00:00:00\n", - "Buying LNT on 2012-04-30 00:00:00\n", - "Buying PEG on 2012-04-30 00:00:00\n", - "Buying MKC on 2012-04-30 00:00:00\n", - "Buying SYY on 2012-04-30 00:00:00\n", - "Buying SRE on 2012-04-30 00:00:00\n", - "Buying WM on 2012-04-30 00:00:00\n", - "Buying PNW on 2012-04-30 00:00:00\n", - "Buying PCG on 2012-04-30 00:00:00\n", - "Buying ETR on 2012-04-30 00:00:00\n", - "Buying CNP on 2012-04-30 00:00:00\n", - "Selling HOLX on 2012-04-30 00:00:00\n", - "Selling URI on 2012-04-30 00:00:00\n", - "Selling BK on 2012-04-30 00:00:00\n", - "Selling VLO on 2012-04-30 00:00:00\n", - "Selling AMP on 2012-04-30 00:00:00\n", - "Selling CF on 2012-04-30 00:00:00\n", - "Selling FITB on 2012-04-30 00:00:00\n", - "Selling MET on 2012-04-30 00:00:00\n", - "Selling GS on 2012-04-30 00:00:00\n", - "Selling MHK on 2012-04-30 00:00:00\n", - "Selling DXCM on 2012-04-30 00:00:00\n", - "Selling J on 2012-04-30 00:00:00\n", - "Selling CNC on 2012-04-30 00:00:00\n", - "Selling TXT on 2012-04-30 00:00:00\n", - "Selling WY on 2012-04-30 00:00:00\n", - "Selling WST on 2012-04-30 00:00:00\n", - "Selling TRMB on 2012-04-30 00:00:00\n", - "Selling JBL on 2012-04-30 00:00:00\n", - "Selling IVZ on 2012-04-30 00:00:00\n", - "Selling FSLR on 2012-04-30 00:00:00\n", - "Selling MGM on 2012-04-30 00:00:00\n", - "Selling AFL on 2012-04-30 00:00:00\n", - "Selling RCL on 2012-04-30 00:00:00\n", - "Selling PTC on 2012-04-30 00:00:00\n", - "Selling STLD on 2012-04-30 00:00:00\n", - "Selling CMI on 2012-04-30 00:00:00\n", - "Selling LYB on 2012-04-30 00:00:00\n", - "Selling CE on 2012-04-30 00:00:00\n", - "Selling TER on 2012-04-30 00:00:00\n", - "Selling CBRE on 2012-04-30 00:00:00\n", - "Selling INCY on 2012-04-30 00:00:00\n", - "Selling ALGN on 2012-04-30 00:00:00\n", - "Selling GM on 2012-04-30 00:00:00\n", - "Selling HIG on 2012-04-30 00:00:00\n", - "Selling AMD on 2012-04-30 00:00:00\n", - "Selling PHM on 2012-04-30 00:00:00\n", - "Selling LEN on 2012-04-30 00:00:00\n", - "Selling MOH on 2012-04-30 00:00:00\n", - "Selling SWKS on 2012-04-30 00:00:00\n", - "Selling C on 2012-04-30 00:00:00\n", - "Selling MS on 2012-04-30 00:00:00\n", - "Selling BAC on 2012-04-30 00:00:00\n", - "Selling MAS on 2012-04-30 00:00:00\n", - "Selling BLDR on 2012-04-30 00:00:00\n", - "Buying SO on 2012-05-31 00:00:00\n", - "Buying EXC on 2012-05-31 00:00:00\n", - "Buying PEG on 2012-05-31 00:00:00\n", - "Buying DUK on 2012-05-31 00:00:00\n", - "Buying PG on 2012-05-31 00:00:00\n", - "Buying FE on 2012-05-31 00:00:00\n", - "Buying CPB on 2012-05-31 00:00:00\n", - "Buying ED on 2012-05-31 00:00:00\n", - "Buying NEE on 2012-05-31 00:00:00\n", - "Buying D on 2012-05-31 00:00:00\n", - "Buying KDP on 2012-05-31 00:00:00\n", - "Buying CLX on 2012-05-31 00:00:00\n", - "Buying GIS on 2012-05-31 00:00:00\n", - "Buying KMB on 2012-05-31 00:00:00\n", - "Buying PPL on 2012-05-31 00:00:00\n", - "Buying WMT on 2012-05-31 00:00:00\n", - "Buying MO on 2012-05-31 00:00:00\n", - "Buying K on 2012-05-31 00:00:00\n", - "Buying XEL on 2012-05-31 00:00:00\n", - "Buying AEP on 2012-05-31 00:00:00\n", - "Buying VZ on 2012-05-31 00:00:00\n", - "Buying EIX on 2012-05-31 00:00:00\n", - "Buying ATO on 2012-05-31 00:00:00\n", - "Buying PEP on 2012-05-31 00:00:00\n", - "Buying HRL on 2012-05-31 00:00:00\n", - "Buying SRE on 2012-05-31 00:00:00\n", - "Buying PCG on 2012-05-31 00:00:00\n", - "Buying MRK on 2012-05-31 00:00:00\n", - "Buying CHD on 2012-05-31 00:00:00\n", - "Buying HSY on 2012-05-31 00:00:00\n", - "Buying CAG on 2012-05-31 00:00:00\n", - "Buying ACGL on 2012-05-31 00:00:00\n", - "Buying LOW on 2012-05-31 00:00:00\n", - "Buying WEC on 2012-05-31 00:00:00\n", - "Buying AZO on 2012-05-31 00:00:00\n", - "Buying JNJ on 2012-05-31 00:00:00\n", - "Buying NEM on 2012-05-31 00:00:00\n", - "Buying MKTX on 2012-05-31 00:00:00\n", - "Buying CMS on 2012-05-31 00:00:00\n", - "Buying TAP on 2012-05-31 00:00:00\n", - "Buying BMY on 2012-05-31 00:00:00\n", - "Buying PNW on 2012-05-31 00:00:00\n", - "Buying T on 2012-05-31 00:00:00\n", - "Buying PFE on 2012-05-31 00:00:00\n", - "Selling VLO on 2012-05-31 00:00:00\n", - "Selling BWA on 2012-05-31 00:00:00\n", - "Selling IVZ on 2012-05-31 00:00:00\n", - "Selling DHI on 2012-05-31 00:00:00\n", - "Selling ALB on 2012-05-31 00:00:00\n", - "Selling KKR on 2012-05-31 00:00:00\n", - "Selling PTC on 2012-05-31 00:00:00\n", - "Selling CNC on 2012-05-31 00:00:00\n", - "Selling STLD on 2012-05-31 00:00:00\n", - "Selling MTD on 2012-05-31 00:00:00\n", - "Selling EQIX on 2012-05-31 00:00:00\n", - "Selling MET on 2012-05-31 00:00:00\n", - "Selling PRU on 2012-05-31 00:00:00\n", - "Selling AFL on 2012-05-31 00:00:00\n", - "Selling TXT on 2012-05-31 00:00:00\n", - "Selling AVGO on 2012-05-31 00:00:00\n", - "Selling HST on 2012-05-31 00:00:00\n", - "Selling JBL on 2012-05-31 00:00:00\n", - "Selling RCL on 2012-05-31 00:00:00\n", - "Selling EMN on 2012-05-31 00:00:00\n", - "Selling TRMB on 2012-05-31 00:00:00\n", - "Selling BAC on 2012-05-31 00:00:00\n", - "Selling HIG on 2012-05-31 00:00:00\n", - "Selling MS on 2012-05-31 00:00:00\n", - "Selling TER on 2012-05-31 00:00:00\n", - "Selling ADSK on 2012-05-31 00:00:00\n", - "Selling ALGN on 2012-05-31 00:00:00\n", - "Selling CF on 2012-05-31 00:00:00\n", - "Selling LYB on 2012-05-31 00:00:00\n", - "Selling C on 2012-05-31 00:00:00\n", - "Selling INCY on 2012-05-31 00:00:00\n", - "Selling NXPI on 2012-05-31 00:00:00\n", - "Selling CE on 2012-05-31 00:00:00\n", - "Selling MGM on 2012-05-31 00:00:00\n", - "Selling CBRE on 2012-05-31 00:00:00\n", - "Selling LEN on 2012-05-31 00:00:00\n", - "Selling AMD on 2012-05-31 00:00:00\n", - "Selling MOH on 2012-05-31 00:00:00\n", - "Selling TSLA on 2012-05-31 00:00:00\n", - "Selling PHM on 2012-05-31 00:00:00\n", - "Selling SWKS on 2012-05-31 00:00:00\n", - "Selling MAS on 2012-05-31 00:00:00\n", - "Selling URI on 2012-05-31 00:00:00\n", - "Selling BLDR on 2012-05-31 00:00:00\n", - "Buying DUK on 2012-06-30 00:00:00\n", - "Buying SO on 2012-06-30 00:00:00\n", - "Buying NEM on 2012-06-30 00:00:00\n", - "Buying EXC on 2012-06-30 00:00:00\n", - "Buying ED on 2012-06-30 00:00:00\n", - "Buying PPL on 2012-06-30 00:00:00\n", - "Buying CLX on 2012-06-30 00:00:00\n", - "Buying XEL on 2012-06-30 00:00:00\n", - "Buying WEC on 2012-06-30 00:00:00\n", - "Buying GIS on 2012-06-30 00:00:00\n", - "Buying WMT on 2012-06-30 00:00:00\n", - "Buying NEE on 2012-06-30 00:00:00\n", - "Buying PEG on 2012-06-30 00:00:00\n", - "Buying AEP on 2012-06-30 00:00:00\n", - "Buying K on 2012-06-30 00:00:00\n", - "Buying D on 2012-06-30 00:00:00\n", - "Buying ETR on 2012-06-30 00:00:00\n", - "Buying PEP on 2012-06-30 00:00:00\n", - "Buying PG on 2012-06-30 00:00:00\n", - "Buying PCG on 2012-06-30 00:00:00\n", - "Buying PNW on 2012-06-30 00:00:00\n", - "Buying CMS on 2012-06-30 00:00:00\n", - "Buying CPB on 2012-06-30 00:00:00\n", - "Buying MO on 2012-06-30 00:00:00\n", - "Buying VZ on 2012-06-30 00:00:00\n", - "Buying ATO on 2012-06-30 00:00:00\n", - "Buying EG on 2012-06-30 00:00:00\n", - "Buying CAG on 2012-06-30 00:00:00\n", - "Buying KDP on 2012-06-30 00:00:00\n", - "Buying FE on 2012-06-30 00:00:00\n", - "Buying EIX on 2012-06-30 00:00:00\n", - "Buying KMB on 2012-06-30 00:00:00\n", - "Buying CHD on 2012-06-30 00:00:00\n", - "Buying MRK on 2012-06-30 00:00:00\n", - "Buying JNJ on 2012-06-30 00:00:00\n", - "Buying EVRG on 2012-06-30 00:00:00\n", - "Buying SRE on 2012-06-30 00:00:00\n", - "Buying AEE on 2012-06-30 00:00:00\n", - "Buying T on 2012-06-30 00:00:00\n", - "Buying ACGL on 2012-06-30 00:00:00\n", - "Buying LNT on 2012-06-30 00:00:00\n", - "Buying PFE on 2012-06-30 00:00:00\n", - "Buying DTE on 2012-06-30 00:00:00\n", - "Buying NKE on 2012-06-30 00:00:00\n", - "Buying BMY on 2012-06-30 00:00:00\n", - "Selling REGN on 2012-06-30 00:00:00\n", - "Selling ALB on 2012-06-30 00:00:00\n", - "Selling EQIX on 2012-06-30 00:00:00\n", - "Selling HST on 2012-06-30 00:00:00\n", - "Selling AFL on 2012-06-30 00:00:00\n", - "Selling ON on 2012-06-30 00:00:00\n", - "Selling MGM on 2012-06-30 00:00:00\n", - "Selling CF on 2012-06-30 00:00:00\n", - "Selling CNC on 2012-06-30 00:00:00\n", - "Selling HIG on 2012-06-30 00:00:00\n", - "Selling STX on 2012-06-30 00:00:00\n", - "Selling LYB on 2012-06-30 00:00:00\n", - "Selling ALGN on 2012-06-30 00:00:00\n", - "Selling AVGO on 2012-06-30 00:00:00\n", - "Selling TRMB on 2012-06-30 00:00:00\n", - "Selling MU on 2012-06-30 00:00:00\n", - "Selling TSLA on 2012-06-30 00:00:00\n", - "Selling RF on 2012-06-30 00:00:00\n", - "Selling TXT on 2012-06-30 00:00:00\n", - "Selling CE on 2012-06-30 00:00:00\n", - "Selling JBL on 2012-06-30 00:00:00\n", - "Selling RCL on 2012-06-30 00:00:00\n", - "Selling AIG on 2012-06-30 00:00:00\n", - "Selling DHI on 2012-06-30 00:00:00\n", - "Selling EOG on 2012-06-30 00:00:00\n", - "Selling CBRE on 2012-06-30 00:00:00\n", - "Selling TER on 2012-06-30 00:00:00\n", - "Selling INCY on 2012-06-30 00:00:00\n", - "Selling C on 2012-06-30 00:00:00\n", - "Selling MS on 2012-06-30 00:00:00\n", - "Selling MOH on 2012-06-30 00:00:00\n", - "Selling PTC on 2012-06-30 00:00:00\n", - "Selling ADSK on 2012-06-30 00:00:00\n", - "Selling BAC on 2012-06-30 00:00:00\n", - "Selling AMD on 2012-06-30 00:00:00\n", - "Selling EMN on 2012-06-30 00:00:00\n", - "Selling FSLR on 2012-06-30 00:00:00\n", - "Selling LEN on 2012-06-30 00:00:00\n", - "Selling BLDR on 2012-06-30 00:00:00\n", - "Selling MAS on 2012-06-30 00:00:00\n", - "Selling SWKS on 2012-06-30 00:00:00\n", - "Selling ENPH on 2012-06-30 00:00:00\n", - "Selling NXPI on 2012-06-30 00:00:00\n", - "Selling URI on 2012-06-30 00:00:00\n", - "Selling PHM on 2012-06-30 00:00:00\n", - "Buying DUK on 2012-07-31 00:00:00\n", - "Buying NEM on 2012-07-31 00:00:00\n", - "Buying SO on 2012-07-31 00:00:00\n", - "Buying WMT on 2012-07-31 00:00:00\n", - "Buying ED on 2012-07-31 00:00:00\n", - "Buying EXC on 2012-07-31 00:00:00\n", - "Buying PPL on 2012-07-31 00:00:00\n", - "Buying ETR on 2012-07-31 00:00:00\n", - "Buying CLX on 2012-07-31 00:00:00\n", - "Buying GIS on 2012-07-31 00:00:00\n", - "Buying WEC on 2012-07-31 00:00:00\n", - "Buying XEL on 2012-07-31 00:00:00\n", - "Buying VZ on 2012-07-31 00:00:00\n", - "Buying ATO on 2012-07-31 00:00:00\n", - "Buying AEP on 2012-07-31 00:00:00\n", - "Buying PEP on 2012-07-31 00:00:00\n", - "Buying K on 2012-07-31 00:00:00\n", - "Buying DG on 2012-07-31 00:00:00\n", - "Buying EG on 2012-07-31 00:00:00\n", - "Buying NEE on 2012-07-31 00:00:00\n", - "Buying PNW on 2012-07-31 00:00:00\n", - "Buying D on 2012-07-31 00:00:00\n", - "Buying EIX on 2012-07-31 00:00:00\n", - "Buying PCG on 2012-07-31 00:00:00\n", - "Buying CMS on 2012-07-31 00:00:00\n", - "Buying CAG on 2012-07-31 00:00:00\n", - "Buying PG on 2012-07-31 00:00:00\n", - "Buying MCK on 2012-07-31 00:00:00\n", - "Buying CHD on 2012-07-31 00:00:00\n", - "Buying EVRG on 2012-07-31 00:00:00\n", - "Buying CBOE on 2012-07-31 00:00:00\n", - "Buying PEG on 2012-07-31 00:00:00\n", - "Buying PFE on 2012-07-31 00:00:00\n", - "Buying MO on 2012-07-31 00:00:00\n", - "Buying AEE on 2012-07-31 00:00:00\n", - "Buying FE on 2012-07-31 00:00:00\n", - "Buying TGT on 2012-07-31 00:00:00\n", - "Buying MDLZ on 2012-07-31 00:00:00\n", - "Buying T on 2012-07-31 00:00:00\n", - "Buying LNT on 2012-07-31 00:00:00\n", - "Buying TPL on 2012-07-31 00:00:00\n", - "Buying DTE on 2012-07-31 00:00:00\n", - "Buying AWK on 2012-07-31 00:00:00\n", - "Buying CPB on 2012-07-31 00:00:00\n", - "Buying AZO on 2012-07-31 00:00:00\n", - "Selling ON on 2012-07-31 00:00:00\n", - "Selling MGM on 2012-07-31 00:00:00\n", - "Selling AMP on 2012-07-31 00:00:00\n", - "Selling HIG on 2012-07-31 00:00:00\n", - "Selling RCL on 2012-07-31 00:00:00\n", - "Selling LII on 2012-07-31 00:00:00\n", - "Selling ALB on 2012-07-31 00:00:00\n", - "Selling MET on 2012-07-31 00:00:00\n", - "Selling LEN on 2012-07-31 00:00:00\n", - "Selling TRMB on 2012-07-31 00:00:00\n", - "Selling BWA on 2012-07-31 00:00:00\n", - "Selling HES on 2012-07-31 00:00:00\n", - "Selling JBL on 2012-07-31 00:00:00\n", - "Selling EXPE on 2012-07-31 00:00:00\n", - "Selling EQIX on 2012-07-31 00:00:00\n", - "Selling HST on 2012-07-31 00:00:00\n", - "Selling BAC on 2012-07-31 00:00:00\n", - "Selling TPR on 2012-07-31 00:00:00\n", - "Selling AIG on 2012-07-31 00:00:00\n", - "Selling LYB on 2012-07-31 00:00:00\n", - "Selling BLDR on 2012-07-31 00:00:00\n", - "Selling FFIV on 2012-07-31 00:00:00\n", - "Selling TXT on 2012-07-31 00:00:00\n", - "Selling WDC on 2012-07-31 00:00:00\n", - "Selling CBRE on 2012-07-31 00:00:00\n", - "Selling MS on 2012-07-31 00:00:00\n", - "Selling TMUS on 2012-07-31 00:00:00\n", - "Selling MU on 2012-07-31 00:00:00\n", - "Selling TER on 2012-07-31 00:00:00\n", - "Selling C on 2012-07-31 00:00:00\n", - "Selling FSLR on 2012-07-31 00:00:00\n", - "Selling EMN on 2012-07-31 00:00:00\n", - "Selling EOG on 2012-07-31 00:00:00\n", - "Selling FTNT on 2012-07-31 00:00:00\n", - "Selling STX on 2012-07-31 00:00:00\n", - "Selling ADSK on 2012-07-31 00:00:00\n", - "Selling SWKS on 2012-07-31 00:00:00\n", - "Selling AKAM on 2012-07-31 00:00:00\n", - "Selling MAS on 2012-07-31 00:00:00\n", - "Selling AMD on 2012-07-31 00:00:00\n", - "Selling PTC on 2012-07-31 00:00:00\n", - "Selling NXPI on 2012-07-31 00:00:00\n", - "Selling PHM on 2012-07-31 00:00:00\n", - "Selling URI on 2012-07-31 00:00:00\n", - "Selling ENPH on 2012-07-31 00:00:00\n", - "Buying AMCR on 2012-08-31 00:00:00\n", - "Buying DG on 2012-08-31 00:00:00\n", - "Buying META on 2012-08-31 00:00:00\n", - "Buying TPL on 2012-08-31 00:00:00\n", - "Buying SO on 2012-08-31 00:00:00\n", - "Buying DAL on 2012-08-31 00:00:00\n", - "Buying CLX on 2012-08-31 00:00:00\n", - "Buying ED on 2012-08-31 00:00:00\n", - "Buying APO on 2012-08-31 00:00:00\n", - "Buying EG on 2012-08-31 00:00:00\n", - "Buying ESS on 2012-08-31 00:00:00\n", - "Buying UAL on 2012-08-31 00:00:00\n", - "Buying PPL on 2012-08-31 00:00:00\n", - "Buying MAA on 2012-08-31 00:00:00\n", - "Buying O on 2012-08-31 00:00:00\n", - "Buying MCD on 2012-08-31 00:00:00\n", - "Buying CHD on 2012-08-31 00:00:00\n", - "Buying CBOE on 2012-08-31 00:00:00\n", - "Buying ERIE on 2012-08-31 00:00:00\n", - "Buying CPT on 2012-08-31 00:00:00\n", - "Buying NKE on 2012-08-31 00:00:00\n", - "Buying CAG on 2012-08-31 00:00:00\n", - "Buying DUK on 2012-08-31 00:00:00\n", - "Buying WEC on 2012-08-31 00:00:00\n", - "Buying ETR on 2012-08-31 00:00:00\n", - "Buying AZO on 2012-08-31 00:00:00\n", - "Buying WMT on 2012-08-31 00:00:00\n", - "Buying WELL on 2012-08-31 00:00:00\n", - "Buying ATO on 2012-08-31 00:00:00\n", - "Buying K on 2012-08-31 00:00:00\n", - "Buying EIX on 2012-08-31 00:00:00\n", - "Buying EXC on 2012-08-31 00:00:00\n", - "Buying EVRG on 2012-08-31 00:00:00\n", - "Buying AEP on 2012-08-31 00:00:00\n", - "Buying AEE on 2012-08-31 00:00:00\n", - "Buying MO on 2012-08-31 00:00:00\n", - "Buying VZ on 2012-08-31 00:00:00\n", - "Buying TFX on 2012-08-31 00:00:00\n", - "Buying PCG on 2012-08-31 00:00:00\n", - "Buying XEL on 2012-08-31 00:00:00\n", - "Buying GIS on 2012-08-31 00:00:00\n", - "Buying SBAC on 2012-08-31 00:00:00\n", - "Buying EQR on 2012-08-31 00:00:00\n", - "Buying TGT on 2012-08-31 00:00:00\n", - "Buying KMB on 2012-08-31 00:00:00\n", - "Selling LII on 2012-08-31 00:00:00\n", - "Selling NDSN on 2012-08-31 00:00:00\n", - "Selling IEX on 2012-08-31 00:00:00\n", - "Selling CTRA on 2012-08-31 00:00:00\n", - "Selling BWA on 2012-08-31 00:00:00\n", - "Selling PCAR on 2012-08-31 00:00:00\n", - "Selling MPWR on 2012-08-31 00:00:00\n", - "Selling EA on 2012-08-31 00:00:00\n", - "Selling TRMB on 2012-08-31 00:00:00\n", - "Selling CMI on 2012-08-31 00:00:00\n", - "Selling JNPR on 2012-08-31 00:00:00\n", - "Selling AMP on 2012-08-31 00:00:00\n", - "Selling BAC on 2012-08-31 00:00:00\n", - "Selling JBL on 2012-08-31 00:00:00\n", - "Selling ENPH on 2012-08-31 00:00:00\n", - "Selling OXY on 2012-08-31 00:00:00\n", - "Selling SWKS on 2012-08-31 00:00:00\n", - "Selling BLDR on 2012-08-31 00:00:00\n", - "Selling CBRE on 2012-08-31 00:00:00\n", - "Selling DECK on 2012-08-31 00:00:00\n", - "Selling STLD on 2012-08-31 00:00:00\n", - "Selling HES on 2012-08-31 00:00:00\n", - "Selling ADSK on 2012-08-31 00:00:00\n", - "Selling MS on 2012-08-31 00:00:00\n", - "Selling MU on 2012-08-31 00:00:00\n", - "Selling EXPE on 2012-08-31 00:00:00\n", - "Selling TXT on 2012-08-31 00:00:00\n", - "Selling FCX on 2012-08-31 00:00:00\n", - "Selling C on 2012-08-31 00:00:00\n", - "Selling PHM on 2012-08-31 00:00:00\n", - "Selling WDC on 2012-08-31 00:00:00\n", - "Selling TER on 2012-08-31 00:00:00\n", - "Selling MAS on 2012-08-31 00:00:00\n", - "Selling TPR on 2012-08-31 00:00:00\n", - "Selling CRM on 2012-08-31 00:00:00\n", - "Selling FFIV on 2012-08-31 00:00:00\n", - "Selling STX on 2012-08-31 00:00:00\n", - "Selling TMUS on 2012-08-31 00:00:00\n", - "Selling AMD on 2012-08-31 00:00:00\n", - "Selling NXPI on 2012-08-31 00:00:00\n", - "Selling FTNT on 2012-08-31 00:00:00\n", - "Selling EOG on 2012-08-31 00:00:00\n", - "Selling AKAM on 2012-08-31 00:00:00\n", - "Selling PTC on 2012-08-31 00:00:00\n", - "Selling URI on 2012-08-31 00:00:00\n", - "Buying META on 2012-09-30 00:00:00\n", - "Buying UAL on 2012-09-30 00:00:00\n", - "Buying ORLY on 2012-09-30 00:00:00\n", - "Buying DG on 2012-09-30 00:00:00\n", - "Buying ERIE on 2012-09-30 00:00:00\n", - "Buying TPL on 2012-09-30 00:00:00\n", - "Buying AMCR on 2012-09-30 00:00:00\n", - "Buying AZO on 2012-09-30 00:00:00\n", - "Buying CHD on 2012-09-30 00:00:00\n", - "Buying O on 2012-09-30 00:00:00\n", - "Buying CLX on 2012-09-30 00:00:00\n", - "Buying CPT on 2012-09-30 00:00:00\n", - "Buying ESS on 2012-09-30 00:00:00\n", - "Buying MAA on 2012-09-30 00:00:00\n", - "Buying FRT on 2012-09-30 00:00:00\n", - "Buying UDR on 2012-09-30 00:00:00\n", - "Buying EQR on 2012-09-30 00:00:00\n", - "Buying ED on 2012-09-30 00:00:00\n", - "Buying PPL on 2012-09-30 00:00:00\n", - "Buying APO on 2012-09-30 00:00:00\n", - "Buying CAH on 2012-09-30 00:00:00\n", - "Buying WELL on 2012-09-30 00:00:00\n", - "Buying K on 2012-09-30 00:00:00\n", - "Buying VTR on 2012-09-30 00:00:00\n", - "Buying WEC on 2012-09-30 00:00:00\n", - "Buying AVB on 2012-09-30 00:00:00\n", - "Buying ATO on 2012-09-30 00:00:00\n", - "Buying MCK on 2012-09-30 00:00:00\n", - "Buying EXR on 2012-09-30 00:00:00\n", - "Buying SO on 2012-09-30 00:00:00\n", - "Buying WMT on 2012-09-30 00:00:00\n", - "Buying MCD on 2012-09-30 00:00:00\n", - "Buying MO on 2012-09-30 00:00:00\n", - "Buying DAL on 2012-09-30 00:00:00\n", - "Buying WRB on 2012-09-30 00:00:00\n", - "Buying EVRG on 2012-09-30 00:00:00\n", - "Buying SBAC on 2012-09-30 00:00:00\n", - "Buying PFE on 2012-09-30 00:00:00\n", - "Buying TGT on 2012-09-30 00:00:00\n", - "Buying DOC on 2012-09-30 00:00:00\n", - "Buying DLR on 2012-09-30 00:00:00\n", - "Buying PSA on 2012-09-30 00:00:00\n", - "Buying GIS on 2012-09-30 00:00:00\n", - "Buying ACGL on 2012-09-30 00:00:00\n", - "Buying PCG on 2012-09-30 00:00:00\n", - "Selling BAC on 2012-09-30 00:00:00\n", - "Selling LULU on 2012-09-30 00:00:00\n", - "Selling PCAR on 2012-09-30 00:00:00\n", - "Selling MPWR on 2012-09-30 00:00:00\n", - "Selling OXY on 2012-09-30 00:00:00\n", - "Selling JBL on 2012-09-30 00:00:00\n", - "Selling CMI on 2012-09-30 00:00:00\n", - "Selling LYB on 2012-09-30 00:00:00\n", - "Selling MU on 2012-09-30 00:00:00\n", - "Selling GM on 2012-09-30 00:00:00\n", - "Selling SCHW on 2012-09-30 00:00:00\n", - "Selling EA on 2012-09-30 00:00:00\n", - "Selling TXT on 2012-09-30 00:00:00\n", - "Selling IVZ on 2012-09-30 00:00:00\n", - "Selling AMP on 2012-09-30 00:00:00\n", - "Selling MS on 2012-09-30 00:00:00\n", - "Selling JNPR on 2012-09-30 00:00:00\n", - "Selling SWKS on 2012-09-30 00:00:00\n", - "Selling TRMB on 2012-09-30 00:00:00\n", - "Selling MGM on 2012-09-30 00:00:00\n", - "Selling CMG on 2012-09-30 00:00:00\n", - "Selling SWK on 2012-09-30 00:00:00\n", - "Selling PHM on 2012-09-30 00:00:00\n", - "Selling FCX on 2012-09-30 00:00:00\n", - "Selling C on 2012-09-30 00:00:00\n", - "Selling MAS on 2012-09-30 00:00:00\n", - "Selling STLD on 2012-09-30 00:00:00\n", - "Selling TER on 2012-09-30 00:00:00\n", - "Selling WDC on 2012-09-30 00:00:00\n", - "Selling CBRE on 2012-09-30 00:00:00\n", - "Selling BWA on 2012-09-30 00:00:00\n", - "Selling EOG on 2012-09-30 00:00:00\n", - "Selling AMD on 2012-09-30 00:00:00\n", - "Selling CRM on 2012-09-30 00:00:00\n", - "Selling BLDR on 2012-09-30 00:00:00\n", - "Selling EXPE on 2012-09-30 00:00:00\n", - "Selling TPR on 2012-09-30 00:00:00\n", - "Selling FFIV on 2012-09-30 00:00:00\n", - "Selling FTNT on 2012-09-30 00:00:00\n", - "Selling AKAM on 2012-09-30 00:00:00\n", - "Selling DECK on 2012-09-30 00:00:00\n", - "Selling URI on 2012-09-30 00:00:00\n", - "Selling PTC on 2012-09-30 00:00:00\n", - "Selling NXPI on 2012-09-30 00:00:00\n", - "Selling TMUS on 2012-09-30 00:00:00\n", - "Buying ORLY on 2012-10-31 00:00:00\n", - "Buying MKTX on 2012-10-31 00:00:00\n", - "Buying TPL on 2012-10-31 00:00:00\n", - "Buying META on 2012-10-31 00:00:00\n", - "Buying EPAM on 2012-10-31 00:00:00\n", - "Buying DG on 2012-10-31 00:00:00\n", - "Buying AZO on 2012-10-31 00:00:00\n", - "Buying WEC on 2012-10-31 00:00:00\n", - "Buying FRT on 2012-10-31 00:00:00\n", - "Buying ED on 2012-10-31 00:00:00\n", - "Buying PPL on 2012-10-31 00:00:00\n", - "Buying VTR on 2012-10-31 00:00:00\n", - "Buying UDR on 2012-10-31 00:00:00\n", - "Buying AEE on 2012-10-31 00:00:00\n", - "Buying IT on 2012-10-31 00:00:00\n", - "Buying CPT on 2012-10-31 00:00:00\n", - "Buying AMCR on 2012-10-31 00:00:00\n", - "Buying EQR on 2012-10-31 00:00:00\n", - "Buying LUV on 2012-10-31 00:00:00\n", - "Buying SBAC on 2012-10-31 00:00:00\n", - "Buying CLX on 2012-10-31 00:00:00\n", - "Buying CPRT on 2012-10-31 00:00:00\n", - "Buying DUK on 2012-10-31 00:00:00\n", - "Buying O on 2012-10-31 00:00:00\n", - "Buying ESS on 2012-10-31 00:00:00\n", - "Buying PSA on 2012-10-31 00:00:00\n", - "Buying UPS on 2012-10-31 00:00:00\n", - "Buying GWW on 2012-10-31 00:00:00\n", - "Buying PCG on 2012-10-31 00:00:00\n", - "Buying SO on 2012-10-31 00:00:00\n", - "Buying CMS on 2012-10-31 00:00:00\n", - "Buying AXON on 2012-10-31 00:00:00\n", - "Buying K on 2012-10-31 00:00:00\n", - "Buying JBHT on 2012-10-31 00:00:00\n", - "Buying AVB on 2012-10-31 00:00:00\n", - "Buying WBA on 2012-10-31 00:00:00\n", - "Buying AWK on 2012-10-31 00:00:00\n", - "Buying DOC on 2012-10-31 00:00:00\n", - "Buying ERIE on 2012-10-31 00:00:00\n", - "Buying DTE on 2012-10-31 00:00:00\n", - "Buying EXR on 2012-10-31 00:00:00\n", - "Buying LNT on 2012-10-31 00:00:00\n", - "Buying AEP on 2012-10-31 00:00:00\n", - "Buying FE on 2012-10-31 00:00:00\n", - "Buying SNPS on 2012-10-31 00:00:00\n", - "Selling RCL on 2012-10-31 00:00:00\n", - "Selling VRTX on 2012-10-31 00:00:00\n", - "Selling NTAP on 2012-10-31 00:00:00\n", - "Selling EMN on 2012-10-31 00:00:00\n", - "Selling TRMB on 2012-10-31 00:00:00\n", - "Selling PRU on 2012-10-31 00:00:00\n", - "Selling LEN on 2012-10-31 00:00:00\n", - "Selling DHI on 2012-10-31 00:00:00\n", - "Selling HES on 2012-10-31 00:00:00\n", - "Selling DD on 2012-10-31 00:00:00\n", - "Selling GLW on 2012-10-31 00:00:00\n", - "Selling SWKS on 2012-10-31 00:00:00\n", - "Selling RF on 2012-10-31 00:00:00\n", - "Selling MAS on 2012-10-31 00:00:00\n", - "Selling TER on 2012-10-31 00:00:00\n", - "Selling MS on 2012-10-31 00:00:00\n", - "Selling MLM on 2012-10-31 00:00:00\n", - "Selling DECK on 2012-10-31 00:00:00\n", - "Selling GM on 2012-10-31 00:00:00\n", - "Selling TTWO on 2012-10-31 00:00:00\n", - "Selling LYB on 2012-10-31 00:00:00\n", - "Selling FFIV on 2012-10-31 00:00:00\n", - "Selling ALGN on 2012-10-31 00:00:00\n", - "Selling NOW on 2012-10-31 00:00:00\n", - "Selling BAC on 2012-10-31 00:00:00\n", - "Selling CMG on 2012-10-31 00:00:00\n", - "Selling MGM on 2012-10-31 00:00:00\n", - "Selling STLD on 2012-10-31 00:00:00\n", - "Selling MNST on 2012-10-31 00:00:00\n", - "Selling PH on 2012-10-31 00:00:00\n", - "Selling ON on 2012-10-31 00:00:00\n", - "Selling FCX on 2012-10-31 00:00:00\n", - "Selling BWA on 2012-10-31 00:00:00\n", - "Selling MU on 2012-10-31 00:00:00\n", - "Selling C on 2012-10-31 00:00:00\n", - "Selling EA on 2012-10-31 00:00:00\n", - "Selling CBRE on 2012-10-31 00:00:00\n", - "Selling PHM on 2012-10-31 00:00:00\n", - "Selling VMC on 2012-10-31 00:00:00\n", - "Selling NFLX on 2012-10-31 00:00:00\n", - "Selling BLDR on 2012-10-31 00:00:00\n", - "Selling AMD on 2012-10-31 00:00:00\n", - "Selling URI on 2012-10-31 00:00:00\n", - "Selling NXPI on 2012-10-31 00:00:00\n", - "Selling FSLR on 2012-10-31 00:00:00\n", - "Buying META on 2012-11-30 00:00:00\n", - "Buying ORLY on 2012-11-30 00:00:00\n", - "Buying CNC on 2012-11-30 00:00:00\n", - "Buying AMCR on 2012-11-30 00:00:00\n", - "Buying TPL on 2012-11-30 00:00:00\n", - "Buying ERIE on 2012-11-30 00:00:00\n", - "Buying MKTX on 2012-11-30 00:00:00\n", - "Buying DG on 2012-11-30 00:00:00\n", - "Buying PPL on 2012-11-30 00:00:00\n", - "Buying AZO on 2012-11-30 00:00:00\n", - "Buying PSA on 2012-11-30 00:00:00\n", - "Buying ED on 2012-11-30 00:00:00\n", - "Buying FRT on 2012-11-30 00:00:00\n", - "Buying BBY on 2012-11-30 00:00:00\n", - "Buying WEC on 2012-11-30 00:00:00\n", - "Buying SO on 2012-11-30 00:00:00\n", - "Buying XEL on 2012-11-30 00:00:00\n", - "Buying EXC on 2012-11-30 00:00:00\n", - "Buying SBAC on 2012-11-30 00:00:00\n", - "Buying AEE on 2012-11-30 00:00:00\n", - "Buying CPB on 2012-11-30 00:00:00\n", - "Buying AMT on 2012-11-30 00:00:00\n", - "Buying CLX on 2012-11-30 00:00:00\n", - "Buying O on 2012-11-30 00:00:00\n", - "Buying DUK on 2012-11-30 00:00:00\n", - "Buying ES on 2012-11-30 00:00:00\n", - "Buying VTR on 2012-11-30 00:00:00\n", - "Buying DTE on 2012-11-30 00:00:00\n", - "Buying CTAS on 2012-11-30 00:00:00\n", - "Buying CMS on 2012-11-30 00:00:00\n", - "Buying AEP on 2012-11-30 00:00:00\n", - "Buying AWK on 2012-11-30 00:00:00\n", - "Buying WELL on 2012-11-30 00:00:00\n", - "Buying DOC on 2012-11-30 00:00:00\n", - "Buying PCG on 2012-11-30 00:00:00\n", - "Buying EXR on 2012-11-30 00:00:00\n", - "Buying GIS on 2012-11-30 00:00:00\n", - "Buying EIX on 2012-11-30 00:00:00\n", - "Buying JBHT on 2012-11-30 00:00:00\n", - "Buying ESS on 2012-11-30 00:00:00\n", - "Buying D on 2012-11-30 00:00:00\n", - "Buying PEG on 2012-11-30 00:00:00\n", - "Buying PEP on 2012-11-30 00:00:00\n", - "Buying MAA on 2012-11-30 00:00:00\n", - "Buying HSY on 2012-11-30 00:00:00\n", - "Selling AVGO on 2012-11-30 00:00:00\n", - "Selling CMI on 2012-11-30 00:00:00\n", - "Selling NOW on 2012-11-30 00:00:00\n", - "Selling JPM on 2012-11-30 00:00:00\n", - "Selling DD on 2012-11-30 00:00:00\n", - "Selling HES on 2012-11-30 00:00:00\n", - "Selling MET on 2012-11-30 00:00:00\n", - "Selling CAT on 2012-11-30 00:00:00\n", - "Selling REGN on 2012-11-30 00:00:00\n", - "Selling CBRE on 2012-11-30 00:00:00\n", - "Selling PH on 2012-11-30 00:00:00\n", - "Selling HIG on 2012-11-30 00:00:00\n", - "Selling AAPL on 2012-11-30 00:00:00\n", - "Selling INCY on 2012-11-30 00:00:00\n", - "Selling GS on 2012-11-30 00:00:00\n", - "Selling TER on 2012-11-30 00:00:00\n", - "Selling LULU on 2012-11-30 00:00:00\n", - "Selling EMN on 2012-11-30 00:00:00\n", - "Selling PHM on 2012-11-30 00:00:00\n", - "Selling MAS on 2012-11-30 00:00:00\n", - "Selling PTC on 2012-11-30 00:00:00\n", - "Selling PRU on 2012-11-30 00:00:00\n", - "Selling VRTX on 2012-11-30 00:00:00\n", - "Selling RF on 2012-11-30 00:00:00\n", - "Selling GM on 2012-11-30 00:00:00\n", - "Selling LYB on 2012-11-30 00:00:00\n", - "Selling CMG on 2012-11-30 00:00:00\n", - "Selling MS on 2012-11-30 00:00:00\n", - "Selling BWA on 2012-11-30 00:00:00\n", - "Selling FCX on 2012-11-30 00:00:00\n", - "Selling EA on 2012-11-30 00:00:00\n", - "Selling ON on 2012-11-30 00:00:00\n", - "Selling C on 2012-11-30 00:00:00\n", - "Selling MU on 2012-11-30 00:00:00\n", - "Selling DECK on 2012-11-30 00:00:00\n", - "Selling STLD on 2012-11-30 00:00:00\n", - "Selling BAC on 2012-11-30 00:00:00\n", - "Selling SWKS on 2012-11-30 00:00:00\n", - "Selling VMC on 2012-11-30 00:00:00\n", - "Selling ENPH on 2012-11-30 00:00:00\n", - "Selling NXPI on 2012-11-30 00:00:00\n", - "Selling AMD on 2012-11-30 00:00:00\n", - "Selling FSLR on 2012-11-30 00:00:00\n", - "Selling URI on 2012-11-30 00:00:00\n", - "Selling BLDR on 2012-11-30 00:00:00\n", - "Buying AMCR on 2012-12-31 00:00:00\n", - "Buying META on 2012-12-31 00:00:00\n", - "Buying PSA on 2012-12-31 00:00:00\n", - "Buying ERIE on 2012-12-31 00:00:00\n", - "Buying SBAC on 2012-12-31 00:00:00\n", - "Buying TPL on 2012-12-31 00:00:00\n", - "Buying EXR on 2012-12-31 00:00:00\n", - "Buying ESS on 2012-12-31 00:00:00\n", - "Buying FRT on 2012-12-31 00:00:00\n", - "Buying BBY on 2012-12-31 00:00:00\n", - "Buying AMT on 2012-12-31 00:00:00\n", - "Buying WELL on 2012-12-31 00:00:00\n", - "Buying DG on 2012-12-31 00:00:00\n", - "Buying DOC on 2012-12-31 00:00:00\n", - "Buying AZO on 2012-12-31 00:00:00\n", - "Buying CTAS on 2012-12-31 00:00:00\n", - "Buying CNC on 2012-12-31 00:00:00\n", - "Buying CPB on 2012-12-31 00:00:00\n", - "Buying DLR on 2012-12-31 00:00:00\n", - "Buying O on 2012-12-31 00:00:00\n", - "Buying UDR on 2012-12-31 00:00:00\n", - "Buying MAA on 2012-12-31 00:00:00\n", - "Buying CPT on 2012-12-31 00:00:00\n", - "Buying FDS on 2012-12-31 00:00:00\n", - "Buying AVB on 2012-12-31 00:00:00\n", - "Buying SO on 2012-12-31 00:00:00\n", - "Buying WRB on 2012-12-31 00:00:00\n", - "Buying ED on 2012-12-31 00:00:00\n", - "Buying PPL on 2012-12-31 00:00:00\n", - "Buying AWK on 2012-12-31 00:00:00\n", - "Buying EPAM on 2012-12-31 00:00:00\n", - "Buying HSY on 2012-12-31 00:00:00\n", - "Buying FE on 2012-12-31 00:00:00\n", - "Buying CVS on 2012-12-31 00:00:00\n", - "Buying ACGL on 2012-12-31 00:00:00\n", - "Buying D on 2012-12-31 00:00:00\n", - "Buying HCA on 2012-12-31 00:00:00\n", - "Buying EXC on 2012-12-31 00:00:00\n", - "Buying ROST on 2012-12-31 00:00:00\n", - "Buying EIX on 2012-12-31 00:00:00\n", - "Buying EQR on 2012-12-31 00:00:00\n", - "Buying BRO on 2012-12-31 00:00:00\n", - "Buying PEP on 2012-12-31 00:00:00\n", - "Buying VTR on 2012-12-31 00:00:00\n", - "Buying ES on 2012-12-31 00:00:00\n", - "Selling CAT on 2012-12-31 00:00:00\n", - "Selling FCX on 2012-12-31 00:00:00\n", - "Selling REGN on 2012-12-31 00:00:00\n", - "Selling WDC on 2012-12-31 00:00:00\n", - "Selling PH on 2012-12-31 00:00:00\n", - "Selling PHM on 2012-12-31 00:00:00\n", - "Selling AVGO on 2012-12-31 00:00:00\n", - "Selling DD on 2012-12-31 00:00:00\n", - "Selling TER on 2012-12-31 00:00:00\n", - "Selling HIG on 2012-12-31 00:00:00\n", - "Selling HAL on 2012-12-31 00:00:00\n", - "Selling MAS on 2012-12-31 00:00:00\n", - "Selling GM on 2012-12-31 00:00:00\n", - "Selling LYB on 2012-12-31 00:00:00\n", - "Selling A on 2012-12-31 00:00:00\n", - "Selling GS on 2012-12-31 00:00:00\n", - "Selling MET on 2012-12-31 00:00:00\n", - "Selling HES on 2012-12-31 00:00:00\n", - "Selling ON on 2012-12-31 00:00:00\n", - "Selling EMN on 2012-12-31 00:00:00\n", - "Selling PRU on 2012-12-31 00:00:00\n", - "Selling VRTX on 2012-12-31 00:00:00\n", - "Selling RF on 2012-12-31 00:00:00\n", - "Selling EA on 2012-12-31 00:00:00\n", - "Selling JBL on 2012-12-31 00:00:00\n", - "Selling FSLR on 2012-12-31 00:00:00\n", - "Selling AIG on 2012-12-31 00:00:00\n", - "Selling MU on 2012-12-31 00:00:00\n", - "Selling VMC on 2012-12-31 00:00:00\n", - "Selling C on 2012-12-31 00:00:00\n", - "Selling MS on 2012-12-31 00:00:00\n", - "Selling LULU on 2012-12-31 00:00:00\n", - "Selling CMG on 2012-12-31 00:00:00\n", - "Selling BAC on 2012-12-31 00:00:00\n", - "Selling AAPL on 2012-12-31 00:00:00\n", - "Selling DECK on 2012-12-31 00:00:00\n", - "Selling NXPI on 2012-12-31 00:00:00\n", - "Selling SWKS on 2012-12-31 00:00:00\n", - "Selling STLD on 2012-12-31 00:00:00\n", - "Selling INCY on 2012-12-31 00:00:00\n", - "Selling BLDR on 2012-12-31 00:00:00\n", - "Selling SMCI on 2012-12-31 00:00:00\n", - "Selling AMD on 2012-12-31 00:00:00\n", - "Selling URI on 2012-12-31 00:00:00\n", - "Selling ENPH on 2012-12-31 00:00:00\n", - "Buying AMCR on 2013-01-31 00:00:00\n", - "Buying TPL on 2013-01-31 00:00:00\n", - "Buying WDAY on 2013-01-31 00:00:00\n", - "Buying VRSN on 2013-01-31 00:00:00\n", - "Buying DG on 2013-01-31 00:00:00\n", - "Buying ACGL on 2013-01-31 00:00:00\n", - "Buying WELL on 2013-01-31 00:00:00\n", - "Buying BBY on 2013-01-31 00:00:00\n", - "Buying ERIE on 2013-01-31 00:00:00\n", - "Buying COR on 2013-01-31 00:00:00\n", - "Buying MNST on 2013-01-31 00:00:00\n", - "Buying NFLX on 2013-01-31 00:00:00\n", - "Buying PSA on 2013-01-31 00:00:00\n", - "Buying FRT on 2013-01-31 00:00:00\n", - "Buying DLR on 2013-01-31 00:00:00\n", - "Buying MAA on 2013-01-31 00:00:00\n", - "Buying FDS on 2013-01-31 00:00:00\n", - "Buying TMUS on 2013-01-31 00:00:00\n", - "Buying CNC on 2013-01-31 00:00:00\n", - "Buying SBAC on 2013-01-31 00:00:00\n", - "Buying EXR on 2013-01-31 00:00:00\n", - "Buying HCA on 2013-01-31 00:00:00\n", - "Buying RSG on 2013-01-31 00:00:00\n", - "Buying CTAS on 2013-01-31 00:00:00\n", - "Buying DVA on 2013-01-31 00:00:00\n", - "Buying AZO on 2013-01-31 00:00:00\n", - "Buying EIX on 2013-01-31 00:00:00\n", - "Buying JNJ on 2013-01-31 00:00:00\n", - "Buying ESS on 2013-01-31 00:00:00\n", - "Buying AMT on 2013-01-31 00:00:00\n", - "Buying O on 2013-01-31 00:00:00\n", - "Buying FE on 2013-01-31 00:00:00\n", - "Buying PEP on 2013-01-31 00:00:00\n", - "Buying EG on 2013-01-31 00:00:00\n", - "Buying CAG on 2013-01-31 00:00:00\n", - "Buying MCK on 2013-01-31 00:00:00\n", - "Buying CPT on 2013-01-31 00:00:00\n", - "Buying TGT on 2013-01-31 00:00:00\n", - "Buying PPL on 2013-01-31 00:00:00\n", - "Buying UAL on 2013-01-31 00:00:00\n", - "Buying NVR on 2013-01-31 00:00:00\n", - "Buying WM on 2013-01-31 00:00:00\n", - "Buying AWK on 2013-01-31 00:00:00\n", - "Buying CLX on 2013-01-31 00:00:00\n", - "Buying DOC on 2013-01-31 00:00:00\n", - "Selling DVN on 2013-01-31 00:00:00\n", - "Selling CSGP on 2013-01-31 00:00:00\n", - "Selling GD on 2013-01-31 00:00:00\n", - "Selling CMI on 2013-01-31 00:00:00\n", - "Selling HUM on 2013-01-31 00:00:00\n", - "Selling MAS on 2013-01-31 00:00:00\n", - "Selling SLB on 2013-01-31 00:00:00\n", - "Selling PSX on 2013-01-31 00:00:00\n", - "Selling KLAC on 2013-01-31 00:00:00\n", - "Selling BK on 2013-01-31 00:00:00\n", - "Selling AIG on 2013-01-31 00:00:00\n", - "Selling VLO on 2013-01-31 00:00:00\n", - "Selling SWK on 2013-01-31 00:00:00\n", - "Selling A on 2013-01-31 00:00:00\n", - "Selling TSN on 2013-01-31 00:00:00\n", - "Selling HPQ on 2013-01-31 00:00:00\n", - "Selling BKR on 2013-01-31 00:00:00\n", - "Selling PARA on 2013-01-31 00:00:00\n", - "Selling ON on 2013-01-31 00:00:00\n", - "Selling VMC on 2013-01-31 00:00:00\n", - "Selling HES on 2013-01-31 00:00:00\n", - "Selling COF on 2013-01-31 00:00:00\n", - "Selling HAL on 2013-01-31 00:00:00\n", - "Selling STZ on 2013-01-31 00:00:00\n", - "Selling RF on 2013-01-31 00:00:00\n", - "Selling C on 2013-01-31 00:00:00\n", - "Selling LRCX on 2013-01-31 00:00:00\n", - "Selling IPG on 2013-01-31 00:00:00\n", - "Selling SWKS on 2013-01-31 00:00:00\n", - "Selling NOW on 2013-01-31 00:00:00\n", - "Selling BLDR on 2013-01-31 00:00:00\n", - "Selling JBL on 2013-01-31 00:00:00\n", - "Selling GS on 2013-01-31 00:00:00\n", - "Selling HIG on 2013-01-31 00:00:00\n", - "Selling SMCI on 2013-01-31 00:00:00\n", - "Selling NXPI on 2013-01-31 00:00:00\n", - "Selling AMD on 2013-01-31 00:00:00\n", - "Selling AAPL on 2013-01-31 00:00:00\n", - "Selling BAC on 2013-01-31 00:00:00\n", - "Selling MET on 2013-01-31 00:00:00\n", - "Selling PRU on 2013-01-31 00:00:00\n", - "Selling MS on 2013-01-31 00:00:00\n", - "Selling STLD on 2013-01-31 00:00:00\n", - "Selling URI on 2013-01-31 00:00:00\n", - "Selling ENPH on 2013-01-31 00:00:00\n", - "Buying AMCR on 2013-02-28 00:00:00\n", - "Buying WDAY on 2013-02-28 00:00:00\n", - "Buying TPL on 2013-02-28 00:00:00\n", - "Buying DECK on 2013-02-28 00:00:00\n", - "Buying PANW on 2013-02-28 00:00:00\n", - "Buying DLR on 2013-02-28 00:00:00\n", - "Buying TMUS on 2013-02-28 00:00:00\n", - "Buying NKE on 2013-02-28 00:00:00\n", - "Buying SNPS on 2013-02-28 00:00:00\n", - "Buying EW on 2013-02-28 00:00:00\n", - "Buying MAA on 2013-02-28 00:00:00\n", - "Buying TGT on 2013-02-28 00:00:00\n", - "Buying DVA on 2013-02-28 00:00:00\n", - "Buying HUM on 2013-02-28 00:00:00\n", - "Buying CPT on 2013-02-28 00:00:00\n", - "Buying WTW on 2013-02-28 00:00:00\n", - "Buying WM on 2013-02-28 00:00:00\n", - "Buying TECH on 2013-02-28 00:00:00\n", - "Buying FSLR on 2013-02-28 00:00:00\n", - "Buying RSG on 2013-02-28 00:00:00\n", - "Buying EG on 2013-02-28 00:00:00\n", - "Buying WMT on 2013-02-28 00:00:00\n", - "Buying ESS on 2013-02-28 00:00:00\n", - "Buying AVB on 2013-02-28 00:00:00\n", - "Buying O on 2013-02-28 00:00:00\n", - "Buying WELL on 2013-02-28 00:00:00\n", - "Buying MCD on 2013-02-28 00:00:00\n", - "Buying LH on 2013-02-28 00:00:00\n", - "Buying PEP on 2013-02-28 00:00:00\n", - "Buying EQR on 2013-02-28 00:00:00\n", - "Buying JNJ on 2013-02-28 00:00:00\n", - "Buying BBY on 2013-02-28 00:00:00\n", - "Buying TPR on 2013-02-28 00:00:00\n", - "Buying MNST on 2013-02-28 00:00:00\n", - "Buying DG on 2013-02-28 00:00:00\n", - "Buying NFLX on 2013-02-28 00:00:00\n", - "Buying WST on 2013-02-28 00:00:00\n", - "Buying MTCH on 2013-02-28 00:00:00\n", - "Buying ULTA on 2013-02-28 00:00:00\n", - "Buying ACGL on 2013-02-28 00:00:00\n", - "Buying SBAC on 2013-02-28 00:00:00\n", - "Buying UDR on 2013-02-28 00:00:00\n", - "Buying FTNT on 2013-02-28 00:00:00\n", - "Buying DGX on 2013-02-28 00:00:00\n", - "Buying VZ on 2013-02-28 00:00:00\n", - "Selling BKR on 2013-02-28 00:00:00\n", - "Selling IPG on 2013-02-28 00:00:00\n", - "Selling ON on 2013-02-28 00:00:00\n", - "Selling NUE on 2013-02-28 00:00:00\n", - "Selling VMC on 2013-02-28 00:00:00\n", - "Selling FFIV on 2013-02-28 00:00:00\n", - "Selling FANG on 2013-02-28 00:00:00\n", - "Selling C on 2013-02-28 00:00:00\n", - "Selling RF on 2013-02-28 00:00:00\n", - "Selling WY on 2013-02-28 00:00:00\n", - "Selling EBAY on 2013-02-28 00:00:00\n", - "Selling VRTX on 2013-02-28 00:00:00\n", - "Selling PARA on 2013-02-28 00:00:00\n", - "Selling EOG on 2013-02-28 00:00:00\n", - "Selling TER on 2013-02-28 00:00:00\n", - "Selling SMCI on 2013-02-28 00:00:00\n", - "Selling AIG on 2013-02-28 00:00:00\n", - "Selling LEN on 2013-02-28 00:00:00\n", - "Selling JBL on 2013-02-28 00:00:00\n", - "Selling CHTR on 2013-02-28 00:00:00\n", - "Selling LRCX on 2013-02-28 00:00:00\n", - "Selling GS on 2013-02-28 00:00:00\n", - "Selling BLDR on 2013-02-28 00:00:00\n", - "Selling AMD on 2013-02-28 00:00:00\n", - "Selling CE on 2013-02-28 00:00:00\n", - "Selling PSX on 2013-02-28 00:00:00\n", - "Selling VLO on 2013-02-28 00:00:00\n", - "Selling NOW on 2013-02-28 00:00:00\n", - "Selling BAC on 2013-02-28 00:00:00\n", - "Selling EMN on 2013-02-28 00:00:00\n", - "Selling EXPE on 2013-02-28 00:00:00\n", - "Selling STLD on 2013-02-28 00:00:00\n", - "Selling PHM on 2013-02-28 00:00:00\n", - "Selling HIG on 2013-02-28 00:00:00\n", - "Selling PRU on 2013-02-28 00:00:00\n", - "Selling ENPH on 2013-02-28 00:00:00\n", - "Selling MAS on 2013-02-28 00:00:00\n", - "Selling TSLA on 2013-02-28 00:00:00\n", - "Selling DHI on 2013-02-28 00:00:00\n", - "Selling MET on 2013-02-28 00:00:00\n", - "Selling NXPI on 2013-02-28 00:00:00\n", - "Selling AXON on 2013-02-28 00:00:00\n", - "Selling SWKS on 2013-02-28 00:00:00\n", - "Selling MS on 2013-02-28 00:00:00\n", - "Selling URI on 2013-02-28 00:00:00\n", - "Buying WDAY on 2013-03-31 00:00:00\n", - "Buying AMCR on 2013-03-31 00:00:00\n", - "Buying PANW on 2013-03-31 00:00:00\n", - "Buying HUM on 2013-03-31 00:00:00\n", - "Buying NFLX on 2013-03-31 00:00:00\n", - "Buying TPL on 2013-03-31 00:00:00\n", - "Buying MNST on 2013-03-31 00:00:00\n", - "Buying DECK on 2013-03-31 00:00:00\n", - "Buying SNPS on 2013-03-31 00:00:00\n", - "Buying ERIE on 2013-03-31 00:00:00\n", - "Buying MAA on 2013-03-31 00:00:00\n", - "Buying BBY on 2013-03-31 00:00:00\n", - "Buying DLR on 2013-03-31 00:00:00\n", - "Buying TGT on 2013-03-31 00:00:00\n", - "Buying LULU on 2013-03-31 00:00:00\n", - "Buying EXC on 2013-03-31 00:00:00\n", - "Buying NEM on 2013-03-31 00:00:00\n", - "Buying DVA on 2013-03-31 00:00:00\n", - "Buying WMT on 2013-03-31 00:00:00\n", - "Buying TECH on 2013-03-31 00:00:00\n", - "Buying RSG on 2013-03-31 00:00:00\n", - "Buying TMUS on 2013-03-31 00:00:00\n", - "Buying EW on 2013-03-31 00:00:00\n", - "Buying ORLY on 2013-03-31 00:00:00\n", - "Buying TPR on 2013-03-31 00:00:00\n", - "Buying WM on 2013-03-31 00:00:00\n", - "Buying MCD on 2013-03-31 00:00:00\n", - "Buying VZ on 2013-03-31 00:00:00\n", - "Buying CPT on 2013-03-31 00:00:00\n", - "Buying WTW on 2013-03-31 00:00:00\n", - "Buying WELL on 2013-03-31 00:00:00\n", - "Buying WST on 2013-03-31 00:00:00\n", - "Buying PEG on 2013-03-31 00:00:00\n", - "Buying VTR on 2013-03-31 00:00:00\n", - "Buying EG on 2013-03-31 00:00:00\n", - "Buying O on 2013-03-31 00:00:00\n", - "Buying DGX on 2013-03-31 00:00:00\n", - "Buying MRK on 2013-03-31 00:00:00\n", - "Buying DG on 2013-03-31 00:00:00\n", - "Buying FSLR on 2013-03-31 00:00:00\n", - "Buying ELV on 2013-03-31 00:00:00\n", - "Buying LH on 2013-03-31 00:00:00\n", - "Buying EQR on 2013-03-31 00:00:00\n", - "Buying ED on 2013-03-31 00:00:00\n", - "Buying CAG on 2013-03-31 00:00:00\n", - "Selling STX on 2013-03-31 00:00:00\n", - "Selling AMP on 2013-03-31 00:00:00\n", - "Selling PARA on 2013-03-31 00:00:00\n", - "Selling BAC on 2013-03-31 00:00:00\n", - "Selling IVZ on 2013-03-31 00:00:00\n", - "Selling TXN on 2013-03-31 00:00:00\n", - "Selling VRTX on 2013-03-31 00:00:00\n", - "Selling ON on 2013-03-31 00:00:00\n", - "Selling DXCM on 2013-03-31 00:00:00\n", - "Selling SCHW on 2013-03-31 00:00:00\n", - "Selling VLO on 2013-03-31 00:00:00\n", - "Selling AMAT on 2013-03-31 00:00:00\n", - "Selling ADI on 2013-03-31 00:00:00\n", - "Selling EOG on 2013-03-31 00:00:00\n", - "Selling FANG on 2013-03-31 00:00:00\n", - "Selling WY on 2013-03-31 00:00:00\n", - "Selling AXON on 2013-03-31 00:00:00\n", - "Selling PSX on 2013-03-31 00:00:00\n", - "Selling EXPE on 2013-03-31 00:00:00\n", - "Selling LEN on 2013-03-31 00:00:00\n", - "Selling GS on 2013-03-31 00:00:00\n", - "Selling MAS on 2013-03-31 00:00:00\n", - "Selling ORCL on 2013-03-31 00:00:00\n", - "Selling VMC on 2013-03-31 00:00:00\n", - "Selling C on 2013-03-31 00:00:00\n", - "Selling PHM on 2013-03-31 00:00:00\n", - "Selling ENPH on 2013-03-31 00:00:00\n", - "Selling KLAC on 2013-03-31 00:00:00\n", - "Selling TER on 2013-03-31 00:00:00\n", - "Selling MHK on 2013-03-31 00:00:00\n", - "Selling AMD on 2013-03-31 00:00:00\n", - "Selling DHI on 2013-03-31 00:00:00\n", - "Selling LRCX on 2013-03-31 00:00:00\n", - "Selling NXPI on 2013-03-31 00:00:00\n", - "Selling TSLA on 2013-03-31 00:00:00\n", - "Selling HIG on 2013-03-31 00:00:00\n", - "Selling CE on 2013-03-31 00:00:00\n", - "Selling MU on 2013-03-31 00:00:00\n", - "Selling SWKS on 2013-03-31 00:00:00\n", - "Selling EMN on 2013-03-31 00:00:00\n", - "Selling PRU on 2013-03-31 00:00:00\n", - "Selling MET on 2013-03-31 00:00:00\n", - "Selling BLDR on 2013-03-31 00:00:00\n", - "Selling MS on 2013-03-31 00:00:00\n", - "Selling URI on 2013-03-31 00:00:00\n", - "Buying AMCR on 2013-04-30 00:00:00\n", - "Buying HUM on 2013-04-30 00:00:00\n", - "Buying NCLH on 2013-04-30 00:00:00\n", - "Buying VZ on 2013-04-30 00:00:00\n", - "Buying WMT on 2013-04-30 00:00:00\n", - "Buying DTE on 2013-04-30 00:00:00\n", - "Buying EW on 2013-04-30 00:00:00\n", - "Buying MCD on 2013-04-30 00:00:00\n", - "Buying MAA on 2013-04-30 00:00:00\n", - "Buying WTW on 2013-04-30 00:00:00\n", - "Buying ED on 2013-04-30 00:00:00\n", - "Buying DLR on 2013-04-30 00:00:00\n", - "Buying SNPS on 2013-04-30 00:00:00\n", - "Buying LH on 2013-04-30 00:00:00\n", - "Buying PEG on 2013-04-30 00:00:00\n", - "Buying EXC on 2013-04-30 00:00:00\n", - "Buying NEE on 2013-04-30 00:00:00\n", - "Buying SO on 2013-04-30 00:00:00\n", - "Buying ETR on 2013-04-30 00:00:00\n", - "Buying D on 2013-04-30 00:00:00\n", - "Buying TGT on 2013-04-30 00:00:00\n", - "Buying VTR on 2013-04-30 00:00:00\n", - "Buying DG on 2013-04-30 00:00:00\n", - "Buying LDOS on 2013-04-30 00:00:00\n", - "Buying PPL on 2013-04-30 00:00:00\n", - "Buying CPT on 2013-04-30 00:00:00\n", - "Buying WEC on 2013-04-30 00:00:00\n", - "Buying GIS on 2013-04-30 00:00:00\n", - "Buying AJG on 2013-04-30 00:00:00\n", - "Buying CAG on 2013-04-30 00:00:00\n", - "Buying CAH on 2013-04-30 00:00:00\n", - "Buying PSA on 2013-04-30 00:00:00\n", - "Buying COR on 2013-04-30 00:00:00\n", - "Buying PCG on 2013-04-30 00:00:00\n", - "Buying IDXX on 2013-04-30 00:00:00\n", - "Buying JNJ on 2013-04-30 00:00:00\n", - "Buying ERIE on 2013-04-30 00:00:00\n", - "Buying TPL on 2013-04-30 00:00:00\n", - "Buying DUK on 2013-04-30 00:00:00\n", - "Buying XEL on 2013-04-30 00:00:00\n", - "Buying CMS on 2013-04-30 00:00:00\n", - "Buying PG on 2013-04-30 00:00:00\n", - "Buying VTRS on 2013-04-30 00:00:00\n", - "Buying SBAC on 2013-04-30 00:00:00\n", - "Buying EQR on 2013-04-30 00:00:00\n", - "Buying BA on 2013-04-30 00:00:00\n", - "Selling PTC on 2013-04-30 00:00:00\n", - "Selling AMP on 2013-04-30 00:00:00\n", - "Selling F on 2013-04-30 00:00:00\n", - "Selling KMX on 2013-04-30 00:00:00\n", - "Selling RF on 2013-04-30 00:00:00\n", - "Selling ON on 2013-04-30 00:00:00\n", - "Selling PRU on 2013-04-30 00:00:00\n", - "Selling WY on 2013-04-30 00:00:00\n", - "Selling AIG on 2013-04-30 00:00:00\n", - "Selling ETN on 2013-04-30 00:00:00\n", - "Selling ALGN on 2013-04-30 00:00:00\n", - "Selling HAL on 2013-04-30 00:00:00\n", - "Selling AMD on 2013-04-30 00:00:00\n", - "Selling MET on 2013-04-30 00:00:00\n", - "Selling BLK on 2013-04-30 00:00:00\n", - "Selling MGM on 2013-04-30 00:00:00\n", - "Selling IVZ on 2013-04-30 00:00:00\n", - "Selling FANG on 2013-04-30 00:00:00\n", - "Selling APTV on 2013-04-30 00:00:00\n", - "Selling TSLA on 2013-04-30 00:00:00\n", - "Selling EMN on 2013-04-30 00:00:00\n", - "Selling EOG on 2013-04-30 00:00:00\n", - "Selling PSX on 2013-04-30 00:00:00\n", - "Selling AVGO on 2013-04-30 00:00:00\n", - "Selling EXPE on 2013-04-30 00:00:00\n", - "Selling LYB on 2013-04-30 00:00:00\n", - "Selling TER on 2013-04-30 00:00:00\n", - "Selling MHK on 2013-04-30 00:00:00\n", - "Selling HIG on 2013-04-30 00:00:00\n", - "Selling LEN on 2013-04-30 00:00:00\n", - "Selling DHI on 2013-04-30 00:00:00\n", - "Selling VMC on 2013-04-30 00:00:00\n", - "Selling IP on 2013-04-30 00:00:00\n", - "Selling AXON on 2013-04-30 00:00:00\n", - "Selling MS on 2013-04-30 00:00:00\n", - "Selling MAS on 2013-04-30 00:00:00\n", - "Selling TXT on 2013-04-30 00:00:00\n", - "Selling CE on 2013-04-30 00:00:00\n", - "Selling SWKS on 2013-04-30 00:00:00\n", - "Selling URI on 2013-04-30 00:00:00\n", - "Selling BLDR on 2013-04-30 00:00:00\n", - "Selling PHM on 2013-04-30 00:00:00\n", - "Selling NXPI on 2013-04-30 00:00:00\n", - "Selling MU on 2013-04-30 00:00:00\n", - "Selling ENPH on 2013-04-30 00:00:00\n", - "Selling VRTX on 2013-04-30 00:00:00\n", - "Buying AMCR on 2013-05-31 00:00:00\n", - "Buying WMT on 2013-05-31 00:00:00\n", - "Buying EXC on 2013-05-31 00:00:00\n", - "Buying HPQ on 2013-05-31 00:00:00\n", - "Buying HUM on 2013-05-31 00:00:00\n", - "Buying ISRG on 2013-05-31 00:00:00\n", - "Buying FE on 2013-05-31 00:00:00\n", - "Buying PPL on 2013-05-31 00:00:00\n", - "Buying DLR on 2013-05-31 00:00:00\n", - "Buying EIX on 2013-05-31 00:00:00\n", - "Buying COR on 2013-05-31 00:00:00\n", - "Buying DTE on 2013-05-31 00:00:00\n", - "Buying LH on 2013-05-31 00:00:00\n", - "Buying ETR on 2013-05-31 00:00:00\n", - "Buying DG on 2013-05-31 00:00:00\n", - "Buying PEG on 2013-05-31 00:00:00\n", - "Buying CPT on 2013-05-31 00:00:00\n", - "Buying WTW on 2013-05-31 00:00:00\n", - "Buying ED on 2013-05-31 00:00:00\n", - "Buying NCLH on 2013-05-31 00:00:00\n", - "Buying NEM on 2013-05-31 00:00:00\n", - "Buying PCG on 2013-05-31 00:00:00\n", - "Buying TPL on 2013-05-31 00:00:00\n", - "Buying MAA on 2013-05-31 00:00:00\n", - "Buying VZ on 2013-05-31 00:00:00\n", - "Buying ERIE on 2013-05-31 00:00:00\n", - "Buying LULU on 2013-05-31 00:00:00\n", - "Buying AVB on 2013-05-31 00:00:00\n", - "Buying TGT on 2013-05-31 00:00:00\n", - "Buying T on 2013-05-31 00:00:00\n", - "Buying HD on 2013-05-31 00:00:00\n", - "Buying MCD on 2013-05-31 00:00:00\n", - "Buying DUK on 2013-05-31 00:00:00\n", - "Buying SO on 2013-05-31 00:00:00\n", - "Buying EQR on 2013-05-31 00:00:00\n", - "Buying NEE on 2013-05-31 00:00:00\n", - "Buying GIS on 2013-05-31 00:00:00\n", - "Buying ESS on 2013-05-31 00:00:00\n", - "Buying CHTR on 2013-05-31 00:00:00\n", - "Buying BXP on 2013-05-31 00:00:00\n", - "Buying XEL on 2013-05-31 00:00:00\n", - "Buying D on 2013-05-31 00:00:00\n", - "Buying AJG on 2013-05-31 00:00:00\n", - "Buying HSY on 2013-05-31 00:00:00\n", - "Buying AEP on 2013-05-31 00:00:00\n", - "Buying PSA on 2013-05-31 00:00:00\n", - "Selling MLM on 2013-05-31 00:00:00\n", - "Selling PSX on 2013-05-31 00:00:00\n", - "Selling MS on 2013-05-31 00:00:00\n", - "Selling MPWR on 2013-05-31 00:00:00\n", - "Selling PRU on 2013-05-31 00:00:00\n", - "Selling APTV on 2013-05-31 00:00:00\n", - "Selling HAL on 2013-05-31 00:00:00\n", - "Selling MPC on 2013-05-31 00:00:00\n", - "Selling RJF on 2013-05-31 00:00:00\n", - "Selling TER on 2013-05-31 00:00:00\n", - "Selling BEN on 2013-05-31 00:00:00\n", - "Selling ALGN on 2013-05-31 00:00:00\n", - "Selling SWKS on 2013-05-31 00:00:00\n", - "Selling KKR on 2013-05-31 00:00:00\n", - "Selling DHI on 2013-05-31 00:00:00\n", - "Selling EXPE on 2013-05-31 00:00:00\n", - "Selling ODFL on 2013-05-31 00:00:00\n", - "Selling IVZ on 2013-05-31 00:00:00\n", - "Selling MHK on 2013-05-31 00:00:00\n", - "Selling SCHW on 2013-05-31 00:00:00\n", - "Selling SMCI on 2013-05-31 00:00:00\n", - "Selling MAS on 2013-05-31 00:00:00\n", - "Selling AMP on 2013-05-31 00:00:00\n", - "Selling AIG on 2013-05-31 00:00:00\n", - "Selling LEN on 2013-05-31 00:00:00\n", - "Selling BLDR on 2013-05-31 00:00:00\n", - "Selling EOG on 2013-05-31 00:00:00\n", - "Selling BX on 2013-05-31 00:00:00\n", - "Selling MTD on 2013-05-31 00:00:00\n", - "Selling MGM on 2013-05-31 00:00:00\n", - "Selling ETN on 2013-05-31 00:00:00\n", - "Selling CE on 2013-05-31 00:00:00\n", - "Selling BLK on 2013-05-31 00:00:00\n", - "Selling LYB on 2013-05-31 00:00:00\n", - "Selling HIG on 2013-05-31 00:00:00\n", - "Selling URI on 2013-05-31 00:00:00\n", - "Selling IP on 2013-05-31 00:00:00\n", - "Selling DAL on 2013-05-31 00:00:00\n", - "Selling TXT on 2013-05-31 00:00:00\n", - "Selling APO on 2013-05-31 00:00:00\n", - "Selling VMC on 2013-05-31 00:00:00\n", - "Selling MU on 2013-05-31 00:00:00\n", - "Selling PHM on 2013-05-31 00:00:00\n", - "Selling NXPI on 2013-05-31 00:00:00\n", - "Selling VRTX on 2013-05-31 00:00:00\n", - "Selling ENPH on 2013-05-31 00:00:00\n", - "Buying AMCR on 2013-06-30 00:00:00\n", - "Buying COR on 2013-06-30 00:00:00\n", - "Buying EXC on 2013-06-30 00:00:00\n", - "Buying WMT on 2013-06-30 00:00:00\n", - "Buying WTW on 2013-06-30 00:00:00\n", - "Buying LH on 2013-06-30 00:00:00\n", - "Buying TGT on 2013-06-30 00:00:00\n", - "Buying PPL on 2013-06-30 00:00:00\n", - "Buying IRM on 2013-06-30 00:00:00\n", - "Buying DLR on 2013-06-30 00:00:00\n", - "Buying ULTA on 2013-06-30 00:00:00\n", - "Buying TDG on 2013-06-30 00:00:00\n", - "Buying DG on 2013-06-30 00:00:00\n", - "Buying ZTS on 2013-06-30 00:00:00\n", - "Buying TPL on 2013-06-30 00:00:00\n", - "Buying HUM on 2013-06-30 00:00:00\n", - "Buying CHTR on 2013-06-30 00:00:00\n", - "Buying ISRG on 2013-06-30 00:00:00\n", - "Buying NCLH on 2013-06-30 00:00:00\n", - "Buying FE on 2013-06-30 00:00:00\n", - "Buying GIS on 2013-06-30 00:00:00\n", - "Buying USB on 2013-06-30 00:00:00\n", - "Buying WBA on 2013-06-30 00:00:00\n", - "Buying IDXX on 2013-06-30 00:00:00\n", - "Buying PEP on 2013-06-30 00:00:00\n", - "Buying MCD on 2013-06-30 00:00:00\n", - "Buying HPQ on 2013-06-30 00:00:00\n", - "Buying AZO on 2013-06-30 00:00:00\n", - "Buying TECH on 2013-06-30 00:00:00\n", - "Buying ED on 2013-06-30 00:00:00\n", - "Buying LIN on 2013-06-30 00:00:00\n", - "Buying JNPR on 2013-06-30 00:00:00\n", - "Buying DUK on 2013-06-30 00:00:00\n", - "Buying T on 2013-06-30 00:00:00\n", - "Buying RMD on 2013-06-30 00:00:00\n", - "Buying FDS on 2013-06-30 00:00:00\n", - "Buying NTAP on 2013-06-30 00:00:00\n", - "Buying TSN on 2013-06-30 00:00:00\n", - "Buying VRSK on 2013-06-30 00:00:00\n", - "Buying VRSN on 2013-06-30 00:00:00\n", - "Buying NEM on 2013-06-30 00:00:00\n", - "Buying HSY on 2013-06-30 00:00:00\n", - "Buying AWK on 2013-06-30 00:00:00\n", - "Buying DGX on 2013-06-30 00:00:00\n", - "Buying QCOM on 2013-06-30 00:00:00\n", - "Buying MAA on 2013-06-30 00:00:00\n", - "Selling WYNN on 2013-06-30 00:00:00\n", - "Selling LRCX on 2013-06-30 00:00:00\n", - "Selling MLM on 2013-06-30 00:00:00\n", - "Selling SWKS on 2013-06-30 00:00:00\n", - "Selling KKR on 2013-06-30 00:00:00\n", - "Selling APTV on 2013-06-30 00:00:00\n", - "Selling F on 2013-06-30 00:00:00\n", - "Selling HAL on 2013-06-30 00:00:00\n", - "Selling LYB on 2013-06-30 00:00:00\n", - "Selling MPC on 2013-06-30 00:00:00\n", - "Selling TER on 2013-06-30 00:00:00\n", - "Selling PSX on 2013-06-30 00:00:00\n", - "Selling EOG on 2013-06-30 00:00:00\n", - "Selling MTD on 2013-06-30 00:00:00\n", - "Selling IP on 2013-06-30 00:00:00\n", - "Selling MU on 2013-06-30 00:00:00\n", - "Selling INCY on 2013-06-30 00:00:00\n", - "Selling VLO on 2013-06-30 00:00:00\n", - "Selling CE on 2013-06-30 00:00:00\n", - "Selling ETN on 2013-06-30 00:00:00\n", - "Selling MS on 2013-06-30 00:00:00\n", - "Selling HIG on 2013-06-30 00:00:00\n", - "Selling AMP on 2013-06-30 00:00:00\n", - "Selling KMX on 2013-06-30 00:00:00\n", - "Selling MHK on 2013-06-30 00:00:00\n", - "Selling IVZ on 2013-06-30 00:00:00\n", - "Selling BEN on 2013-06-30 00:00:00\n", - "Selling SMCI on 2013-06-30 00:00:00\n", - "Selling URI on 2013-06-30 00:00:00\n", - "Selling REGN on 2013-06-30 00:00:00\n", - "Selling BX on 2013-06-30 00:00:00\n", - "Selling TXT on 2013-06-30 00:00:00\n", - "Selling FSLR on 2013-06-30 00:00:00\n", - "Selling MAS on 2013-06-30 00:00:00\n", - "Selling DAL on 2013-06-30 00:00:00\n", - "Selling MGM on 2013-06-30 00:00:00\n", - "Selling LEN on 2013-06-30 00:00:00\n", - "Selling VMC on 2013-06-30 00:00:00\n", - "Selling DHI on 2013-06-30 00:00:00\n", - "Selling BLK on 2013-06-30 00:00:00\n", - "Selling APO on 2013-06-30 00:00:00\n", - "Selling NXPI on 2013-06-30 00:00:00\n", - "Selling VRTX on 2013-06-30 00:00:00\n", - "Selling BLDR on 2013-06-30 00:00:00\n", - "Selling PHM on 2013-06-30 00:00:00\n", - "Selling ENPH on 2013-06-30 00:00:00\n", - "Buying ULTA on 2013-07-31 00:00:00\n", - "Buying AAPL on 2013-07-31 00:00:00\n", - "Buying JNPR on 2013-07-31 00:00:00\n", - "Buying ISRG on 2013-07-31 00:00:00\n", - "Buying WDAY on 2013-07-31 00:00:00\n", - "Buying AMCR on 2013-07-31 00:00:00\n", - "Buying IRM on 2013-07-31 00:00:00\n", - "Buying LH on 2013-07-31 00:00:00\n", - "Buying CHTR on 2013-07-31 00:00:00\n", - "Buying TDG on 2013-07-31 00:00:00\n", - "Buying RMD on 2013-07-31 00:00:00\n", - "Buying DGX on 2013-07-31 00:00:00\n", - "Buying TPL on 2013-07-31 00:00:00\n", - "Buying NTAP on 2013-07-31 00:00:00\n", - "Buying ROL on 2013-07-31 00:00:00\n", - "Buying QCOM on 2013-07-31 00:00:00\n", - "Buying CSCO on 2013-07-31 00:00:00\n", - "Buying LIN on 2013-07-31 00:00:00\n", - "Buying NEM on 2013-07-31 00:00:00\n", - "Buying USB on 2013-07-31 00:00:00\n", - "Buying COR on 2013-07-31 00:00:00\n", - "Buying WMT on 2013-07-31 00:00:00\n", - "Buying TSN on 2013-07-31 00:00:00\n", - "Buying ZTS on 2013-07-31 00:00:00\n", - "Buying PPL on 2013-07-31 00:00:00\n", - "Buying TGT on 2013-07-31 00:00:00\n", - "Buying LYV on 2013-07-31 00:00:00\n", - "Buying AWK on 2013-07-31 00:00:00\n", - "Buying BR on 2013-07-31 00:00:00\n", - "Buying EXC on 2013-07-31 00:00:00\n", - "Buying WST on 2013-07-31 00:00:00\n", - "Buying CBOE on 2013-07-31 00:00:00\n", - "Buying TECH on 2013-07-31 00:00:00\n", - "Buying SJM on 2013-07-31 00:00:00\n", - "Buying TMUS on 2013-07-31 00:00:00\n", - "Buying HPQ on 2013-07-31 00:00:00\n", - "Buying NCLH on 2013-07-31 00:00:00\n", - "Buying FDS on 2013-07-31 00:00:00\n", - "Buying APD on 2013-07-31 00:00:00\n", - "Buying CME on 2013-07-31 00:00:00\n", - "Buying PEP on 2013-07-31 00:00:00\n", - "Buying MCD on 2013-07-31 00:00:00\n", - "Buying ORLY on 2013-07-31 00:00:00\n", - "Buying BG on 2013-07-31 00:00:00\n", - "Buying WTW on 2013-07-31 00:00:00\n", - "Buying DLR on 2013-07-31 00:00:00\n", - "Selling BXP on 2013-07-31 00:00:00\n", - "Selling WYNN on 2013-07-31 00:00:00\n", - "Selling MPC on 2013-07-31 00:00:00\n", - "Selling PODD on 2013-07-31 00:00:00\n", - "Selling RCL on 2013-07-31 00:00:00\n", - "Selling AMGN on 2013-07-31 00:00:00\n", - "Selling TXT on 2013-07-31 00:00:00\n", - "Selling VLO on 2013-07-31 00:00:00\n", - "Selling HIG on 2013-07-31 00:00:00\n", - "Selling VMC on 2013-07-31 00:00:00\n", - "Selling OKE on 2013-07-31 00:00:00\n", - "Selling FANG on 2013-07-31 00:00:00\n", - "Selling MCO on 2013-07-31 00:00:00\n", - "Selling MHK on 2013-07-31 00:00:00\n", - "Selling SMCI on 2013-07-31 00:00:00\n", - "Selling GLW on 2013-07-31 00:00:00\n", - "Selling GS on 2013-07-31 00:00:00\n", - "Selling DOC on 2013-07-31 00:00:00\n", - "Selling KMX on 2013-07-31 00:00:00\n", - "Selling VTR on 2013-07-31 00:00:00\n", - "Selling LRCX on 2013-07-31 00:00:00\n", - "Selling TROW on 2013-07-31 00:00:00\n", - "Selling URI on 2013-07-31 00:00:00\n", - "Selling DAL on 2013-07-31 00:00:00\n", - "Selling BBY on 2013-07-31 00:00:00\n", - "Selling AMP on 2013-07-31 00:00:00\n", - "Selling INCY on 2013-07-31 00:00:00\n", - "Selling MGM on 2013-07-31 00:00:00\n", - "Selling C on 2013-07-31 00:00:00\n", - "Selling KKR on 2013-07-31 00:00:00\n", - "Selling LULU on 2013-07-31 00:00:00\n", - "Selling IVZ on 2013-07-31 00:00:00\n", - "Selling MS on 2013-07-31 00:00:00\n", - "Selling BEN on 2013-07-31 00:00:00\n", - "Selling MAS on 2013-07-31 00:00:00\n", - "Selling LEN on 2013-07-31 00:00:00\n", - "Selling AMD on 2013-07-31 00:00:00\n", - "Selling BX on 2013-07-31 00:00:00\n", - "Selling APO on 2013-07-31 00:00:00\n", - "Selling BLK on 2013-07-31 00:00:00\n", - "Selling DHI on 2013-07-31 00:00:00\n", - "Selling REGN on 2013-07-31 00:00:00\n", - "Selling FSLR on 2013-07-31 00:00:00\n", - "Selling PHM on 2013-07-31 00:00:00\n", - "Selling BLDR on 2013-07-31 00:00:00\n", - "Selling ENPH on 2013-07-31 00:00:00\n", - "Buying AXON on 2013-08-31 00:00:00\n", - "Buying IRM on 2013-08-31 00:00:00\n", - "Buying ISRG on 2013-08-31 00:00:00\n", - "Buying IQV on 2013-08-31 00:00:00\n", - "Buying RMD on 2013-08-31 00:00:00\n", - "Buying LH on 2013-08-31 00:00:00\n", - "Buying WDAY on 2013-08-31 00:00:00\n", - "Buying DGX on 2013-08-31 00:00:00\n", - "Buying AMCR on 2013-08-31 00:00:00\n", - "Buying ULTA on 2013-08-31 00:00:00\n", - "Buying TPL on 2013-08-31 00:00:00\n", - "Buying LYV on 2013-08-31 00:00:00\n", - "Buying LIN on 2013-08-31 00:00:00\n", - "Buying TGT on 2013-08-31 00:00:00\n", - "Buying TDG on 2013-08-31 00:00:00\n", - "Buying AAPL on 2013-08-31 00:00:00\n", - "Buying NVDA on 2013-08-31 00:00:00\n", - "Buying AWK on 2013-08-31 00:00:00\n", - "Buying TSN on 2013-08-31 00:00:00\n", - "Buying MCD on 2013-08-31 00:00:00\n", - "Buying CME on 2013-08-31 00:00:00\n", - "Buying ROL on 2013-08-31 00:00:00\n", - "Buying WMT on 2013-08-31 00:00:00\n", - "Buying CHTR on 2013-08-31 00:00:00\n", - "Buying QCOM on 2013-08-31 00:00:00\n", - "Buying USB on 2013-08-31 00:00:00\n", - "Buying AZO on 2013-08-31 00:00:00\n", - "Buying PFE on 2013-08-31 00:00:00\n", - "Buying BG on 2013-08-31 00:00:00\n", - "Buying PPL on 2013-08-31 00:00:00\n", - "Buying CHD on 2013-08-31 00:00:00\n", - "Buying VRSK on 2013-08-31 00:00:00\n", - "Buying NCLH on 2013-08-31 00:00:00\n", - "Buying ADP on 2013-08-31 00:00:00\n", - "Buying HUM on 2013-08-31 00:00:00\n", - "Buying COST on 2013-08-31 00:00:00\n", - "Buying ALB on 2013-08-31 00:00:00\n", - "Buying PCG on 2013-08-31 00:00:00\n", - "Buying KDP on 2013-08-31 00:00:00\n", - "Buying BDX on 2013-08-31 00:00:00\n", - "Buying COR on 2013-08-31 00:00:00\n", - "Buying K on 2013-08-31 00:00:00\n", - "Buying CI on 2013-08-31 00:00:00\n", - "Buying NTAP on 2013-08-31 00:00:00\n", - "Buying MRK on 2013-08-31 00:00:00\n", - "Buying SBAC on 2013-08-31 00:00:00\n", - "Selling APO on 2013-08-31 00:00:00\n", - "Selling MCO on 2013-08-31 00:00:00\n", - "Selling F on 2013-08-31 00:00:00\n", - "Selling VMC on 2013-08-31 00:00:00\n", - "Selling TROW on 2013-08-31 00:00:00\n", - "Selling GS on 2013-08-31 00:00:00\n", - "Selling LEN on 2013-08-31 00:00:00\n", - "Selling NFLX on 2013-08-31 00:00:00\n", - "Selling C on 2013-08-31 00:00:00\n", - "Selling HST on 2013-08-31 00:00:00\n", - "Selling TXT on 2013-08-31 00:00:00\n", - "Selling MPC on 2013-08-31 00:00:00\n", - "Selling LVS on 2013-08-31 00:00:00\n", - "Selling BWA on 2013-08-31 00:00:00\n", - "Selling LRCX on 2013-08-31 00:00:00\n", - "Selling AMP on 2013-08-31 00:00:00\n", - "Selling ANSS on 2013-08-31 00:00:00\n", - "Selling FFIV on 2013-08-31 00:00:00\n", - "Selling TSLA on 2013-08-31 00:00:00\n", - "Selling RCL on 2013-08-31 00:00:00\n", - "Selling MHK on 2013-08-31 00:00:00\n", - "Selling KKR on 2013-08-31 00:00:00\n", - "Selling MU on 2013-08-31 00:00:00\n", - "Selling KMX on 2013-08-31 00:00:00\n", - "Selling MAS on 2013-08-31 00:00:00\n", - "Selling MGM on 2013-08-31 00:00:00\n", - "Selling DAL on 2013-08-31 00:00:00\n", - "Selling URI on 2013-08-31 00:00:00\n", - "Selling UAL on 2013-08-31 00:00:00\n", - "Selling BEN on 2013-08-31 00:00:00\n", - "Selling DHI on 2013-08-31 00:00:00\n", - "Selling AMD on 2013-08-31 00:00:00\n", - "Selling IVZ on 2013-08-31 00:00:00\n", - "Selling FANG on 2013-08-31 00:00:00\n", - "Selling DXCM on 2013-08-31 00:00:00\n", - "Selling NXPI on 2013-08-31 00:00:00\n", - "Selling PHM on 2013-08-31 00:00:00\n", - "Selling MS on 2013-08-31 00:00:00\n", - "Selling BLK on 2013-08-31 00:00:00\n", - "Selling BX on 2013-08-31 00:00:00\n", - "Selling BBY on 2013-08-31 00:00:00\n", - "Selling LULU on 2013-08-31 00:00:00\n", - "Selling REGN on 2013-08-31 00:00:00\n", - "Selling FSLR on 2013-08-31 00:00:00\n", - "Selling BLDR on 2013-08-31 00:00:00\n", - "Selling ENPH on 2013-08-31 00:00:00\n", - "Buying ISRG on 2013-09-30 00:00:00\n", - "Buying AXON on 2013-09-30 00:00:00\n", - "Buying LDOS on 2013-09-30 00:00:00\n", - "Buying CME on 2013-09-30 00:00:00\n", - "Buying LH on 2013-09-30 00:00:00\n", - "Buying DGX on 2013-09-30 00:00:00\n", - "Buying NWSA on 2013-09-30 00:00:00\n", - "Buying TPL on 2013-09-30 00:00:00\n", - "Buying NWS on 2013-09-30 00:00:00\n", - "Buying INCY on 2013-09-30 00:00:00\n", - "Buying AAPL on 2013-09-30 00:00:00\n", - "Buying ALB on 2013-09-30 00:00:00\n", - "Buying NCLH on 2013-09-30 00:00:00\n", - "Buying AMCR on 2013-09-30 00:00:00\n", - "Buying CCI on 2013-09-30 00:00:00\n", - "Buying ELV on 2013-09-30 00:00:00\n", - "Buying CNC on 2013-09-30 00:00:00\n", - "Buying PFE on 2013-09-30 00:00:00\n", - "Buying HPQ on 2013-09-30 00:00:00\n", - "Buying K on 2013-09-30 00:00:00\n", - "Buying ERIE on 2013-09-30 00:00:00\n", - "Buying IQV on 2013-09-30 00:00:00\n", - "Buying MCD on 2013-09-30 00:00:00\n", - "Buying CLX on 2013-09-30 00:00:00\n", - "Buying CAG on 2013-09-30 00:00:00\n", - "Buying HOLX on 2013-09-30 00:00:00\n", - "Buying MRK on 2013-09-30 00:00:00\n", - "Buying VZ on 2013-09-30 00:00:00\n", - "Buying INTC on 2013-09-30 00:00:00\n", - "Buying BG on 2013-09-30 00:00:00\n", - "Buying KMI on 2013-09-30 00:00:00\n", - "Buying SBAC on 2013-09-30 00:00:00\n", - "Buying PCG on 2013-09-30 00:00:00\n", - "Buying EG on 2013-09-30 00:00:00\n", - "Buying ADP on 2013-09-30 00:00:00\n", - "Buying MPWR on 2013-09-30 00:00:00\n", - "Buying FMC on 2013-09-30 00:00:00\n", - "Buying XOM on 2013-09-30 00:00:00\n", - "Buying CMG on 2013-09-30 00:00:00\n", - "Buying HUM on 2013-09-30 00:00:00\n", - "Buying NVDA on 2013-09-30 00:00:00\n", - "Buying TFX on 2013-09-30 00:00:00\n", - "Buying LIN on 2013-09-30 00:00:00\n", - "Buying AZO on 2013-09-30 00:00:00\n", - "Buying IBM on 2013-09-30 00:00:00\n", - "Buying LLY on 2013-09-30 00:00:00\n", - "Selling MOS on 2013-09-30 00:00:00\n", - "Selling PARA on 2013-09-30 00:00:00\n", - "Selling KKR on 2013-09-30 00:00:00\n", - "Selling GS on 2013-09-30 00:00:00\n", - "Selling LULU on 2013-09-30 00:00:00\n", - "Selling F on 2013-09-30 00:00:00\n", - "Selling FDX on 2013-09-30 00:00:00\n", - "Selling AMP on 2013-09-30 00:00:00\n", - "Selling ULTA on 2013-09-30 00:00:00\n", - "Selling NFLX on 2013-09-30 00:00:00\n", - "Selling BLK on 2013-09-30 00:00:00\n", - "Selling C on 2013-09-30 00:00:00\n", - "Selling GM on 2013-09-30 00:00:00\n", - "Selling PRU on 2013-09-30 00:00:00\n", - "Selling APO on 2013-09-30 00:00:00\n", - "Selling PODD on 2013-09-30 00:00:00\n", - "Selling LEN on 2013-09-30 00:00:00\n", - "Selling ANSS on 2013-09-30 00:00:00\n", - "Selling HST on 2013-09-30 00:00:00\n", - "Selling IVZ on 2013-09-30 00:00:00\n", - "Selling MHK on 2013-09-30 00:00:00\n", - "Selling MAS on 2013-09-30 00:00:00\n", - "Selling PKG on 2013-09-30 00:00:00\n", - "Selling LKQ on 2013-09-30 00:00:00\n", - "Selling URI on 2013-09-30 00:00:00\n", - "Selling NDSN on 2013-09-30 00:00:00\n", - "Selling FANG on 2013-09-30 00:00:00\n", - "Selling BX on 2013-09-30 00:00:00\n", - "Selling VMC on 2013-09-30 00:00:00\n", - "Selling JNPR on 2013-09-30 00:00:00\n", - "Selling MS on 2013-09-30 00:00:00\n", - "Selling PHM on 2013-09-30 00:00:00\n", - "Selling BBY on 2013-09-30 00:00:00\n", - "Selling BEN on 2013-09-30 00:00:00\n", - "Selling TXT on 2013-09-30 00:00:00\n", - "Selling DAL on 2013-09-30 00:00:00\n", - "Selling FSLR on 2013-09-30 00:00:00\n", - "Selling DHI on 2013-09-30 00:00:00\n", - "Selling MU on 2013-09-30 00:00:00\n", - "Selling FFIV on 2013-09-30 00:00:00\n", - "Selling DXCM on 2013-09-30 00:00:00\n", - "Selling UAL on 2013-09-30 00:00:00\n", - "Selling BLDR on 2013-09-30 00:00:00\n", - "Selling REGN on 2013-09-30 00:00:00\n", - "Selling ENPH on 2013-09-30 00:00:00\n", - "Selling AMD on 2013-09-30 00:00:00\n", - "Buying DGX on 2013-10-31 00:00:00\n", - "Buying ISRG on 2013-10-31 00:00:00\n", - "Buying AMCR on 2013-10-31 00:00:00\n", - "Buying TPL on 2013-10-31 00:00:00\n", - "Buying AAPL on 2013-10-31 00:00:00\n", - "Buying LH on 2013-10-31 00:00:00\n", - "Buying AXON on 2013-10-31 00:00:00\n", - "Buying HOLX on 2013-10-31 00:00:00\n", - "Buying LDOS on 2013-10-31 00:00:00\n", - "Buying DE on 2013-10-31 00:00:00\n", - "Buying PANW on 2013-10-31 00:00:00\n", - "Buying SWK on 2013-10-31 00:00:00\n", - "Buying MRK on 2013-10-31 00:00:00\n", - "Buying TFX on 2013-10-31 00:00:00\n", - "Buying BG on 2013-10-31 00:00:00\n", - "Buying TDG on 2013-10-31 00:00:00\n", - "Buying NWS on 2013-10-31 00:00:00\n", - "Buying EXC on 2013-10-31 00:00:00\n", - "Buying CCI on 2013-10-31 00:00:00\n", - "Buying HPQ on 2013-10-31 00:00:00\n", - "Buying NWSA on 2013-10-31 00:00:00\n", - "Buying KDP on 2013-10-31 00:00:00\n", - "Buying ED on 2013-10-31 00:00:00\n", - "Buying GEN on 2013-10-31 00:00:00\n", - "Buying TPR on 2013-10-31 00:00:00\n", - "Buying YUM on 2013-10-31 00:00:00\n", - "Buying PCG on 2013-10-31 00:00:00\n", - "Buying MCD on 2013-10-31 00:00:00\n", - "Buying ERIE on 2013-10-31 00:00:00\n", - "Buying TRGP on 2013-10-31 00:00:00\n", - "Buying CVX on 2013-10-31 00:00:00\n", - "Buying K on 2013-10-31 00:00:00\n", - "Buying NVDA on 2013-10-31 00:00:00\n", - "Buying CAG on 2013-10-31 00:00:00\n", - "Buying ALB on 2013-10-31 00:00:00\n", - "Buying EIX on 2013-10-31 00:00:00\n", - "Buying FE on 2013-10-31 00:00:00\n", - "Buying NCLH on 2013-10-31 00:00:00\n", - "Buying WRB on 2013-10-31 00:00:00\n", - "Buying XOM on 2013-10-31 00:00:00\n", - "Buying NEM on 2013-10-31 00:00:00\n", - "Buying NRG on 2013-10-31 00:00:00\n", - "Buying WMT on 2013-10-31 00:00:00\n", - "Buying AZO on 2013-10-31 00:00:00\n", - "Buying INTU on 2013-10-31 00:00:00\n", - "Buying KMI on 2013-10-31 00:00:00\n", - "Selling NXPI on 2013-10-31 00:00:00\n", - "Selling AMP on 2013-10-31 00:00:00\n", - "Selling WDC on 2013-10-31 00:00:00\n", - "Selling MHK on 2013-10-31 00:00:00\n", - "Selling F on 2013-10-31 00:00:00\n", - "Selling C on 2013-10-31 00:00:00\n", - "Selling VRTX on 2013-10-31 00:00:00\n", - "Selling BWA on 2013-10-31 00:00:00\n", - "Selling CBRE on 2013-10-31 00:00:00\n", - "Selling ADBE on 2013-10-31 00:00:00\n", - "Selling DXCM on 2013-10-31 00:00:00\n", - "Selling PRU on 2013-10-31 00:00:00\n", - "Selling TXT on 2013-10-31 00:00:00\n", - "Selling APO on 2013-10-31 00:00:00\n", - "Selling PHM on 2013-10-31 00:00:00\n", - "Selling MS on 2013-10-31 00:00:00\n", - "Selling LKQ on 2013-10-31 00:00:00\n", - "Selling HST on 2013-10-31 00:00:00\n", - "Selling KKR on 2013-10-31 00:00:00\n", - "Selling BEN on 2013-10-31 00:00:00\n", - "Selling ETN on 2013-10-31 00:00:00\n", - "Selling MAS on 2013-10-31 00:00:00\n", - "Selling MU on 2013-10-31 00:00:00\n", - "Selling RCL on 2013-10-31 00:00:00\n", - "Selling BLK on 2013-10-31 00:00:00\n", - "Selling AMZN on 2013-10-31 00:00:00\n", - "Selling DFS on 2013-10-31 00:00:00\n", - "Selling PARA on 2013-10-31 00:00:00\n", - "Selling DHI on 2013-10-31 00:00:00\n", - "Selling BX on 2013-10-31 00:00:00\n", - "Selling GILD on 2013-10-31 00:00:00\n", - "Selling PODD on 2013-10-31 00:00:00\n", - "Selling IVZ on 2013-10-31 00:00:00\n", - "Selling UAL on 2013-10-31 00:00:00\n", - "Selling EPAM on 2013-10-31 00:00:00\n", - "Selling NFLX on 2013-10-31 00:00:00\n", - "Selling FFIV on 2013-10-31 00:00:00\n", - "Selling JNPR on 2013-10-31 00:00:00\n", - "Selling URI on 2013-10-31 00:00:00\n", - "Selling NOW on 2013-10-31 00:00:00\n", - "Selling BBY on 2013-10-31 00:00:00\n", - "Selling BIIB on 2013-10-31 00:00:00\n", - "Selling FSLR on 2013-10-31 00:00:00\n", - "Selling BLDR on 2013-10-31 00:00:00\n", - "Selling REGN on 2013-10-31 00:00:00\n", - "Selling ENPH on 2013-10-31 00:00:00\n", - "Buying DXCM on 2013-11-30 00:00:00\n", - "Buying DGX on 2013-11-30 00:00:00\n", - "Buying AMCR on 2013-11-30 00:00:00\n", - "Buying ISRG on 2013-11-30 00:00:00\n", - "Buying TPL on 2013-11-30 00:00:00\n", - "Buying HOLX on 2013-11-30 00:00:00\n", - "Buying LH on 2013-11-30 00:00:00\n", - "Buying SWK on 2013-11-30 00:00:00\n", - "Buying TFX on 2013-11-30 00:00:00\n", - "Buying ZBRA on 2013-11-30 00:00:00\n", - "Buying AAPL on 2013-11-30 00:00:00\n", - "Buying ERIE on 2013-11-30 00:00:00\n", - "Buying LDOS on 2013-11-30 00:00:00\n", - "Buying DVA on 2013-11-30 00:00:00\n", - "Buying DE on 2013-11-30 00:00:00\n", - "Buying ED on 2013-11-30 00:00:00\n", - "Buying LYV on 2013-11-30 00:00:00\n", - "Buying BG on 2013-11-30 00:00:00\n", - "Buying MRK on 2013-11-30 00:00:00\n", - "Buying EIX on 2013-11-30 00:00:00\n", - "Buying MCD on 2013-11-30 00:00:00\n", - "Buying CDW on 2013-11-30 00:00:00\n", - "Buying IDXX on 2013-11-30 00:00:00\n", - "Buying TPR on 2013-11-30 00:00:00\n", - "Buying EXC on 2013-11-30 00:00:00\n", - "Buying MNST on 2013-11-30 00:00:00\n", - "Buying HPQ on 2013-11-30 00:00:00\n", - "Buying BAX on 2013-11-30 00:00:00\n", - "Buying EW on 2013-11-30 00:00:00\n", - "Buying INTU on 2013-11-30 00:00:00\n", - "Buying HUM on 2013-11-30 00:00:00\n", - "Buying ZBH on 2013-11-30 00:00:00\n", - "Buying CAG on 2013-11-30 00:00:00\n", - "Buying KDP on 2013-11-30 00:00:00\n", - "Buying ELV on 2013-11-30 00:00:00\n", - "Buying FE on 2013-11-30 00:00:00\n", - "Buying NWS on 2013-11-30 00:00:00\n", - "Buying GEN on 2013-11-30 00:00:00\n", - "Buying CCI on 2013-11-30 00:00:00\n", - "Buying SBAC on 2013-11-30 00:00:00\n", - "Buying PAYX on 2013-11-30 00:00:00\n", - "Buying ICE on 2013-11-30 00:00:00\n", - "Buying TDG on 2013-11-30 00:00:00\n", - "Buying WRB on 2013-11-30 00:00:00\n", - "Buying MSI on 2013-11-30 00:00:00\n", - "Buying UNP on 2013-11-30 00:00:00\n", - "Selling AKAM on 2013-11-30 00:00:00\n", - "Selling FTNT on 2013-11-30 00:00:00\n", - "Selling RJF on 2013-11-30 00:00:00\n", - "Selling FFIV on 2013-11-30 00:00:00\n", - "Selling MS on 2013-11-30 00:00:00\n", - "Selling PFG on 2013-11-30 00:00:00\n", - "Selling DD on 2013-11-30 00:00:00\n", - "Selling ABBV on 2013-11-30 00:00:00\n", - "Selling SHW on 2013-11-30 00:00:00\n", - "Selling CPAY on 2013-11-30 00:00:00\n", - "Selling APTV on 2013-11-30 00:00:00\n", - "Selling BKR on 2013-11-30 00:00:00\n", - "Selling TYL on 2013-11-30 00:00:00\n", - "Selling VMC on 2013-11-30 00:00:00\n", - "Selling ETN on 2013-11-30 00:00:00\n", - "Selling BLK on 2013-11-30 00:00:00\n", - "Selling IVZ on 2013-11-30 00:00:00\n", - "Selling DLR on 2013-11-30 00:00:00\n", - "Selling HST on 2013-11-30 00:00:00\n", - "Selling PARA on 2013-11-30 00:00:00\n", - "Selling MOH on 2013-11-30 00:00:00\n", - "Selling LKQ on 2013-11-30 00:00:00\n", - "Selling APO on 2013-11-30 00:00:00\n", - "Selling PHM on 2013-11-30 00:00:00\n", - "Selling KKR on 2013-11-30 00:00:00\n", - "Selling PKG on 2013-11-30 00:00:00\n", - "Selling DHI on 2013-11-30 00:00:00\n", - "Selling GILD on 2013-11-30 00:00:00\n", - "Selling MAS on 2013-11-30 00:00:00\n", - "Selling RCL on 2013-11-30 00:00:00\n", - "Selling ADBE on 2013-11-30 00:00:00\n", - "Selling AXON on 2013-11-30 00:00:00\n", - "Selling AMZN on 2013-11-30 00:00:00\n", - "Selling BBY on 2013-11-30 00:00:00\n", - "Selling EPAM on 2013-11-30 00:00:00\n", - "Selling CRM on 2013-11-30 00:00:00\n", - "Selling BX on 2013-11-30 00:00:00\n", - "Selling NFLX on 2013-11-30 00:00:00\n", - "Selling REGN on 2013-11-30 00:00:00\n", - "Selling BLDR on 2013-11-30 00:00:00\n", - "Selling URI on 2013-11-30 00:00:00\n", - "Selling INCY on 2013-11-30 00:00:00\n", - "Selling BIIB on 2013-11-30 00:00:00\n", - "Selling FSLR on 2013-11-30 00:00:00\n", - "Selling NOW on 2013-11-30 00:00:00\n", - "Selling ENPH on 2013-11-30 00:00:00\n", - "Buying DXCM on 2013-12-31 00:00:00\n", - "Buying AMCR on 2013-12-31 00:00:00\n", - "Buying JBL on 2013-12-31 00:00:00\n", - "Buying DGX on 2013-12-31 00:00:00\n", - "Buying SWK on 2013-12-31 00:00:00\n", - "Buying TPL on 2013-12-31 00:00:00\n", - "Buying ALB on 2013-12-31 00:00:00\n", - "Buying AAPL on 2013-12-31 00:00:00\n", - "Buying HOLX on 2013-12-31 00:00:00\n", - "Buying ULTA on 2013-12-31 00:00:00\n", - "Buying AMD on 2013-12-31 00:00:00\n", - "Buying IDXX on 2013-12-31 00:00:00\n", - "Buying ED on 2013-12-31 00:00:00\n", - "Buying DE on 2013-12-31 00:00:00\n", - "Buying FE on 2013-12-31 00:00:00\n", - "Buying EXC on 2013-12-31 00:00:00\n", - "Buying MNST on 2013-12-31 00:00:00\n", - "Buying HPQ on 2013-12-31 00:00:00\n", - "Buying TFX on 2013-12-31 00:00:00\n", - "Buying DLTR on 2013-12-31 00:00:00\n", - "Buying BG on 2013-12-31 00:00:00\n", - "Buying COO on 2013-12-31 00:00:00\n", - "Buying ZBRA on 2013-12-31 00:00:00\n", - "Buying SBAC on 2013-12-31 00:00:00\n", - "Buying TDG on 2013-12-31 00:00:00\n", - "Buying EIX on 2013-12-31 00:00:00\n", - "Buying CCI on 2013-12-31 00:00:00\n", - "Buying ISRG on 2013-12-31 00:00:00\n", - "Buying GEN on 2013-12-31 00:00:00\n", - "Buying AEP on 2013-12-31 00:00:00\n", - "Buying CPT on 2013-12-31 00:00:00\n", - "Buying MU on 2013-12-31 00:00:00\n", - "Buying RSG on 2013-12-31 00:00:00\n", - "Buying CDNS on 2013-12-31 00:00:00\n", - "Buying TSLA on 2013-12-31 00:00:00\n", - "Buying TPR on 2013-12-31 00:00:00\n", - "Buying SO on 2013-12-31 00:00:00\n", - "Buying CDW on 2013-12-31 00:00:00\n", - "Buying CHRW on 2013-12-31 00:00:00\n", - "Buying INTU on 2013-12-31 00:00:00\n", - "Buying CSX on 2013-12-31 00:00:00\n", - "Buying PM on 2013-12-31 00:00:00\n", - "Buying AWK on 2013-12-31 00:00:00\n", - "Buying ERIE on 2013-12-31 00:00:00\n", - "Buying MSI on 2013-12-31 00:00:00\n", - "Buying WMT on 2013-12-31 00:00:00\n", - "Selling LRCX on 2013-12-31 00:00:00\n", - "Selling MOH on 2013-12-31 00:00:00\n", - "Selling SCHW on 2013-12-31 00:00:00\n", - "Selling AES on 2013-12-31 00:00:00\n", - "Selling BEN on 2013-12-31 00:00:00\n", - "Selling HST on 2013-12-31 00:00:00\n", - "Selling BWA on 2013-12-31 00:00:00\n", - "Selling KKR on 2013-12-31 00:00:00\n", - "Selling VMC on 2013-12-31 00:00:00\n", - "Selling AIG on 2013-12-31 00:00:00\n", - "Selling PFG on 2013-12-31 00:00:00\n", - "Selling MS on 2013-12-31 00:00:00\n", - "Selling MET on 2013-12-31 00:00:00\n", - "Selling VLO on 2013-12-31 00:00:00\n", - "Selling TXT on 2013-12-31 00:00:00\n", - "Selling MPWR on 2013-12-31 00:00:00\n", - "Selling ETN on 2013-12-31 00:00:00\n", - "Selling BKR on 2013-12-31 00:00:00\n", - "Selling AMP on 2013-12-31 00:00:00\n", - "Selling TYL on 2013-12-31 00:00:00\n", - "Selling HBAN on 2013-12-31 00:00:00\n", - "Selling MAS on 2013-12-31 00:00:00\n", - "Selling GNRC on 2013-12-31 00:00:00\n", - "Selling APTV on 2013-12-31 00:00:00\n", - "Selling LKQ on 2013-12-31 00:00:00\n", - "Selling RCL on 2013-12-31 00:00:00\n", - "Selling VRTX on 2013-12-31 00:00:00\n", - "Selling PARA on 2013-12-31 00:00:00\n", - "Selling CRM on 2013-12-31 00:00:00\n", - "Selling BLDR on 2013-12-31 00:00:00\n", - "Selling AXON on 2013-12-31 00:00:00\n", - "Selling DHI on 2013-12-31 00:00:00\n", - "Selling BBY on 2013-12-31 00:00:00\n", - "Selling AMZN on 2013-12-31 00:00:00\n", - "Selling BLK on 2013-12-31 00:00:00\n", - "Selling BX on 2013-12-31 00:00:00\n", - "Selling IVZ on 2013-12-31 00:00:00\n", - "Selling EPAM on 2013-12-31 00:00:00\n", - "Selling FSLR on 2013-12-31 00:00:00\n", - "Selling REGN on 2013-12-31 00:00:00\n", - "Selling GILD on 2013-12-31 00:00:00\n", - "Selling BIIB on 2013-12-31 00:00:00\n", - "Selling ENPH on 2013-12-31 00:00:00\n", - "Selling URI on 2013-12-31 00:00:00\n", - "Selling NOW on 2013-12-31 00:00:00\n", - "Selling INCY on 2013-12-31 00:00:00\n", - "Buying AMCR on 2014-01-31 00:00:00\n", - "Buying DXCM on 2014-01-31 00:00:00\n", - "Buying JNPR on 2014-01-31 00:00:00\n", - "Buying NFLX on 2014-01-31 00:00:00\n", - "Buying JBL on 2014-01-31 00:00:00\n", - "Buying ULTA on 2014-01-31 00:00:00\n", - "Buying TPL on 2014-01-31 00:00:00\n", - "Buying ALB on 2014-01-31 00:00:00\n", - "Buying MRK on 2014-01-31 00:00:00\n", - "Buying FE on 2014-01-31 00:00:00\n", - "Buying MO on 2014-01-31 00:00:00\n", - "Buying CPT on 2014-01-31 00:00:00\n", - "Buying WELL on 2014-01-31 00:00:00\n", - "Buying AAPL on 2014-01-31 00:00:00\n", - "Buying NEM on 2014-01-31 00:00:00\n", - "Buying DGX on 2014-01-31 00:00:00\n", - "Buying CDNS on 2014-01-31 00:00:00\n", - "Buying PEG on 2014-01-31 00:00:00\n", - "Buying SBAC on 2014-01-31 00:00:00\n", - "Buying VTR on 2014-01-31 00:00:00\n", - "Buying DG on 2014-01-31 00:00:00\n", - "Buying KMX on 2014-01-31 00:00:00\n", - "Buying IDXX on 2014-01-31 00:00:00\n", - "Buying EQR on 2014-01-31 00:00:00\n", - "Buying ED on 2014-01-31 00:00:00\n", - "Buying DLTR on 2014-01-31 00:00:00\n", - "Buying EXC on 2014-01-31 00:00:00\n", - "Buying DLR on 2014-01-31 00:00:00\n", - "Buying KMB on 2014-01-31 00:00:00\n", - "Buying VZ on 2014-01-31 00:00:00\n", - "Buying AWK on 2014-01-31 00:00:00\n", - "Buying O on 2014-01-31 00:00:00\n", - "Buying DUK on 2014-01-31 00:00:00\n", - "Buying PG on 2014-01-31 00:00:00\n", - "Buying WMT on 2014-01-31 00:00:00\n", - "Buying MAA on 2014-01-31 00:00:00\n", - "Buying WMB on 2014-01-31 00:00:00\n", - "Buying SO on 2014-01-31 00:00:00\n", - "Buying SWKS on 2014-01-31 00:00:00\n", - "Buying RSG on 2014-01-31 00:00:00\n", - "Buying PM on 2014-01-31 00:00:00\n", - "Buying AZO on 2014-01-31 00:00:00\n", - "Buying F on 2014-01-31 00:00:00\n", - "Buying MCD on 2014-01-31 00:00:00\n", - "Buying DOC on 2014-01-31 00:00:00\n", - "Buying ESS on 2014-01-31 00:00:00\n", - "Selling ADBE on 2014-01-31 00:00:00\n", - "Selling IEX on 2014-01-31 00:00:00\n", - "Selling HBAN on 2014-01-31 00:00:00\n", - "Selling WST on 2014-01-31 00:00:00\n", - "Selling KEY on 2014-01-31 00:00:00\n", - "Selling MCO on 2014-01-31 00:00:00\n", - "Selling CSGP on 2014-01-31 00:00:00\n", - "Selling FANG on 2014-01-31 00:00:00\n", - "Selling RCL on 2014-01-31 00:00:00\n", - "Selling VRTX on 2014-01-31 00:00:00\n", - "Selling INCY on 2014-01-31 00:00:00\n", - "Selling MKTX on 2014-01-31 00:00:00\n", - "Selling FSLR on 2014-01-31 00:00:00\n", - "Selling AES on 2014-01-31 00:00:00\n", - "Selling TXT on 2014-01-31 00:00:00\n", - "Selling GILD on 2014-01-31 00:00:00\n", - "Selling ANSS on 2014-01-31 00:00:00\n", - "Selling PNR on 2014-01-31 00:00:00\n", - "Selling APTV on 2014-01-31 00:00:00\n", - "Selling MET on 2014-01-31 00:00:00\n", - "Selling TROW on 2014-01-31 00:00:00\n", - "Selling LVS on 2014-01-31 00:00:00\n", - "Selling LULU on 2014-01-31 00:00:00\n", - "Selling PFG on 2014-01-31 00:00:00\n", - "Selling AMP on 2014-01-31 00:00:00\n", - "Selling STT on 2014-01-31 00:00:00\n", - "Selling GNRC on 2014-01-31 00:00:00\n", - "Selling MGM on 2014-01-31 00:00:00\n", - "Selling BEN on 2014-01-31 00:00:00\n", - "Selling DHI on 2014-01-31 00:00:00\n", - "Selling ALGN on 2014-01-31 00:00:00\n", - "Selling IVZ on 2014-01-31 00:00:00\n", - "Selling PANW on 2014-01-31 00:00:00\n", - "Selling BLK on 2014-01-31 00:00:00\n", - "Selling CRM on 2014-01-31 00:00:00\n", - "Selling ISRG on 2014-01-31 00:00:00\n", - "Selling HIG on 2014-01-31 00:00:00\n", - "Selling SCHW on 2014-01-31 00:00:00\n", - "Selling META on 2014-01-31 00:00:00\n", - "Selling REGN on 2014-01-31 00:00:00\n", - "Selling SMCI on 2014-01-31 00:00:00\n", - "Selling AMZN on 2014-01-31 00:00:00\n", - "Selling URI on 2014-01-31 00:00:00\n", - "Selling BIIB on 2014-01-31 00:00:00\n", - "Selling NOW on 2014-01-31 00:00:00\n", - "Selling AXON on 2014-01-31 00:00:00\n", - "Buying AMCR on 2014-02-28 00:00:00\n", - "Buying JNPR on 2014-02-28 00:00:00\n", - "Buying NFLX on 2014-02-28 00:00:00\n", - "Buying ULTA on 2014-02-28 00:00:00\n", - "Buying KMX on 2014-02-28 00:00:00\n", - "Buying JBL on 2014-02-28 00:00:00\n", - "Buying WELL on 2014-02-28 00:00:00\n", - "Buying ALB on 2014-02-28 00:00:00\n", - "Buying AAPL on 2014-02-28 00:00:00\n", - "Buying DUK on 2014-02-28 00:00:00\n", - "Buying ZTS on 2014-02-28 00:00:00\n", - "Buying EXC on 2014-02-28 00:00:00\n", - "Buying DXCM on 2014-02-28 00:00:00\n", - "Buying TPL on 2014-02-28 00:00:00\n", - "Buying CPT on 2014-02-28 00:00:00\n", - "Buying FE on 2014-02-28 00:00:00\n", - "Buying SO on 2014-02-28 00:00:00\n", - "Buying MRK on 2014-02-28 00:00:00\n", - "Buying VTR on 2014-02-28 00:00:00\n", - "Buying PEG on 2014-02-28 00:00:00\n", - "Buying DOC on 2014-02-28 00:00:00\n", - "Buying ARE on 2014-02-28 00:00:00\n", - "Buying PPL on 2014-02-28 00:00:00\n", - "Buying MOH on 2014-02-28 00:00:00\n", - "Buying DG on 2014-02-28 00:00:00\n", - "Buying DLR on 2014-02-28 00:00:00\n", - "Buying PG on 2014-02-28 00:00:00\n", - "Buying CTRA on 2014-02-28 00:00:00\n", - "Buying CAG on 2014-02-28 00:00:00\n", - "Buying CHTR on 2014-02-28 00:00:00\n", - "Buying ES on 2014-02-28 00:00:00\n", - "Buying MAA on 2014-02-28 00:00:00\n", - "Buying EQR on 2014-02-28 00:00:00\n", - "Buying AVB on 2014-02-28 00:00:00\n", - "Buying TDG on 2014-02-28 00:00:00\n", - "Buying ESS on 2014-02-28 00:00:00\n", - "Buying D on 2014-02-28 00:00:00\n", - "Buying AWK on 2014-02-28 00:00:00\n", - "Buying DLTR on 2014-02-28 00:00:00\n", - "Buying AEP on 2014-02-28 00:00:00\n", - "Buying AEE on 2014-02-28 00:00:00\n", - "Buying SBAC on 2014-02-28 00:00:00\n", - "Buying ETR on 2014-02-28 00:00:00\n", - "Buying LLY on 2014-02-28 00:00:00\n", - "Buying CDNS on 2014-02-28 00:00:00\n", - "Buying WMT on 2014-02-28 00:00:00\n", - "Selling FTNT on 2014-02-28 00:00:00\n", - "Selling PWR on 2014-02-28 00:00:00\n", - "Selling WDAY on 2014-02-28 00:00:00\n", - "Selling CBOE on 2014-02-28 00:00:00\n", - "Selling VRTX on 2014-02-28 00:00:00\n", - "Selling PRU on 2014-02-28 00:00:00\n", - "Selling PH on 2014-02-28 00:00:00\n", - "Selling MCO on 2014-02-28 00:00:00\n", - "Selling HIG on 2014-02-28 00:00:00\n", - "Selling MET on 2014-02-28 00:00:00\n", - "Selling CRM on 2014-02-28 00:00:00\n", - "Selling EPAM on 2014-02-28 00:00:00\n", - "Selling ISRG on 2014-02-28 00:00:00\n", - "Selling AXON on 2014-02-28 00:00:00\n", - "Selling MTD on 2014-02-28 00:00:00\n", - "Selling DAL on 2014-02-28 00:00:00\n", - "Selling PFG on 2014-02-28 00:00:00\n", - "Selling SNA on 2014-02-28 00:00:00\n", - "Selling BEN on 2014-02-28 00:00:00\n", - "Selling NXPI on 2014-02-28 00:00:00\n", - "Selling PNR on 2014-02-28 00:00:00\n", - "Selling MGM on 2014-02-28 00:00:00\n", - "Selling STT on 2014-02-28 00:00:00\n", - "Selling TROW on 2014-02-28 00:00:00\n", - "Selling TSLA on 2014-02-28 00:00:00\n", - "Selling LVS on 2014-02-28 00:00:00\n", - "Selling FSLR on 2014-02-28 00:00:00\n", - "Selling DHI on 2014-02-28 00:00:00\n", - "Selling AMP on 2014-02-28 00:00:00\n", - "Selling SMCI on 2014-02-28 00:00:00\n", - "Selling LULU on 2014-02-28 00:00:00\n", - "Selling AMZN on 2014-02-28 00:00:00\n", - "Selling TXT on 2014-02-28 00:00:00\n", - "Selling IVZ on 2014-02-28 00:00:00\n", - "Selling META on 2014-02-28 00:00:00\n", - "Selling GNRC on 2014-02-28 00:00:00\n", - "Selling BLK on 2014-02-28 00:00:00\n", - "Selling SCHW on 2014-02-28 00:00:00\n", - "Selling NOW on 2014-02-28 00:00:00\n", - "Selling ALGN on 2014-02-28 00:00:00\n", - "Selling BIIB on 2014-02-28 00:00:00\n", - "Selling FANG on 2014-02-28 00:00:00\n", - "Selling PANW on 2014-02-28 00:00:00\n", - "Selling AKAM on 2014-02-28 00:00:00\n", - "Selling REGN on 2014-02-28 00:00:00\n", - "Selling URI on 2014-02-28 00:00:00\n", - "Buying AMCR on 2014-03-31 00:00:00\n", - "Buying JNPR on 2014-03-31 00:00:00\n", - "Buying WELL on 2014-03-31 00:00:00\n", - "Buying ZTS on 2014-03-31 00:00:00\n", - "Buying DGX on 2014-03-31 00:00:00\n", - "Buying FE on 2014-03-31 00:00:00\n", - "Buying DUK on 2014-03-31 00:00:00\n", - "Buying PEG on 2014-03-31 00:00:00\n", - "Buying SO on 2014-03-31 00:00:00\n", - "Buying ETR on 2014-03-31 00:00:00\n", - "Buying PPL on 2014-03-31 00:00:00\n", - "Buying EXC on 2014-03-31 00:00:00\n", - "Buying NFLX on 2014-03-31 00:00:00\n", - "Buying AEE on 2014-03-31 00:00:00\n", - "Buying AAPL on 2014-03-31 00:00:00\n", - "Buying AWK on 2014-03-31 00:00:00\n", - "Buying DOC on 2014-03-31 00:00:00\n", - "Buying ES on 2014-03-31 00:00:00\n", - "Buying VTR on 2014-03-31 00:00:00\n", - "Buying NVR on 2014-03-31 00:00:00\n", - "Buying ARE on 2014-03-31 00:00:00\n", - "Buying D on 2014-03-31 00:00:00\n", - "Buying MRK on 2014-03-31 00:00:00\n", - "Buying PG on 2014-03-31 00:00:00\n", - "Buying SBAC on 2014-03-31 00:00:00\n", - "Buying DTE on 2014-03-31 00:00:00\n", - "Buying CLX on 2014-03-31 00:00:00\n", - "Buying LH on 2014-03-31 00:00:00\n", - "Buying PCG on 2014-03-31 00:00:00\n", - "Buying WEC on 2014-03-31 00:00:00\n", - "Buying AVB on 2014-03-31 00:00:00\n", - "Buying AEP on 2014-03-31 00:00:00\n", - "Buying NI on 2014-03-31 00:00:00\n", - "Buying CHTR on 2014-03-31 00:00:00\n", - "Buying CMS on 2014-03-31 00:00:00\n", - "Buying KMX on 2014-03-31 00:00:00\n", - "Buying MCD on 2014-03-31 00:00:00\n", - "Buying XEL on 2014-03-31 00:00:00\n", - "Buying LOW on 2014-03-31 00:00:00\n", - "Buying TPL on 2014-03-31 00:00:00\n", - "Buying LLY on 2014-03-31 00:00:00\n", - "Buying NEE on 2014-03-31 00:00:00\n", - "Buying ED on 2014-03-31 00:00:00\n", - "Buying PSA on 2014-03-31 00:00:00\n", - "Buying O on 2014-03-31 00:00:00\n", - "Buying VZ on 2014-03-31 00:00:00\n", - "Selling MKTX on 2014-03-31 00:00:00\n", - "Selling AON on 2014-03-31 00:00:00\n", - "Selling SNA on 2014-03-31 00:00:00\n", - "Selling AMP on 2014-03-31 00:00:00\n", - "Selling PFG on 2014-03-31 00:00:00\n", - "Selling PRU on 2014-03-31 00:00:00\n", - "Selling BKNG on 2014-03-31 00:00:00\n", - "Selling MA on 2014-03-31 00:00:00\n", - "Selling DIS on 2014-03-31 00:00:00\n", - "Selling ON on 2014-03-31 00:00:00\n", - "Selling AMZN on 2014-03-31 00:00:00\n", - "Selling RCL on 2014-03-31 00:00:00\n", - "Selling ADSK on 2014-03-31 00:00:00\n", - "Selling PNR on 2014-03-31 00:00:00\n", - "Selling IVZ on 2014-03-31 00:00:00\n", - "Selling GNRC on 2014-03-31 00:00:00\n", - "Selling TXT on 2014-03-31 00:00:00\n", - "Selling KKR on 2014-03-31 00:00:00\n", - "Selling NXPI on 2014-03-31 00:00:00\n", - "Selling BLK on 2014-03-31 00:00:00\n", - "Selling FTNT on 2014-03-31 00:00:00\n", - "Selling MTD on 2014-03-31 00:00:00\n", - "Selling CRM on 2014-03-31 00:00:00\n", - "Selling WDAY on 2014-03-31 00:00:00\n", - "Selling SCHW on 2014-03-31 00:00:00\n", - "Selling UAL on 2014-03-31 00:00:00\n", - "Selling WYNN on 2014-03-31 00:00:00\n", - "Selling MGM on 2014-03-31 00:00:00\n", - "Selling DAL on 2014-03-31 00:00:00\n", - "Selling FSLR on 2014-03-31 00:00:00\n", - "Selling FANG on 2014-03-31 00:00:00\n", - "Selling LVS on 2014-03-31 00:00:00\n", - "Selling BIIB on 2014-03-31 00:00:00\n", - "Selling SMCI on 2014-03-31 00:00:00\n", - "Selling ENPH on 2014-03-31 00:00:00\n", - "Selling REGN on 2014-03-31 00:00:00\n", - "Selling INCY on 2014-03-31 00:00:00\n", - "Selling BLDR on 2014-03-31 00:00:00\n", - "Selling NOW on 2014-03-31 00:00:00\n", - "Selling ALGN on 2014-03-31 00:00:00\n", - "Selling META on 2014-03-31 00:00:00\n", - "Selling AKAM on 2014-03-31 00:00:00\n", - "Selling URI on 2014-03-31 00:00:00\n", - "Selling PANW on 2014-03-31 00:00:00\n", - "Selling TSLA on 2014-03-31 00:00:00\n", - "Selling EPAM on 2014-03-31 00:00:00\n", - "Buying AMCR on 2014-04-30 00:00:00\n", - "Buying ETR on 2014-04-30 00:00:00\n", - "Buying SO on 2014-04-30 00:00:00\n", - "Buying DUK on 2014-04-30 00:00:00\n", - "Buying PCG on 2014-04-30 00:00:00\n", - "Buying EXC on 2014-04-30 00:00:00\n", - "Buying WELL on 2014-04-30 00:00:00\n", - "Buying PPL on 2014-04-30 00:00:00\n", - "Buying CMS on 2014-04-30 00:00:00\n", - "Buying AEE on 2014-04-30 00:00:00\n", - "Buying ES on 2014-04-30 00:00:00\n", - "Buying FE on 2014-04-30 00:00:00\n", - "Buying NVR on 2014-04-30 00:00:00\n", - "Buying TPL on 2014-04-30 00:00:00\n", - "Buying DOC on 2014-04-30 00:00:00\n", - "Buying XEL on 2014-04-30 00:00:00\n", - "Buying MCD on 2014-04-30 00:00:00\n", - "Buying ATO on 2014-04-30 00:00:00\n", - "Buying CLX on 2014-04-30 00:00:00\n", - "Buying CNP on 2014-04-30 00:00:00\n", - "Buying O on 2014-04-30 00:00:00\n", - "Buying VTR on 2014-04-30 00:00:00\n", - "Buying AVB on 2014-04-30 00:00:00\n", - "Buying WEC on 2014-04-30 00:00:00\n", - "Buying HSY on 2014-04-30 00:00:00\n", - "Buying AWK on 2014-04-30 00:00:00\n", - "Buying ZTS on 2014-04-30 00:00:00\n", - "Buying ED on 2014-04-30 00:00:00\n", - "Buying PEG on 2014-04-30 00:00:00\n", - "Buying CAG on 2014-04-30 00:00:00\n", - "Buying SRE on 2014-04-30 00:00:00\n", - "Buying KO on 2014-04-30 00:00:00\n", - "Buying EVRG on 2014-04-30 00:00:00\n", - "Buying PEP on 2014-04-30 00:00:00\n", - "Buying PNW on 2014-04-30 00:00:00\n", - "Buying DTE on 2014-04-30 00:00:00\n", - "Buying LNT on 2014-04-30 00:00:00\n", - "Buying AEP on 2014-04-30 00:00:00\n", - "Buying NEE on 2014-04-30 00:00:00\n", - "Buying PG on 2014-04-30 00:00:00\n", - "Buying DGX on 2014-04-30 00:00:00\n", - "Buying BXP on 2014-04-30 00:00:00\n", - "Buying D on 2014-04-30 00:00:00\n", - "Buying PSA on 2014-04-30 00:00:00\n", - "Buying CL on 2014-04-30 00:00:00\n", - "Buying EIX on 2014-04-30 00:00:00\n", - "Selling ABBV on 2014-04-30 00:00:00\n", - "Selling AMGN on 2014-04-30 00:00:00\n", - "Selling BX on 2014-04-30 00:00:00\n", - "Selling GILD on 2014-04-30 00:00:00\n", - "Selling CTSH on 2014-04-30 00:00:00\n", - "Selling AMP on 2014-04-30 00:00:00\n", - "Selling MA on 2014-04-30 00:00:00\n", - "Selling MPWR on 2014-04-30 00:00:00\n", - "Selling AVGO on 2014-04-30 00:00:00\n", - "Selling MNST on 2014-04-30 00:00:00\n", - "Selling FFIV on 2014-04-30 00:00:00\n", - "Selling SCHW on 2014-04-30 00:00:00\n", - "Selling BLDR on 2014-04-30 00:00:00\n", - "Selling AMZN on 2014-04-30 00:00:00\n", - "Selling ALGN on 2014-04-30 00:00:00\n", - "Selling CPAY on 2014-04-30 00:00:00\n", - "Selling SMCI on 2014-04-30 00:00:00\n", - "Selling CRM on 2014-04-30 00:00:00\n", - "Selling DAL on 2014-04-30 00:00:00\n", - "Selling ADSK on 2014-04-30 00:00:00\n", - "Selling TXT on 2014-04-30 00:00:00\n", - "Selling LVS on 2014-04-30 00:00:00\n", - "Selling WYNN on 2014-04-30 00:00:00\n", - "Selling NFLX on 2014-04-30 00:00:00\n", - "Selling DXCM on 2014-04-30 00:00:00\n", - "Selling BIIB on 2014-04-30 00:00:00\n", - "Selling UAL on 2014-04-30 00:00:00\n", - "Selling VRTX on 2014-04-30 00:00:00\n", - "Selling ENPH on 2014-04-30 00:00:00\n", - "Selling EXPE on 2014-04-30 00:00:00\n", - "Selling MGM on 2014-04-30 00:00:00\n", - "Selling REGN on 2014-04-30 00:00:00\n", - "Selling URI on 2014-04-30 00:00:00\n", - "Selling NXPI on 2014-04-30 00:00:00\n", - "Selling BKNG on 2014-04-30 00:00:00\n", - "Selling AKAM on 2014-04-30 00:00:00\n", - "Selling MU on 2014-04-30 00:00:00\n", - "Selling FTNT on 2014-04-30 00:00:00\n", - "Selling META on 2014-04-30 00:00:00\n", - "Selling TSLA on 2014-04-30 00:00:00\n", - "Selling CSGP on 2014-04-30 00:00:00\n", - "Selling INCY on 2014-04-30 00:00:00\n", - "Selling NOW on 2014-04-30 00:00:00\n", - "Selling PANW on 2014-04-30 00:00:00\n", - "Selling WDAY on 2014-04-30 00:00:00\n", - "Selling EPAM on 2014-04-30 00:00:00\n", - "Buying AMCR on 2014-05-31 00:00:00\n", - "Buying SO on 2014-05-31 00:00:00\n", - "Buying AEE on 2014-05-31 00:00:00\n", - "Buying ETR on 2014-05-31 00:00:00\n", - "Buying CMS on 2014-05-31 00:00:00\n", - "Buying NEM on 2014-05-31 00:00:00\n", - "Buying WELL on 2014-05-31 00:00:00\n", - "Buying PCG on 2014-05-31 00:00:00\n", - "Buying ES on 2014-05-31 00:00:00\n", - "Buying PPL on 2014-05-31 00:00:00\n", - "Buying WEC on 2014-05-31 00:00:00\n", - "Buying EXC on 2014-05-31 00:00:00\n", - "Buying ED on 2014-05-31 00:00:00\n", - "Buying XEL on 2014-05-31 00:00:00\n", - "Buying DUK on 2014-05-31 00:00:00\n", - "Buying AWK on 2014-05-31 00:00:00\n", - "Buying HSY on 2014-05-31 00:00:00\n", - "Buying CLX on 2014-05-31 00:00:00\n", - "Buying PEG on 2014-05-31 00:00:00\n", - "Buying NVR on 2014-05-31 00:00:00\n", - "Buying PNW on 2014-05-31 00:00:00\n", - "Buying DOC on 2014-05-31 00:00:00\n", - "Buying ATO on 2014-05-31 00:00:00\n", - "Buying NEE on 2014-05-31 00:00:00\n", - "Buying CNP on 2014-05-31 00:00:00\n", - "Buying LNT on 2014-05-31 00:00:00\n", - "Buying TPL on 2014-05-31 00:00:00\n", - "Buying EVRG on 2014-05-31 00:00:00\n", - "Buying MCD on 2014-05-31 00:00:00\n", - "Buying DTE on 2014-05-31 00:00:00\n", - "Buying VTR on 2014-05-31 00:00:00\n", - "Buying SRE on 2014-05-31 00:00:00\n", - "Buying AVB on 2014-05-31 00:00:00\n", - "Buying PG on 2014-05-31 00:00:00\n", - "Buying EIX on 2014-05-31 00:00:00\n", - "Buying KMB on 2014-05-31 00:00:00\n", - "Buying FE on 2014-05-31 00:00:00\n", - "Buying D on 2014-05-31 00:00:00\n", - "Buying CL on 2014-05-31 00:00:00\n", - "Buying CPT on 2014-05-31 00:00:00\n", - "Buying O on 2014-05-31 00:00:00\n", - "Buying BXP on 2014-05-31 00:00:00\n", - "Buying T on 2014-05-31 00:00:00\n", - "Buying KO on 2014-05-31 00:00:00\n", - "Buying AEP on 2014-05-31 00:00:00\n", - "Buying PSA on 2014-05-31 00:00:00\n", - "Selling RJF on 2014-05-31 00:00:00\n", - "Selling BX on 2014-05-31 00:00:00\n", - "Selling SWKS on 2014-05-31 00:00:00\n", - "Selling GILD on 2014-05-31 00:00:00\n", - "Selling PRU on 2014-05-31 00:00:00\n", - "Selling AMP on 2014-05-31 00:00:00\n", - "Selling GOOGL on 2014-05-31 00:00:00\n", - "Selling FFIV on 2014-05-31 00:00:00\n", - "Selling MA on 2014-05-31 00:00:00\n", - "Selling LRCX on 2014-05-31 00:00:00\n", - "Selling GOOG on 2014-05-31 00:00:00\n", - "Selling TYL on 2014-05-31 00:00:00\n", - "Selling SCHW on 2014-05-31 00:00:00\n", - "Selling TXT on 2014-05-31 00:00:00\n", - "Selling NXPI on 2014-05-31 00:00:00\n", - "Selling EXPE on 2014-05-31 00:00:00\n", - "Selling AMZN on 2014-05-31 00:00:00\n", - "Selling LVS on 2014-05-31 00:00:00\n", - "Selling EPAM on 2014-05-31 00:00:00\n", - "Selling WYNN on 2014-05-31 00:00:00\n", - "Selling MGM on 2014-05-31 00:00:00\n", - "Selling SMCI on 2014-05-31 00:00:00\n", - "Selling FTNT on 2014-05-31 00:00:00\n", - "Selling REGN on 2014-05-31 00:00:00\n", - "Selling PODD on 2014-05-31 00:00:00\n", - "Selling ADSK on 2014-05-31 00:00:00\n", - "Selling CRM on 2014-05-31 00:00:00\n", - "Selling BLDR on 2014-05-31 00:00:00\n", - "Selling URI on 2014-05-31 00:00:00\n", - "Selling ALGN on 2014-05-31 00:00:00\n", - "Selling NFLX on 2014-05-31 00:00:00\n", - "Selling UAL on 2014-05-31 00:00:00\n", - "Selling BIIB on 2014-05-31 00:00:00\n", - "Selling BKNG on 2014-05-31 00:00:00\n", - "Selling AXON on 2014-05-31 00:00:00\n", - "Selling TSLA on 2014-05-31 00:00:00\n", - "Selling CSGP on 2014-05-31 00:00:00\n", - "Selling VRTX on 2014-05-31 00:00:00\n", - "Selling DXCM on 2014-05-31 00:00:00\n", - "Selling PANW on 2014-05-31 00:00:00\n", - "Selling MU on 2014-05-31 00:00:00\n", - "Selling META on 2014-05-31 00:00:00\n", - "Selling INCY on 2014-05-31 00:00:00\n", - "Selling WDAY on 2014-05-31 00:00:00\n", - "Selling NOW on 2014-05-31 00:00:00\n", - "Selling ENPH on 2014-05-31 00:00:00\n", - "Buying AMCR on 2014-06-30 00:00:00\n", - "Buying WELL on 2014-06-30 00:00:00\n", - "Buying NEM on 2014-06-30 00:00:00\n", - "Buying ED on 2014-06-30 00:00:00\n", - "Buying DOC on 2014-06-30 00:00:00\n", - "Buying VTR on 2014-06-30 00:00:00\n", - "Buying SO on 2014-06-30 00:00:00\n", - "Buying TPL on 2014-06-30 00:00:00\n", - "Buying HSY on 2014-06-30 00:00:00\n", - "Buying DUK on 2014-06-30 00:00:00\n", - "Buying WEC on 2014-06-30 00:00:00\n", - "Buying CMS on 2014-06-30 00:00:00\n", - "Buying PCG on 2014-06-30 00:00:00\n", - "Buying AEE on 2014-06-30 00:00:00\n", - "Buying AVB on 2014-06-30 00:00:00\n", - "Buying ATO on 2014-06-30 00:00:00\n", - "Buying ES on 2014-06-30 00:00:00\n", - "Buying AWK on 2014-06-30 00:00:00\n", - "Buying CPT on 2014-06-30 00:00:00\n", - "Buying NVR on 2014-06-30 00:00:00\n", - "Buying XEL on 2014-06-30 00:00:00\n", - "Buying MCD on 2014-06-30 00:00:00\n", - "Buying ETR on 2014-06-30 00:00:00\n", - "Buying CLX on 2014-06-30 00:00:00\n", - "Buying CNP on 2014-06-30 00:00:00\n", - "Buying PNW on 2014-06-30 00:00:00\n", - "Buying LNT on 2014-06-30 00:00:00\n", - "Buying EIX on 2014-06-30 00:00:00\n", - "Buying PPL on 2014-06-30 00:00:00\n", - "Buying EVRG on 2014-06-30 00:00:00\n", - "Buying T on 2014-06-30 00:00:00\n", - "Buying NEE on 2014-06-30 00:00:00\n", - "Buying DTE on 2014-06-30 00:00:00\n", - "Buying PG on 2014-06-30 00:00:00\n", - "Buying MAA on 2014-06-30 00:00:00\n", - "Buying SRE on 2014-06-30 00:00:00\n", - "Buying PEG on 2014-06-30 00:00:00\n", - "Buying EXC on 2014-06-30 00:00:00\n", - "Buying SPG on 2014-06-30 00:00:00\n", - "Buying PM on 2014-06-30 00:00:00\n", - "Buying KMB on 2014-06-30 00:00:00\n", - "Buying GEN on 2014-06-30 00:00:00\n", - "Buying ARE on 2014-06-30 00:00:00\n", - "Buying IQV on 2014-06-30 00:00:00\n", - "Buying CL on 2014-06-30 00:00:00\n", - "Buying TPR on 2014-06-30 00:00:00\n", - "Selling BWA on 2014-06-30 00:00:00\n", - "Selling PRU on 2014-06-30 00:00:00\n", - "Selling RJF on 2014-06-30 00:00:00\n", - "Selling SMCI on 2014-06-30 00:00:00\n", - "Selling MPWR on 2014-06-30 00:00:00\n", - "Selling WYNN on 2014-06-30 00:00:00\n", - "Selling LVS on 2014-06-30 00:00:00\n", - "Selling MGM on 2014-06-30 00:00:00\n", - "Selling ADBE on 2014-06-30 00:00:00\n", - "Selling AMP on 2014-06-30 00:00:00\n", - "Selling KMX on 2014-06-30 00:00:00\n", - "Selling GOOGL on 2014-06-30 00:00:00\n", - "Selling LYV on 2014-06-30 00:00:00\n", - "Selling CRM on 2014-06-30 00:00:00\n", - "Selling GOOG on 2014-06-30 00:00:00\n", - "Selling DAL on 2014-06-30 00:00:00\n", - "Selling MA on 2014-06-30 00:00:00\n", - "Selling FANG on 2014-06-30 00:00:00\n", - "Selling ADSK on 2014-06-30 00:00:00\n", - "Selling LULU on 2014-06-30 00:00:00\n", - "Selling TXT on 2014-06-30 00:00:00\n", - "Selling FTNT on 2014-06-30 00:00:00\n", - "Selling REGN on 2014-06-30 00:00:00\n", - "Selling ALGN on 2014-06-30 00:00:00\n", - "Selling TYL on 2014-06-30 00:00:00\n", - "Selling BKNG on 2014-06-30 00:00:00\n", - "Selling NXPI on 2014-06-30 00:00:00\n", - "Selling MU on 2014-06-30 00:00:00\n", - "Selling BIIB on 2014-06-30 00:00:00\n", - "Selling EXPE on 2014-06-30 00:00:00\n", - "Selling TSLA on 2014-06-30 00:00:00\n", - "Selling SCHW on 2014-06-30 00:00:00\n", - "Selling PODD on 2014-06-30 00:00:00\n", - "Selling URI on 2014-06-30 00:00:00\n", - "Selling AMZN on 2014-06-30 00:00:00\n", - "Selling UAL on 2014-06-30 00:00:00\n", - "Selling INCY on 2014-06-30 00:00:00\n", - "Selling AXON on 2014-06-30 00:00:00\n", - "Selling NFLX on 2014-06-30 00:00:00\n", - "Selling META on 2014-06-30 00:00:00\n", - "Selling PANW on 2014-06-30 00:00:00\n", - "Selling DXCM on 2014-06-30 00:00:00\n", - "Selling CSGP on 2014-06-30 00:00:00\n", - "Selling ENPH on 2014-06-30 00:00:00\n", - "Selling WDAY on 2014-06-30 00:00:00\n", - "Selling NOW on 2014-06-30 00:00:00\n", - "Buying AMD on 2014-07-31 00:00:00\n", - "Buying BG on 2014-07-31 00:00:00\n", - "Buying MPC on 2014-07-31 00:00:00\n", - "Buying TMUS on 2014-07-31 00:00:00\n", - "Buying AMCR on 2014-07-31 00:00:00\n", - "Buying WELL on 2014-07-31 00:00:00\n", - "Buying WBD on 2014-07-31 00:00:00\n", - "Buying DOC on 2014-07-31 00:00:00\n", - "Buying VLO on 2014-07-31 00:00:00\n", - "Buying AEE on 2014-07-31 00:00:00\n", - "Buying CNP on 2014-07-31 00:00:00\n", - "Buying VTR on 2014-07-31 00:00:00\n", - "Buying VRTX on 2014-07-31 00:00:00\n", - "Buying ALL on 2014-07-31 00:00:00\n", - "Buying PAYC on 2014-07-31 00:00:00\n", - "Buying DUK on 2014-07-31 00:00:00\n", - "Buying ARE on 2014-07-31 00:00:00\n", - "Buying EIX on 2014-07-31 00:00:00\n", - "Buying ED on 2014-07-31 00:00:00\n", - "Buying SO on 2014-07-31 00:00:00\n", - "Buying AWK on 2014-07-31 00:00:00\n", - "Buying CMS on 2014-07-31 00:00:00\n", - "Buying WEC on 2014-07-31 00:00:00\n", - "Buying NEE on 2014-07-31 00:00:00\n", - "Buying TPR on 2014-07-31 00:00:00\n", - "Buying NTAP on 2014-07-31 00:00:00\n", - "Buying DLR on 2014-07-31 00:00:00\n", - "Buying COST on 2014-07-31 00:00:00\n", - "Buying ES on 2014-07-31 00:00:00\n", - "Buying PPL on 2014-07-31 00:00:00\n", - "Buying ATO on 2014-07-31 00:00:00\n", - "Buying GEN on 2014-07-31 00:00:00\n", - "Buying NEM on 2014-07-31 00:00:00\n", - "Buying IRM on 2014-07-31 00:00:00\n", - "Buying EVRG on 2014-07-31 00:00:00\n", - "Buying ULTA on 2014-07-31 00:00:00\n", - "Buying XEL on 2014-07-31 00:00:00\n", - "Buying SHW on 2014-07-31 00:00:00\n", - "Buying LRCX on 2014-07-31 00:00:00\n", - "Buying JNPR on 2014-07-31 00:00:00\n", - "Buying T on 2014-07-31 00:00:00\n", - "Buying D on 2014-07-31 00:00:00\n", - "Buying ERIE on 2014-07-31 00:00:00\n", - "Buying VRSN on 2014-07-31 00:00:00\n", - "Buying WM on 2014-07-31 00:00:00\n", - "Buying AVB on 2014-07-31 00:00:00\n", - "Selling NXPI on 2014-07-31 00:00:00\n", - "Selling HLT on 2014-07-31 00:00:00\n", - "Selling FICO on 2014-07-31 00:00:00\n", - "Selling BX on 2014-07-31 00:00:00\n", - "Selling GOOG on 2014-07-31 00:00:00\n", - "Selling BWA on 2014-07-31 00:00:00\n", - "Selling ALB on 2014-07-31 00:00:00\n", - "Selling ALGN on 2014-07-31 00:00:00\n", - "Selling GOOGL on 2014-07-31 00:00:00\n", - "Selling ADSK on 2014-07-31 00:00:00\n", - "Selling TYL on 2014-07-31 00:00:00\n", - "Selling BIIB on 2014-07-31 00:00:00\n", - "Selling LYV on 2014-07-31 00:00:00\n", - "Selling MOH on 2014-07-31 00:00:00\n", - "Selling PTC on 2014-07-31 00:00:00\n", - "Selling MPWR on 2014-07-31 00:00:00\n", - "Selling NOW on 2014-07-31 00:00:00\n", - "Selling TT on 2014-07-31 00:00:00\n", - "Selling PANW on 2014-07-31 00:00:00\n", - "Selling ADBE on 2014-07-31 00:00:00\n", - "Selling WBA on 2014-07-31 00:00:00\n", - "Selling MU on 2014-07-31 00:00:00\n", - "Selling KMX on 2014-07-31 00:00:00\n", - "Selling SMCI on 2014-07-31 00:00:00\n", - "Selling LULU on 2014-07-31 00:00:00\n", - "Selling DAL on 2014-07-31 00:00:00\n", - "Selling URI on 2014-07-31 00:00:00\n", - "Selling EPAM on 2014-07-31 00:00:00\n", - "Selling TTWO on 2014-07-31 00:00:00\n", - "Selling SCHW on 2014-07-31 00:00:00\n", - "Selling EXPE on 2014-07-31 00:00:00\n", - "Selling NFLX on 2014-07-31 00:00:00\n", - "Selling CSGP on 2014-07-31 00:00:00\n", - "Selling META on 2014-07-31 00:00:00\n", - "Selling EA on 2014-07-31 00:00:00\n", - "Selling BLDR on 2014-07-31 00:00:00\n", - "Selling AMZN on 2014-07-31 00:00:00\n", - "Selling INCY on 2014-07-31 00:00:00\n", - "Selling PNR on 2014-07-31 00:00:00\n", - "Selling FANG on 2014-07-31 00:00:00\n", - "Selling BBY on 2014-07-31 00:00:00\n", - "Selling SWKS on 2014-07-31 00:00:00\n", - "Selling PODD on 2014-07-31 00:00:00\n", - "Selling ENPH on 2014-07-31 00:00:00\n", - "Selling DXCM on 2014-07-31 00:00:00\n", - "Selling AXON on 2014-07-31 00:00:00\n", - "Buying AMD on 2014-08-31 00:00:00\n", - "Buying BG on 2014-08-31 00:00:00\n", - "Buying TMUS on 2014-08-31 00:00:00\n", - "Buying VRTX on 2014-08-31 00:00:00\n", - "Buying MPC on 2014-08-31 00:00:00\n", - "Buying CBOE on 2014-08-31 00:00:00\n", - "Buying AMCR on 2014-08-31 00:00:00\n", - "Buying ALL on 2014-08-31 00:00:00\n", - "Buying TPL on 2014-08-31 00:00:00\n", - "Buying LRCX on 2014-08-31 00:00:00\n", - "Buying RMD on 2014-08-31 00:00:00\n", - "Buying WELL on 2014-08-31 00:00:00\n", - "Buying RSG on 2014-08-31 00:00:00\n", - "Buying FE on 2014-08-31 00:00:00\n", - "Buying VRSN on 2014-08-31 00:00:00\n", - "Buying JNPR on 2014-08-31 00:00:00\n", - "Buying DOC on 2014-08-31 00:00:00\n", - "Buying ARE on 2014-08-31 00:00:00\n", - "Buying O on 2014-08-31 00:00:00\n", - "Buying CLX on 2014-08-31 00:00:00\n", - "Buying NEM on 2014-08-31 00:00:00\n", - "Buying GEN on 2014-08-31 00:00:00\n", - "Buying DUK on 2014-08-31 00:00:00\n", - "Buying EVRG on 2014-08-31 00:00:00\n", - "Buying CAG on 2014-08-31 00:00:00\n", - "Buying DLR on 2014-08-31 00:00:00\n", - "Buying UDR on 2014-08-31 00:00:00\n", - "Buying WTW on 2014-08-31 00:00:00\n", - "Buying COST on 2014-08-31 00:00:00\n", - "Buying SO on 2014-08-31 00:00:00\n", - "Buying ULTA on 2014-08-31 00:00:00\n", - "Buying CNP on 2014-08-31 00:00:00\n", - "Buying EIX on 2014-08-31 00:00:00\n", - "Buying WRB on 2014-08-31 00:00:00\n", - "Buying CHD on 2014-08-31 00:00:00\n", - "Buying ED on 2014-08-31 00:00:00\n", - "Buying EXC on 2014-08-31 00:00:00\n", - "Buying TPR on 2014-08-31 00:00:00\n", - "Buying WMT on 2014-08-31 00:00:00\n", - "Buying PG on 2014-08-31 00:00:00\n", - "Buying VLO on 2014-08-31 00:00:00\n", - "Buying KO on 2014-08-31 00:00:00\n", - "Buying SRE on 2014-08-31 00:00:00\n", - "Buying MSFT on 2014-08-31 00:00:00\n", - "Buying IQV on 2014-08-31 00:00:00\n", - "Buying DECK on 2014-08-31 00:00:00\n", - "Selling PWR on 2014-08-31 00:00:00\n", - "Selling EOG on 2014-08-31 00:00:00\n", - "Selling BEN on 2014-08-31 00:00:00\n", - "Selling NXPI on 2014-08-31 00:00:00\n", - "Selling ZBRA on 2014-08-31 00:00:00\n", - "Selling BX on 2014-08-31 00:00:00\n", - "Selling PANW on 2014-08-31 00:00:00\n", - "Selling ADSK on 2014-08-31 00:00:00\n", - "Selling CRM on 2014-08-31 00:00:00\n", - "Selling BLK on 2014-08-31 00:00:00\n", - "Selling CSGP on 2014-08-31 00:00:00\n", - "Selling META on 2014-08-31 00:00:00\n", - "Selling WBA on 2014-08-31 00:00:00\n", - "Selling AVGO on 2014-08-31 00:00:00\n", - "Selling ADBE on 2014-08-31 00:00:00\n", - "Selling FTNT on 2014-08-31 00:00:00\n", - "Selling WDAY on 2014-08-31 00:00:00\n", - "Selling GOOG on 2014-08-31 00:00:00\n", - "Selling TT on 2014-08-31 00:00:00\n", - "Selling URI on 2014-08-31 00:00:00\n", - "Selling LUV on 2014-08-31 00:00:00\n", - "Selling CPAY on 2014-08-31 00:00:00\n", - "Selling YUM on 2014-08-31 00:00:00\n", - "Selling GOOGL on 2014-08-31 00:00:00\n", - "Selling DXCM on 2014-08-31 00:00:00\n", - "Selling MU on 2014-08-31 00:00:00\n", - "Selling HAL on 2014-08-31 00:00:00\n", - "Selling EA on 2014-08-31 00:00:00\n", - "Selling SCHW on 2014-08-31 00:00:00\n", - "Selling PODD on 2014-08-31 00:00:00\n", - "Selling NOW on 2014-08-31 00:00:00\n", - "Selling RCL on 2014-08-31 00:00:00\n", - "Selling ENPH on 2014-08-31 00:00:00\n", - "Selling TTWO on 2014-08-31 00:00:00\n", - "Selling KMX on 2014-08-31 00:00:00\n", - "Selling LULU on 2014-08-31 00:00:00\n", - "Selling PNR on 2014-08-31 00:00:00\n", - "Selling SWKS on 2014-08-31 00:00:00\n", - "Selling FANG on 2014-08-31 00:00:00\n", - "Selling DAL on 2014-08-31 00:00:00\n", - "Selling AMZN on 2014-08-31 00:00:00\n", - "Selling BBY on 2014-08-31 00:00:00\n", - "Selling INCY on 2014-08-31 00:00:00\n", - "Selling MOH on 2014-08-31 00:00:00\n", - "Selling BLDR on 2014-08-31 00:00:00\n", - "Selling AXON on 2014-08-31 00:00:00\n", - "Buying AMD on 2014-09-30 00:00:00\n", - "Buying BG on 2014-09-30 00:00:00\n", - "Buying AMCR on 2014-09-30 00:00:00\n", - "Buying MPC on 2014-09-30 00:00:00\n", - "Buying TMUS on 2014-09-30 00:00:00\n", - "Buying CLX on 2014-09-30 00:00:00\n", - "Buying RSG on 2014-09-30 00:00:00\n", - "Buying ALL on 2014-09-30 00:00:00\n", - "Buying FE on 2014-09-30 00:00:00\n", - "Buying ULTA on 2014-09-30 00:00:00\n", - "Buying NEM on 2014-09-30 00:00:00\n", - "Buying DECK on 2014-09-30 00:00:00\n", - "Buying TPL on 2014-09-30 00:00:00\n", - "Buying CBOE on 2014-09-30 00:00:00\n", - "Buying RMD on 2014-09-30 00:00:00\n", - "Buying GEN on 2014-09-30 00:00:00\n", - "Buying WTW on 2014-09-30 00:00:00\n", - "Buying DUK on 2014-09-30 00:00:00\n", - "Buying JNPR on 2014-09-30 00:00:00\n", - "Buying EBAY on 2014-09-30 00:00:00\n", - "Buying NVR on 2014-09-30 00:00:00\n", - "Buying EXC on 2014-09-30 00:00:00\n", - "Buying PG on 2014-09-30 00:00:00\n", - "Buying O on 2014-09-30 00:00:00\n", - "Buying WRB on 2014-09-30 00:00:00\n", - "Buying DOC on 2014-09-30 00:00:00\n", - "Buying ACGL on 2014-09-30 00:00:00\n", - "Buying PPL on 2014-09-30 00:00:00\n", - "Buying SO on 2014-09-30 00:00:00\n", - "Buying CPRT on 2014-09-30 00:00:00\n", - "Buying UDR on 2014-09-30 00:00:00\n", - "Buying KO on 2014-09-30 00:00:00\n", - "Buying FRT on 2014-09-30 00:00:00\n", - "Buying DLR on 2014-09-30 00:00:00\n", - "Buying BALL on 2014-09-30 00:00:00\n", - "Buying ARE on 2014-09-30 00:00:00\n", - "Buying CHD on 2014-09-30 00:00:00\n", - "Buying CF on 2014-09-30 00:00:00\n", - "Buying CMS on 2014-09-30 00:00:00\n", - "Buying NCLH on 2014-09-30 00:00:00\n", - "Buying EVRG on 2014-09-30 00:00:00\n", - "Buying DE on 2014-09-30 00:00:00\n", - "Buying COST on 2014-09-30 00:00:00\n", - "Buying APTV on 2014-09-30 00:00:00\n", - "Buying WELL on 2014-09-30 00:00:00\n", - "Buying VRSN on 2014-09-30 00:00:00\n", - "Selling YUM on 2014-09-30 00:00:00\n", - "Selling WYNN on 2014-09-30 00:00:00\n", - "Selling GILD on 2014-09-30 00:00:00\n", - "Selling MA on 2014-09-30 00:00:00\n", - "Selling GOOG on 2014-09-30 00:00:00\n", - "Selling CI on 2014-09-30 00:00:00\n", - "Selling URI on 2014-09-30 00:00:00\n", - "Selling NKE on 2014-09-30 00:00:00\n", - "Selling DVN on 2014-09-30 00:00:00\n", - "Selling META on 2014-09-30 00:00:00\n", - "Selling GOOGL on 2014-09-30 00:00:00\n", - "Selling RCL on 2014-09-30 00:00:00\n", - "Selling ALB on 2014-09-30 00:00:00\n", - "Selling BLK on 2014-09-30 00:00:00\n", - "Selling PNR on 2014-09-30 00:00:00\n", - "Selling SMCI on 2014-09-30 00:00:00\n", - "Selling CRM on 2014-09-30 00:00:00\n", - "Selling HAL on 2014-09-30 00:00:00\n", - "Selling EA on 2014-09-30 00:00:00\n", - "Selling EOG on 2014-09-30 00:00:00\n", - "Selling KMX on 2014-09-30 00:00:00\n", - "Selling TTWO on 2014-09-30 00:00:00\n", - "Selling ZBRA on 2014-09-30 00:00:00\n", - "Selling PAYC on 2014-09-30 00:00:00\n", - "Selling CPAY on 2014-09-30 00:00:00\n", - "Selling FTNT on 2014-09-30 00:00:00\n", - "Selling NXPI on 2014-09-30 00:00:00\n", - "Selling AKAM on 2014-09-30 00:00:00\n", - "Selling AVGO on 2014-09-30 00:00:00\n", - "Selling AMZN on 2014-09-30 00:00:00\n", - "Selling DXCM on 2014-09-30 00:00:00\n", - "Selling BBY on 2014-09-30 00:00:00\n", - "Selling ANET on 2014-09-30 00:00:00\n", - "Selling WDAY on 2014-09-30 00:00:00\n", - "Selling PODD on 2014-09-30 00:00:00\n", - "Selling PANW on 2014-09-30 00:00:00\n", - "Selling VRTX on 2014-09-30 00:00:00\n", - "Selling FANG on 2014-09-30 00:00:00\n", - "Selling ENPH on 2014-09-30 00:00:00\n", - "Selling NOW on 2014-09-30 00:00:00\n", - "Selling MOH on 2014-09-30 00:00:00\n", - "Selling BLDR on 2014-09-30 00:00:00\n", - "Selling SWKS on 2014-09-30 00:00:00\n", - "Selling INCY on 2014-09-30 00:00:00\n", - "Selling MU on 2014-09-30 00:00:00\n", - "Selling AXON on 2014-09-30 00:00:00\n", - "Buying KO on 2014-10-31 00:00:00\n", - "Buying AMCR on 2014-10-31 00:00:00\n", - "Buying DOC on 2014-10-31 00:00:00\n", - "Buying EQR on 2014-10-31 00:00:00\n", - "Buying VTR on 2014-10-31 00:00:00\n", - "Buying SO on 2014-10-31 00:00:00\n", - "Buying O on 2014-10-31 00:00:00\n", - "Buying DUK on 2014-10-31 00:00:00\n", - "Buying AVB on 2014-10-31 00:00:00\n", - "Buying ED on 2014-10-31 00:00:00\n", - "Buying WELL on 2014-10-31 00:00:00\n", - "Buying UDR on 2014-10-31 00:00:00\n", - "Buying ARE on 2014-10-31 00:00:00\n", - "Buying WEC on 2014-10-31 00:00:00\n", - "Buying NEM on 2014-10-31 00:00:00\n", - "Buying CLX on 2014-10-31 00:00:00\n", - "Buying CPT on 2014-10-31 00:00:00\n", - "Buying ES on 2014-10-31 00:00:00\n", - "Buying IBM on 2014-10-31 00:00:00\n", - "Buying CMG on 2014-10-31 00:00:00\n", - "Buying MAA on 2014-10-31 00:00:00\n", - "Buying EVRG on 2014-10-31 00:00:00\n", - "Buying ETR on 2014-10-31 00:00:00\n", - "Buying FE on 2014-10-31 00:00:00\n", - "Buying PEP on 2014-10-31 00:00:00\n", - "Buying BDX on 2014-10-31 00:00:00\n", - "Buying EXR on 2014-10-31 00:00:00\n", - "Buying PM on 2014-10-31 00:00:00\n", - "Buying XEL on 2014-10-31 00:00:00\n", - "Buying AEP on 2014-10-31 00:00:00\n", - "Buying ESS on 2014-10-31 00:00:00\n", - "Buying FRT on 2014-10-31 00:00:00\n", - "Buying CBOE on 2014-10-31 00:00:00\n", - "Buying RSG on 2014-10-31 00:00:00\n", - "Buying PG on 2014-10-31 00:00:00\n", - "Buying CMS on 2014-10-31 00:00:00\n", - "Buying BRO on 2014-10-31 00:00:00\n", - "Buying PPL on 2014-10-31 00:00:00\n", - "Buying ULTA on 2014-10-31 00:00:00\n", - "Buying DLR on 2014-10-31 00:00:00\n", - "Buying PSA on 2014-10-31 00:00:00\n", - "Buying ACGL on 2014-10-31 00:00:00\n", - "Buying EIX on 2014-10-31 00:00:00\n", - "Buying PNW on 2014-10-31 00:00:00\n", - "Buying PCG on 2014-10-31 00:00:00\n", - "Buying WMT on 2014-10-31 00:00:00\n", - "Selling MCHP on 2014-10-31 00:00:00\n", - "Selling DD on 2014-10-31 00:00:00\n", - "Selling PSX on 2014-10-31 00:00:00\n", - "Selling EXPE on 2014-10-31 00:00:00\n", - "Selling STX on 2014-10-31 00:00:00\n", - "Selling HUBB on 2014-10-31 00:00:00\n", - "Selling INCY on 2014-10-31 00:00:00\n", - "Selling PWR on 2014-10-31 00:00:00\n", - "Selling PODD on 2014-10-31 00:00:00\n", - "Selling AKAM on 2014-10-31 00:00:00\n", - "Selling CPAY on 2014-10-31 00:00:00\n", - "Selling DXCM on 2014-10-31 00:00:00\n", - "Selling BIIB on 2014-10-31 00:00:00\n", - "Selling CRM on 2014-10-31 00:00:00\n", - "Selling PH on 2014-10-31 00:00:00\n", - "Selling LUV on 2014-10-31 00:00:00\n", - "Selling LYV on 2014-10-31 00:00:00\n", - "Selling SCHW on 2014-10-31 00:00:00\n", - "Selling WBD on 2014-10-31 00:00:00\n", - "Selling TER on 2014-10-31 00:00:00\n", - "Selling KMX on 2014-10-31 00:00:00\n", - "Selling BLDR on 2014-10-31 00:00:00\n", - "Selling CCL on 2014-10-31 00:00:00\n", - "Selling FFIV on 2014-10-31 00:00:00\n", - "Selling VRTX on 2014-10-31 00:00:00\n", - "Selling AMD on 2014-10-31 00:00:00\n", - "Selling WDAY on 2014-10-31 00:00:00\n", - "Selling LYB on 2014-10-31 00:00:00\n", - "Selling TTWO on 2014-10-31 00:00:00\n", - "Selling MPWR on 2014-10-31 00:00:00\n", - "Selling DAL on 2014-10-31 00:00:00\n", - "Selling HAL on 2014-10-31 00:00:00\n", - "Selling NXPI on 2014-10-31 00:00:00\n", - "Selling TXT on 2014-10-31 00:00:00\n", - "Selling PANW on 2014-10-31 00:00:00\n", - "Selling AVGO on 2014-10-31 00:00:00\n", - "Selling RCL on 2014-10-31 00:00:00\n", - "Selling ON on 2014-10-31 00:00:00\n", - "Selling MU on 2014-10-31 00:00:00\n", - "Selling FANG on 2014-10-31 00:00:00\n", - "Selling NOW on 2014-10-31 00:00:00\n", - "Selling FSLR on 2014-10-31 00:00:00\n", - "Selling SWKS on 2014-10-31 00:00:00\n", - "Selling ENPH on 2014-10-31 00:00:00\n", - "Selling URI on 2014-10-31 00:00:00\n", - "Selling ANET on 2014-10-31 00:00:00\n", - "Buying KO on 2014-11-30 00:00:00\n", - "Buying DOC on 2014-11-30 00:00:00\n", - "Buying VTR on 2014-11-30 00:00:00\n", - "Buying O on 2014-11-30 00:00:00\n", - "Buying EQR on 2014-11-30 00:00:00\n", - "Buying SO on 2014-11-30 00:00:00\n", - "Buying DUK on 2014-11-30 00:00:00\n", - "Buying AVB on 2014-11-30 00:00:00\n", - "Buying AMCR on 2014-11-30 00:00:00\n", - "Buying WELL on 2014-11-30 00:00:00\n", - "Buying ED on 2014-11-30 00:00:00\n", - "Buying WEC on 2014-11-30 00:00:00\n", - "Buying UDR on 2014-11-30 00:00:00\n", - "Buying ARE on 2014-11-30 00:00:00\n", - "Buying CLX on 2014-11-30 00:00:00\n", - "Buying IBM on 2014-11-30 00:00:00\n", - "Buying CBOE on 2014-11-30 00:00:00\n", - "Buying ES on 2014-11-30 00:00:00\n", - "Buying CPT on 2014-11-30 00:00:00\n", - "Buying CMG on 2014-11-30 00:00:00\n", - "Buying PM on 2014-11-30 00:00:00\n", - "Buying NEM on 2014-11-30 00:00:00\n", - "Buying ETR on 2014-11-30 00:00:00\n", - "Buying PEP on 2014-11-30 00:00:00\n", - "Buying FE on 2014-11-30 00:00:00\n", - "Buying EVRG on 2014-11-30 00:00:00\n", - "Buying PG on 2014-11-30 00:00:00\n", - "Buying MAA on 2014-11-30 00:00:00\n", - "Buying AEP on 2014-11-30 00:00:00\n", - "Buying XEL on 2014-11-30 00:00:00\n", - "Buying RSG on 2014-11-30 00:00:00\n", - "Buying CMS on 2014-11-30 00:00:00\n", - "Buying PCG on 2014-11-30 00:00:00\n", - "Buying DLR on 2014-11-30 00:00:00\n", - "Buying ESS on 2014-11-30 00:00:00\n", - "Buying EIX on 2014-11-30 00:00:00\n", - "Buying FRT on 2014-11-30 00:00:00\n", - "Buying ULTA on 2014-11-30 00:00:00\n", - "Buying BDX on 2014-11-30 00:00:00\n", - "Buying REG on 2014-11-30 00:00:00\n", - "Buying BRO on 2014-11-30 00:00:00\n", - "Buying STE on 2014-11-30 00:00:00\n", - "Buying ACGL on 2014-11-30 00:00:00\n", - "Buying ICE on 2014-11-30 00:00:00\n", - "Buying EXR on 2014-11-30 00:00:00\n", - "Buying WMT on 2014-11-30 00:00:00\n", - "Selling WAB on 2014-11-30 00:00:00\n", - "Selling FFIV on 2014-11-30 00:00:00\n", - "Selling ABBV on 2014-11-30 00:00:00\n", - "Selling CRM on 2014-11-30 00:00:00\n", - "Selling VRTX on 2014-11-30 00:00:00\n", - "Selling EMN on 2014-11-30 00:00:00\n", - "Selling PSX on 2014-11-30 00:00:00\n", - "Selling BKR on 2014-11-30 00:00:00\n", - "Selling SCHW on 2014-11-30 00:00:00\n", - "Selling APA on 2014-11-30 00:00:00\n", - "Selling MCHP on 2014-11-30 00:00:00\n", - "Selling BIIB on 2014-11-30 00:00:00\n", - "Selling EXPE on 2014-11-30 00:00:00\n", - "Selling WDAY on 2014-11-30 00:00:00\n", - "Selling AMAT on 2014-11-30 00:00:00\n", - "Selling PH on 2014-11-30 00:00:00\n", - "Selling DAL on 2014-11-30 00:00:00\n", - "Selling PWR on 2014-11-30 00:00:00\n", - "Selling WBD on 2014-11-30 00:00:00\n", - "Selling KMX on 2014-11-30 00:00:00\n", - "Selling CCL on 2014-11-30 00:00:00\n", - "Selling EOG on 2014-11-30 00:00:00\n", - "Selling AMD on 2014-11-30 00:00:00\n", - "Selling DD on 2014-11-30 00:00:00\n", - "Selling LYV on 2014-11-30 00:00:00\n", - "Selling PODD on 2014-11-30 00:00:00\n", - "Selling TTWO on 2014-11-30 00:00:00\n", - "Selling DVN on 2014-11-30 00:00:00\n", - "Selling TER on 2014-11-30 00:00:00\n", - "Selling TXT on 2014-11-30 00:00:00\n", - "Selling PANW on 2014-11-30 00:00:00\n", - "Selling MPWR on 2014-11-30 00:00:00\n", - "Selling ENPH on 2014-11-30 00:00:00\n", - "Selling LYB on 2014-11-30 00:00:00\n", - "Selling HAL on 2014-11-30 00:00:00\n", - "Selling RCL on 2014-11-30 00:00:00\n", - "Selling AVGO on 2014-11-30 00:00:00\n", - "Selling NXPI on 2014-11-30 00:00:00\n", - "Selling MU on 2014-11-30 00:00:00\n", - "Selling ON on 2014-11-30 00:00:00\n", - "Selling NOW on 2014-11-30 00:00:00\n", - "Selling FANG on 2014-11-30 00:00:00\n", - "Selling FSLR on 2014-11-30 00:00:00\n", - "Selling SWKS on 2014-11-30 00:00:00\n", - "Selling URI on 2014-11-30 00:00:00\n", - "Selling ANET on 2014-11-30 00:00:00\n", - "Buying DOC on 2014-12-31 00:00:00\n", - "Buying VTR on 2014-12-31 00:00:00\n", - "Buying WELL on 2014-12-31 00:00:00\n", - "Buying O on 2014-12-31 00:00:00\n", - "Buying AMCR on 2014-12-31 00:00:00\n", - "Buying AVB on 2014-12-31 00:00:00\n", - "Buying SO on 2014-12-31 00:00:00\n", - "Buying ED on 2014-12-31 00:00:00\n", - "Buying DUK on 2014-12-31 00:00:00\n", - "Buying CMG on 2014-12-31 00:00:00\n", - "Buying ARE on 2014-12-31 00:00:00\n", - "Buying UDR on 2014-12-31 00:00:00\n", - "Buying ERIE on 2014-12-31 00:00:00\n", - "Buying KO on 2014-12-31 00:00:00\n", - "Buying EQR on 2014-12-31 00:00:00\n", - "Buying CBOE on 2014-12-31 00:00:00\n", - "Buying WEC on 2014-12-31 00:00:00\n", - "Buying CAG on 2014-12-31 00:00:00\n", - "Buying KIM on 2014-12-31 00:00:00\n", - "Buying PG on 2014-12-31 00:00:00\n", - "Buying ACGL on 2014-12-31 00:00:00\n", - "Buying ETR on 2014-12-31 00:00:00\n", - "Buying CLX on 2014-12-31 00:00:00\n", - "Buying CPT on 2014-12-31 00:00:00\n", - "Buying WMT on 2014-12-31 00:00:00\n", - "Buying AEP on 2014-12-31 00:00:00\n", - "Buying PCG on 2014-12-31 00:00:00\n", - "Buying RSG on 2014-12-31 00:00:00\n", - "Buying SBUX on 2014-12-31 00:00:00\n", - "Buying MAA on 2014-12-31 00:00:00\n", - "Buying EVRG on 2014-12-31 00:00:00\n", - "Buying PEP on 2014-12-31 00:00:00\n", - "Buying ES on 2014-12-31 00:00:00\n", - "Buying TRV on 2014-12-31 00:00:00\n", - "Buying XEL on 2014-12-31 00:00:00\n", - "Buying ESS on 2014-12-31 00:00:00\n", - "Buying TPR on 2014-12-31 00:00:00\n", - "Buying EIX on 2014-12-31 00:00:00\n", - "Buying DPZ on 2014-12-31 00:00:00\n", - "Buying CHD on 2014-12-31 00:00:00\n", - "Buying EXR on 2014-12-31 00:00:00\n", - "Buying EXPD on 2014-12-31 00:00:00\n", - "Buying REG on 2014-12-31 00:00:00\n", - "Buying DE on 2014-12-31 00:00:00\n", - "Buying BRO on 2014-12-31 00:00:00\n", - "Buying CPB on 2014-12-31 00:00:00\n", - "Buying BXP on 2014-12-31 00:00:00\n", - "Selling HUBB on 2014-12-31 00:00:00\n", - "Selling TTWO on 2014-12-31 00:00:00\n", - "Selling CPAY on 2014-12-31 00:00:00\n", - "Selling WDAY on 2014-12-31 00:00:00\n", - "Selling CE on 2014-12-31 00:00:00\n", - "Selling MLM on 2014-12-31 00:00:00\n", - "Selling JBL on 2014-12-31 00:00:00\n", - "Selling ANET on 2014-12-31 00:00:00\n", - "Selling PSX on 2014-12-31 00:00:00\n", - "Selling UNP on 2014-12-31 00:00:00\n", - "Selling RCL on 2014-12-31 00:00:00\n", - "Selling BIIB on 2014-12-31 00:00:00\n", - "Selling MCHP on 2014-12-31 00:00:00\n", - "Selling CRM on 2014-12-31 00:00:00\n", - "Selling CMI on 2014-12-31 00:00:00\n", - "Selling WMB on 2014-12-31 00:00:00\n", - "Selling HAL on 2014-12-31 00:00:00\n", - "Selling EOG on 2014-12-31 00:00:00\n", - "Selling PH on 2014-12-31 00:00:00\n", - "Selling HES on 2014-12-31 00:00:00\n", - "Selling EMN on 2014-12-31 00:00:00\n", - "Selling ALB on 2014-12-31 00:00:00\n", - "Selling NOW on 2014-12-31 00:00:00\n", - "Selling TER on 2014-12-31 00:00:00\n", - "Selling BLDR on 2014-12-31 00:00:00\n", - "Selling NXPI on 2014-12-31 00:00:00\n", - "Selling MPWR on 2014-12-31 00:00:00\n", - "Selling SCHW on 2014-12-31 00:00:00\n", - "Selling ROK on 2014-12-31 00:00:00\n", - "Selling APA on 2014-12-31 00:00:00\n", - "Selling TXT on 2014-12-31 00:00:00\n", - "Selling ON on 2014-12-31 00:00:00\n", - "Selling SWKS on 2014-12-31 00:00:00\n", - "Selling PODD on 2014-12-31 00:00:00\n", - "Selling MU on 2014-12-31 00:00:00\n", - "Selling TSLA on 2014-12-31 00:00:00\n", - "Selling AVGO on 2014-12-31 00:00:00\n", - "Selling ENPH on 2014-12-31 00:00:00\n", - "Selling DD on 2014-12-31 00:00:00\n", - "Selling DVN on 2014-12-31 00:00:00\n", - "Selling PWR on 2014-12-31 00:00:00\n", - "Selling OKE on 2014-12-31 00:00:00\n", - "Selling URI on 2014-12-31 00:00:00\n", - "Selling FANG on 2014-12-31 00:00:00\n", - "Selling LYB on 2014-12-31 00:00:00\n", - "Selling TRGP on 2014-12-31 00:00:00\n", - "Selling FSLR on 2014-12-31 00:00:00\n", - "Buying DOC on 2015-01-31 00:00:00\n", - "Buying O on 2015-01-31 00:00:00\n", - "Buying ANET on 2015-01-31 00:00:00\n", - "Buying VTR on 2015-01-31 00:00:00\n", - "Buying CZR on 2015-01-31 00:00:00\n", - "Buying WELL on 2015-01-31 00:00:00\n", - "Buying AMCR on 2015-01-31 00:00:00\n", - "Buying AVB on 2015-01-31 00:00:00\n", - "Buying NEM on 2015-01-31 00:00:00\n", - "Buying CBOE on 2015-01-31 00:00:00\n", - "Buying UDR on 2015-01-31 00:00:00\n", - "Buying PCG on 2015-01-31 00:00:00\n", - "Buying DLR on 2015-01-31 00:00:00\n", - "Buying MAA on 2015-01-31 00:00:00\n", - "Buying LULU on 2015-01-31 00:00:00\n", - "Buying ESS on 2015-01-31 00:00:00\n", - "Buying DUK on 2015-01-31 00:00:00\n", - "Buying WY on 2015-01-31 00:00:00\n", - "Buying SPG on 2015-01-31 00:00:00\n", - "Buying ETR on 2015-01-31 00:00:00\n", - "Buying CPT on 2015-01-31 00:00:00\n", - "Buying EXR on 2015-01-31 00:00:00\n", - "Buying ED on 2015-01-31 00:00:00\n", - "Buying KIM on 2015-01-31 00:00:00\n", - "Buying ACGL on 2015-01-31 00:00:00\n", - "Buying EIX on 2015-01-31 00:00:00\n", - "Buying FFIV on 2015-01-31 00:00:00\n", - "Buying EQR on 2015-01-31 00:00:00\n", - "Buying VRSK on 2015-01-31 00:00:00\n", - "Buying SO on 2015-01-31 00:00:00\n", - "Buying BXP on 2015-01-31 00:00:00\n", - "Buying KR on 2015-01-31 00:00:00\n", - "Buying HAS on 2015-01-31 00:00:00\n", - "Buying RSG on 2015-01-31 00:00:00\n", - "Buying ARE on 2015-01-31 00:00:00\n", - "Buying CLX on 2015-01-31 00:00:00\n", - "Buying WM on 2015-01-31 00:00:00\n", - "Buying VZ on 2015-01-31 00:00:00\n", - "Buying PLD on 2015-01-31 00:00:00\n", - "Buying AMD on 2015-01-31 00:00:00\n", - "Buying FRT on 2015-01-31 00:00:00\n", - "Buying AMZN on 2015-01-31 00:00:00\n", - "Buying REG on 2015-01-31 00:00:00\n", - "Buying COR on 2015-01-31 00:00:00\n", - "Buying TDG on 2015-01-31 00:00:00\n", - "Buying CRL on 2015-01-31 00:00:00\n", - "Buying ES on 2015-01-31 00:00:00\n", - "Selling PRU on 2015-01-31 00:00:00\n", - "Selling JBL on 2015-01-31 00:00:00\n", - "Selling TER on 2015-01-31 00:00:00\n", - "Selling CE on 2015-01-31 00:00:00\n", - "Selling JPM on 2015-01-31 00:00:00\n", - "Selling LEN on 2015-01-31 00:00:00\n", - "Selling HPQ on 2015-01-31 00:00:00\n", - "Selling RF on 2015-01-31 00:00:00\n", - "Selling ENPH on 2015-01-31 00:00:00\n", - "Selling PODD on 2015-01-31 00:00:00\n", - "Selling DHI on 2015-01-31 00:00:00\n", - "Selling IPG on 2015-01-31 00:00:00\n", - "Selling A on 2015-01-31 00:00:00\n", - "Selling BAC on 2015-01-31 00:00:00\n", - "Selling CRM on 2015-01-31 00:00:00\n", - "Selling C on 2015-01-31 00:00:00\n", - "Selling BWA on 2015-01-31 00:00:00\n", - "Selling SWKS on 2015-01-31 00:00:00\n", - "Selling UNP on 2015-01-31 00:00:00\n", - "Selling PHM on 2015-01-31 00:00:00\n", - "Selling J on 2015-01-31 00:00:00\n", - "Selling PSX on 2015-01-31 00:00:00\n", - "Selling AMP on 2015-01-31 00:00:00\n", - "Selling NFLX on 2015-01-31 00:00:00\n", - "Selling KEY on 2015-01-31 00:00:00\n", - "Selling PFG on 2015-01-31 00:00:00\n", - "Selling MET on 2015-01-31 00:00:00\n", - "Selling APA on 2015-01-31 00:00:00\n", - "Selling MU on 2015-01-31 00:00:00\n", - "Selling HES on 2015-01-31 00:00:00\n", - "Selling TSLA on 2015-01-31 00:00:00\n", - "Selling EOG on 2015-01-31 00:00:00\n", - "Selling FANG on 2015-01-31 00:00:00\n", - "Selling COP on 2015-01-31 00:00:00\n", - "Selling URI on 2015-01-31 00:00:00\n", - "Selling DD on 2015-01-31 00:00:00\n", - "Selling SCHW on 2015-01-31 00:00:00\n", - "Selling BLDR on 2015-01-31 00:00:00\n", - "Selling DVN on 2015-01-31 00:00:00\n", - "Selling PWR on 2015-01-31 00:00:00\n", - "Selling MLM on 2015-01-31 00:00:00\n", - "Selling SMCI on 2015-01-31 00:00:00\n", - "Selling OKE on 2015-01-31 00:00:00\n", - "Selling FSLR on 2015-01-31 00:00:00\n", - "Selling FCX on 2015-01-31 00:00:00\n", - "Selling LYB on 2015-01-31 00:00:00\n", - "Selling TRGP on 2015-01-31 00:00:00\n", - "Buying DOC on 2015-02-28 00:00:00\n", - "Buying AMCR on 2015-02-28 00:00:00\n", - "Buying O on 2015-02-28 00:00:00\n", - "Buying ANET on 2015-02-28 00:00:00\n", - "Buying VTR on 2015-02-28 00:00:00\n", - "Buying CZR on 2015-02-28 00:00:00\n", - "Buying WELL on 2015-02-28 00:00:00\n", - "Buying LULU on 2015-02-28 00:00:00\n", - "Buying NEM on 2015-02-28 00:00:00\n", - "Buying MAA on 2015-02-28 00:00:00\n", - "Buying UDR on 2015-02-28 00:00:00\n", - "Buying AVB on 2015-02-28 00:00:00\n", - "Buying PCG on 2015-02-28 00:00:00\n", - "Buying CPT on 2015-02-28 00:00:00\n", - "Buying CBOE on 2015-02-28 00:00:00\n", - "Buying WY on 2015-02-28 00:00:00\n", - "Buying ED on 2015-02-28 00:00:00\n", - "Buying DLR on 2015-02-28 00:00:00\n", - "Buying SPG on 2015-02-28 00:00:00\n", - "Buying ARE on 2015-02-28 00:00:00\n", - "Buying DUK on 2015-02-28 00:00:00\n", - "Buying EXR on 2015-02-28 00:00:00\n", - "Buying ESS on 2015-02-28 00:00:00\n", - "Buying EQR on 2015-02-28 00:00:00\n", - "Buying PLD on 2015-02-28 00:00:00\n", - "Buying ETR on 2015-02-28 00:00:00\n", - "Buying EIX on 2015-02-28 00:00:00\n", - "Buying WM on 2015-02-28 00:00:00\n", - "Buying SO on 2015-02-28 00:00:00\n", - "Buying RSG on 2015-02-28 00:00:00\n", - "Buying HAS on 2015-02-28 00:00:00\n", - "Buying ACGL on 2015-02-28 00:00:00\n", - "Buying CLX on 2015-02-28 00:00:00\n", - "Buying KDP on 2015-02-28 00:00:00\n", - "Buying KR on 2015-02-28 00:00:00\n", - "Buying TECH on 2015-02-28 00:00:00\n", - "Buying TDG on 2015-02-28 00:00:00\n", - "Buying VRSK on 2015-02-28 00:00:00\n", - "Buying CAG on 2015-02-28 00:00:00\n", - "Buying KIM on 2015-02-28 00:00:00\n", - "Buying AMZN on 2015-02-28 00:00:00\n", - "Buying BXP on 2015-02-28 00:00:00\n", - "Buying KKR on 2015-02-28 00:00:00\n", - "Buying FFIV on 2015-02-28 00:00:00\n", - "Buying ES on 2015-02-28 00:00:00\n", - "Buying REG on 2015-02-28 00:00:00\n", - "Buying VZ on 2015-02-28 00:00:00\n", - "Selling VTRS on 2015-02-28 00:00:00\n", - "Selling IPG on 2015-02-28 00:00:00\n", - "Selling CVX on 2015-02-28 00:00:00\n", - "Selling JPM on 2015-02-28 00:00:00\n", - "Selling WMB on 2015-02-28 00:00:00\n", - "Selling RF on 2015-02-28 00:00:00\n", - "Selling FICO on 2015-02-28 00:00:00\n", - "Selling MSFT on 2015-02-28 00:00:00\n", - "Selling IVZ on 2015-02-28 00:00:00\n", - "Selling FANG on 2015-02-28 00:00:00\n", - "Selling UNP on 2015-02-28 00:00:00\n", - "Selling C on 2015-02-28 00:00:00\n", - "Selling A on 2015-02-28 00:00:00\n", - "Selling TSLA on 2015-02-28 00:00:00\n", - "Selling PSX on 2015-02-28 00:00:00\n", - "Selling BAC on 2015-02-28 00:00:00\n", - "Selling EOG on 2015-02-28 00:00:00\n", - "Selling MET on 2015-02-28 00:00:00\n", - "Selling NVDA on 2015-02-28 00:00:00\n", - "Selling NFLX on 2015-02-28 00:00:00\n", - "Selling DD on 2015-02-28 00:00:00\n", - "Selling BWA on 2015-02-28 00:00:00\n", - "Selling CRM on 2015-02-28 00:00:00\n", - "Selling KEY on 2015-02-28 00:00:00\n", - "Selling APA on 2015-02-28 00:00:00\n", - "Selling AMP on 2015-02-28 00:00:00\n", - "Selling PFG on 2015-02-28 00:00:00\n", - "Selling ETN on 2015-02-28 00:00:00\n", - "Selling MGM on 2015-02-28 00:00:00\n", - "Selling DVN on 2015-02-28 00:00:00\n", - "Selling BLDR on 2015-02-28 00:00:00\n", - "Selling URI on 2015-02-28 00:00:00\n", - "Selling MU on 2015-02-28 00:00:00\n", - "Selling HES on 2015-02-28 00:00:00\n", - "Selling J on 2015-02-28 00:00:00\n", - "Selling DECK on 2015-02-28 00:00:00\n", - "Selling SCHW on 2015-02-28 00:00:00\n", - "Selling SMCI on 2015-02-28 00:00:00\n", - "Selling PWR on 2015-02-28 00:00:00\n", - "Selling COP on 2015-02-28 00:00:00\n", - "Selling ENPH on 2015-02-28 00:00:00\n", - "Selling OKE on 2015-02-28 00:00:00\n", - "Selling LYB on 2015-02-28 00:00:00\n", - "Selling MLM on 2015-02-28 00:00:00\n", - "Selling FSLR on 2015-02-28 00:00:00\n", - "Selling TRGP on 2015-02-28 00:00:00\n", - "Selling FCX on 2015-02-28 00:00:00\n", - "Buying CZR on 2015-03-31 00:00:00\n", - "Buying AMCR on 2015-03-31 00:00:00\n", - "Buying NEM on 2015-03-31 00:00:00\n", - "Buying CBOE on 2015-03-31 00:00:00\n", - "Buying COO on 2015-03-31 00:00:00\n", - "Buying O on 2015-03-31 00:00:00\n", - "Buying ANET on 2015-03-31 00:00:00\n", - "Buying DOC on 2015-03-31 00:00:00\n", - "Buying DLR on 2015-03-31 00:00:00\n", - "Buying WELL on 2015-03-31 00:00:00\n", - "Buying DVA on 2015-03-31 00:00:00\n", - "Buying KKR on 2015-03-31 00:00:00\n", - "Buying FFIV on 2015-03-31 00:00:00\n", - "Buying BG on 2015-03-31 00:00:00\n", - "Buying DUK on 2015-03-31 00:00:00\n", - "Buying MAA on 2015-03-31 00:00:00\n", - "Buying RSG on 2015-03-31 00:00:00\n", - "Buying WM on 2015-03-31 00:00:00\n", - "Buying TECH on 2015-03-31 00:00:00\n", - "Buying SO on 2015-03-31 00:00:00\n", - "Buying CPT on 2015-03-31 00:00:00\n", - "Buying KDP on 2015-03-31 00:00:00\n", - "Buying BX on 2015-03-31 00:00:00\n", - "Buying TDG on 2015-03-31 00:00:00\n", - "Buying LULU on 2015-03-31 00:00:00\n", - "Buying LII on 2015-03-31 00:00:00\n", - "Buying ES on 2015-03-31 00:00:00\n", - "Buying INCY on 2015-03-31 00:00:00\n", - "Buying CRL on 2015-03-31 00:00:00\n", - "Buying AWK on 2015-03-31 00:00:00\n", - "Buying ACGL on 2015-03-31 00:00:00\n", - "Buying PCG on 2015-03-31 00:00:00\n", - "Buying VTR on 2015-03-31 00:00:00\n", - "Buying CLX on 2015-03-31 00:00:00\n", - "Buying COR on 2015-03-31 00:00:00\n", - "Buying UDR on 2015-03-31 00:00:00\n", - "Buying AVB on 2015-03-31 00:00:00\n", - "Buying ED on 2015-03-31 00:00:00\n", - "Buying EIX on 2015-03-31 00:00:00\n", - "Buying KR on 2015-03-31 00:00:00\n", - "Buying HAS on 2015-03-31 00:00:00\n", - "Buying DTE on 2015-03-31 00:00:00\n", - "Buying HSY on 2015-03-31 00:00:00\n", - "Buying ETR on 2015-03-31 00:00:00\n", - "Buying AOS on 2015-03-31 00:00:00\n", - "Buying TFX on 2015-03-31 00:00:00\n", - "Buying PLD on 2015-03-31 00:00:00\n", - "Selling MSFT on 2015-03-31 00:00:00\n", - "Selling C on 2015-03-31 00:00:00\n", - "Selling PWR on 2015-03-31 00:00:00\n", - "Selling MAR on 2015-03-31 00:00:00\n", - "Selling CRM on 2015-03-31 00:00:00\n", - "Selling A on 2015-03-31 00:00:00\n", - "Selling PHM on 2015-03-31 00:00:00\n", - "Selling NVDA on 2015-03-31 00:00:00\n", - "Selling IPG on 2015-03-31 00:00:00\n", - "Selling MGM on 2015-03-31 00:00:00\n", - "Selling SWKS on 2015-03-31 00:00:00\n", - "Selling UNP on 2015-03-31 00:00:00\n", - "Selling TRGP on 2015-03-31 00:00:00\n", - "Selling COP on 2015-03-31 00:00:00\n", - "Selling GS on 2015-03-31 00:00:00\n", - "Selling TER on 2015-03-31 00:00:00\n", - "Selling WDAY on 2015-03-31 00:00:00\n", - "Selling TYL on 2015-03-31 00:00:00\n", - "Selling AMAT on 2015-03-31 00:00:00\n", - "Selling DHI on 2015-03-31 00:00:00\n", - "Selling JPM on 2015-03-31 00:00:00\n", - "Selling MS on 2015-03-31 00:00:00\n", - "Selling GEN on 2015-03-31 00:00:00\n", - "Selling KEY on 2015-03-31 00:00:00\n", - "Selling VTRS on 2015-03-31 00:00:00\n", - "Selling PFG on 2015-03-31 00:00:00\n", - "Selling AVGO on 2015-03-31 00:00:00\n", - "Selling BEN on 2015-03-31 00:00:00\n", - "Selling AMP on 2015-03-31 00:00:00\n", - "Selling NFLX on 2015-03-31 00:00:00\n", - "Selling IVZ on 2015-03-31 00:00:00\n", - "Selling KLAC on 2015-03-31 00:00:00\n", - "Selling FICO on 2015-03-31 00:00:00\n", - "Selling PSX on 2015-03-31 00:00:00\n", - "Selling TSCO on 2015-03-31 00:00:00\n", - "Selling URI on 2015-03-31 00:00:00\n", - "Selling ADI on 2015-03-31 00:00:00\n", - "Selling ETN on 2015-03-31 00:00:00\n", - "Selling MU on 2015-03-31 00:00:00\n", - "Selling LYB on 2015-03-31 00:00:00\n", - "Selling SMCI on 2015-03-31 00:00:00\n", - "Selling DECK on 2015-03-31 00:00:00\n", - "Selling BWA on 2015-03-31 00:00:00\n", - "Selling STLD on 2015-03-31 00:00:00\n", - "Selling MLM on 2015-03-31 00:00:00\n", - "Selling FSLR on 2015-03-31 00:00:00\n", - "Selling FCX on 2015-03-31 00:00:00\n", - "Buying TPL on 2015-04-30 00:00:00\n", - "Buying CZR on 2015-04-30 00:00:00\n", - "Buying BLDR on 2015-04-30 00:00:00\n", - "Buying AMCR on 2015-04-30 00:00:00\n", - "Buying COO on 2015-04-30 00:00:00\n", - "Buying CE on 2015-04-30 00:00:00\n", - "Buying APO on 2015-04-30 00:00:00\n", - "Buying CBOE on 2015-04-30 00:00:00\n", - "Buying BG on 2015-04-30 00:00:00\n", - "Buying LKQ on 2015-04-30 00:00:00\n", - "Buying DVA on 2015-04-30 00:00:00\n", - "Buying K on 2015-04-30 00:00:00\n", - "Buying KKR on 2015-04-30 00:00:00\n", - "Buying LII on 2015-04-30 00:00:00\n", - "Buying SJM on 2015-04-30 00:00:00\n", - "Buying BX on 2015-04-30 00:00:00\n", - "Buying EQT on 2015-04-30 00:00:00\n", - "Buying NTAP on 2015-04-30 00:00:00\n", - "Buying CPB on 2015-04-30 00:00:00\n", - "Buying NTRS on 2015-04-30 00:00:00\n", - "Buying IT on 2015-04-30 00:00:00\n", - "Buying KDP on 2015-04-30 00:00:00\n", - "Buying ENPH on 2015-04-30 00:00:00\n", - "Buying ULTA on 2015-04-30 00:00:00\n", - "Buying BAC on 2015-04-30 00:00:00\n", - "Buying CTRA on 2015-04-30 00:00:00\n", - "Buying HSY on 2015-04-30 00:00:00\n", - "Buying MKC on 2015-04-30 00:00:00\n", - "Buying WBD on 2015-04-30 00:00:00\n", - "Buying NVR on 2015-04-30 00:00:00\n", - "Buying SYY on 2015-04-30 00:00:00\n", - "Buying TFX on 2015-04-30 00:00:00\n", - "Buying DE on 2015-04-30 00:00:00\n", - "Buying HOLX on 2015-04-30 00:00:00\n", - "Buying SCHW on 2015-04-30 00:00:00\n", - "Buying TPR on 2015-04-30 00:00:00\n", - "Buying SLB on 2015-04-30 00:00:00\n", - "Buying KMI on 2015-04-30 00:00:00\n", - "Buying MSI on 2015-04-30 00:00:00\n", - "Buying KR on 2015-04-30 00:00:00\n", - "Buying ACGL on 2015-04-30 00:00:00\n", - "Buying WTW on 2015-04-30 00:00:00\n", - "Buying CAG on 2015-04-30 00:00:00\n", - "Buying ROST on 2015-04-30 00:00:00\n", - "Buying ALGN on 2015-04-30 00:00:00\n", - "Buying SYF on 2015-04-30 00:00:00\n", - "Buying EBAY on 2015-04-30 00:00:00\n", - "Selling IFF on 2015-04-30 00:00:00\n", - "Selling BIIB on 2015-04-30 00:00:00\n", - "Selling KIM on 2015-04-30 00:00:00\n", - "Selling HON on 2015-04-30 00:00:00\n", - "Selling FE on 2015-04-30 00:00:00\n", - "Selling VTR on 2015-04-30 00:00:00\n", - "Selling LVS on 2015-04-30 00:00:00\n", - "Selling SWKS on 2015-04-30 00:00:00\n", - "Selling AMZN on 2015-04-30 00:00:00\n", - "Selling PPL on 2015-04-30 00:00:00\n", - "Selling REGN on 2015-04-30 00:00:00\n", - "Selling BLK on 2015-04-30 00:00:00\n", - "Selling DPZ on 2015-04-30 00:00:00\n", - "Selling VRTX on 2015-04-30 00:00:00\n", - "Selling ORLY on 2015-04-30 00:00:00\n", - "Selling KLAC on 2015-04-30 00:00:00\n", - "Selling EA on 2015-04-30 00:00:00\n", - "Selling LRCX on 2015-04-30 00:00:00\n", - "Selling NUE on 2015-04-30 00:00:00\n", - "Selling ZBH on 2015-04-30 00:00:00\n", - "Selling FSLR on 2015-04-30 00:00:00\n", - "Selling AMAT on 2015-04-30 00:00:00\n", - "Selling MAR on 2015-04-30 00:00:00\n", - "Selling TXN on 2015-04-30 00:00:00\n", - "Selling PAYC on 2015-04-30 00:00:00\n", - "Selling GEN on 2015-04-30 00:00:00\n", - "Selling LDOS on 2015-04-30 00:00:00\n", - "Selling MOH on 2015-04-30 00:00:00\n", - "Selling CSCO on 2015-04-30 00:00:00\n", - "Selling TYL on 2015-04-30 00:00:00\n", - "Selling TER on 2015-04-30 00:00:00\n", - "Selling SMCI on 2015-04-30 00:00:00\n", - "Selling AMGN on 2015-04-30 00:00:00\n", - "Selling FTNT on 2015-04-30 00:00:00\n", - "Selling MCHP on 2015-04-30 00:00:00\n", - "Selling MGM on 2015-04-30 00:00:00\n", - "Selling GLW on 2015-04-30 00:00:00\n", - "Selling EXPE on 2015-04-30 00:00:00\n", - "Selling BWA on 2015-04-30 00:00:00\n", - "Selling AVGO on 2015-04-30 00:00:00\n", - "Selling AMD on 2015-04-30 00:00:00\n", - "Selling FCX on 2015-04-30 00:00:00\n", - "Selling NOW on 2015-04-30 00:00:00\n", - "Selling WDAY on 2015-04-30 00:00:00\n", - "Selling MU on 2015-04-30 00:00:00\n", - "Selling STLD on 2015-04-30 00:00:00\n", - "Selling ADI on 2015-04-30 00:00:00\n", - "Buying CZR on 2015-05-31 00:00:00\n", - "Buying TPL on 2015-05-31 00:00:00\n", - "Buying COO on 2015-05-31 00:00:00\n", - "Buying AMCR on 2015-05-31 00:00:00\n", - "Buying BLDR on 2015-05-31 00:00:00\n", - "Buying CBOE on 2015-05-31 00:00:00\n", - "Buying CE on 2015-05-31 00:00:00\n", - "Buying APO on 2015-05-31 00:00:00\n", - "Buying KKR on 2015-05-31 00:00:00\n", - "Buying LKQ on 2015-05-31 00:00:00\n", - "Buying SCHW on 2015-05-31 00:00:00\n", - "Buying TMUS on 2015-05-31 00:00:00\n", - "Buying LII on 2015-05-31 00:00:00\n", - "Buying CFG on 2015-05-31 00:00:00\n", - "Buying RF on 2015-05-31 00:00:00\n", - "Buying TPR on 2015-05-31 00:00:00\n", - "Buying CHTR on 2015-05-31 00:00:00\n", - "Buying DE on 2015-05-31 00:00:00\n", - "Buying CMG on 2015-05-31 00:00:00\n", - "Buying KMI on 2015-05-31 00:00:00\n", - "Buying DVA on 2015-05-31 00:00:00\n", - "Buying EQT on 2015-05-31 00:00:00\n", - "Buying SLB on 2015-05-31 00:00:00\n", - "Buying CTRA on 2015-05-31 00:00:00\n", - "Buying BRO on 2015-05-31 00:00:00\n", - "Buying NTRS on 2015-05-31 00:00:00\n", - "Buying BX on 2015-05-31 00:00:00\n", - "Buying CDW on 2015-05-31 00:00:00\n", - "Buying SYF on 2015-05-31 00:00:00\n", - "Buying TFX on 2015-05-31 00:00:00\n", - "Buying BAC on 2015-05-31 00:00:00\n", - "Buying KEY on 2015-05-31 00:00:00\n", - "Buying NVR on 2015-05-31 00:00:00\n", - "Buying MNST on 2015-05-31 00:00:00\n", - "Buying TECH on 2015-05-31 00:00:00\n", - "Buying HUBB on 2015-05-31 00:00:00\n", - "Buying BAX on 2015-05-31 00:00:00\n", - "Buying ULTA on 2015-05-31 00:00:00\n", - "Buying NFLX on 2015-05-31 00:00:00\n", - "Buying SYY on 2015-05-31 00:00:00\n", - "Buying WTW on 2015-05-31 00:00:00\n", - "Buying HSY on 2015-05-31 00:00:00\n", - "Buying SJM on 2015-05-31 00:00:00\n", - "Buying CPB on 2015-05-31 00:00:00\n", - "Buying RJF on 2015-05-31 00:00:00\n", - "Buying ALGN on 2015-05-31 00:00:00\n", - "Buying FANG on 2015-05-31 00:00:00\n", - "Selling RTX on 2015-05-31 00:00:00\n", - "Selling CMS on 2015-05-31 00:00:00\n", - "Selling WDC on 2015-05-31 00:00:00\n", - "Selling WAB on 2015-05-31 00:00:00\n", - "Selling PPL on 2015-05-31 00:00:00\n", - "Selling LRCX on 2015-05-31 00:00:00\n", - "Selling IBM on 2015-05-31 00:00:00\n", - "Selling KIM on 2015-05-31 00:00:00\n", - "Selling WBA on 2015-05-31 00:00:00\n", - "Selling AON on 2015-05-31 00:00:00\n", - "Selling ORCL on 2015-05-31 00:00:00\n", - "Selling FE on 2015-05-31 00:00:00\n", - "Selling DAL on 2015-05-31 00:00:00\n", - "Selling MCHP on 2015-05-31 00:00:00\n", - "Selling EW on 2015-05-31 00:00:00\n", - "Selling LUV on 2015-05-31 00:00:00\n", - "Selling MAR on 2015-05-31 00:00:00\n", - "Selling TXN on 2015-05-31 00:00:00\n", - "Selling ADSK on 2015-05-31 00:00:00\n", - "Selling SMCI on 2015-05-31 00:00:00\n", - "Selling EXPE on 2015-05-31 00:00:00\n", - "Selling AAPL on 2015-05-31 00:00:00\n", - "Selling MOH on 2015-05-31 00:00:00\n", - "Selling VRTX on 2015-05-31 00:00:00\n", - "Selling CCL on 2015-05-31 00:00:00\n", - "Selling TYL on 2015-05-31 00:00:00\n", - "Selling MPC on 2015-05-31 00:00:00\n", - "Selling NOW on 2015-05-31 00:00:00\n", - "Selling FTNT on 2015-05-31 00:00:00\n", - "Selling ON on 2015-05-31 00:00:00\n", - "Selling CTSH on 2015-05-31 00:00:00\n", - "Selling MGM on 2015-05-31 00:00:00\n", - "Selling STX on 2015-05-31 00:00:00\n", - "Selling GEN on 2015-05-31 00:00:00\n", - "Selling STLD on 2015-05-31 00:00:00\n", - "Selling KLAC on 2015-05-31 00:00:00\n", - "Selling REGN on 2015-05-31 00:00:00\n", - "Selling BIIB on 2015-05-31 00:00:00\n", - "Selling NRG on 2015-05-31 00:00:00\n", - "Selling LDOS on 2015-05-31 00:00:00\n", - "Selling GLW on 2015-05-31 00:00:00\n", - "Selling FCX on 2015-05-31 00:00:00\n", - "Selling ADI on 2015-05-31 00:00:00\n", - "Selling SWKS on 2015-05-31 00:00:00\n", - "Selling AMGN on 2015-05-31 00:00:00\n", - "Selling TER on 2015-05-31 00:00:00\n", - "Selling AVGO on 2015-05-31 00:00:00\n", - "Buying CZR on 2015-06-30 00:00:00\n", - "Buying HUM on 2015-06-30 00:00:00\n", - "Buying TMUS on 2015-06-30 00:00:00\n", - "Buying CE on 2015-06-30 00:00:00\n", - "Buying AMCR on 2015-06-30 00:00:00\n", - "Buying CBOE on 2015-06-30 00:00:00\n", - "Buying CHTR on 2015-06-30 00:00:00\n", - "Buying NEM on 2015-06-30 00:00:00\n", - "Buying TSLA on 2015-06-30 00:00:00\n", - "Buying BLDR on 2015-06-30 00:00:00\n", - "Buying ROL on 2015-06-30 00:00:00\n", - "Buying CAG on 2015-06-30 00:00:00\n", - "Buying HSY on 2015-06-30 00:00:00\n", - "Buying CMG on 2015-06-30 00:00:00\n", - "Buying APO on 2015-06-30 00:00:00\n", - "Buying MDLZ on 2015-06-30 00:00:00\n", - "Buying TPL on 2015-06-30 00:00:00\n", - "Buying ED on 2015-06-30 00:00:00\n", - "Buying CFG on 2015-06-30 00:00:00\n", - "Buying LKQ on 2015-06-30 00:00:00\n", - "Buying TSN on 2015-06-30 00:00:00\n", - "Buying EQT on 2015-06-30 00:00:00\n", - "Buying BRO on 2015-06-30 00:00:00\n", - "Buying CCI on 2015-06-30 00:00:00\n", - "Buying NVR on 2015-06-30 00:00:00\n", - "Buying SYY on 2015-06-30 00:00:00\n", - "Buying MNST on 2015-06-30 00:00:00\n", - "Buying K on 2015-06-30 00:00:00\n", - "Buying RMD on 2015-06-30 00:00:00\n", - "Buying JKHY on 2015-06-30 00:00:00\n", - "Buying ERIE on 2015-06-30 00:00:00\n", - "Buying TAP on 2015-06-30 00:00:00\n", - "Buying SLB on 2015-06-30 00:00:00\n", - "Buying BR on 2015-06-30 00:00:00\n", - "Buying SO on 2015-06-30 00:00:00\n", - "Buying KKR on 2015-06-30 00:00:00\n", - "Buying DE on 2015-06-30 00:00:00\n", - "Buying KMI on 2015-06-30 00:00:00\n", - "Buying TPR on 2015-06-30 00:00:00\n", - "Buying EL on 2015-06-30 00:00:00\n", - "Buying SBAC on 2015-06-30 00:00:00\n", - "Buying HUBB on 2015-06-30 00:00:00\n", - "Buying PNR on 2015-06-30 00:00:00\n", - "Buying RF on 2015-06-30 00:00:00\n", - "Buying SYF on 2015-06-30 00:00:00\n", - "Buying KO on 2015-06-30 00:00:00\n", - "Buying VTRS on 2015-06-30 00:00:00\n", - "Selling GOOGL on 2015-06-30 00:00:00\n", - "Selling V on 2015-06-30 00:00:00\n", - "Selling GEN on 2015-06-30 00:00:00\n", - "Selling TEL on 2015-06-30 00:00:00\n", - "Selling AAPL on 2015-06-30 00:00:00\n", - "Selling TYL on 2015-06-30 00:00:00\n", - "Selling TSCO on 2015-06-30 00:00:00\n", - "Selling LDOS on 2015-06-30 00:00:00\n", - "Selling APD on 2015-06-30 00:00:00\n", - "Selling REGN on 2015-06-30 00:00:00\n", - "Selling GRMN on 2015-06-30 00:00:00\n", - "Selling WDC on 2015-06-30 00:00:00\n", - "Selling MAS on 2015-06-30 00:00:00\n", - "Selling TXN on 2015-06-30 00:00:00\n", - "Selling MAR on 2015-06-30 00:00:00\n", - "Selling AMZN on 2015-06-30 00:00:00\n", - "Selling PAYC on 2015-06-30 00:00:00\n", - "Selling LYV on 2015-06-30 00:00:00\n", - "Selling UAL on 2015-06-30 00:00:00\n", - "Selling LVS on 2015-06-30 00:00:00\n", - "Selling WAB on 2015-06-30 00:00:00\n", - "Selling MSFT on 2015-06-30 00:00:00\n", - "Selling KLAC on 2015-06-30 00:00:00\n", - "Selling BIIB on 2015-06-30 00:00:00\n", - "Selling NXPI on 2015-06-30 00:00:00\n", - "Selling INCY on 2015-06-30 00:00:00\n", - "Selling FTNT on 2015-06-30 00:00:00\n", - "Selling DAL on 2015-06-30 00:00:00\n", - "Selling WYNN on 2015-06-30 00:00:00\n", - "Selling MPC on 2015-06-30 00:00:00\n", - "Selling LUV on 2015-06-30 00:00:00\n", - "Selling ADSK on 2015-06-30 00:00:00\n", - "Selling CSX on 2015-06-30 00:00:00\n", - "Selling NRG on 2015-06-30 00:00:00\n", - "Selling ON on 2015-06-30 00:00:00\n", - "Selling AVGO on 2015-06-30 00:00:00\n", - "Selling GILD on 2015-06-30 00:00:00\n", - "Selling EXPE on 2015-06-30 00:00:00\n", - "Selling VRTX on 2015-06-30 00:00:00\n", - "Selling AMGN on 2015-06-30 00:00:00\n", - "Selling WMB on 2015-06-30 00:00:00\n", - "Selling SMCI on 2015-06-30 00:00:00\n", - "Selling CTSH on 2015-06-30 00:00:00\n", - "Selling MGM on 2015-06-30 00:00:00\n", - "Selling TER on 2015-06-30 00:00:00\n", - "Selling NOW on 2015-06-30 00:00:00\n", - "Selling SWKS on 2015-06-30 00:00:00\n", - "Buying HUM on 2015-07-31 00:00:00\n", - "Buying NEM on 2015-07-31 00:00:00\n", - "Buying AMCR on 2015-07-31 00:00:00\n", - "Buying TMUS on 2015-07-31 00:00:00\n", - "Buying CBOE on 2015-07-31 00:00:00\n", - "Buying CZR on 2015-07-31 00:00:00\n", - "Buying ROL on 2015-07-31 00:00:00\n", - "Buying ED on 2015-07-31 00:00:00\n", - "Buying SO on 2015-07-31 00:00:00\n", - "Buying SYY on 2015-07-31 00:00:00\n", - "Buying NVR on 2015-07-31 00:00:00\n", - "Buying WELL on 2015-07-31 00:00:00\n", - "Buying ETR on 2015-07-31 00:00:00\n", - "Buying AWK on 2015-07-31 00:00:00\n", - "Buying VTR on 2015-07-31 00:00:00\n", - "Buying D on 2015-07-31 00:00:00\n", - "Buying NI on 2015-07-31 00:00:00\n", - "Buying CI on 2015-07-31 00:00:00\n", - "Buying SBAC on 2015-07-31 00:00:00\n", - "Buying CCI on 2015-07-31 00:00:00\n", - "Buying AEP on 2015-07-31 00:00:00\n", - "Buying DUK on 2015-07-31 00:00:00\n", - "Buying MNST on 2015-07-31 00:00:00\n", - "Buying IDXX on 2015-07-31 00:00:00\n", - "Buying CHTR on 2015-07-31 00:00:00\n", - "Buying DTE on 2015-07-31 00:00:00\n", - "Buying K on 2015-07-31 00:00:00\n", - "Buying AEE on 2015-07-31 00:00:00\n", - "Buying EVRG on 2015-07-31 00:00:00\n", - "Buying CMG on 2015-07-31 00:00:00\n", - "Buying SRE on 2015-07-31 00:00:00\n", - "Buying PANW on 2015-07-31 00:00:00\n", - "Buying CAG on 2015-07-31 00:00:00\n", - "Buying ES on 2015-07-31 00:00:00\n", - "Buying HCA on 2015-07-31 00:00:00\n", - "Buying T on 2015-07-31 00:00:00\n", - "Buying BRO on 2015-07-31 00:00:00\n", - "Buying EQT on 2015-07-31 00:00:00\n", - "Buying RMD on 2015-07-31 00:00:00\n", - "Buying MDLZ on 2015-07-31 00:00:00\n", - "Buying PTC on 2015-07-31 00:00:00\n", - "Buying CFG on 2015-07-31 00:00:00\n", - "Buying XEL on 2015-07-31 00:00:00\n", - "Buying JKHY on 2015-07-31 00:00:00\n", - "Buying CPT on 2015-07-31 00:00:00\n", - "Buying AJG on 2015-07-31 00:00:00\n", - "Buying O on 2015-07-31 00:00:00\n", - "Selling STX on 2015-07-31 00:00:00\n", - "Selling APD on 2015-07-31 00:00:00\n", - "Selling WBA on 2015-07-31 00:00:00\n", - "Selling WYNN on 2015-07-31 00:00:00\n", - "Selling GOOGL on 2015-07-31 00:00:00\n", - "Selling TSCO on 2015-07-31 00:00:00\n", - "Selling ZBRA on 2015-07-31 00:00:00\n", - "Selling APTV on 2015-07-31 00:00:00\n", - "Selling AXON on 2015-07-31 00:00:00\n", - "Selling MAR on 2015-07-31 00:00:00\n", - "Selling VMC on 2015-07-31 00:00:00\n", - "Selling AMD on 2015-07-31 00:00:00\n", - "Selling LUV on 2015-07-31 00:00:00\n", - "Selling J on 2015-07-31 00:00:00\n", - "Selling ON on 2015-07-31 00:00:00\n", - "Selling LDOS on 2015-07-31 00:00:00\n", - "Selling HIG on 2015-07-31 00:00:00\n", - "Selling DAL on 2015-07-31 00:00:00\n", - "Selling URI on 2015-07-31 00:00:00\n", - "Selling CTSH on 2015-07-31 00:00:00\n", - "Selling NFLX on 2015-07-31 00:00:00\n", - "Selling GILD on 2015-07-31 00:00:00\n", - "Selling TXT on 2015-07-31 00:00:00\n", - "Selling DD on 2015-07-31 00:00:00\n", - "Selling ALB on 2015-07-31 00:00:00\n", - "Selling BLDR on 2015-07-31 00:00:00\n", - "Selling AMGN on 2015-07-31 00:00:00\n", - "Selling NXPI on 2015-07-31 00:00:00\n", - "Selling CCL on 2015-07-31 00:00:00\n", - "Selling LVS on 2015-07-31 00:00:00\n", - "Selling NRG on 2015-07-31 00:00:00\n", - "Selling INCY on 2015-07-31 00:00:00\n", - "Selling WMB on 2015-07-31 00:00:00\n", - "Selling PWR on 2015-07-31 00:00:00\n", - "Selling FSLR on 2015-07-31 00:00:00\n", - "Selling PSX on 2015-07-31 00:00:00\n", - "Selling MAS on 2015-07-31 00:00:00\n", - "Selling RCL on 2015-07-31 00:00:00\n", - "Selling MU on 2015-07-31 00:00:00\n", - "Selling AVGO on 2015-07-31 00:00:00\n", - "Selling MPC on 2015-07-31 00:00:00\n", - "Selling VRTX on 2015-07-31 00:00:00\n", - "Selling MGM on 2015-07-31 00:00:00\n", - "Selling BIIB on 2015-07-31 00:00:00\n", - "Selling SWKS on 2015-07-31 00:00:00\n", - "Selling FCX on 2015-07-31 00:00:00\n", - "Selling ENPH on 2015-07-31 00:00:00\n", - "Buying AMCR on 2015-08-31 00:00:00\n", - "Buying ATO on 2015-08-31 00:00:00\n", - "Buying SYF on 2015-08-31 00:00:00\n", - "Buying SYY on 2015-08-31 00:00:00\n", - "Buying PNW on 2015-08-31 00:00:00\n", - "Buying ED on 2015-08-31 00:00:00\n", - "Buying SRE on 2015-08-31 00:00:00\n", - "Buying CBOE on 2015-08-31 00:00:00\n", - "Buying WELL on 2015-08-31 00:00:00\n", - "Buying AWK on 2015-08-31 00:00:00\n", - "Buying D on 2015-08-31 00:00:00\n", - "Buying PTC on 2015-08-31 00:00:00\n", - "Buying NEM on 2015-08-31 00:00:00\n", - "Buying NVR on 2015-08-31 00:00:00\n", - "Buying K on 2015-08-31 00:00:00\n", - "Buying ETR on 2015-08-31 00:00:00\n", - "Buying XEL on 2015-08-31 00:00:00\n", - "Buying SO on 2015-08-31 00:00:00\n", - "Buying PEG on 2015-08-31 00:00:00\n", - "Buying EIX on 2015-08-31 00:00:00\n", - "Buying BF-B on 2015-08-31 00:00:00\n", - "Buying TPL on 2015-08-31 00:00:00\n", - "Buying DTE on 2015-08-31 00:00:00\n", - "Buying NEE on 2015-08-31 00:00:00\n", - "Buying DVA on 2015-08-31 00:00:00\n", - "Buying O on 2015-08-31 00:00:00\n", - "Buying CMS on 2015-08-31 00:00:00\n", - "Buying ES on 2015-08-31 00:00:00\n", - "Buying WM on 2015-08-31 00:00:00\n", - "Buying FE on 2015-08-31 00:00:00\n", - "Buying AEP on 2015-08-31 00:00:00\n", - "Buying WTW on 2015-08-31 00:00:00\n", - "Buying HUM on 2015-08-31 00:00:00\n", - "Buying DUK on 2015-08-31 00:00:00\n", - "Buying DPZ on 2015-08-31 00:00:00\n", - "Buying AEE on 2015-08-31 00:00:00\n", - "Buying VTR on 2015-08-31 00:00:00\n", - "Buying WEC on 2015-08-31 00:00:00\n", - "Buying DOC on 2015-08-31 00:00:00\n", - "Buying EVRG on 2015-08-31 00:00:00\n", - "Buying PCG on 2015-08-31 00:00:00\n", - "Buying KO on 2015-08-31 00:00:00\n", - "Buying CZR on 2015-08-31 00:00:00\n", - "Buying KEYS on 2015-08-31 00:00:00\n", - "Buying CMG on 2015-08-31 00:00:00\n", - "Buying JBHT on 2015-08-31 00:00:00\n", - "Buying ERIE on 2015-08-31 00:00:00\n", - "Selling GILD on 2015-08-31 00:00:00\n", - "Selling RF on 2015-08-31 00:00:00\n", - "Selling C on 2015-08-31 00:00:00\n", - "Selling CVX on 2015-08-31 00:00:00\n", - "Selling REGN on 2015-08-31 00:00:00\n", - "Selling RJF on 2015-08-31 00:00:00\n", - "Selling GOOGL on 2015-08-31 00:00:00\n", - "Selling GOOG on 2015-08-31 00:00:00\n", - "Selling ALB on 2015-08-31 00:00:00\n", - "Selling NTRS on 2015-08-31 00:00:00\n", - "Selling META on 2015-08-31 00:00:00\n", - "Selling AMZN on 2015-08-31 00:00:00\n", - "Selling MET on 2015-08-31 00:00:00\n", - "Selling BKR on 2015-08-31 00:00:00\n", - "Selling WYNN on 2015-08-31 00:00:00\n", - "Selling AOS on 2015-08-31 00:00:00\n", - "Selling PSX on 2015-08-31 00:00:00\n", - "Selling TXT on 2015-08-31 00:00:00\n", - "Selling APA on 2015-08-31 00:00:00\n", - "Selling WBA on 2015-08-31 00:00:00\n", - "Selling AMGN on 2015-08-31 00:00:00\n", - "Selling MS on 2015-08-31 00:00:00\n", - "Selling WDAY on 2015-08-31 00:00:00\n", - "Selling BX on 2015-08-31 00:00:00\n", - "Selling EXPE on 2015-08-31 00:00:00\n", - "Selling CE on 2015-08-31 00:00:00\n", - "Selling HAL on 2015-08-31 00:00:00\n", - "Selling TSLA on 2015-08-31 00:00:00\n", - "Selling DD on 2015-08-31 00:00:00\n", - "Selling FSLR on 2015-08-31 00:00:00\n", - "Selling SWKS on 2015-08-31 00:00:00\n", - "Selling WMB on 2015-08-31 00:00:00\n", - "Selling ADI on 2015-08-31 00:00:00\n", - "Selling PRU on 2015-08-31 00:00:00\n", - "Selling AXON on 2015-08-31 00:00:00\n", - "Selling ZBRA on 2015-08-31 00:00:00\n", - "Selling TRGP on 2015-08-31 00:00:00\n", - "Selling DVN on 2015-08-31 00:00:00\n", - "Selling BIIB on 2015-08-31 00:00:00\n", - "Selling MGM on 2015-08-31 00:00:00\n", - "Selling MPC on 2015-08-31 00:00:00\n", - "Selling INTU on 2015-08-31 00:00:00\n", - "Selling AVGO on 2015-08-31 00:00:00\n", - "Selling INCY on 2015-08-31 00:00:00\n", - "Selling VRTX on 2015-08-31 00:00:00\n", - "Selling NFLX on 2015-08-31 00:00:00\n", - "Selling FCX on 2015-08-31 00:00:00\n", - "Buying AMCR on 2015-09-30 00:00:00\n", - "Buying ATO on 2015-09-30 00:00:00\n", - "Buying SYF on 2015-09-30 00:00:00\n", - "Buying SRE on 2015-09-30 00:00:00\n", - "Buying WEC on 2015-09-30 00:00:00\n", - "Buying AWK on 2015-09-30 00:00:00\n", - "Buying PNW on 2015-09-30 00:00:00\n", - "Buying ED on 2015-09-30 00:00:00\n", - "Buying WELL on 2015-09-30 00:00:00\n", - "Buying EIX on 2015-09-30 00:00:00\n", - "Buying SO on 2015-09-30 00:00:00\n", - "Buying SYY on 2015-09-30 00:00:00\n", - "Buying CMS on 2015-09-30 00:00:00\n", - "Buying ACGL on 2015-09-30 00:00:00\n", - "Buying ETR on 2015-09-30 00:00:00\n", - "Buying WTW on 2015-09-30 00:00:00\n", - "Buying D on 2015-09-30 00:00:00\n", - "Buying WM on 2015-09-30 00:00:00\n", - "Buying O on 2015-09-30 00:00:00\n", - "Buying KO on 2015-09-30 00:00:00\n", - "Buying ERIE on 2015-09-30 00:00:00\n", - "Buying CBOE on 2015-09-30 00:00:00\n", - "Buying XEL on 2015-09-30 00:00:00\n", - "Buying ES on 2015-09-30 00:00:00\n", - "Buying VTR on 2015-09-30 00:00:00\n", - "Buying NVR on 2015-09-30 00:00:00\n", - "Buying K on 2015-09-30 00:00:00\n", - "Buying DUK on 2015-09-30 00:00:00\n", - "Buying DTE on 2015-09-30 00:00:00\n", - "Buying NEE on 2015-09-30 00:00:00\n", - "Buying AEE on 2015-09-30 00:00:00\n", - "Buying TPL on 2015-09-30 00:00:00\n", - "Buying FE on 2015-09-30 00:00:00\n", - "Buying BF-B on 2015-09-30 00:00:00\n", - "Buying PCG on 2015-09-30 00:00:00\n", - "Buying AEP on 2015-09-30 00:00:00\n", - "Buying PEG on 2015-09-30 00:00:00\n", - "Buying EVRG on 2015-09-30 00:00:00\n", - "Buying LNT on 2015-09-30 00:00:00\n", - "Buying ARE on 2015-09-30 00:00:00\n", - "Buying DVA on 2015-09-30 00:00:00\n", - "Buying CHD on 2015-09-30 00:00:00\n", - "Buying DOC on 2015-09-30 00:00:00\n", - "Buying PTC on 2015-09-30 00:00:00\n", - "Buying EG on 2015-09-30 00:00:00\n", - "Buying CLX on 2015-09-30 00:00:00\n", - "Buying CMG on 2015-09-30 00:00:00\n", - "Selling BAC on 2015-09-30 00:00:00\n", - "Selling CNC on 2015-09-30 00:00:00\n", - "Selling TXT on 2015-09-30 00:00:00\n", - "Selling CTRA on 2015-09-30 00:00:00\n", - "Selling KKR on 2015-09-30 00:00:00\n", - "Selling RF on 2015-09-30 00:00:00\n", - "Selling STLD on 2015-09-30 00:00:00\n", - "Selling KEY on 2015-09-30 00:00:00\n", - "Selling EOG on 2015-09-30 00:00:00\n", - "Selling NVDA on 2015-09-30 00:00:00\n", - "Selling MS on 2015-09-30 00:00:00\n", - "Selling INTU on 2015-09-30 00:00:00\n", - "Selling AMGN on 2015-09-30 00:00:00\n", - "Selling NXPI on 2015-09-30 00:00:00\n", - "Selling LYB on 2015-09-30 00:00:00\n", - "Selling WDC on 2015-09-30 00:00:00\n", - "Selling BKR on 2015-09-30 00:00:00\n", - "Selling MPC on 2015-09-30 00:00:00\n", - "Selling AXON on 2015-09-30 00:00:00\n", - "Selling EXPE on 2015-09-30 00:00:00\n", - "Selling BIIB on 2015-09-30 00:00:00\n", - "Selling URI on 2015-09-30 00:00:00\n", - "Selling MU on 2015-09-30 00:00:00\n", - "Selling SCHW on 2015-09-30 00:00:00\n", - "Selling MGM on 2015-09-30 00:00:00\n", - "Selling ON on 2015-09-30 00:00:00\n", - "Selling PRU on 2015-09-30 00:00:00\n", - "Selling FANG on 2015-09-30 00:00:00\n", - "Selling TSLA on 2015-09-30 00:00:00\n", - "Selling ZBRA on 2015-09-30 00:00:00\n", - "Selling DVN on 2015-09-30 00:00:00\n", - "Selling TRGP on 2015-09-30 00:00:00\n", - "Selling CE on 2015-09-30 00:00:00\n", - "Selling SWKS on 2015-09-30 00:00:00\n", - "Selling HAL on 2015-09-30 00:00:00\n", - "Selling ADI on 2015-09-30 00:00:00\n", - "Selling DD on 2015-09-30 00:00:00\n", - "Selling APA on 2015-09-30 00:00:00\n", - "Selling WMB on 2015-09-30 00:00:00\n", - "Selling FSLR on 2015-09-30 00:00:00\n", - "Selling REGN on 2015-09-30 00:00:00\n", - "Selling BX on 2015-09-30 00:00:00\n", - "Selling NFLX on 2015-09-30 00:00:00\n", - "Selling VRTX on 2015-09-30 00:00:00\n", - "Selling AVGO on 2015-09-30 00:00:00\n", - "Selling INCY on 2015-09-30 00:00:00\n", - "Selling FCX on 2015-09-30 00:00:00\n", - "Buying AMCR on 2015-10-31 00:00:00\n", - "Buying SYF on 2015-10-31 00:00:00\n", - "Buying ATO on 2015-10-31 00:00:00\n", - "Buying WEC on 2015-10-31 00:00:00\n", - "Buying EIX on 2015-10-31 00:00:00\n", - "Buying PNW on 2015-10-31 00:00:00\n", - "Buying TPL on 2015-10-31 00:00:00\n", - "Buying SRE on 2015-10-31 00:00:00\n", - "Buying WM on 2015-10-31 00:00:00\n", - "Buying ED on 2015-10-31 00:00:00\n", - "Buying D on 2015-10-31 00:00:00\n", - "Buying AWK on 2015-10-31 00:00:00\n", - "Buying SO on 2015-10-31 00:00:00\n", - "Buying XEL on 2015-10-31 00:00:00\n", - "Buying WELL on 2015-10-31 00:00:00\n", - "Buying CMS on 2015-10-31 00:00:00\n", - "Buying ES on 2015-10-31 00:00:00\n", - "Buying SYY on 2015-10-31 00:00:00\n", - "Buying CBOE on 2015-10-31 00:00:00\n", - "Buying PCG on 2015-10-31 00:00:00\n", - "Buying DG on 2015-10-31 00:00:00\n", - "Buying ACGL on 2015-10-31 00:00:00\n", - "Buying KO on 2015-10-31 00:00:00\n", - "Buying AEE on 2015-10-31 00:00:00\n", - "Buying FE on 2015-10-31 00:00:00\n", - "Buying AEP on 2015-10-31 00:00:00\n", - "Buying WTW on 2015-10-31 00:00:00\n", - "Buying NVR on 2015-10-31 00:00:00\n", - "Buying O on 2015-10-31 00:00:00\n", - "Buying DTE on 2015-10-31 00:00:00\n", - "Buying CMG on 2015-10-31 00:00:00\n", - "Buying LNT on 2015-10-31 00:00:00\n", - "Buying EVRG on 2015-10-31 00:00:00\n", - "Buying PEG on 2015-10-31 00:00:00\n", - "Buying VTR on 2015-10-31 00:00:00\n", - "Buying COR on 2015-10-31 00:00:00\n", - "Buying DUK on 2015-10-31 00:00:00\n", - "Buying ETR on 2015-10-31 00:00:00\n", - "Buying ERIE on 2015-10-31 00:00:00\n", - "Buying ARE on 2015-10-31 00:00:00\n", - "Buying BF-B on 2015-10-31 00:00:00\n", - "Buying PPL on 2015-10-31 00:00:00\n", - "Buying DVA on 2015-10-31 00:00:00\n", - "Buying CI on 2015-10-31 00:00:00\n", - "Buying BG on 2015-10-31 00:00:00\n", - "Buying CHD on 2015-10-31 00:00:00\n", - "Buying NEE on 2015-10-31 00:00:00\n", - "Selling LYB on 2015-10-31 00:00:00\n", - "Selling NWSA on 2015-10-31 00:00:00\n", - "Selling BK on 2015-10-31 00:00:00\n", - "Selling CSX on 2015-10-31 00:00:00\n", - "Selling MSFT on 2015-10-31 00:00:00\n", - "Selling OKE on 2015-10-31 00:00:00\n", - "Selling AOS on 2015-10-31 00:00:00\n", - "Selling FITB on 2015-10-31 00:00:00\n", - "Selling STLD on 2015-10-31 00:00:00\n", - "Selling AMGN on 2015-10-31 00:00:00\n", - "Selling IVZ on 2015-10-31 00:00:00\n", - "Selling MGM on 2015-10-31 00:00:00\n", - "Selling MPC on 2015-10-31 00:00:00\n", - "Selling RF on 2015-10-31 00:00:00\n", - "Selling AXON on 2015-10-31 00:00:00\n", - "Selling FSLR on 2015-10-31 00:00:00\n", - "Selling AMZN on 2015-10-31 00:00:00\n", - "Selling CE on 2015-10-31 00:00:00\n", - "Selling SCHW on 2015-10-31 00:00:00\n", - "Selling ADI on 2015-10-31 00:00:00\n", - "Selling INTU on 2015-10-31 00:00:00\n", - "Selling BKR on 2015-10-31 00:00:00\n", - "Selling MS on 2015-10-31 00:00:00\n", - "Selling ON on 2015-10-31 00:00:00\n", - "Selling KEY on 2015-10-31 00:00:00\n", - "Selling MU on 2015-10-31 00:00:00\n", - "Selling EOG on 2015-10-31 00:00:00\n", - "Selling NFLX on 2015-10-31 00:00:00\n", - "Selling HES on 2015-10-31 00:00:00\n", - "Selling URI on 2015-10-31 00:00:00\n", - "Selling PRU on 2015-10-31 00:00:00\n", - "Selling REGN on 2015-10-31 00:00:00\n", - "Selling DD on 2015-10-31 00:00:00\n", - "Selling ZBRA on 2015-10-31 00:00:00\n", - "Selling SMCI on 2015-10-31 00:00:00\n", - "Selling HAL on 2015-10-31 00:00:00\n", - "Selling BX on 2015-10-31 00:00:00\n", - "Selling FANG on 2015-10-31 00:00:00\n", - "Selling WMB on 2015-10-31 00:00:00\n", - "Selling VRTX on 2015-10-31 00:00:00\n", - "Selling TRGP on 2015-10-31 00:00:00\n", - "Selling AVGO on 2015-10-31 00:00:00\n", - "Selling APA on 2015-10-31 00:00:00\n", - "Selling DVN on 2015-10-31 00:00:00\n", - "Selling WYNN on 2015-10-31 00:00:00\n", - "Selling INCY on 2015-10-31 00:00:00\n", - "Selling FCX on 2015-10-31 00:00:00\n", - "Buying AMCR on 2015-11-30 00:00:00\n", - "Buying TPL on 2015-11-30 00:00:00\n", - "Buying EIX on 2015-11-30 00:00:00\n", - "Buying D on 2015-11-30 00:00:00\n", - "Buying SO on 2015-11-30 00:00:00\n", - "Buying TGT on 2015-11-30 00:00:00\n", - "Buying FE on 2015-11-30 00:00:00\n", - "Buying TAP on 2015-11-30 00:00:00\n", - "Buying AEP on 2015-11-30 00:00:00\n", - "Buying SYF on 2015-11-30 00:00:00\n", - "Buying WEC on 2015-11-30 00:00:00\n", - "Buying PCG on 2015-11-30 00:00:00\n", - "Buying LNT on 2015-11-30 00:00:00\n", - "Buying AEE on 2015-11-30 00:00:00\n", - "Buying PPL on 2015-11-30 00:00:00\n", - "Buying CBOE on 2015-11-30 00:00:00\n", - "Buying ACGL on 2015-11-30 00:00:00\n", - "Buying ES on 2015-11-30 00:00:00\n", - "Buying ED on 2015-11-30 00:00:00\n", - "Buying EG on 2015-11-30 00:00:00\n", - "Buying NEE on 2015-11-30 00:00:00\n", - "Buying AWK on 2015-11-30 00:00:00\n", - "Buying SRE on 2015-11-30 00:00:00\n", - "Buying KLAC on 2015-11-30 00:00:00\n", - "Buying XEL on 2015-11-30 00:00:00\n", - "Buying CMS on 2015-11-30 00:00:00\n", - "Buying HUM on 2015-11-30 00:00:00\n", - "Buying WELL on 2015-11-30 00:00:00\n", - "Buying ERIE on 2015-11-30 00:00:00\n", - "Buying PNW on 2015-11-30 00:00:00\n", - "Buying ETR on 2015-11-30 00:00:00\n", - "Buying EVRG on 2015-11-30 00:00:00\n", - "Buying IRM on 2015-11-30 00:00:00\n", - "Buying RMD on 2015-11-30 00:00:00\n", - "Buying ATO on 2015-11-30 00:00:00\n", - "Buying EXR on 2015-11-30 00:00:00\n", - "Buying DTE on 2015-11-30 00:00:00\n", - "Buying WM on 2015-11-30 00:00:00\n", - "Buying VTR on 2015-11-30 00:00:00\n", - "Buying CI on 2015-11-30 00:00:00\n", - "Buying ARE on 2015-11-30 00:00:00\n", - "Buying PEG on 2015-11-30 00:00:00\n", - "Buying AVB on 2015-11-30 00:00:00\n", - "Buying UDR on 2015-11-30 00:00:00\n", - "Buying CMG on 2015-11-30 00:00:00\n", - "Buying DLTR on 2015-11-30 00:00:00\n", - "Buying DUK on 2015-11-30 00:00:00\n", - "Selling GNRC on 2015-11-30 00:00:00\n", - "Selling ALB on 2015-11-30 00:00:00\n", - "Selling CNC on 2015-11-30 00:00:00\n", - "Selling HAL on 2015-11-30 00:00:00\n", - "Selling PFG on 2015-11-30 00:00:00\n", - "Selling KMI on 2015-11-30 00:00:00\n", - "Selling NXPI on 2015-11-30 00:00:00\n", - "Selling STX on 2015-11-30 00:00:00\n", - "Selling CSX on 2015-11-30 00:00:00\n", - "Selling DD on 2015-11-30 00:00:00\n", - "Selling STLD on 2015-11-30 00:00:00\n", - "Selling SWKS on 2015-11-30 00:00:00\n", - "Selling AMGN on 2015-11-30 00:00:00\n", - "Selling VRTX on 2015-11-30 00:00:00\n", - "Selling NWSA on 2015-11-30 00:00:00\n", - "Selling NUE on 2015-11-30 00:00:00\n", - "Selling FANG on 2015-11-30 00:00:00\n", - "Selling EOG on 2015-11-30 00:00:00\n", - "Selling DVN on 2015-11-30 00:00:00\n", - "Selling IVZ on 2015-11-30 00:00:00\n", - "Selling VMC on 2015-11-30 00:00:00\n", - "Selling APA on 2015-11-30 00:00:00\n", - "Selling COP on 2015-11-30 00:00:00\n", - "Selling KKR on 2015-11-30 00:00:00\n", - "Selling HES on 2015-11-30 00:00:00\n", - "Selling AVGO on 2015-11-30 00:00:00\n", - "Selling LVS on 2015-11-30 00:00:00\n", - "Selling MGM on 2015-11-30 00:00:00\n", - "Selling SMCI on 2015-11-30 00:00:00\n", - "Selling REGN on 2015-11-30 00:00:00\n", - "Selling URI on 2015-11-30 00:00:00\n", - "Selling SCHW on 2015-11-30 00:00:00\n", - "Selling FSLR on 2015-11-30 00:00:00\n", - "Selling AXON on 2015-11-30 00:00:00\n", - "Selling DXCM on 2015-11-30 00:00:00\n", - "Selling BX on 2015-11-30 00:00:00\n", - "Selling INCY on 2015-11-30 00:00:00\n", - "Selling OKE on 2015-11-30 00:00:00\n", - "Selling HPQ on 2015-11-30 00:00:00\n", - "Selling ZBRA on 2015-11-30 00:00:00\n", - "Selling WDC on 2015-11-30 00:00:00\n", - "Selling MU on 2015-11-30 00:00:00\n", - "Selling WMB on 2015-11-30 00:00:00\n", - "Selling TRGP on 2015-11-30 00:00:00\n", - "Selling WYNN on 2015-11-30 00:00:00\n", - "Selling FCX on 2015-11-30 00:00:00\n", - "Selling ENPH on 2015-11-30 00:00:00\n", - "Buying NRG on 2015-12-31 00:00:00\n", - "Buying AMCR on 2015-12-31 00:00:00\n", - "Buying TPL on 2015-12-31 00:00:00\n", - "Buying COO on 2015-12-31 00:00:00\n", - "Buying CI on 2015-12-31 00:00:00\n", - "Buying COR on 2015-12-31 00:00:00\n", - "Buying KLAC on 2015-12-31 00:00:00\n", - "Buying BG on 2015-12-31 00:00:00\n", - "Buying TAP on 2015-12-31 00:00:00\n", - "Buying CF on 2015-12-31 00:00:00\n", - "Buying AWK on 2015-12-31 00:00:00\n", - "Buying HUM on 2015-12-31 00:00:00\n", - "Buying DG on 2015-12-31 00:00:00\n", - "Buying TGT on 2015-12-31 00:00:00\n", - "Buying EIX on 2015-12-31 00:00:00\n", - "Buying FE on 2015-12-31 00:00:00\n", - "Buying SO on 2015-12-31 00:00:00\n", - "Buying EG on 2015-12-31 00:00:00\n", - "Buying IDXX on 2015-12-31 00:00:00\n", - "Buying EXR on 2015-12-31 00:00:00\n", - "Buying CMG on 2015-12-31 00:00:00\n", - "Buying DRI on 2015-12-31 00:00:00\n", - "Buying LNT on 2015-12-31 00:00:00\n", - "Buying PSA on 2015-12-31 00:00:00\n", - "Buying DLR on 2015-12-31 00:00:00\n", - "Buying D on 2015-12-31 00:00:00\n", - "Buying CNP on 2015-12-31 00:00:00\n", - "Buying DUK on 2015-12-31 00:00:00\n", - "Buying AEP on 2015-12-31 00:00:00\n", - "Buying EXC on 2015-12-31 00:00:00\n", - "Buying WTW on 2015-12-31 00:00:00\n", - "Buying ACGL on 2015-12-31 00:00:00\n", - "Buying JKHY on 2015-12-31 00:00:00\n", - "Buying MCK on 2015-12-31 00:00:00\n", - "Buying PPL on 2015-12-31 00:00:00\n", - "Buying VTR on 2015-12-31 00:00:00\n", - "Buying VRSK on 2015-12-31 00:00:00\n", - "Buying NEE on 2015-12-31 00:00:00\n", - "Buying ARE on 2015-12-31 00:00:00\n", - "Buying SYY on 2015-12-31 00:00:00\n", - "Buying YUM on 2015-12-31 00:00:00\n", - "Buying PWR on 2015-12-31 00:00:00\n", - "Buying AEE on 2015-12-31 00:00:00\n", - "Buying PEG on 2015-12-31 00:00:00\n", - "Buying QCOM on 2015-12-31 00:00:00\n", - "Buying CPRT on 2015-12-31 00:00:00\n", - "Buying HSY on 2015-12-31 00:00:00\n", - "Selling BK on 2015-12-31 00:00:00\n", - "Selling BLK on 2015-12-31 00:00:00\n", - "Selling BEN on 2015-12-31 00:00:00\n", - "Selling POOL on 2015-12-31 00:00:00\n", - "Selling PCAR on 2015-12-31 00:00:00\n", - "Selling AMP on 2015-12-31 00:00:00\n", - "Selling BWA on 2015-12-31 00:00:00\n", - "Selling HBAN on 2015-12-31 00:00:00\n", - "Selling MPC on 2015-12-31 00:00:00\n", - "Selling STT on 2015-12-31 00:00:00\n", - "Selling CVX on 2015-12-31 00:00:00\n", - "Selling SMCI on 2015-12-31 00:00:00\n", - "Selling CTSH on 2015-12-31 00:00:00\n", - "Selling DXCM on 2015-12-31 00:00:00\n", - "Selling URI on 2015-12-31 00:00:00\n", - "Selling BLDR on 2015-12-31 00:00:00\n", - "Selling NTRS on 2015-12-31 00:00:00\n", - "Selling GS on 2015-12-31 00:00:00\n", - "Selling AMGN on 2015-12-31 00:00:00\n", - "Selling HES on 2015-12-31 00:00:00\n", - "Selling CBRE on 2015-12-31 00:00:00\n", - "Selling NWS on 2015-12-31 00:00:00\n", - "Selling COF on 2015-12-31 00:00:00\n", - "Selling SWKS on 2015-12-31 00:00:00\n", - "Selling C on 2015-12-31 00:00:00\n", - "Selling HPQ on 2015-12-31 00:00:00\n", - "Selling COP on 2015-12-31 00:00:00\n", - "Selling FITB on 2015-12-31 00:00:00\n", - "Selling PRU on 2015-12-31 00:00:00\n", - "Selling MGM on 2015-12-31 00:00:00\n", - "Selling AXON on 2015-12-31 00:00:00\n", - "Selling BAC on 2015-12-31 00:00:00\n", - "Selling NWSA on 2015-12-31 00:00:00\n", - "Selling MS on 2015-12-31 00:00:00\n", - "Selling RF on 2015-12-31 00:00:00\n", - "Selling KEY on 2015-12-31 00:00:00\n", - "Selling IVZ on 2015-12-31 00:00:00\n", - "Selling ZBRA on 2015-12-31 00:00:00\n", - "Selling SCHW on 2015-12-31 00:00:00\n", - "Selling AMD on 2015-12-31 00:00:00\n", - "Selling DVN on 2015-12-31 00:00:00\n", - "Selling OKE on 2015-12-31 00:00:00\n", - "Selling PFG on 2015-12-31 00:00:00\n", - "Selling WYNN on 2015-12-31 00:00:00\n", - "Selling WMB on 2015-12-31 00:00:00\n", - "Selling FCX on 2015-12-31 00:00:00\n", - "Selling ENPH on 2015-12-31 00:00:00\n", - "Buying AMCR on 2016-01-31 00:00:00\n", - "Buying NEM on 2016-01-31 00:00:00\n", - "Buying CMG on 2016-01-31 00:00:00\n", - "Buying TPL on 2016-01-31 00:00:00\n", - "Buying AXP on 2016-01-31 00:00:00\n", - "Buying ED on 2016-01-31 00:00:00\n", - "Buying SO on 2016-01-31 00:00:00\n", - "Buying ACGL on 2016-01-31 00:00:00\n", - "Buying BG on 2016-01-31 00:00:00\n", - "Buying COO on 2016-01-31 00:00:00\n", - "Buying EIX on 2016-01-31 00:00:00\n", - "Buying BBY on 2016-01-31 00:00:00\n", - "Buying D on 2016-01-31 00:00:00\n", - "Buying DG on 2016-01-31 00:00:00\n", - "Buying COR on 2016-01-31 00:00:00\n", - "Buying DRI on 2016-01-31 00:00:00\n", - "Buying DUK on 2016-01-31 00:00:00\n", - "Buying SYY on 2016-01-31 00:00:00\n", - "Buying AWK on 2016-01-31 00:00:00\n", - "Buying EA on 2016-01-31 00:00:00\n", - "Buying NSC on 2016-01-31 00:00:00\n", - "Buying DLR on 2016-01-31 00:00:00\n", - "Buying NEE on 2016-01-31 00:00:00\n", - "Buying MAA on 2016-01-31 00:00:00\n", - "Buying AEE on 2016-01-31 00:00:00\n", - "Buying CBOE on 2016-01-31 00:00:00\n", - "Buying EXR on 2016-01-31 00:00:00\n", - "Buying PNW on 2016-01-31 00:00:00\n", - "Buying LNT on 2016-01-31 00:00:00\n", - "Buying XEL on 2016-01-31 00:00:00\n", - "Buying NRG on 2016-01-31 00:00:00\n", - "Buying EG on 2016-01-31 00:00:00\n", - "Buying PSA on 2016-01-31 00:00:00\n", - "Buying CZR on 2016-01-31 00:00:00\n", - "Buying JCI on 2016-01-31 00:00:00\n", - "Buying CF on 2016-01-31 00:00:00\n", - "Buying ESS on 2016-01-31 00:00:00\n", - "Buying TAP on 2016-01-31 00:00:00\n", - "Buying MCK on 2016-01-31 00:00:00\n", - "Buying FRT on 2016-01-31 00:00:00\n", - "Buying ES on 2016-01-31 00:00:00\n", - "Buying UDR on 2016-01-31 00:00:00\n", - "Buying PFE on 2016-01-31 00:00:00\n", - "Buying TSN on 2016-01-31 00:00:00\n", - "Buying K on 2016-01-31 00:00:00\n", - "Buying TGT on 2016-01-31 00:00:00\n", - "Buying WMT on 2016-01-31 00:00:00\n", - "Selling META on 2016-01-31 00:00:00\n", - "Selling ALB on 2016-01-31 00:00:00\n", - "Selling LEN on 2016-01-31 00:00:00\n", - "Selling PSX on 2016-01-31 00:00:00\n", - "Selling CBRE on 2016-01-31 00:00:00\n", - "Selling LVS on 2016-01-31 00:00:00\n", - "Selling IVZ on 2016-01-31 00:00:00\n", - "Selling CVX on 2016-01-31 00:00:00\n", - "Selling GS on 2016-01-31 00:00:00\n", - "Selling BAC on 2016-01-31 00:00:00\n", - "Selling WYNN on 2016-01-31 00:00:00\n", - "Selling INCY on 2016-01-31 00:00:00\n", - "Selling FICO on 2016-01-31 00:00:00\n", - "Selling NXPI on 2016-01-31 00:00:00\n", - "Selling BLK on 2016-01-31 00:00:00\n", - "Selling STX on 2016-01-31 00:00:00\n", - "Selling URI on 2016-01-31 00:00:00\n", - "Selling MGM on 2016-01-31 00:00:00\n", - "Selling MDLZ on 2016-01-31 00:00:00\n", - "Selling FSLR on 2016-01-31 00:00:00\n", - "Selling PFG on 2016-01-31 00:00:00\n", - "Selling HES on 2016-01-31 00:00:00\n", - "Selling SMCI on 2016-01-31 00:00:00\n", - "Selling MS on 2016-01-31 00:00:00\n", - "Selling VLO on 2016-01-31 00:00:00\n", - "Selling DHI on 2016-01-31 00:00:00\n", - "Selling BWA on 2016-01-31 00:00:00\n", - "Selling C on 2016-01-31 00:00:00\n", - "Selling APA on 2016-01-31 00:00:00\n", - "Selling MU on 2016-01-31 00:00:00\n", - "Selling COP on 2016-01-31 00:00:00\n", - "Selling SCHW on 2016-01-31 00:00:00\n", - "Selling STT on 2016-01-31 00:00:00\n", - "Selling BX on 2016-01-31 00:00:00\n", - "Selling HPE on 2016-01-31 00:00:00\n", - "Selling ZBRA on 2016-01-31 00:00:00\n", - "Selling SWKS on 2016-01-31 00:00:00\n", - "Selling BLDR on 2016-01-31 00:00:00\n", - "Selling MPC on 2016-01-31 00:00:00\n", - "Selling FCX on 2016-01-31 00:00:00\n", - "Selling KMI on 2016-01-31 00:00:00\n", - "Selling AMD on 2016-01-31 00:00:00\n", - "Selling TRGP on 2016-01-31 00:00:00\n", - "Selling DVN on 2016-01-31 00:00:00\n", - "Selling OKE on 2016-01-31 00:00:00\n", - "Selling ENPH on 2016-01-31 00:00:00\n", - "Selling WMB on 2016-01-31 00:00:00\n", - "Buying AMCR on 2016-02-29 00:00:00\n", - "Buying NEM on 2016-02-29 00:00:00\n", - "Buying ED on 2016-02-29 00:00:00\n", - "Buying SO on 2016-02-29 00:00:00\n", - "Buying TSN on 2016-02-29 00:00:00\n", - "Buying AWK on 2016-02-29 00:00:00\n", - "Buying DUK on 2016-02-29 00:00:00\n", - "Buying TPL on 2016-02-29 00:00:00\n", - "Buying XEL on 2016-02-29 00:00:00\n", - "Buying LNT on 2016-02-29 00:00:00\n", - "Buying SYY on 2016-02-29 00:00:00\n", - "Buying ACGL on 2016-02-29 00:00:00\n", - "Buying CMS on 2016-02-29 00:00:00\n", - "Buying CBOE on 2016-02-29 00:00:00\n", - "Buying PNW on 2016-02-29 00:00:00\n", - "Buying EIX on 2016-02-29 00:00:00\n", - "Buying AEE on 2016-02-29 00:00:00\n", - "Buying CMG on 2016-02-29 00:00:00\n", - "Buying NEE on 2016-02-29 00:00:00\n", - "Buying WEC on 2016-02-29 00:00:00\n", - "Buying ES on 2016-02-29 00:00:00\n", - "Buying ATO on 2016-02-29 00:00:00\n", - "Buying AXP on 2016-02-29 00:00:00\n", - "Buying D on 2016-02-29 00:00:00\n", - "Buying COR on 2016-02-29 00:00:00\n", - "Buying O on 2016-02-29 00:00:00\n", - "Buying K on 2016-02-29 00:00:00\n", - "Buying EVRG on 2016-02-29 00:00:00\n", - "Buying WMT on 2016-02-29 00:00:00\n", - "Buying EG on 2016-02-29 00:00:00\n", - "Buying CLX on 2016-02-29 00:00:00\n", - "Buying COO on 2016-02-29 00:00:00\n", - "Buying KDP on 2016-02-29 00:00:00\n", - "Buying LMT on 2016-02-29 00:00:00\n", - "Buying AEP on 2016-02-29 00:00:00\n", - "Buying DTE on 2016-02-29 00:00:00\n", - "Buying PPL on 2016-02-29 00:00:00\n", - "Buying DG on 2016-02-29 00:00:00\n", - "Buying KO on 2016-02-29 00:00:00\n", - "Buying PEG on 2016-02-29 00:00:00\n", - "Buying DLR on 2016-02-29 00:00:00\n", - "Buying PCG on 2016-02-29 00:00:00\n", - "Buying REG on 2016-02-29 00:00:00\n", - "Buying ETR on 2016-02-29 00:00:00\n", - "Buying PFE on 2016-02-29 00:00:00\n", - "Buying MCK on 2016-02-29 00:00:00\n", - "Buying T on 2016-02-29 00:00:00\n", - "Selling PAYC on 2016-02-29 00:00:00\n", - "Selling FSLR on 2016-02-29 00:00:00\n", - "Selling RF on 2016-02-29 00:00:00\n", - "Selling BLK on 2016-02-29 00:00:00\n", - "Selling VTRS on 2016-02-29 00:00:00\n", - "Selling VLO on 2016-02-29 00:00:00\n", - "Selling ON on 2016-02-29 00:00:00\n", - "Selling PRU on 2016-02-29 00:00:00\n", - "Selling WDC on 2016-02-29 00:00:00\n", - "Selling ADSK on 2016-02-29 00:00:00\n", - "Selling AMP on 2016-02-29 00:00:00\n", - "Selling STX on 2016-02-29 00:00:00\n", - "Selling DHI on 2016-02-29 00:00:00\n", - "Selling PFG on 2016-02-29 00:00:00\n", - "Selling CBRE on 2016-02-29 00:00:00\n", - "Selling IVZ on 2016-02-29 00:00:00\n", - "Selling LVS on 2016-02-29 00:00:00\n", - "Selling ZBRA on 2016-02-29 00:00:00\n", - "Selling COP on 2016-02-29 00:00:00\n", - "Selling CRM on 2016-02-29 00:00:00\n", - "Selling HPE on 2016-02-29 00:00:00\n", - "Selling STT on 2016-02-29 00:00:00\n", - "Selling RCL on 2016-02-29 00:00:00\n", - "Selling BAC on 2016-02-29 00:00:00\n", - "Selling SCHW on 2016-02-29 00:00:00\n", - "Selling NXPI on 2016-02-29 00:00:00\n", - "Selling URI on 2016-02-29 00:00:00\n", - "Selling C on 2016-02-29 00:00:00\n", - "Selling WYNN on 2016-02-29 00:00:00\n", - "Selling MS on 2016-02-29 00:00:00\n", - "Selling INCY on 2016-02-29 00:00:00\n", - "Selling MGM on 2016-02-29 00:00:00\n", - "Selling MU on 2016-02-29 00:00:00\n", - "Selling HES on 2016-02-29 00:00:00\n", - "Selling BX on 2016-02-29 00:00:00\n", - "Selling AMD on 2016-02-29 00:00:00\n", - "Selling SWKS on 2016-02-29 00:00:00\n", - "Selling MPC on 2016-02-29 00:00:00\n", - "Selling BLDR on 2016-02-29 00:00:00\n", - "Selling APA on 2016-02-29 00:00:00\n", - "Selling KMI on 2016-02-29 00:00:00\n", - "Selling ENPH on 2016-02-29 00:00:00\n", - "Selling OKE on 2016-02-29 00:00:00\n", - "Selling DVN on 2016-02-29 00:00:00\n", - "Selling FCX on 2016-02-29 00:00:00\n", - "Selling TRGP on 2016-02-29 00:00:00\n", - "Selling WMB on 2016-02-29 00:00:00\n", - "Buying NEM on 2016-03-31 00:00:00\n", - "Buying ED on 2016-03-31 00:00:00\n", - "Buying AMCR on 2016-03-31 00:00:00\n", - "Buying SO on 2016-03-31 00:00:00\n", - "Buying XEL on 2016-03-31 00:00:00\n", - "Buying CMS on 2016-03-31 00:00:00\n", - "Buying TSN on 2016-03-31 00:00:00\n", - "Buying CMG on 2016-03-31 00:00:00\n", - "Buying PNW on 2016-03-31 00:00:00\n", - "Buying WEC on 2016-03-31 00:00:00\n", - "Buying EIX on 2016-03-31 00:00:00\n", - "Buying DUK on 2016-03-31 00:00:00\n", - "Buying NEE on 2016-03-31 00:00:00\n", - "Buying CBOE on 2016-03-31 00:00:00\n", - "Buying ES on 2016-03-31 00:00:00\n", - "Buying O on 2016-03-31 00:00:00\n", - "Buying EVRG on 2016-03-31 00:00:00\n", - "Buying AEE on 2016-03-31 00:00:00\n", - "Buying LNT on 2016-03-31 00:00:00\n", - "Buying CLX on 2016-03-31 00:00:00\n", - "Buying D on 2016-03-31 00:00:00\n", - "Buying ATO on 2016-03-31 00:00:00\n", - "Buying AXP on 2016-03-31 00:00:00\n", - "Buying SYY on 2016-03-31 00:00:00\n", - "Buying AWK on 2016-03-31 00:00:00\n", - "Buying KDP on 2016-03-31 00:00:00\n", - "Buying DTE on 2016-03-31 00:00:00\n", - "Buying K on 2016-03-31 00:00:00\n", - "Buying PEG on 2016-03-31 00:00:00\n", - "Buying MKC on 2016-03-31 00:00:00\n", - "Buying PM on 2016-03-31 00:00:00\n", - "Buying AEP on 2016-03-31 00:00:00\n", - "Buying WMT on 2016-03-31 00:00:00\n", - "Buying ACGL on 2016-03-31 00:00:00\n", - "Buying MO on 2016-03-31 00:00:00\n", - "Buying T on 2016-03-31 00:00:00\n", - "Buying PCG on 2016-03-31 00:00:00\n", - "Buying PPL on 2016-03-31 00:00:00\n", - "Buying CHRW on 2016-03-31 00:00:00\n", - "Buying KO on 2016-03-31 00:00:00\n", - "Buying ETR on 2016-03-31 00:00:00\n", - "Buying LMT on 2016-03-31 00:00:00\n", - "Buying CPB on 2016-03-31 00:00:00\n", - "Buying SYK on 2016-03-31 00:00:00\n", - "Buying PEP on 2016-03-31 00:00:00\n", - "Buying HSY on 2016-03-31 00:00:00\n", - "Buying NI on 2016-03-31 00:00:00\n", - "Selling NCLH on 2016-03-31 00:00:00\n", - "Selling NOW on 2016-03-31 00:00:00\n", - "Selling ZBRA on 2016-03-31 00:00:00\n", - "Selling CPAY on 2016-03-31 00:00:00\n", - "Selling STT on 2016-03-31 00:00:00\n", - "Selling HPE on 2016-03-31 00:00:00\n", - "Selling BKR on 2016-03-31 00:00:00\n", - "Selling PRU on 2016-03-31 00:00:00\n", - "Selling AMP on 2016-03-31 00:00:00\n", - "Selling LVS on 2016-03-31 00:00:00\n", - "Selling VTRS on 2016-03-31 00:00:00\n", - "Selling CRM on 2016-03-31 00:00:00\n", - "Selling ADSK on 2016-03-31 00:00:00\n", - "Selling ON on 2016-03-31 00:00:00\n", - "Selling SCHW on 2016-03-31 00:00:00\n", - "Selling IVZ on 2016-03-31 00:00:00\n", - "Selling PANW on 2016-03-31 00:00:00\n", - "Selling INCY on 2016-03-31 00:00:00\n", - "Selling BAC on 2016-03-31 00:00:00\n", - "Selling CBRE on 2016-03-31 00:00:00\n", - "Selling RCL on 2016-03-31 00:00:00\n", - "Selling WYNN on 2016-03-31 00:00:00\n", - "Selling COP on 2016-03-31 00:00:00\n", - "Selling STX on 2016-03-31 00:00:00\n", - "Selling WDAY on 2016-03-31 00:00:00\n", - "Selling NXPI on 2016-03-31 00:00:00\n", - "Selling MGM on 2016-03-31 00:00:00\n", - "Selling URI on 2016-03-31 00:00:00\n", - "Selling NRG on 2016-03-31 00:00:00\n", - "Selling MS on 2016-03-31 00:00:00\n", - "Selling C on 2016-03-31 00:00:00\n", - "Selling AMD on 2016-03-31 00:00:00\n", - "Selling BX on 2016-03-31 00:00:00\n", - "Selling HES on 2016-03-31 00:00:00\n", - "Selling WDC on 2016-03-31 00:00:00\n", - "Selling ENPH on 2016-03-31 00:00:00\n", - "Selling SWKS on 2016-03-31 00:00:00\n", - "Selling MPC on 2016-03-31 00:00:00\n", - "Selling OKE on 2016-03-31 00:00:00\n", - "Selling APA on 2016-03-31 00:00:00\n", - "Selling BLDR on 2016-03-31 00:00:00\n", - "Selling MU on 2016-03-31 00:00:00\n", - "Selling KMI on 2016-03-31 00:00:00\n", - "Selling DVN on 2016-03-31 00:00:00\n", - "Selling FCX on 2016-03-31 00:00:00\n", - "Selling TRGP on 2016-03-31 00:00:00\n", - "Selling WMB on 2016-03-31 00:00:00\n", - "Buying NEM on 2016-04-30 00:00:00\n", - "Buying AMCR on 2016-04-30 00:00:00\n", - "Buying TSN on 2016-04-30 00:00:00\n", - "Buying ED on 2016-04-30 00:00:00\n", - "Buying SO on 2016-04-30 00:00:00\n", - "Buying O on 2016-04-30 00:00:00\n", - "Buying MKC on 2016-04-30 00:00:00\n", - "Buying CMS on 2016-04-30 00:00:00\n", - "Buying WEC on 2016-04-30 00:00:00\n", - "Buying EVRG on 2016-04-30 00:00:00\n", - "Buying MO on 2016-04-30 00:00:00\n", - "Buying DUK on 2016-04-30 00:00:00\n", - "Buying XEL on 2016-04-30 00:00:00\n", - "Buying LNT on 2016-04-30 00:00:00\n", - "Buying PNW on 2016-04-30 00:00:00\n", - "Buying CLX on 2016-04-30 00:00:00\n", - "Buying ATO on 2016-04-30 00:00:00\n", - "Buying CBOE on 2016-04-30 00:00:00\n", - "Buying AWK on 2016-04-30 00:00:00\n", - "Buying EIX on 2016-04-30 00:00:00\n", - "Buying NEE on 2016-04-30 00:00:00\n", - "Buying K on 2016-04-30 00:00:00\n", - "Buying ES on 2016-04-30 00:00:00\n", - "Buying DTE on 2016-04-30 00:00:00\n", - "Buying PEG on 2016-04-30 00:00:00\n", - "Buying PPL on 2016-04-30 00:00:00\n", - "Buying T on 2016-04-30 00:00:00\n", - "Buying AEE on 2016-04-30 00:00:00\n", - "Buying KDP on 2016-04-30 00:00:00\n", - "Buying AEP on 2016-04-30 00:00:00\n", - "Buying PCG on 2016-04-30 00:00:00\n", - "Buying CME on 2016-04-30 00:00:00\n", - "Buying AON on 2016-04-30 00:00:00\n", - "Buying CHD on 2016-04-30 00:00:00\n", - "Buying ETR on 2016-04-30 00:00:00\n", - "Buying SYY on 2016-04-30 00:00:00\n", - "Buying D on 2016-04-30 00:00:00\n", - "Buying EL on 2016-04-30 00:00:00\n", - "Buying WM on 2016-04-30 00:00:00\n", - "Buying PM on 2016-04-30 00:00:00\n", - "Buying CHRW on 2016-04-30 00:00:00\n", - "Buying LMT on 2016-04-30 00:00:00\n", - "Buying WMT on 2016-04-30 00:00:00\n", - "Buying GIS on 2016-04-30 00:00:00\n", - "Buying SRE on 2016-04-30 00:00:00\n", - "Buying PG on 2016-04-30 00:00:00\n", - "Buying NI on 2016-04-30 00:00:00\n", - "Selling RCL on 2016-04-30 00:00:00\n", - "Selling COP on 2016-04-30 00:00:00\n", - "Selling INCY on 2016-04-30 00:00:00\n", - "Selling FITB on 2016-04-30 00:00:00\n", - "Selling PODD on 2016-04-30 00:00:00\n", - "Selling SCHW on 2016-04-30 00:00:00\n", - "Selling CFG on 2016-04-30 00:00:00\n", - "Selling GDDY on 2016-04-30 00:00:00\n", - "Selling AVGO on 2016-04-30 00:00:00\n", - "Selling AMD on 2016-04-30 00:00:00\n", - "Selling MET on 2016-04-30 00:00:00\n", - "Selling AMP on 2016-04-30 00:00:00\n", - "Selling MPC on 2016-04-30 00:00:00\n", - "Selling FMC on 2016-04-30 00:00:00\n", - "Selling KMX on 2016-04-30 00:00:00\n", - "Selling VRTX on 2016-04-30 00:00:00\n", - "Selling STX on 2016-04-30 00:00:00\n", - "Selling ON on 2016-04-30 00:00:00\n", - "Selling CRM on 2016-04-30 00:00:00\n", - "Selling NRG on 2016-04-30 00:00:00\n", - "Selling RF on 2016-04-30 00:00:00\n", - "Selling SWKS on 2016-04-30 00:00:00\n", - "Selling KMI on 2016-04-30 00:00:00\n", - "Selling NXPI on 2016-04-30 00:00:00\n", - "Selling CBRE on 2016-04-30 00:00:00\n", - "Selling IVZ on 2016-04-30 00:00:00\n", - "Selling BX on 2016-04-30 00:00:00\n", - "Selling BAC on 2016-04-30 00:00:00\n", - "Selling DXCM on 2016-04-30 00:00:00\n", - "Selling PRU on 2016-04-30 00:00:00\n", - "Selling HES on 2016-04-30 00:00:00\n", - "Selling PAYC on 2016-04-30 00:00:00\n", - "Selling C on 2016-04-30 00:00:00\n", - "Selling BLDR on 2016-04-30 00:00:00\n", - "Selling ENPH on 2016-04-30 00:00:00\n", - "Selling MGM on 2016-04-30 00:00:00\n", - "Selling VTRS on 2016-04-30 00:00:00\n", - "Selling PANW on 2016-04-30 00:00:00\n", - "Selling MS on 2016-04-30 00:00:00\n", - "Selling DVN on 2016-04-30 00:00:00\n", - "Selling MU on 2016-04-30 00:00:00\n", - "Selling APA on 2016-04-30 00:00:00\n", - "Selling WDC on 2016-04-30 00:00:00\n", - "Selling WDAY on 2016-04-30 00:00:00\n", - "Selling WMB on 2016-04-30 00:00:00\n", - "Selling TRGP on 2016-04-30 00:00:00\n", - "Selling FCX on 2016-04-30 00:00:00\n", - "Buying AMCR on 2016-05-31 00:00:00\n", - "Buying CMG on 2016-05-31 00:00:00\n", - "Buying NEM on 2016-05-31 00:00:00\n", - "Buying ED on 2016-05-31 00:00:00\n", - "Buying SO on 2016-05-31 00:00:00\n", - "Buying WEC on 2016-05-31 00:00:00\n", - "Buying WM on 2016-05-31 00:00:00\n", - "Buying PEG on 2016-05-31 00:00:00\n", - "Buying CHD on 2016-05-31 00:00:00\n", - "Buying MO on 2016-05-31 00:00:00\n", - "Buying EIX on 2016-05-31 00:00:00\n", - "Buying ETR on 2016-05-31 00:00:00\n", - "Buying DUK on 2016-05-31 00:00:00\n", - "Buying CLX on 2016-05-31 00:00:00\n", - "Buying AEE on 2016-05-31 00:00:00\n", - "Buying XEL on 2016-05-31 00:00:00\n", - "Buying EXC on 2016-05-31 00:00:00\n", - "Buying DTE on 2016-05-31 00:00:00\n", - "Buying D on 2016-05-31 00:00:00\n", - "Buying KDP on 2016-05-31 00:00:00\n", - "Buying ES on 2016-05-31 00:00:00\n", - "Buying CMS on 2016-05-31 00:00:00\n", - "Buying PNW on 2016-05-31 00:00:00\n", - "Buying EVRG on 2016-05-31 00:00:00\n", - "Buying EA on 2016-05-31 00:00:00\n", - "Buying O on 2016-05-31 00:00:00\n", - "Buying NI on 2016-05-31 00:00:00\n", - "Buying T on 2016-05-31 00:00:00\n", - "Buying PPL on 2016-05-31 00:00:00\n", - "Buying LNT on 2016-05-31 00:00:00\n", - "Buying MNST on 2016-05-31 00:00:00\n", - "Buying AWK on 2016-05-31 00:00:00\n", - "Buying KMB on 2016-05-31 00:00:00\n", - "Buying JNJ on 2016-05-31 00:00:00\n", - "Buying PG on 2016-05-31 00:00:00\n", - "Buying META on 2016-05-31 00:00:00\n", - "Buying AEP on 2016-05-31 00:00:00\n", - "Buying MCD on 2016-05-31 00:00:00\n", - "Buying MKC on 2016-05-31 00:00:00\n", - "Buying NEE on 2016-05-31 00:00:00\n", - "Buying ATO on 2016-05-31 00:00:00\n", - "Buying PEP on 2016-05-31 00:00:00\n", - "Buying CBOE on 2016-05-31 00:00:00\n", - "Buying CL on 2016-05-31 00:00:00\n", - "Buying GWW on 2016-05-31 00:00:00\n", - "Buying LMT on 2016-05-31 00:00:00\n", - "Buying PM on 2016-05-31 00:00:00\n", - "Selling HPQ on 2016-05-31 00:00:00\n", - "Selling SMCI on 2016-05-31 00:00:00\n", - "Selling NWSA on 2016-05-31 00:00:00\n", - "Selling LVS on 2016-05-31 00:00:00\n", - "Selling BLK on 2016-05-31 00:00:00\n", - "Selling PRU on 2016-05-31 00:00:00\n", - "Selling UAL on 2016-05-31 00:00:00\n", - "Selling C on 2016-05-31 00:00:00\n", - "Selling ANET on 2016-05-31 00:00:00\n", - "Selling MGM on 2016-05-31 00:00:00\n", - "Selling LYB on 2016-05-31 00:00:00\n", - "Selling AMP on 2016-05-31 00:00:00\n", - "Selling CFG on 2016-05-31 00:00:00\n", - "Selling BWA on 2016-05-31 00:00:00\n", - "Selling RCL on 2016-05-31 00:00:00\n", - "Selling VTRS on 2016-05-31 00:00:00\n", - "Selling KKR on 2016-05-31 00:00:00\n", - "Selling MET on 2016-05-31 00:00:00\n", - "Selling REGN on 2016-05-31 00:00:00\n", - "Selling MOH on 2016-05-31 00:00:00\n", - "Selling CBRE on 2016-05-31 00:00:00\n", - "Selling PODD on 2016-05-31 00:00:00\n", - "Selling ULTA on 2016-05-31 00:00:00\n", - "Selling ON on 2016-05-31 00:00:00\n", - "Selling AKAM on 2016-05-31 00:00:00\n", - "Selling BX on 2016-05-31 00:00:00\n", - "Selling NDSN on 2016-05-31 00:00:00\n", - "Selling MS on 2016-05-31 00:00:00\n", - "Selling INCY on 2016-05-31 00:00:00\n", - "Selling PFG on 2016-05-31 00:00:00\n", - "Selling BKR on 2016-05-31 00:00:00\n", - "Selling RJF on 2016-05-31 00:00:00\n", - "Selling VRTX on 2016-05-31 00:00:00\n", - "Selling BEN on 2016-05-31 00:00:00\n", - "Selling KMX on 2016-05-31 00:00:00\n", - "Selling COP on 2016-05-31 00:00:00\n", - "Selling SCHW on 2016-05-31 00:00:00\n", - "Selling FSLR on 2016-05-31 00:00:00\n", - "Selling HES on 2016-05-31 00:00:00\n", - "Selling APA on 2016-05-31 00:00:00\n", - "Selling IVZ on 2016-05-31 00:00:00\n", - "Selling MU on 2016-05-31 00:00:00\n", - "Selling WDC on 2016-05-31 00:00:00\n", - "Selling ENPH on 2016-05-31 00:00:00\n", - "Selling FCX on 2016-05-31 00:00:00\n", - "Selling AMD on 2016-05-31 00:00:00\n", - "Selling DVN on 2016-05-31 00:00:00\n", - "Buying NEM on 2016-06-30 00:00:00\n", - "Buying ED on 2016-06-30 00:00:00\n", - "Buying AMCR on 2016-06-30 00:00:00\n", - "Buying WEC on 2016-06-30 00:00:00\n", - "Buying EIX on 2016-06-30 00:00:00\n", - "Buying ES on 2016-06-30 00:00:00\n", - "Buying CMS on 2016-06-30 00:00:00\n", - "Buying KR on 2016-06-30 00:00:00\n", - "Buying HRL on 2016-06-30 00:00:00\n", - "Buying SO on 2016-06-30 00:00:00\n", - "Buying DTE on 2016-06-30 00:00:00\n", - "Buying LNT on 2016-06-30 00:00:00\n", - "Buying DUK on 2016-06-30 00:00:00\n", - "Buying MO on 2016-06-30 00:00:00\n", - "Buying XEL on 2016-06-30 00:00:00\n", - "Buying CLX on 2016-06-30 00:00:00\n", - "Buying AEE on 2016-06-30 00:00:00\n", - "Buying VTR on 2016-06-30 00:00:00\n", - "Buying TSN on 2016-06-30 00:00:00\n", - "Buying AEP on 2016-06-30 00:00:00\n", - "Buying KDP on 2016-06-30 00:00:00\n", - "Buying NEE on 2016-06-30 00:00:00\n", - "Buying EVRG on 2016-06-30 00:00:00\n", - "Buying PNW on 2016-06-30 00:00:00\n", - "Buying PCG on 2016-06-30 00:00:00\n", - "Buying O on 2016-06-30 00:00:00\n", - "Buying ETR on 2016-06-30 00:00:00\n", - "Buying AWK on 2016-06-30 00:00:00\n", - "Buying D on 2016-06-30 00:00:00\n", - "Buying NI on 2016-06-30 00:00:00\n", - "Buying WM on 2016-06-30 00:00:00\n", - "Buying EXR on 2016-06-30 00:00:00\n", - "Buying CPB on 2016-06-30 00:00:00\n", - "Buying DOC on 2016-06-30 00:00:00\n", - "Buying DG on 2016-06-30 00:00:00\n", - "Buying PSA on 2016-06-30 00:00:00\n", - "Buying ATO on 2016-06-30 00:00:00\n", - "Buying WELL on 2016-06-30 00:00:00\n", - "Buying PEG on 2016-06-30 00:00:00\n", - "Buying SRE on 2016-06-30 00:00:00\n", - "Buying T on 2016-06-30 00:00:00\n", - "Buying SJM on 2016-06-30 00:00:00\n", - "Buying MAA on 2016-06-30 00:00:00\n", - "Buying CCI on 2016-06-30 00:00:00\n", - "Buying CHRW on 2016-06-30 00:00:00\n", - "Buying ESS on 2016-06-30 00:00:00\n", - "Buying CVS on 2016-06-30 00:00:00\n", - "Selling FSLR on 2016-06-30 00:00:00\n", - "Selling VRTX on 2016-06-30 00:00:00\n", - "Selling COF on 2016-06-30 00:00:00\n", - "Selling SWKS on 2016-06-30 00:00:00\n", - "Selling URI on 2016-06-30 00:00:00\n", - "Selling ADSK on 2016-06-30 00:00:00\n", - "Selling BK on 2016-06-30 00:00:00\n", - "Selling PCAR on 2016-06-30 00:00:00\n", - "Selling EPAM on 2016-06-30 00:00:00\n", - "Selling PRU on 2016-06-30 00:00:00\n", - "Selling MCO on 2016-06-30 00:00:00\n", - "Selling BKNG on 2016-06-30 00:00:00\n", - "Selling NDSN on 2016-06-30 00:00:00\n", - "Selling AMD on 2016-06-30 00:00:00\n", - "Selling STX on 2016-06-30 00:00:00\n", - "Selling BLDR on 2016-06-30 00:00:00\n", - "Selling KEY on 2016-06-30 00:00:00\n", - "Selling RJF on 2016-06-30 00:00:00\n", - "Selling INCY on 2016-06-30 00:00:00\n", - "Selling NTRS on 2016-06-30 00:00:00\n", - "Selling BEN on 2016-06-30 00:00:00\n", - "Selling ANET on 2016-06-30 00:00:00\n", - "Selling ON on 2016-06-30 00:00:00\n", - "Selling AMP on 2016-06-30 00:00:00\n", - "Selling HBAN on 2016-06-30 00:00:00\n", - "Selling BAC on 2016-06-30 00:00:00\n", - "Selling AKAM on 2016-06-30 00:00:00\n", - "Selling PFG on 2016-06-30 00:00:00\n", - "Selling STT on 2016-06-30 00:00:00\n", - "Selling FITB on 2016-06-30 00:00:00\n", - "Selling DVN on 2016-06-30 00:00:00\n", - "Selling CBRE on 2016-06-30 00:00:00\n", - "Selling HES on 2016-06-30 00:00:00\n", - "Selling MS on 2016-06-30 00:00:00\n", - "Selling C on 2016-06-30 00:00:00\n", - "Selling RF on 2016-06-30 00:00:00\n", - "Selling MU on 2016-06-30 00:00:00\n", - "Selling BWA on 2016-06-30 00:00:00\n", - "Selling CFG on 2016-06-30 00:00:00\n", - "Selling UAL on 2016-06-30 00:00:00\n", - "Selling APTV on 2016-06-30 00:00:00\n", - "Selling MET on 2016-06-30 00:00:00\n", - "Selling FCX on 2016-06-30 00:00:00\n", - "Selling SCHW on 2016-06-30 00:00:00\n", - "Selling WDC on 2016-06-30 00:00:00\n", - "Selling ENPH on 2016-06-30 00:00:00\n", - "Selling IVZ on 2016-06-30 00:00:00\n", - "Buying NEM on 2016-07-31 00:00:00\n", - "Buying DHR on 2016-07-31 00:00:00\n", - "Buying ED on 2016-07-31 00:00:00\n", - "Buying KR on 2016-07-31 00:00:00\n", - "Buying ES on 2016-07-31 00:00:00\n", - "Buying CMS on 2016-07-31 00:00:00\n", - "Buying WEC on 2016-07-31 00:00:00\n", - "Buying EIX on 2016-07-31 00:00:00\n", - "Buying XEL on 2016-07-31 00:00:00\n", - "Buying VTR on 2016-07-31 00:00:00\n", - "Buying DTE on 2016-07-31 00:00:00\n", - "Buying HRL on 2016-07-31 00:00:00\n", - "Buying DUK on 2016-07-31 00:00:00\n", - "Buying AEP on 2016-07-31 00:00:00\n", - "Buying KDP on 2016-07-31 00:00:00\n", - "Buying PNW on 2016-07-31 00:00:00\n", - "Buying LNT on 2016-07-31 00:00:00\n", - "Buying CLX on 2016-07-31 00:00:00\n", - "Buying NEE on 2016-07-31 00:00:00\n", - "Buying AWK on 2016-07-31 00:00:00\n", - "Buying SO on 2016-07-31 00:00:00\n", - "Buying PCG on 2016-07-31 00:00:00\n", - "Buying MO on 2016-07-31 00:00:00\n", - "Buying AMCR on 2016-07-31 00:00:00\n", - "Buying EVRG on 2016-07-31 00:00:00\n", - "Buying AEE on 2016-07-31 00:00:00\n", - "Buying O on 2016-07-31 00:00:00\n", - "Buying TSN on 2016-07-31 00:00:00\n", - "Buying D on 2016-07-31 00:00:00\n", - "Buying ETR on 2016-07-31 00:00:00\n", - "Buying CPB on 2016-07-31 00:00:00\n", - "Buying NI on 2016-07-31 00:00:00\n", - "Buying EXR on 2016-07-31 00:00:00\n", - "Buying PSA on 2016-07-31 00:00:00\n", - "Buying DG on 2016-07-31 00:00:00\n", - "Buying SJM on 2016-07-31 00:00:00\n", - "Buying CCI on 2016-07-31 00:00:00\n", - "Buying ATO on 2016-07-31 00:00:00\n", - "Buying SRE on 2016-07-31 00:00:00\n", - "Buying WM on 2016-07-31 00:00:00\n", - "Buying PEG on 2016-07-31 00:00:00\n", - "Buying DOC on 2016-07-31 00:00:00\n", - "Buying WELL on 2016-07-31 00:00:00\n", - "Buying VZ on 2016-07-31 00:00:00\n", - "Buying MAA on 2016-07-31 00:00:00\n", - "Buying SYY on 2016-07-31 00:00:00\n", - "Buying T on 2016-07-31 00:00:00\n", - "Selling NTRS on 2016-07-31 00:00:00\n", - "Selling BK on 2016-07-31 00:00:00\n", - "Selling BKNG on 2016-07-31 00:00:00\n", - "Selling NRG on 2016-07-31 00:00:00\n", - "Selling DAL on 2016-07-31 00:00:00\n", - "Selling WDAY on 2016-07-31 00:00:00\n", - "Selling BAC on 2016-07-31 00:00:00\n", - "Selling PCAR on 2016-07-31 00:00:00\n", - "Selling BEN on 2016-07-31 00:00:00\n", - "Selling PRU on 2016-07-31 00:00:00\n", - "Selling MCO on 2016-07-31 00:00:00\n", - "Selling KEY on 2016-07-31 00:00:00\n", - "Selling SWKS on 2016-07-31 00:00:00\n", - "Selling RJF on 2016-07-31 00:00:00\n", - "Selling NDSN on 2016-07-31 00:00:00\n", - "Selling NOW on 2016-07-31 00:00:00\n", - "Selling STT on 2016-07-31 00:00:00\n", - "Selling URI on 2016-07-31 00:00:00\n", - "Selling FMC on 2016-07-31 00:00:00\n", - "Selling ON on 2016-07-31 00:00:00\n", - "Selling ANET on 2016-07-31 00:00:00\n", - "Selling BLDR on 2016-07-31 00:00:00\n", - "Selling EPAM on 2016-07-31 00:00:00\n", - "Selling ADSK on 2016-07-31 00:00:00\n", - "Selling HBAN on 2016-07-31 00:00:00\n", - "Selling AMP on 2016-07-31 00:00:00\n", - "Selling AKAM on 2016-07-31 00:00:00\n", - "Selling DVN on 2016-07-31 00:00:00\n", - "Selling FITB on 2016-07-31 00:00:00\n", - "Selling C on 2016-07-31 00:00:00\n", - "Selling PFG on 2016-07-31 00:00:00\n", - "Selling CFG on 2016-07-31 00:00:00\n", - "Selling ENPH on 2016-07-31 00:00:00\n", - "Selling MS on 2016-07-31 00:00:00\n", - "Selling HES on 2016-07-31 00:00:00\n", - "Selling RF on 2016-07-31 00:00:00\n", - "Selling MU on 2016-07-31 00:00:00\n", - "Selling FCX on 2016-07-31 00:00:00\n", - "Selling STX on 2016-07-31 00:00:00\n", - "Selling BWA on 2016-07-31 00:00:00\n", - "Selling CBRE on 2016-07-31 00:00:00\n", - "Selling UAL on 2016-07-31 00:00:00\n", - "Selling MET on 2016-07-31 00:00:00\n", - "Selling SCHW on 2016-07-31 00:00:00\n", - "Selling APTV on 2016-07-31 00:00:00\n", - "Selling WDC on 2016-07-31 00:00:00\n", - "Selling IVZ on 2016-07-31 00:00:00\n", - "Buying DHR on 2016-08-31 00:00:00\n", - "Buying NEM on 2016-08-31 00:00:00\n", - "Buying ED on 2016-08-31 00:00:00\n", - "Buying ES on 2016-08-31 00:00:00\n", - "Buying CMS on 2016-08-31 00:00:00\n", - "Buying KR on 2016-08-31 00:00:00\n", - "Buying WEC on 2016-08-31 00:00:00\n", - "Buying CLX on 2016-08-31 00:00:00\n", - "Buying LNT on 2016-08-31 00:00:00\n", - "Buying HRL on 2016-08-31 00:00:00\n", - "Buying XEL on 2016-08-31 00:00:00\n", - "Buying DTE on 2016-08-31 00:00:00\n", - "Buying VTR on 2016-08-31 00:00:00\n", - "Buying KDP on 2016-08-31 00:00:00\n", - "Buying PNW on 2016-08-31 00:00:00\n", - "Buying EIX on 2016-08-31 00:00:00\n", - "Buying DUK on 2016-08-31 00:00:00\n", - "Buying MO on 2016-08-31 00:00:00\n", - "Buying O on 2016-08-31 00:00:00\n", - "Buying AWK on 2016-08-31 00:00:00\n", - "Buying AEP on 2016-08-31 00:00:00\n", - "Buying NEE on 2016-08-31 00:00:00\n", - "Buying PCG on 2016-08-31 00:00:00\n", - "Buying SO on 2016-08-31 00:00:00\n", - "Buying EXR on 2016-08-31 00:00:00\n", - "Buying EVRG on 2016-08-31 00:00:00\n", - "Buying PSA on 2016-08-31 00:00:00\n", - "Buying AMCR on 2016-08-31 00:00:00\n", - "Buying AEE on 2016-08-31 00:00:00\n", - "Buying NI on 2016-08-31 00:00:00\n", - "Buying SJM on 2016-08-31 00:00:00\n", - "Buying TSN on 2016-08-31 00:00:00\n", - "Buying CCI on 2016-08-31 00:00:00\n", - "Buying D on 2016-08-31 00:00:00\n", - "Buying CPB on 2016-08-31 00:00:00\n", - "Buying ORLY on 2016-08-31 00:00:00\n", - "Buying MAA on 2016-08-31 00:00:00\n", - "Buying VZ on 2016-08-31 00:00:00\n", - "Buying ATO on 2016-08-31 00:00:00\n", - "Buying CVS on 2016-08-31 00:00:00\n", - "Buying DG on 2016-08-31 00:00:00\n", - "Buying ETR on 2016-08-31 00:00:00\n", - "Buying FRT on 2016-08-31 00:00:00\n", - "Buying SRE on 2016-08-31 00:00:00\n", - "Buying WMT on 2016-08-31 00:00:00\n", - "Buying WM on 2016-08-31 00:00:00\n", - "Buying PEG on 2016-08-31 00:00:00\n", - "Selling NXPI on 2016-08-31 00:00:00\n", - "Selling RCL on 2016-08-31 00:00:00\n", - "Selling WDAY on 2016-08-31 00:00:00\n", - "Selling TRGP on 2016-08-31 00:00:00\n", - "Selling BK on 2016-08-31 00:00:00\n", - "Selling KEY on 2016-08-31 00:00:00\n", - "Selling NRG on 2016-08-31 00:00:00\n", - "Selling BEN on 2016-08-31 00:00:00\n", - "Selling BAC on 2016-08-31 00:00:00\n", - "Selling PRU on 2016-08-31 00:00:00\n", - "Selling BKNG on 2016-08-31 00:00:00\n", - "Selling NCLH on 2016-08-31 00:00:00\n", - "Selling STT on 2016-08-31 00:00:00\n", - "Selling EPAM on 2016-08-31 00:00:00\n", - "Selling CF on 2016-08-31 00:00:00\n", - "Selling ON on 2016-08-31 00:00:00\n", - "Selling MPC on 2016-08-31 00:00:00\n", - "Selling ADSK on 2016-08-31 00:00:00\n", - "Selling NOW on 2016-08-31 00:00:00\n", - "Selling HBAN on 2016-08-31 00:00:00\n", - "Selling SWKS on 2016-08-31 00:00:00\n", - "Selling AMP on 2016-08-31 00:00:00\n", - "Selling FITB on 2016-08-31 00:00:00\n", - "Selling ANET on 2016-08-31 00:00:00\n", - "Selling FMC on 2016-08-31 00:00:00\n", - "Selling DAL on 2016-08-31 00:00:00\n", - "Selling PFG on 2016-08-31 00:00:00\n", - "Selling MS on 2016-08-31 00:00:00\n", - "Selling C on 2016-08-31 00:00:00\n", - "Selling URI on 2016-08-31 00:00:00\n", - "Selling DVN on 2016-08-31 00:00:00\n", - "Selling CFG on 2016-08-31 00:00:00\n", - "Selling HES on 2016-08-31 00:00:00\n", - "Selling BLDR on 2016-08-31 00:00:00\n", - "Selling BWA on 2016-08-31 00:00:00\n", - "Selling ENPH on 2016-08-31 00:00:00\n", - "Selling RF on 2016-08-31 00:00:00\n", - "Selling MU on 2016-08-31 00:00:00\n", - "Selling MET on 2016-08-31 00:00:00\n", - "Selling CBRE on 2016-08-31 00:00:00\n", - "Selling APTV on 2016-08-31 00:00:00\n", - "Selling SCHW on 2016-08-31 00:00:00\n", - "Selling UAL on 2016-08-31 00:00:00\n", - "Selling WDC on 2016-08-31 00:00:00\n", - "Selling STX on 2016-08-31 00:00:00\n", - "Selling FCX on 2016-08-31 00:00:00\n", - "Selling IVZ on 2016-08-31 00:00:00\n", - "Buying AMCR on 2016-09-30 00:00:00\n", - "Buying HUM on 2016-09-30 00:00:00\n", - "Buying EVRG on 2016-09-30 00:00:00\n", - "Buying KR on 2016-09-30 00:00:00\n", - "Buying CVS on 2016-09-30 00:00:00\n", - "Buying SJM on 2016-09-30 00:00:00\n", - "Buying BMY on 2016-09-30 00:00:00\n", - "Buying ACGL on 2016-09-30 00:00:00\n", - "Buying CI on 2016-09-30 00:00:00\n", - "Buying CZR on 2016-09-30 00:00:00\n", - "Buying AZO on 2016-09-30 00:00:00\n", - "Buying MKTX on 2016-09-30 00:00:00\n", - "Buying CHRW on 2016-09-30 00:00:00\n", - "Buying GILD on 2016-09-30 00:00:00\n", - "Buying ICE on 2016-09-30 00:00:00\n", - "Buying EXR on 2016-09-30 00:00:00\n", - "Buying MCD on 2016-09-30 00:00:00\n", - "Buying CME on 2016-09-30 00:00:00\n", - "Buying NVR on 2016-09-30 00:00:00\n", - "Buying ERIE on 2016-09-30 00:00:00\n", - "Buying EXPD on 2016-09-30 00:00:00\n", - "Buying WYNN on 2016-09-30 00:00:00\n", - "Buying DIS on 2016-09-30 00:00:00\n", - "Buying LMT on 2016-09-30 00:00:00\n", - "Buying MAA on 2016-09-30 00:00:00\n", - "Buying EG on 2016-09-30 00:00:00\n", - "Buying JNJ on 2016-09-30 00:00:00\n", - "Buying CBOE on 2016-09-30 00:00:00\n", - "Buying CTSH on 2016-09-30 00:00:00\n", - "Buying HSY on 2016-09-30 00:00:00\n", - "Buying CAG on 2016-09-30 00:00:00\n", - "Buying NOC on 2016-09-30 00:00:00\n", - "Buying SBUX on 2016-09-30 00:00:00\n", - "Buying ORLY on 2016-09-30 00:00:00\n", - "Buying ES on 2016-09-30 00:00:00\n", - "Buying ALL on 2016-09-30 00:00:00\n", - "Buying VRSK on 2016-09-30 00:00:00\n", - "Buying PSA on 2016-09-30 00:00:00\n", - "Buying XEL on 2016-09-30 00:00:00\n", - "Buying NDAQ on 2016-09-30 00:00:00\n", - "Buying CMS on 2016-09-30 00:00:00\n", - "Buying CLX on 2016-09-30 00:00:00\n", - "Buying MTB on 2016-09-30 00:00:00\n", - "Buying UNH on 2016-09-30 00:00:00\n", - "Buying CHD on 2016-09-30 00:00:00\n", - "Buying GL on 2016-09-30 00:00:00\n", - "Buying TGT on 2016-09-30 00:00:00\n", - "Selling ARE on 2016-09-30 00:00:00\n", - "Selling MOS on 2016-09-30 00:00:00\n", - "Selling ON on 2016-09-30 00:00:00\n", - "Selling CPAY on 2016-09-30 00:00:00\n", - "Selling AOS on 2016-09-30 00:00:00\n", - "Selling BWA on 2016-09-30 00:00:00\n", - "Selling IVZ on 2016-09-30 00:00:00\n", - "Selling DOV on 2016-09-30 00:00:00\n", - "Selling ADSK on 2016-09-30 00:00:00\n", - "Selling HPQ on 2016-09-30 00:00:00\n", - "Selling OKE on 2016-09-30 00:00:00\n", - "Selling TDY on 2016-09-30 00:00:00\n", - "Selling EOG on 2016-09-30 00:00:00\n", - "Selling WY on 2016-09-30 00:00:00\n", - "Selling VRTX on 2016-09-30 00:00:00\n", - "Selling NEM on 2016-09-30 00:00:00\n", - "Selling TT on 2016-09-30 00:00:00\n", - "Selling PAYC on 2016-09-30 00:00:00\n", - "Selling DECK on 2016-09-30 00:00:00\n", - "Selling NVDA on 2016-09-30 00:00:00\n", - "Selling TRGP on 2016-09-30 00:00:00\n", - "Selling LUV on 2016-09-30 00:00:00\n", - "Selling ALB on 2016-09-30 00:00:00\n", - "Selling HAL on 2016-09-30 00:00:00\n", - "Selling BLDR on 2016-09-30 00:00:00\n", - "Selling PNR on 2016-09-30 00:00:00\n", - "Selling NUE on 2016-09-30 00:00:00\n", - "Selling MU on 2016-09-30 00:00:00\n", - "Selling SWKS on 2016-09-30 00:00:00\n", - "Selling WMB on 2016-09-30 00:00:00\n", - "Selling FMC on 2016-09-30 00:00:00\n", - "Selling BEN on 2016-09-30 00:00:00\n", - "Selling DAL on 2016-09-30 00:00:00\n", - "Selling CF on 2016-09-30 00:00:00\n", - "Selling DVN on 2016-09-30 00:00:00\n", - "Selling GNRC on 2016-09-30 00:00:00\n", - "Selling KMX on 2016-09-30 00:00:00\n", - "Selling MPC on 2016-09-30 00:00:00\n", - "Selling CBRE on 2016-09-30 00:00:00\n", - "Selling AMD on 2016-09-30 00:00:00\n", - "Selling URI on 2016-09-30 00:00:00\n", - "Selling UAL on 2016-09-30 00:00:00\n", - "Selling NOW on 2016-09-30 00:00:00\n", - "Selling PODD on 2016-09-30 00:00:00\n", - "Selling ENPH on 2016-09-30 00:00:00\n", - "Selling NRG on 2016-09-30 00:00:00\n", - "Selling FCX on 2016-09-30 00:00:00\n", - "Buying KR on 2016-10-31 00:00:00\n", - "Buying AMCR on 2016-10-31 00:00:00\n", - "Buying HUM on 2016-10-31 00:00:00\n", - "Buying EVRG on 2016-10-31 00:00:00\n", - "Buying CTSH on 2016-10-31 00:00:00\n", - "Buying TGT on 2016-10-31 00:00:00\n", - "Buying ACGL on 2016-10-31 00:00:00\n", - "Buying EXR on 2016-10-31 00:00:00\n", - "Buying AZO on 2016-10-31 00:00:00\n", - "Buying BMY on 2016-10-31 00:00:00\n", - "Buying CHRW on 2016-10-31 00:00:00\n", - "Buying CCL on 2016-10-31 00:00:00\n", - "Buying LMT on 2016-10-31 00:00:00\n", - "Buying CI on 2016-10-31 00:00:00\n", - "Buying EG on 2016-10-31 00:00:00\n", - "Buying EXPD on 2016-10-31 00:00:00\n", - "Buying ICE on 2016-10-31 00:00:00\n", - "Buying RCL on 2016-10-31 00:00:00\n", - "Buying CBOE on 2016-10-31 00:00:00\n", - "Buying DIS on 2016-10-31 00:00:00\n", - "Buying NVR on 2016-10-31 00:00:00\n", - "Buying VRSK on 2016-10-31 00:00:00\n", - "Buying MTB on 2016-10-31 00:00:00\n", - "Buying JNJ on 2016-10-31 00:00:00\n", - "Buying SBUX on 2016-10-31 00:00:00\n", - "Buying CME on 2016-10-31 00:00:00\n", - "Buying PRU on 2016-10-31 00:00:00\n", - "Buying MCD on 2016-10-31 00:00:00\n", - "Buying PSA on 2016-10-31 00:00:00\n", - "Buying MET on 2016-10-31 00:00:00\n", - "Buying MKTX on 2016-10-31 00:00:00\n", - "Buying SJM on 2016-10-31 00:00:00\n", - "Buying CVS on 2016-10-31 00:00:00\n", - "Buying FTNT on 2016-10-31 00:00:00\n", - "Buying HIG on 2016-10-31 00:00:00\n", - "Buying NOC on 2016-10-31 00:00:00\n", - "Buying HSY on 2016-10-31 00:00:00\n", - "Buying UPS on 2016-10-31 00:00:00\n", - "Buying HAS on 2016-10-31 00:00:00\n", - "Buying NCLH on 2016-10-31 00:00:00\n", - "Buying KMB on 2016-10-31 00:00:00\n", - "Buying COST on 2016-10-31 00:00:00\n", - "Buying AKAM on 2016-10-31 00:00:00\n", - "Buying ERIE on 2016-10-31 00:00:00\n", - "Buying MSI on 2016-10-31 00:00:00\n", - "Buying ALL on 2016-10-31 00:00:00\n", - "Buying GL on 2016-10-31 00:00:00\n", - "Selling TDY on 2016-10-31 00:00:00\n", - "Selling A on 2016-10-31 00:00:00\n", - "Selling TFX on 2016-10-31 00:00:00\n", - "Selling TMO on 2016-10-31 00:00:00\n", - "Selling NDSN on 2016-10-31 00:00:00\n", - "Selling LRCX on 2016-10-31 00:00:00\n", - "Selling ZBH on 2016-10-31 00:00:00\n", - "Selling PNR on 2016-10-31 00:00:00\n", - "Selling TRGP on 2016-10-31 00:00:00\n", - "Selling WY on 2016-10-31 00:00:00\n", - "Selling HPQ on 2016-10-31 00:00:00\n", - "Selling AES on 2016-10-31 00:00:00\n", - "Selling ON on 2016-10-31 00:00:00\n", - "Selling NUE on 2016-10-31 00:00:00\n", - "Selling NVDA on 2016-10-31 00:00:00\n", - "Selling WMB on 2016-10-31 00:00:00\n", - "Selling CF on 2016-10-31 00:00:00\n", - "Selling ENPH on 2016-10-31 00:00:00\n", - "Selling AOS on 2016-10-31 00:00:00\n", - "Selling ARE on 2016-10-31 00:00:00\n", - "Selling PAYC on 2016-10-31 00:00:00\n", - "Selling CE on 2016-10-31 00:00:00\n", - "Selling NFLX on 2016-10-31 00:00:00\n", - "Selling MPC on 2016-10-31 00:00:00\n", - "Selling MU on 2016-10-31 00:00:00\n", - "Selling TPL on 2016-10-31 00:00:00\n", - "Selling HAL on 2016-10-31 00:00:00\n", - "Selling NOW on 2016-10-31 00:00:00\n", - "Selling CBRE on 2016-10-31 00:00:00\n", - "Selling TMUS on 2016-10-31 00:00:00\n", - "Selling FMC on 2016-10-31 00:00:00\n", - "Selling CSGP on 2016-10-31 00:00:00\n", - "Selling URI on 2016-10-31 00:00:00\n", - "Selling KMX on 2016-10-31 00:00:00\n", - "Selling BEN on 2016-10-31 00:00:00\n", - "Selling DVN on 2016-10-31 00:00:00\n", - "Selling TT on 2016-10-31 00:00:00\n", - "Selling BLDR on 2016-10-31 00:00:00\n", - "Selling ALB on 2016-10-31 00:00:00\n", - "Selling OKE on 2016-10-31 00:00:00\n", - "Selling SWKS on 2016-10-31 00:00:00\n", - "Selling AMD on 2016-10-31 00:00:00\n", - "Selling VRTX on 2016-10-31 00:00:00\n", - "Selling NEM on 2016-10-31 00:00:00\n", - "Selling PODD on 2016-10-31 00:00:00\n", - "Selling NRG on 2016-10-31 00:00:00\n", - "Selling FCX on 2016-10-31 00:00:00\n", - "Buying AMCR on 2016-11-30 00:00:00\n", - "Buying ENPH on 2016-11-30 00:00:00\n", - "Buying KR on 2016-11-30 00:00:00\n", - "Buying EVRG on 2016-11-30 00:00:00\n", - "Buying MAA on 2016-11-30 00:00:00\n", - "Buying ESS on 2016-11-30 00:00:00\n", - "Buying AVB on 2016-11-30 00:00:00\n", - "Buying CTSH on 2016-11-30 00:00:00\n", - "Buying EG on 2016-11-30 00:00:00\n", - "Buying NXPI on 2016-11-30 00:00:00\n", - "Buying NCLH on 2016-11-30 00:00:00\n", - "Buying HSY on 2016-11-30 00:00:00\n", - "Buying UDR on 2016-11-30 00:00:00\n", - "Buying IFF on 2016-11-30 00:00:00\n", - "Buying EQR on 2016-11-30 00:00:00\n", - "Buying EXR on 2016-11-30 00:00:00\n", - "Buying EXPD on 2016-11-30 00:00:00\n", - "Buying NVR on 2016-11-30 00:00:00\n", - "Buying ACGL on 2016-11-30 00:00:00\n", - "Buying DD on 2016-11-30 00:00:00\n", - "Buying TSCO on 2016-11-30 00:00:00\n", - "Buying DIS on 2016-11-30 00:00:00\n", - "Buying SJM on 2016-11-30 00:00:00\n", - "Buying CPT on 2016-11-30 00:00:00\n", - "Buying ERIE on 2016-11-30 00:00:00\n", - "Buying TGT on 2016-11-30 00:00:00\n", - "Buying ALL on 2016-11-30 00:00:00\n", - "Buying VRSK on 2016-11-30 00:00:00\n", - "Buying LVS on 2016-11-30 00:00:00\n", - "Buying AZO on 2016-11-30 00:00:00\n", - "Buying CVS on 2016-11-30 00:00:00\n", - "Buying TTWO on 2016-11-30 00:00:00\n", - "Buying MCD on 2016-11-30 00:00:00\n", - "Buying KMB on 2016-11-30 00:00:00\n", - "Buying CBOE on 2016-11-30 00:00:00\n", - "Buying PG on 2016-11-30 00:00:00\n", - "Buying JNJ on 2016-11-30 00:00:00\n", - "Buying WYNN on 2016-11-30 00:00:00\n", - "Buying CHRW on 2016-11-30 00:00:00\n", - "Buying PARA on 2016-11-30 00:00:00\n", - "Buying TYL on 2016-11-30 00:00:00\n", - "Buying AIZ on 2016-11-30 00:00:00\n", - "Buying PEP on 2016-11-30 00:00:00\n", - "Buying COST on 2016-11-30 00:00:00\n", - "Buying DELL on 2016-11-30 00:00:00\n", - "Buying CB on 2016-11-30 00:00:00\n", - "Buying ADM on 2016-11-30 00:00:00\n", - "Selling MU on 2016-11-30 00:00:00\n", - "Selling CRL on 2016-11-30 00:00:00\n", - "Selling CMI on 2016-11-30 00:00:00\n", - "Selling HES on 2016-11-30 00:00:00\n", - "Selling ALB on 2016-11-30 00:00:00\n", - "Selling DVN on 2016-11-30 00:00:00\n", - "Selling DXCM on 2016-11-30 00:00:00\n", - "Selling VTRS on 2016-11-30 00:00:00\n", - "Selling MAS on 2016-11-30 00:00:00\n", - "Selling AOS on 2016-11-30 00:00:00\n", - "Selling WY on 2016-11-30 00:00:00\n", - "Selling KMX on 2016-11-30 00:00:00\n", - "Selling MCK on 2016-11-30 00:00:00\n", - "Selling MS on 2016-11-30 00:00:00\n", - "Selling TRMB on 2016-11-30 00:00:00\n", - "Selling CTRA on 2016-11-30 00:00:00\n", - "Selling ADSK on 2016-11-30 00:00:00\n", - "Selling TMUS on 2016-11-30 00:00:00\n", - "Selling NTAP on 2016-11-30 00:00:00\n", - "Selling TPL on 2016-11-30 00:00:00\n", - "Selling CSGP on 2016-11-30 00:00:00\n", - "Selling ETN on 2016-11-30 00:00:00\n", - "Selling ARE on 2016-11-30 00:00:00\n", - "Selling IVZ on 2016-11-30 00:00:00\n", - "Selling CBRE on 2016-11-30 00:00:00\n", - "Selling STLD on 2016-11-30 00:00:00\n", - "Selling SYY on 2016-11-30 00:00:00\n", - "Selling TDY on 2016-11-30 00:00:00\n", - "Selling TT on 2016-11-30 00:00:00\n", - "Selling SWKS on 2016-11-30 00:00:00\n", - "Selling AMP on 2016-11-30 00:00:00\n", - "Selling ZBRA on 2016-11-30 00:00:00\n", - "Selling BIIB on 2016-11-30 00:00:00\n", - "Selling OKE on 2016-11-30 00:00:00\n", - "Selling NUE on 2016-11-30 00:00:00\n", - "Selling BEN on 2016-11-30 00:00:00\n", - "Selling MPC on 2016-11-30 00:00:00\n", - "Selling AMD on 2016-11-30 00:00:00\n", - "Selling MTCH on 2016-11-30 00:00:00\n", - "Selling BLDR on 2016-11-30 00:00:00\n", - "Selling REGN on 2016-11-30 00:00:00\n", - "Selling INCY on 2016-11-30 00:00:00\n", - "Selling VRTX on 2016-11-30 00:00:00\n", - "Selling NRG on 2016-11-30 00:00:00\n", - "Selling URI on 2016-11-30 00:00:00\n", - "Selling PODD on 2016-11-30 00:00:00\n", - "Selling FCX on 2016-11-30 00:00:00\n", - "Buying ENPH on 2016-12-31 00:00:00\n", - "Buying AMCR on 2016-12-31 00:00:00\n", - "Buying ESS on 2016-12-31 00:00:00\n", - "Buying AVB on 2016-12-31 00:00:00\n", - "Buying CPT on 2016-12-31 00:00:00\n", - "Buying UDR on 2016-12-31 00:00:00\n", - "Buying EG on 2016-12-31 00:00:00\n", - "Buying EQR on 2016-12-31 00:00:00\n", - "Buying ADM on 2016-12-31 00:00:00\n", - "Buying MAA on 2016-12-31 00:00:00\n", - "Buying BG on 2016-12-31 00:00:00\n", - "Buying UHS on 2016-12-31 00:00:00\n", - "Buying NXPI on 2016-12-31 00:00:00\n", - "Buying EVRG on 2016-12-31 00:00:00\n", - "Buying BKR on 2016-12-31 00:00:00\n", - "Buying HSIC on 2016-12-31 00:00:00\n", - "Buying HSY on 2016-12-31 00:00:00\n", - "Buying NEM on 2016-12-31 00:00:00\n", - "Buying KMB on 2016-12-31 00:00:00\n", - "Buying REG on 2016-12-31 00:00:00\n", - "Buying PGR on 2016-12-31 00:00:00\n", - "Buying ALL on 2016-12-31 00:00:00\n", - "Buying ISRG on 2016-12-31 00:00:00\n", - "Buying DE on 2016-12-31 00:00:00\n", - "Buying CB on 2016-12-31 00:00:00\n", - "Buying ACGL on 2016-12-31 00:00:00\n", - "Buying PG on 2016-12-31 00:00:00\n", - "Buying MO on 2016-12-31 00:00:00\n", - "Buying JNJ on 2016-12-31 00:00:00\n", - "Buying CMG on 2016-12-31 00:00:00\n", - "Buying EXPD on 2016-12-31 00:00:00\n", - "Buying CL on 2016-12-31 00:00:00\n", - "Buying WRB on 2016-12-31 00:00:00\n", - "Buying SO on 2016-12-31 00:00:00\n", - "Buying LVS on 2016-12-31 00:00:00\n", - "Buying NEE on 2016-12-31 00:00:00\n", - "Buying ROL on 2016-12-31 00:00:00\n", - "Buying ERIE on 2016-12-31 00:00:00\n", - "Buying PPL on 2016-12-31 00:00:00\n", - "Buying KR on 2016-12-31 00:00:00\n", - "Buying AIZ on 2016-12-31 00:00:00\n", - "Buying PM on 2016-12-31 00:00:00\n", - "Buying AMT on 2016-12-31 00:00:00\n", - "Buying FFIV on 2016-12-31 00:00:00\n", - "Buying NOC on 2016-12-31 00:00:00\n", - "Buying FIS on 2016-12-31 00:00:00\n", - "Buying PEP on 2016-12-31 00:00:00\n", - "Selling SWKS on 2016-12-31 00:00:00\n", - "Selling MPWR on 2016-12-31 00:00:00\n", - "Selling KMI on 2016-12-31 00:00:00\n", - "Selling NOW on 2016-12-31 00:00:00\n", - "Selling PTC on 2016-12-31 00:00:00\n", - "Selling VLO on 2016-12-31 00:00:00\n", - "Selling APA on 2016-12-31 00:00:00\n", - "Selling EQT on 2016-12-31 00:00:00\n", - "Selling CI on 2016-12-31 00:00:00\n", - "Selling TDY on 2016-12-31 00:00:00\n", - "Selling DFS on 2016-12-31 00:00:00\n", - "Selling LRCX on 2016-12-31 00:00:00\n", - "Selling MAS on 2016-12-31 00:00:00\n", - "Selling BIIB on 2016-12-31 00:00:00\n", - "Selling RF on 2016-12-31 00:00:00\n", - "Selling SYY on 2016-12-31 00:00:00\n", - "Selling BWA on 2016-12-31 00:00:00\n", - "Selling OKE on 2016-12-31 00:00:00\n", - "Selling MLM on 2016-12-31 00:00:00\n", - "Selling FAST on 2016-12-31 00:00:00\n", - "Selling VRTX on 2016-12-31 00:00:00\n", - "Selling CMI on 2016-12-31 00:00:00\n", - "Selling BBY on 2016-12-31 00:00:00\n", - "Selling HES on 2016-12-31 00:00:00\n", - "Selling CTRA on 2016-12-31 00:00:00\n", - "Selling NTAP on 2016-12-31 00:00:00\n", - "Selling NUE on 2016-12-31 00:00:00\n", - "Selling WDC on 2016-12-31 00:00:00\n", - "Selling MU on 2016-12-31 00:00:00\n", - "Selling DXCM on 2016-12-31 00:00:00\n", - "Selling REGN on 2016-12-31 00:00:00\n", - "Selling TRMB on 2016-12-31 00:00:00\n", - "Selling MPC on 2016-12-31 00:00:00\n", - "Selling FSLR on 2016-12-31 00:00:00\n", - "Selling BEN on 2016-12-31 00:00:00\n", - "Selling FCX on 2016-12-31 00:00:00\n", - "Selling NRG on 2016-12-31 00:00:00\n", - "Selling INCY on 2016-12-31 00:00:00\n", - "Selling AMP on 2016-12-31 00:00:00\n", - "Selling ZBRA on 2016-12-31 00:00:00\n", - "Selling PODD on 2016-12-31 00:00:00\n", - "Selling STX on 2016-12-31 00:00:00\n", - "Selling ADSK on 2016-12-31 00:00:00\n", - "Selling BLDR on 2016-12-31 00:00:00\n", - "Selling URI on 2016-12-31 00:00:00\n", - "Selling AMD on 2016-12-31 00:00:00\n", - "Selling MTCH on 2016-12-31 00:00:00\n", - "Buying ESS on 2017-01-31 00:00:00\n", - "Buying AVB on 2017-01-31 00:00:00\n", - "Buying AMCR on 2017-01-31 00:00:00\n", - "Buying CPT on 2017-01-31 00:00:00\n", - "Buying UDR on 2017-01-31 00:00:00\n", - "Buying EQR on 2017-01-31 00:00:00\n", - "Buying REG on 2017-01-31 00:00:00\n", - "Buying NEM on 2017-01-31 00:00:00\n", - "Buying MAA on 2017-01-31 00:00:00\n", - "Buying CMG on 2017-01-31 00:00:00\n", - "Buying WELL on 2017-01-31 00:00:00\n", - "Buying O on 2017-01-31 00:00:00\n", - "Buying EVRG on 2017-01-31 00:00:00\n", - "Buying NXPI on 2017-01-31 00:00:00\n", - "Buying UHS on 2017-01-31 00:00:00\n", - "Buying TRV on 2017-01-31 00:00:00\n", - "Buying EG on 2017-01-31 00:00:00\n", - "Buying SO on 2017-01-31 00:00:00\n", - "Buying NEE on 2017-01-31 00:00:00\n", - "Buying VTR on 2017-01-31 00:00:00\n", - "Buying VST on 2017-01-31 00:00:00\n", - "Buying AMT on 2017-01-31 00:00:00\n", - "Buying MCD on 2017-01-31 00:00:00\n", - "Buying MDT on 2017-01-31 00:00:00\n", - "Buying BAX on 2017-01-31 00:00:00\n", - "Buying WMT on 2017-01-31 00:00:00\n", - "Buying ADM on 2017-01-31 00:00:00\n", - "Buying CVS on 2017-01-31 00:00:00\n", - "Buying BDX on 2017-01-31 00:00:00\n", - "Buying MO on 2017-01-31 00:00:00\n", - "Buying HUM on 2017-01-31 00:00:00\n", - "Buying PPL on 2017-01-31 00:00:00\n", - "Buying WRB on 2017-01-31 00:00:00\n", - "Buying PM on 2017-01-31 00:00:00\n", - "Buying CCI on 2017-01-31 00:00:00\n", - "Buying JNJ on 2017-01-31 00:00:00\n", - "Buying ED on 2017-01-31 00:00:00\n", - "Buying CMS on 2017-01-31 00:00:00\n", - "Buying T on 2017-01-31 00:00:00\n", - "Buying ALL on 2017-01-31 00:00:00\n", - "Buying CB on 2017-01-31 00:00:00\n", - "Buying DPZ on 2017-01-31 00:00:00\n", - "Buying VZ on 2017-01-31 00:00:00\n", - "Buying COST on 2017-01-31 00:00:00\n", - "Buying ACGL on 2017-01-31 00:00:00\n", - "Buying HSIC on 2017-01-31 00:00:00\n", - "Buying BG on 2017-01-31 00:00:00\n", - "Buying PCG on 2017-01-31 00:00:00\n", - "Selling APA on 2017-01-31 00:00:00\n", - "Selling FITB on 2017-01-31 00:00:00\n", - "Selling ALGN on 2017-01-31 00:00:00\n", - "Selling EQT on 2017-01-31 00:00:00\n", - "Selling BIIB on 2017-01-31 00:00:00\n", - "Selling IVZ on 2017-01-31 00:00:00\n", - "Selling GDDY on 2017-01-31 00:00:00\n", - "Selling WDAY on 2017-01-31 00:00:00\n", - "Selling MCK on 2017-01-31 00:00:00\n", - "Selling BWA on 2017-01-31 00:00:00\n", - "Selling BBY on 2017-01-31 00:00:00\n", - "Selling VLO on 2017-01-31 00:00:00\n", - "Selling DAL on 2017-01-31 00:00:00\n", - "Selling BX on 2017-01-31 00:00:00\n", - "Selling TRMB on 2017-01-31 00:00:00\n", - "Selling SYY on 2017-01-31 00:00:00\n", - "Selling CF on 2017-01-31 00:00:00\n", - "Selling BAC on 2017-01-31 00:00:00\n", - "Selling C on 2017-01-31 00:00:00\n", - "Selling MPC on 2017-01-31 00:00:00\n", - "Selling NTAP on 2017-01-31 00:00:00\n", - "Selling QCOM on 2017-01-31 00:00:00\n", - "Selling PCAR on 2017-01-31 00:00:00\n", - "Selling MS on 2017-01-31 00:00:00\n", - "Selling CMI on 2017-01-31 00:00:00\n", - "Selling VMC on 2017-01-31 00:00:00\n", - "Selling REGN on 2017-01-31 00:00:00\n", - "Selling WDC on 2017-01-31 00:00:00\n", - "Selling NOW on 2017-01-31 00:00:00\n", - "Selling MU on 2017-01-31 00:00:00\n", - "Selling ROK on 2017-01-31 00:00:00\n", - "Selling INCY on 2017-01-31 00:00:00\n", - "Selling RF on 2017-01-31 00:00:00\n", - "Selling MTCH on 2017-01-31 00:00:00\n", - "Selling BEN on 2017-01-31 00:00:00\n", - "Selling NUE on 2017-01-31 00:00:00\n", - "Selling SMCI on 2017-01-31 00:00:00\n", - "Selling AMD on 2017-01-31 00:00:00\n", - "Selling VRTX on 2017-01-31 00:00:00\n", - "Selling ZBRA on 2017-01-31 00:00:00\n", - "Selling FCX on 2017-01-31 00:00:00\n", - "Selling AMP on 2017-01-31 00:00:00\n", - "Selling MLM on 2017-01-31 00:00:00\n", - "Selling URI on 2017-01-31 00:00:00\n", - "Selling STX on 2017-01-31 00:00:00\n", - "Selling ADSK on 2017-01-31 00:00:00\n", - "Selling FSLR on 2017-01-31 00:00:00\n", - "Selling BLDR on 2017-01-31 00:00:00\n", - "Buying HUM on 2017-02-28 00:00:00\n", - "Buying AMCR on 2017-02-28 00:00:00\n", - "Buying BMY on 2017-02-28 00:00:00\n", - "Buying ESS on 2017-02-28 00:00:00\n", - "Buying CSX on 2017-02-28 00:00:00\n", - "Buying AXON on 2017-02-28 00:00:00\n", - "Buying EVRG on 2017-02-28 00:00:00\n", - "Buying INCY on 2017-02-28 00:00:00\n", - "Buying UHS on 2017-02-28 00:00:00\n", - "Buying CMG on 2017-02-28 00:00:00\n", - "Buying UDR on 2017-02-28 00:00:00\n", - "Buying DPZ on 2017-02-28 00:00:00\n", - "Buying SO on 2017-02-28 00:00:00\n", - "Buying NEM on 2017-02-28 00:00:00\n", - "Buying EG on 2017-02-28 00:00:00\n", - "Buying MCD on 2017-02-28 00:00:00\n", - "Buying LMT on 2017-02-28 00:00:00\n", - "Buying JNJ on 2017-02-28 00:00:00\n", - "Buying CPT on 2017-02-28 00:00:00\n", - "Buying AVB on 2017-02-28 00:00:00\n", - "Buying DECK on 2017-02-28 00:00:00\n", - "Buying ABBV on 2017-02-28 00:00:00\n", - "Buying MDT on 2017-02-28 00:00:00\n", - "Buying TRV on 2017-02-28 00:00:00\n", - "Buying BSX on 2017-02-28 00:00:00\n", - "Buying NOC on 2017-02-28 00:00:00\n", - "Buying WMT on 2017-02-28 00:00:00\n", - "Buying WELL on 2017-02-28 00:00:00\n", - "Buying EQR on 2017-02-28 00:00:00\n", - "Buying WM on 2017-02-28 00:00:00\n", - "Buying T on 2017-02-28 00:00:00\n", - "Buying KR on 2017-02-28 00:00:00\n", - "Buying BAX on 2017-02-28 00:00:00\n", - "Buying BDX on 2017-02-28 00:00:00\n", - "Buying ACGL on 2017-02-28 00:00:00\n", - "Buying CMS on 2017-02-28 00:00:00\n", - "Buying ADM on 2017-02-28 00:00:00\n", - "Buying LLY on 2017-02-28 00:00:00\n", - "Buying FE on 2017-02-28 00:00:00\n", - "Buying NXPI on 2017-02-28 00:00:00\n", - "Buying CVS on 2017-02-28 00:00:00\n", - "Buying MO on 2017-02-28 00:00:00\n", - "Buying PCG on 2017-02-28 00:00:00\n", - "Buying EIX on 2017-02-28 00:00:00\n", - "Buying ZBH on 2017-02-28 00:00:00\n", - "Buying GD on 2017-02-28 00:00:00\n", - "Buying VZ on 2017-02-28 00:00:00\n", - "Buying BIIB on 2017-02-28 00:00:00\n", - "Selling EQT on 2017-02-28 00:00:00\n", - "Selling CFG on 2017-02-28 00:00:00\n", - "Selling BBY on 2017-02-28 00:00:00\n", - "Selling HBAN on 2017-02-28 00:00:00\n", - "Selling CF on 2017-02-28 00:00:00\n", - "Selling HES on 2017-02-28 00:00:00\n", - "Selling SYF on 2017-02-28 00:00:00\n", - "Selling MS on 2017-02-28 00:00:00\n", - "Selling ANET on 2017-02-28 00:00:00\n", - "Selling AVGO on 2017-02-28 00:00:00\n", - "Selling AMP on 2017-02-28 00:00:00\n", - "Selling RF on 2017-02-28 00:00:00\n", - "Selling BEN on 2017-02-28 00:00:00\n", - "Selling NCLH on 2017-02-28 00:00:00\n", - "Selling MOS on 2017-02-28 00:00:00\n", - "Selling MKTX on 2017-02-28 00:00:00\n", - "Selling WFC on 2017-02-28 00:00:00\n", - "Selling C on 2017-02-28 00:00:00\n", - "Selling COP on 2017-02-28 00:00:00\n", - "Selling NRG on 2017-02-28 00:00:00\n", - "Selling TRMB on 2017-02-28 00:00:00\n", - "Selling CTSH on 2017-02-28 00:00:00\n", - "Selling CBRE on 2017-02-28 00:00:00\n", - "Selling MU on 2017-02-28 00:00:00\n", - "Selling AMD on 2017-02-28 00:00:00\n", - "Selling BAC on 2017-02-28 00:00:00\n", - "Selling APTV on 2017-02-28 00:00:00\n", - "Selling F on 2017-02-28 00:00:00\n", - "Selling FTNT on 2017-02-28 00:00:00\n", - "Selling PCAR on 2017-02-28 00:00:00\n", - "Selling IVZ on 2017-02-28 00:00:00\n", - "Selling HWM on 2017-02-28 00:00:00\n", - "Selling DAL on 2017-02-28 00:00:00\n", - "Selling GM on 2017-02-28 00:00:00\n", - "Selling BWA on 2017-02-28 00:00:00\n", - "Selling NOW on 2017-02-28 00:00:00\n", - "Selling WDAY on 2017-02-28 00:00:00\n", - "Selling WDC on 2017-02-28 00:00:00\n", - "Selling BX on 2017-02-28 00:00:00\n", - "Selling SMCI on 2017-02-28 00:00:00\n", - "Selling QCOM on 2017-02-28 00:00:00\n", - "Selling PAYC on 2017-02-28 00:00:00\n", - "Selling ON on 2017-02-28 00:00:00\n", - "Selling STX on 2017-02-28 00:00:00\n", - "Selling ADSK on 2017-02-28 00:00:00\n", - "Selling FSLR on 2017-02-28 00:00:00\n", - "Selling BLDR on 2017-02-28 00:00:00\n", - "Selling ENPH on 2017-02-28 00:00:00\n", - "Buying PANW on 2017-03-31 00:00:00\n", - "Buying AMCR on 2017-03-31 00:00:00\n", - "Buying SO on 2017-03-31 00:00:00\n", - "Buying NEE on 2017-03-31 00:00:00\n", - "Buying ED on 2017-03-31 00:00:00\n", - "Buying ES on 2017-03-31 00:00:00\n", - "Buying DUK on 2017-03-31 00:00:00\n", - "Buying NEM on 2017-03-31 00:00:00\n", - "Buying CMS on 2017-03-31 00:00:00\n", - "Buying LULU on 2017-03-31 00:00:00\n", - "Buying WELL on 2017-03-31 00:00:00\n", - "Buying PCG on 2017-03-31 00:00:00\n", - "Buying LNT on 2017-03-31 00:00:00\n", - "Buying AEP on 2017-03-31 00:00:00\n", - "Buying ESS on 2017-03-31 00:00:00\n", - "Buying MNST on 2017-03-31 00:00:00\n", - "Buying WEC on 2017-03-31 00:00:00\n", - "Buying D on 2017-03-31 00:00:00\n", - "Buying PPL on 2017-03-31 00:00:00\n", - "Buying CVS on 2017-03-31 00:00:00\n", - "Buying XEL on 2017-03-31 00:00:00\n", - "Buying KDP on 2017-03-31 00:00:00\n", - "Buying REG on 2017-03-31 00:00:00\n", - "Buying VTR on 2017-03-31 00:00:00\n", - "Buying LW on 2017-03-31 00:00:00\n", - "Buying DTE on 2017-03-31 00:00:00\n", - "Buying AEE on 2017-03-31 00:00:00\n", - "Buying FE on 2017-03-31 00:00:00\n", - "Buying BBY on 2017-03-31 00:00:00\n", - "Buying EXC on 2017-03-31 00:00:00\n", - "Buying PEG on 2017-03-31 00:00:00\n", - "Buying O on 2017-03-31 00:00:00\n", - "Buying AVB on 2017-03-31 00:00:00\n", - "Buying UDR on 2017-03-31 00:00:00\n", - "Buying KO on 2017-03-31 00:00:00\n", - "Buying WMT on 2017-03-31 00:00:00\n", - "Buying ETR on 2017-03-31 00:00:00\n", - "Buying PNW on 2017-03-31 00:00:00\n", - "Buying VZ on 2017-03-31 00:00:00\n", - "Buying DOC on 2017-03-31 00:00:00\n", - "Buying EIX on 2017-03-31 00:00:00\n", - "Buying KIM on 2017-03-31 00:00:00\n", - "Buying MO on 2017-03-31 00:00:00\n", - "Buying AWK on 2017-03-31 00:00:00\n", - "Buying SRE on 2017-03-31 00:00:00\n", - "Buying NI on 2017-03-31 00:00:00\n", - "Buying DPZ on 2017-03-31 00:00:00\n", - "Buying CPT on 2017-03-31 00:00:00\n", - "Selling CAT on 2017-03-31 00:00:00\n", - "Selling ON on 2017-03-31 00:00:00\n", - "Selling WDC on 2017-03-31 00:00:00\n", - "Selling GS on 2017-03-31 00:00:00\n", - "Selling WDAY on 2017-03-31 00:00:00\n", - "Selling JPM on 2017-03-31 00:00:00\n", - "Selling PFG on 2017-03-31 00:00:00\n", - "Selling DOV on 2017-03-31 00:00:00\n", - "Selling PRU on 2017-03-31 00:00:00\n", - "Selling MKTX on 2017-03-31 00:00:00\n", - "Selling NDSN on 2017-03-31 00:00:00\n", - "Selling ROK on 2017-03-31 00:00:00\n", - "Selling DXCM on 2017-03-31 00:00:00\n", - "Selling FSLR on 2017-03-31 00:00:00\n", - "Selling WFC on 2017-03-31 00:00:00\n", - "Selling ADSK on 2017-03-31 00:00:00\n", - "Selling AMD on 2017-03-31 00:00:00\n", - "Selling AMP on 2017-03-31 00:00:00\n", - "Selling PCAR on 2017-03-31 00:00:00\n", - "Selling PNR on 2017-03-31 00:00:00\n", - "Selling ODFL on 2017-03-31 00:00:00\n", - "Selling RJF on 2017-03-31 00:00:00\n", - "Selling TFC on 2017-03-31 00:00:00\n", - "Selling DVN on 2017-03-31 00:00:00\n", - "Selling IVZ on 2017-03-31 00:00:00\n", - "Selling PNC on 2017-03-31 00:00:00\n", - "Selling COP on 2017-03-31 00:00:00\n", - "Selling HWM on 2017-03-31 00:00:00\n", - "Selling NUE on 2017-03-31 00:00:00\n", - "Selling DAL on 2017-03-31 00:00:00\n", - "Selling PWR on 2017-03-31 00:00:00\n", - "Selling PAYC on 2017-03-31 00:00:00\n", - "Selling URI on 2017-03-31 00:00:00\n", - "Selling UAL on 2017-03-31 00:00:00\n", - "Selling FANG on 2017-03-31 00:00:00\n", - "Selling STLD on 2017-03-31 00:00:00\n", - "Selling MS on 2017-03-31 00:00:00\n", - "Selling FITB on 2017-03-31 00:00:00\n", - "Selling BAC on 2017-03-31 00:00:00\n", - "Selling STX on 2017-03-31 00:00:00\n", - "Selling SCHW on 2017-03-31 00:00:00\n", - "Selling KEY on 2017-03-31 00:00:00\n", - "Selling RF on 2017-03-31 00:00:00\n", - "Selling HBAN on 2017-03-31 00:00:00\n", - "Selling CZR on 2017-03-31 00:00:00\n", - "Selling CFG on 2017-03-31 00:00:00\n", - "Selling BLDR on 2017-03-31 00:00:00\n", - "Selling ENPH on 2017-03-31 00:00:00\n", - "Buying PANW on 2017-04-30 00:00:00\n", - "Buying AMCR on 2017-04-30 00:00:00\n", - "Buying NEE on 2017-04-30 00:00:00\n", - "Buying ED on 2017-04-30 00:00:00\n", - "Buying SO on 2017-04-30 00:00:00\n", - "Buying DUK on 2017-04-30 00:00:00\n", - "Buying REG on 2017-04-30 00:00:00\n", - "Buying EVRG on 2017-04-30 00:00:00\n", - "Buying PCG on 2017-04-30 00:00:00\n", - "Buying AEP on 2017-04-30 00:00:00\n", - "Buying ES on 2017-04-30 00:00:00\n", - "Buying CMG on 2017-04-30 00:00:00\n", - "Buying XEL on 2017-04-30 00:00:00\n", - "Buying CMS on 2017-04-30 00:00:00\n", - "Buying WEC on 2017-04-30 00:00:00\n", - "Buying ETR on 2017-04-30 00:00:00\n", - "Buying AEE on 2017-04-30 00:00:00\n", - "Buying LNT on 2017-04-30 00:00:00\n", - "Buying D on 2017-04-30 00:00:00\n", - "Buying VTR on 2017-04-30 00:00:00\n", - "Buying KO on 2017-04-30 00:00:00\n", - "Buying WELL on 2017-04-30 00:00:00\n", - "Buying MNST on 2017-04-30 00:00:00\n", - "Buying DTE on 2017-04-30 00:00:00\n", - "Buying EXC on 2017-04-30 00:00:00\n", - "Buying PPL on 2017-04-30 00:00:00\n", - "Buying PEG on 2017-04-30 00:00:00\n", - "Buying KIM on 2017-04-30 00:00:00\n", - "Buying LULU on 2017-04-30 00:00:00\n", - "Buying O on 2017-04-30 00:00:00\n", - "Buying FE on 2017-04-30 00:00:00\n", - "Buying AWK on 2017-04-30 00:00:00\n", - "Buying EIX on 2017-04-30 00:00:00\n", - "Buying PNW on 2017-04-30 00:00:00\n", - "Buying ESS on 2017-04-30 00:00:00\n", - "Buying SRE on 2017-04-30 00:00:00\n", - "Buying NEM on 2017-04-30 00:00:00\n", - "Buying AVB on 2017-04-30 00:00:00\n", - "Buying KDP on 2017-04-30 00:00:00\n", - "Buying NI on 2017-04-30 00:00:00\n", - "Buying NXPI on 2017-04-30 00:00:00\n", - "Buying NVR on 2017-04-30 00:00:00\n", - "Buying DOC on 2017-04-30 00:00:00\n", - "Buying MKC on 2017-04-30 00:00:00\n", - "Buying ARE on 2017-04-30 00:00:00\n", - "Buying CAG on 2017-04-30 00:00:00\n", - "Buying SBAC on 2017-04-30 00:00:00\n", - "Buying AES on 2017-04-30 00:00:00\n", - "Selling C on 2017-04-30 00:00:00\n", - "Selling MPC on 2017-04-30 00:00:00\n", - "Selling MTB on 2017-04-30 00:00:00\n", - "Selling PAYC on 2017-04-30 00:00:00\n", - "Selling PODD on 2017-04-30 00:00:00\n", - "Selling PNC on 2017-04-30 00:00:00\n", - "Selling PCAR on 2017-04-30 00:00:00\n", - "Selling LUV on 2017-04-30 00:00:00\n", - "Selling AMP on 2017-04-30 00:00:00\n", - "Selling IEX on 2017-04-30 00:00:00\n", - "Selling DAL on 2017-04-30 00:00:00\n", - "Selling CMI on 2017-04-30 00:00:00\n", - "Selling GNRC on 2017-04-30 00:00:00\n", - "Selling STX on 2017-04-30 00:00:00\n", - "Selling ODFL on 2017-04-30 00:00:00\n", - "Selling TFC on 2017-04-30 00:00:00\n", - "Selling IVZ on 2017-04-30 00:00:00\n", - "Selling JPM on 2017-04-30 00:00:00\n", - "Selling GS on 2017-04-30 00:00:00\n", - "Selling DVN on 2017-04-30 00:00:00\n", - "Selling RJF on 2017-04-30 00:00:00\n", - "Selling LOW on 2017-04-30 00:00:00\n", - "Selling FCX on 2017-04-30 00:00:00\n", - "Selling FANG on 2017-04-30 00:00:00\n", - "Selling COF on 2017-04-30 00:00:00\n", - "Selling WFC on 2017-04-30 00:00:00\n", - "Selling UAL on 2017-04-30 00:00:00\n", - "Selling AMD on 2017-04-30 00:00:00\n", - "Selling TDY on 2017-04-30 00:00:00\n", - "Selling CAT on 2017-04-30 00:00:00\n", - "Selling ON on 2017-04-30 00:00:00\n", - "Selling PWR on 2017-04-30 00:00:00\n", - "Selling CZR on 2017-04-30 00:00:00\n", - "Selling HWM on 2017-04-30 00:00:00\n", - "Selling URI on 2017-04-30 00:00:00\n", - "Selling MS on 2017-04-30 00:00:00\n", - "Selling SYF on 2017-04-30 00:00:00\n", - "Selling FITB on 2017-04-30 00:00:00\n", - "Selling NUE on 2017-04-30 00:00:00\n", - "Selling BAC on 2017-04-30 00:00:00\n", - "Selling ENPH on 2017-04-30 00:00:00\n", - "Selling HBAN on 2017-04-30 00:00:00\n", - "Selling KEY on 2017-04-30 00:00:00\n", - "Selling RF on 2017-04-30 00:00:00\n", - "Selling SCHW on 2017-04-30 00:00:00\n", - "Selling CFG on 2017-04-30 00:00:00\n", - "Selling BLDR on 2017-04-30 00:00:00\n", - "Selling STLD on 2017-04-30 00:00:00\n", - "Buying AMCR on 2017-05-31 00:00:00\n", - "Buying CL on 2017-05-31 00:00:00\n", - "Buying EXR on 2017-05-31 00:00:00\n", - "Buying NEM on 2017-05-31 00:00:00\n", - "Buying EVRG on 2017-05-31 00:00:00\n", - "Buying VTR on 2017-05-31 00:00:00\n", - "Buying NEE on 2017-05-31 00:00:00\n", - "Buying PSA on 2017-05-31 00:00:00\n", - "Buying BF-B on 2017-05-31 00:00:00\n", - "Buying ES on 2017-05-31 00:00:00\n", - "Buying SO on 2017-05-31 00:00:00\n", - "Buying SBAC on 2017-05-31 00:00:00\n", - "Buying O on 2017-05-31 00:00:00\n", - "Buying AMT on 2017-05-31 00:00:00\n", - "Buying REG on 2017-05-31 00:00:00\n", - "Buying DUK on 2017-05-31 00:00:00\n", - "Buying PEG on 2017-05-31 00:00:00\n", - "Buying WELL on 2017-05-31 00:00:00\n", - "Buying ARE on 2017-05-31 00:00:00\n", - "Buying PPL on 2017-05-31 00:00:00\n", - "Buying MKC on 2017-05-31 00:00:00\n", - "Buying CCI on 2017-05-31 00:00:00\n", - "Buying WEC on 2017-05-31 00:00:00\n", - "Buying ED on 2017-05-31 00:00:00\n", - "Buying AEP on 2017-05-31 00:00:00\n", - "Buying LULU on 2017-05-31 00:00:00\n", - "Buying AEE on 2017-05-31 00:00:00\n", - "Buying XEL on 2017-05-31 00:00:00\n", - "Buying KO on 2017-05-31 00:00:00\n", - "Buying DOC on 2017-05-31 00:00:00\n", - "Buying BDX on 2017-05-31 00:00:00\n", - "Buying LNT on 2017-05-31 00:00:00\n", - "Buying CMS on 2017-05-31 00:00:00\n", - "Buying ETR on 2017-05-31 00:00:00\n", - "Buying PNW on 2017-05-31 00:00:00\n", - "Buying NXPI on 2017-05-31 00:00:00\n", - "Buying EXC on 2017-05-31 00:00:00\n", - "Buying KHC on 2017-05-31 00:00:00\n", - "Buying PCG on 2017-05-31 00:00:00\n", - "Buying DTE on 2017-05-31 00:00:00\n", - "Buying KIM on 2017-05-31 00:00:00\n", - "Buying INCY on 2017-05-31 00:00:00\n", - "Buying CAG on 2017-05-31 00:00:00\n", - "Buying CHD on 2017-05-31 00:00:00\n", - "Buying INVH on 2017-05-31 00:00:00\n", - "Buying MAA on 2017-05-31 00:00:00\n", - "Buying TJX on 2017-05-31 00:00:00\n", - "Buying KMB on 2017-05-31 00:00:00\n", - "Selling SWKS on 2017-05-31 00:00:00\n", - "Selling TTWO on 2017-05-31 00:00:00\n", - "Selling DAL on 2017-05-31 00:00:00\n", - "Selling KKR on 2017-05-31 00:00:00\n", - "Selling PTC on 2017-05-31 00:00:00\n", - "Selling CE on 2017-05-31 00:00:00\n", - "Selling GNRC on 2017-05-31 00:00:00\n", - "Selling KEYS on 2017-05-31 00:00:00\n", - "Selling MU on 2017-05-31 00:00:00\n", - "Selling TER on 2017-05-31 00:00:00\n", - "Selling COF on 2017-05-31 00:00:00\n", - "Selling CF on 2017-05-31 00:00:00\n", - "Selling NFLX on 2017-05-31 00:00:00\n", - "Selling PNC on 2017-05-31 00:00:00\n", - "Selling STX on 2017-05-31 00:00:00\n", - "Selling TDG on 2017-05-31 00:00:00\n", - "Selling SYF on 2017-05-31 00:00:00\n", - "Selling KMX on 2017-05-31 00:00:00\n", - "Selling MPWR on 2017-05-31 00:00:00\n", - "Selling FSLR on 2017-05-31 00:00:00\n", - "Selling WDC on 2017-05-31 00:00:00\n", - "Selling AMP on 2017-05-31 00:00:00\n", - "Selling CAT on 2017-05-31 00:00:00\n", - "Selling BWA on 2017-05-31 00:00:00\n", - "Selling ZBRA on 2017-05-31 00:00:00\n", - "Selling IVZ on 2017-05-31 00:00:00\n", - "Selling TDY on 2017-05-31 00:00:00\n", - "Selling GS on 2017-05-31 00:00:00\n", - "Selling BLDR on 2017-05-31 00:00:00\n", - "Selling RF on 2017-05-31 00:00:00\n", - "Selling NUE on 2017-05-31 00:00:00\n", - "Selling UAL on 2017-05-31 00:00:00\n", - "Selling FITB on 2017-05-31 00:00:00\n", - "Selling RJF on 2017-05-31 00:00:00\n", - "Selling ON on 2017-05-31 00:00:00\n", - "Selling MS on 2017-05-31 00:00:00\n", - "Selling KEY on 2017-05-31 00:00:00\n", - "Selling SCHW on 2017-05-31 00:00:00\n", - "Selling CFG on 2017-05-31 00:00:00\n", - "Selling URI on 2017-05-31 00:00:00\n", - "Selling NVDA on 2017-05-31 00:00:00\n", - "Selling FCX on 2017-05-31 00:00:00\n", - "Selling ADSK on 2017-05-31 00:00:00\n", - "Selling BAC on 2017-05-31 00:00:00\n", - "Selling HBAN on 2017-05-31 00:00:00\n", - "Selling STLD on 2017-05-31 00:00:00\n", - "Selling AMD on 2017-05-31 00:00:00\n", - "Selling ENPH on 2017-05-31 00:00:00\n", - "Buying EXR on 2017-06-30 00:00:00\n", - "Buying CL on 2017-06-30 00:00:00\n", - "Buying SBAC on 2017-06-30 00:00:00\n", - "Buying EVRG on 2017-06-30 00:00:00\n", - "Buying REG on 2017-06-30 00:00:00\n", - "Buying NEM on 2017-06-30 00:00:00\n", - "Buying AMCR on 2017-06-30 00:00:00\n", - "Buying KIM on 2017-06-30 00:00:00\n", - "Buying CCI on 2017-06-30 00:00:00\n", - "Buying AMT on 2017-06-30 00:00:00\n", - "Buying PSA on 2017-06-30 00:00:00\n", - "Buying VTR on 2017-06-30 00:00:00\n", - "Buying NEE on 2017-06-30 00:00:00\n", - "Buying ES on 2017-06-30 00:00:00\n", - "Buying TGT on 2017-06-30 00:00:00\n", - "Buying BF-B on 2017-06-30 00:00:00\n", - "Buying PEG on 2017-06-30 00:00:00\n", - "Buying PGR on 2017-06-30 00:00:00\n", - "Buying EXC on 2017-06-30 00:00:00\n", - "Buying DOC on 2017-06-30 00:00:00\n", - "Buying DUK on 2017-06-30 00:00:00\n", - "Buying SPG on 2017-06-30 00:00:00\n", - "Buying AEP on 2017-06-30 00:00:00\n", - "Buying LLY on 2017-06-30 00:00:00\n", - "Buying NXPI on 2017-06-30 00:00:00\n", - "Buying CMS on 2017-06-30 00:00:00\n", - "Buying ED on 2017-06-30 00:00:00\n", - "Buying BDX on 2017-06-30 00:00:00\n", - "Buying XEL on 2017-06-30 00:00:00\n", - "Buying WEC on 2017-06-30 00:00:00\n", - "Buying DTE on 2017-06-30 00:00:00\n", - "Buying WELL on 2017-06-30 00:00:00\n", - "Buying O on 2017-06-30 00:00:00\n", - "Buying PPL on 2017-06-30 00:00:00\n", - "Buying SO on 2017-06-30 00:00:00\n", - "Buying INCY on 2017-06-30 00:00:00\n", - "Buying FE on 2017-06-30 00:00:00\n", - "Buying ARE on 2017-06-30 00:00:00\n", - "Buying EIX on 2017-06-30 00:00:00\n", - "Buying AEE on 2017-06-30 00:00:00\n", - "Buying PNW on 2017-06-30 00:00:00\n", - "Buying ETR on 2017-06-30 00:00:00\n", - "Buying LNT on 2017-06-30 00:00:00\n", - "Buying PCG on 2017-06-30 00:00:00\n", - "Buying D on 2017-06-30 00:00:00\n", - "Buying KO on 2017-06-30 00:00:00\n", - "Buying STZ on 2017-06-30 00:00:00\n", - "Buying TRV on 2017-06-30 00:00:00\n", - "Selling NUE on 2017-06-30 00:00:00\n", - "Selling AMP on 2017-06-30 00:00:00\n", - "Selling BWA on 2017-06-30 00:00:00\n", - "Selling JBL on 2017-06-30 00:00:00\n", - "Selling STLD on 2017-06-30 00:00:00\n", - "Selling TDG on 2017-06-30 00:00:00\n", - "Selling MS on 2017-06-30 00:00:00\n", - "Selling URI on 2017-06-30 00:00:00\n", - "Selling KKR on 2017-06-30 00:00:00\n", - "Selling GS on 2017-06-30 00:00:00\n", - "Selling BAC on 2017-06-30 00:00:00\n", - "Selling CE on 2017-06-30 00:00:00\n", - "Selling MCHP on 2017-06-30 00:00:00\n", - "Selling RJF on 2017-06-30 00:00:00\n", - "Selling CFG on 2017-06-30 00:00:00\n", - "Selling GDDY on 2017-06-30 00:00:00\n", - "Selling CF on 2017-06-30 00:00:00\n", - "Selling IVZ on 2017-06-30 00:00:00\n", - "Selling WDAY on 2017-06-30 00:00:00\n", - "Selling AVGO on 2017-06-30 00:00:00\n", - "Selling NCLH on 2017-06-30 00:00:00\n", - "Selling ANET on 2017-06-30 00:00:00\n", - "Selling EA on 2017-06-30 00:00:00\n", - "Selling ZBRA on 2017-06-30 00:00:00\n", - "Selling UAL on 2017-06-30 00:00:00\n", - "Selling KLAC on 2017-06-30 00:00:00\n", - "Selling LRCX on 2017-06-30 00:00:00\n", - "Selling CPAY on 2017-06-30 00:00:00\n", - "Selling TDY on 2017-06-30 00:00:00\n", - "Selling MLM on 2017-06-30 00:00:00\n", - "Selling WDC on 2017-06-30 00:00:00\n", - "Selling TER on 2017-06-30 00:00:00\n", - "Selling NFLX on 2017-06-30 00:00:00\n", - "Selling PTC on 2017-06-30 00:00:00\n", - "Selling STX on 2017-06-30 00:00:00\n", - "Selling PANW on 2017-06-30 00:00:00\n", - "Selling SWKS on 2017-06-30 00:00:00\n", - "Selling MU on 2017-06-30 00:00:00\n", - "Selling TTWO on 2017-06-30 00:00:00\n", - "Selling MPWR on 2017-06-30 00:00:00\n", - "Selling BLDR on 2017-06-30 00:00:00\n", - "Selling HWM on 2017-06-30 00:00:00\n", - "Selling AMAT on 2017-06-30 00:00:00\n", - "Selling ADSK on 2017-06-30 00:00:00\n", - "Selling AMD on 2017-06-30 00:00:00\n", - "Selling ON on 2017-06-30 00:00:00\n", - "Selling NVDA on 2017-06-30 00:00:00\n", - "Selling ENPH on 2017-06-30 00:00:00\n", - "Buying CL on 2017-07-31 00:00:00\n", - "Buying SBAC on 2017-07-31 00:00:00\n", - "Buying BF-B on 2017-07-31 00:00:00\n", - "Buying EXR on 2017-07-31 00:00:00\n", - "Buying AMCR on 2017-07-31 00:00:00\n", - "Buying ES on 2017-07-31 00:00:00\n", - "Buying EVRG on 2017-07-31 00:00:00\n", - "Buying PGR on 2017-07-31 00:00:00\n", - "Buying EXC on 2017-07-31 00:00:00\n", - "Buying AMT on 2017-07-31 00:00:00\n", - "Buying PSA on 2017-07-31 00:00:00\n", - "Buying TGT on 2017-07-31 00:00:00\n", - "Buying KIM on 2017-07-31 00:00:00\n", - "Buying NXPI on 2017-07-31 00:00:00\n", - "Buying AEP on 2017-07-31 00:00:00\n", - "Buying SO on 2017-07-31 00:00:00\n", - "Buying STZ on 2017-07-31 00:00:00\n", - "Buying DUK on 2017-07-31 00:00:00\n", - "Buying PEG on 2017-07-31 00:00:00\n", - "Buying NEE on 2017-07-31 00:00:00\n", - "Buying TRV on 2017-07-31 00:00:00\n", - "Buying PPL on 2017-07-31 00:00:00\n", - "Buying D on 2017-07-31 00:00:00\n", - "Buying FE on 2017-07-31 00:00:00\n", - "Buying DRI on 2017-07-31 00:00:00\n", - "Buying CMS on 2017-07-31 00:00:00\n", - "Buying NEM on 2017-07-31 00:00:00\n", - "Buying EQT on 2017-07-31 00:00:00\n", - "Buying XEL on 2017-07-31 00:00:00\n", - "Buying DTE on 2017-07-31 00:00:00\n", - "Buying DVA on 2017-07-31 00:00:00\n", - "Buying EIX on 2017-07-31 00:00:00\n", - "Buying SRE on 2017-07-31 00:00:00\n", - "Buying LNT on 2017-07-31 00:00:00\n", - "Buying VTR on 2017-07-31 00:00:00\n", - "Buying ALL on 2017-07-31 00:00:00\n", - "Buying CCI on 2017-07-31 00:00:00\n", - "Buying IBM on 2017-07-31 00:00:00\n", - "Buying PG on 2017-07-31 00:00:00\n", - "Buying CBOE on 2017-07-31 00:00:00\n", - "Buying XOM on 2017-07-31 00:00:00\n", - "Buying PCG on 2017-07-31 00:00:00\n", - "Buying CHD on 2017-07-31 00:00:00\n", - "Buying PNW on 2017-07-31 00:00:00\n", - "Buying ED on 2017-07-31 00:00:00\n", - "Buying WEC on 2017-07-31 00:00:00\n", - "Buying REG on 2017-07-31 00:00:00\n", - "Buying BKR on 2017-07-31 00:00:00\n", - "Selling AMP on 2017-07-31 00:00:00\n", - "Selling BBY on 2017-07-31 00:00:00\n", - "Selling MTCH on 2017-07-31 00:00:00\n", - "Selling JBL on 2017-07-31 00:00:00\n", - "Selling KKR on 2017-07-31 00:00:00\n", - "Selling FTNT on 2017-07-31 00:00:00\n", - "Selling RCL on 2017-07-31 00:00:00\n", - "Selling GDDY on 2017-07-31 00:00:00\n", - "Selling BWA on 2017-07-31 00:00:00\n", - "Selling EBAY on 2017-07-31 00:00:00\n", - "Selling MLM on 2017-07-31 00:00:00\n", - "Selling TDG on 2017-07-31 00:00:00\n", - "Selling NTAP on 2017-07-31 00:00:00\n", - "Selling TDY on 2017-07-31 00:00:00\n", - "Selling PAYC on 2017-07-31 00:00:00\n", - "Selling AVGO on 2017-07-31 00:00:00\n", - "Selling IVZ on 2017-07-31 00:00:00\n", - "Selling GEN on 2017-07-31 00:00:00\n", - "Selling NFLX on 2017-07-31 00:00:00\n", - "Selling LRCX on 2017-07-31 00:00:00\n", - "Selling WDC on 2017-07-31 00:00:00\n", - "Selling FSLR on 2017-07-31 00:00:00\n", - "Selling MCHP on 2017-07-31 00:00:00\n", - "Selling CF on 2017-07-31 00:00:00\n", - "Selling KLAC on 2017-07-31 00:00:00\n", - "Selling NCLH on 2017-07-31 00:00:00\n", - "Selling TER on 2017-07-31 00:00:00\n", - "Selling SWKS on 2017-07-31 00:00:00\n", - "Selling URI on 2017-07-31 00:00:00\n", - "Selling HWM on 2017-07-31 00:00:00\n", - "Selling ANET on 2017-07-31 00:00:00\n", - "Selling VRTX on 2017-07-31 00:00:00\n", - "Selling EA on 2017-07-31 00:00:00\n", - "Selling PTC on 2017-07-31 00:00:00\n", - "Selling MPWR on 2017-07-31 00:00:00\n", - "Selling STX on 2017-07-31 00:00:00\n", - "Selling BLDR on 2017-07-31 00:00:00\n", - "Selling WDAY on 2017-07-31 00:00:00\n", - "Selling MU on 2017-07-31 00:00:00\n", - "Selling AMD on 2017-07-31 00:00:00\n", - "Selling TTWO on 2017-07-31 00:00:00\n", - "Selling AMAT on 2017-07-31 00:00:00\n", - "Selling PANW on 2017-07-31 00:00:00\n", - "Selling ON on 2017-07-31 00:00:00\n", - "Selling ADSK on 2017-07-31 00:00:00\n", - "Selling NVDA on 2017-07-31 00:00:00\n", - "Selling ENPH on 2017-07-31 00:00:00\n", - "Selling NRG on 2017-07-31 00:00:00\n", - "Buying AMCR on 2017-08-31 00:00:00\n", - "Buying AEP on 2017-08-31 00:00:00\n", - "Buying FE on 2017-08-31 00:00:00\n", - "Buying ES on 2017-08-31 00:00:00\n", - "Buying D on 2017-08-31 00:00:00\n", - "Buying EQT on 2017-08-31 00:00:00\n", - "Buying XEL on 2017-08-31 00:00:00\n", - "Buying DRI on 2017-08-31 00:00:00\n", - "Buying MOH on 2017-08-31 00:00:00\n", - "Buying CMS on 2017-08-31 00:00:00\n", - "Buying DTE on 2017-08-31 00:00:00\n", - "Buying EVRG on 2017-08-31 00:00:00\n", - "Buying WEC on 2017-08-31 00:00:00\n", - "Buying STZ on 2017-08-31 00:00:00\n", - "Buying CPB on 2017-08-31 00:00:00\n", - "Buying ED on 2017-08-31 00:00:00\n", - "Buying DUK on 2017-08-31 00:00:00\n", - "Buying PNW on 2017-08-31 00:00:00\n", - "Buying PPL on 2017-08-31 00:00:00\n", - "Buying IBM on 2017-08-31 00:00:00\n", - "Buying EXC on 2017-08-31 00:00:00\n", - "Buying KIM on 2017-08-31 00:00:00\n", - "Buying AEE on 2017-08-31 00:00:00\n", - "Buying PCG on 2017-08-31 00:00:00\n", - "Buying HSY on 2017-08-31 00:00:00\n", - "Buying NEE on 2017-08-31 00:00:00\n", - "Buying EIX on 2017-08-31 00:00:00\n", - "Buying LNT on 2017-08-31 00:00:00\n", - "Buying PEG on 2017-08-31 00:00:00\n", - "Buying SRE on 2017-08-31 00:00:00\n", - "Buying CNP on 2017-08-31 00:00:00\n", - "Buying SO on 2017-08-31 00:00:00\n", - "Buying ETR on 2017-08-31 00:00:00\n", - "Buying TECH on 2017-08-31 00:00:00\n", - "Buying TRV on 2017-08-31 00:00:00\n", - "Buying CVX on 2017-08-31 00:00:00\n", - "Buying NXPI on 2017-08-31 00:00:00\n", - "Buying PG on 2017-08-31 00:00:00\n", - "Buying KO on 2017-08-31 00:00:00\n", - "Buying ORLY on 2017-08-31 00:00:00\n", - "Buying UDR on 2017-08-31 00:00:00\n", - "Buying AWK on 2017-08-31 00:00:00\n", - "Buying LYV on 2017-08-31 00:00:00\n", - "Buying VTRS on 2017-08-31 00:00:00\n", - "Buying NDSN on 2017-08-31 00:00:00\n", - "Buying CCI on 2017-08-31 00:00:00\n", - "Buying JNJ on 2017-08-31 00:00:00\n", - "Buying SBAC on 2017-08-31 00:00:00\n", - "Selling JNPR on 2017-08-31 00:00:00\n", - "Selling ALB on 2017-08-31 00:00:00\n", - "Selling FSLR on 2017-08-31 00:00:00\n", - "Selling KKR on 2017-08-31 00:00:00\n", - "Selling CSCO on 2017-08-31 00:00:00\n", - "Selling TXN on 2017-08-31 00:00:00\n", - "Selling HPE on 2017-08-31 00:00:00\n", - "Selling PODD on 2017-08-31 00:00:00\n", - "Selling DXCM on 2017-08-31 00:00:00\n", - "Selling MAR on 2017-08-31 00:00:00\n", - "Selling DELL on 2017-08-31 00:00:00\n", - "Selling FCX on 2017-08-31 00:00:00\n", - "Selling NOW on 2017-08-31 00:00:00\n", - "Selling ADI on 2017-08-31 00:00:00\n", - "Selling PAYC on 2017-08-31 00:00:00\n", - "Selling CF on 2017-08-31 00:00:00\n", - "Selling PTC on 2017-08-31 00:00:00\n", - "Selling PYPL on 2017-08-31 00:00:00\n", - "Selling EXPE on 2017-08-31 00:00:00\n", - "Selling BIIB on 2017-08-31 00:00:00\n", - "Selling ADSK on 2017-08-31 00:00:00\n", - "Selling WDC on 2017-08-31 00:00:00\n", - "Selling MPWR on 2017-08-31 00:00:00\n", - "Selling GDDY on 2017-08-31 00:00:00\n", - "Selling NFLX on 2017-08-31 00:00:00\n", - "Selling ALGN on 2017-08-31 00:00:00\n", - "Selling JBL on 2017-08-31 00:00:00\n", - "Selling BLDR on 2017-08-31 00:00:00\n", - "Selling TER on 2017-08-31 00:00:00\n", - "Selling MTCH on 2017-08-31 00:00:00\n", - "Selling AVGO on 2017-08-31 00:00:00\n", - "Selling MCHP on 2017-08-31 00:00:00\n", - "Selling NTAP on 2017-08-31 00:00:00\n", - "Selling SWKS on 2017-08-31 00:00:00\n", - "Selling ANET on 2017-08-31 00:00:00\n", - "Selling AMAT on 2017-08-31 00:00:00\n", - "Selling MU on 2017-08-31 00:00:00\n", - "Selling AMD on 2017-08-31 00:00:00\n", - "Selling STX on 2017-08-31 00:00:00\n", - "Selling INCY on 2017-08-31 00:00:00\n", - "Selling KLAC on 2017-08-31 00:00:00\n", - "Selling VRTX on 2017-08-31 00:00:00\n", - "Selling WDAY on 2017-08-31 00:00:00\n", - "Selling HWM on 2017-08-31 00:00:00\n", - "Selling LRCX on 2017-08-31 00:00:00\n", - "Selling NRG on 2017-08-31 00:00:00\n", - "Selling NVDA on 2017-08-31 00:00:00\n", - "Selling ON on 2017-08-31 00:00:00\n", - "Buying NEM on 2017-09-30 00:00:00\n", - "Buying CPB on 2017-09-30 00:00:00\n", - "Buying AMCR on 2017-09-30 00:00:00\n", - "Buying AEP on 2017-09-30 00:00:00\n", - "Buying MOH on 2017-09-30 00:00:00\n", - "Buying ES on 2017-09-30 00:00:00\n", - "Buying DTE on 2017-09-30 00:00:00\n", - "Buying WEC on 2017-09-30 00:00:00\n", - "Buying XEL on 2017-09-30 00:00:00\n", - "Buying PPL on 2017-09-30 00:00:00\n", - "Buying FE on 2017-09-30 00:00:00\n", - "Buying ED on 2017-09-30 00:00:00\n", - "Buying EXR on 2017-09-30 00:00:00\n", - "Buying ETR on 2017-09-30 00:00:00\n", - "Buying D on 2017-09-30 00:00:00\n", - "Buying DUK on 2017-09-30 00:00:00\n", - "Buying PNW on 2017-09-30 00:00:00\n", - "Buying SO on 2017-09-30 00:00:00\n", - "Buying CMS on 2017-09-30 00:00:00\n", - "Buying PSA on 2017-09-30 00:00:00\n", - "Buying LNT on 2017-09-30 00:00:00\n", - "Buying PEG on 2017-09-30 00:00:00\n", - "Buying AEE on 2017-09-30 00:00:00\n", - "Buying UDR on 2017-09-30 00:00:00\n", - "Buying CNP on 2017-09-30 00:00:00\n", - "Buying EIX on 2017-09-30 00:00:00\n", - "Buying PCG on 2017-09-30 00:00:00\n", - "Buying K on 2017-09-30 00:00:00\n", - "Buying KO on 2017-09-30 00:00:00\n", - "Buying CPT on 2017-09-30 00:00:00\n", - "Buying GIS on 2017-09-30 00:00:00\n", - "Buying SRE on 2017-09-30 00:00:00\n", - "Buying PARA on 2017-09-30 00:00:00\n", - "Buying EXC on 2017-09-30 00:00:00\n", - "Buying NDSN on 2017-09-30 00:00:00\n", - "Buying LW on 2017-09-30 00:00:00\n", - "Buying EVRG on 2017-09-30 00:00:00\n", - "Buying NEE on 2017-09-30 00:00:00\n", - "Buying HSY on 2017-09-30 00:00:00\n", - "Buying CHRW on 2017-09-30 00:00:00\n", - "Buying PG on 2017-09-30 00:00:00\n", - "Buying TECH on 2017-09-30 00:00:00\n", - "Buying CL on 2017-09-30 00:00:00\n", - "Buying LYV on 2017-09-30 00:00:00\n", - "Buying VTR on 2017-09-30 00:00:00\n", - "Buying CLX on 2017-09-30 00:00:00\n", - "Buying SJM on 2017-09-30 00:00:00\n", - "Buying NXPI on 2017-09-30 00:00:00\n", - "Selling RJF on 2017-09-30 00:00:00\n", - "Selling BEN on 2017-09-30 00:00:00\n", - "Selling FSLR on 2017-09-30 00:00:00\n", - "Selling BIIB on 2017-09-30 00:00:00\n", - "Selling IR on 2017-09-30 00:00:00\n", - "Selling TEL on 2017-09-30 00:00:00\n", - "Selling UAL on 2017-09-30 00:00:00\n", - "Selling BAC on 2017-09-30 00:00:00\n", - "Selling ADSK on 2017-09-30 00:00:00\n", - "Selling FMC on 2017-09-30 00:00:00\n", - "Selling MPWR on 2017-09-30 00:00:00\n", - "Selling FCX on 2017-09-30 00:00:00\n", - "Selling GDDY on 2017-09-30 00:00:00\n", - "Selling JNPR on 2017-09-30 00:00:00\n", - "Selling CSCO on 2017-09-30 00:00:00\n", - "Selling BLDR on 2017-09-30 00:00:00\n", - "Selling AMP on 2017-09-30 00:00:00\n", - "Selling CFG on 2017-09-30 00:00:00\n", - "Selling IVZ on 2017-09-30 00:00:00\n", - "Selling ADI on 2017-09-30 00:00:00\n", - "Selling EXPE on 2017-09-30 00:00:00\n", - "Selling KEYS on 2017-09-30 00:00:00\n", - "Selling FTNT on 2017-09-30 00:00:00\n", - "Selling ANET on 2017-09-30 00:00:00\n", - "Selling HWM on 2017-09-30 00:00:00\n", - "Selling JBL on 2017-09-30 00:00:00\n", - "Selling WDC on 2017-09-30 00:00:00\n", - "Selling MCHP on 2017-09-30 00:00:00\n", - "Selling KKR on 2017-09-30 00:00:00\n", - "Selling MTCH on 2017-09-30 00:00:00\n", - "Selling INCY on 2017-09-30 00:00:00\n", - "Selling DAL on 2017-09-30 00:00:00\n", - "Selling NFLX on 2017-09-30 00:00:00\n", - "Selling TER on 2017-09-30 00:00:00\n", - "Selling SWKS on 2017-09-30 00:00:00\n", - "Selling AVGO on 2017-09-30 00:00:00\n", - "Selling ALB on 2017-09-30 00:00:00\n", - "Selling NTAP on 2017-09-30 00:00:00\n", - "Selling WDAY on 2017-09-30 00:00:00\n", - "Selling KLAC on 2017-09-30 00:00:00\n", - "Selling VRTX on 2017-09-30 00:00:00\n", - "Selling AMAT on 2017-09-30 00:00:00\n", - "Selling ON on 2017-09-30 00:00:00\n", - "Selling MU on 2017-09-30 00:00:00\n", - "Selling NRG on 2017-09-30 00:00:00\n", - "Selling LRCX on 2017-09-30 00:00:00\n", - "Selling AMD on 2017-09-30 00:00:00\n", - "Selling NVDA on 2017-09-30 00:00:00\n", - "Buying NEM on 2017-10-31 00:00:00\n", - "Buying MOH on 2017-10-31 00:00:00\n", - "Buying EXR on 2017-10-31 00:00:00\n", - "Buying AMCR on 2017-10-31 00:00:00\n", - "Buying CPB on 2017-10-31 00:00:00\n", - "Buying PSA on 2017-10-31 00:00:00\n", - "Buying AEP on 2017-10-31 00:00:00\n", - "Buying XEL on 2017-10-31 00:00:00\n", - "Buying PPL on 2017-10-31 00:00:00\n", - "Buying ES on 2017-10-31 00:00:00\n", - "Buying FE on 2017-10-31 00:00:00\n", - "Buying D on 2017-10-31 00:00:00\n", - "Buying WEC on 2017-10-31 00:00:00\n", - "Buying UDR on 2017-10-31 00:00:00\n", - "Buying DTE on 2017-10-31 00:00:00\n", - "Buying ED on 2017-10-31 00:00:00\n", - "Buying SPG on 2017-10-31 00:00:00\n", - "Buying SRE on 2017-10-31 00:00:00\n", - "Buying DUK on 2017-10-31 00:00:00\n", - "Buying CPT on 2017-10-31 00:00:00\n", - "Buying SO on 2017-10-31 00:00:00\n", - "Buying PEG on 2017-10-31 00:00:00\n", - "Buying CMS on 2017-10-31 00:00:00\n", - "Buying PNW on 2017-10-31 00:00:00\n", - "Buying ETR on 2017-10-31 00:00:00\n", - "Buying LNT on 2017-10-31 00:00:00\n", - "Buying AEE on 2017-10-31 00:00:00\n", - "Buying PG on 2017-10-31 00:00:00\n", - "Buying KIM on 2017-10-31 00:00:00\n", - "Buying CVX on 2017-10-31 00:00:00\n", - "Buying NI on 2017-10-31 00:00:00\n", - "Buying KO on 2017-10-31 00:00:00\n", - "Buying CCI on 2017-10-31 00:00:00\n", - "Buying EQR on 2017-10-31 00:00:00\n", - "Buying AES on 2017-10-31 00:00:00\n", - "Buying PARA on 2017-10-31 00:00:00\n", - "Buying CLX on 2017-10-31 00:00:00\n", - "Buying ATO on 2017-10-31 00:00:00\n", - "Buying EIX on 2017-10-31 00:00:00\n", - "Buying AVB on 2017-10-31 00:00:00\n", - "Buying O on 2017-10-31 00:00:00\n", - "Buying CNP on 2017-10-31 00:00:00\n", - "Buying MAA on 2017-10-31 00:00:00\n", - "Buying NDSN on 2017-10-31 00:00:00\n", - "Buying AWK on 2017-10-31 00:00:00\n", - "Buying HSY on 2017-10-31 00:00:00\n", - "Buying EXC on 2017-10-31 00:00:00\n", - "Buying ESS on 2017-10-31 00:00:00\n", - "Selling ADI on 2017-10-31 00:00:00\n", - "Selling PAYC on 2017-10-31 00:00:00\n", - "Selling META on 2017-10-31 00:00:00\n", - "Selling APO on 2017-10-31 00:00:00\n", - "Selling URI on 2017-10-31 00:00:00\n", - "Selling RJF on 2017-10-31 00:00:00\n", - "Selling MCHP on 2017-10-31 00:00:00\n", - "Selling NCLH on 2017-10-31 00:00:00\n", - "Selling FCX on 2017-10-31 00:00:00\n", - "Selling MPWR on 2017-10-31 00:00:00\n", - "Selling CSCO on 2017-10-31 00:00:00\n", - "Selling TSLA on 2017-10-31 00:00:00\n", - "Selling CMG on 2017-10-31 00:00:00\n", - "Selling KLAC on 2017-10-31 00:00:00\n", - "Selling HBAN on 2017-10-31 00:00:00\n", - "Selling GS on 2017-10-31 00:00:00\n", - "Selling MS on 2017-10-31 00:00:00\n", - "Selling INCY on 2017-10-31 00:00:00\n", - "Selling GDDY on 2017-10-31 00:00:00\n", - "Selling SCHW on 2017-10-31 00:00:00\n", - "Selling JBL on 2017-10-31 00:00:00\n", - "Selling AVGO on 2017-10-31 00:00:00\n", - "Selling UAL on 2017-10-31 00:00:00\n", - "Selling VRTX on 2017-10-31 00:00:00\n", - "Selling SWKS on 2017-10-31 00:00:00\n", - "Selling CFG on 2017-10-31 00:00:00\n", - "Selling TER on 2017-10-31 00:00:00\n", - "Selling NTAP on 2017-10-31 00:00:00\n", - "Selling KKR on 2017-10-31 00:00:00\n", - "Selling BAC on 2017-10-31 00:00:00\n", - "Selling SYF on 2017-10-31 00:00:00\n", - "Selling DAL on 2017-10-31 00:00:00\n", - "Selling ALB on 2017-10-31 00:00:00\n", - "Selling NFLX on 2017-10-31 00:00:00\n", - "Selling IR on 2017-10-31 00:00:00\n", - "Selling HWM on 2017-10-31 00:00:00\n", - "Selling JNPR on 2017-10-31 00:00:00\n", - "Selling WDAY on 2017-10-31 00:00:00\n", - "Selling AMZN on 2017-10-31 00:00:00\n", - "Selling FSLR on 2017-10-31 00:00:00\n", - "Selling MTCH on 2017-10-31 00:00:00\n", - "Selling AMAT on 2017-10-31 00:00:00\n", - "Selling ON on 2017-10-31 00:00:00\n", - "Selling LRCX on 2017-10-31 00:00:00\n", - "Selling ALGN on 2017-10-31 00:00:00\n", - "Selling MU on 2017-10-31 00:00:00\n", - "Selling NVDA on 2017-10-31 00:00:00\n", - "Selling AMD on 2017-10-31 00:00:00\n", - "Buying SPG on 2017-11-30 00:00:00\n", - "Buying AMCR on 2017-11-30 00:00:00\n", - "Buying EXR on 2017-11-30 00:00:00\n", - "Buying EXPE on 2017-11-30 00:00:00\n", - "Buying NEM on 2017-11-30 00:00:00\n", - "Buying PSA on 2017-11-30 00:00:00\n", - "Buying STX on 2017-11-30 00:00:00\n", - "Buying NKE on 2017-11-30 00:00:00\n", - "Buying PPL on 2017-11-30 00:00:00\n", - "Buying FRT on 2017-11-30 00:00:00\n", - "Buying KIM on 2017-11-30 00:00:00\n", - "Buying AON on 2017-11-30 00:00:00\n", - "Buying EFX on 2017-11-30 00:00:00\n", - "Buying SRE on 2017-11-30 00:00:00\n", - "Buying CINF on 2017-11-30 00:00:00\n", - "Buying AZO on 2017-11-30 00:00:00\n", - "Buying FE on 2017-11-30 00:00:00\n", - "Buying BSX on 2017-11-30 00:00:00\n", - "Buying AES on 2017-11-30 00:00:00\n", - "Buying PARA on 2017-11-30 00:00:00\n", - "Buying BRO on 2017-11-30 00:00:00\n", - "Buying WTW on 2017-11-30 00:00:00\n", - "Buying BXP on 2017-11-30 00:00:00\n", - "Buying O on 2017-11-30 00:00:00\n", - "Buying DUK on 2017-11-30 00:00:00\n", - "Buying D on 2017-11-30 00:00:00\n", - "Buying PEG on 2017-11-30 00:00:00\n", - "Buying ROST on 2017-11-30 00:00:00\n", - "Buying WBD on 2017-11-30 00:00:00\n", - "Buying ETR on 2017-11-30 00:00:00\n", - "Buying REGN on 2017-11-30 00:00:00\n", - "Buying AIG on 2017-11-30 00:00:00\n", - "Buying SO on 2017-11-30 00:00:00\n", - "Buying EXC on 2017-11-30 00:00:00\n", - "Buying BBY on 2017-11-30 00:00:00\n", - "Buying DOC on 2017-11-30 00:00:00\n", - "Buying XEL on 2017-11-30 00:00:00\n", - "Buying EIX on 2017-11-30 00:00:00\n", - "Buying REG on 2017-11-30 00:00:00\n", - "Buying LYB on 2017-11-30 00:00:00\n", - "Buying MMC on 2017-11-30 00:00:00\n", - "Buying AIZ on 2017-11-30 00:00:00\n", - "Buying AEE on 2017-11-30 00:00:00\n", - "Buying AEP on 2017-11-30 00:00:00\n", - "Buying ED on 2017-11-30 00:00:00\n", - "Buying TSCO on 2017-11-30 00:00:00\n", - "Buying CPT on 2017-11-30 00:00:00\n", - "Buying ERIE on 2017-11-30 00:00:00\n", - "Selling ZBRA on 2017-11-30 00:00:00\n", - "Selling TXT on 2017-11-30 00:00:00\n", - "Selling MSFT on 2017-11-30 00:00:00\n", - "Selling MS on 2017-11-30 00:00:00\n", - "Selling HCA on 2017-11-30 00:00:00\n", - "Selling MU on 2017-11-30 00:00:00\n", - "Selling SWKS on 2017-11-30 00:00:00\n", - "Selling ROK on 2017-11-30 00:00:00\n", - "Selling GEN on 2017-11-30 00:00:00\n", - "Selling MCHP on 2017-11-30 00:00:00\n", - "Selling GS on 2017-11-30 00:00:00\n", - "Selling META on 2017-11-30 00:00:00\n", - "Selling FMC on 2017-11-30 00:00:00\n", - "Selling URI on 2017-11-30 00:00:00\n", - "Selling HWM on 2017-11-30 00:00:00\n", - "Selling TRMB on 2017-11-30 00:00:00\n", - "Selling ON on 2017-11-30 00:00:00\n", - "Selling DAL on 2017-11-30 00:00:00\n", - "Selling HES on 2017-11-30 00:00:00\n", - "Selling CDW on 2017-11-30 00:00:00\n", - "Selling INTC on 2017-11-30 00:00:00\n", - "Selling SYK on 2017-11-30 00:00:00\n", - "Selling CRL on 2017-11-30 00:00:00\n", - "Selling TT on 2017-11-30 00:00:00\n", - "Selling EW on 2017-11-30 00:00:00\n", - "Selling J on 2017-11-30 00:00:00\n", - "Selling ANET on 2017-11-30 00:00:00\n", - "Selling IR on 2017-11-30 00:00:00\n", - "Selling KLAC on 2017-11-30 00:00:00\n", - "Selling PAYC on 2017-11-30 00:00:00\n", - "Selling TSLA on 2017-11-30 00:00:00\n", - "Selling SYF on 2017-11-30 00:00:00\n", - "Selling UAL on 2017-11-30 00:00:00\n", - "Selling NVDA on 2017-11-30 00:00:00\n", - "Selling EQT on 2017-11-30 00:00:00\n", - "Selling LRCX on 2017-11-30 00:00:00\n", - "Selling MTCH on 2017-11-30 00:00:00\n", - "Selling MPWR on 2017-11-30 00:00:00\n", - "Selling NTAP on 2017-11-30 00:00:00\n", - "Selling AMZN on 2017-11-30 00:00:00\n", - "Selling NFLX on 2017-11-30 00:00:00\n", - "Selling CZR on 2017-11-30 00:00:00\n", - "Selling AMD on 2017-11-30 00:00:00\n", - "Selling AMAT on 2017-11-30 00:00:00\n", - "Selling PYPL on 2017-11-30 00:00:00\n", - "Selling ALB on 2017-11-30 00:00:00\n", - "Selling ALGN on 2017-11-30 00:00:00\n", - "Selling FSLR on 2017-11-30 00:00:00\n", - "Buying EXPE on 2017-12-31 00:00:00\n", - "Buying AMCR on 2017-12-31 00:00:00\n", - "Buying SPG on 2017-12-31 00:00:00\n", - "Buying NKE on 2017-12-31 00:00:00\n", - "Buying AON on 2017-12-31 00:00:00\n", - "Buying NDSN on 2017-12-31 00:00:00\n", - "Buying SBAC on 2017-12-31 00:00:00\n", - "Buying PARA on 2017-12-31 00:00:00\n", - "Buying KO on 2017-12-31 00:00:00\n", - "Buying CVX on 2017-12-31 00:00:00\n", - "Buying DIS on 2017-12-31 00:00:00\n", - "Buying AES on 2017-12-31 00:00:00\n", - "Buying AMT on 2017-12-31 00:00:00\n", - "Buying EG on 2017-12-31 00:00:00\n", - "Buying DXCM on 2017-12-31 00:00:00\n", - "Buying FE on 2017-12-31 00:00:00\n", - "Buying ROST on 2017-12-31 00:00:00\n", - "Buying NEM on 2017-12-31 00:00:00\n", - "Buying SBUX on 2017-12-31 00:00:00\n", - "Buying CINF on 2017-12-31 00:00:00\n", - "Buying TPL on 2017-12-31 00:00:00\n", - "Buying DUK on 2017-12-31 00:00:00\n", - "Buying NXPI on 2017-12-31 00:00:00\n", - "Buying CB on 2017-12-31 00:00:00\n", - "Buying SO on 2017-12-31 00:00:00\n", - "Buying CCI on 2017-12-31 00:00:00\n", - "Buying OMC on 2017-12-31 00:00:00\n", - "Buying BSX on 2017-12-31 00:00:00\n", - "Buying TPR on 2017-12-31 00:00:00\n", - "Buying TRV on 2017-12-31 00:00:00\n", - "Buying FRT on 2017-12-31 00:00:00\n", - "Buying AIG on 2017-12-31 00:00:00\n", - "Buying PG on 2017-12-31 00:00:00\n", - "Buying ACGL on 2017-12-31 00:00:00\n", - "Buying SRE on 2017-12-31 00:00:00\n", - "Buying PEP on 2017-12-31 00:00:00\n", - "Buying AIZ on 2017-12-31 00:00:00\n", - "Buying CLX on 2017-12-31 00:00:00\n", - "Buying D on 2017-12-31 00:00:00\n", - "Buying L on 2017-12-31 00:00:00\n", - "Buying WTW on 2017-12-31 00:00:00\n", - "Buying BKNG on 2017-12-31 00:00:00\n", - "Buying ALL on 2017-12-31 00:00:00\n", - "Buying WRB on 2017-12-31 00:00:00\n", - "Buying AZO on 2017-12-31 00:00:00\n", - "Buying HSIC on 2017-12-31 00:00:00\n", - "Buying MMC on 2017-12-31 00:00:00\n", - "Buying TGT on 2017-12-31 00:00:00\n", - "Selling PCAR on 2017-12-31 00:00:00\n", - "Selling TRMB on 2017-12-31 00:00:00\n", - "Selling CI on 2017-12-31 00:00:00\n", - "Selling NUE on 2017-12-31 00:00:00\n", - "Selling HII on 2017-12-31 00:00:00\n", - "Selling FCX on 2017-12-31 00:00:00\n", - "Selling FMC on 2017-12-31 00:00:00\n", - "Selling ENPH on 2017-12-31 00:00:00\n", - "Selling GS on 2017-12-31 00:00:00\n", - "Selling KLAC on 2017-12-31 00:00:00\n", - "Selling COST on 2017-12-31 00:00:00\n", - "Selling APO on 2017-12-31 00:00:00\n", - "Selling DELL on 2017-12-31 00:00:00\n", - "Selling SYF on 2017-12-31 00:00:00\n", - "Selling UAL on 2017-12-31 00:00:00\n", - "Selling PWR on 2017-12-31 00:00:00\n", - "Selling DOV on 2017-12-31 00:00:00\n", - "Selling ON on 2017-12-31 00:00:00\n", - "Selling HWM on 2017-12-31 00:00:00\n", - "Selling MLM on 2017-12-31 00:00:00\n", - "Selling MSFT on 2017-12-31 00:00:00\n", - "Selling ODFL on 2017-12-31 00:00:00\n", - "Selling NVDA on 2017-12-31 00:00:00\n", - "Selling NFLX on 2017-12-31 00:00:00\n", - "Selling CRL on 2017-12-31 00:00:00\n", - "Selling CDW on 2017-12-31 00:00:00\n", - "Selling EQT on 2017-12-31 00:00:00\n", - "Selling SYK on 2017-12-31 00:00:00\n", - "Selling TT on 2017-12-31 00:00:00\n", - "Selling AMAT on 2017-12-31 00:00:00\n", - "Selling INTC on 2017-12-31 00:00:00\n", - "Selling EW on 2017-12-31 00:00:00\n", - "Selling HCA on 2017-12-31 00:00:00\n", - "Selling ALB on 2017-12-31 00:00:00\n", - "Selling AMZN on 2017-12-31 00:00:00\n", - "Selling J on 2017-12-31 00:00:00\n", - "Selling ANET on 2017-12-31 00:00:00\n", - "Selling NTAP on 2017-12-31 00:00:00\n", - "Selling PAYC on 2017-12-31 00:00:00\n", - "Selling PYPL on 2017-12-31 00:00:00\n", - "Selling HES on 2017-12-31 00:00:00\n", - "Selling IR on 2017-12-31 00:00:00\n", - "Selling MPWR on 2017-12-31 00:00:00\n", - "Selling AMD on 2017-12-31 00:00:00\n", - "Selling CZR on 2017-12-31 00:00:00\n", - "Selling URI on 2017-12-31 00:00:00\n", - "Selling ALGN on 2017-12-31 00:00:00\n", - "Selling FSLR on 2017-12-31 00:00:00\n", - "Buying KDP on 2018-01-31 00:00:00\n", - "Buying DXCM on 2018-01-31 00:00:00\n", - "Buying AMCR on 2018-01-31 00:00:00\n", - "Buying CL on 2018-01-31 00:00:00\n", - "Buying SO on 2018-01-31 00:00:00\n", - "Buying CLX on 2018-01-31 00:00:00\n", - "Buying D on 2018-01-31 00:00:00\n", - "Buying EQIX on 2018-01-31 00:00:00\n", - "Buying AEP on 2018-01-31 00:00:00\n", - "Buying MKTX on 2018-01-31 00:00:00\n", - "Buying AWK on 2018-01-31 00:00:00\n", - "Buying PARA on 2018-01-31 00:00:00\n", - "Buying SBUX on 2018-01-31 00:00:00\n", - "Buying HAS on 2018-01-31 00:00:00\n", - "Buying DUK on 2018-01-31 00:00:00\n", - "Buying CMS on 2018-01-31 00:00:00\n", - "Buying WYNN on 2018-01-31 00:00:00\n", - "Buying K on 2018-01-31 00:00:00\n", - "Buying DOC on 2018-01-31 00:00:00\n", - "Buying SBAC on 2018-01-31 00:00:00\n", - "Buying SRE on 2018-01-31 00:00:00\n", - "Buying XEL on 2018-01-31 00:00:00\n", - "Buying DTE on 2018-01-31 00:00:00\n", - "Buying AMT on 2018-01-31 00:00:00\n", - "Buying NXPI on 2018-01-31 00:00:00\n", - "Buying LHX on 2018-01-31 00:00:00\n", - "Buying SPG on 2018-01-31 00:00:00\n", - "Buying ED on 2018-01-31 00:00:00\n", - "Buying PG on 2018-01-31 00:00:00\n", - "Buying REG on 2018-01-31 00:00:00\n", - "Buying BF-B on 2018-01-31 00:00:00\n", - "Buying PEP on 2018-01-31 00:00:00\n", - "Buying REGN on 2018-01-31 00:00:00\n", - "Buying AEE on 2018-01-31 00:00:00\n", - "Buying PGR on 2018-01-31 00:00:00\n", - "Buying PSA on 2018-01-31 00:00:00\n", - "Buying LNT on 2018-01-31 00:00:00\n", - "Buying TPL on 2018-01-31 00:00:00\n", - "Buying WRB on 2018-01-31 00:00:00\n", - "Buying WEC on 2018-01-31 00:00:00\n", - "Buying MDLZ on 2018-01-31 00:00:00\n", - "Buying KO on 2018-01-31 00:00:00\n", - "Buying NI on 2018-01-31 00:00:00\n", - "Buying ES on 2018-01-31 00:00:00\n", - "Buying KMB on 2018-01-31 00:00:00\n", - "Buying EVRG on 2018-01-31 00:00:00\n", - "Buying CCI on 2018-01-31 00:00:00\n", - "Buying CHD on 2018-01-31 00:00:00\n", - "Selling J on 2018-01-31 00:00:00\n", - "Selling GNRC on 2018-01-31 00:00:00\n", - "Selling BG on 2018-01-31 00:00:00\n", - "Selling STX on 2018-01-31 00:00:00\n", - "Selling CF on 2018-01-31 00:00:00\n", - "Selling WBA on 2018-01-31 00:00:00\n", - "Selling TROW on 2018-01-31 00:00:00\n", - "Selling BIIB on 2018-01-31 00:00:00\n", - "Selling HII on 2018-01-31 00:00:00\n", - "Selling BWA on 2018-01-31 00:00:00\n", - "Selling HWM on 2018-01-31 00:00:00\n", - "Selling DVN on 2018-01-31 00:00:00\n", - "Selling CDW on 2018-01-31 00:00:00\n", - "Selling URI on 2018-01-31 00:00:00\n", - "Selling ENPH on 2018-01-31 00:00:00\n", - "Selling BLDR on 2018-01-31 00:00:00\n", - "Selling SWKS on 2018-01-31 00:00:00\n", - "Selling CVS on 2018-01-31 00:00:00\n", - "Selling ADBE on 2018-01-31 00:00:00\n", - "Selling ELV on 2018-01-31 00:00:00\n", - "Selling SLB on 2018-01-31 00:00:00\n", - "Selling ADSK on 2018-01-31 00:00:00\n", - "Selling GLW on 2018-01-31 00:00:00\n", - "Selling FSLR on 2018-01-31 00:00:00\n", - "Selling BEN on 2018-01-31 00:00:00\n", - "Selling PHM on 2018-01-31 00:00:00\n", - "Selling PCAR on 2018-01-31 00:00:00\n", - "Selling PYPL on 2018-01-31 00:00:00\n", - "Selling NTAP on 2018-01-31 00:00:00\n", - "Selling TXN on 2018-01-31 00:00:00\n", - "Selling NVDA on 2018-01-31 00:00:00\n", - "Selling HES on 2018-01-31 00:00:00\n", - "Selling ANET on 2018-01-31 00:00:00\n", - "Selling AMD on 2018-01-31 00:00:00\n", - "Selling KLAC on 2018-01-31 00:00:00\n", - "Selling DELL on 2018-01-31 00:00:00\n", - "Selling ALGN on 2018-01-31 00:00:00\n", - "Selling MCHP on 2018-01-31 00:00:00\n", - "Selling TER on 2018-01-31 00:00:00\n", - "Selling PAYC on 2018-01-31 00:00:00\n", - "Selling APA on 2018-01-31 00:00:00\n", - "Selling CI on 2018-01-31 00:00:00\n", - "Selling MPWR on 2018-01-31 00:00:00\n", - "Selling ON on 2018-01-31 00:00:00\n", - "Selling INTC on 2018-01-31 00:00:00\n", - "Selling LRCX on 2018-01-31 00:00:00\n", - "Selling AMAT on 2018-01-31 00:00:00\n", - "Selling ABBV on 2018-01-31 00:00:00\n", - "Buying KDP on 2018-02-28 00:00:00\n", - "Buying AMCR on 2018-02-28 00:00:00\n", - "Buying MKTX on 2018-02-28 00:00:00\n", - "Buying DXCM on 2018-02-28 00:00:00\n", - "Buying NXPI on 2018-02-28 00:00:00\n", - "Buying SO on 2018-02-28 00:00:00\n", - "Buying WYNN on 2018-02-28 00:00:00\n", - "Buying DUK on 2018-02-28 00:00:00\n", - "Buying AEP on 2018-02-28 00:00:00\n", - "Buying D on 2018-02-28 00:00:00\n", - "Buying DECK on 2018-02-28 00:00:00\n", - "Buying DTE on 2018-02-28 00:00:00\n", - "Buying CHD on 2018-02-28 00:00:00\n", - "Buying XEL on 2018-02-28 00:00:00\n", - "Buying SRE on 2018-02-28 00:00:00\n", - "Buying CBOE on 2018-02-28 00:00:00\n", - "Buying ATO on 2018-02-28 00:00:00\n", - "Buying ED on 2018-02-28 00:00:00\n", - "Buying AXON on 2018-02-28 00:00:00\n", - "Buying BG on 2018-02-28 00:00:00\n", - "Buying WEC on 2018-02-28 00:00:00\n", - "Buying EXPE on 2018-02-28 00:00:00\n", - "Buying ENPH on 2018-02-28 00:00:00\n", - "Buying LNT on 2018-02-28 00:00:00\n", - "Buying EVRG on 2018-02-28 00:00:00\n", - "Buying BALL on 2018-02-28 00:00:00\n", - "Buying K on 2018-02-28 00:00:00\n", - "Buying TSN on 2018-02-28 00:00:00\n", - "Buying SBUX on 2018-02-28 00:00:00\n", - "Buying NEE on 2018-02-28 00:00:00\n", - "Buying CMS on 2018-02-28 00:00:00\n", - "Buying AEE on 2018-02-28 00:00:00\n", - "Buying NI on 2018-02-28 00:00:00\n", - "Buying EXC on 2018-02-28 00:00:00\n", - "Buying EQIX on 2018-02-28 00:00:00\n", - "Buying OMC on 2018-02-28 00:00:00\n", - "Buying WST on 2018-02-28 00:00:00\n", - "Buying CDW on 2018-02-28 00:00:00\n", - "Buying HSY on 2018-02-28 00:00:00\n", - "Buying ES on 2018-02-28 00:00:00\n", - "Buying ULTA on 2018-02-28 00:00:00\n", - "Buying ETR on 2018-02-28 00:00:00\n", - "Buying CNP on 2018-02-28 00:00:00\n", - "Buying CL on 2018-02-28 00:00:00\n", - "Buying PEG on 2018-02-28 00:00:00\n", - "Buying PSA on 2018-02-28 00:00:00\n", - "Buying CCI on 2018-02-28 00:00:00\n", - "Buying MKC on 2018-02-28 00:00:00\n", - "Selling QCOM on 2018-02-28 00:00:00\n", - "Selling DVN on 2018-02-28 00:00:00\n", - "Selling TXN on 2018-02-28 00:00:00\n", - "Selling HD on 2018-02-28 00:00:00\n", - "Selling URI on 2018-02-28 00:00:00\n", - "Selling IVZ on 2018-02-28 00:00:00\n", - "Selling FANG on 2018-02-28 00:00:00\n", - "Selling AXP on 2018-02-28 00:00:00\n", - "Selling CAT on 2018-02-28 00:00:00\n", - "Selling BRK-B on 2018-02-28 00:00:00\n", - "Selling DD on 2018-02-28 00:00:00\n", - "Selling BA on 2018-02-28 00:00:00\n", - "Selling MS on 2018-02-28 00:00:00\n", - "Selling CSX on 2018-02-28 00:00:00\n", - "Selling SYF on 2018-02-28 00:00:00\n", - "Selling SWKS on 2018-02-28 00:00:00\n", - "Selling PRU on 2018-02-28 00:00:00\n", - "Selling KKR on 2018-02-28 00:00:00\n", - "Selling ANET on 2018-02-28 00:00:00\n", - "Selling CSCO on 2018-02-28 00:00:00\n", - "Selling COF on 2018-02-28 00:00:00\n", - "Selling GDDY on 2018-02-28 00:00:00\n", - "Selling MSFT on 2018-02-28 00:00:00\n", - "Selling NFLX on 2018-02-28 00:00:00\n", - "Selling GOOGL on 2018-02-28 00:00:00\n", - "Selling GOOG on 2018-02-28 00:00:00\n", - "Selling APA on 2018-02-28 00:00:00\n", - "Selling HPE on 2018-02-28 00:00:00\n", - "Selling TER on 2018-02-28 00:00:00\n", - "Selling VRTX on 2018-02-28 00:00:00\n", - "Selling EQT on 2018-02-28 00:00:00\n", - "Selling INTC on 2018-02-28 00:00:00\n", - "Selling ON on 2018-02-28 00:00:00\n", - "Selling ABBV on 2018-02-28 00:00:00\n", - "Selling KLAC on 2018-02-28 00:00:00\n", - "Selling ALGN on 2018-02-28 00:00:00\n", - "Selling FCX on 2018-02-28 00:00:00\n", - "Selling SPGI on 2018-02-28 00:00:00\n", - "Selling HPQ on 2018-02-28 00:00:00\n", - "Selling TTWO on 2018-02-28 00:00:00\n", - "Selling MU on 2018-02-28 00:00:00\n", - "Selling HES on 2018-02-28 00:00:00\n", - "Selling MPWR on 2018-02-28 00:00:00\n", - "Selling AMD on 2018-02-28 00:00:00\n", - "Selling SMCI on 2018-02-28 00:00:00\n", - "Selling NVDA on 2018-02-28 00:00:00\n", - "Selling AMAT on 2018-02-28 00:00:00\n", - "Selling LRCX on 2018-02-28 00:00:00\n", - "Buying AMCR on 2018-03-31 00:00:00\n", - "Buying KDP on 2018-03-31 00:00:00\n", - "Buying SO on 2018-03-31 00:00:00\n", - "Buying NXPI on 2018-03-31 00:00:00\n", - "Buying DXCM on 2018-03-31 00:00:00\n", - "Buying AEP on 2018-03-31 00:00:00\n", - "Buying DUK on 2018-03-31 00:00:00\n", - "Buying XEL on 2018-03-31 00:00:00\n", - "Buying DTE on 2018-03-31 00:00:00\n", - "Buying AXON on 2018-03-31 00:00:00\n", - "Buying D on 2018-03-31 00:00:00\n", - "Buying MKTX on 2018-03-31 00:00:00\n", - "Buying SRE on 2018-03-31 00:00:00\n", - "Buying EIX on 2018-03-31 00:00:00\n", - "Buying ED on 2018-03-31 00:00:00\n", - "Buying BG on 2018-03-31 00:00:00\n", - "Buying DOC on 2018-03-31 00:00:00\n", - "Buying LNT on 2018-03-31 00:00:00\n", - "Buying ENPH on 2018-03-31 00:00:00\n", - "Buying CHD on 2018-03-31 00:00:00\n", - "Buying WEC on 2018-03-31 00:00:00\n", - "Buying DECK on 2018-03-31 00:00:00\n", - "Buying NEE on 2018-03-31 00:00:00\n", - "Buying VTR on 2018-03-31 00:00:00\n", - "Buying ATO on 2018-03-31 00:00:00\n", - "Buying CMS on 2018-03-31 00:00:00\n", - "Buying NI on 2018-03-31 00:00:00\n", - "Buying EVRG on 2018-03-31 00:00:00\n", - "Buying ETR on 2018-03-31 00:00:00\n", - "Buying EXC on 2018-03-31 00:00:00\n", - "Buying AEE on 2018-03-31 00:00:00\n", - "Buying PNW on 2018-03-31 00:00:00\n", - "Buying CL on 2018-03-31 00:00:00\n", - "Buying VICI on 2018-03-31 00:00:00\n", - "Buying PCG on 2018-03-31 00:00:00\n", - "Buying PEG on 2018-03-31 00:00:00\n", - "Buying FE on 2018-03-31 00:00:00\n", - "Buying KIM on 2018-03-31 00:00:00\n", - "Buying WELL on 2018-03-31 00:00:00\n", - "Buying ES on 2018-03-31 00:00:00\n", - "Buying K on 2018-03-31 00:00:00\n", - "Buying FRT on 2018-03-31 00:00:00\n", - "Buying SPG on 2018-03-31 00:00:00\n", - "Buying TSN on 2018-03-31 00:00:00\n", - "Buying REG on 2018-03-31 00:00:00\n", - "Buying PSA on 2018-03-31 00:00:00\n", - "Buying CLX on 2018-03-31 00:00:00\n", - "Buying CPB on 2018-03-31 00:00:00\n", - "Selling NTRS on 2018-03-31 00:00:00\n", - "Selling ADSK on 2018-03-31 00:00:00\n", - "Selling CFG on 2018-03-31 00:00:00\n", - "Selling BAC on 2018-03-31 00:00:00\n", - "Selling LOW on 2018-03-31 00:00:00\n", - "Selling BA on 2018-03-31 00:00:00\n", - "Selling TROW on 2018-03-31 00:00:00\n", - "Selling DD on 2018-03-31 00:00:00\n", - "Selling WDC on 2018-03-31 00:00:00\n", - "Selling URI on 2018-03-31 00:00:00\n", - "Selling STT on 2018-03-31 00:00:00\n", - "Selling SPGI on 2018-03-31 00:00:00\n", - "Selling SCHW on 2018-03-31 00:00:00\n", - "Selling HPQ on 2018-03-31 00:00:00\n", - "Selling ADBE on 2018-03-31 00:00:00\n", - "Selling SWKS on 2018-03-31 00:00:00\n", - "Selling BRK-B on 2018-03-31 00:00:00\n", - "Selling FCX on 2018-03-31 00:00:00\n", - "Selling RJF on 2018-03-31 00:00:00\n", - "Selling PRU on 2018-03-31 00:00:00\n", - "Selling CSCO on 2018-03-31 00:00:00\n", - "Selling VRTX on 2018-03-31 00:00:00\n", - "Selling DE on 2018-03-31 00:00:00\n", - "Selling PAYC on 2018-03-31 00:00:00\n", - "Selling IVZ on 2018-03-31 00:00:00\n", - "Selling CAT on 2018-03-31 00:00:00\n", - "Selling BLK on 2018-03-31 00:00:00\n", - "Selling TXN on 2018-03-31 00:00:00\n", - "Selling ABBV on 2018-03-31 00:00:00\n", - "Selling ON on 2018-03-31 00:00:00\n", - "Selling HES on 2018-03-31 00:00:00\n", - "Selling TER on 2018-03-31 00:00:00\n", - "Selling GOOGL on 2018-03-31 00:00:00\n", - "Selling MS on 2018-03-31 00:00:00\n", - "Selling SMCI on 2018-03-31 00:00:00\n", - "Selling GOOG on 2018-03-31 00:00:00\n", - "Selling INTC on 2018-03-31 00:00:00\n", - "Selling MSFT on 2018-03-31 00:00:00\n", - "Selling ANET on 2018-03-31 00:00:00\n", - "Selling TTWO on 2018-03-31 00:00:00\n", - "Selling NFLX on 2018-03-31 00:00:00\n", - "Selling KLAC on 2018-03-31 00:00:00\n", - "Selling ALGN on 2018-03-31 00:00:00\n", - "Selling MPWR on 2018-03-31 00:00:00\n", - "Selling MU on 2018-03-31 00:00:00\n", - "Selling AMAT on 2018-03-31 00:00:00\n", - "Selling NVDA on 2018-03-31 00:00:00\n", - "Selling LRCX on 2018-03-31 00:00:00\n", - "Buying AMCR on 2018-04-30 00:00:00\n", - "Buying KDP on 2018-04-30 00:00:00\n", - "Buying BG on 2018-04-30 00:00:00\n", - "Buying SO on 2018-04-30 00:00:00\n", - "Buying AEP on 2018-04-30 00:00:00\n", - "Buying DOC on 2018-04-30 00:00:00\n", - "Buying DTE on 2018-04-30 00:00:00\n", - "Buying DUK on 2018-04-30 00:00:00\n", - "Buying VICI on 2018-04-30 00:00:00\n", - "Buying XEL on 2018-04-30 00:00:00\n", - "Buying VTR on 2018-04-30 00:00:00\n", - "Buying EIX on 2018-04-30 00:00:00\n", - "Buying NEE on 2018-04-30 00:00:00\n", - "Buying LNT on 2018-04-30 00:00:00\n", - "Buying ED on 2018-04-30 00:00:00\n", - "Buying SRE on 2018-04-30 00:00:00\n", - "Buying NXPI on 2018-04-30 00:00:00\n", - "Buying D on 2018-04-30 00:00:00\n", - "Buying WEC on 2018-04-30 00:00:00\n", - "Buying MKTX on 2018-04-30 00:00:00\n", - "Buying AEE on 2018-04-30 00:00:00\n", - "Buying WELL on 2018-04-30 00:00:00\n", - "Buying CMS on 2018-04-30 00:00:00\n", - "Buying FE on 2018-04-30 00:00:00\n", - "Buying AXON on 2018-04-30 00:00:00\n", - "Buying NI on 2018-04-30 00:00:00\n", - "Buying ATO on 2018-04-30 00:00:00\n", - "Buying PNW on 2018-04-30 00:00:00\n", - "Buying ETR on 2018-04-30 00:00:00\n", - "Buying PPL on 2018-04-30 00:00:00\n", - "Buying PEG on 2018-04-30 00:00:00\n", - "Buying DXCM on 2018-04-30 00:00:00\n", - "Buying CCI on 2018-04-30 00:00:00\n", - "Buying EXC on 2018-04-30 00:00:00\n", - "Buying PCG on 2018-04-30 00:00:00\n", - "Buying EVRG on 2018-04-30 00:00:00\n", - "Buying ES on 2018-04-30 00:00:00\n", - "Buying ENPH on 2018-04-30 00:00:00\n", - "Buying ACGL on 2018-04-30 00:00:00\n", - "Buying CHD on 2018-04-30 00:00:00\n", - "Buying CPB on 2018-04-30 00:00:00\n", - "Buying HSY on 2018-04-30 00:00:00\n", - "Buying SPG on 2018-04-30 00:00:00\n", - "Buying K on 2018-04-30 00:00:00\n", - "Buying O on 2018-04-30 00:00:00\n", - "Buying DECK on 2018-04-30 00:00:00\n", - "Buying CL on 2018-04-30 00:00:00\n", - "Buying OMC on 2018-04-30 00:00:00\n", - "Selling PRU on 2018-04-30 00:00:00\n", - "Selling WDC on 2018-04-30 00:00:00\n", - "Selling BRK-B on 2018-04-30 00:00:00\n", - "Selling IVZ on 2018-04-30 00:00:00\n", - "Selling STT on 2018-04-30 00:00:00\n", - "Selling QCOM on 2018-04-30 00:00:00\n", - "Selling TXN on 2018-04-30 00:00:00\n", - "Selling BA on 2018-04-30 00:00:00\n", - "Selling MTCH on 2018-04-30 00:00:00\n", - "Selling ADSK on 2018-04-30 00:00:00\n", - "Selling HPQ on 2018-04-30 00:00:00\n", - "Selling META on 2018-04-30 00:00:00\n", - "Selling ADBE on 2018-04-30 00:00:00\n", - "Selling PAYC on 2018-04-30 00:00:00\n", - "Selling TSLA on 2018-04-30 00:00:00\n", - "Selling ISRG on 2018-04-30 00:00:00\n", - "Selling RJF on 2018-04-30 00:00:00\n", - "Selling BLK on 2018-04-30 00:00:00\n", - "Selling HES on 2018-04-30 00:00:00\n", - "Selling SWKS on 2018-04-30 00:00:00\n", - "Selling DE on 2018-04-30 00:00:00\n", - "Selling DD on 2018-04-30 00:00:00\n", - "Selling EQT on 2018-04-30 00:00:00\n", - "Selling ANET on 2018-04-30 00:00:00\n", - "Selling MS on 2018-04-30 00:00:00\n", - "Selling SCHW on 2018-04-30 00:00:00\n", - "Selling AMD on 2018-04-30 00:00:00\n", - "Selling VRTX on 2018-04-30 00:00:00\n", - "Selling CSCO on 2018-04-30 00:00:00\n", - "Selling SMCI on 2018-04-30 00:00:00\n", - "Selling GOOGL on 2018-04-30 00:00:00\n", - "Selling GOOG on 2018-04-30 00:00:00\n", - "Selling URI on 2018-04-30 00:00:00\n", - "Selling ON on 2018-04-30 00:00:00\n", - "Selling CAT on 2018-04-30 00:00:00\n", - "Selling INTC on 2018-04-30 00:00:00\n", - "Selling MSFT on 2018-04-30 00:00:00\n", - "Selling TTWO on 2018-04-30 00:00:00\n", - "Selling FCX on 2018-04-30 00:00:00\n", - "Selling MPWR on 2018-04-30 00:00:00\n", - "Selling INCY on 2018-04-30 00:00:00\n", - "Selling KLAC on 2018-04-30 00:00:00\n", - "Selling NFLX on 2018-04-30 00:00:00\n", - "Selling ALGN on 2018-04-30 00:00:00\n", - "Selling MU on 2018-04-30 00:00:00\n", - "Selling NVDA on 2018-04-30 00:00:00\n", - "Selling AMAT on 2018-04-30 00:00:00\n", - "Selling LRCX on 2018-04-30 00:00:00\n", - "Buying DOC on 2018-05-31 00:00:00\n", - "Buying VTR on 2018-05-31 00:00:00\n", - "Buying EIX on 2018-05-31 00:00:00\n", - "Buying WELL on 2018-05-31 00:00:00\n", - "Buying CCI on 2018-05-31 00:00:00\n", - "Buying LNT on 2018-05-31 00:00:00\n", - "Buying AEP on 2018-05-31 00:00:00\n", - "Buying PNW on 2018-05-31 00:00:00\n", - "Buying SRE on 2018-05-31 00:00:00\n", - "Buying KDP on 2018-05-31 00:00:00\n", - "Buying DXCM on 2018-05-31 00:00:00\n", - "Buying NI on 2018-05-31 00:00:00\n", - "Buying ETR on 2018-05-31 00:00:00\n", - "Buying AEE on 2018-05-31 00:00:00\n", - "Buying DTE on 2018-05-31 00:00:00\n", - "Buying CMS on 2018-05-31 00:00:00\n", - "Buying DUK on 2018-05-31 00:00:00\n", - "Buying XEL on 2018-05-31 00:00:00\n", - "Buying AMCR on 2018-05-31 00:00:00\n", - "Buying PPL on 2018-05-31 00:00:00\n", - "Buying D on 2018-05-31 00:00:00\n", - "Buying PEG on 2018-05-31 00:00:00\n", - "Buying WEC on 2018-05-31 00:00:00\n", - "Buying ED on 2018-05-31 00:00:00\n", - "Buying NEE on 2018-05-31 00:00:00\n", - "Buying ES on 2018-05-31 00:00:00\n", - "Buying PCG on 2018-05-31 00:00:00\n", - "Buying SO on 2018-05-31 00:00:00\n", - "Buying FE on 2018-05-31 00:00:00\n", - "Buying BG on 2018-05-31 00:00:00\n", - "Buying EXC on 2018-05-31 00:00:00\n", - "Buying AMT on 2018-05-31 00:00:00\n", - "Buying HAS on 2018-05-31 00:00:00\n", - "Buying ACGL on 2018-05-31 00:00:00\n", - "Buying NEM on 2018-05-31 00:00:00\n", - "Buying EG on 2018-05-31 00:00:00\n", - "Buying AWK on 2018-05-31 00:00:00\n", - "Buying CPB on 2018-05-31 00:00:00\n", - "Buying AES on 2018-05-31 00:00:00\n", - "Buying SBAC on 2018-05-31 00:00:00\n", - "Buying UHS on 2018-05-31 00:00:00\n", - "Buying CL on 2018-05-31 00:00:00\n", - "Buying EVRG on 2018-05-31 00:00:00\n", - "Buying DLR on 2018-05-31 00:00:00\n", - "Buying VICI on 2018-05-31 00:00:00\n", - "Buying NVR on 2018-05-31 00:00:00\n", - "Buying ATO on 2018-05-31 00:00:00\n", - "Buying CLX on 2018-05-31 00:00:00\n", - "Selling VRTX on 2018-05-31 00:00:00\n", - "Selling PCAR on 2018-05-31 00:00:00\n", - "Selling BWA on 2018-05-31 00:00:00\n", - "Selling ISRG on 2018-05-31 00:00:00\n", - "Selling LYV on 2018-05-31 00:00:00\n", - "Selling TROW on 2018-05-31 00:00:00\n", - "Selling IDXX on 2018-05-31 00:00:00\n", - "Selling DE on 2018-05-31 00:00:00\n", - "Selling TXN on 2018-05-31 00:00:00\n", - "Selling TTWO on 2018-05-31 00:00:00\n", - "Selling AMP on 2018-05-31 00:00:00\n", - "Selling EQT on 2018-05-31 00:00:00\n", - "Selling QCOM on 2018-05-31 00:00:00\n", - "Selling ACN on 2018-05-31 00:00:00\n", - "Selling PAYC on 2018-05-31 00:00:00\n", - "Selling SMCI on 2018-05-31 00:00:00\n", - "Selling MCHP on 2018-05-31 00:00:00\n", - "Selling DD on 2018-05-31 00:00:00\n", - "Selling MS on 2018-05-31 00:00:00\n", - "Selling GOOGL on 2018-05-31 00:00:00\n", - "Selling AMD on 2018-05-31 00:00:00\n", - "Selling ABBV on 2018-05-31 00:00:00\n", - "Selling GOOG on 2018-05-31 00:00:00\n", - "Selling AMZN on 2018-05-31 00:00:00\n", - "Selling STT on 2018-05-31 00:00:00\n", - "Selling STLD on 2018-05-31 00:00:00\n", - "Selling SCHW on 2018-05-31 00:00:00\n", - "Selling BLK on 2018-05-31 00:00:00\n", - "Selling ADBE on 2018-05-31 00:00:00\n", - "Selling CAT on 2018-05-31 00:00:00\n", - "Selling RJF on 2018-05-31 00:00:00\n", - "Selling HWM on 2018-05-31 00:00:00\n", - "Selling TSLA on 2018-05-31 00:00:00\n", - "Selling CZR on 2018-05-31 00:00:00\n", - "Selling MSFT on 2018-05-31 00:00:00\n", - "Selling INTC on 2018-05-31 00:00:00\n", - "Selling ON on 2018-05-31 00:00:00\n", - "Selling MPWR on 2018-05-31 00:00:00\n", - "Selling URI on 2018-05-31 00:00:00\n", - "Selling MU on 2018-05-31 00:00:00\n", - "Selling FCX on 2018-05-31 00:00:00\n", - "Selling NFLX on 2018-05-31 00:00:00\n", - "Selling ALGN on 2018-05-31 00:00:00\n", - "Selling KLAC on 2018-05-31 00:00:00\n", - "Selling NVDA on 2018-05-31 00:00:00\n", - "Selling AMAT on 2018-05-31 00:00:00\n", - "Selling LRCX on 2018-05-31 00:00:00\n", - "Selling INCY on 2018-05-31 00:00:00\n", - "Buying CMS on 2018-06-30 00:00:00\n", - "Buying AEP on 2018-06-30 00:00:00\n", - "Buying LNT on 2018-06-30 00:00:00\n", - "Buying NI on 2018-06-30 00:00:00\n", - "Buying XEL on 2018-06-30 00:00:00\n", - "Buying PNW on 2018-06-30 00:00:00\n", - "Buying DUK on 2018-06-30 00:00:00\n", - "Buying DTE on 2018-06-30 00:00:00\n", - "Buying AEE on 2018-06-30 00:00:00\n", - "Buying ED on 2018-06-30 00:00:00\n", - "Buying ES on 2018-06-30 00:00:00\n", - "Buying WEC on 2018-06-30 00:00:00\n", - "Buying SO on 2018-06-30 00:00:00\n", - "Buying PPL on 2018-06-30 00:00:00\n", - "Buying EG on 2018-06-30 00:00:00\n", - "Buying ETR on 2018-06-30 00:00:00\n", - "Buying PEG on 2018-06-30 00:00:00\n", - "Buying AWK on 2018-06-30 00:00:00\n", - "Buying EVRG on 2018-06-30 00:00:00\n", - "Buying NEE on 2018-06-30 00:00:00\n", - "Buying FE on 2018-06-30 00:00:00\n", - "Buying CPB on 2018-06-30 00:00:00\n", - "Buying SRE on 2018-06-30 00:00:00\n", - "Buying EXC on 2018-06-30 00:00:00\n", - "Buying D on 2018-06-30 00:00:00\n", - "Buying ATO on 2018-06-30 00:00:00\n", - "Buying BG on 2018-06-30 00:00:00\n", - "Buying EIX on 2018-06-30 00:00:00\n", - "Buying CCI on 2018-06-30 00:00:00\n", - "Buying LKQ on 2018-06-30 00:00:00\n", - "Buying KR on 2018-06-30 00:00:00\n", - "Buying AMCR on 2018-06-30 00:00:00\n", - "Buying SBAC on 2018-06-30 00:00:00\n", - "Buying WELL on 2018-06-30 00:00:00\n", - "Buying DRI on 2018-06-30 00:00:00\n", - "Buying VTR on 2018-06-30 00:00:00\n", - "Buying GEN on 2018-06-30 00:00:00\n", - "Buying WMT on 2018-06-30 00:00:00\n", - "Buying AMT on 2018-06-30 00:00:00\n", - "Buying HSY on 2018-06-30 00:00:00\n", - "Buying KDP on 2018-06-30 00:00:00\n", - "Buying BMY on 2018-06-30 00:00:00\n", - "Buying SJM on 2018-06-30 00:00:00\n", - "Buying HAS on 2018-06-30 00:00:00\n", - "Buying DOC on 2018-06-30 00:00:00\n", - "Buying TGT on 2018-06-30 00:00:00\n", - "Buying HRL on 2018-06-30 00:00:00\n", - "Buying UHS on 2018-06-30 00:00:00\n", - "Selling AMZN on 2018-06-30 00:00:00\n", - "Selling TTWO on 2018-06-30 00:00:00\n", - "Selling STT on 2018-06-30 00:00:00\n", - "Selling AMP on 2018-06-30 00:00:00\n", - "Selling TROW on 2018-06-30 00:00:00\n", - "Selling QCOM on 2018-06-30 00:00:00\n", - "Selling STX on 2018-06-30 00:00:00\n", - "Selling PAYC on 2018-06-30 00:00:00\n", - "Selling SCHW on 2018-06-30 00:00:00\n", - "Selling LYV on 2018-06-30 00:00:00\n", - "Selling GOOG on 2018-06-30 00:00:00\n", - "Selling ABBV on 2018-06-30 00:00:00\n", - "Selling GOOGL on 2018-06-30 00:00:00\n", - "Selling MPWR on 2018-06-30 00:00:00\n", - "Selling RJF on 2018-06-30 00:00:00\n", - "Selling ISRG on 2018-06-30 00:00:00\n", - "Selling NUE on 2018-06-30 00:00:00\n", - "Selling PYPL on 2018-06-30 00:00:00\n", - "Selling LYB on 2018-06-30 00:00:00\n", - "Selling HPQ on 2018-06-30 00:00:00\n", - "Selling AMAT on 2018-06-30 00:00:00\n", - "Selling EQT on 2018-06-30 00:00:00\n", - "Selling A on 2018-06-30 00:00:00\n", - "Selling MCHP on 2018-06-30 00:00:00\n", - "Selling ADSK on 2018-06-30 00:00:00\n", - "Selling DE on 2018-06-30 00:00:00\n", - "Selling NFLX on 2018-06-30 00:00:00\n", - "Selling STLD on 2018-06-30 00:00:00\n", - "Selling IDXX on 2018-06-30 00:00:00\n", - "Selling INTC on 2018-06-30 00:00:00\n", - "Selling ON on 2018-06-30 00:00:00\n", - "Selling BA on 2018-06-30 00:00:00\n", - "Selling CMG on 2018-06-30 00:00:00\n", - "Selling LRCX on 2018-06-30 00:00:00\n", - "Selling KLAC on 2018-06-30 00:00:00\n", - "Selling HWM on 2018-06-30 00:00:00\n", - "Selling CZR on 2018-06-30 00:00:00\n", - "Selling DD on 2018-06-30 00:00:00\n", - "Selling CAT on 2018-06-30 00:00:00\n", - "Selling SMCI on 2018-06-30 00:00:00\n", - "Selling AXON on 2018-06-30 00:00:00\n", - "Selling ALGN on 2018-06-30 00:00:00\n", - "Selling NVDA on 2018-06-30 00:00:00\n", - "Selling URI on 2018-06-30 00:00:00\n", - "Selling FCX on 2018-06-30 00:00:00\n", - "Selling MU on 2018-06-30 00:00:00\n", - "Selling AMD on 2018-06-30 00:00:00\n", - "Selling INCY on 2018-06-30 00:00:00\n", - "Buying AEP on 2018-07-31 00:00:00\n", - "Buying NI on 2018-07-31 00:00:00\n", - "Buying PNW on 2018-07-31 00:00:00\n", - "Buying EVRG on 2018-07-31 00:00:00\n", - "Buying DUK on 2018-07-31 00:00:00\n", - "Buying FE on 2018-07-31 00:00:00\n", - "Buying LNT on 2018-07-31 00:00:00\n", - "Buying XEL on 2018-07-31 00:00:00\n", - "Buying CMS on 2018-07-31 00:00:00\n", - "Buying ED on 2018-07-31 00:00:00\n", - "Buying CPB on 2018-07-31 00:00:00\n", - "Buying ES on 2018-07-31 00:00:00\n", - "Buying DTE on 2018-07-31 00:00:00\n", - "Buying WEC on 2018-07-31 00:00:00\n", - "Buying AEE on 2018-07-31 00:00:00\n", - "Buying PEG on 2018-07-31 00:00:00\n", - "Buying D on 2018-07-31 00:00:00\n", - "Buying AWK on 2018-07-31 00:00:00\n", - "Buying ETR on 2018-07-31 00:00:00\n", - "Buying NEE on 2018-07-31 00:00:00\n", - "Buying ATO on 2018-07-31 00:00:00\n", - "Buying CNP on 2018-07-31 00:00:00\n", - "Buying SO on 2018-07-31 00:00:00\n", - "Buying EXC on 2018-07-31 00:00:00\n", - "Buying PPL on 2018-07-31 00:00:00\n", - "Buying KR on 2018-07-31 00:00:00\n", - "Buying SRE on 2018-07-31 00:00:00\n", - "Buying DRI on 2018-07-31 00:00:00\n", - "Buying TGT on 2018-07-31 00:00:00\n", - "Buying EIX on 2018-07-31 00:00:00\n", - "Buying CHD on 2018-07-31 00:00:00\n", - "Buying CLX on 2018-07-31 00:00:00\n", - "Buying WMT on 2018-07-31 00:00:00\n", - "Buying AIZ on 2018-07-31 00:00:00\n", - "Buying AMCR on 2018-07-31 00:00:00\n", - "Buying PEP on 2018-07-31 00:00:00\n", - "Buying CCI on 2018-07-31 00:00:00\n", - "Buying GIS on 2018-07-31 00:00:00\n", - "Buying SJM on 2018-07-31 00:00:00\n", - "Buying TJX on 2018-07-31 00:00:00\n", - "Buying HRL on 2018-07-31 00:00:00\n", - "Buying HSY on 2018-07-31 00:00:00\n", - "Buying VST on 2018-07-31 00:00:00\n", - "Buying K on 2018-07-31 00:00:00\n", - "Buying FAST on 2018-07-31 00:00:00\n", - "Buying FANG on 2018-07-31 00:00:00\n", - "Buying LUV on 2018-07-31 00:00:00\n", - "Buying GEN on 2018-07-31 00:00:00\n", - "Selling EPAM on 2018-07-31 00:00:00\n", - "Selling STT on 2018-07-31 00:00:00\n", - "Selling MGM on 2018-07-31 00:00:00\n", - "Selling MTD on 2018-07-31 00:00:00\n", - "Selling DXCM on 2018-07-31 00:00:00\n", - "Selling FTNT on 2018-07-31 00:00:00\n", - "Selling MS on 2018-07-31 00:00:00\n", - "Selling STLD on 2018-07-31 00:00:00\n", - "Selling GDDY on 2018-07-31 00:00:00\n", - "Selling ON on 2018-07-31 00:00:00\n", - "Selling META on 2018-07-31 00:00:00\n", - "Selling TECH on 2018-07-31 00:00:00\n", - "Selling MCHP on 2018-07-31 00:00:00\n", - "Selling ISRG on 2018-07-31 00:00:00\n", - "Selling GOOG on 2018-07-31 00:00:00\n", - "Selling RJF on 2018-07-31 00:00:00\n", - "Selling PYPL on 2018-07-31 00:00:00\n", - "Selling GOOGL on 2018-07-31 00:00:00\n", - "Selling EA on 2018-07-31 00:00:00\n", - "Selling FDX on 2018-07-31 00:00:00\n", - "Selling PTC on 2018-07-31 00:00:00\n", - "Selling AMD on 2018-07-31 00:00:00\n", - "Selling STX on 2018-07-31 00:00:00\n", - "Selling SCHW on 2018-07-31 00:00:00\n", - "Selling BA on 2018-07-31 00:00:00\n", - "Selling PODD on 2018-07-31 00:00:00\n", - "Selling GLW on 2018-07-31 00:00:00\n", - "Selling PAYC on 2018-07-31 00:00:00\n", - "Selling DE on 2018-07-31 00:00:00\n", - "Selling TROW on 2018-07-31 00:00:00\n", - "Selling DD on 2018-07-31 00:00:00\n", - "Selling HPQ on 2018-07-31 00:00:00\n", - "Selling LYB on 2018-07-31 00:00:00\n", - "Selling FCX on 2018-07-31 00:00:00\n", - "Selling ABBV on 2018-07-31 00:00:00\n", - "Selling ANET on 2018-07-31 00:00:00\n", - "Selling A on 2018-07-31 00:00:00\n", - "Selling TER on 2018-07-31 00:00:00\n", - "Selling ADSK on 2018-07-31 00:00:00\n", - "Selling INTC on 2018-07-31 00:00:00\n", - "Selling URI on 2018-07-31 00:00:00\n", - "Selling CAT on 2018-07-31 00:00:00\n", - "Selling NVDA on 2018-07-31 00:00:00\n", - "Selling BIIB on 2018-07-31 00:00:00\n", - "Selling MTCH on 2018-07-31 00:00:00\n", - "Selling MU on 2018-07-31 00:00:00\n", - "Selling TSLA on 2018-07-31 00:00:00\n", - "Selling AXON on 2018-07-31 00:00:00\n", - "Buying CPB on 2018-08-31 00:00:00\n", - "Buying FE on 2018-08-31 00:00:00\n", - "Buying AEP on 2018-08-31 00:00:00\n", - "Buying XEL on 2018-08-31 00:00:00\n", - "Buying CMG on 2018-08-31 00:00:00\n", - "Buying EVRG on 2018-08-31 00:00:00\n", - "Buying PNW on 2018-08-31 00:00:00\n", - "Buying DUK on 2018-08-31 00:00:00\n", - "Buying LNT on 2018-08-31 00:00:00\n", - "Buying CMS on 2018-08-31 00:00:00\n", - "Buying ED on 2018-08-31 00:00:00\n", - "Buying ETR on 2018-08-31 00:00:00\n", - "Buying DTE on 2018-08-31 00:00:00\n", - "Buying WEC on 2018-08-31 00:00:00\n", - "Buying NI on 2018-08-31 00:00:00\n", - "Buying ES on 2018-08-31 00:00:00\n", - "Buying AEE on 2018-08-31 00:00:00\n", - "Buying KR on 2018-08-31 00:00:00\n", - "Buying NEE on 2018-08-31 00:00:00\n", - "Buying ATO on 2018-08-31 00:00:00\n", - "Buying AWK on 2018-08-31 00:00:00\n", - "Buying CNP on 2018-08-31 00:00:00\n", - "Buying PPL on 2018-08-31 00:00:00\n", - "Buying CLX on 2018-08-31 00:00:00\n", - "Buying DRI on 2018-08-31 00:00:00\n", - "Buying PEG on 2018-08-31 00:00:00\n", - "Buying AIZ on 2018-08-31 00:00:00\n", - "Buying SO on 2018-08-31 00:00:00\n", - "Buying CHD on 2018-08-31 00:00:00\n", - "Buying D on 2018-08-31 00:00:00\n", - "Buying KMB on 2018-08-31 00:00:00\n", - "Buying GIS on 2018-08-31 00:00:00\n", - "Buying HSY on 2018-08-31 00:00:00\n", - "Buying EXC on 2018-08-31 00:00:00\n", - "Buying SJM on 2018-08-31 00:00:00\n", - "Buying LUV on 2018-08-31 00:00:00\n", - "Buying K on 2018-08-31 00:00:00\n", - "Buying INVH on 2018-08-31 00:00:00\n", - "Buying MO on 2018-08-31 00:00:00\n", - "Buying PSA on 2018-08-31 00:00:00\n", - "Buying EXR on 2018-08-31 00:00:00\n", - "Buying DLR on 2018-08-31 00:00:00\n", - "Buying CCI on 2018-08-31 00:00:00\n", - "Buying NOC on 2018-08-31 00:00:00\n", - "Buying PEP on 2018-08-31 00:00:00\n", - "Buying DGX on 2018-08-31 00:00:00\n", - "Buying HRL on 2018-08-31 00:00:00\n", - "Buying EG on 2018-08-31 00:00:00\n", - "Selling TECH on 2018-08-31 00:00:00\n", - "Selling WDAY on 2018-08-31 00:00:00\n", - "Selling BA on 2018-08-31 00:00:00\n", - "Selling RCL on 2018-08-31 00:00:00\n", - "Selling MPWR on 2018-08-31 00:00:00\n", - "Selling WYNN on 2018-08-31 00:00:00\n", - "Selling IDXX on 2018-08-31 00:00:00\n", - "Selling CZR on 2018-08-31 00:00:00\n", - "Selling DAY on 2018-08-31 00:00:00\n", - "Selling MOS on 2018-08-31 00:00:00\n", - "Selling FTNT on 2018-08-31 00:00:00\n", - "Selling AKAM on 2018-08-31 00:00:00\n", - "Selling EA on 2018-08-31 00:00:00\n", - "Selling NUE on 2018-08-31 00:00:00\n", - "Selling PANW on 2018-08-31 00:00:00\n", - "Selling LVS on 2018-08-31 00:00:00\n", - "Selling PTC on 2018-08-31 00:00:00\n", - "Selling BLDR on 2018-08-31 00:00:00\n", - "Selling TSLA on 2018-08-31 00:00:00\n", - "Selling GDDY on 2018-08-31 00:00:00\n", - "Selling NFLX on 2018-08-31 00:00:00\n", - "Selling ZBRA on 2018-08-31 00:00:00\n", - "Selling PYPL on 2018-08-31 00:00:00\n", - "Selling META on 2018-08-31 00:00:00\n", - "Selling NVDA on 2018-08-31 00:00:00\n", - "Selling STLD on 2018-08-31 00:00:00\n", - "Selling MGM on 2018-08-31 00:00:00\n", - "Selling TRMB on 2018-08-31 00:00:00\n", - "Selling DE on 2018-08-31 00:00:00\n", - "Selling STX on 2018-08-31 00:00:00\n", - "Selling INTC on 2018-08-31 00:00:00\n", - "Selling GLW on 2018-08-31 00:00:00\n", - "Selling FCX on 2018-08-31 00:00:00\n", - "Selling MCHP on 2018-08-31 00:00:00\n", - "Selling ALGN on 2018-08-31 00:00:00\n", - "Selling TER on 2018-08-31 00:00:00\n", - "Selling ON on 2018-08-31 00:00:00\n", - "Selling PODD on 2018-08-31 00:00:00\n", - "Selling ANET on 2018-08-31 00:00:00\n", - "Selling APTV on 2018-08-31 00:00:00\n", - "Selling BIIB on 2018-08-31 00:00:00\n", - "Selling URI on 2018-08-31 00:00:00\n", - "Selling PAYC on 2018-08-31 00:00:00\n", - "Selling CAT on 2018-08-31 00:00:00\n", - "Selling MU on 2018-08-31 00:00:00\n", - "Selling AXON on 2018-08-31 00:00:00\n", - "Selling ADSK on 2018-08-31 00:00:00\n", - "Selling DXCM on 2018-08-31 00:00:00\n", - "Buying CMG on 2018-09-30 00:00:00\n", - "Buying EVRG on 2018-09-30 00:00:00\n", - "Buying KR on 2018-09-30 00:00:00\n", - "Buying CLX on 2018-09-30 00:00:00\n", - "Buying GIS on 2018-09-30 00:00:00\n", - "Buying FE on 2018-09-30 00:00:00\n", - "Buying MO on 2018-09-30 00:00:00\n", - "Buying AEP on 2018-09-30 00:00:00\n", - "Buying ETR on 2018-09-30 00:00:00\n", - "Buying AMD on 2018-09-30 00:00:00\n", - "Buying PNW on 2018-09-30 00:00:00\n", - "Buying CPB on 2018-09-30 00:00:00\n", - "Buying LUV on 2018-09-30 00:00:00\n", - "Buying XEL on 2018-09-30 00:00:00\n", - "Buying NI on 2018-09-30 00:00:00\n", - "Buying NOC on 2018-09-30 00:00:00\n", - "Buying DUK on 2018-09-30 00:00:00\n", - "Buying WEC on 2018-09-30 00:00:00\n", - "Buying LNT on 2018-09-30 00:00:00\n", - "Buying ED on 2018-09-30 00:00:00\n", - "Buying AEE on 2018-09-30 00:00:00\n", - "Buying CMS on 2018-09-30 00:00:00\n", - "Buying KMB on 2018-09-30 00:00:00\n", - "Buying DTE on 2018-09-30 00:00:00\n", - "Buying ES on 2018-09-30 00:00:00\n", - "Buying PPL on 2018-09-30 00:00:00\n", - "Buying CHD on 2018-09-30 00:00:00\n", - "Buying ATO on 2018-09-30 00:00:00\n", - "Buying K on 2018-09-30 00:00:00\n", - "Buying MKC on 2018-09-30 00:00:00\n", - "Buying PEG on 2018-09-30 00:00:00\n", - "Buying SO on 2018-09-30 00:00:00\n", - "Buying HSY on 2018-09-30 00:00:00\n", - "Buying SJM on 2018-09-30 00:00:00\n", - "Buying D on 2018-09-30 00:00:00\n", - "Buying NEE on 2018-09-30 00:00:00\n", - "Buying ERIE on 2018-09-30 00:00:00\n", - "Buying PSA on 2018-09-30 00:00:00\n", - "Buying EXC on 2018-09-30 00:00:00\n", - "Buying T on 2018-09-30 00:00:00\n", - "Buying DRI on 2018-09-30 00:00:00\n", - "Buying CNP on 2018-09-30 00:00:00\n", - "Buying CCI on 2018-09-30 00:00:00\n", - "Buying PM on 2018-09-30 00:00:00\n", - "Buying HRL on 2018-09-30 00:00:00\n", - "Buying AWK on 2018-09-30 00:00:00\n", - "Buying EXR on 2018-09-30 00:00:00\n", - "Buying VICI on 2018-09-30 00:00:00\n", - "Selling IDXX on 2018-09-30 00:00:00\n", - "Selling ISRG on 2018-09-30 00:00:00\n", - "Selling FANG on 2018-09-30 00:00:00\n", - "Selling AKAM on 2018-09-30 00:00:00\n", - "Selling RJF on 2018-09-30 00:00:00\n", - "Selling IR on 2018-09-30 00:00:00\n", - "Selling MOS on 2018-09-30 00:00:00\n", - "Selling PAYC on 2018-09-30 00:00:00\n", - "Selling GOOG on 2018-09-30 00:00:00\n", - "Selling GOOGL on 2018-09-30 00:00:00\n", - "Selling TROW on 2018-09-30 00:00:00\n", - "Selling LVS on 2018-09-30 00:00:00\n", - "Selling NFLX on 2018-09-30 00:00:00\n", - "Selling AXON on 2018-09-30 00:00:00\n", - "Selling EA on 2018-09-30 00:00:00\n", - "Selling HES on 2018-09-30 00:00:00\n", - "Selling ZBRA on 2018-09-30 00:00:00\n", - "Selling DE on 2018-09-30 00:00:00\n", - "Selling TSLA on 2018-09-30 00:00:00\n", - "Selling STX on 2018-09-30 00:00:00\n", - "Selling INTC on 2018-09-30 00:00:00\n", - "Selling KLAC on 2018-09-30 00:00:00\n", - "Selling PTC on 2018-09-30 00:00:00\n", - "Selling FSLR on 2018-09-30 00:00:00\n", - "Selling PANW on 2018-09-30 00:00:00\n", - "Selling CTRA on 2018-09-30 00:00:00\n", - "Selling PYPL on 2018-09-30 00:00:00\n", - "Selling META on 2018-09-30 00:00:00\n", - "Selling MGM on 2018-09-30 00:00:00\n", - "Selling EQT on 2018-09-30 00:00:00\n", - "Selling MCHP on 2018-09-30 00:00:00\n", - "Selling WDC on 2018-09-30 00:00:00\n", - "Selling TRMB on 2018-09-30 00:00:00\n", - "Selling TER on 2018-09-30 00:00:00\n", - "Selling URI on 2018-09-30 00:00:00\n", - "Selling WYNN on 2018-09-30 00:00:00\n", - "Selling ANET on 2018-09-30 00:00:00\n", - "Selling GLW on 2018-09-30 00:00:00\n", - "Selling CAT on 2018-09-30 00:00:00\n", - "Selling ON on 2018-09-30 00:00:00\n", - "Selling ALGN on 2018-09-30 00:00:00\n", - "Selling BIIB on 2018-09-30 00:00:00\n", - "Selling FCX on 2018-09-30 00:00:00\n", - "Selling MU on 2018-09-30 00:00:00\n", - "Selling APTV on 2018-09-30 00:00:00\n", - "Selling ADSK on 2018-09-30 00:00:00\n", - "Selling DXCM on 2018-09-30 00:00:00\n", - "Selling ENPH on 2018-09-30 00:00:00\n", - "Buying NEM on 2018-10-31 00:00:00\n", - "Buying SO on 2018-10-31 00:00:00\n", - "Buying NI on 2018-10-31 00:00:00\n", - "Buying DTE on 2018-10-31 00:00:00\n", - "Buying PEG on 2018-10-31 00:00:00\n", - "Buying MKTX on 2018-10-31 00:00:00\n", - "Buying AEP on 2018-10-31 00:00:00\n", - "Buying ED on 2018-10-31 00:00:00\n", - "Buying ETR on 2018-10-31 00:00:00\n", - "Buying EVRG on 2018-10-31 00:00:00\n", - "Buying CAG on 2018-10-31 00:00:00\n", - "Buying MO on 2018-10-31 00:00:00\n", - "Buying DUK on 2018-10-31 00:00:00\n", - "Buying SJM on 2018-10-31 00:00:00\n", - "Buying ES on 2018-10-31 00:00:00\n", - "Buying CPB on 2018-10-31 00:00:00\n", - "Buying XEL on 2018-10-31 00:00:00\n", - "Buying WEC on 2018-10-31 00:00:00\n", - "Buying D on 2018-10-31 00:00:00\n", - "Buying K on 2018-10-31 00:00:00\n", - "Buying NEE on 2018-10-31 00:00:00\n", - "Buying PNW on 2018-10-31 00:00:00\n", - "Buying PPL on 2018-10-31 00:00:00\n", - "Buying HSY on 2018-10-31 00:00:00\n", - "Buying CMS on 2018-10-31 00:00:00\n", - "Buying GIS on 2018-10-31 00:00:00\n", - "Buying EXC on 2018-10-31 00:00:00\n", - "Buying PM on 2018-10-31 00:00:00\n", - "Buying LNT on 2018-10-31 00:00:00\n", - "Buying SRE on 2018-10-31 00:00:00\n", - "Buying AEE on 2018-10-31 00:00:00\n", - "Buying AZO on 2018-10-31 00:00:00\n", - "Buying PSA on 2018-10-31 00:00:00\n", - "Buying VTR on 2018-10-31 00:00:00\n", - "Buying ATO on 2018-10-31 00:00:00\n", - "Buying AMCR on 2018-10-31 00:00:00\n", - "Buying EXR on 2018-10-31 00:00:00\n", - "Buying FE on 2018-10-31 00:00:00\n", - "Buying AWK on 2018-10-31 00:00:00\n", - "Buying EIX on 2018-10-31 00:00:00\n", - "Buying PEP on 2018-10-31 00:00:00\n", - "Buying ESS on 2018-10-31 00:00:00\n", - "Buying CNP on 2018-10-31 00:00:00\n", - "Buying GWW on 2018-10-31 00:00:00\n", - "Buying VZ on 2018-10-31 00:00:00\n", - "Buying WELL on 2018-10-31 00:00:00\n", - "Buying EQR on 2018-10-31 00:00:00\n", - "Buying PG on 2018-10-31 00:00:00\n", - "Selling EPAM on 2018-10-31 00:00:00\n", - "Selling IR on 2018-10-31 00:00:00\n", - "Selling GOOG on 2018-10-31 00:00:00\n", - "Selling INCY on 2018-10-31 00:00:00\n", - "Selling TRMB on 2018-10-31 00:00:00\n", - "Selling CAT on 2018-10-31 00:00:00\n", - "Selling DVN on 2018-10-31 00:00:00\n", - "Selling ISRG on 2018-10-31 00:00:00\n", - "Selling GLW on 2018-10-31 00:00:00\n", - "Selling MSFT on 2018-10-31 00:00:00\n", - "Selling AMAT on 2018-10-31 00:00:00\n", - "Selling CHTR on 2018-10-31 00:00:00\n", - "Selling WBD on 2018-10-31 00:00:00\n", - "Selling MGM on 2018-10-31 00:00:00\n", - "Selling MPWR on 2018-10-31 00:00:00\n", - "Selling INTU on 2018-10-31 00:00:00\n", - "Selling RCL on 2018-10-31 00:00:00\n", - "Selling AKAM on 2018-10-31 00:00:00\n", - "Selling WDC on 2018-10-31 00:00:00\n", - "Selling KLAC on 2018-10-31 00:00:00\n", - "Selling AMD on 2018-10-31 00:00:00\n", - "Selling AMP on 2018-10-31 00:00:00\n", - "Selling PYPL on 2018-10-31 00:00:00\n", - "Selling MA on 2018-10-31 00:00:00\n", - "Selling PAYC on 2018-10-31 00:00:00\n", - "Selling MU on 2018-10-31 00:00:00\n", - "Selling ON on 2018-10-31 00:00:00\n", - "Selling TER on 2018-10-31 00:00:00\n", - "Selling NXPI on 2018-10-31 00:00:00\n", - "Selling FSLR on 2018-10-31 00:00:00\n", - "Selling NTAP on 2018-10-31 00:00:00\n", - "Selling PTC on 2018-10-31 00:00:00\n", - "Selling KKR on 2018-10-31 00:00:00\n", - "Selling WDAY on 2018-10-31 00:00:00\n", - "Selling NOW on 2018-10-31 00:00:00\n", - "Selling MTCH on 2018-10-31 00:00:00\n", - "Selling CZR on 2018-10-31 00:00:00\n", - "Selling CRM on 2018-10-31 00:00:00\n", - "Selling GDDY on 2018-10-31 00:00:00\n", - "Selling ANET on 2018-10-31 00:00:00\n", - "Selling ADBE on 2018-10-31 00:00:00\n", - "Selling AXON on 2018-10-31 00:00:00\n", - "Selling AMZN on 2018-10-31 00:00:00\n", - "Selling TTWO on 2018-10-31 00:00:00\n", - "Selling ADSK on 2018-10-31 00:00:00\n", - "Selling URI on 2018-10-31 00:00:00\n", - "Selling NFLX on 2018-10-31 00:00:00\n", - "Selling NVDA on 2018-10-31 00:00:00\n", - "Buying CPB on 2018-11-30 00:00:00\n", - "Buying NEM on 2018-11-30 00:00:00\n", - "Buying SJM on 2018-11-30 00:00:00\n", - "Buying MKTX on 2018-11-30 00:00:00\n", - "Buying PPL on 2018-11-30 00:00:00\n", - "Buying NI on 2018-11-30 00:00:00\n", - "Buying CAG on 2018-11-30 00:00:00\n", - "Buying AEP on 2018-11-30 00:00:00\n", - "Buying D on 2018-11-30 00:00:00\n", - "Buying DUK on 2018-11-30 00:00:00\n", - "Buying DTE on 2018-11-30 00:00:00\n", - "Buying ED on 2018-11-30 00:00:00\n", - "Buying GIS on 2018-11-30 00:00:00\n", - "Buying XEL on 2018-11-30 00:00:00\n", - "Buying SO on 2018-11-30 00:00:00\n", - "Buying WEC on 2018-11-30 00:00:00\n", - "Buying EVRG on 2018-11-30 00:00:00\n", - "Buying PEG on 2018-11-30 00:00:00\n", - "Buying ETR on 2018-11-30 00:00:00\n", - "Buying CMS on 2018-11-30 00:00:00\n", - "Buying ES on 2018-11-30 00:00:00\n", - "Buying PNW on 2018-11-30 00:00:00\n", - "Buying K on 2018-11-30 00:00:00\n", - "Buying NEE on 2018-11-30 00:00:00\n", - "Buying AEE on 2018-11-30 00:00:00\n", - "Buying LNT on 2018-11-30 00:00:00\n", - "Buying PSA on 2018-11-30 00:00:00\n", - "Buying EXC on 2018-11-30 00:00:00\n", - "Buying VTR on 2018-11-30 00:00:00\n", - "Buying HSY on 2018-11-30 00:00:00\n", - "Buying AZO on 2018-11-30 00:00:00\n", - "Buying PM on 2018-11-30 00:00:00\n", - "Buying FE on 2018-11-30 00:00:00\n", - "Buying VZ on 2018-11-30 00:00:00\n", - "Buying EXR on 2018-11-30 00:00:00\n", - "Buying CBOE on 2018-11-30 00:00:00\n", - "Buying MO on 2018-11-30 00:00:00\n", - "Buying AMCR on 2018-11-30 00:00:00\n", - "Buying AWK on 2018-11-30 00:00:00\n", - "Buying ATO on 2018-11-30 00:00:00\n", - "Buying KMB on 2018-11-30 00:00:00\n", - "Buying O on 2018-11-30 00:00:00\n", - "Buying EQR on 2018-11-30 00:00:00\n", - "Buying ESS on 2018-11-30 00:00:00\n", - "Buying PG on 2018-11-30 00:00:00\n", - "Buying CME on 2018-11-30 00:00:00\n", - "Buying LW on 2018-11-30 00:00:00\n", - "Buying WELL on 2018-11-30 00:00:00\n", - "Selling TDG on 2018-11-30 00:00:00\n", - "Selling LVS on 2018-11-30 00:00:00\n", - "Selling MGM on 2018-11-30 00:00:00\n", - "Selling NTAP on 2018-11-30 00:00:00\n", - "Selling KLAC on 2018-11-30 00:00:00\n", - "Selling AMAT on 2018-11-30 00:00:00\n", - "Selling AAPL on 2018-11-30 00:00:00\n", - "Selling WYNN on 2018-11-30 00:00:00\n", - "Selling TER on 2018-11-30 00:00:00\n", - "Selling PODD on 2018-11-30 00:00:00\n", - "Selling GDDY on 2018-11-30 00:00:00\n", - "Selling EPAM on 2018-11-30 00:00:00\n", - "Selling AMP on 2018-11-30 00:00:00\n", - "Selling ALGN on 2018-11-30 00:00:00\n", - "Selling CPAY on 2018-11-30 00:00:00\n", - "Selling CF on 2018-11-30 00:00:00\n", - "Selling MSFT on 2018-11-30 00:00:00\n", - "Selling DAY on 2018-11-30 00:00:00\n", - "Selling ZBRA on 2018-11-30 00:00:00\n", - "Selling ANSS on 2018-11-30 00:00:00\n", - "Selling CRL on 2018-11-30 00:00:00\n", - "Selling MPWR on 2018-11-30 00:00:00\n", - "Selling CAT on 2018-11-30 00:00:00\n", - "Selling KKR on 2018-11-30 00:00:00\n", - "Selling FTNT on 2018-11-30 00:00:00\n", - "Selling ISRG on 2018-11-30 00:00:00\n", - "Selling NXPI on 2018-11-30 00:00:00\n", - "Selling ON on 2018-11-30 00:00:00\n", - "Selling PAYC on 2018-11-30 00:00:00\n", - "Selling MU on 2018-11-30 00:00:00\n", - "Selling INTU on 2018-11-30 00:00:00\n", - "Selling MA on 2018-11-30 00:00:00\n", - "Selling PTC on 2018-11-30 00:00:00\n", - "Selling AMD on 2018-11-30 00:00:00\n", - "Selling PYPL on 2018-11-30 00:00:00\n", - "Selling ENPH on 2018-11-30 00:00:00\n", - "Selling ANET on 2018-11-30 00:00:00\n", - "Selling URI on 2018-11-30 00:00:00\n", - "Selling TTWO on 2018-11-30 00:00:00\n", - "Selling ADBE on 2018-11-30 00:00:00\n", - "Selling NOW on 2018-11-30 00:00:00\n", - "Selling ADSK on 2018-11-30 00:00:00\n", - "Selling WDAY on 2018-11-30 00:00:00\n", - "Selling CRM on 2018-11-30 00:00:00\n", - "Selling AMZN on 2018-11-30 00:00:00\n", - "Selling NFLX on 2018-11-30 00:00:00\n", - "Selling CZR on 2018-11-30 00:00:00\n", - "Selling NVDA on 2018-11-30 00:00:00\n", - "Buying NEM on 2018-12-31 00:00:00\n", - "Buying D on 2018-12-31 00:00:00\n", - "Buying AMCR on 2018-12-31 00:00:00\n", - "Buying PPL on 2018-12-31 00:00:00\n", - "Buying DTE on 2018-12-31 00:00:00\n", - "Buying AZO on 2018-12-31 00:00:00\n", - "Buying NI on 2018-12-31 00:00:00\n", - "Buying AEP on 2018-12-31 00:00:00\n", - "Buying SJM on 2018-12-31 00:00:00\n", - "Buying ED on 2018-12-31 00:00:00\n", - "Buying DUK on 2018-12-31 00:00:00\n", - "Buying MKTX on 2018-12-31 00:00:00\n", - "Buying EVRG on 2018-12-31 00:00:00\n", - "Buying ETR on 2018-12-31 00:00:00\n", - "Buying SO on 2018-12-31 00:00:00\n", - "Buying WEC on 2018-12-31 00:00:00\n", - "Buying CPB on 2018-12-31 00:00:00\n", - "Buying PSA on 2018-12-31 00:00:00\n", - "Buying ES on 2018-12-31 00:00:00\n", - "Buying PEG on 2018-12-31 00:00:00\n", - "Buying XEL on 2018-12-31 00:00:00\n", - "Buying CMS on 2018-12-31 00:00:00\n", - "Buying EXC on 2018-12-31 00:00:00\n", - "Buying NEE on 2018-12-31 00:00:00\n", - "Buying PNW on 2018-12-31 00:00:00\n", - "Buying GIS on 2018-12-31 00:00:00\n", - "Buying LNT on 2018-12-31 00:00:00\n", - "Buying VZ on 2018-12-31 00:00:00\n", - "Buying HSY on 2018-12-31 00:00:00\n", - "Buying AEE on 2018-12-31 00:00:00\n", - "Buying K on 2018-12-31 00:00:00\n", - "Buying SRE on 2018-12-31 00:00:00\n", - "Buying SMCI on 2018-12-31 00:00:00\n", - "Buying FE on 2018-12-31 00:00:00\n", - "Buying ATO on 2018-12-31 00:00:00\n", - "Buying PM on 2018-12-31 00:00:00\n", - "Buying MO on 2018-12-31 00:00:00\n", - "Buying CME on 2018-12-31 00:00:00\n", - "Buying LW on 2018-12-31 00:00:00\n", - "Buying EXR on 2018-12-31 00:00:00\n", - "Buying VTR on 2018-12-31 00:00:00\n", - "Buying CNP on 2018-12-31 00:00:00\n", - "Buying CBOE on 2018-12-31 00:00:00\n", - "Buying AWK on 2018-12-31 00:00:00\n", - "Buying KO on 2018-12-31 00:00:00\n", - "Buying ESS on 2018-12-31 00:00:00\n", - "Buying PEP on 2018-12-31 00:00:00\n", - "Buying KMB on 2018-12-31 00:00:00\n", - "Selling V on 2018-12-31 00:00:00\n", - "Selling FSLR on 2018-12-31 00:00:00\n", - "Selling TTWO on 2018-12-31 00:00:00\n", - "Selling EW on 2018-12-31 00:00:00\n", - "Selling FICO on 2018-12-31 00:00:00\n", - "Selling CRL on 2018-12-31 00:00:00\n", - "Selling NTAP on 2018-12-31 00:00:00\n", - "Selling KKR on 2018-12-31 00:00:00\n", - "Selling AAPL on 2018-12-31 00:00:00\n", - "Selling LVS on 2018-12-31 00:00:00\n", - "Selling KLAC on 2018-12-31 00:00:00\n", - "Selling FTNT on 2018-12-31 00:00:00\n", - "Selling DVN on 2018-12-31 00:00:00\n", - "Selling EPAM on 2018-12-31 00:00:00\n", - "Selling INTU on 2018-12-31 00:00:00\n", - "Selling CAT on 2018-12-31 00:00:00\n", - "Selling LULU on 2018-12-31 00:00:00\n", - "Selling DAY on 2018-12-31 00:00:00\n", - "Selling MSFT on 2018-12-31 00:00:00\n", - "Selling ALGN on 2018-12-31 00:00:00\n", - "Selling AMAT on 2018-12-31 00:00:00\n", - "Selling MGM on 2018-12-31 00:00:00\n", - "Selling PTC on 2018-12-31 00:00:00\n", - "Selling DXCM on 2018-12-31 00:00:00\n", - "Selling MA on 2018-12-31 00:00:00\n", - "Selling ENPH on 2018-12-31 00:00:00\n", - "Selling MPWR on 2018-12-31 00:00:00\n", - "Selling NXPI on 2018-12-31 00:00:00\n", - "Selling ON on 2018-12-31 00:00:00\n", - "Selling PAYC on 2018-12-31 00:00:00\n", - "Selling ISRG on 2018-12-31 00:00:00\n", - "Selling ZBRA on 2018-12-31 00:00:00\n", - "Selling HES on 2018-12-31 00:00:00\n", - "Selling PYPL on 2018-12-31 00:00:00\n", - "Selling WYNN on 2018-12-31 00:00:00\n", - "Selling MU on 2018-12-31 00:00:00\n", - "Selling URI on 2018-12-31 00:00:00\n", - "Selling ANET on 2018-12-31 00:00:00\n", - "Selling NOW on 2018-12-31 00:00:00\n", - "Selling ADSK on 2018-12-31 00:00:00\n", - "Selling WDAY on 2018-12-31 00:00:00\n", - "Selling CRM on 2018-12-31 00:00:00\n", - "Selling CZR on 2018-12-31 00:00:00\n", - "Selling ADBE on 2018-12-31 00:00:00\n", - "Selling NVDA on 2018-12-31 00:00:00\n", - "Selling AMD on 2018-12-31 00:00:00\n", - "Selling NFLX on 2018-12-31 00:00:00\n", - "Selling AMZN on 2018-12-31 00:00:00\n", - "Buying AMCR on 2019-01-31 00:00:00\n", - "Buying AZO on 2019-01-31 00:00:00\n", - "Buying NEM on 2019-01-31 00:00:00\n", - "Buying SMCI on 2019-01-31 00:00:00\n", - "Buying PSA on 2019-01-31 00:00:00\n", - "Buying SJM on 2019-01-31 00:00:00\n", - "Buying EVRG on 2019-01-31 00:00:00\n", - "Buying DUK on 2019-01-31 00:00:00\n", - "Buying D on 2019-01-31 00:00:00\n", - "Buying AEP on 2019-01-31 00:00:00\n", - "Buying ED on 2019-01-31 00:00:00\n", - "Buying DTE on 2019-01-31 00:00:00\n", - "Buying WEC on 2019-01-31 00:00:00\n", - "Buying CPB on 2019-01-31 00:00:00\n", - "Buying PPL on 2019-01-31 00:00:00\n", - "Buying ETR on 2019-01-31 00:00:00\n", - "Buying PNW on 2019-01-31 00:00:00\n", - "Buying HSY on 2019-01-31 00:00:00\n", - "Buying CMS on 2019-01-31 00:00:00\n", - "Buying CBOE on 2019-01-31 00:00:00\n", - "Buying NI on 2019-01-31 00:00:00\n", - "Buying VTR on 2019-01-31 00:00:00\n", - "Buying GIS on 2019-01-31 00:00:00\n", - "Buying VZ on 2019-01-31 00:00:00\n", - "Buying EXR on 2019-01-31 00:00:00\n", - "Buying EXC on 2019-01-31 00:00:00\n", - "Buying ES on 2019-01-31 00:00:00\n", - "Buying XEL on 2019-01-31 00:00:00\n", - "Buying SO on 2019-01-31 00:00:00\n", - "Buying NEE on 2019-01-31 00:00:00\n", - "Buying AMT on 2019-01-31 00:00:00\n", - "Buying LNT on 2019-01-31 00:00:00\n", - "Buying AEE on 2019-01-31 00:00:00\n", - "Buying CNP on 2019-01-31 00:00:00\n", - "Buying KO on 2019-01-31 00:00:00\n", - "Buying MKTX on 2019-01-31 00:00:00\n", - "Buying CHD on 2019-01-31 00:00:00\n", - "Buying PEG on 2019-01-31 00:00:00\n", - "Buying DOC on 2019-01-31 00:00:00\n", - "Buying KMB on 2019-01-31 00:00:00\n", - "Buying FE on 2019-01-31 00:00:00\n", - "Buying CME on 2019-01-31 00:00:00\n", - "Buying ATO on 2019-01-31 00:00:00\n", - "Buying LW on 2019-01-31 00:00:00\n", - "Buying ESS on 2019-01-31 00:00:00\n", - "Buying AWK on 2019-01-31 00:00:00\n", - "Buying K on 2019-01-31 00:00:00\n", - "Buying WELL on 2019-01-31 00:00:00\n", - "Selling MCHP on 2019-01-31 00:00:00\n", - "Selling RVTY on 2019-01-31 00:00:00\n", - "Selling WDC on 2019-01-31 00:00:00\n", - "Selling DVN on 2019-01-31 00:00:00\n", - "Selling PTC on 2019-01-31 00:00:00\n", - "Selling CRL on 2019-01-31 00:00:00\n", - "Selling EW on 2019-01-31 00:00:00\n", - "Selling SWKS on 2019-01-31 00:00:00\n", - "Selling TPL on 2019-01-31 00:00:00\n", - "Selling DAY on 2019-01-31 00:00:00\n", - "Selling MSFT on 2019-01-31 00:00:00\n", - "Selling LULU on 2019-01-31 00:00:00\n", - "Selling BA on 2019-01-31 00:00:00\n", - "Selling LVS on 2019-01-31 00:00:00\n", - "Selling KLAC on 2019-01-31 00:00:00\n", - "Selling MGM on 2019-01-31 00:00:00\n", - "Selling MOH on 2019-01-31 00:00:00\n", - "Selling BSX on 2019-01-31 00:00:00\n", - "Selling AMAT on 2019-01-31 00:00:00\n", - "Selling MA on 2019-01-31 00:00:00\n", - "Selling MPWR on 2019-01-31 00:00:00\n", - "Selling PYPL on 2019-01-31 00:00:00\n", - "Selling FICO on 2019-01-31 00:00:00\n", - "Selling ENPH on 2019-01-31 00:00:00\n", - "Selling CAT on 2019-01-31 00:00:00\n", - "Selling PAYC on 2019-01-31 00:00:00\n", - "Selling WYNN on 2019-01-31 00:00:00\n", - "Selling DXCM on 2019-01-31 00:00:00\n", - "Selling ISRG on 2019-01-31 00:00:00\n", - "Selling ON on 2019-01-31 00:00:00\n", - "Selling FCX on 2019-01-31 00:00:00\n", - "Selling ANET on 2019-01-31 00:00:00\n", - "Selling ZBRA on 2019-01-31 00:00:00\n", - "Selling URI on 2019-01-31 00:00:00\n", - "Selling AAPL on 2019-01-31 00:00:00\n", - "Selling ADSK on 2019-01-31 00:00:00\n", - "Selling WDAY on 2019-01-31 00:00:00\n", - "Selling ADBE on 2019-01-31 00:00:00\n", - "Selling CZR on 2019-01-31 00:00:00\n", - "Selling CRM on 2019-01-31 00:00:00\n", - "Selling NVDA on 2019-01-31 00:00:00\n", - "Selling ALGN on 2019-01-31 00:00:00\n", - "Selling HES on 2019-01-31 00:00:00\n", - "Selling NFLX on 2019-01-31 00:00:00\n", - "Selling NOW on 2019-01-31 00:00:00\n", - "Selling MU on 2019-01-31 00:00:00\n", - "Selling AMZN on 2019-01-31 00:00:00\n", - "Selling AMD on 2019-01-31 00:00:00\n", - "Buying AMCR on 2019-02-28 00:00:00\n", - "Buying NEM on 2019-02-28 00:00:00\n", - "Buying AZO on 2019-02-28 00:00:00\n", - "Buying PSA on 2019-02-28 00:00:00\n", - "Buying PCG on 2019-02-28 00:00:00\n", - "Buying EVRG on 2019-02-28 00:00:00\n", - "Buying DTE on 2019-02-28 00:00:00\n", - "Buying DUK on 2019-02-28 00:00:00\n", - "Buying HSY on 2019-02-28 00:00:00\n", - "Buying EXC on 2019-02-28 00:00:00\n", - "Buying AEP on 2019-02-28 00:00:00\n", - "Buying ETR on 2019-02-28 00:00:00\n", - "Buying SO on 2019-02-28 00:00:00\n", - "Buying PNW on 2019-02-28 00:00:00\n", - "Buying ED on 2019-02-28 00:00:00\n", - "Buying D on 2019-02-28 00:00:00\n", - "Buying VTR on 2019-02-28 00:00:00\n", - "Buying CNP on 2019-02-28 00:00:00\n", - "Buying WEC on 2019-02-28 00:00:00\n", - "Buying EXR on 2019-02-28 00:00:00\n", - "Buying ES on 2019-02-28 00:00:00\n", - "Buying CMS on 2019-02-28 00:00:00\n", - "Buying NI on 2019-02-28 00:00:00\n", - "Buying ATO on 2019-02-28 00:00:00\n", - "Buying SRE on 2019-02-28 00:00:00\n", - "Buying NEE on 2019-02-28 00:00:00\n", - "Buying MCD on 2019-02-28 00:00:00\n", - "Buying AMT on 2019-02-28 00:00:00\n", - "Buying VZ on 2019-02-28 00:00:00\n", - "Buying KDP on 2019-02-28 00:00:00\n", - "Buying LNT on 2019-02-28 00:00:00\n", - "Buying KO on 2019-02-28 00:00:00\n", - "Buying PEG on 2019-02-28 00:00:00\n", - "Buying CME on 2019-02-28 00:00:00\n", - "Buying LW on 2019-02-28 00:00:00\n", - "Buying DOC on 2019-02-28 00:00:00\n", - "Buying CCI on 2019-02-28 00:00:00\n", - "Buying XEL on 2019-02-28 00:00:00\n", - "Buying PPL on 2019-02-28 00:00:00\n", - "Buying ESS on 2019-02-28 00:00:00\n", - "Buying FE on 2019-02-28 00:00:00\n", - "Buying SMCI on 2019-02-28 00:00:00\n", - "Buying AEE on 2019-02-28 00:00:00\n", - "Buying EG on 2019-02-28 00:00:00\n", - "Buying SBAC on 2019-02-28 00:00:00\n", - "Buying AWK on 2019-02-28 00:00:00\n", - "Buying CPT on 2019-02-28 00:00:00\n", - "Buying CBOE on 2019-02-28 00:00:00\n", - "Selling PYPL on 2019-02-28 00:00:00\n", - "Selling MSFT on 2019-02-28 00:00:00\n", - "Selling MA on 2019-02-28 00:00:00\n", - "Selling LVS on 2019-02-28 00:00:00\n", - "Selling ULTA on 2019-02-28 00:00:00\n", - "Selling BSX on 2019-02-28 00:00:00\n", - "Selling META on 2019-02-28 00:00:00\n", - "Selling NCLH on 2019-02-28 00:00:00\n", - "Selling STX on 2019-02-28 00:00:00\n", - "Selling SWKS on 2019-02-28 00:00:00\n", - "Selling FICO on 2019-02-28 00:00:00\n", - "Selling RVTY on 2019-02-28 00:00:00\n", - "Selling PAYC on 2019-02-28 00:00:00\n", - "Selling CZR on 2019-02-28 00:00:00\n", - "Selling DVN on 2019-02-28 00:00:00\n", - "Selling SWK on 2019-02-28 00:00:00\n", - "Selling MCHP on 2019-02-28 00:00:00\n", - "Selling DXCM on 2019-02-28 00:00:00\n", - "Selling RCL on 2019-02-28 00:00:00\n", - "Selling NXPI on 2019-02-28 00:00:00\n", - "Selling MGM on 2019-02-28 00:00:00\n", - "Selling BA on 2019-02-28 00:00:00\n", - "Selling CAT on 2019-02-28 00:00:00\n", - "Selling ISRG on 2019-02-28 00:00:00\n", - "Selling KLAC on 2019-02-28 00:00:00\n", - "Selling BLDR on 2019-02-28 00:00:00\n", - "Selling MPWR on 2019-02-28 00:00:00\n", - "Selling CRM on 2019-02-28 00:00:00\n", - "Selling WDAY on 2019-02-28 00:00:00\n", - "Selling FCX on 2019-02-28 00:00:00\n", - "Selling AMAT on 2019-02-28 00:00:00\n", - "Selling ADBE on 2019-02-28 00:00:00\n", - "Selling ZBRA on 2019-02-28 00:00:00\n", - "Selling WDC on 2019-02-28 00:00:00\n", - "Selling AAPL on 2019-02-28 00:00:00\n", - "Selling ADSK on 2019-02-28 00:00:00\n", - "Selling NOW on 2019-02-28 00:00:00\n", - "Selling WYNN on 2019-02-28 00:00:00\n", - "Selling ON on 2019-02-28 00:00:00\n", - "Selling ALGN on 2019-02-28 00:00:00\n", - "Selling ANET on 2019-02-28 00:00:00\n", - "Selling URI on 2019-02-28 00:00:00\n", - "Selling NFLX on 2019-02-28 00:00:00\n", - "Selling AMZN on 2019-02-28 00:00:00\n", - "Selling NVDA on 2019-02-28 00:00:00\n", - "Selling MU on 2019-02-28 00:00:00\n", - "Selling HES on 2019-02-28 00:00:00\n", - "Selling AMD on 2019-02-28 00:00:00\n", - "Buying PCG on 2019-03-31 00:00:00\n", - "Buying PSA on 2019-03-31 00:00:00\n", - "Buying AMCR on 2019-03-31 00:00:00\n", - "Buying VTR on 2019-03-31 00:00:00\n", - "Buying DOC on 2019-03-31 00:00:00\n", - "Buying MAA on 2019-03-31 00:00:00\n", - "Buying EVRG on 2019-03-31 00:00:00\n", - "Buying EXR on 2019-03-31 00:00:00\n", - "Buying EQR on 2019-03-31 00:00:00\n", - "Buying CPT on 2019-03-31 00:00:00\n", - "Buying UDR on 2019-03-31 00:00:00\n", - "Buying WELL on 2019-03-31 00:00:00\n", - "Buying O on 2019-03-31 00:00:00\n", - "Buying HSY on 2019-03-31 00:00:00\n", - "Buying VICI on 2019-03-31 00:00:00\n", - "Buying ESS on 2019-03-31 00:00:00\n", - "Buying NVR on 2019-03-31 00:00:00\n", - "Buying AZO on 2019-03-31 00:00:00\n", - "Buying SO on 2019-03-31 00:00:00\n", - "Buying AVB on 2019-03-31 00:00:00\n", - "Buying CPB on 2019-03-31 00:00:00\n", - "Buying WEC on 2019-03-31 00:00:00\n", - "Buying AWK on 2019-03-31 00:00:00\n", - "Buying SBAC on 2019-03-31 00:00:00\n", - "Buying DUK on 2019-03-31 00:00:00\n", - "Buying DTE on 2019-03-31 00:00:00\n", - "Buying PNW on 2019-03-31 00:00:00\n", - "Buying CMS on 2019-03-31 00:00:00\n", - "Buying AEP on 2019-03-31 00:00:00\n", - "Buying XEL on 2019-03-31 00:00:00\n", - "Buying ES on 2019-03-31 00:00:00\n", - "Buying REG on 2019-03-31 00:00:00\n", - "Buying CCI on 2019-03-31 00:00:00\n", - "Buying ATO on 2019-03-31 00:00:00\n", - "Buying DLTR on 2019-03-31 00:00:00\n", - "Buying PEG on 2019-03-31 00:00:00\n", - "Buying ED on 2019-03-31 00:00:00\n", - "Buying CMG on 2019-03-31 00:00:00\n", - "Buying AMT on 2019-03-31 00:00:00\n", - "Buying EXC on 2019-03-31 00:00:00\n", - "Buying AEE on 2019-03-31 00:00:00\n", - "Buying INVH on 2019-03-31 00:00:00\n", - "Buying FE on 2019-03-31 00:00:00\n", - "Buying ETR on 2019-03-31 00:00:00\n", - "Buying VZ on 2019-03-31 00:00:00\n", - "Buying FRT on 2019-03-31 00:00:00\n", - "Buying LNT on 2019-03-31 00:00:00\n", - "Buying ORLY on 2019-03-31 00:00:00\n", - "Selling ISRG on 2019-03-31 00:00:00\n", - "Selling TRMB on 2019-03-31 00:00:00\n", - "Selling EW on 2019-03-31 00:00:00\n", - "Selling BWA on 2019-03-31 00:00:00\n", - "Selling HPQ on 2019-03-31 00:00:00\n", - "Selling EA on 2019-03-31 00:00:00\n", - "Selling WDAY on 2019-03-31 00:00:00\n", - "Selling LRCX on 2019-03-31 00:00:00\n", - "Selling KKR on 2019-03-31 00:00:00\n", - "Selling TECH on 2019-03-31 00:00:00\n", - "Selling CRL on 2019-03-31 00:00:00\n", - "Selling HWM on 2019-03-31 00:00:00\n", - "Selling RVTY on 2019-03-31 00:00:00\n", - "Selling ZBRA on 2019-03-31 00:00:00\n", - "Selling TER on 2019-03-31 00:00:00\n", - "Selling HAL on 2019-03-31 00:00:00\n", - "Selling CRM on 2019-03-31 00:00:00\n", - "Selling TPR on 2019-03-31 00:00:00\n", - "Selling RCL on 2019-03-31 00:00:00\n", - "Selling AMZN on 2019-03-31 00:00:00\n", - "Selling NFLX on 2019-03-31 00:00:00\n", - "Selling BMY on 2019-03-31 00:00:00\n", - "Selling MOS on 2019-03-31 00:00:00\n", - "Selling HES on 2019-03-31 00:00:00\n", - "Selling KLAC on 2019-03-31 00:00:00\n", - "Selling ADSK on 2019-03-31 00:00:00\n", - "Selling MPWR on 2019-03-31 00:00:00\n", - "Selling MCHP on 2019-03-31 00:00:00\n", - "Selling CAT on 2019-03-31 00:00:00\n", - "Selling AMAT on 2019-03-31 00:00:00\n", - "Selling AXON on 2019-03-31 00:00:00\n", - "Selling CF on 2019-03-31 00:00:00\n", - "Selling MRNA on 2019-03-31 00:00:00\n", - "Selling AAPL on 2019-03-31 00:00:00\n", - "Selling APO on 2019-03-31 00:00:00\n", - "Selling SWK on 2019-03-31 00:00:00\n", - "Selling NOW on 2019-03-31 00:00:00\n", - "Selling SWKS on 2019-03-31 00:00:00\n", - "Selling ANET on 2019-03-31 00:00:00\n", - "Selling STX on 2019-03-31 00:00:00\n", - "Selling ON on 2019-03-31 00:00:00\n", - "Selling URI on 2019-03-31 00:00:00\n", - "Selling FCX on 2019-03-31 00:00:00\n", - "Selling ALGN on 2019-03-31 00:00:00\n", - "Selling MU on 2019-03-31 00:00:00\n", - "Selling WDC on 2019-03-31 00:00:00\n", - "Selling NVDA on 2019-03-31 00:00:00\n", - "Selling AMD on 2019-03-31 00:00:00\n", - "Buying CMG on 2019-04-30 00:00:00\n", - "Buying NVR on 2019-04-30 00:00:00\n", - "Buying DLTR on 2019-04-30 00:00:00\n", - "Buying EVRG on 2019-04-30 00:00:00\n", - "Buying XEL on 2019-04-30 00:00:00\n", - "Buying NEE on 2019-04-30 00:00:00\n", - "Buying DTE on 2019-04-30 00:00:00\n", - "Buying DUK on 2019-04-30 00:00:00\n", - "Buying AEP on 2019-04-30 00:00:00\n", - "Buying WEC on 2019-04-30 00:00:00\n", - "Buying ES on 2019-04-30 00:00:00\n", - "Buying EXC on 2019-04-30 00:00:00\n", - "Buying PNW on 2019-04-30 00:00:00\n", - "Buying SO on 2019-04-30 00:00:00\n", - "Buying PEG on 2019-04-30 00:00:00\n", - "Buying NI on 2019-04-30 00:00:00\n", - "Buying LNT on 2019-04-30 00:00:00\n", - "Buying CMS on 2019-04-30 00:00:00\n", - "Buying AEE on 2019-04-30 00:00:00\n", - "Buying PHM on 2019-04-30 00:00:00\n", - "Buying MNST on 2019-04-30 00:00:00\n", - "Buying AWK on 2019-04-30 00:00:00\n", - "Buying KMB on 2019-04-30 00:00:00\n", - "Buying CPB on 2019-04-30 00:00:00\n", - "Buying FE on 2019-04-30 00:00:00\n", - "Buying CHD on 2019-04-30 00:00:00\n", - "Buying ED on 2019-04-30 00:00:00\n", - "Buying VICI on 2019-04-30 00:00:00\n", - "Buying KHC on 2019-04-30 00:00:00\n", - "Buying ATO on 2019-04-30 00:00:00\n", - "Buying HRL on 2019-04-30 00:00:00\n", - "Buying PSA on 2019-04-30 00:00:00\n", - "Buying AMCR on 2019-04-30 00:00:00\n", - "Buying PPL on 2019-04-30 00:00:00\n", - "Buying ETR on 2019-04-30 00:00:00\n", - "Buying D on 2019-04-30 00:00:00\n", - "Buying VZ on 2019-04-30 00:00:00\n", - "Buying CPT on 2019-04-30 00:00:00\n", - "Buying AVB on 2019-04-30 00:00:00\n", - "Buying UDR on 2019-04-30 00:00:00\n", - "Buying HSY on 2019-04-30 00:00:00\n", - "Buying MAA on 2019-04-30 00:00:00\n", - "Buying EQR on 2019-04-30 00:00:00\n", - "Buying ESS on 2019-04-30 00:00:00\n", - "Buying CLX on 2019-04-30 00:00:00\n", - "Buying LW on 2019-04-30 00:00:00\n", - "Buying SJM on 2019-04-30 00:00:00\n", - "Buying O on 2019-04-30 00:00:00\n", - "Selling APTV on 2019-04-30 00:00:00\n", - "Selling MOS on 2019-04-30 00:00:00\n", - "Selling SWKS on 2019-04-30 00:00:00\n", - "Selling NTAP on 2019-04-30 00:00:00\n", - "Selling ZBRA on 2019-04-30 00:00:00\n", - "Selling AMP on 2019-04-30 00:00:00\n", - "Selling MCHP on 2019-04-30 00:00:00\n", - "Selling HES on 2019-04-30 00:00:00\n", - "Selling SCHW on 2019-04-30 00:00:00\n", - "Selling F on 2019-04-30 00:00:00\n", - "Selling MRNA on 2019-04-30 00:00:00\n", - "Selling PH on 2019-04-30 00:00:00\n", - "Selling MPWR on 2019-04-30 00:00:00\n", - "Selling PFG on 2019-04-30 00:00:00\n", - "Selling PRU on 2019-04-30 00:00:00\n", - "Selling MCK on 2019-04-30 00:00:00\n", - "Selling CVS on 2019-04-30 00:00:00\n", - "Selling IVZ on 2019-04-30 00:00:00\n", - "Selling EMN on 2019-04-30 00:00:00\n", - "Selling APO on 2019-04-30 00:00:00\n", - "Selling SLB on 2019-04-30 00:00:00\n", - "Selling EOG on 2019-04-30 00:00:00\n", - "Selling DELL on 2019-04-30 00:00:00\n", - "Selling ON on 2019-04-30 00:00:00\n", - "Selling EQT on 2019-04-30 00:00:00\n", - "Selling FCX on 2019-04-30 00:00:00\n", - "Selling WYNN on 2019-04-30 00:00:00\n", - "Selling APA on 2019-04-30 00:00:00\n", - "Selling STX on 2019-04-30 00:00:00\n", - "Selling TPR on 2019-04-30 00:00:00\n", - "Selling NXPI on 2019-04-30 00:00:00\n", - "Selling PNR on 2019-04-30 00:00:00\n", - "Selling HPQ on 2019-04-30 00:00:00\n", - "Selling HAL on 2019-04-30 00:00:00\n", - "Selling FANG on 2019-04-30 00:00:00\n", - "Selling CE on 2019-04-30 00:00:00\n", - "Selling SMCI on 2019-04-30 00:00:00\n", - "Selling ANET on 2019-04-30 00:00:00\n", - "Selling STLD on 2019-04-30 00:00:00\n", - "Selling AXON on 2019-04-30 00:00:00\n", - "Selling DVN on 2019-04-30 00:00:00\n", - "Selling BWA on 2019-04-30 00:00:00\n", - "Selling AMD on 2019-04-30 00:00:00\n", - "Selling MU on 2019-04-30 00:00:00\n", - "Selling NVDA on 2019-04-30 00:00:00\n", - "Selling URI on 2019-04-30 00:00:00\n", - "Selling ALGN on 2019-04-30 00:00:00\n", - "Selling WDC on 2019-04-30 00:00:00\n", - "Buying NEM on 2019-05-31 00:00:00\n", - "Buying AEP on 2019-05-31 00:00:00\n", - "Buying NEE on 2019-05-31 00:00:00\n", - "Buying WEC on 2019-05-31 00:00:00\n", - "Buying AEE on 2019-05-31 00:00:00\n", - "Buying ES on 2019-05-31 00:00:00\n", - "Buying DTE on 2019-05-31 00:00:00\n", - "Buying PNW on 2019-05-31 00:00:00\n", - "Buying XEL on 2019-05-31 00:00:00\n", - "Buying CMS on 2019-05-31 00:00:00\n", - "Buying AWK on 2019-05-31 00:00:00\n", - "Buying ETR on 2019-05-31 00:00:00\n", - "Buying SO on 2019-05-31 00:00:00\n", - "Buying EVRG on 2019-05-31 00:00:00\n", - "Buying PEG on 2019-05-31 00:00:00\n", - "Buying EXC on 2019-05-31 00:00:00\n", - "Buying PSA on 2019-05-31 00:00:00\n", - "Buying ED on 2019-05-31 00:00:00\n", - "Buying D on 2019-05-31 00:00:00\n", - "Buying LNT on 2019-05-31 00:00:00\n", - "Buying FE on 2019-05-31 00:00:00\n", - "Buying DUK on 2019-05-31 00:00:00\n", - "Buying ATO on 2019-05-31 00:00:00\n", - "Buying HSY on 2019-05-31 00:00:00\n", - "Buying NI on 2019-05-31 00:00:00\n", - "Buying BIIB on 2019-05-31 00:00:00\n", - "Buying EXR on 2019-05-31 00:00:00\n", - "Buying CPB on 2019-05-31 00:00:00\n", - "Buying PPL on 2019-05-31 00:00:00\n", - "Buying GIS on 2019-05-31 00:00:00\n", - "Buying SJM on 2019-05-31 00:00:00\n", - "Buying ESS on 2019-05-31 00:00:00\n", - "Buying CME on 2019-05-31 00:00:00\n", - "Buying WELL on 2019-05-31 00:00:00\n", - "Buying DPZ on 2019-05-31 00:00:00\n", - "Buying CNP on 2019-05-31 00:00:00\n", - "Buying AMT on 2019-05-31 00:00:00\n", - "Buying DOC on 2019-05-31 00:00:00\n", - "Buying VZ on 2019-05-31 00:00:00\n", - "Buying KMB on 2019-05-31 00:00:00\n", - "Buying HRL on 2019-05-31 00:00:00\n", - "Buying EG on 2019-05-31 00:00:00\n", - "Buying CHD on 2019-05-31 00:00:00\n", - "Buying LLY on 2019-05-31 00:00:00\n", - "Buying LW on 2019-05-31 00:00:00\n", - "Buying CLX on 2019-05-31 00:00:00\n", - "Buying MAA on 2019-05-31 00:00:00\n", - "Buying SRE on 2019-05-31 00:00:00\n", - "Selling C on 2019-05-31 00:00:00\n", - "Selling ROK on 2019-05-31 00:00:00\n", - "Selling VLO on 2019-05-31 00:00:00\n", - "Selling TXT on 2019-05-31 00:00:00\n", - "Selling TROW on 2019-05-31 00:00:00\n", - "Selling SWK on 2019-05-31 00:00:00\n", - "Selling MPWR on 2019-05-31 00:00:00\n", - "Selling PAYC on 2019-05-31 00:00:00\n", - "Selling PFG on 2019-05-31 00:00:00\n", - "Selling CF on 2019-05-31 00:00:00\n", - "Selling MOS on 2019-05-31 00:00:00\n", - "Selling EMN on 2019-05-31 00:00:00\n", - "Selling BWA on 2019-05-31 00:00:00\n", - "Selling HPQ on 2019-05-31 00:00:00\n", - "Selling APA on 2019-05-31 00:00:00\n", - "Selling SWKS on 2019-05-31 00:00:00\n", - "Selling PRU on 2019-05-31 00:00:00\n", - "Selling PH on 2019-05-31 00:00:00\n", - "Selling FTNT on 2019-05-31 00:00:00\n", - "Selling KEYS on 2019-05-31 00:00:00\n", - "Selling EPAM on 2019-05-31 00:00:00\n", - "Selling WDAY on 2019-05-31 00:00:00\n", - "Selling ADSK on 2019-05-31 00:00:00\n", - "Selling CE on 2019-05-31 00:00:00\n", - "Selling BLDR on 2019-05-31 00:00:00\n", - "Selling AMAT on 2019-05-31 00:00:00\n", - "Selling STLD on 2019-05-31 00:00:00\n", - "Selling KKR on 2019-05-31 00:00:00\n", - "Selling JBL on 2019-05-31 00:00:00\n", - "Selling FCX on 2019-05-31 00:00:00\n", - "Selling MCHP on 2019-05-31 00:00:00\n", - "Selling APO on 2019-05-31 00:00:00\n", - "Selling ON on 2019-05-31 00:00:00\n", - "Selling NTAP on 2019-05-31 00:00:00\n", - "Selling IVZ on 2019-05-31 00:00:00\n", - "Selling MU on 2019-05-31 00:00:00\n", - "Selling DVN on 2019-05-31 00:00:00\n", - "Selling ZBRA on 2019-05-31 00:00:00\n", - "Selling STX on 2019-05-31 00:00:00\n", - "Selling DELL on 2019-05-31 00:00:00\n", - "Selling WYNN on 2019-05-31 00:00:00\n", - "Selling URI on 2019-05-31 00:00:00\n", - "Selling NVDA on 2019-05-31 00:00:00\n", - "Selling NXPI on 2019-05-31 00:00:00\n", - "Selling ALGN on 2019-05-31 00:00:00\n", - "Selling AMD on 2019-05-31 00:00:00\n", - "Selling VTRS on 2019-05-31 00:00:00\n", - "Selling WDC on 2019-05-31 00:00:00\n", - "Buying NEM on 2019-06-30 00:00:00\n", - "Buying AEP on 2019-06-30 00:00:00\n", - "Buying AWK on 2019-06-30 00:00:00\n", - "Buying PSA on 2019-06-30 00:00:00\n", - "Buying ATO on 2019-06-30 00:00:00\n", - "Buying CMS on 2019-06-30 00:00:00\n", - "Buying ES on 2019-06-30 00:00:00\n", - "Buying AEE on 2019-06-30 00:00:00\n", - "Buying WEC on 2019-06-30 00:00:00\n", - "Buying SO on 2019-06-30 00:00:00\n", - "Buying PNW on 2019-06-30 00:00:00\n", - "Buying EG on 2019-06-30 00:00:00\n", - "Buying ETR on 2019-06-30 00:00:00\n", - "Buying NEE on 2019-06-30 00:00:00\n", - "Buying SJM on 2019-06-30 00:00:00\n", - "Buying DTE on 2019-06-30 00:00:00\n", - "Buying EXR on 2019-06-30 00:00:00\n", - "Buying EVRG on 2019-06-30 00:00:00\n", - "Buying LNT on 2019-06-30 00:00:00\n", - "Buying ED on 2019-06-30 00:00:00\n", - "Buying D on 2019-06-30 00:00:00\n", - "Buying NI on 2019-06-30 00:00:00\n", - "Buying DUK on 2019-06-30 00:00:00\n", - "Buying MKC on 2019-06-30 00:00:00\n", - "Buying WELL on 2019-06-30 00:00:00\n", - "Buying XEL on 2019-06-30 00:00:00\n", - "Buying PEG on 2019-06-30 00:00:00\n", - "Buying DOC on 2019-06-30 00:00:00\n", - "Buying CHD on 2019-06-30 00:00:00\n", - "Buying FE on 2019-06-30 00:00:00\n", - "Buying CBOE on 2019-06-30 00:00:00\n", - "Buying EXC on 2019-06-30 00:00:00\n", - "Buying HSY on 2019-06-30 00:00:00\n", - "Buying GIS on 2019-06-30 00:00:00\n", - "Buying AMT on 2019-06-30 00:00:00\n", - "Buying LW on 2019-06-30 00:00:00\n", - "Buying CNP on 2019-06-30 00:00:00\n", - "Buying PPL on 2019-06-30 00:00:00\n", - "Buying KMB on 2019-06-30 00:00:00\n", - "Buying CLX on 2019-06-30 00:00:00\n", - "Buying VTR on 2019-06-30 00:00:00\n", - "Buying ESS on 2019-06-30 00:00:00\n", - "Buying CPT on 2019-06-30 00:00:00\n", - "Buying CCI on 2019-06-30 00:00:00\n", - "Buying SRE on 2019-06-30 00:00:00\n", - "Buying VZ on 2019-06-30 00:00:00\n", - "Buying CME on 2019-06-30 00:00:00\n", - "Buying MAA on 2019-06-30 00:00:00\n", - "Selling FTNT on 2019-06-30 00:00:00\n", - "Selling KKR on 2019-06-30 00:00:00\n", - "Selling APO on 2019-06-30 00:00:00\n", - "Selling MSCI on 2019-06-30 00:00:00\n", - "Selling APTV on 2019-06-30 00:00:00\n", - "Selling PH on 2019-06-30 00:00:00\n", - "Selling CRM on 2019-06-30 00:00:00\n", - "Selling STX on 2019-06-30 00:00:00\n", - "Selling MPWR on 2019-06-30 00:00:00\n", - "Selling SWK on 2019-06-30 00:00:00\n", - "Selling ADBE on 2019-06-30 00:00:00\n", - "Selling MGM on 2019-06-30 00:00:00\n", - "Selling FCX on 2019-06-30 00:00:00\n", - "Selling AMAT on 2019-06-30 00:00:00\n", - "Selling ADI on 2019-06-30 00:00:00\n", - "Selling IVZ on 2019-06-30 00:00:00\n", - "Selling CZR on 2019-06-30 00:00:00\n", - "Selling DVN on 2019-06-30 00:00:00\n", - "Selling TSLA on 2019-06-30 00:00:00\n", - "Selling TXT on 2019-06-30 00:00:00\n", - "Selling DELL on 2019-06-30 00:00:00\n", - "Selling ADSK on 2019-06-30 00:00:00\n", - "Selling MCHP on 2019-06-30 00:00:00\n", - "Selling MU on 2019-06-30 00:00:00\n", - "Selling JBL on 2019-06-30 00:00:00\n", - "Selling LVS on 2019-06-30 00:00:00\n", - "Selling NOW on 2019-06-30 00:00:00\n", - "Selling HAS on 2019-06-30 00:00:00\n", - "Selling NTAP on 2019-06-30 00:00:00\n", - "Selling LRCX on 2019-06-30 00:00:00\n", - "Selling PTC on 2019-06-30 00:00:00\n", - "Selling DAY on 2019-06-30 00:00:00\n", - "Selling BLDR on 2019-06-30 00:00:00\n", - "Selling APA on 2019-06-30 00:00:00\n", - "Selling WDAY on 2019-06-30 00:00:00\n", - "Selling ON on 2019-06-30 00:00:00\n", - "Selling ALGN on 2019-06-30 00:00:00\n", - "Selling AMD on 2019-06-30 00:00:00\n", - "Selling PAYC on 2019-06-30 00:00:00\n", - "Selling NVDA on 2019-06-30 00:00:00\n", - "Selling KEYS on 2019-06-30 00:00:00\n", - "Selling URI on 2019-06-30 00:00:00\n", - "Selling NXPI on 2019-06-30 00:00:00\n", - "Selling WDC on 2019-06-30 00:00:00\n", - "Selling ZBRA on 2019-06-30 00:00:00\n", - "Selling WYNN on 2019-06-30 00:00:00\n", - "Selling PCG on 2019-06-30 00:00:00\n", - "Selling VTRS on 2019-06-30 00:00:00\n", - "Buying ETR on 2019-07-31 00:00:00\n", - "Buying LW on 2019-07-31 00:00:00\n", - "Buying ATO on 2019-07-31 00:00:00\n", - "Buying PNW on 2019-07-31 00:00:00\n", - "Buying AWK on 2019-07-31 00:00:00\n", - "Buying SO on 2019-07-31 00:00:00\n", - "Buying NEM on 2019-07-31 00:00:00\n", - "Buying AEP on 2019-07-31 00:00:00\n", - "Buying CMS on 2019-07-31 00:00:00\n", - "Buying PSA on 2019-07-31 00:00:00\n", - "Buying AEE on 2019-07-31 00:00:00\n", - "Buying WEC on 2019-07-31 00:00:00\n", - "Buying ES on 2019-07-31 00:00:00\n", - "Buying LNT on 2019-07-31 00:00:00\n", - "Buying D on 2019-07-31 00:00:00\n", - "Buying DTE on 2019-07-31 00:00:00\n", - "Buying ED on 2019-07-31 00:00:00\n", - "Buying NEE on 2019-07-31 00:00:00\n", - "Buying AMT on 2019-07-31 00:00:00\n", - "Buying NI on 2019-07-31 00:00:00\n", - "Buying DOC on 2019-07-31 00:00:00\n", - "Buying EVRG on 2019-07-31 00:00:00\n", - "Buying DUK on 2019-07-31 00:00:00\n", - "Buying ENPH on 2019-07-31 00:00:00\n", - "Buying FE on 2019-07-31 00:00:00\n", - "Buying EXC on 2019-07-31 00:00:00\n", - "Buying EXR on 2019-07-31 00:00:00\n", - "Buying HSY on 2019-07-31 00:00:00\n", - "Buying WELL on 2019-07-31 00:00:00\n", - "Buying EG on 2019-07-31 00:00:00\n", - "Buying CNP on 2019-07-31 00:00:00\n", - "Buying XEL on 2019-07-31 00:00:00\n", - "Buying SJM on 2019-07-31 00:00:00\n", - "Buying AMCR on 2019-07-31 00:00:00\n", - "Buying PEG on 2019-07-31 00:00:00\n", - "Buying LHX on 2019-07-31 00:00:00\n", - "Buying SRE on 2019-07-31 00:00:00\n", - "Buying PPL on 2019-07-31 00:00:00\n", - "Buying EIX on 2019-07-31 00:00:00\n", - "Buying CCI on 2019-07-31 00:00:00\n", - "Buying VTR on 2019-07-31 00:00:00\n", - "Buying CLX on 2019-07-31 00:00:00\n", - "Buying CHD on 2019-07-31 00:00:00\n", - "Buying CBOE on 2019-07-31 00:00:00\n", - "Buying MKC on 2019-07-31 00:00:00\n", - "Buying GIS on 2019-07-31 00:00:00\n", - "Buying MCD on 2019-07-31 00:00:00\n", - "Buying RSG on 2019-07-31 00:00:00\n", - "Selling ANET on 2019-07-31 00:00:00\n", - "Selling CDNS on 2019-07-31 00:00:00\n", - "Selling CRM on 2019-07-31 00:00:00\n", - "Selling IVZ on 2019-07-31 00:00:00\n", - "Selling ADBE on 2019-07-31 00:00:00\n", - "Selling TXN on 2019-07-31 00:00:00\n", - "Selling MGM on 2019-07-31 00:00:00\n", - "Selling KKR on 2019-07-31 00:00:00\n", - "Selling HAS on 2019-07-31 00:00:00\n", - "Selling CZR on 2019-07-31 00:00:00\n", - "Selling JBL on 2019-07-31 00:00:00\n", - "Selling AVGO on 2019-07-31 00:00:00\n", - "Selling PAYC on 2019-07-31 00:00:00\n", - "Selling FTNT on 2019-07-31 00:00:00\n", - "Selling DELL on 2019-07-31 00:00:00\n", - "Selling SWK on 2019-07-31 00:00:00\n", - "Selling KLAC on 2019-07-31 00:00:00\n", - "Selling DAY on 2019-07-31 00:00:00\n", - "Selling APO on 2019-07-31 00:00:00\n", - "Selling NTAP on 2019-07-31 00:00:00\n", - "Selling STX on 2019-07-31 00:00:00\n", - "Selling ALGN on 2019-07-31 00:00:00\n", - "Selling ADSK on 2019-07-31 00:00:00\n", - "Selling AMAT on 2019-07-31 00:00:00\n", - "Selling ADI on 2019-07-31 00:00:00\n", - "Selling LVS on 2019-07-31 00:00:00\n", - "Selling LRCX on 2019-07-31 00:00:00\n", - "Selling WDAY on 2019-07-31 00:00:00\n", - "Selling TXT on 2019-07-31 00:00:00\n", - "Selling SWKS on 2019-07-31 00:00:00\n", - "Selling PCG on 2019-07-31 00:00:00\n", - "Selling TSLA on 2019-07-31 00:00:00\n", - "Selling NOW on 2019-07-31 00:00:00\n", - "Selling TER on 2019-07-31 00:00:00\n", - "Selling MCHP on 2019-07-31 00:00:00\n", - "Selling MU on 2019-07-31 00:00:00\n", - "Selling ON on 2019-07-31 00:00:00\n", - "Selling URI on 2019-07-31 00:00:00\n", - "Selling MPWR on 2019-07-31 00:00:00\n", - "Selling ZBRA on 2019-07-31 00:00:00\n", - "Selling PTC on 2019-07-31 00:00:00\n", - "Selling KEYS on 2019-07-31 00:00:00\n", - "Selling AMD on 2019-07-31 00:00:00\n", - "Selling NVDA on 2019-07-31 00:00:00\n", - "Selling NXPI on 2019-07-31 00:00:00\n", - "Selling WDC on 2019-07-31 00:00:00\n", - "Selling WYNN on 2019-07-31 00:00:00\n", - "Selling VTRS on 2019-07-31 00:00:00\n", - "Buying NEM on 2019-08-31 00:00:00\n", - "Buying WEC on 2019-08-31 00:00:00\n", - "Buying LW on 2019-08-31 00:00:00\n", - "Buying CBOE on 2019-08-31 00:00:00\n", - "Buying NEE on 2019-08-31 00:00:00\n", - "Buying KHC on 2019-08-31 00:00:00\n", - "Buying EXR on 2019-08-31 00:00:00\n", - "Buying PSA on 2019-08-31 00:00:00\n", - "Buying ES on 2019-08-31 00:00:00\n", - "Buying AMT on 2019-08-31 00:00:00\n", - "Buying AWK on 2019-08-31 00:00:00\n", - "Buying EVRG on 2019-08-31 00:00:00\n", - "Buying SO on 2019-08-31 00:00:00\n", - "Buying TSN on 2019-08-31 00:00:00\n", - "Buying DUK on 2019-08-31 00:00:00\n", - "Buying WELL on 2019-08-31 00:00:00\n", - "Buying ED on 2019-08-31 00:00:00\n", - "Buying ETR on 2019-08-31 00:00:00\n", - "Buying LNT on 2019-08-31 00:00:00\n", - "Buying CMS on 2019-08-31 00:00:00\n", - "Buying AEP on 2019-08-31 00:00:00\n", - "Buying PNW on 2019-08-31 00:00:00\n", - "Buying D on 2019-08-31 00:00:00\n", - "Buying HSY on 2019-08-31 00:00:00\n", - "Buying MKTX on 2019-08-31 00:00:00\n", - "Buying MLM on 2019-08-31 00:00:00\n", - "Buying XEL on 2019-08-31 00:00:00\n", - "Buying VZ on 2019-08-31 00:00:00\n", - "Buying O on 2019-08-31 00:00:00\n", - "Buying YUM on 2019-08-31 00:00:00\n", - "Buying IFF on 2019-08-31 00:00:00\n", - "Buying SRE on 2019-08-31 00:00:00\n", - "Buying DOC on 2019-08-31 00:00:00\n", - "Buying VTR on 2019-08-31 00:00:00\n", - "Buying CCI on 2019-08-31 00:00:00\n", - "Buying EXC on 2019-08-31 00:00:00\n", - "Buying CHD on 2019-08-31 00:00:00\n", - "Buying AEE on 2019-08-31 00:00:00\n", - "Buying DTE on 2019-08-31 00:00:00\n", - "Buying PANW on 2019-08-31 00:00:00\n", - "Buying IRM on 2019-08-31 00:00:00\n", - "Buying FE on 2019-08-31 00:00:00\n", - "Buying VMC on 2019-08-31 00:00:00\n", - "Buying CNP on 2019-08-31 00:00:00\n", - "Buying CLX on 2019-08-31 00:00:00\n", - "Buying PPL on 2019-08-31 00:00:00\n", - "Buying EQR on 2019-08-31 00:00:00\n", - "Buying ATO on 2019-08-31 00:00:00\n", - "Buying MKC on 2019-08-31 00:00:00\n", - "Selling NXPI on 2019-08-31 00:00:00\n", - "Selling HAL on 2019-08-31 00:00:00\n", - "Selling VLO on 2019-08-31 00:00:00\n", - "Selling CBRE on 2019-08-31 00:00:00\n", - "Selling TXT on 2019-08-31 00:00:00\n", - "Selling EMN on 2019-08-31 00:00:00\n", - "Selling HAS on 2019-08-31 00:00:00\n", - "Selling SMCI on 2019-08-31 00:00:00\n", - "Selling FANG on 2019-08-31 00:00:00\n", - "Selling AMAT on 2019-08-31 00:00:00\n", - "Selling HPE on 2019-08-31 00:00:00\n", - "Selling WDC on 2019-08-31 00:00:00\n", - "Selling AXON on 2019-08-31 00:00:00\n", - "Selling VTRS on 2019-08-31 00:00:00\n", - "Selling ADI on 2019-08-31 00:00:00\n", - "Selling PARA on 2019-08-31 00:00:00\n", - "Selling TRMB on 2019-08-31 00:00:00\n", - "Selling TSLA on 2019-08-31 00:00:00\n", - "Selling LVS on 2019-08-31 00:00:00\n", - "Selling TER on 2019-08-31 00:00:00\n", - "Selling JBL on 2019-08-31 00:00:00\n", - "Selling FSLR on 2019-08-31 00:00:00\n", - "Selling DE on 2019-08-31 00:00:00\n", - "Selling KLAC on 2019-08-31 00:00:00\n", - "Selling BBY on 2019-08-31 00:00:00\n", - "Selling MPC on 2019-08-31 00:00:00\n", - "Selling NTAP on 2019-08-31 00:00:00\n", - "Selling PTC on 2019-08-31 00:00:00\n", - "Selling SWK on 2019-08-31 00:00:00\n", - "Selling SWKS on 2019-08-31 00:00:00\n", - "Selling DVN on 2019-08-31 00:00:00\n", - "Selling AMP on 2019-08-31 00:00:00\n", - "Selling APA on 2019-08-31 00:00:00\n", - "Selling EQT on 2019-08-31 00:00:00\n", - "Selling LRCX on 2019-08-31 00:00:00\n", - "Selling TPR on 2019-08-31 00:00:00\n", - "Selling GEN on 2019-08-31 00:00:00\n", - "Selling TRGP on 2019-08-31 00:00:00\n", - "Selling CDNS on 2019-08-31 00:00:00\n", - "Selling MPWR on 2019-08-31 00:00:00\n", - "Selling MU on 2019-08-31 00:00:00\n", - "Selling MCHP on 2019-08-31 00:00:00\n", - "Selling ALB on 2019-08-31 00:00:00\n", - "Selling KEYS on 2019-08-31 00:00:00\n", - "Selling WYNN on 2019-08-31 00:00:00\n", - "Selling URI on 2019-08-31 00:00:00\n", - "Selling ON on 2019-08-31 00:00:00\n", - "Selling NVDA on 2019-08-31 00:00:00\n", - "Selling AMD on 2019-08-31 00:00:00\n", - "Buying NEM on 2019-09-30 00:00:00\n", - "Buying TSN on 2019-09-30 00:00:00\n", - "Buying WEC on 2019-09-30 00:00:00\n", - "Buying NEE on 2019-09-30 00:00:00\n", - "Buying AMT on 2019-09-30 00:00:00\n", - "Buying KHC on 2019-09-30 00:00:00\n", - "Buying AWK on 2019-09-30 00:00:00\n", - "Buying CBOE on 2019-09-30 00:00:00\n", - "Buying EXR on 2019-09-30 00:00:00\n", - "Buying PSA on 2019-09-30 00:00:00\n", - "Buying WELL on 2019-09-30 00:00:00\n", - "Buying ES on 2019-09-30 00:00:00\n", - "Buying LNT on 2019-09-30 00:00:00\n", - "Buying EVRG on 2019-09-30 00:00:00\n", - "Buying SO on 2019-09-30 00:00:00\n", - "Buying ETR on 2019-09-30 00:00:00\n", - "Buying CMS on 2019-09-30 00:00:00\n", - "Buying MKTX on 2019-09-30 00:00:00\n", - "Buying AEP on 2019-09-30 00:00:00\n", - "Buying VTR on 2019-09-30 00:00:00\n", - "Buying DOC on 2019-09-30 00:00:00\n", - "Buying ED on 2019-09-30 00:00:00\n", - "Buying EIX on 2019-09-30 00:00:00\n", - "Buying XEL on 2019-09-30 00:00:00\n", - "Buying DUK on 2019-09-30 00:00:00\n", - "Buying PNW on 2019-09-30 00:00:00\n", - "Buying CHD on 2019-09-30 00:00:00\n", - "Buying MLM on 2019-09-30 00:00:00\n", - "Buying D on 2019-09-30 00:00:00\n", - "Buying HSY on 2019-09-30 00:00:00\n", - "Buying O on 2019-09-30 00:00:00\n", - "Buying LW on 2019-09-30 00:00:00\n", - "Buying DTE on 2019-09-30 00:00:00\n", - "Buying SRE on 2019-09-30 00:00:00\n", - "Buying INVH on 2019-09-30 00:00:00\n", - "Buying AEE on 2019-09-30 00:00:00\n", - "Buying CCI on 2019-09-30 00:00:00\n", - "Buying SJM on 2019-09-30 00:00:00\n", - "Buying EXC on 2019-09-30 00:00:00\n", - "Buying SBAC on 2019-09-30 00:00:00\n", - "Buying EQIX on 2019-09-30 00:00:00\n", - "Buying ATO on 2019-09-30 00:00:00\n", - "Buying CNP on 2019-09-30 00:00:00\n", - "Buying EQR on 2019-09-30 00:00:00\n", - "Buying IRM on 2019-09-30 00:00:00\n", - "Buying AMGN on 2019-09-30 00:00:00\n", - "Buying GIS on 2019-09-30 00:00:00\n", - "Buying K on 2019-09-30 00:00:00\n", - "Buying JNJ on 2019-09-30 00:00:00\n", - "Selling PTC on 2019-09-30 00:00:00\n", - "Selling APA on 2019-09-30 00:00:00\n", - "Selling AAPL on 2019-09-30 00:00:00\n", - "Selling SLB on 2019-09-30 00:00:00\n", - "Selling C on 2019-09-30 00:00:00\n", - "Selling TXT on 2019-09-30 00:00:00\n", - "Selling HAS on 2019-09-30 00:00:00\n", - "Selling FDX on 2019-09-30 00:00:00\n", - "Selling APTV on 2019-09-30 00:00:00\n", - "Selling STLD on 2019-09-30 00:00:00\n", - "Selling DE on 2019-09-30 00:00:00\n", - "Selling EPAM on 2019-09-30 00:00:00\n", - "Selling EMN on 2019-09-30 00:00:00\n", - "Selling ADI on 2019-09-30 00:00:00\n", - "Selling JBL on 2019-09-30 00:00:00\n", - "Selling BWA on 2019-09-30 00:00:00\n", - "Selling AMAT on 2019-09-30 00:00:00\n", - "Selling DVN on 2019-09-30 00:00:00\n", - "Selling HPE on 2019-09-30 00:00:00\n", - "Selling CZR on 2019-09-30 00:00:00\n", - "Selling NXPI on 2019-09-30 00:00:00\n", - "Selling FSLR on 2019-09-30 00:00:00\n", - "Selling TER on 2019-09-30 00:00:00\n", - "Selling SWKS on 2019-09-30 00:00:00\n", - "Selling VLO on 2019-09-30 00:00:00\n", - "Selling WDC on 2019-09-30 00:00:00\n", - "Selling EQT on 2019-09-30 00:00:00\n", - "Selling MPC on 2019-09-30 00:00:00\n", - "Selling CRWD on 2019-09-30 00:00:00\n", - "Selling AMP on 2019-09-30 00:00:00\n", - "Selling SWK on 2019-09-30 00:00:00\n", - "Selling TRGP on 2019-09-30 00:00:00\n", - "Selling TSLA on 2019-09-30 00:00:00\n", - "Selling CDNS on 2019-09-30 00:00:00\n", - "Selling NTAP on 2019-09-30 00:00:00\n", - "Selling VTRS on 2019-09-30 00:00:00\n", - "Selling LRCX on 2019-09-30 00:00:00\n", - "Selling UBER on 2019-09-30 00:00:00\n", - "Selling TPR on 2019-09-30 00:00:00\n", - "Selling MPWR on 2019-09-30 00:00:00\n", - "Selling WYNN on 2019-09-30 00:00:00\n", - "Selling MCHP on 2019-09-30 00:00:00\n", - "Selling MU on 2019-09-30 00:00:00\n", - "Selling ALB on 2019-09-30 00:00:00\n", - "Selling KEYS on 2019-09-30 00:00:00\n", - "Selling URI on 2019-09-30 00:00:00\n", - "Selling ON on 2019-09-30 00:00:00\n", - "Selling NVDA on 2019-09-30 00:00:00\n", - "Selling AMD on 2019-09-30 00:00:00\n", - "Buying NEM on 2019-10-31 00:00:00\n", - "Buying NEE on 2019-10-31 00:00:00\n", - "Buying AWK on 2019-10-31 00:00:00\n", - "Buying EIX on 2019-10-31 00:00:00\n", - "Buying PSA on 2019-10-31 00:00:00\n", - "Buying VTR on 2019-10-31 00:00:00\n", - "Buying DOC on 2019-10-31 00:00:00\n", - "Buying AMT on 2019-10-31 00:00:00\n", - "Buying O on 2019-10-31 00:00:00\n", - "Buying EXR on 2019-10-31 00:00:00\n", - "Buying MKC on 2019-10-31 00:00:00\n", - "Buying SO on 2019-10-31 00:00:00\n", - "Buying WELL on 2019-10-31 00:00:00\n", - "Buying WEC on 2019-10-31 00:00:00\n", - "Buying EVRG on 2019-10-31 00:00:00\n", - "Buying ETR on 2019-10-31 00:00:00\n", - "Buying CMS on 2019-10-31 00:00:00\n", - "Buying SRE on 2019-10-31 00:00:00\n", - "Buying ES on 2019-10-31 00:00:00\n", - "Buying LNT on 2019-10-31 00:00:00\n", - "Buying CBOE on 2019-10-31 00:00:00\n", - "Buying INVH on 2019-10-31 00:00:00\n", - "Buying KHC on 2019-10-31 00:00:00\n", - "Buying EQR on 2019-10-31 00:00:00\n", - "Buying UDR on 2019-10-31 00:00:00\n", - "Buying CHD on 2019-10-31 00:00:00\n", - "Buying DUK on 2019-10-31 00:00:00\n", - "Buying ED on 2019-10-31 00:00:00\n", - "Buying AEP on 2019-10-31 00:00:00\n", - "Buying HSY on 2019-10-31 00:00:00\n", - "Buying CCI on 2019-10-31 00:00:00\n", - "Buying MTCH on 2019-10-31 00:00:00\n", - "Buying PNW on 2019-10-31 00:00:00\n", - "Buying MAA on 2019-10-31 00:00:00\n", - "Buying SYY on 2019-10-31 00:00:00\n", - "Buying XEL on 2019-10-31 00:00:00\n", - "Buying AVB on 2019-10-31 00:00:00\n", - "Buying ATO on 2019-10-31 00:00:00\n", - "Buying CPT on 2019-10-31 00:00:00\n", - "Buying D on 2019-10-31 00:00:00\n", - "Buying SBAC on 2019-10-31 00:00:00\n", - "Buying DHI on 2019-10-31 00:00:00\n", - "Buying LW on 2019-10-31 00:00:00\n", - "Buying ESS on 2019-10-31 00:00:00\n", - "Buying DTE on 2019-10-31 00:00:00\n", - "Buying AEE on 2019-10-31 00:00:00\n", - "Buying PODD on 2019-10-31 00:00:00\n", - "Buying LEN on 2019-10-31 00:00:00\n", - "Buying PEG on 2019-10-31 00:00:00\n", - "Selling ETN on 2019-10-31 00:00:00\n", - "Selling NTAP on 2019-10-31 00:00:00\n", - "Selling SNPS on 2019-10-31 00:00:00\n", - "Selling JBL on 2019-10-31 00:00:00\n", - "Selling ROK on 2019-10-31 00:00:00\n", - "Selling NUE on 2019-10-31 00:00:00\n", - "Selling SYF on 2019-10-31 00:00:00\n", - "Selling C on 2019-10-31 00:00:00\n", - "Selling NXPI on 2019-10-31 00:00:00\n", - "Selling HPE on 2019-10-31 00:00:00\n", - "Selling FAST on 2019-10-31 00:00:00\n", - "Selling LYB on 2019-10-31 00:00:00\n", - "Selling ZBRA on 2019-10-31 00:00:00\n", - "Selling EMN on 2019-10-31 00:00:00\n", - "Selling BWA on 2019-10-31 00:00:00\n", - "Selling QCOM on 2019-10-31 00:00:00\n", - "Selling TXT on 2019-10-31 00:00:00\n", - "Selling PH on 2019-10-31 00:00:00\n", - "Selling SWKS on 2019-10-31 00:00:00\n", - "Selling SLB on 2019-10-31 00:00:00\n", - "Selling LRCX on 2019-10-31 00:00:00\n", - "Selling CDNS on 2019-10-31 00:00:00\n", - "Selling AXON on 2019-10-31 00:00:00\n", - "Selling FCX on 2019-10-31 00:00:00\n", - "Selling PARA on 2019-10-31 00:00:00\n", - "Selling DOW on 2019-10-31 00:00:00\n", - "Selling STLD on 2019-10-31 00:00:00\n", - "Selling MCHP on 2019-10-31 00:00:00\n", - "Selling MOS on 2019-10-31 00:00:00\n", - "Selling APA on 2019-10-31 00:00:00\n", - "Selling SWK on 2019-10-31 00:00:00\n", - "Selling TRGP on 2019-10-31 00:00:00\n", - "Selling APTV on 2019-10-31 00:00:00\n", - "Selling AMP on 2019-10-31 00:00:00\n", - "Selling DVN on 2019-10-31 00:00:00\n", - "Selling MPWR on 2019-10-31 00:00:00\n", - "Selling TPR on 2019-10-31 00:00:00\n", - "Selling EQT on 2019-10-31 00:00:00\n", - "Selling KEYS on 2019-10-31 00:00:00\n", - "Selling UBER on 2019-10-31 00:00:00\n", - "Selling WDC on 2019-10-31 00:00:00\n", - "Selling ALB on 2019-10-31 00:00:00\n", - "Selling VTRS on 2019-10-31 00:00:00\n", - "Selling CRWD on 2019-10-31 00:00:00\n", - "Selling MU on 2019-10-31 00:00:00\n", - "Selling ON on 2019-10-31 00:00:00\n", - "Selling NVDA on 2019-10-31 00:00:00\n", - "Selling URI on 2019-10-31 00:00:00\n", - "Selling AMD on 2019-10-31 00:00:00\n", - "Buying NEM on 2019-11-30 00:00:00\n", - "Buying EIX on 2019-11-30 00:00:00\n", - "Buying DOC on 2019-11-30 00:00:00\n", - "Buying STZ on 2019-11-30 00:00:00\n", - "Buying LEN on 2019-11-30 00:00:00\n", - "Buying VTR on 2019-11-30 00:00:00\n", - "Buying HSY on 2019-11-30 00:00:00\n", - "Buying PSA on 2019-11-30 00:00:00\n", - "Buying CHD on 2019-11-30 00:00:00\n", - "Buying AMT on 2019-11-30 00:00:00\n", - "Buying MKC on 2019-11-30 00:00:00\n", - "Buying NVR on 2019-11-30 00:00:00\n", - "Buying ULTA on 2019-11-30 00:00:00\n", - "Buying CMS on 2019-11-30 00:00:00\n", - "Buying CCI on 2019-11-30 00:00:00\n", - "Buying TAP on 2019-11-30 00:00:00\n", - "Buying AWK on 2019-11-30 00:00:00\n", - "Buying ETR on 2019-11-30 00:00:00\n", - "Buying CPT on 2019-11-30 00:00:00\n", - "Buying LNT on 2019-11-30 00:00:00\n", - "Buying EXR on 2019-11-30 00:00:00\n", - "Buying WELL on 2019-11-30 00:00:00\n", - "Buying DHI on 2019-11-30 00:00:00\n", - "Buying NEE on 2019-11-30 00:00:00\n", - "Buying ES on 2019-11-30 00:00:00\n", - "Buying O on 2019-11-30 00:00:00\n", - "Buying UDR on 2019-11-30 00:00:00\n", - "Buying LHX on 2019-11-30 00:00:00\n", - "Buying AEP on 2019-11-30 00:00:00\n", - "Buying DLR on 2019-11-30 00:00:00\n", - "Buying KIM on 2019-11-30 00:00:00\n", - "Buying INVH on 2019-11-30 00:00:00\n", - "Buying ED on 2019-11-30 00:00:00\n", - "Buying EQR on 2019-11-30 00:00:00\n", - "Buying HPQ on 2019-11-30 00:00:00\n", - "Buying ATO on 2019-11-30 00:00:00\n", - "Buying AVB on 2019-11-30 00:00:00\n", - "Buying DPZ on 2019-11-30 00:00:00\n", - "Buying XEL on 2019-11-30 00:00:00\n", - "Buying MAA on 2019-11-30 00:00:00\n", - "Buying WEC on 2019-11-30 00:00:00\n", - "Buying YUM on 2019-11-30 00:00:00\n", - "Buying EVRG on 2019-11-30 00:00:00\n", - "Buying WM on 2019-11-30 00:00:00\n", - "Buying TSCO on 2019-11-30 00:00:00\n", - "Buying CME on 2019-11-30 00:00:00\n", - "Buying PNW on 2019-11-30 00:00:00\n", - "Buying SO on 2019-11-30 00:00:00\n", - "Buying ESS on 2019-11-30 00:00:00\n", - "Selling ROK on 2019-11-30 00:00:00\n", - "Selling DXCM on 2019-11-30 00:00:00\n", - "Selling C on 2019-11-30 00:00:00\n", - "Selling NUE on 2019-11-30 00:00:00\n", - "Selling BWA on 2019-11-30 00:00:00\n", - "Selling IVZ on 2019-11-30 00:00:00\n", - "Selling ETN on 2019-11-30 00:00:00\n", - "Selling DOW on 2019-11-30 00:00:00\n", - "Selling GE on 2019-11-30 00:00:00\n", - "Selling MSCI on 2019-11-30 00:00:00\n", - "Selling FTV on 2019-11-30 00:00:00\n", - "Selling UNP on 2019-11-30 00:00:00\n", - "Selling AMP on 2019-11-30 00:00:00\n", - "Selling MTD on 2019-11-30 00:00:00\n", - "Selling CAT on 2019-11-30 00:00:00\n", - "Selling DVN on 2019-11-30 00:00:00\n", - "Selling TMO on 2019-11-30 00:00:00\n", - "Selling DAY on 2019-11-30 00:00:00\n", - "Selling BSX on 2019-11-30 00:00:00\n", - "Selling AXON on 2019-11-30 00:00:00\n", - "Selling PAYC on 2019-11-30 00:00:00\n", - "Selling MPWR on 2019-11-30 00:00:00\n", - "Selling TER on 2019-11-30 00:00:00\n", - "Selling PCG on 2019-11-30 00:00:00\n", - "Selling NVDA on 2019-11-30 00:00:00\n", - "Selling SWK on 2019-11-30 00:00:00\n", - "Selling KEYS on 2019-11-30 00:00:00\n", - "Selling ADI on 2019-11-30 00:00:00\n", - "Selling BEN on 2019-11-30 00:00:00\n", - "Selling PH on 2019-11-30 00:00:00\n", - "Selling LRCX on 2019-11-30 00:00:00\n", - "Selling NXPI on 2019-11-30 00:00:00\n", - "Selling STLD on 2019-11-30 00:00:00\n", - "Selling NOW on 2019-11-30 00:00:00\n", - "Selling APTV on 2019-11-30 00:00:00\n", - "Selling SCHW on 2019-11-30 00:00:00\n", - "Selling KLAC on 2019-11-30 00:00:00\n", - "Selling MCHP on 2019-11-30 00:00:00\n", - "Selling VTRS on 2019-11-30 00:00:00\n", - "Selling AMAT on 2019-11-30 00:00:00\n", - "Selling FAST on 2019-11-30 00:00:00\n", - "Selling QCOM on 2019-11-30 00:00:00\n", - "Selling SWKS on 2019-11-30 00:00:00\n", - "Selling URI on 2019-11-30 00:00:00\n", - "Selling CRWD on 2019-11-30 00:00:00\n", - "Selling FCX on 2019-11-30 00:00:00\n", - "Selling WDC on 2019-11-30 00:00:00\n", - "Selling MU on 2019-11-30 00:00:00\n", - "Selling ON on 2019-11-30 00:00:00\n", - "Buying PCG on 2019-12-31 00:00:00\n", - "Buying NEM on 2019-12-31 00:00:00\n", - "Buying NVR on 2019-12-31 00:00:00\n", - "Buying DHI on 2019-12-31 00:00:00\n", - "Buying EIX on 2019-12-31 00:00:00\n", - "Buying MRNA on 2019-12-31 00:00:00\n", - "Buying HSY on 2019-12-31 00:00:00\n", - "Buying LEN on 2019-12-31 00:00:00\n", - "Buying CME on 2019-12-31 00:00:00\n", - "Buying PSA on 2019-12-31 00:00:00\n", - "Buying CCI on 2019-12-31 00:00:00\n", - "Buying EXR on 2019-12-31 00:00:00\n", - "Buying AWK on 2019-12-31 00:00:00\n", - "Buying CMS on 2019-12-31 00:00:00\n", - "Buying PHM on 2019-12-31 00:00:00\n", - "Buying BALL on 2019-12-31 00:00:00\n", - "Buying VTR on 2019-12-31 00:00:00\n", - "Buying XEL on 2019-12-31 00:00:00\n", - "Buying SRE on 2019-12-31 00:00:00\n", - "Buying ETR on 2019-12-31 00:00:00\n", - "Buying LHX on 2019-12-31 00:00:00\n", - "Buying AMT on 2019-12-31 00:00:00\n", - "Buying DOC on 2019-12-31 00:00:00\n", - "Buying WELL on 2019-12-31 00:00:00\n", - "Buying NEE on 2019-12-31 00:00:00\n", - "Buying TGT on 2019-12-31 00:00:00\n", - "Buying MKC on 2019-12-31 00:00:00\n", - "Buying LNT on 2019-12-31 00:00:00\n", - "Buying KHC on 2019-12-31 00:00:00\n", - "Buying MDLZ on 2019-12-31 00:00:00\n", - "Buying PG on 2019-12-31 00:00:00\n", - "Buying HRL on 2019-12-31 00:00:00\n", - "Buying EVRG on 2019-12-31 00:00:00\n", - "Buying AEP on 2019-12-31 00:00:00\n", - "Buying NOC on 2019-12-31 00:00:00\n", - "Buying ES on 2019-12-31 00:00:00\n", - "Buying ANET on 2019-12-31 00:00:00\n", - "Buying ED on 2019-12-31 00:00:00\n", - "Buying WEC on 2019-12-31 00:00:00\n", - "Buying SBAC on 2019-12-31 00:00:00\n", - "Buying VST on 2019-12-31 00:00:00\n", - "Buying CPT on 2019-12-31 00:00:00\n", - "Buying CBOE on 2019-12-31 00:00:00\n", - "Buying LW on 2019-12-31 00:00:00\n", - "Buying KO on 2019-12-31 00:00:00\n", - "Buying NRG on 2019-12-31 00:00:00\n", - "Buying ICE on 2019-12-31 00:00:00\n", - "Buying CL on 2019-12-31 00:00:00\n", - "Buying CHD on 2019-12-31 00:00:00\n", - "Selling TXT on 2019-12-31 00:00:00\n", - "Selling IVZ on 2019-12-31 00:00:00\n", - "Selling ULTA on 2019-12-31 00:00:00\n", - "Selling NOW on 2019-12-31 00:00:00\n", - "Selling C on 2019-12-31 00:00:00\n", - "Selling NXPI on 2019-12-31 00:00:00\n", - "Selling LYB on 2019-12-31 00:00:00\n", - "Selling EOG on 2019-12-31 00:00:00\n", - "Selling NSC on 2019-12-31 00:00:00\n", - "Selling EMN on 2019-12-31 00:00:00\n", - "Selling CAT on 2019-12-31 00:00:00\n", - "Selling PH on 2019-12-31 00:00:00\n", - "Selling SWKS on 2019-12-31 00:00:00\n", - "Selling MMM on 2019-12-31 00:00:00\n", - "Selling LVS on 2019-12-31 00:00:00\n", - "Selling ALB on 2019-12-31 00:00:00\n", - "Selling GE on 2019-12-31 00:00:00\n", - "Selling APTV on 2019-12-31 00:00:00\n", - "Selling SWK on 2019-12-31 00:00:00\n", - "Selling UNP on 2019-12-31 00:00:00\n", - "Selling RVTY on 2019-12-31 00:00:00\n", - "Selling DOW on 2019-12-31 00:00:00\n", - "Selling CDNS on 2019-12-31 00:00:00\n", - "Selling AMD on 2019-12-31 00:00:00\n", - "Selling BEN on 2019-12-31 00:00:00\n", - "Selling TER on 2019-12-31 00:00:00\n", - "Selling MPWR on 2019-12-31 00:00:00\n", - "Selling ADI on 2019-12-31 00:00:00\n", - "Selling DVN on 2019-12-31 00:00:00\n", - "Selling TPR on 2019-12-31 00:00:00\n", - "Selling VTRS on 2019-12-31 00:00:00\n", - "Selling FDX on 2019-12-31 00:00:00\n", - "Selling LRCX on 2019-12-31 00:00:00\n", - "Selling NVDA on 2019-12-31 00:00:00\n", - "Selling EQT on 2019-12-31 00:00:00\n", - "Selling KEYS on 2019-12-31 00:00:00\n", - "Selling FAST on 2019-12-31 00:00:00\n", - "Selling KLAC on 2019-12-31 00:00:00\n", - "Selling MCHP on 2019-12-31 00:00:00\n", - "Selling AMAT on 2019-12-31 00:00:00\n", - "Selling QCOM on 2019-12-31 00:00:00\n", - "Selling FCX on 2019-12-31 00:00:00\n", - "Selling URI on 2019-12-31 00:00:00\n", - "Selling MOS on 2019-12-31 00:00:00\n", - "Selling WYNN on 2019-12-31 00:00:00\n", - "Selling WDC on 2019-12-31 00:00:00\n", - "Selling MU on 2019-12-31 00:00:00\n", - "Selling ON on 2019-12-31 00:00:00\n", - "Selling APA on 2019-12-31 00:00:00\n", - "Buying PCG on 2020-01-31 00:00:00\n", - "Buying MKC on 2020-01-31 00:00:00\n", - "Buying NEM on 2020-01-31 00:00:00\n", - "Buying CL on 2020-01-31 00:00:00\n", - "Buying CHTR on 2020-01-31 00:00:00\n", - "Buying LW on 2020-01-31 00:00:00\n", - "Buying BALL on 2020-01-31 00:00:00\n", - "Buying MRNA on 2020-01-31 00:00:00\n", - "Buying CHD on 2020-01-31 00:00:00\n", - "Buying TGT on 2020-01-31 00:00:00\n", - "Buying CMS on 2020-01-31 00:00:00\n", - "Buying EXR on 2020-01-31 00:00:00\n", - "Buying XEL on 2020-01-31 00:00:00\n", - "Buying CME on 2020-01-31 00:00:00\n", - "Buying NEE on 2020-01-31 00:00:00\n", - "Buying EVRG on 2020-01-31 00:00:00\n", - "Buying LEN on 2020-01-31 00:00:00\n", - "Buying CLX on 2020-01-31 00:00:00\n", - "Buying EIX on 2020-01-31 00:00:00\n", - "Buying DHI on 2020-01-31 00:00:00\n", - "Buying PSA on 2020-01-31 00:00:00\n", - "Buying LNT on 2020-01-31 00:00:00\n", - "Buying CBOE on 2020-01-31 00:00:00\n", - "Buying PNW on 2020-01-31 00:00:00\n", - "Buying NI on 2020-01-31 00:00:00\n", - "Buying AWK on 2020-01-31 00:00:00\n", - "Buying CPT on 2020-01-31 00:00:00\n", - "Buying AEP on 2020-01-31 00:00:00\n", - "Buying DECK on 2020-01-31 00:00:00\n", - "Buying KIM on 2020-01-31 00:00:00\n", - "Buying ICE on 2020-01-31 00:00:00\n", - "Buying VTR on 2020-01-31 00:00:00\n", - "Buying O on 2020-01-31 00:00:00\n", - "Buying REG on 2020-01-31 00:00:00\n", - "Buying AEE on 2020-01-31 00:00:00\n", - "Buying BXP on 2020-01-31 00:00:00\n", - "Buying CPB on 2020-01-31 00:00:00\n", - "Buying ETR on 2020-01-31 00:00:00\n", - "Buying WELL on 2020-01-31 00:00:00\n", - "Buying HSY on 2020-01-31 00:00:00\n", - "Buying PFE on 2020-01-31 00:00:00\n", - "Buying IRM on 2020-01-31 00:00:00\n", - "Buying SO on 2020-01-31 00:00:00\n", - "Buying ATO on 2020-01-31 00:00:00\n", - "Buying INVH on 2020-01-31 00:00:00\n", - "Buying ED on 2020-01-31 00:00:00\n", - "Buying WEC on 2020-01-31 00:00:00\n", - "Buying IFF on 2020-01-31 00:00:00\n", - "Buying TSCO on 2020-01-31 00:00:00\n", - "Selling IVZ on 2020-01-31 00:00:00\n", - "Selling PH on 2020-01-31 00:00:00\n", - "Selling TXN on 2020-01-31 00:00:00\n", - "Selling AVGO on 2020-01-31 00:00:00\n", - "Selling APTV on 2020-01-31 00:00:00\n", - "Selling CZR on 2020-01-31 00:00:00\n", - "Selling STX on 2020-01-31 00:00:00\n", - "Selling STT on 2020-01-31 00:00:00\n", - "Selling WAB on 2020-01-31 00:00:00\n", - "Selling SWK on 2020-01-31 00:00:00\n", - "Selling GS on 2020-01-31 00:00:00\n", - "Selling LYB on 2020-01-31 00:00:00\n", - "Selling DOW on 2020-01-31 00:00:00\n", - "Selling ADI on 2020-01-31 00:00:00\n", - "Selling CDNS on 2020-01-31 00:00:00\n", - "Selling DFS on 2020-01-31 00:00:00\n", - "Selling APA on 2020-01-31 00:00:00\n", - "Selling BEN on 2020-01-31 00:00:00\n", - "Selling MOH on 2020-01-31 00:00:00\n", - "Selling FDX on 2020-01-31 00:00:00\n", - "Selling AAPL on 2020-01-31 00:00:00\n", - "Selling DVN on 2020-01-31 00:00:00\n", - "Selling MS on 2020-01-31 00:00:00\n", - "Selling QCOM on 2020-01-31 00:00:00\n", - "Selling EOG on 2020-01-31 00:00:00\n", - "Selling KEYS on 2020-01-31 00:00:00\n", - "Selling UAL on 2020-01-31 00:00:00\n", - "Selling SWKS on 2020-01-31 00:00:00\n", - "Selling RCL on 2020-01-31 00:00:00\n", - "Selling TPR on 2020-01-31 00:00:00\n", - "Selling URI on 2020-01-31 00:00:00\n", - "Selling VTRS on 2020-01-31 00:00:00\n", - "Selling MCHP on 2020-01-31 00:00:00\n", - "Selling MPWR on 2020-01-31 00:00:00\n", - "Selling CCL on 2020-01-31 00:00:00\n", - "Selling NVDA on 2020-01-31 00:00:00\n", - "Selling TER on 2020-01-31 00:00:00\n", - "Selling LVS on 2020-01-31 00:00:00\n", - "Selling LRCX on 2020-01-31 00:00:00\n", - "Selling MOS on 2020-01-31 00:00:00\n", - "Selling WDC on 2020-01-31 00:00:00\n", - "Selling KLAC on 2020-01-31 00:00:00\n", - "Selling ON on 2020-01-31 00:00:00\n", - "Selling AMAT on 2020-01-31 00:00:00\n", - "Selling FCX on 2020-01-31 00:00:00\n", - "Selling MU on 2020-01-31 00:00:00\n", - "Selling AMD on 2020-01-31 00:00:00\n", - "Selling WYNN on 2020-01-31 00:00:00\n", - "Selling ENPH on 2020-01-31 00:00:00\n", - "Buying MRNA on 2020-02-29 00:00:00\n", - "Buying CLX on 2020-02-29 00:00:00\n", - "Buying EQT on 2020-02-29 00:00:00\n", - "Buying DXCM on 2020-02-29 00:00:00\n", - "Buying MKC on 2020-02-29 00:00:00\n", - "Buying ICE on 2020-02-29 00:00:00\n", - "Buying PWR on 2020-02-29 00:00:00\n", - "Buying CPB on 2020-02-29 00:00:00\n", - "Buying DGX on 2020-02-29 00:00:00\n", - "Buying LW on 2020-02-29 00:00:00\n", - "Buying MKTX on 2020-02-29 00:00:00\n", - "Buying GILD on 2020-02-29 00:00:00\n", - "Buying CBOE on 2020-02-29 00:00:00\n", - "Buying NEM on 2020-02-29 00:00:00\n", - "Buying KDP on 2020-02-29 00:00:00\n", - "Buying CHTR on 2020-02-29 00:00:00\n", - "Buying CME on 2020-02-29 00:00:00\n", - "Buying PCG on 2020-02-29 00:00:00\n", - "Buying CHD on 2020-02-29 00:00:00\n", - "Buying KIM on 2020-02-29 00:00:00\n", - "Buying REGN on 2020-02-29 00:00:00\n", - "Buying CNP on 2020-02-29 00:00:00\n", - "Buying INVH on 2020-02-29 00:00:00\n", - "Buying ERIE on 2020-02-29 00:00:00\n", - "Buying KR on 2020-02-29 00:00:00\n", - "Buying PODD on 2020-02-29 00:00:00\n", - "Buying HRL on 2020-02-29 00:00:00\n", - "Buying PFE on 2020-02-29 00:00:00\n", - "Buying CL on 2020-02-29 00:00:00\n", - "Buying NI on 2020-02-29 00:00:00\n", - "Buying AZO on 2020-02-29 00:00:00\n", - "Buying STE on 2020-02-29 00:00:00\n", - "Buying DPZ on 2020-02-29 00:00:00\n", - "Buying NEE on 2020-02-29 00:00:00\n", - "Buying K on 2020-02-29 00:00:00\n", - "Buying MRK on 2020-02-29 00:00:00\n", - "Buying HSY on 2020-02-29 00:00:00\n", - "Buying EVRG on 2020-02-29 00:00:00\n", - "Buying EXR on 2020-02-29 00:00:00\n", - "Buying VZ on 2020-02-29 00:00:00\n", - "Buying ES on 2020-02-29 00:00:00\n", - "Buying KMB on 2020-02-29 00:00:00\n", - "Buying CHRW on 2020-02-29 00:00:00\n", - "Buying DHI on 2020-02-29 00:00:00\n", - "Buying ETR on 2020-02-29 00:00:00\n", - "Buying LNT on 2020-02-29 00:00:00\n", - "Buying AEE on 2020-02-29 00:00:00\n", - "Buying LH on 2020-02-29 00:00:00\n", - "Buying AWK on 2020-02-29 00:00:00\n", - "Selling BLK on 2020-02-29 00:00:00\n", - "Selling UNH on 2020-02-29 00:00:00\n", - "Selling ADI on 2020-02-29 00:00:00\n", - "Selling LYB on 2020-02-29 00:00:00\n", - "Selling TXN on 2020-02-29 00:00:00\n", - "Selling UAL on 2020-02-29 00:00:00\n", - "Selling C on 2020-02-29 00:00:00\n", - "Selling MS on 2020-02-29 00:00:00\n", - "Selling ALB on 2020-02-29 00:00:00\n", - "Selling QCOM on 2020-02-29 00:00:00\n", - "Selling MPWR on 2020-02-29 00:00:00\n", - "Selling IVZ on 2020-02-29 00:00:00\n", - "Selling SLB on 2020-02-29 00:00:00\n", - "Selling TER on 2020-02-29 00:00:00\n", - "Selling CNC on 2020-02-29 00:00:00\n", - "Selling WYNN on 2020-02-29 00:00:00\n", - "Selling CI on 2020-02-29 00:00:00\n", - "Selling URI on 2020-02-29 00:00:00\n", - "Selling DOW on 2020-02-29 00:00:00\n", - "Selling MGM on 2020-02-29 00:00:00\n", - "Selling ANSS on 2020-02-29 00:00:00\n", - "Selling DELL on 2020-02-29 00:00:00\n", - "Selling VLO on 2020-02-29 00:00:00\n", - "Selling LRCX on 2020-02-29 00:00:00\n", - "Selling MU on 2020-02-29 00:00:00\n", - "Selling MOH on 2020-02-29 00:00:00\n", - "Selling FANG on 2020-02-29 00:00:00\n", - "Selling AAPL on 2020-02-29 00:00:00\n", - "Selling MPC on 2020-02-29 00:00:00\n", - "Selling AMAT on 2020-02-29 00:00:00\n", - "Selling EOG on 2020-02-29 00:00:00\n", - "Selling SWKS on 2020-02-29 00:00:00\n", - "Selling HAL on 2020-02-29 00:00:00\n", - "Selling TPR on 2020-02-29 00:00:00\n", - "Selling MCHP on 2020-02-29 00:00:00\n", - "Selling AMP on 2020-02-29 00:00:00\n", - "Selling CCL on 2020-02-29 00:00:00\n", - "Selling OXY on 2020-02-29 00:00:00\n", - "Selling NCLH on 2020-02-29 00:00:00\n", - "Selling LYV on 2020-02-29 00:00:00\n", - "Selling NVDA on 2020-02-29 00:00:00\n", - "Selling CZR on 2020-02-29 00:00:00\n", - "Selling FCX on 2020-02-29 00:00:00\n", - "Selling RCL on 2020-02-29 00:00:00\n", - "Selling WDC on 2020-02-29 00:00:00\n", - "Selling DVN on 2020-02-29 00:00:00\n", - "Selling AMD on 2020-02-29 00:00:00\n", - "Selling TSLA on 2020-02-29 00:00:00\n", - "Selling ENPH on 2020-02-29 00:00:00\n", - "Buying MRNA on 2020-03-31 00:00:00\n", - "Buying KR on 2020-03-31 00:00:00\n", - "Buying CLX on 2020-03-31 00:00:00\n", - "Buying CAG on 2020-03-31 00:00:00\n", - "Buying NEM on 2020-03-31 00:00:00\n", - "Buying GILD on 2020-03-31 00:00:00\n", - "Buying GEN on 2020-03-31 00:00:00\n", - "Buying CHRW on 2020-03-31 00:00:00\n", - "Buying SJM on 2020-03-31 00:00:00\n", - "Buying DPZ on 2020-03-31 00:00:00\n", - "Buying CPB on 2020-03-31 00:00:00\n", - "Buying GIS on 2020-03-31 00:00:00\n", - "Buying VZ on 2020-03-31 00:00:00\n", - "Buying HRL on 2020-03-31 00:00:00\n", - "Buying DG on 2020-03-31 00:00:00\n", - "Buying PODD on 2020-03-31 00:00:00\n", - "Buying AOS on 2020-03-31 00:00:00\n", - "Buying K on 2020-03-31 00:00:00\n", - "Buying REGN on 2020-03-31 00:00:00\n", - "Buying WMT on 2020-03-31 00:00:00\n", - "Buying CHD on 2020-03-31 00:00:00\n", - "Buying LII on 2020-03-31 00:00:00\n", - "Buying AMZN on 2020-03-31 00:00:00\n", - "Buying VTRS on 2020-03-31 00:00:00\n", - "Buying TECH on 2020-03-31 00:00:00\n", - "Buying BDX on 2020-03-31 00:00:00\n", - "Buying EBAY on 2020-03-31 00:00:00\n", - "Buying AKAM on 2020-03-31 00:00:00\n", - "Buying COST on 2020-03-31 00:00:00\n", - "Buying BMY on 2020-03-31 00:00:00\n", - "Buying EA on 2020-03-31 00:00:00\n", - "Buying KDP on 2020-03-31 00:00:00\n", - "Buying INCY on 2020-03-31 00:00:00\n", - "Buying RVTY on 2020-03-31 00:00:00\n", - "Buying FSLR on 2020-03-31 00:00:00\n", - "Buying MAR on 2020-03-31 00:00:00\n", - "Buying TYL on 2020-03-31 00:00:00\n", - "Buying TSCO on 2020-03-31 00:00:00\n", - "Buying KMB on 2020-03-31 00:00:00\n", - "Buying MRK on 2020-03-31 00:00:00\n", - "Buying EXR on 2020-03-31 00:00:00\n", - "Buying WST on 2020-03-31 00:00:00\n", - "Buying TMO on 2020-03-31 00:00:00\n", - "Buying DXCM on 2020-03-31 00:00:00\n", - "Buying HLT on 2020-03-31 00:00:00\n", - "Buying NFLX on 2020-03-31 00:00:00\n", - "Buying PFE on 2020-03-31 00:00:00\n", - "Buying TTWO on 2020-03-31 00:00:00\n", - "Buying AON on 2020-03-31 00:00:00\n", - "Selling KLAC on 2020-03-31 00:00:00\n", - "Selling URI on 2020-03-31 00:00:00\n", - "Selling PH on 2020-03-31 00:00:00\n", - "Selling TFC on 2020-03-31 00:00:00\n", - "Selling MPC on 2020-03-31 00:00:00\n", - "Selling BAC on 2020-03-31 00:00:00\n", - "Selling FICO on 2020-03-31 00:00:00\n", - "Selling WDC on 2020-03-31 00:00:00\n", - "Selling LYB on 2020-03-31 00:00:00\n", - "Selling RF on 2020-03-31 00:00:00\n", - "Selling RCL on 2020-03-31 00:00:00\n", - "Selling AXP on 2020-03-31 00:00:00\n", - "Selling PFG on 2020-03-31 00:00:00\n", - "Selling COP on 2020-03-31 00:00:00\n", - "Selling BKR on 2020-03-31 00:00:00\n", - "Selling MET on 2020-03-31 00:00:00\n", - "Selling AMAT on 2020-03-31 00:00:00\n", - "Selling MS on 2020-03-31 00:00:00\n", - "Selling LRCX on 2020-03-31 00:00:00\n", - "Selling BLDR on 2020-03-31 00:00:00\n", - "Selling FCX on 2020-03-31 00:00:00\n", - "Selling SWK on 2020-03-31 00:00:00\n", - "Selling AIG on 2020-03-31 00:00:00\n", - "Selling COF on 2020-03-31 00:00:00\n", - "Selling MPWR on 2020-03-31 00:00:00\n", - "Selling OKE on 2020-03-31 00:00:00\n", - "Selling ENPH on 2020-03-31 00:00:00\n", - "Selling FITB on 2020-03-31 00:00:00\n", - "Selling C on 2020-03-31 00:00:00\n", - "Selling SYF on 2020-03-31 00:00:00\n", - "Selling CFG on 2020-03-31 00:00:00\n", - "Selling TRGP on 2020-03-31 00:00:00\n", - "Selling IVZ on 2020-03-31 00:00:00\n", - "Selling DVN on 2020-03-31 00:00:00\n", - "Selling BA on 2020-03-31 00:00:00\n", - "Selling PRU on 2020-03-31 00:00:00\n", - "Selling DRI on 2020-03-31 00:00:00\n", - "Selling OXY on 2020-03-31 00:00:00\n", - "Selling KEY on 2020-03-31 00:00:00\n", - "Selling CCL on 2020-03-31 00:00:00\n", - "Selling MGM on 2020-03-31 00:00:00\n", - "Selling TPR on 2020-03-31 00:00:00\n", - "Selling WY on 2020-03-31 00:00:00\n", - "Selling APA on 2020-03-31 00:00:00\n", - "Selling HAL on 2020-03-31 00:00:00\n", - "Selling DFS on 2020-03-31 00:00:00\n", - "Selling NCLH on 2020-03-31 00:00:00\n", - "Selling AMP on 2020-03-31 00:00:00\n", - "Selling CZR on 2020-03-31 00:00:00\n", - "Buying MRNA on 2020-04-30 00:00:00\n", - "Buying KR on 2020-04-30 00:00:00\n", - "Buying CLX on 2020-04-30 00:00:00\n", - "Buying CAG on 2020-04-30 00:00:00\n", - "Buying CPB on 2020-04-30 00:00:00\n", - "Buying GEN on 2020-04-30 00:00:00\n", - "Buying SJM on 2020-04-30 00:00:00\n", - "Buying GIS on 2020-04-30 00:00:00\n", - "Buying NEM on 2020-04-30 00:00:00\n", - "Buying DPZ on 2020-04-30 00:00:00\n", - "Buying CHRW on 2020-04-30 00:00:00\n", - "Buying K on 2020-04-30 00:00:00\n", - "Buying GILD on 2020-04-30 00:00:00\n", - "Buying HRL on 2020-04-30 00:00:00\n", - "Buying DG on 2020-04-30 00:00:00\n", - "Buying REGN on 2020-04-30 00:00:00\n", - "Buying VZ on 2020-04-30 00:00:00\n", - "Buying WMT on 2020-04-30 00:00:00\n", - "Buying AKAM on 2020-04-30 00:00:00\n", - "Buying CHD on 2020-04-30 00:00:00\n", - "Buying AMZN on 2020-04-30 00:00:00\n", - "Buying EA on 2020-04-30 00:00:00\n", - "Buying PODD on 2020-04-30 00:00:00\n", - "Buying EBAY on 2020-04-30 00:00:00\n", - "Buying BMY on 2020-04-30 00:00:00\n", - "Buying BDX on 2020-04-30 00:00:00\n", - "Buying NFLX on 2020-04-30 00:00:00\n", - "Buying AOS on 2020-04-30 00:00:00\n", - "Buying TTWO on 2020-04-30 00:00:00\n", - "Buying KDP on 2020-04-30 00:00:00\n", - "Buying LII on 2020-04-30 00:00:00\n", - "Buying COST on 2020-04-30 00:00:00\n", - "Buying TECH on 2020-04-30 00:00:00\n", - "Buying KMB on 2020-04-30 00:00:00\n", - "Buying VTRS on 2020-04-30 00:00:00\n", - "Buying INCY on 2020-04-30 00:00:00\n", - "Buying EXR on 2020-04-30 00:00:00\n", - "Buying TYL on 2020-04-30 00:00:00\n", - "Buying RVTY on 2020-04-30 00:00:00\n", - "Buying ERIE on 2020-04-30 00:00:00\n", - "Buying WST on 2020-04-30 00:00:00\n", - "Buying MRK on 2020-04-30 00:00:00\n", - "Buying JNJ on 2020-04-30 00:00:00\n", - "Buying TSN on 2020-04-30 00:00:00\n", - "Buying PFE on 2020-04-30 00:00:00\n", - "Buying TSCO on 2020-04-30 00:00:00\n", - "Buying EXPD on 2020-04-30 00:00:00\n", - "Buying UPS on 2020-04-30 00:00:00\n", - "Buying TGT on 2020-04-30 00:00:00\n", - "Selling MCHP on 2020-04-30 00:00:00\n", - "Selling LYB on 2020-04-30 00:00:00\n", - "Selling KLAC on 2020-04-30 00:00:00\n", - "Selling MS on 2020-04-30 00:00:00\n", - "Selling WDC on 2020-04-30 00:00:00\n", - "Selling COP on 2020-04-30 00:00:00\n", - "Selling AMAT on 2020-04-30 00:00:00\n", - "Selling MPWR on 2020-04-30 00:00:00\n", - "Selling BKR on 2020-04-30 00:00:00\n", - "Selling RF on 2020-04-30 00:00:00\n", - "Selling PFG on 2020-04-30 00:00:00\n", - "Selling PH on 2020-04-30 00:00:00\n", - "Selling WYNN on 2020-04-30 00:00:00\n", - "Selling MET on 2020-04-30 00:00:00\n", - "Selling AXP on 2020-04-30 00:00:00\n", - "Selling AIG on 2020-04-30 00:00:00\n", - "Selling LRCX on 2020-04-30 00:00:00\n", - "Selling SWK on 2020-04-30 00:00:00\n", - "Selling ON on 2020-04-30 00:00:00\n", - "Selling FCX on 2020-04-30 00:00:00\n", - "Selling VTR on 2020-04-30 00:00:00\n", - "Selling ENPH on 2020-04-30 00:00:00\n", - "Selling DVN on 2020-04-30 00:00:00\n", - "Selling C on 2020-04-30 00:00:00\n", - "Selling CFG on 2020-04-30 00:00:00\n", - "Selling MPC on 2020-04-30 00:00:00\n", - "Selling IVZ on 2020-04-30 00:00:00\n", - "Selling BLDR on 2020-04-30 00:00:00\n", - "Selling OKE on 2020-04-30 00:00:00\n", - "Selling COF on 2020-04-30 00:00:00\n", - "Selling PRU on 2020-04-30 00:00:00\n", - "Selling FITB on 2020-04-30 00:00:00\n", - "Selling BA on 2020-04-30 00:00:00\n", - "Selling KEY on 2020-04-30 00:00:00\n", - "Selling SYF on 2020-04-30 00:00:00\n", - "Selling OXY on 2020-04-30 00:00:00\n", - "Selling TRGP on 2020-04-30 00:00:00\n", - "Selling DRI on 2020-04-30 00:00:00\n", - "Selling WY on 2020-04-30 00:00:00\n", - "Selling RCL on 2020-04-30 00:00:00\n", - "Selling MGM on 2020-04-30 00:00:00\n", - "Selling HAL on 2020-04-30 00:00:00\n", - "Selling TPR on 2020-04-30 00:00:00\n", - "Selling APA on 2020-04-30 00:00:00\n", - "Selling CCL on 2020-04-30 00:00:00\n", - "Selling AMP on 2020-04-30 00:00:00\n", - "Selling DFS on 2020-04-30 00:00:00\n", - "Selling NCLH on 2020-04-30 00:00:00\n", - "Selling CZR on 2020-04-30 00:00:00\n", - "Buying MRNA on 2020-05-31 00:00:00\n", - "Buying KR on 2020-05-31 00:00:00\n", - "Buying CLX on 2020-05-31 00:00:00\n", - "Buying CAG on 2020-05-31 00:00:00\n", - "Buying CPB on 2020-05-31 00:00:00\n", - "Buying GIS on 2020-05-31 00:00:00\n", - "Buying SJM on 2020-05-31 00:00:00\n", - "Buying GEN on 2020-05-31 00:00:00\n", - "Buying NEM on 2020-05-31 00:00:00\n", - "Buying DPZ on 2020-05-31 00:00:00\n", - "Buying K on 2020-05-31 00:00:00\n", - "Buying HRL on 2020-05-31 00:00:00\n", - "Buying GILD on 2020-05-31 00:00:00\n", - "Buying CHRW on 2020-05-31 00:00:00\n", - "Buying DG on 2020-05-31 00:00:00\n", - "Buying WMT on 2020-05-31 00:00:00\n", - "Buying REGN on 2020-05-31 00:00:00\n", - "Buying VZ on 2020-05-31 00:00:00\n", - "Buying CHD on 2020-05-31 00:00:00\n", - "Buying AKAM on 2020-05-31 00:00:00\n", - "Buying COST on 2020-05-31 00:00:00\n", - "Buying EA on 2020-05-31 00:00:00\n", - "Buying BMY on 2020-05-31 00:00:00\n", - "Buying AMZN on 2020-05-31 00:00:00\n", - "Buying NFLX on 2020-05-31 00:00:00\n", - "Buying BDX on 2020-05-31 00:00:00\n", - "Buying TTWO on 2020-05-31 00:00:00\n", - "Buying EBAY on 2020-05-31 00:00:00\n", - "Buying KMB on 2020-05-31 00:00:00\n", - "Buying INCY on 2020-05-31 00:00:00\n", - "Buying TECH on 2020-05-31 00:00:00\n", - "Buying AOS on 2020-05-31 00:00:00\n", - "Buying PODD on 2020-05-31 00:00:00\n", - "Buying TYL on 2020-05-31 00:00:00\n", - "Buying KDP on 2020-05-31 00:00:00\n", - "Buying VTRS on 2020-05-31 00:00:00\n", - "Buying LII on 2020-05-31 00:00:00\n", - "Buying JNJ on 2020-05-31 00:00:00\n", - "Buying MRK on 2020-05-31 00:00:00\n", - "Buying PFE on 2020-05-31 00:00:00\n", - "Buying WST on 2020-05-31 00:00:00\n", - "Buying TGT on 2020-05-31 00:00:00\n", - "Buying LLY on 2020-05-31 00:00:00\n", - "Buying TMO on 2020-05-31 00:00:00\n", - "Buying EXR on 2020-05-31 00:00:00\n", - "Buying RVTY on 2020-05-31 00:00:00\n", - "Buying CL on 2020-05-31 00:00:00\n", - "Buying ROL on 2020-05-31 00:00:00\n", - "Buying TSCO on 2020-05-31 00:00:00\n", - "Selling LYB on 2020-05-31 00:00:00\n", - "Selling APO on 2020-05-31 00:00:00\n", - "Selling HES on 2020-05-31 00:00:00\n", - "Selling BKR on 2020-05-31 00:00:00\n", - "Selling PAYC on 2020-05-31 00:00:00\n", - "Selling PFG on 2020-05-31 00:00:00\n", - "Selling MS on 2020-05-31 00:00:00\n", - "Selling PH on 2020-05-31 00:00:00\n", - "Selling AXP on 2020-05-31 00:00:00\n", - "Selling MET on 2020-05-31 00:00:00\n", - "Selling SPG on 2020-05-31 00:00:00\n", - "Selling RF on 2020-05-31 00:00:00\n", - "Selling ENPH on 2020-05-31 00:00:00\n", - "Selling HWM on 2020-05-31 00:00:00\n", - "Selling FCX on 2020-05-31 00:00:00\n", - "Selling UAL on 2020-05-31 00:00:00\n", - "Selling WYNN on 2020-05-31 00:00:00\n", - "Selling LRCX on 2020-05-31 00:00:00\n", - "Selling DVN on 2020-05-31 00:00:00\n", - "Selling SWK on 2020-05-31 00:00:00\n", - "Selling AIG on 2020-05-31 00:00:00\n", - "Selling ON on 2020-05-31 00:00:00\n", - "Selling C on 2020-05-31 00:00:00\n", - "Selling CFG on 2020-05-31 00:00:00\n", - "Selling PRU on 2020-05-31 00:00:00\n", - "Selling OKE on 2020-05-31 00:00:00\n", - "Selling MPC on 2020-05-31 00:00:00\n", - "Selling IVZ on 2020-05-31 00:00:00\n", - "Selling FITB on 2020-05-31 00:00:00\n", - "Selling COF on 2020-05-31 00:00:00\n", - "Selling VTR on 2020-05-31 00:00:00\n", - "Selling BA on 2020-05-31 00:00:00\n", - "Selling BLDR on 2020-05-31 00:00:00\n", - "Selling KEY on 2020-05-31 00:00:00\n", - "Selling SYF on 2020-05-31 00:00:00\n", - "Selling TRGP on 2020-05-31 00:00:00\n", - "Selling OXY on 2020-05-31 00:00:00\n", - "Selling DRI on 2020-05-31 00:00:00\n", - "Selling WY on 2020-05-31 00:00:00\n", - "Selling TPR on 2020-05-31 00:00:00\n", - "Selling RCL on 2020-05-31 00:00:00\n", - "Selling MGM on 2020-05-31 00:00:00\n", - "Selling HAL on 2020-05-31 00:00:00\n", - "Selling AMP on 2020-05-31 00:00:00\n", - "Selling APA on 2020-05-31 00:00:00\n", - "Selling DFS on 2020-05-31 00:00:00\n", - "Selling CCL on 2020-05-31 00:00:00\n", - "Selling NCLH on 2020-05-31 00:00:00\n", - "Selling CZR on 2020-05-31 00:00:00\n", - "Buying CPB on 2020-06-30 00:00:00\n", - "Buying KR on 2020-06-30 00:00:00\n", - "Buying CLX on 2020-06-30 00:00:00\n", - "Buying TTWO on 2020-06-30 00:00:00\n", - "Buying EA on 2020-06-30 00:00:00\n", - "Buying HRL on 2020-06-30 00:00:00\n", - "Buying NFLX on 2020-06-30 00:00:00\n", - "Buying GIS on 2020-06-30 00:00:00\n", - "Buying DPZ on 2020-06-30 00:00:00\n", - "Buying K on 2020-06-30 00:00:00\n", - "Buying WMT on 2020-06-30 00:00:00\n", - "Buying DG on 2020-06-30 00:00:00\n", - "Buying SJM on 2020-06-30 00:00:00\n", - "Buying CRWD on 2020-06-30 00:00:00\n", - "Buying CHD on 2020-06-30 00:00:00\n", - "Buying MRNA on 2020-06-30 00:00:00\n", - "Buying REGN on 2020-06-30 00:00:00\n", - "Buying NEM on 2020-06-30 00:00:00\n", - "Buying AKAM on 2020-06-30 00:00:00\n", - "Buying KMB on 2020-06-30 00:00:00\n", - "Buying BDX on 2020-06-30 00:00:00\n", - "Buying KDP on 2020-06-30 00:00:00\n", - "Buying EBAY on 2020-06-30 00:00:00\n", - "Buying MKC on 2020-06-30 00:00:00\n", - "Buying CAG on 2020-06-30 00:00:00\n", - "Buying LLY on 2020-06-30 00:00:00\n", - "Buying BMY on 2020-06-30 00:00:00\n", - "Buying PG on 2020-06-30 00:00:00\n", - "Buying CHTR on 2020-06-30 00:00:00\n", - "Buying HSY on 2020-06-30 00:00:00\n", - "Buying VRTX on 2020-06-30 00:00:00\n", - "Buying COST on 2020-06-30 00:00:00\n", - "Buying AMGN on 2020-06-30 00:00:00\n", - "Buying CARR on 2020-06-30 00:00:00\n", - "Buying CL on 2020-06-30 00:00:00\n", - "Buying AMZN on 2020-06-30 00:00:00\n", - "Buying ABBV on 2020-06-30 00:00:00\n", - "Buying JNJ on 2020-06-30 00:00:00\n", - "Buying BIIB on 2020-06-30 00:00:00\n", - "Buying ROL on 2020-06-30 00:00:00\n", - "Buying RMD on 2020-06-30 00:00:00\n", - "Buying ROP on 2020-06-30 00:00:00\n", - "Buying TSCO on 2020-06-30 00:00:00\n", - "Buying VZ on 2020-06-30 00:00:00\n", - "Buying TYL on 2020-06-30 00:00:00\n", - "Buying MKTX on 2020-06-30 00:00:00\n", - "Buying INCY on 2020-06-30 00:00:00\n", - "Buying MOH on 2020-06-30 00:00:00\n", - "Buying ERIE on 2020-06-30 00:00:00\n", - "Selling FANG on 2020-06-30 00:00:00\n", - "Selling LYB on 2020-06-30 00:00:00\n", - "Selling WDC on 2020-06-30 00:00:00\n", - "Selling MOS on 2020-06-30 00:00:00\n", - "Selling IVZ on 2020-06-30 00:00:00\n", - "Selling HES on 2020-06-30 00:00:00\n", - "Selling CBRE on 2020-06-30 00:00:00\n", - "Selling PAYC on 2020-06-30 00:00:00\n", - "Selling KEY on 2020-06-30 00:00:00\n", - "Selling DVN on 2020-06-30 00:00:00\n", - "Selling FCX on 2020-06-30 00:00:00\n", - "Selling RF on 2020-06-30 00:00:00\n", - "Selling SLB on 2020-06-30 00:00:00\n", - "Selling HBAN on 2020-06-30 00:00:00\n", - "Selling NXPI on 2020-06-30 00:00:00\n", - "Selling MHK on 2020-06-30 00:00:00\n", - "Selling EXPE on 2020-06-30 00:00:00\n", - "Selling APTV on 2020-06-30 00:00:00\n", - "Selling HWM on 2020-06-30 00:00:00\n", - "Selling C on 2020-06-30 00:00:00\n", - "Selling KIM on 2020-06-30 00:00:00\n", - "Selling CFG on 2020-06-30 00:00:00\n", - "Selling TPR on 2020-06-30 00:00:00\n", - "Selling OKE on 2020-06-30 00:00:00\n", - "Selling WY on 2020-06-30 00:00:00\n", - "Selling ON on 2020-06-30 00:00:00\n", - "Selling WELL on 2020-06-30 00:00:00\n", - "Selling COF on 2020-06-30 00:00:00\n", - "Selling TRGP on 2020-06-30 00:00:00\n", - "Selling VLO on 2020-06-30 00:00:00\n", - "Selling FITB on 2020-06-30 00:00:00\n", - "Selling SYF on 2020-06-30 00:00:00\n", - "Selling VTR on 2020-06-30 00:00:00\n", - "Selling HAL on 2020-06-30 00:00:00\n", - "Selling BA on 2020-06-30 00:00:00\n", - "Selling MAR on 2020-06-30 00:00:00\n", - "Selling SPG on 2020-06-30 00:00:00\n", - "Selling WYNN on 2020-06-30 00:00:00\n", - "Selling DFS on 2020-06-30 00:00:00\n", - "Selling BLDR on 2020-06-30 00:00:00\n", - "Selling MPC on 2020-06-30 00:00:00\n", - "Selling UAL on 2020-06-30 00:00:00\n", - "Selling APA on 2020-06-30 00:00:00\n", - "Selling OXY on 2020-06-30 00:00:00\n", - "Selling MGM on 2020-06-30 00:00:00\n", - "Selling CCL on 2020-06-30 00:00:00\n", - "Selling RCL on 2020-06-30 00:00:00\n", - "Selling NCLH on 2020-06-30 00:00:00\n", - "Selling CZR on 2020-06-30 00:00:00\n", - "Buying CLX on 2020-07-31 00:00:00\n", - "Buying KR on 2020-07-31 00:00:00\n", - "Buying WMT on 2020-07-31 00:00:00\n", - "Buying CPB on 2020-07-31 00:00:00\n", - "Buying DPZ on 2020-07-31 00:00:00\n", - "Buying NEM on 2020-07-31 00:00:00\n", - "Buying EA on 2020-07-31 00:00:00\n", - "Buying DG on 2020-07-31 00:00:00\n", - "Buying REGN on 2020-07-31 00:00:00\n", - "Buying HRL on 2020-07-31 00:00:00\n", - "Buying CHD on 2020-07-31 00:00:00\n", - "Buying D on 2020-07-31 00:00:00\n", - "Buying BDX on 2020-07-31 00:00:00\n", - "Buying GIS on 2020-07-31 00:00:00\n", - "Buying KMB on 2020-07-31 00:00:00\n", - "Buying TSCO on 2020-07-31 00:00:00\n", - "Buying COST on 2020-07-31 00:00:00\n", - "Buying KDP on 2020-07-31 00:00:00\n", - "Buying TYL on 2020-07-31 00:00:00\n", - "Buying SJM on 2020-07-31 00:00:00\n", - "Buying EBAY on 2020-07-31 00:00:00\n", - "Buying TTWO on 2020-07-31 00:00:00\n", - "Buying WEC on 2020-07-31 00:00:00\n", - "Buying VRTX on 2020-07-31 00:00:00\n", - "Buying CL on 2020-07-31 00:00:00\n", - "Buying AMGN on 2020-07-31 00:00:00\n", - "Buying MKC on 2020-07-31 00:00:00\n", - "Buying ABBV on 2020-07-31 00:00:00\n", - "Buying GILD on 2020-07-31 00:00:00\n", - "Buying ED on 2020-07-31 00:00:00\n", - "Buying ES on 2020-07-31 00:00:00\n", - "Buying MOH on 2020-07-31 00:00:00\n", - "Buying TGT on 2020-07-31 00:00:00\n", - "Buying XEL on 2020-07-31 00:00:00\n", - "Buying JKHY on 2020-07-31 00:00:00\n", - "Buying DLTR on 2020-07-31 00:00:00\n", - "Buying AKAM on 2020-07-31 00:00:00\n", - "Buying AWK on 2020-07-31 00:00:00\n", - "Buying BMY on 2020-07-31 00:00:00\n", - "Buying MRNA on 2020-07-31 00:00:00\n", - "Buying HUM on 2020-07-31 00:00:00\n", - "Buying JNJ on 2020-07-31 00:00:00\n", - "Buying EQIX on 2020-07-31 00:00:00\n", - "Buying K on 2020-07-31 00:00:00\n", - "Buying WST on 2020-07-31 00:00:00\n", - "Buying VRSN on 2020-07-31 00:00:00\n", - "Buying PG on 2020-07-31 00:00:00\n", - "Buying DUK on 2020-07-31 00:00:00\n", - "Buying SBAC on 2020-07-31 00:00:00\n", - "Selling WY on 2020-07-31 00:00:00\n", - "Selling FCX on 2020-07-31 00:00:00\n", - "Selling MOS on 2020-07-31 00:00:00\n", - "Selling PFG on 2020-07-31 00:00:00\n", - "Selling CBRE on 2020-07-31 00:00:00\n", - "Selling TPR on 2020-07-31 00:00:00\n", - "Selling PRU on 2020-07-31 00:00:00\n", - "Selling COF on 2020-07-31 00:00:00\n", - "Selling VTR on 2020-07-31 00:00:00\n", - "Selling TFC on 2020-07-31 00:00:00\n", - "Selling IVZ on 2020-07-31 00:00:00\n", - "Selling BKR on 2020-07-31 00:00:00\n", - "Selling HBAN on 2020-07-31 00:00:00\n", - "Selling AIG on 2020-07-31 00:00:00\n", - "Selling TXT on 2020-07-31 00:00:00\n", - "Selling LYV on 2020-07-31 00:00:00\n", - "Selling VLO on 2020-07-31 00:00:00\n", - "Selling MPC on 2020-07-31 00:00:00\n", - "Selling RF on 2020-07-31 00:00:00\n", - "Selling KEY on 2020-07-31 00:00:00\n", - "Selling MAR on 2020-07-31 00:00:00\n", - "Selling LUV on 2020-07-31 00:00:00\n", - "Selling C on 2020-07-31 00:00:00\n", - "Selling SYF on 2020-07-31 00:00:00\n", - "Selling HES on 2020-07-31 00:00:00\n", - "Selling KIM on 2020-07-31 00:00:00\n", - "Selling CFG on 2020-07-31 00:00:00\n", - "Selling OKE on 2020-07-31 00:00:00\n", - "Selling FITB on 2020-07-31 00:00:00\n", - "Selling DFS on 2020-07-31 00:00:00\n", - "Selling EXPE on 2020-07-31 00:00:00\n", - "Selling BLDR on 2020-07-31 00:00:00\n", - "Selling SLB on 2020-07-31 00:00:00\n", - "Selling MGM on 2020-07-31 00:00:00\n", - "Selling DVN on 2020-07-31 00:00:00\n", - "Selling DAL on 2020-07-31 00:00:00\n", - "Selling TRGP on 2020-07-31 00:00:00\n", - "Selling SPG on 2020-07-31 00:00:00\n", - "Selling CZR on 2020-07-31 00:00:00\n", - "Selling HWM on 2020-07-31 00:00:00\n", - "Selling FANG on 2020-07-31 00:00:00\n", - "Selling BA on 2020-07-31 00:00:00\n", - "Selling APA on 2020-07-31 00:00:00\n", - "Selling HAL on 2020-07-31 00:00:00\n", - "Selling CCL on 2020-07-31 00:00:00\n", - "Selling RCL on 2020-07-31 00:00:00\n", - "Selling UAL on 2020-07-31 00:00:00\n", - "Selling OXY on 2020-07-31 00:00:00\n", - "Selling NCLH on 2020-07-31 00:00:00\n", - "Buying MRNA on 2020-08-31 00:00:00\n", - "Buying KR on 2020-08-31 00:00:00\n", - "Buying WMT on 2020-08-31 00:00:00\n", - "Buying CLX on 2020-08-31 00:00:00\n", - "Buying DG on 2020-08-31 00:00:00\n", - "Buying KDP on 2020-08-31 00:00:00\n", - "Buying D on 2020-08-31 00:00:00\n", - "Buying KMB on 2020-08-31 00:00:00\n", - "Buying HRL on 2020-08-31 00:00:00\n", - "Buying ES on 2020-08-31 00:00:00\n", - "Buying TGT on 2020-08-31 00:00:00\n", - "Buying CHD on 2020-08-31 00:00:00\n", - "Buying ED on 2020-08-31 00:00:00\n", - "Buying TSCO on 2020-08-31 00:00:00\n", - "Buying CL on 2020-08-31 00:00:00\n", - "Buying XEL on 2020-08-31 00:00:00\n", - "Buying REGN on 2020-08-31 00:00:00\n", - "Buying EBAY on 2020-08-31 00:00:00\n", - "Buying WEC on 2020-08-31 00:00:00\n", - "Buying DPZ on 2020-08-31 00:00:00\n", - "Buying DUK on 2020-08-31 00:00:00\n", - "Buying COST on 2020-08-31 00:00:00\n", - "Buying EA on 2020-08-31 00:00:00\n", - "Buying AWK on 2020-08-31 00:00:00\n", - "Buying DLTR on 2020-08-31 00:00:00\n", - "Buying BDX on 2020-08-31 00:00:00\n", - "Buying CPB on 2020-08-31 00:00:00\n", - "Buying TYL on 2020-08-31 00:00:00\n", - "Buying PG on 2020-08-31 00:00:00\n", - "Buying GILD on 2020-08-31 00:00:00\n", - "Buying VZ on 2020-08-31 00:00:00\n", - "Buying AZO on 2020-08-31 00:00:00\n", - "Buying FE on 2020-08-31 00:00:00\n", - "Buying DELL on 2020-08-31 00:00:00\n", - "Buying AKAM on 2020-08-31 00:00:00\n", - "Buying PSA on 2020-08-31 00:00:00\n", - "Buying EVRG on 2020-08-31 00:00:00\n", - "Buying CMS on 2020-08-31 00:00:00\n", - "Buying BR on 2020-08-31 00:00:00\n", - "Buying TTWO on 2020-08-31 00:00:00\n", - "Buying CTRA on 2020-08-31 00:00:00\n", - "Buying ORLY on 2020-08-31 00:00:00\n", - "Buying SJM on 2020-08-31 00:00:00\n", - "Buying AEP on 2020-08-31 00:00:00\n", - "Buying SBAC on 2020-08-31 00:00:00\n", - "Buying NEE on 2020-08-31 00:00:00\n", - "Buying AEE on 2020-08-31 00:00:00\n", - "Buying ATO on 2020-08-31 00:00:00\n", - "Buying GIS on 2020-08-31 00:00:00\n", - "Selling URI on 2020-08-31 00:00:00\n", - "Selling VTR on 2020-08-31 00:00:00\n", - "Selling TXT on 2020-08-31 00:00:00\n", - "Selling TPL on 2020-08-31 00:00:00\n", - "Selling TFC on 2020-08-31 00:00:00\n", - "Selling TPR on 2020-08-31 00:00:00\n", - "Selling STLD on 2020-08-31 00:00:00\n", - "Selling PSX on 2020-08-31 00:00:00\n", - "Selling IVZ on 2020-08-31 00:00:00\n", - "Selling RF on 2020-08-31 00:00:00\n", - "Selling EOG on 2020-08-31 00:00:00\n", - "Selling BKR on 2020-08-31 00:00:00\n", - "Selling TSLA on 2020-08-31 00:00:00\n", - "Selling PRU on 2020-08-31 00:00:00\n", - "Selling MPC on 2020-08-31 00:00:00\n", - "Selling LYB on 2020-08-31 00:00:00\n", - "Selling AIG on 2020-08-31 00:00:00\n", - "Selling MAR on 2020-08-31 00:00:00\n", - "Selling SYF on 2020-08-31 00:00:00\n", - "Selling DFS on 2020-08-31 00:00:00\n", - "Selling MOS on 2020-08-31 00:00:00\n", - "Selling UBER on 2020-08-31 00:00:00\n", - "Selling C on 2020-08-31 00:00:00\n", - "Selling HES on 2020-08-31 00:00:00\n", - "Selling VLO on 2020-08-31 00:00:00\n", - "Selling CFG on 2020-08-31 00:00:00\n", - "Selling FITB on 2020-08-31 00:00:00\n", - "Selling EXPE on 2020-08-31 00:00:00\n", - "Selling HWM on 2020-08-31 00:00:00\n", - "Selling LUV on 2020-08-31 00:00:00\n", - "Selling BLDR on 2020-08-31 00:00:00\n", - "Selling FCX on 2020-08-31 00:00:00\n", - "Selling SLB on 2020-08-31 00:00:00\n", - "Selling MGM on 2020-08-31 00:00:00\n", - "Selling OKE on 2020-08-31 00:00:00\n", - "Selling SPG on 2020-08-31 00:00:00\n", - "Selling APA on 2020-08-31 00:00:00\n", - "Selling DVN on 2020-08-31 00:00:00\n", - "Selling DAL on 2020-08-31 00:00:00\n", - "Selling CZR on 2020-08-31 00:00:00\n", - "Selling BA on 2020-08-31 00:00:00\n", - "Selling FANG on 2020-08-31 00:00:00\n", - "Selling HAL on 2020-08-31 00:00:00\n", - "Selling TRGP on 2020-08-31 00:00:00\n", - "Selling RCL on 2020-08-31 00:00:00\n", - "Selling CCL on 2020-08-31 00:00:00\n", - "Selling OXY on 2020-08-31 00:00:00\n", - "Selling UAL on 2020-08-31 00:00:00\n", - "Selling NCLH on 2020-08-31 00:00:00\n", - "Buying FE on 2020-09-30 00:00:00\n", - "Buying CBOE on 2020-09-30 00:00:00\n", - "Buying EQT on 2020-09-30 00:00:00\n", - "Buying VZ on 2020-09-30 00:00:00\n", - "Buying NI on 2020-09-30 00:00:00\n", - "Buying CVS on 2020-09-30 00:00:00\n", - "Buying ED on 2020-09-30 00:00:00\n", - "Buying T on 2020-09-30 00:00:00\n", - "Buying DPZ on 2020-09-30 00:00:00\n", - "Buying LVS on 2020-09-30 00:00:00\n", - "Buying NKE on 2020-09-30 00:00:00\n", - "Buying TPR on 2020-09-30 00:00:00\n", - "Buying EIX on 2020-09-30 00:00:00\n", - "Buying AEP on 2020-09-30 00:00:00\n", - "Buying BDX on 2020-09-30 00:00:00\n", - "Buying D on 2020-09-30 00:00:00\n", - "Buying SO on 2020-09-30 00:00:00\n", - "Buying PNW on 2020-09-30 00:00:00\n", - "Buying ATO on 2020-09-30 00:00:00\n", - "Buying PSA on 2020-09-30 00:00:00\n", - "Buying KR on 2020-09-30 00:00:00\n", - "Buying LHX on 2020-09-30 00:00:00\n", - "Buying LLY on 2020-09-30 00:00:00\n", - "Buying OMC on 2020-09-30 00:00:00\n", - "Buying EVRG on 2020-09-30 00:00:00\n", - "Buying DGX on 2020-09-30 00:00:00\n", - "Buying RL on 2020-09-30 00:00:00\n", - "Buying CTRA on 2020-09-30 00:00:00\n", - "Buying PARA on 2020-09-30 00:00:00\n", - "Buying PM on 2020-09-30 00:00:00\n", - "Buying DUK on 2020-09-30 00:00:00\n", - "Buying CNP on 2020-09-30 00:00:00\n", - "Buying WDC on 2020-09-30 00:00:00\n", - "Buying LH on 2020-09-30 00:00:00\n", - "Buying F on 2020-09-30 00:00:00\n", - "Buying STZ on 2020-09-30 00:00:00\n", - "Buying HII on 2020-09-30 00:00:00\n", - "Buying MCD on 2020-09-30 00:00:00\n", - "Buying PG on 2020-09-30 00:00:00\n", - "Buying JBHT on 2020-09-30 00:00:00\n", - "Buying PFE on 2020-09-30 00:00:00\n", - "Buying BAX on 2020-09-30 00:00:00\n", - "Buying PCG on 2020-09-30 00:00:00\n", - "Buying MO on 2020-09-30 00:00:00\n", - "Buying GILD on 2020-09-30 00:00:00\n", - "Buying TGT on 2020-09-30 00:00:00\n", - "Buying HRL on 2020-09-30 00:00:00\n", - "Buying BK on 2020-09-30 00:00:00\n", - "Buying KMB on 2020-09-30 00:00:00\n", - "Selling TRMB on 2020-09-30 00:00:00\n", - "Selling WDAY on 2020-09-30 00:00:00\n", - "Selling GOOG on 2020-09-30 00:00:00\n", - "Selling CSGP on 2020-09-30 00:00:00\n", - "Selling EOG on 2020-09-30 00:00:00\n", - "Selling ZBRA on 2020-09-30 00:00:00\n", - "Selling LEN on 2020-09-30 00:00:00\n", - "Selling APA on 2020-09-30 00:00:00\n", - "Selling FICO on 2020-09-30 00:00:00\n", - "Selling TER on 2020-09-30 00:00:00\n", - "Selling META on 2020-09-30 00:00:00\n", - "Selling PTC on 2020-09-30 00:00:00\n", - "Selling QCOM on 2020-09-30 00:00:00\n", - "Selling ALGN on 2020-09-30 00:00:00\n", - "Selling TRGP on 2020-09-30 00:00:00\n", - "Selling LRCX on 2020-09-30 00:00:00\n", - "Selling FCX on 2020-09-30 00:00:00\n", - "Selling BA on 2020-09-30 00:00:00\n", - "Selling MTCH on 2020-09-30 00:00:00\n", - "Selling NXPI on 2020-09-30 00:00:00\n", - "Selling ISRG on 2020-09-30 00:00:00\n", - "Selling SNPS on 2020-09-30 00:00:00\n", - "Selling HAL on 2020-09-30 00:00:00\n", - "Selling URI on 2020-09-30 00:00:00\n", - "Selling ANSS on 2020-09-30 00:00:00\n", - "Selling FANG on 2020-09-30 00:00:00\n", - "Selling CDNS on 2020-09-30 00:00:00\n", - "Selling ALB on 2020-09-30 00:00:00\n", - "Selling AMZN on 2020-09-30 00:00:00\n", - "Selling NOW on 2020-09-30 00:00:00\n", - "Selling ON on 2020-09-30 00:00:00\n", - "Selling DXCM on 2020-09-30 00:00:00\n", - "Selling ADSK on 2020-09-30 00:00:00\n", - "Selling MPWR on 2020-09-30 00:00:00\n", - "Selling AMD on 2020-09-30 00:00:00\n", - "Selling CZR on 2020-09-30 00:00:00\n", - "Selling GNRC on 2020-09-30 00:00:00\n", - "Selling KLAC on 2020-09-30 00:00:00\n", - "Selling ADBE on 2020-09-30 00:00:00\n", - "Selling MSFT on 2020-09-30 00:00:00\n", - "Selling CRM on 2020-09-30 00:00:00\n", - "Selling FSLR on 2020-09-30 00:00:00\n", - "Selling DVN on 2020-09-30 00:00:00\n", - "Selling SWKS on 2020-09-30 00:00:00\n", - "Selling AAPL on 2020-09-30 00:00:00\n", - "Selling BLDR on 2020-09-30 00:00:00\n", - "Selling NVDA on 2020-09-30 00:00:00\n", - "Selling ENPH on 2020-09-30 00:00:00\n", - "Selling TSLA on 2020-09-30 00:00:00\n", - "Buying DPZ on 2020-10-31 00:00:00\n", - "Buying CBOE on 2020-10-31 00:00:00\n", - "Buying DGX on 2020-10-31 00:00:00\n", - "Buying KR on 2020-10-31 00:00:00\n", - "Buying PCG on 2020-10-31 00:00:00\n", - "Buying T on 2020-10-31 00:00:00\n", - "Buying ATO on 2020-10-31 00:00:00\n", - "Buying VZ on 2020-10-31 00:00:00\n", - "Buying BDX on 2020-10-31 00:00:00\n", - "Buying AEP on 2020-10-31 00:00:00\n", - "Buying NI on 2020-10-31 00:00:00\n", - "Buying PARA on 2020-10-31 00:00:00\n", - "Buying PNW on 2020-10-31 00:00:00\n", - "Buying CVS on 2020-10-31 00:00:00\n", - "Buying LH on 2020-10-31 00:00:00\n", - "Buying ED on 2020-10-31 00:00:00\n", - "Buying CLX on 2020-10-31 00:00:00\n", - "Buying ERIE on 2020-10-31 00:00:00\n", - "Buying D on 2020-10-31 00:00:00\n", - "Buying SO on 2020-10-31 00:00:00\n", - "Buying JBHT on 2020-10-31 00:00:00\n", - "Buying NKE on 2020-10-31 00:00:00\n", - "Buying COR on 2020-10-31 00:00:00\n", - "Buying KMB on 2020-10-31 00:00:00\n", - "Buying CPT on 2020-10-31 00:00:00\n", - "Buying EVRG on 2020-10-31 00:00:00\n", - "Buying HII on 2020-10-31 00:00:00\n", - "Buying LLY on 2020-10-31 00:00:00\n", - "Buying DUK on 2020-10-31 00:00:00\n", - "Buying TAP on 2020-10-31 00:00:00\n", - "Buying BG on 2020-10-31 00:00:00\n", - "Buying AIZ on 2020-10-31 00:00:00\n", - "Buying CMS on 2020-10-31 00:00:00\n", - "Buying LHX on 2020-10-31 00:00:00\n", - "Buying TPR on 2020-10-31 00:00:00\n", - "Buying MCD on 2020-10-31 00:00:00\n", - "Buying PSA on 2020-10-31 00:00:00\n", - "Buying BAX on 2020-10-31 00:00:00\n", - "Buying PM on 2020-10-31 00:00:00\n", - "Buying FE on 2020-10-31 00:00:00\n", - "Buying CF on 2020-10-31 00:00:00\n", - "Buying RL on 2020-10-31 00:00:00\n", - "Buying KMX on 2020-10-31 00:00:00\n", - "Buying WAT on 2020-10-31 00:00:00\n", - "Buying HOLX on 2020-10-31 00:00:00\n", - "Buying NOC on 2020-10-31 00:00:00\n", - "Buying LVS on 2020-10-31 00:00:00\n", - "Buying HRL on 2020-10-31 00:00:00\n", - "Buying MO on 2020-10-31 00:00:00\n", - "Selling AMAT on 2020-10-31 00:00:00\n", - "Selling LRCX on 2020-10-31 00:00:00\n", - "Selling MCHP on 2020-10-31 00:00:00\n", - "Selling FTNT on 2020-10-31 00:00:00\n", - "Selling WDAY on 2020-10-31 00:00:00\n", - "Selling URI on 2020-10-31 00:00:00\n", - "Selling AVGO on 2020-10-31 00:00:00\n", - "Selling TRMB on 2020-10-31 00:00:00\n", - "Selling MA on 2020-10-31 00:00:00\n", - "Selling APA on 2020-10-31 00:00:00\n", - "Selling JBL on 2020-10-31 00:00:00\n", - "Selling ALGN on 2020-10-31 00:00:00\n", - "Selling MGM on 2020-10-31 00:00:00\n", - "Selling TRGP on 2020-10-31 00:00:00\n", - "Selling GOOGL on 2020-10-31 00:00:00\n", - "Selling NXPI on 2020-10-31 00:00:00\n", - "Selling EOG on 2020-10-31 00:00:00\n", - "Selling FANG on 2020-10-31 00:00:00\n", - "Selling SNPS on 2020-10-31 00:00:00\n", - "Selling GOOG on 2020-10-31 00:00:00\n", - "Selling ISRG on 2020-10-31 00:00:00\n", - "Selling ADSK on 2020-10-31 00:00:00\n", - "Selling FCX on 2020-10-31 00:00:00\n", - "Selling CDNS on 2020-10-31 00:00:00\n", - "Selling INTU on 2020-10-31 00:00:00\n", - "Selling PTC on 2020-10-31 00:00:00\n", - "Selling HAL on 2020-10-31 00:00:00\n", - "Selling ALB on 2020-10-31 00:00:00\n", - "Selling QCOM on 2020-10-31 00:00:00\n", - "Selling BA on 2020-10-31 00:00:00\n", - "Selling ENPH on 2020-10-31 00:00:00\n", - "Selling AMD on 2020-10-31 00:00:00\n", - "Selling META on 2020-10-31 00:00:00\n", - "Selling MPWR on 2020-10-31 00:00:00\n", - "Selling ON on 2020-10-31 00:00:00\n", - "Selling DXCM on 2020-10-31 00:00:00\n", - "Selling ANSS on 2020-10-31 00:00:00\n", - "Selling MSFT on 2020-10-31 00:00:00\n", - "Selling ADBE on 2020-10-31 00:00:00\n", - "Selling DVN on 2020-10-31 00:00:00\n", - "Selling KLAC on 2020-10-31 00:00:00\n", - "Selling CZR on 2020-10-31 00:00:00\n", - "Selling AMZN on 2020-10-31 00:00:00\n", - "Selling CRM on 2020-10-31 00:00:00\n", - "Selling MRNA on 2020-10-31 00:00:00\n", - "Selling AAPL on 2020-10-31 00:00:00\n", - "Selling SWKS on 2020-10-31 00:00:00\n", - "Selling NVDA on 2020-10-31 00:00:00\n", - "Selling TSLA on 2020-10-31 00:00:00\n", - "Buying CLX on 2020-11-30 00:00:00\n", - "Buying DPZ on 2020-11-30 00:00:00\n", - "Buying KR on 2020-11-30 00:00:00\n", - "Buying PCG on 2020-11-30 00:00:00\n", - "Buying DGX on 2020-11-30 00:00:00\n", - "Buying BDX on 2020-11-30 00:00:00\n", - "Buying AEP on 2020-11-30 00:00:00\n", - "Buying FSLR on 2020-11-30 00:00:00\n", - "Buying DLR on 2020-11-30 00:00:00\n", - "Buying EXR on 2020-11-30 00:00:00\n", - "Buying BAX on 2020-11-30 00:00:00\n", - "Buying PGR on 2020-11-30 00:00:00\n", - "Buying PSA on 2020-11-30 00:00:00\n", - "Buying LH on 2020-11-30 00:00:00\n", - "Buying CHD on 2020-11-30 00:00:00\n", - "Buying NKE on 2020-11-30 00:00:00\n", - "Buying KMB on 2020-11-30 00:00:00\n", - "Buying VZ on 2020-11-30 00:00:00\n", - "Buying WAT on 2020-11-30 00:00:00\n", - "Buying CRWD on 2020-11-30 00:00:00\n", - "Buying ROL on 2020-11-30 00:00:00\n", - "Buying HOLX on 2020-11-30 00:00:00\n", - "Buying T on 2020-11-30 00:00:00\n", - "Buying FE on 2020-11-30 00:00:00\n", - "Buying ERIE on 2020-11-30 00:00:00\n", - "Buying CBOE on 2020-11-30 00:00:00\n", - "Buying DHR on 2020-11-30 00:00:00\n", - "Buying AZO on 2020-11-30 00:00:00\n", - "Buying CPB on 2020-11-30 00:00:00\n", - "Buying HRL on 2020-11-30 00:00:00\n", - "Buying PG on 2020-11-30 00:00:00\n", - "Buying ED on 2020-11-30 00:00:00\n", - "Buying JBHT on 2020-11-30 00:00:00\n", - "Buying MCD on 2020-11-30 00:00:00\n", - "Buying DG on 2020-11-30 00:00:00\n", - "Buying SO on 2020-11-30 00:00:00\n", - "Buying K on 2020-11-30 00:00:00\n", - "Buying CCI on 2020-11-30 00:00:00\n", - "Buying SBAC on 2020-11-30 00:00:00\n", - "Buying TGT on 2020-11-30 00:00:00\n", - "Buying D on 2020-11-30 00:00:00\n", - "Buying PM on 2020-11-30 00:00:00\n", - "Buying SJM on 2020-11-30 00:00:00\n", - "Buying SHW on 2020-11-30 00:00:00\n", - "Buying HAS on 2020-11-30 00:00:00\n", - "Buying LNT on 2020-11-30 00:00:00\n", - "Buying NI on 2020-11-30 00:00:00\n", - "Buying EVRG on 2020-11-30 00:00:00\n", - "Buying POOL on 2020-11-30 00:00:00\n", - "Selling EXPE on 2020-11-30 00:00:00\n", - "Selling AMZN on 2020-11-30 00:00:00\n", - "Selling HWM on 2020-11-30 00:00:00\n", - "Selling REG on 2020-11-30 00:00:00\n", - "Selling ULTA on 2020-11-30 00:00:00\n", - "Selling LYV on 2020-11-30 00:00:00\n", - "Selling ISRG on 2020-11-30 00:00:00\n", - "Selling INTU on 2020-11-30 00:00:00\n", - "Selling DFS on 2020-11-30 00:00:00\n", - "Selling SWKS on 2020-11-30 00:00:00\n", - "Selling SPG on 2020-11-30 00:00:00\n", - "Selling SYY on 2020-11-30 00:00:00\n", - "Selling FRT on 2020-11-30 00:00:00\n", - "Selling QCOM on 2020-11-30 00:00:00\n", - "Selling KLAC on 2020-11-30 00:00:00\n", - "Selling ON on 2020-11-30 00:00:00\n", - "Selling MA on 2020-11-30 00:00:00\n", - "Selling ROST on 2020-11-30 00:00:00\n", - "Selling ALB on 2020-11-30 00:00:00\n", - "Selling SLB on 2020-11-30 00:00:00\n", - "Selling AAPL on 2020-11-30 00:00:00\n", - "Selling NVDA on 2020-11-30 00:00:00\n", - "Selling UAL on 2020-11-30 00:00:00\n", - "Selling MGM on 2020-11-30 00:00:00\n", - "Selling BKNG on 2020-11-30 00:00:00\n", - "Selling KIM on 2020-11-30 00:00:00\n", - "Selling SMCI on 2020-11-30 00:00:00\n", - "Selling MAR on 2020-11-30 00:00:00\n", - "Selling HST on 2020-11-30 00:00:00\n", - "Selling COP on 2020-11-30 00:00:00\n", - "Selling TRGP on 2020-11-30 00:00:00\n", - "Selling MPC on 2020-11-30 00:00:00\n", - "Selling HES on 2020-11-30 00:00:00\n", - "Selling WYNN on 2020-11-30 00:00:00\n", - "Selling MRNA on 2020-11-30 00:00:00\n", - "Selling PSX on 2020-11-30 00:00:00\n", - "Selling BA on 2020-11-30 00:00:00\n", - "Selling HAL on 2020-11-30 00:00:00\n", - "Selling RCL on 2020-11-30 00:00:00\n", - "Selling NCLH on 2020-11-30 00:00:00\n", - "Selling VLO on 2020-11-30 00:00:00\n", - "Selling EOG on 2020-11-30 00:00:00\n", - "Selling CZR on 2020-11-30 00:00:00\n", - "Selling FANG on 2020-11-30 00:00:00\n", - "Selling TSLA on 2020-11-30 00:00:00\n", - "Selling APA on 2020-11-30 00:00:00\n", - "Selling CCL on 2020-11-30 00:00:00\n", - "Selling DVN on 2020-11-30 00:00:00\n", - "Selling OXY on 2020-11-30 00:00:00\n", - "Buying FSLR on 2020-12-31 00:00:00\n", - "Buying GNRC on 2020-12-31 00:00:00\n", - "Buying CLX on 2020-12-31 00:00:00\n", - "Buying KR on 2020-12-31 00:00:00\n", - "Buying CRWD on 2020-12-31 00:00:00\n", - "Buying DLR on 2020-12-31 00:00:00\n", - "Buying EXR on 2020-12-31 00:00:00\n", - "Buying PCG on 2020-12-31 00:00:00\n", - "Buying ROL on 2020-12-31 00:00:00\n", - "Buying PSA on 2020-12-31 00:00:00\n", - "Buying CHD on 2020-12-31 00:00:00\n", - "Buying AZO on 2020-12-31 00:00:00\n", - "Buying DPZ on 2020-12-31 00:00:00\n", - "Buying ERIE on 2020-12-31 00:00:00\n", - "Buying CCI on 2020-12-31 00:00:00\n", - "Buying POOL on 2020-12-31 00:00:00\n", - "Buying KMB on 2020-12-31 00:00:00\n", - "Buying LH on 2020-12-31 00:00:00\n", - "Buying WAT on 2020-12-31 00:00:00\n", - "Buying SHW on 2020-12-31 00:00:00\n", - "Buying K on 2020-12-31 00:00:00\n", - "Buying MAS on 2020-12-31 00:00:00\n", - "Buying DGX on 2020-12-31 00:00:00\n", - "Buying TTWO on 2020-12-31 00:00:00\n", - "Buying TGT on 2020-12-31 00:00:00\n", - "Buying ADP on 2020-12-31 00:00:00\n", - "Buying BG on 2020-12-31 00:00:00\n", - "Buying PGR on 2020-12-31 00:00:00\n", - "Buying BAX on 2020-12-31 00:00:00\n", - "Buying HRL on 2020-12-31 00:00:00\n", - "Buying GEN on 2020-12-31 00:00:00\n", - "Buying CPB on 2020-12-31 00:00:00\n", - "Buying GIS on 2020-12-31 00:00:00\n", - "Buying DHR on 2020-12-31 00:00:00\n", - "Buying EA on 2020-12-31 00:00:00\n", - "Buying DHI on 2020-12-31 00:00:00\n", - "Buying TSCO on 2020-12-31 00:00:00\n", - "Buying DG on 2020-12-31 00:00:00\n", - "Buying SBAC on 2020-12-31 00:00:00\n", - "Buying BBY on 2020-12-31 00:00:00\n", - "Buying VZ on 2020-12-31 00:00:00\n", - "Buying SJM on 2020-12-31 00:00:00\n", - "Buying DAY on 2020-12-31 00:00:00\n", - "Buying AEP on 2020-12-31 00:00:00\n", - "Buying INCY on 2020-12-31 00:00:00\n", - "Buying CAG on 2020-12-31 00:00:00\n", - "Buying PHM on 2020-12-31 00:00:00\n", - "Buying AXON on 2020-12-31 00:00:00\n", - "Buying LEN on 2020-12-31 00:00:00\n", - "Selling DFS on 2020-12-31 00:00:00\n", - "Selling CFG on 2020-12-31 00:00:00\n", - "Selling HLT on 2020-12-31 00:00:00\n", - "Selling CPAY on 2020-12-31 00:00:00\n", - "Selling SYF on 2020-12-31 00:00:00\n", - "Selling HPE on 2020-12-31 00:00:00\n", - "Selling PFG on 2020-12-31 00:00:00\n", - "Selling IVZ on 2020-12-31 00:00:00\n", - "Selling BIIB on 2020-12-31 00:00:00\n", - "Selling BA on 2020-12-31 00:00:00\n", - "Selling JBL on 2020-12-31 00:00:00\n", - "Selling EQR on 2020-12-31 00:00:00\n", - "Selling AXP on 2020-12-31 00:00:00\n", - "Selling CI on 2020-12-31 00:00:00\n", - "Selling REG on 2020-12-31 00:00:00\n", - "Selling DAL on 2020-12-31 00:00:00\n", - "Selling MA on 2020-12-31 00:00:00\n", - "Selling TRGP on 2020-12-31 00:00:00\n", - "Selling STT on 2020-12-31 00:00:00\n", - "Selling EXPE on 2020-12-31 00:00:00\n", - "Selling SLB on 2020-12-31 00:00:00\n", - "Selling FRT on 2020-12-31 00:00:00\n", - "Selling UAL on 2020-12-31 00:00:00\n", - "Selling HES on 2020-12-31 00:00:00\n", - "Selling SPG on 2020-12-31 00:00:00\n", - "Selling ROST on 2020-12-31 00:00:00\n", - "Selling KIM on 2020-12-31 00:00:00\n", - "Selling MAR on 2020-12-31 00:00:00\n", - "Selling HST on 2020-12-31 00:00:00\n", - "Selling LYV on 2020-12-31 00:00:00\n", - "Selling COP on 2020-12-31 00:00:00\n", - "Selling SYY on 2020-12-31 00:00:00\n", - "Selling MGM on 2020-12-31 00:00:00\n", - "Selling BKNG on 2020-12-31 00:00:00\n", - "Selling SMCI on 2020-12-31 00:00:00\n", - "Selling MPC on 2020-12-31 00:00:00\n", - "Selling HAL on 2020-12-31 00:00:00\n", - "Selling WYNN on 2020-12-31 00:00:00\n", - "Selling EOG on 2020-12-31 00:00:00\n", - "Selling PSX on 2020-12-31 00:00:00\n", - "Selling APA on 2020-12-31 00:00:00\n", - "Selling DVN on 2020-12-31 00:00:00\n", - "Selling FANG on 2020-12-31 00:00:00\n", - "Selling CZR on 2020-12-31 00:00:00\n", - "Selling VLO on 2020-12-31 00:00:00\n", - "Selling OXY on 2020-12-31 00:00:00\n", - "Selling RCL on 2020-12-31 00:00:00\n", - "Selling NCLH on 2020-12-31 00:00:00\n", - "Selling CCL on 2020-12-31 00:00:00\n", - "Buying EQT on 2021-01-31 00:00:00\n", - "Buying MRNA on 2021-01-31 00:00:00\n", - "Buying CLX on 2021-01-31 00:00:00\n", - "Buying KR on 2021-01-31 00:00:00\n", - "Buying IRM on 2021-01-31 00:00:00\n", - "Buying CPB on 2021-01-31 00:00:00\n", - "Buying CTRA on 2021-01-31 00:00:00\n", - "Buying HRL on 2021-01-31 00:00:00\n", - "Buying SJM on 2021-01-31 00:00:00\n", - "Buying GIS on 2021-01-31 00:00:00\n", - "Buying MKTX on 2021-01-31 00:00:00\n", - "Buying CAG on 2021-01-31 00:00:00\n", - "Buying DGX on 2021-01-31 00:00:00\n", - "Buying K on 2021-01-31 00:00:00\n", - "Buying DLR on 2021-01-31 00:00:00\n", - "Buying CHD on 2021-01-31 00:00:00\n", - "Buying WBD on 2021-01-31 00:00:00\n", - "Buying MMM on 2021-01-31 00:00:00\n", - "Buying PARA on 2021-01-31 00:00:00\n", - "Buying BBY on 2021-01-31 00:00:00\n", - "Buying KMB on 2021-01-31 00:00:00\n", - "Buying AKAM on 2021-01-31 00:00:00\n", - "Buying LH on 2021-01-31 00:00:00\n", - "Buying CCI on 2021-01-31 00:00:00\n", - "Buying DPZ on 2021-01-31 00:00:00\n", - "Buying WEC on 2021-01-31 00:00:00\n", - "Buying ERIE on 2021-01-31 00:00:00\n", - "Buying PSA on 2021-01-31 00:00:00\n", - "Buying TSCO on 2021-01-31 00:00:00\n", - "Buying MKC on 2021-01-31 00:00:00\n", - "Buying EXR on 2021-01-31 00:00:00\n", - "Buying GILD on 2021-01-31 00:00:00\n", - "Buying T on 2021-01-31 00:00:00\n", - "Buying KDP on 2021-01-31 00:00:00\n", - "Buying ED on 2021-01-31 00:00:00\n", - "Buying STX on 2021-01-31 00:00:00\n", - "Buying DHR on 2021-01-31 00:00:00\n", - "Buying BAX on 2021-01-31 00:00:00\n", - "Buying ORCL on 2021-01-31 00:00:00\n", - "Buying GEN on 2021-01-31 00:00:00\n", - "Buying AEP on 2021-01-31 00:00:00\n", - "Buying ABT on 2021-01-31 00:00:00\n", - "Buying PCG on 2021-01-31 00:00:00\n", - "Buying SNA on 2021-01-31 00:00:00\n", - "Buying MAS on 2021-01-31 00:00:00\n", - "Buying PLTR on 2021-01-31 00:00:00\n", - "Buying SHW on 2021-01-31 00:00:00\n", - "Buying KHC on 2021-01-31 00:00:00\n", - "Buying FE on 2021-01-31 00:00:00\n", - "Selling QCOM on 2021-01-31 00:00:00\n", - "Selling DFS on 2021-01-31 00:00:00\n", - "Selling TRGP on 2021-01-31 00:00:00\n", - "Selling BA on 2021-01-31 00:00:00\n", - "Selling AXP on 2021-01-31 00:00:00\n", - "Selling MTB on 2021-01-31 00:00:00\n", - "Selling WFC on 2021-01-31 00:00:00\n", - "Selling RL on 2021-01-31 00:00:00\n", - "Selling CFG on 2021-01-31 00:00:00\n", - "Selling FICO on 2021-01-31 00:00:00\n", - "Selling CI on 2021-01-31 00:00:00\n", - "Selling LVS on 2021-01-31 00:00:00\n", - "Selling MCHP on 2021-01-31 00:00:00\n", - "Selling PFG on 2021-01-31 00:00:00\n", - "Selling SYF on 2021-01-31 00:00:00\n", - "Selling AMAT on 2021-01-31 00:00:00\n", - "Selling DRI on 2021-01-31 00:00:00\n", - "Selling HAL on 2021-01-31 00:00:00\n", - "Selling EOG on 2021-01-31 00:00:00\n", - "Selling DVN on 2021-01-31 00:00:00\n", - "Selling SYY on 2021-01-31 00:00:00\n", - "Selling HLT on 2021-01-31 00:00:00\n", - "Selling DAL on 2021-01-31 00:00:00\n", - "Selling SMCI on 2021-01-31 00:00:00\n", - "Selling LYV on 2021-01-31 00:00:00\n", - "Selling REG on 2021-01-31 00:00:00\n", - "Selling EXPE on 2021-01-31 00:00:00\n", - "Selling MAR on 2021-01-31 00:00:00\n", - "Selling HES on 2021-01-31 00:00:00\n", - "Selling SLB on 2021-01-31 00:00:00\n", - "Selling PSX on 2021-01-31 00:00:00\n", - "Selling HST on 2021-01-31 00:00:00\n", - "Selling UBER on 2021-01-31 00:00:00\n", - "Selling APA on 2021-01-31 00:00:00\n", - "Selling UAL on 2021-01-31 00:00:00\n", - "Selling ENPH on 2021-01-31 00:00:00\n", - "Selling MGM on 2021-01-31 00:00:00\n", - "Selling MPC on 2021-01-31 00:00:00\n", - "Selling FANG on 2021-01-31 00:00:00\n", - "Selling VLO on 2021-01-31 00:00:00\n", - "Selling SPG on 2021-01-31 00:00:00\n", - "Selling KIM on 2021-01-31 00:00:00\n", - "Selling BKNG on 2021-01-31 00:00:00\n", - "Selling OXY on 2021-01-31 00:00:00\n", - "Selling RCL on 2021-01-31 00:00:00\n", - "Selling WYNN on 2021-01-31 00:00:00\n", - "Selling NCLH on 2021-01-31 00:00:00\n", - "Selling CZR on 2021-01-31 00:00:00\n", - "Selling CCL on 2021-01-31 00:00:00\n", - "Buying MRNA on 2021-02-28 00:00:00\n", - "Buying PLTR on 2021-02-28 00:00:00\n", - "Buying KR on 2021-02-28 00:00:00\n", - "Buying WBD on 2021-02-28 00:00:00\n", - "Buying CLX on 2021-02-28 00:00:00\n", - "Buying IRM on 2021-02-28 00:00:00\n", - "Buying CPB on 2021-02-28 00:00:00\n", - "Buying EQT on 2021-02-28 00:00:00\n", - "Buying SJM on 2021-02-28 00:00:00\n", - "Buying K on 2021-02-28 00:00:00\n", - "Buying WBA on 2021-02-28 00:00:00\n", - "Buying CTRA on 2021-02-28 00:00:00\n", - "Buying DGX on 2021-02-28 00:00:00\n", - "Buying MMM on 2021-02-28 00:00:00\n", - "Buying MKTX on 2021-02-28 00:00:00\n", - "Buying WEC on 2021-02-28 00:00:00\n", - "Buying STX on 2021-02-28 00:00:00\n", - "Buying CAG on 2021-02-28 00:00:00\n", - "Buying GIS on 2021-02-28 00:00:00\n", - "Buying ED on 2021-02-28 00:00:00\n", - "Buying HRL on 2021-02-28 00:00:00\n", - "Buying BIIB on 2021-02-28 00:00:00\n", - "Buying TAP on 2021-02-28 00:00:00\n", - "Buying CHD on 2021-02-28 00:00:00\n", - "Buying DUK on 2021-02-28 00:00:00\n", - "Buying KMB on 2021-02-28 00:00:00\n", - "Buying JNPR on 2021-02-28 00:00:00\n", - "Buying AKAM on 2021-02-28 00:00:00\n", - "Buying ORCL on 2021-02-28 00:00:00\n", - "Buying PARA on 2021-02-28 00:00:00\n", - "Buying D on 2021-02-28 00:00:00\n", - "Buying ATO on 2021-02-28 00:00:00\n", - "Buying AEE on 2021-02-28 00:00:00\n", - "Buying KDP on 2021-02-28 00:00:00\n", - "Buying DLR on 2021-02-28 00:00:00\n", - "Buying TSCO on 2021-02-28 00:00:00\n", - "Buying KHC on 2021-02-28 00:00:00\n", - "Buying ERIE on 2021-02-28 00:00:00\n", - "Buying HPE on 2021-02-28 00:00:00\n", - "Buying ABT on 2021-02-28 00:00:00\n", - "Buying CMS on 2021-02-28 00:00:00\n", - "Buying PFE on 2021-02-28 00:00:00\n", - "Buying T on 2021-02-28 00:00:00\n", - "Buying CL on 2021-02-28 00:00:00\n", - "Buying AEP on 2021-02-28 00:00:00\n", - "Buying PKG on 2021-02-28 00:00:00\n", - "Buying NI on 2021-02-28 00:00:00\n", - "Buying BDX on 2021-02-28 00:00:00\n", - "Buying MKC on 2021-02-28 00:00:00\n", - "Selling FSLR on 2021-02-28 00:00:00\n", - "Selling PODD on 2021-02-28 00:00:00\n", - "Selling DECK on 2021-02-28 00:00:00\n", - "Selling TDG on 2021-02-28 00:00:00\n", - "Selling KMX on 2021-02-28 00:00:00\n", - "Selling FCX on 2021-02-28 00:00:00\n", - "Selling JBL on 2021-02-28 00:00:00\n", - "Selling DFS on 2021-02-28 00:00:00\n", - "Selling CFG on 2021-02-28 00:00:00\n", - "Selling URI on 2021-02-28 00:00:00\n", - "Selling ODFL on 2021-02-28 00:00:00\n", - "Selling SYF on 2021-02-28 00:00:00\n", - "Selling TXN on 2021-02-28 00:00:00\n", - "Selling MOS on 2021-02-28 00:00:00\n", - "Selling WDAY on 2021-02-28 00:00:00\n", - "Selling HLT on 2021-02-28 00:00:00\n", - "Selling PYPL on 2021-02-28 00:00:00\n", - "Selling ADSK on 2021-02-28 00:00:00\n", - "Selling WYNN on 2021-02-28 00:00:00\n", - "Selling UBER on 2021-02-28 00:00:00\n", - "Selling APA on 2021-02-28 00:00:00\n", - "Selling NCLH on 2021-02-28 00:00:00\n", - "Selling MTCH on 2021-02-28 00:00:00\n", - "Selling TXT on 2021-02-28 00:00:00\n", - "Selling NFLX on 2021-02-28 00:00:00\n", - "Selling SNPS on 2021-02-28 00:00:00\n", - "Selling MU on 2021-02-28 00:00:00\n", - "Selling AES on 2021-02-28 00:00:00\n", - "Selling OXY on 2021-02-28 00:00:00\n", - "Selling FICO on 2021-02-28 00:00:00\n", - "Selling ALGN on 2021-02-28 00:00:00\n", - "Selling BKNG on 2021-02-28 00:00:00\n", - "Selling MGM on 2021-02-28 00:00:00\n", - "Selling PTC on 2021-02-28 00:00:00\n", - "Selling ON on 2021-02-28 00:00:00\n", - "Selling KLAC on 2021-02-28 00:00:00\n", - "Selling NXPI on 2021-02-28 00:00:00\n", - "Selling PAYC on 2021-02-28 00:00:00\n", - "Selling SWKS on 2021-02-28 00:00:00\n", - "Selling LRCX on 2021-02-28 00:00:00\n", - "Selling ANSS on 2021-02-28 00:00:00\n", - "Selling FANG on 2021-02-28 00:00:00\n", - "Selling MCHP on 2021-02-28 00:00:00\n", - "Selling TER on 2021-02-28 00:00:00\n", - "Selling AMAT on 2021-02-28 00:00:00\n", - "Selling MPWR on 2021-02-28 00:00:00\n", - "Selling CZR on 2021-02-28 00:00:00\n", - "Selling TSLA on 2021-02-28 00:00:00\n", - "Selling ENPH on 2021-02-28 00:00:00\n", - "Buying WBD on 2021-03-31 00:00:00\n", - "Buying PARA on 2021-03-31 00:00:00\n", - "Buying IRM on 2021-03-31 00:00:00\n", - "Buying KR on 2021-03-31 00:00:00\n", - "Buying CLX on 2021-03-31 00:00:00\n", - "Buying SJM on 2021-03-31 00:00:00\n", - "Buying CPB on 2021-03-31 00:00:00\n", - "Buying K on 2021-03-31 00:00:00\n", - "Buying HRL on 2021-03-31 00:00:00\n", - "Buying WEC on 2021-03-31 00:00:00\n", - "Buying ATO on 2021-03-31 00:00:00\n", - "Buying MMM on 2021-03-31 00:00:00\n", - "Buying ED on 2021-03-31 00:00:00\n", - "Buying DGX on 2021-03-31 00:00:00\n", - "Buying TAP on 2021-03-31 00:00:00\n", - "Buying KMB on 2021-03-31 00:00:00\n", - "Buying CAG on 2021-03-31 00:00:00\n", - "Buying GIS on 2021-03-31 00:00:00\n", - "Buying DUK on 2021-03-31 00:00:00\n", - "Buying FOXA on 2021-03-31 00:00:00\n", - "Buying DVA on 2021-03-31 00:00:00\n", - "Buying PSA on 2021-03-31 00:00:00\n", - "Buying AEE on 2021-03-31 00:00:00\n", - "Buying NOC on 2021-03-31 00:00:00\n", - "Buying NI on 2021-03-31 00:00:00\n", - "Buying CHD on 2021-03-31 00:00:00\n", - "Buying AEP on 2021-03-31 00:00:00\n", - "Buying PPL on 2021-03-31 00:00:00\n", - "Buying EXR on 2021-03-31 00:00:00\n", - "Buying HIG on 2021-03-31 00:00:00\n", - "Buying LMT on 2021-03-31 00:00:00\n", - "Buying PFE on 2021-03-31 00:00:00\n", - "Buying CMS on 2021-03-31 00:00:00\n", - "Buying DLR on 2021-03-31 00:00:00\n", - "Buying AIZ on 2021-03-31 00:00:00\n", - "Buying BIIB on 2021-03-31 00:00:00\n", - "Buying CL on 2021-03-31 00:00:00\n", - "Buying PNW on 2021-03-31 00:00:00\n", - "Buying WBA on 2021-03-31 00:00:00\n", - "Buying EVRG on 2021-03-31 00:00:00\n", - "Buying TSN on 2021-03-31 00:00:00\n", - "Buying LNT on 2021-03-31 00:00:00\n", - "Buying STX on 2021-03-31 00:00:00\n", - "Buying OMC on 2021-03-31 00:00:00\n", - "Buying VZ on 2021-03-31 00:00:00\n", - "Buying D on 2021-03-31 00:00:00\n", - "Buying T on 2021-03-31 00:00:00\n", - "Buying ORCL on 2021-03-31 00:00:00\n", - "Buying CTRA on 2021-03-31 00:00:00\n", - "Selling URI on 2021-03-31 00:00:00\n", - "Selling FTNT on 2021-03-31 00:00:00\n", - "Selling DECK on 2021-03-31 00:00:00\n", - "Selling FANG on 2021-03-31 00:00:00\n", - "Selling ADI on 2021-03-31 00:00:00\n", - "Selling NFLX on 2021-03-31 00:00:00\n", - "Selling JBL on 2021-03-31 00:00:00\n", - "Selling MOS on 2021-03-31 00:00:00\n", - "Selling CRWD on 2021-03-31 00:00:00\n", - "Selling IVZ on 2021-03-31 00:00:00\n", - "Selling INTU on 2021-03-31 00:00:00\n", - "Selling TRMB on 2021-03-31 00:00:00\n", - "Selling CZR on 2021-03-31 00:00:00\n", - "Selling INTC on 2021-03-31 00:00:00\n", - "Selling CDNS on 2021-03-31 00:00:00\n", - "Selling AMD on 2021-03-31 00:00:00\n", - "Selling AVGO on 2021-03-31 00:00:00\n", - "Selling ADSK on 2021-03-31 00:00:00\n", - "Selling TXN on 2021-03-31 00:00:00\n", - "Selling TECH on 2021-03-31 00:00:00\n", - "Selling NOW on 2021-03-31 00:00:00\n", - "Selling ALGN on 2021-03-31 00:00:00\n", - "Selling MTCH on 2021-03-31 00:00:00\n", - "Selling DAY on 2021-03-31 00:00:00\n", - "Selling NVDA on 2021-03-31 00:00:00\n", - "Selling SNPS on 2021-03-31 00:00:00\n", - "Selling WDAY on 2021-03-31 00:00:00\n", - "Selling UBER on 2021-03-31 00:00:00\n", - "Selling GNRC on 2021-03-31 00:00:00\n", - "Selling FICO on 2021-03-31 00:00:00\n", - "Selling PODD on 2021-03-31 00:00:00\n", - "Selling FSLR on 2021-03-31 00:00:00\n", - "Selling FCX on 2021-03-31 00:00:00\n", - "Selling MU on 2021-03-31 00:00:00\n", - "Selling PYPL on 2021-03-31 00:00:00\n", - "Selling PAYC on 2021-03-31 00:00:00\n", - "Selling ANSS on 2021-03-31 00:00:00\n", - "Selling SWKS on 2021-03-31 00:00:00\n", - "Selling PTC on 2021-03-31 00:00:00\n", - "Selling KLAC on 2021-03-31 00:00:00\n", - "Selling NXPI on 2021-03-31 00:00:00\n", - "Selling LRCX on 2021-03-31 00:00:00\n", - "Selling ON on 2021-03-31 00:00:00\n", - "Selling MCHP on 2021-03-31 00:00:00\n", - "Selling TER on 2021-03-31 00:00:00\n", - "Selling AMAT on 2021-03-31 00:00:00\n", - "Selling MPWR on 2021-03-31 00:00:00\n", - "Selling TSLA on 2021-03-31 00:00:00\n", - "Selling ENPH on 2021-03-31 00:00:00\n", - "Buying WBD on 2021-04-30 00:00:00\n", - "Buying PARA on 2021-04-30 00:00:00\n", - "Buying HIG on 2021-04-30 00:00:00\n", - "Buying KMB on 2021-04-30 00:00:00\n", - "Buying HRL on 2021-04-30 00:00:00\n", - "Buying HAS on 2021-04-30 00:00:00\n", - "Buying CLX on 2021-04-30 00:00:00\n", - "Buying EXR on 2021-04-30 00:00:00\n", - "Buying WEC on 2021-04-30 00:00:00\n", - "Buying TSN on 2021-04-30 00:00:00\n", - "Buying K on 2021-04-30 00:00:00\n", - "Buying ATO on 2021-04-30 00:00:00\n", - "Buying SJM on 2021-04-30 00:00:00\n", - "Buying DGX on 2021-04-30 00:00:00\n", - "Buying CMS on 2021-04-30 00:00:00\n", - "Buying ED on 2021-04-30 00:00:00\n", - "Buying CL on 2021-04-30 00:00:00\n", - "Buying MRK on 2021-04-30 00:00:00\n", - "Buying ELV on 2021-04-30 00:00:00\n", - "Buying PNW on 2021-04-30 00:00:00\n", - "Buying NOC on 2021-04-30 00:00:00\n", - "Buying NI on 2021-04-30 00:00:00\n", - "Buying CNC on 2021-04-30 00:00:00\n", - "Buying CHD on 2021-04-30 00:00:00\n", - "Buying DVA on 2021-04-30 00:00:00\n", - "Buying LNT on 2021-04-30 00:00:00\n", - "Buying PSA on 2021-04-30 00:00:00\n", - "Buying EVRG on 2021-04-30 00:00:00\n", - "Buying VZ on 2021-04-30 00:00:00\n", - "Buying AEE on 2021-04-30 00:00:00\n", - "Buying PPL on 2021-04-30 00:00:00\n", - "Buying T on 2021-04-30 00:00:00\n", - "Buying CAG on 2021-04-30 00:00:00\n", - "Buying WM on 2021-04-30 00:00:00\n", - "Buying HSY on 2021-04-30 00:00:00\n", - "Buying DUK on 2021-04-30 00:00:00\n", - "Buying HUM on 2021-04-30 00:00:00\n", - "Buying YUM on 2021-04-30 00:00:00\n", - "Buying CI on 2021-04-30 00:00:00\n", - "Buying AEP on 2021-04-30 00:00:00\n", - "Buying CPB on 2021-04-30 00:00:00\n", - "Buying PEG on 2021-04-30 00:00:00\n", - "Buying GIS on 2021-04-30 00:00:00\n", - "Buying UNH on 2021-04-30 00:00:00\n", - "Buying DTE on 2021-04-30 00:00:00\n", - "Buying PFE on 2021-04-30 00:00:00\n", - "Buying MMM on 2021-04-30 00:00:00\n", - "Buying BAX on 2021-04-30 00:00:00\n", - "Buying SO on 2021-04-30 00:00:00\n", - "Selling JBL on 2021-04-30 00:00:00\n", - "Selling BLDR on 2021-04-30 00:00:00\n", - "Selling TYL on 2021-04-30 00:00:00\n", - "Selling NOW on 2021-04-30 00:00:00\n", - "Selling DHI on 2021-04-30 00:00:00\n", - "Selling TRMB on 2021-04-30 00:00:00\n", - "Selling ADSK on 2021-04-30 00:00:00\n", - "Selling QCOM on 2021-04-30 00:00:00\n", - "Selling LEN on 2021-04-30 00:00:00\n", - "Selling IVZ on 2021-04-30 00:00:00\n", - "Selling INTU on 2021-04-30 00:00:00\n", - "Selling ALGN on 2021-04-30 00:00:00\n", - "Selling TECH on 2021-04-30 00:00:00\n", - "Selling WDAY on 2021-04-30 00:00:00\n", - "Selling CRWD on 2021-04-30 00:00:00\n", - "Selling PTC on 2021-04-30 00:00:00\n", - "Selling INTC on 2021-04-30 00:00:00\n", - "Selling ADI on 2021-04-30 00:00:00\n", - "Selling MRNA on 2021-04-30 00:00:00\n", - "Selling PODD on 2021-04-30 00:00:00\n", - "Selling MTCH on 2021-04-30 00:00:00\n", - "Selling GNRC on 2021-04-30 00:00:00\n", - "Selling CDNS on 2021-04-30 00:00:00\n", - "Selling FSLR on 2021-04-30 00:00:00\n", - "Selling PLTR on 2021-04-30 00:00:00\n", - "Selling DAY on 2021-04-30 00:00:00\n", - "Selling TXN on 2021-04-30 00:00:00\n", - "Selling AVGO on 2021-04-30 00:00:00\n", - "Selling NTAP on 2021-04-30 00:00:00\n", - "Selling SNPS on 2021-04-30 00:00:00\n", - "Selling FCX on 2021-04-30 00:00:00\n", - "Selling PAYC on 2021-04-30 00:00:00\n", - "Selling AMD on 2021-04-30 00:00:00\n", - "Selling WDC on 2021-04-30 00:00:00\n", - "Selling ANSS on 2021-04-30 00:00:00\n", - "Selling NVDA on 2021-04-30 00:00:00\n", - "Selling PYPL on 2021-04-30 00:00:00\n", - "Selling MU on 2021-04-30 00:00:00\n", - "Selling NXPI on 2021-04-30 00:00:00\n", - "Selling MCHP on 2021-04-30 00:00:00\n", - "Selling SWKS on 2021-04-30 00:00:00\n", - "Selling MPWR on 2021-04-30 00:00:00\n", - "Selling AMAT on 2021-04-30 00:00:00\n", - "Selling ENPH on 2021-04-30 00:00:00\n", - "Selling ON on 2021-04-30 00:00:00\n", - "Selling TSLA on 2021-04-30 00:00:00\n", - "Selling KLAC on 2021-04-30 00:00:00\n", - "Selling TER on 2021-04-30 00:00:00\n", - "Selling LRCX on 2021-04-30 00:00:00\n", - "Buying PARA on 2021-05-31 00:00:00\n", - "Buying WBD on 2021-05-31 00:00:00\n", - "Buying HIG on 2021-05-31 00:00:00\n", - "Buying GEN on 2021-05-31 00:00:00\n", - "Buying CTRA on 2021-05-31 00:00:00\n", - "Buying CNC on 2021-05-31 00:00:00\n", - "Buying KMB on 2021-05-31 00:00:00\n", - "Buying DGX on 2021-05-31 00:00:00\n", - "Buying NI on 2021-05-31 00:00:00\n", - "Buying ED on 2021-05-31 00:00:00\n", - "Buying LNT on 2021-05-31 00:00:00\n", - "Buying VZ on 2021-05-31 00:00:00\n", - "Buying ATO on 2021-05-31 00:00:00\n", - "Buying CVS on 2021-05-31 00:00:00\n", - "Buying WEC on 2021-05-31 00:00:00\n", - "Buying COR on 2021-05-31 00:00:00\n", - "Buying HRL on 2021-05-31 00:00:00\n", - "Buying CL on 2021-05-31 00:00:00\n", - "Buying HUM on 2021-05-31 00:00:00\n", - "Buying AEE on 2021-05-31 00:00:00\n", - "Buying CME on 2021-05-31 00:00:00\n", - "Buying CHD on 2021-05-31 00:00:00\n", - "Buying ELV on 2021-05-31 00:00:00\n", - "Buying CAG on 2021-05-31 00:00:00\n", - "Buying EVRG on 2021-05-31 00:00:00\n", - "Buying MRK on 2021-05-31 00:00:00\n", - "Buying CMS on 2021-05-31 00:00:00\n", - "Buying PPL on 2021-05-31 00:00:00\n", - "Buying VST on 2021-05-31 00:00:00\n", - "Buying TSN on 2021-05-31 00:00:00\n", - "Buying CLX on 2021-05-31 00:00:00\n", - "Buying JNJ on 2021-05-31 00:00:00\n", - "Buying CBOE on 2021-05-31 00:00:00\n", - "Buying NOC on 2021-05-31 00:00:00\n", - "Buying BMY on 2021-05-31 00:00:00\n", - "Buying AEP on 2021-05-31 00:00:00\n", - "Buying DPZ on 2021-05-31 00:00:00\n", - "Buying BDX on 2021-05-31 00:00:00\n", - "Buying LH on 2021-05-31 00:00:00\n", - "Buying FOXA on 2021-05-31 00:00:00\n", - "Buying DUK on 2021-05-31 00:00:00\n", - "Buying HSY on 2021-05-31 00:00:00\n", - "Buying CI on 2021-05-31 00:00:00\n", - "Buying T on 2021-05-31 00:00:00\n", - "Buying EFX on 2021-05-31 00:00:00\n", - "Buying PFE on 2021-05-31 00:00:00\n", - "Buying KO on 2021-05-31 00:00:00\n", - "Buying DIS on 2021-05-31 00:00:00\n", - "Buying SO on 2021-05-31 00:00:00\n", - "Selling JBL on 2021-05-31 00:00:00\n", - "Selling PTC on 2021-05-31 00:00:00\n", - "Selling ANET on 2021-05-31 00:00:00\n", - "Selling TRMB on 2021-05-31 00:00:00\n", - "Selling UBER on 2021-05-31 00:00:00\n", - "Selling ISRG on 2021-05-31 00:00:00\n", - "Selling ADSK on 2021-05-31 00:00:00\n", - "Selling FICO on 2021-05-31 00:00:00\n", - "Selling INTC on 2021-05-31 00:00:00\n", - "Selling ENPH on 2021-05-31 00:00:00\n", - "Selling WDAY on 2021-05-31 00:00:00\n", - "Selling PLTR on 2021-05-31 00:00:00\n", - "Selling PHM on 2021-05-31 00:00:00\n", - "Selling FTNT on 2021-05-31 00:00:00\n", - "Selling SNPS on 2021-05-31 00:00:00\n", - "Selling MTCH on 2021-05-31 00:00:00\n", - "Selling CDNS on 2021-05-31 00:00:00\n", - "Selling HPQ on 2021-05-31 00:00:00\n", - "Selling AXON on 2021-05-31 00:00:00\n", - "Selling ADI on 2021-05-31 00:00:00\n", - "Selling PYPL on 2021-05-31 00:00:00\n", - "Selling TXN on 2021-05-31 00:00:00\n", - "Selling AMD on 2021-05-31 00:00:00\n", - "Selling DAY on 2021-05-31 00:00:00\n", - "Selling DHI on 2021-05-31 00:00:00\n", - "Selling ALGN on 2021-05-31 00:00:00\n", - "Selling FCX on 2021-05-31 00:00:00\n", - "Selling AVGO on 2021-05-31 00:00:00\n", - "Selling CZR on 2021-05-31 00:00:00\n", - "Selling QCOM on 2021-05-31 00:00:00\n", - "Selling LEN on 2021-05-31 00:00:00\n", - "Selling BLDR on 2021-05-31 00:00:00\n", - "Selling GNRC on 2021-05-31 00:00:00\n", - "Selling STX on 2021-05-31 00:00:00\n", - "Selling MRNA on 2021-05-31 00:00:00\n", - "Selling TSLA on 2021-05-31 00:00:00\n", - "Selling PAYC on 2021-05-31 00:00:00\n", - "Selling NVDA on 2021-05-31 00:00:00\n", - "Selling SWKS on 2021-05-31 00:00:00\n", - "Selling MU on 2021-05-31 00:00:00\n", - "Selling MCHP on 2021-05-31 00:00:00\n", - "Selling WDC on 2021-05-31 00:00:00\n", - "Selling MPWR on 2021-05-31 00:00:00\n", - "Selling ON on 2021-05-31 00:00:00\n", - "Selling NXPI on 2021-05-31 00:00:00\n", - "Selling KLAC on 2021-05-31 00:00:00\n", - "Selling TER on 2021-05-31 00:00:00\n", - "Selling LRCX on 2021-05-31 00:00:00\n", - "Selling AMAT on 2021-05-31 00:00:00\n", - "Buying GEN on 2021-06-30 00:00:00\n", - "Buying DPZ on 2021-06-30 00:00:00\n", - "Buying BIIB on 2021-06-30 00:00:00\n", - "Buying VTRS on 2021-06-30 00:00:00\n", - "Buying MRK on 2021-06-30 00:00:00\n", - "Buying CLX on 2021-06-30 00:00:00\n", - "Buying BDX on 2021-06-30 00:00:00\n", - "Buying BMY on 2021-06-30 00:00:00\n", - "Buying CTRA on 2021-06-30 00:00:00\n", - "Buying KMB on 2021-06-30 00:00:00\n", - "Buying CHD on 2021-06-30 00:00:00\n", - "Buying CVS on 2021-06-30 00:00:00\n", - "Buying DGX on 2021-06-30 00:00:00\n", - "Buying INCY on 2021-06-30 00:00:00\n", - "Buying CAG on 2021-06-30 00:00:00\n", - "Buying CNC on 2021-06-30 00:00:00\n", - "Buying JNJ on 2021-06-30 00:00:00\n", - "Buying VZ on 2021-06-30 00:00:00\n", - "Buying FOXA on 2021-06-30 00:00:00\n", - "Buying COR on 2021-06-30 00:00:00\n", - "Buying EFX on 2021-06-30 00:00:00\n", - "Buying DLR on 2021-06-30 00:00:00\n", - "Buying CME on 2021-06-30 00:00:00\n", - "Buying GILD on 2021-06-30 00:00:00\n", - "Buying CL on 2021-06-30 00:00:00\n", - "Buying HUM on 2021-06-30 00:00:00\n", - "Buying ED on 2021-06-30 00:00:00\n", - "Buying PSA on 2021-06-30 00:00:00\n", - "Buying GIS on 2021-06-30 00:00:00\n", - "Buying EQIX on 2021-06-30 00:00:00\n", - "Buying REGN on 2021-06-30 00:00:00\n", - "Buying PG on 2021-06-30 00:00:00\n", - "Buying HRL on 2021-06-30 00:00:00\n", - "Buying MKC on 2021-06-30 00:00:00\n", - "Buying T on 2021-06-30 00:00:00\n", - "Buying BAX on 2021-06-30 00:00:00\n", - "Buying LNT on 2021-06-30 00:00:00\n", - "Buying DG on 2021-06-30 00:00:00\n", - "Buying CI on 2021-06-30 00:00:00\n", - "Buying VRTX on 2021-06-30 00:00:00\n", - "Buying CBOE on 2021-06-30 00:00:00\n", - "Buying PFE on 2021-06-30 00:00:00\n", - "Buying AZO on 2021-06-30 00:00:00\n", - "Buying K on 2021-06-30 00:00:00\n", - "Buying ATO on 2021-06-30 00:00:00\n", - "Buying CRWD on 2021-06-30 00:00:00\n", - "Buying ABNB on 2021-06-30 00:00:00\n", - "Buying CPB on 2021-06-30 00:00:00\n", - "Buying MDLZ on 2021-06-30 00:00:00\n", - "Selling JNPR on 2021-06-30 00:00:00\n", - "Selling NWSA on 2021-06-30 00:00:00\n", - "Selling NTAP on 2021-06-30 00:00:00\n", - "Selling FSLR on 2021-06-30 00:00:00\n", - "Selling ROST on 2021-06-30 00:00:00\n", - "Selling BWA on 2021-06-30 00:00:00\n", - "Selling AXON on 2021-06-30 00:00:00\n", - "Selling STLD on 2021-06-30 00:00:00\n", - "Selling NUE on 2021-06-30 00:00:00\n", - "Selling LULU on 2021-06-30 00:00:00\n", - "Selling PHM on 2021-06-30 00:00:00\n", - "Selling EXPE on 2021-06-30 00:00:00\n", - "Selling URI on 2021-06-30 00:00:00\n", - "Selling ADSK on 2021-06-30 00:00:00\n", - "Selling SMCI on 2021-06-30 00:00:00\n", - "Selling HPQ on 2021-06-30 00:00:00\n", - "Selling ISRG on 2021-06-30 00:00:00\n", - "Selling JBL on 2021-06-30 00:00:00\n", - "Selling DHI on 2021-06-30 00:00:00\n", - "Selling ADI on 2021-06-30 00:00:00\n", - "Selling AVGO on 2021-06-30 00:00:00\n", - "Selling TSLA on 2021-06-30 00:00:00\n", - "Selling APTV on 2021-06-30 00:00:00\n", - "Selling TPR on 2021-06-30 00:00:00\n", - "Selling TEL on 2021-06-30 00:00:00\n", - "Selling TXN on 2021-06-30 00:00:00\n", - "Selling IVZ on 2021-06-30 00:00:00\n", - "Selling NCLH on 2021-06-30 00:00:00\n", - "Selling ALGN on 2021-06-30 00:00:00\n", - "Selling PAYC on 2021-06-30 00:00:00\n", - "Selling GNRC on 2021-06-30 00:00:00\n", - "Selling MHK on 2021-06-30 00:00:00\n", - "Selling SWKS on 2021-06-30 00:00:00\n", - "Selling QCOM on 2021-06-30 00:00:00\n", - "Selling NVDA on 2021-06-30 00:00:00\n", - "Selling MPWR on 2021-06-30 00:00:00\n", - "Selling NXPI on 2021-06-30 00:00:00\n", - "Selling MU on 2021-06-30 00:00:00\n", - "Selling MCHP on 2021-06-30 00:00:00\n", - "Selling ON on 2021-06-30 00:00:00\n", - "Selling BLDR on 2021-06-30 00:00:00\n", - "Selling WDC on 2021-06-30 00:00:00\n", - "Selling STX on 2021-06-30 00:00:00\n", - "Selling KLAC on 2021-06-30 00:00:00\n", - "Selling CZR on 2021-06-30 00:00:00\n", - "Selling TER on 2021-06-30 00:00:00\n", - "Selling MRNA on 2021-06-30 00:00:00\n", - "Selling LRCX on 2021-06-30 00:00:00\n", - "Selling AMAT on 2021-06-30 00:00:00\n", - "Buying GEN on 2021-07-31 00:00:00\n", - "Buying BIIB on 2021-07-31 00:00:00\n", - "Buying BDX on 2021-07-31 00:00:00\n", - "Buying EQIX on 2021-07-31 00:00:00\n", - "Buying DPZ on 2021-07-31 00:00:00\n", - "Buying CLX on 2021-07-31 00:00:00\n", - "Buying MRK on 2021-07-31 00:00:00\n", - "Buying KMB on 2021-07-31 00:00:00\n", - "Buying GIS on 2021-07-31 00:00:00\n", - "Buying CAG on 2021-07-31 00:00:00\n", - "Buying CHD on 2021-07-31 00:00:00\n", - "Buying MKC on 2021-07-31 00:00:00\n", - "Buying CPB on 2021-07-31 00:00:00\n", - "Buying CRWD on 2021-07-31 00:00:00\n", - "Buying REGN on 2021-07-31 00:00:00\n", - "Buying SJM on 2021-07-31 00:00:00\n", - "Buying K on 2021-07-31 00:00:00\n", - "Buying VRTX on 2021-07-31 00:00:00\n", - "Buying PG on 2021-07-31 00:00:00\n", - "Buying DLR on 2021-07-31 00:00:00\n", - "Buying GILD on 2021-07-31 00:00:00\n", - "Buying INCY on 2021-07-31 00:00:00\n", - "Buying HRL on 2021-07-31 00:00:00\n", - "Buying MKTX on 2021-07-31 00:00:00\n", - "Buying DGX on 2021-07-31 00:00:00\n", - "Buying VZ on 2021-07-31 00:00:00\n", - "Buying HOLX on 2021-07-31 00:00:00\n", - "Buying KR on 2021-07-31 00:00:00\n", - "Buying BAX on 2021-07-31 00:00:00\n", - "Buying BMY on 2021-07-31 00:00:00\n", - "Buying PFE on 2021-07-31 00:00:00\n", - "Buying AMGN on 2021-07-31 00:00:00\n", - "Buying HUM on 2021-07-31 00:00:00\n", - "Buying PEP on 2021-07-31 00:00:00\n", - "Buying HSY on 2021-07-31 00:00:00\n", - "Buying BALL on 2021-07-31 00:00:00\n", - "Buying ED on 2021-07-31 00:00:00\n", - "Buying D on 2021-07-31 00:00:00\n", - "Buying JKHY on 2021-07-31 00:00:00\n", - "Buying DG on 2021-07-31 00:00:00\n", - "Buying AKAM on 2021-07-31 00:00:00\n", - "Buying TMO on 2021-07-31 00:00:00\n", - "Buying PANW on 2021-07-31 00:00:00\n", - "Buying ES on 2021-07-31 00:00:00\n", - "Buying MDLZ on 2021-07-31 00:00:00\n", - "Buying PM on 2021-07-31 00:00:00\n", - "Buying ABT on 2021-07-31 00:00:00\n", - "Buying CL on 2021-07-31 00:00:00\n", - "Buying EVRG on 2021-07-31 00:00:00\n", - "Selling TRGP on 2021-07-31 00:00:00\n", - "Selling LUV on 2021-07-31 00:00:00\n", - "Selling HCA on 2021-07-31 00:00:00\n", - "Selling DHI on 2021-07-31 00:00:00\n", - "Selling DVN on 2021-07-31 00:00:00\n", - "Selling ALB on 2021-07-31 00:00:00\n", - "Selling OKE on 2021-07-31 00:00:00\n", - "Selling LYV on 2021-07-31 00:00:00\n", - "Selling EOG on 2021-07-31 00:00:00\n", - "Selling URI on 2021-07-31 00:00:00\n", - "Selling PHM on 2021-07-31 00:00:00\n", - "Selling MU on 2021-07-31 00:00:00\n", - "Selling ROST on 2021-07-31 00:00:00\n", - "Selling MGM on 2021-07-31 00:00:00\n", - "Selling SYF on 2021-07-31 00:00:00\n", - "Selling FCX on 2021-07-31 00:00:00\n", - "Selling RF on 2021-07-31 00:00:00\n", - "Selling DFS on 2021-07-31 00:00:00\n", - "Selling KMX on 2021-07-31 00:00:00\n", - "Selling UAL on 2021-07-31 00:00:00\n", - "Selling KIM on 2021-07-31 00:00:00\n", - "Selling NUE on 2021-07-31 00:00:00\n", - "Selling ALGN on 2021-07-31 00:00:00\n", - "Selling TPR on 2021-07-31 00:00:00\n", - "Selling MAR on 2021-07-31 00:00:00\n", - "Selling SPG on 2021-07-31 00:00:00\n", - "Selling APTV on 2021-07-31 00:00:00\n", - "Selling IVZ on 2021-07-31 00:00:00\n", - "Selling NXPI on 2021-07-31 00:00:00\n", - "Selling STLD on 2021-07-31 00:00:00\n", - "Selling TXT on 2021-07-31 00:00:00\n", - "Selling EXPE on 2021-07-31 00:00:00\n", - "Selling MCHP on 2021-07-31 00:00:00\n", - "Selling KLAC on 2021-07-31 00:00:00\n", - "Selling JBL on 2021-07-31 00:00:00\n", - "Selling STX on 2021-07-31 00:00:00\n", - "Selling DRI on 2021-07-31 00:00:00\n", - "Selling MHK on 2021-07-31 00:00:00\n", - "Selling ON on 2021-07-31 00:00:00\n", - "Selling BKR on 2021-07-31 00:00:00\n", - "Selling CCL on 2021-07-31 00:00:00\n", - "Selling RCL on 2021-07-31 00:00:00\n", - "Selling LRCX on 2021-07-31 00:00:00\n", - "Selling TER on 2021-07-31 00:00:00\n", - "Selling WDC on 2021-07-31 00:00:00\n", - "Selling BLDR on 2021-07-31 00:00:00\n", - "Selling NCLH on 2021-07-31 00:00:00\n", - "Selling AMAT on 2021-07-31 00:00:00\n", - "Selling CZR on 2021-07-31 00:00:00\n", - "Buying MRNA on 2021-08-31 00:00:00\n", - "Buying CLX on 2021-08-31 00:00:00\n", - "Buying EQIX on 2021-08-31 00:00:00\n", - "Buying BIIB on 2021-08-31 00:00:00\n", - "Buying KR on 2021-08-31 00:00:00\n", - "Buying PLTR on 2021-08-31 00:00:00\n", - "Buying DPZ on 2021-08-31 00:00:00\n", - "Buying HOLX on 2021-08-31 00:00:00\n", - "Buying BDX on 2021-08-31 00:00:00\n", - "Buying KMB on 2021-08-31 00:00:00\n", - "Buying NFLX on 2021-08-31 00:00:00\n", - "Buying BALL on 2021-08-31 00:00:00\n", - "Buying CPB on 2021-08-31 00:00:00\n", - "Buying DXCM on 2021-08-31 00:00:00\n", - "Buying PANW on 2021-08-31 00:00:00\n", - "Buying CAG on 2021-08-31 00:00:00\n", - "Buying SBAC on 2021-08-31 00:00:00\n", - "Buying TMO on 2021-08-31 00:00:00\n", - "Buying NEE on 2021-08-31 00:00:00\n", - "Buying BAX on 2021-08-31 00:00:00\n", - "Buying MRK on 2021-08-31 00:00:00\n", - "Buying MKTX on 2021-08-31 00:00:00\n", - "Buying GDDY on 2021-08-31 00:00:00\n", - "Buying DGX on 2021-08-31 00:00:00\n", - "Buying HRL on 2021-08-31 00:00:00\n", - "Buying K on 2021-08-31 00:00:00\n", - "Buying MKC on 2021-08-31 00:00:00\n", - "Buying CHD on 2021-08-31 00:00:00\n", - "Buying VRSN on 2021-08-31 00:00:00\n", - "Buying RMD on 2021-08-31 00:00:00\n", - "Buying CRWD on 2021-08-31 00:00:00\n", - "Buying WST on 2021-08-31 00:00:00\n", - "Buying PG on 2021-08-31 00:00:00\n", - "Buying DLR on 2021-08-31 00:00:00\n", - "Buying EVRG on 2021-08-31 00:00:00\n", - "Buying SJM on 2021-08-31 00:00:00\n", - "Buying DAY on 2021-08-31 00:00:00\n", - "Buying VRTX on 2021-08-31 00:00:00\n", - "Buying ABT on 2021-08-31 00:00:00\n", - "Buying RVTY on 2021-08-31 00:00:00\n", - "Buying TTWO on 2021-08-31 00:00:00\n", - "Buying GIS on 2021-08-31 00:00:00\n", - "Buying PODD on 2021-08-31 00:00:00\n", - "Buying PSA on 2021-08-31 00:00:00\n", - "Buying TSLA on 2021-08-31 00:00:00\n", - "Buying ES on 2021-08-31 00:00:00\n", - "Buying PEP on 2021-08-31 00:00:00\n", - "Buying DHR on 2021-08-31 00:00:00\n", - "Buying EA on 2021-08-31 00:00:00\n", - "Selling WFC on 2021-08-31 00:00:00\n", - "Selling PFG on 2021-08-31 00:00:00\n", - "Selling UAL on 2021-08-31 00:00:00\n", - "Selling HST on 2021-08-31 00:00:00\n", - "Selling TXT on 2021-08-31 00:00:00\n", - "Selling ALB on 2021-08-31 00:00:00\n", - "Selling HCA on 2021-08-31 00:00:00\n", - "Selling TRGP on 2021-08-31 00:00:00\n", - "Selling RL on 2021-08-31 00:00:00\n", - "Selling LYB on 2021-08-31 00:00:00\n", - "Selling MOS on 2021-08-31 00:00:00\n", - "Selling COP on 2021-08-31 00:00:00\n", - "Selling SYF on 2021-08-31 00:00:00\n", - "Selling DRI on 2021-08-31 00:00:00\n", - "Selling HBAN on 2021-08-31 00:00:00\n", - "Selling EQT on 2021-08-31 00:00:00\n", - "Selling URI on 2021-08-31 00:00:00\n", - "Selling CZR on 2021-08-31 00:00:00\n", - "Selling KEY on 2021-08-31 00:00:00\n", - "Selling BEN on 2021-08-31 00:00:00\n", - "Selling DFS on 2021-08-31 00:00:00\n", - "Selling KIM on 2021-08-31 00:00:00\n", - "Selling AIG on 2021-08-31 00:00:00\n", - "Selling STT on 2021-08-31 00:00:00\n", - "Selling CFG on 2021-08-31 00:00:00\n", - "Selling STLD on 2021-08-31 00:00:00\n", - "Selling SPG on 2021-08-31 00:00:00\n", - "Selling RF on 2021-08-31 00:00:00\n", - "Selling IVZ on 2021-08-31 00:00:00\n", - "Selling MHK on 2021-08-31 00:00:00\n", - "Selling OKE on 2021-08-31 00:00:00\n", - "Selling BLDR on 2021-08-31 00:00:00\n", - "Selling TPR on 2021-08-31 00:00:00\n", - "Selling MPC on 2021-08-31 00:00:00\n", - "Selling HES on 2021-08-31 00:00:00\n", - "Selling RCL on 2021-08-31 00:00:00\n", - "Selling CCL on 2021-08-31 00:00:00\n", - "Selling EOG on 2021-08-31 00:00:00\n", - "Selling PSX on 2021-08-31 00:00:00\n", - "Selling VLO on 2021-08-31 00:00:00\n", - "Selling SLB on 2021-08-31 00:00:00\n", - "Selling BKR on 2021-08-31 00:00:00\n", - "Selling OXY on 2021-08-31 00:00:00\n", - "Selling HAL on 2021-08-31 00:00:00\n", - "Selling DVN on 2021-08-31 00:00:00\n", - "Selling FCX on 2021-08-31 00:00:00\n", - "Selling APA on 2021-08-31 00:00:00\n", - "Selling NCLH on 2021-08-31 00:00:00\n", - "Selling FANG on 2021-08-31 00:00:00\n", - "Buying CLX on 2021-09-30 00:00:00\n", - "Buying MRNA on 2021-09-30 00:00:00\n", - "Buying HRL on 2021-09-30 00:00:00\n", - "Buying EA on 2021-09-30 00:00:00\n", - "Buying CHD on 2021-09-30 00:00:00\n", - "Buying KMB on 2021-09-30 00:00:00\n", - "Buying SJM on 2021-09-30 00:00:00\n", - "Buying WEC on 2021-09-30 00:00:00\n", - "Buying TTWO on 2021-09-30 00:00:00\n", - "Buying KR on 2021-09-30 00:00:00\n", - "Buying EQIX on 2021-09-30 00:00:00\n", - "Buying BDX on 2021-09-30 00:00:00\n", - "Buying HOLX on 2021-09-30 00:00:00\n", - "Buying INCY on 2021-09-30 00:00:00\n", - "Buying FDS on 2021-09-30 00:00:00\n", - "Buying MKTX on 2021-09-30 00:00:00\n", - "Buying K on 2021-09-30 00:00:00\n", - "Buying ES on 2021-09-30 00:00:00\n", - "Buying EVRG on 2021-09-30 00:00:00\n", - "Buying RMD on 2021-09-30 00:00:00\n", - "Buying CAG on 2021-09-30 00:00:00\n", - "Buying BALL on 2021-09-30 00:00:00\n", - "Buying CMS on 2021-09-30 00:00:00\n", - "Buying BAX on 2021-09-30 00:00:00\n", - "Buying DPZ on 2021-09-30 00:00:00\n", - "Buying D on 2021-09-30 00:00:00\n", - "Buying SBAC on 2021-09-30 00:00:00\n", - "Buying TMO on 2021-09-30 00:00:00\n", - "Buying MKC on 2021-09-30 00:00:00\n", - "Buying CPB on 2021-09-30 00:00:00\n", - "Buying PG on 2021-09-30 00:00:00\n", - "Buying PNW on 2021-09-30 00:00:00\n", - "Buying DLR on 2021-09-30 00:00:00\n", - "Buying GIS on 2021-09-30 00:00:00\n", - "Buying MRK on 2021-09-30 00:00:00\n", - "Buying BIIB on 2021-09-30 00:00:00\n", - "Buying CCI on 2021-09-30 00:00:00\n", - "Buying ED on 2021-09-30 00:00:00\n", - "Buying PODD on 2021-09-30 00:00:00\n", - "Buying AEE on 2021-09-30 00:00:00\n", - "Buying DUK on 2021-09-30 00:00:00\n", - "Buying NEE on 2021-09-30 00:00:00\n", - "Buying AWK on 2021-09-30 00:00:00\n", - "Buying VZ on 2021-09-30 00:00:00\n", - "Buying PSA on 2021-09-30 00:00:00\n", - "Buying LNT on 2021-09-30 00:00:00\n", - "Buying PEP on 2021-09-30 00:00:00\n", - "Buying CHTR on 2021-09-30 00:00:00\n", - "Buying XEL on 2021-09-30 00:00:00\n", - "Selling CZR on 2021-09-30 00:00:00\n", - "Selling MHK on 2021-09-30 00:00:00\n", - "Selling PSX on 2021-09-30 00:00:00\n", - "Selling TFC on 2021-09-30 00:00:00\n", - "Selling F on 2021-09-30 00:00:00\n", - "Selling KEY on 2021-09-30 00:00:00\n", - "Selling PFG on 2021-09-30 00:00:00\n", - "Selling BKR on 2021-09-30 00:00:00\n", - "Selling DRI on 2021-09-30 00:00:00\n", - "Selling APO on 2021-09-30 00:00:00\n", - "Selling VLO on 2021-09-30 00:00:00\n", - "Selling TROW on 2021-09-30 00:00:00\n", - "Selling FITB on 2021-09-30 00:00:00\n", - "Selling KIM on 2021-09-30 00:00:00\n", - "Selling SPG on 2021-09-30 00:00:00\n", - "Selling TPL on 2021-09-30 00:00:00\n", - "Selling HBAN on 2021-09-30 00:00:00\n", - "Selling DFS on 2021-09-30 00:00:00\n", - "Selling BA on 2021-09-30 00:00:00\n", - "Selling TRGP on 2021-09-30 00:00:00\n", - "Selling STLD on 2021-09-30 00:00:00\n", - "Selling MPC on 2021-09-30 00:00:00\n", - "Selling STT on 2021-09-30 00:00:00\n", - "Selling CFG on 2021-09-30 00:00:00\n", - "Selling UAL on 2021-09-30 00:00:00\n", - "Selling AMP on 2021-09-30 00:00:00\n", - "Selling NUE on 2021-09-30 00:00:00\n", - "Selling RF on 2021-09-30 00:00:00\n", - "Selling RCL on 2021-09-30 00:00:00\n", - "Selling IPG on 2021-09-30 00:00:00\n", - "Selling EOG on 2021-09-30 00:00:00\n", - "Selling SLB on 2021-09-30 00:00:00\n", - "Selling BLDR on 2021-09-30 00:00:00\n", - "Selling HAL on 2021-09-30 00:00:00\n", - "Selling MOS on 2021-09-30 00:00:00\n", - "Selling OKE on 2021-09-30 00:00:00\n", - "Selling IVZ on 2021-09-30 00:00:00\n", - "Selling ALB on 2021-09-30 00:00:00\n", - "Selling URI on 2021-09-30 00:00:00\n", - "Selling TPR on 2021-09-30 00:00:00\n", - "Selling HES on 2021-09-30 00:00:00\n", - "Selling BEN on 2021-09-30 00:00:00\n", - "Selling CCL on 2021-09-30 00:00:00\n", - "Selling FCX on 2021-09-30 00:00:00\n", - "Selling NCLH on 2021-09-30 00:00:00\n", - "Selling FANG on 2021-09-30 00:00:00\n", - "Selling DVN on 2021-09-30 00:00:00\n", - "Selling OXY on 2021-09-30 00:00:00\n", - "Selling APA on 2021-09-30 00:00:00\n", - "Buying PNW on 2021-10-31 00:00:00\n", - "Buying HRL on 2021-10-31 00:00:00\n", - "Buying ED on 2021-10-31 00:00:00\n", - "Buying ETR on 2021-10-31 00:00:00\n", - "Buying EA on 2021-10-31 00:00:00\n", - "Buying KR on 2021-10-31 00:00:00\n", - "Buying DPZ on 2021-10-31 00:00:00\n", - "Buying CLX on 2021-10-31 00:00:00\n", - "Buying CMS on 2021-10-31 00:00:00\n", - "Buying WEC on 2021-10-31 00:00:00\n", - "Buying K on 2021-10-31 00:00:00\n", - "Buying NEM on 2021-10-31 00:00:00\n", - "Buying SJM on 2021-10-31 00:00:00\n", - "Buying NOC on 2021-10-31 00:00:00\n", - "Buying CHD on 2021-10-31 00:00:00\n", - "Buying ES on 2021-10-31 00:00:00\n", - "Buying NI on 2021-10-31 00:00:00\n", - "Buying KMB on 2021-10-31 00:00:00\n", - "Buying EVRG on 2021-10-31 00:00:00\n", - "Buying CPT on 2021-10-31 00:00:00\n", - "Buying WELL on 2021-10-31 00:00:00\n", - "Buying FDS on 2021-10-31 00:00:00\n", - "Buying DUK on 2021-10-31 00:00:00\n", - "Buying PSA on 2021-10-31 00:00:00\n", - "Buying D on 2021-10-31 00:00:00\n", - "Buying LNT on 2021-10-31 00:00:00\n", - "Buying TSN on 2021-10-31 00:00:00\n", - "Buying EIX on 2021-10-31 00:00:00\n", - "Buying BALL on 2021-10-31 00:00:00\n", - "Buying AEP on 2021-10-31 00:00:00\n", - "Buying DOC on 2021-10-31 00:00:00\n", - "Buying AEE on 2021-10-31 00:00:00\n", - "Buying LW on 2021-10-31 00:00:00\n", - "Buying SO on 2021-10-31 00:00:00\n", - "Buying CL on 2021-10-31 00:00:00\n", - "Buying EQR on 2021-10-31 00:00:00\n", - "Buying AWK on 2021-10-31 00:00:00\n", - "Buying VTR on 2021-10-31 00:00:00\n", - "Buying INCY on 2021-10-31 00:00:00\n", - "Buying CBOE on 2021-10-31 00:00:00\n", - "Buying UDR on 2021-10-31 00:00:00\n", - "Buying PPL on 2021-10-31 00:00:00\n", - "Buying LHX on 2021-10-31 00:00:00\n", - "Buying PG on 2021-10-31 00:00:00\n", - "Buying SBAC on 2021-10-31 00:00:00\n", - "Buying CNP on 2021-10-31 00:00:00\n", - "Buying CPB on 2021-10-31 00:00:00\n", - "Buying MRNA on 2021-10-31 00:00:00\n", - "Buying CAG on 2021-10-31 00:00:00\n", - "Selling DFS on 2021-10-31 00:00:00\n", - "Selling NOW on 2021-10-31 00:00:00\n", - "Selling PTC on 2021-10-31 00:00:00\n", - "Selling KKR on 2021-10-31 00:00:00\n", - "Selling MS on 2021-10-31 00:00:00\n", - "Selling FTNT on 2021-10-31 00:00:00\n", - "Selling CDNS on 2021-10-31 00:00:00\n", - "Selling TEL on 2021-10-31 00:00:00\n", - "Selling BLDR on 2021-10-31 00:00:00\n", - "Selling LRCX on 2021-10-31 00:00:00\n", - "Selling KLAC on 2021-10-31 00:00:00\n", - "Selling STT on 2021-10-31 00:00:00\n", - "Selling IPG on 2021-10-31 00:00:00\n", - "Selling EMN on 2021-10-31 00:00:00\n", - "Selling MOS on 2021-10-31 00:00:00\n", - "Selling AMD on 2021-10-31 00:00:00\n", - "Selling ADSK on 2021-10-31 00:00:00\n", - "Selling ON on 2021-10-31 00:00:00\n", - "Selling CAT on 2021-10-31 00:00:00\n", - "Selling MSCI on 2021-10-31 00:00:00\n", - "Selling TPL on 2021-10-31 00:00:00\n", - "Selling J on 2021-10-31 00:00:00\n", - "Selling GNRC on 2021-10-31 00:00:00\n", - "Selling SNPS on 2021-10-31 00:00:00\n", - "Selling HES on 2021-10-31 00:00:00\n", - "Selling PYPL on 2021-10-31 00:00:00\n", - "Selling MCHP on 2021-10-31 00:00:00\n", - "Selling CPRT on 2021-10-31 00:00:00\n", - "Selling AMAT on 2021-10-31 00:00:00\n", - "Selling TPR on 2021-10-31 00:00:00\n", - "Selling NUE on 2021-10-31 00:00:00\n", - "Selling SCHW on 2021-10-31 00:00:00\n", - "Selling AOS on 2021-10-31 00:00:00\n", - "Selling AMP on 2021-10-31 00:00:00\n", - "Selling NXPI on 2021-10-31 00:00:00\n", - "Selling TROW on 2021-10-31 00:00:00\n", - "Selling DVN on 2021-10-31 00:00:00\n", - "Selling ALB on 2021-10-31 00:00:00\n", - "Selling PLTR on 2021-10-31 00:00:00\n", - "Selling IVZ on 2021-10-31 00:00:00\n", - "Selling URI on 2021-10-31 00:00:00\n", - "Selling TER on 2021-10-31 00:00:00\n", - "Selling BX on 2021-10-31 00:00:00\n", - "Selling APO on 2021-10-31 00:00:00\n", - "Selling OXY on 2021-10-31 00:00:00\n", - "Selling BEN on 2021-10-31 00:00:00\n", - "Selling NVDA on 2021-10-31 00:00:00\n", - "Selling FCX on 2021-10-31 00:00:00\n", - "Selling APA on 2021-10-31 00:00:00\n", - "Buying MRNA on 2021-11-30 00:00:00\n", - "Buying PFE on 2021-11-30 00:00:00\n", - "Buying NEM on 2021-11-30 00:00:00\n", - "Buying CLX on 2021-11-30 00:00:00\n", - "Buying EA on 2021-11-30 00:00:00\n", - "Buying PNW on 2021-11-30 00:00:00\n", - "Buying KR on 2021-11-30 00:00:00\n", - "Buying HRL on 2021-11-30 00:00:00\n", - "Buying K on 2021-11-30 00:00:00\n", - "Buying SJM on 2021-11-30 00:00:00\n", - "Buying BALL on 2021-11-30 00:00:00\n", - "Buying MKTX on 2021-11-30 00:00:00\n", - "Buying HOLX on 2021-11-30 00:00:00\n", - "Buying KMB on 2021-11-30 00:00:00\n", - "Buying ES on 2021-11-30 00:00:00\n", - "Buying ED on 2021-11-30 00:00:00\n", - "Buying FDS on 2021-11-30 00:00:00\n", - "Buying CPB on 2021-11-30 00:00:00\n", - "Buying DHR on 2021-11-30 00:00:00\n", - "Buying NOC on 2021-11-30 00:00:00\n", - "Buying CMS on 2021-11-30 00:00:00\n", - "Buying BDX on 2021-11-30 00:00:00\n", - "Buying CHD on 2021-11-30 00:00:00\n", - "Buying GILD on 2021-11-30 00:00:00\n", - "Buying WEC on 2021-11-30 00:00:00\n", - "Buying DUK on 2021-11-30 00:00:00\n", - "Buying BAX on 2021-11-30 00:00:00\n", - "Buying VZ on 2021-11-30 00:00:00\n", - "Buying CAG on 2021-11-30 00:00:00\n", - "Buying AEP on 2021-11-30 00:00:00\n", - "Buying NI on 2021-11-30 00:00:00\n", - "Buying DPZ on 2021-11-30 00:00:00\n", - "Buying EIX on 2021-11-30 00:00:00\n", - "Buying CPT on 2021-11-30 00:00:00\n", - "Buying IP on 2021-11-30 00:00:00\n", - "Buying AWK on 2021-11-30 00:00:00\n", - "Buying EVRG on 2021-11-30 00:00:00\n", - "Buying KHC on 2021-11-30 00:00:00\n", - "Buying PSA on 2021-11-30 00:00:00\n", - "Buying XEL on 2021-11-30 00:00:00\n", - "Buying DGX on 2021-11-30 00:00:00\n", - "Buying PPL on 2021-11-30 00:00:00\n", - "Buying MKC on 2021-11-30 00:00:00\n", - "Buying CL on 2021-11-30 00:00:00\n", - "Buying LNT on 2021-11-30 00:00:00\n", - "Buying RVTY on 2021-11-30 00:00:00\n", - "Buying MO on 2021-11-30 00:00:00\n", - "Buying ETR on 2021-11-30 00:00:00\n", - "Buying SO on 2021-11-30 00:00:00\n", - "Selling PTC on 2021-11-30 00:00:00\n", - "Selling TEL on 2021-11-30 00:00:00\n", - "Selling ANSS on 2021-11-30 00:00:00\n", - "Selling MOS on 2021-11-30 00:00:00\n", - "Selling BLDR on 2021-11-30 00:00:00\n", - "Selling STT on 2021-11-30 00:00:00\n", - "Selling LRCX on 2021-11-30 00:00:00\n", - "Selling HAL on 2021-11-30 00:00:00\n", - "Selling TPR on 2021-11-30 00:00:00\n", - "Selling AMP on 2021-11-30 00:00:00\n", - "Selling PH on 2021-11-30 00:00:00\n", - "Selling ANET on 2021-11-30 00:00:00\n", - "Selling KEYS on 2021-11-30 00:00:00\n", - "Selling QCOM on 2021-11-30 00:00:00\n", - "Selling CPRT on 2021-11-30 00:00:00\n", - "Selling KKR on 2021-11-30 00:00:00\n", - "Selling FANG on 2021-11-30 00:00:00\n", - "Selling HES on 2021-11-30 00:00:00\n", - "Selling TPL on 2021-11-30 00:00:00\n", - "Selling FTNT on 2021-11-30 00:00:00\n", - "Selling MPWR on 2021-11-30 00:00:00\n", - "Selling MSCI on 2021-11-30 00:00:00\n", - "Selling KLAC on 2021-11-30 00:00:00\n", - "Selling INTU on 2021-11-30 00:00:00\n", - "Selling SCHW on 2021-11-30 00:00:00\n", - "Selling CDNS on 2021-11-30 00:00:00\n", - "Selling AMD on 2021-11-30 00:00:00\n", - "Selling SNPS on 2021-11-30 00:00:00\n", - "Selling NCLH on 2021-11-30 00:00:00\n", - "Selling ABNB on 2021-11-30 00:00:00\n", - "Selling URI on 2021-11-30 00:00:00\n", - "Selling IVZ on 2021-11-30 00:00:00\n", - "Selling NXPI on 2021-11-30 00:00:00\n", - "Selling EPAM on 2021-11-30 00:00:00\n", - "Selling ON on 2021-11-30 00:00:00\n", - "Selling TROW on 2021-11-30 00:00:00\n", - "Selling MCHP on 2021-11-30 00:00:00\n", - "Selling OXY on 2021-11-30 00:00:00\n", - "Selling ALB on 2021-11-30 00:00:00\n", - "Selling FCX on 2021-11-30 00:00:00\n", - "Selling TER on 2021-11-30 00:00:00\n", - "Selling PLTR on 2021-11-30 00:00:00\n", - "Selling AMAT on 2021-11-30 00:00:00\n", - "Selling DVN on 2021-11-30 00:00:00\n", - "Selling APO on 2021-11-30 00:00:00\n", - "Selling BEN on 2021-11-30 00:00:00\n", - "Selling BX on 2021-11-30 00:00:00\n", - "Selling NVDA on 2021-11-30 00:00:00\n", - "Selling APA on 2021-11-30 00:00:00\n", - "Buying PFE on 2021-12-31 00:00:00\n", - "Buying MRNA on 2021-12-31 00:00:00\n", - "Buying NEM on 2021-12-31 00:00:00\n", - "Buying CLX on 2021-12-31 00:00:00\n", - "Buying HRL on 2021-12-31 00:00:00\n", - "Buying MO on 2021-12-31 00:00:00\n", - "Buying K on 2021-12-31 00:00:00\n", - "Buying KMB on 2021-12-31 00:00:00\n", - "Buying MKC on 2021-12-31 00:00:00\n", - "Buying BMY on 2021-12-31 00:00:00\n", - "Buying SJM on 2021-12-31 00:00:00\n", - "Buying BDX on 2021-12-31 00:00:00\n", - "Buying VZ on 2021-12-31 00:00:00\n", - "Buying CPB on 2021-12-31 00:00:00\n", - "Buying CAG on 2021-12-31 00:00:00\n", - "Buying GILD on 2021-12-31 00:00:00\n", - "Buying PM on 2021-12-31 00:00:00\n", - "Buying DGX on 2021-12-31 00:00:00\n", - "Buying DG on 2021-12-31 00:00:00\n", - "Buying CHD on 2021-12-31 00:00:00\n", - "Buying MRK on 2021-12-31 00:00:00\n", - "Buying GIS on 2021-12-31 00:00:00\n", - "Buying PNW on 2021-12-31 00:00:00\n", - "Buying ED on 2021-12-31 00:00:00\n", - "Buying CL on 2021-12-31 00:00:00\n", - "Buying VRTX on 2021-12-31 00:00:00\n", - "Buying CHTR on 2021-12-31 00:00:00\n", - "Buying DUK on 2021-12-31 00:00:00\n", - "Buying JNJ on 2021-12-31 00:00:00\n", - "Buying ES on 2021-12-31 00:00:00\n", - "Buying HSY on 2021-12-31 00:00:00\n", - "Buying DHR on 2021-12-31 00:00:00\n", - "Buying PG on 2021-12-31 00:00:00\n", - "Buying EIX on 2021-12-31 00:00:00\n", - "Buying TTWO on 2021-12-31 00:00:00\n", - "Buying PKG on 2021-12-31 00:00:00\n", - "Buying KHC on 2021-12-31 00:00:00\n", - "Buying JKHY on 2021-12-31 00:00:00\n", - "Buying IBM on 2021-12-31 00:00:00\n", - "Buying HOLX on 2021-12-31 00:00:00\n", - "Buying PPL on 2021-12-31 00:00:00\n", - "Buying CMS on 2021-12-31 00:00:00\n", - "Buying BAX on 2021-12-31 00:00:00\n", - "Buying WMT on 2021-12-31 00:00:00\n", - "Buying BF-B on 2021-12-31 00:00:00\n", - "Buying WEC on 2021-12-31 00:00:00\n", - "Buying SO on 2021-12-31 00:00:00\n", - "Buying LMT on 2021-12-31 00:00:00\n", - "Buying NOC on 2021-12-31 00:00:00\n", - "Selling TROW on 2021-12-31 00:00:00\n", - "Selling HST on 2021-12-31 00:00:00\n", - "Selling LYV on 2021-12-31 00:00:00\n", - "Selling IT on 2021-12-31 00:00:00\n", - "Selling IVZ on 2021-12-31 00:00:00\n", - "Selling FCX on 2021-12-31 00:00:00\n", - "Selling SPG on 2021-12-31 00:00:00\n", - "Selling ANSS on 2021-12-31 00:00:00\n", - "Selling CZR on 2021-12-31 00:00:00\n", - "Selling HES on 2021-12-31 00:00:00\n", - "Selling TRMB on 2021-12-31 00:00:00\n", - "Selling CRM on 2021-12-31 00:00:00\n", - "Selling BEN on 2021-12-31 00:00:00\n", - "Selling INTU on 2021-12-31 00:00:00\n", - "Selling QCOM on 2021-12-31 00:00:00\n", - "Selling NXPI on 2021-12-31 00:00:00\n", - "Selling BLDR on 2021-12-31 00:00:00\n", - "Selling KLAC on 2021-12-31 00:00:00\n", - "Selling DECK on 2021-12-31 00:00:00\n", - "Selling MCHP on 2021-12-31 00:00:00\n", - "Selling UBER on 2021-12-31 00:00:00\n", - "Selling TER on 2021-12-31 00:00:00\n", - "Selling UAL on 2021-12-31 00:00:00\n", - "Selling PWR on 2021-12-31 00:00:00\n", - "Selling EXPE on 2021-12-31 00:00:00\n", - "Selling HAL on 2021-12-31 00:00:00\n", - "Selling AMAT on 2021-12-31 00:00:00\n", - "Selling MSCI on 2021-12-31 00:00:00\n", - "Selling TPL on 2021-12-31 00:00:00\n", - "Selling ALB on 2021-12-31 00:00:00\n", - "Selling OXY on 2021-12-31 00:00:00\n", - "Selling EPAM on 2021-12-31 00:00:00\n", - "Selling RCL on 2021-12-31 00:00:00\n", - "Selling SNPS on 2021-12-31 00:00:00\n", - "Selling ADBE on 2021-12-31 00:00:00\n", - "Selling TSLA on 2021-12-31 00:00:00\n", - "Selling BX on 2021-12-31 00:00:00\n", - "Selling CCL on 2021-12-31 00:00:00\n", - "Selling CDNS on 2021-12-31 00:00:00\n", - "Selling ON on 2021-12-31 00:00:00\n", - "Selling NCLH on 2021-12-31 00:00:00\n", - "Selling FANG on 2021-12-31 00:00:00\n", - "Selling ABNB on 2021-12-31 00:00:00\n", - "Selling NOW on 2021-12-31 00:00:00\n", - "Selling AMD on 2021-12-31 00:00:00\n", - "Selling DVN on 2021-12-31 00:00:00\n", - "Selling FTNT on 2021-12-31 00:00:00\n", - "Selling APA on 2021-12-31 00:00:00\n", - "Selling NVDA on 2021-12-31 00:00:00\n", - "Buying PFE on 2022-01-31 00:00:00\n", - "Buying NEM on 2022-01-31 00:00:00\n", - "Buying K on 2022-01-31 00:00:00\n", - "Buying MRK on 2022-01-31 00:00:00\n", - "Buying CLX on 2022-01-31 00:00:00\n", - "Buying HRL on 2022-01-31 00:00:00\n", - "Buying CAG on 2022-01-31 00:00:00\n", - "Buying KMB on 2022-01-31 00:00:00\n", - "Buying MKC on 2022-01-31 00:00:00\n", - "Buying CPB on 2022-01-31 00:00:00\n", - "Buying SJM on 2022-01-31 00:00:00\n", - "Buying MO on 2022-01-31 00:00:00\n", - "Buying BMY on 2022-01-31 00:00:00\n", - "Buying PM on 2022-01-31 00:00:00\n", - "Buying VZ on 2022-01-31 00:00:00\n", - "Buying JNJ on 2022-01-31 00:00:00\n", - "Buying BDX on 2022-01-31 00:00:00\n", - "Buying GIS on 2022-01-31 00:00:00\n", - "Buying DGX on 2022-01-31 00:00:00\n", - "Buying KR on 2022-01-31 00:00:00\n", - "Buying CL on 2022-01-31 00:00:00\n", - "Buying WEC on 2022-01-31 00:00:00\n", - "Buying XEL on 2022-01-31 00:00:00\n", - "Buying LMT on 2022-01-31 00:00:00\n", - "Buying DUK on 2022-01-31 00:00:00\n", - "Buying PG on 2022-01-31 00:00:00\n", - "Buying IBM on 2022-01-31 00:00:00\n", - "Buying ES on 2022-01-31 00:00:00\n", - "Buying CMS on 2022-01-31 00:00:00\n", - "Buying MDLZ on 2022-01-31 00:00:00\n", - "Buying DTE on 2022-01-31 00:00:00\n", - "Buying KHC on 2022-01-31 00:00:00\n", - "Buying DG on 2022-01-31 00:00:00\n", - "Buying MMM on 2022-01-31 00:00:00\n", - "Buying GILD on 2022-01-31 00:00:00\n", - "Buying AEP on 2022-01-31 00:00:00\n", - "Buying PPL on 2022-01-31 00:00:00\n", - "Buying HSY on 2022-01-31 00:00:00\n", - "Buying CHD on 2022-01-31 00:00:00\n", - "Buying SO on 2022-01-31 00:00:00\n", - "Buying HOLX on 2022-01-31 00:00:00\n", - "Buying PNW on 2022-01-31 00:00:00\n", - "Buying WMT on 2022-01-31 00:00:00\n", - "Buying LNT on 2022-01-31 00:00:00\n", - "Buying PKG on 2022-01-31 00:00:00\n", - "Buying EA on 2022-01-31 00:00:00\n", - "Buying EIX on 2022-01-31 00:00:00\n", - "Buying BAX on 2022-01-31 00:00:00\n", - "Buying ATO on 2022-01-31 00:00:00\n", - "Selling DVN on 2022-01-31 00:00:00\n", - "Selling PWR on 2022-01-31 00:00:00\n", - "Selling LYV on 2022-01-31 00:00:00\n", - "Selling MU on 2022-01-31 00:00:00\n", - "Selling TRMB on 2022-01-31 00:00:00\n", - "Selling IT on 2022-01-31 00:00:00\n", - "Selling INTU on 2022-01-31 00:00:00\n", - "Selling ALB on 2022-01-31 00:00:00\n", - "Selling TYL on 2022-01-31 00:00:00\n", - "Selling LRCX on 2022-01-31 00:00:00\n", - "Selling NXPI on 2022-01-31 00:00:00\n", - "Selling NFLX on 2022-01-31 00:00:00\n", - "Selling CRWD on 2022-01-31 00:00:00\n", - "Selling ISRG on 2022-01-31 00:00:00\n", - "Selling BX on 2022-01-31 00:00:00\n", - "Selling MSCI on 2022-01-31 00:00:00\n", - "Selling ANSS on 2022-01-31 00:00:00\n", - "Selling MPWR on 2022-01-31 00:00:00\n", - "Selling MCHP on 2022-01-31 00:00:00\n", - "Selling DXCM on 2022-01-31 00:00:00\n", - "Selling TPL on 2022-01-31 00:00:00\n", - "Selling NCLH on 2022-01-31 00:00:00\n", - "Selling CCL on 2022-01-31 00:00:00\n", - "Selling QCOM on 2022-01-31 00:00:00\n", - "Selling DAY on 2022-01-31 00:00:00\n", - "Selling UBER on 2022-01-31 00:00:00\n", - "Selling ADBE on 2022-01-31 00:00:00\n", - "Selling ALGN on 2022-01-31 00:00:00\n", - "Selling BLDR on 2022-01-31 00:00:00\n", - "Selling CRM on 2022-01-31 00:00:00\n", - "Selling TER on 2022-01-31 00:00:00\n", - "Selling SNPS on 2022-01-31 00:00:00\n", - "Selling APA on 2022-01-31 00:00:00\n", - "Selling KLAC on 2022-01-31 00:00:00\n", - "Selling PLTR on 2022-01-31 00:00:00\n", - "Selling PAYC on 2022-01-31 00:00:00\n", - "Selling CZR on 2022-01-31 00:00:00\n", - "Selling CDNS on 2022-01-31 00:00:00\n", - "Selling AMAT on 2022-01-31 00:00:00\n", - "Selling NOW on 2022-01-31 00:00:00\n", - "Selling ON on 2022-01-31 00:00:00\n", - "Selling EPAM on 2022-01-31 00:00:00\n", - "Selling ABNB on 2022-01-31 00:00:00\n", - "Selling FTNT on 2022-01-31 00:00:00\n", - "Selling TSLA on 2022-01-31 00:00:00\n", - "Selling PODD on 2022-01-31 00:00:00\n", - "Selling ENPH on 2022-01-31 00:00:00\n", - "Selling AMD on 2022-01-31 00:00:00\n", - "Selling NVDA on 2022-01-31 00:00:00\n", - "Buying NEM on 2022-02-28 00:00:00\n", - "Buying K on 2022-02-28 00:00:00\n", - "Buying CLX on 2022-02-28 00:00:00\n", - "Buying CAG on 2022-02-28 00:00:00\n", - "Buying KMB on 2022-02-28 00:00:00\n", - "Buying SJM on 2022-02-28 00:00:00\n", - "Buying CPB on 2022-02-28 00:00:00\n", - "Buying HRL on 2022-02-28 00:00:00\n", - "Buying MO on 2022-02-28 00:00:00\n", - "Buying GIS on 2022-02-28 00:00:00\n", - "Buying PM on 2022-02-28 00:00:00\n", - "Buying KHC on 2022-02-28 00:00:00\n", - "Buying PFE on 2022-02-28 00:00:00\n", - "Buying MKC on 2022-02-28 00:00:00\n", - "Buying CL on 2022-02-28 00:00:00\n", - "Buying HSY on 2022-02-28 00:00:00\n", - "Buying BDX on 2022-02-28 00:00:00\n", - "Buying LMT on 2022-02-28 00:00:00\n", - "Buying MDLZ on 2022-02-28 00:00:00\n", - "Buying VZ on 2022-02-28 00:00:00\n", - "Buying MRK on 2022-02-28 00:00:00\n", - "Buying CMS on 2022-02-28 00:00:00\n", - "Buying KR on 2022-02-28 00:00:00\n", - "Buying WEC on 2022-02-28 00:00:00\n", - "Buying WMT on 2022-02-28 00:00:00\n", - "Buying PG on 2022-02-28 00:00:00\n", - "Buying BMY on 2022-02-28 00:00:00\n", - "Buying GILD on 2022-02-28 00:00:00\n", - "Buying ED on 2022-02-28 00:00:00\n", - "Buying CVX on 2022-02-28 00:00:00\n", - "Buying NOC on 2022-02-28 00:00:00\n", - "Buying CHD on 2022-02-28 00:00:00\n", - "Buying ABBV on 2022-02-28 00:00:00\n", - "Buying JNJ on 2022-02-28 00:00:00\n", - "Buying SO on 2022-02-28 00:00:00\n", - "Buying KO on 2022-02-28 00:00:00\n", - "Buying ALL on 2022-02-28 00:00:00\n", - "Buying DUK on 2022-02-28 00:00:00\n", - "Buying LNT on 2022-02-28 00:00:00\n", - "Buying LDOS on 2022-02-28 00:00:00\n", - "Buying AEP on 2022-02-28 00:00:00\n", - "Buying TSN on 2022-02-28 00:00:00\n", - "Buying CVS on 2022-02-28 00:00:00\n", - "Buying ETR on 2022-02-28 00:00:00\n", - "Buying D on 2022-02-28 00:00:00\n", - "Buying DTE on 2022-02-28 00:00:00\n", - "Buying PEP on 2022-02-28 00:00:00\n", - "Buying XEL on 2022-02-28 00:00:00\n", - "Buying ATO on 2022-02-28 00:00:00\n", - "Selling TRMB on 2022-02-28 00:00:00\n", - "Selling PWR on 2022-02-28 00:00:00\n", - "Selling IT on 2022-02-28 00:00:00\n", - "Selling LULU on 2022-02-28 00:00:00\n", - "Selling INTU on 2022-02-28 00:00:00\n", - "Selling CCL on 2022-02-28 00:00:00\n", - "Selling BX on 2022-02-28 00:00:00\n", - "Selling CSGP on 2022-02-28 00:00:00\n", - "Selling FSLR on 2022-02-28 00:00:00\n", - "Selling PANW on 2022-02-28 00:00:00\n", - "Selling GNRC on 2022-02-28 00:00:00\n", - "Selling NCLH on 2022-02-28 00:00:00\n", - "Selling ANSS on 2022-02-28 00:00:00\n", - "Selling CZR on 2022-02-28 00:00:00\n", - "Selling ADSK on 2022-02-28 00:00:00\n", - "Selling NFLX on 2022-02-28 00:00:00\n", - "Selling CRM on 2022-02-28 00:00:00\n", - "Selling TYL on 2022-02-28 00:00:00\n", - "Selling ABNB on 2022-02-28 00:00:00\n", - "Selling QCOM on 2022-02-28 00:00:00\n", - "Selling BLDR on 2022-02-28 00:00:00\n", - "Selling MCHP on 2022-02-28 00:00:00\n", - "Selling ALGN on 2022-02-28 00:00:00\n", - "Selling LRCX on 2022-02-28 00:00:00\n", - "Selling CDNS on 2022-02-28 00:00:00\n", - "Selling ADBE on 2022-02-28 00:00:00\n", - "Selling PAYC on 2022-02-28 00:00:00\n", - "Selling MPWR on 2022-02-28 00:00:00\n", - "Selling CRWD on 2022-02-28 00:00:00\n", - "Selling TER on 2022-02-28 00:00:00\n", - "Selling NXPI on 2022-02-28 00:00:00\n", - "Selling SNPS on 2022-02-28 00:00:00\n", - "Selling AMAT on 2022-02-28 00:00:00\n", - "Selling DXCM on 2022-02-28 00:00:00\n", - "Selling ALB on 2022-02-28 00:00:00\n", - "Selling EPAM on 2022-02-28 00:00:00\n", - "Selling DAY on 2022-02-28 00:00:00\n", - "Selling KLAC on 2022-02-28 00:00:00\n", - "Selling NOW on 2022-02-28 00:00:00\n", - "Selling META on 2022-02-28 00:00:00\n", - "Selling UBER on 2022-02-28 00:00:00\n", - "Selling FTNT on 2022-02-28 00:00:00\n", - "Selling TSLA on 2022-02-28 00:00:00\n", - "Selling PLTR on 2022-02-28 00:00:00\n", - "Selling ON on 2022-02-28 00:00:00\n", - "Selling PODD on 2022-02-28 00:00:00\n", - "Selling AMD on 2022-02-28 00:00:00\n", - "Selling NVDA on 2022-02-28 00:00:00\n", - "Selling ENPH on 2022-02-28 00:00:00\n", - "Buying NEM on 2022-03-31 00:00:00\n", - "Buying XOM on 2022-03-31 00:00:00\n", - "Buying CVX on 2022-03-31 00:00:00\n", - "Buying SLB on 2022-03-31 00:00:00\n", - "Buying LMT on 2022-03-31 00:00:00\n", - "Buying BKR on 2022-03-31 00:00:00\n", - "Buying EOG on 2022-03-31 00:00:00\n", - "Buying HAL on 2022-03-31 00:00:00\n", - "Buying K on 2022-03-31 00:00:00\n", - "Buying CF on 2022-03-31 00:00:00\n", - "Buying KR on 2022-03-31 00:00:00\n", - "Buying LHX on 2022-03-31 00:00:00\n", - "Buying NOC on 2022-03-31 00:00:00\n", - "Buying HRL on 2022-03-31 00:00:00\n", - "Buying KHC on 2022-03-31 00:00:00\n", - "Buying OXY on 2022-03-31 00:00:00\n", - "Buying PSX on 2022-03-31 00:00:00\n", - "Buying MKC on 2022-03-31 00:00:00\n", - "Buying VLO on 2022-03-31 00:00:00\n", - "Buying COP on 2022-03-31 00:00:00\n", - "Buying SJM on 2022-03-31 00:00:00\n", - "Buying HSY on 2022-03-31 00:00:00\n", - "Buying CMS on 2022-03-31 00:00:00\n", - "Buying CPB on 2022-03-31 00:00:00\n", - "Buying LDOS on 2022-03-31 00:00:00\n", - "Buying SO on 2022-03-31 00:00:00\n", - "Buying WEC on 2022-03-31 00:00:00\n", - "Buying LNT on 2022-03-31 00:00:00\n", - "Buying CLX on 2022-03-31 00:00:00\n", - "Buying FE on 2022-03-31 00:00:00\n", - "Buying FANG on 2022-03-31 00:00:00\n", - "Buying KMI on 2022-03-31 00:00:00\n", - "Buying MO on 2022-03-31 00:00:00\n", - "Buying AEP on 2022-03-31 00:00:00\n", - "Buying ED on 2022-03-31 00:00:00\n", - "Buying CAG on 2022-03-31 00:00:00\n", - "Buying GIS on 2022-03-31 00:00:00\n", - "Buying D on 2022-03-31 00:00:00\n", - "Buying DUK on 2022-03-31 00:00:00\n", - "Buying ETR on 2022-03-31 00:00:00\n", - "Buying KMB on 2022-03-31 00:00:00\n", - "Buying XEL on 2022-03-31 00:00:00\n", - "Buying CL on 2022-03-31 00:00:00\n", - "Buying ATO on 2022-03-31 00:00:00\n", - "Buying WMB on 2022-03-31 00:00:00\n", - "Buying WMT on 2022-03-31 00:00:00\n", - "Buying AEE on 2022-03-31 00:00:00\n", - "Buying DTE on 2022-03-31 00:00:00\n", - "Buying VZ on 2022-03-31 00:00:00\n", - "Selling MGM on 2022-03-31 00:00:00\n", - "Selling PYPL on 2022-03-31 00:00:00\n", - "Selling ADBE on 2022-03-31 00:00:00\n", - "Selling CRM on 2022-03-31 00:00:00\n", - "Selling BLDR on 2022-03-31 00:00:00\n", - "Selling MCHP on 2022-03-31 00:00:00\n", - "Selling SNPS on 2022-03-31 00:00:00\n", - "Selling TPR on 2022-03-31 00:00:00\n", - "Selling LVS on 2022-03-31 00:00:00\n", - "Selling CCL on 2022-03-31 00:00:00\n", - "Selling NFLX on 2022-03-31 00:00:00\n", - "Selling WYNN on 2022-03-31 00:00:00\n", - "Selling MU on 2022-03-31 00:00:00\n", - "Selling GNRC on 2022-03-31 00:00:00\n", - "Selling NXPI on 2022-03-31 00:00:00\n", - "Selling KKR on 2022-03-31 00:00:00\n", - "Selling ADSK on 2022-03-31 00:00:00\n", - "Selling CSGP on 2022-03-31 00:00:00\n", - "Selling DXCM on 2022-03-31 00:00:00\n", - "Selling ABNB on 2022-03-31 00:00:00\n", - "Selling ALB on 2022-03-31 00:00:00\n", - "Selling CRWD on 2022-03-31 00:00:00\n", - "Selling QCOM on 2022-03-31 00:00:00\n", - "Selling AMAT on 2022-03-31 00:00:00\n", - "Selling TER on 2022-03-31 00:00:00\n", - "Selling PAYC on 2022-03-31 00:00:00\n", - "Selling BX on 2022-03-31 00:00:00\n", - "Selling NCLH on 2022-03-31 00:00:00\n", - "Selling TSLA on 2022-03-31 00:00:00\n", - "Selling ALGN on 2022-03-31 00:00:00\n", - "Selling DAY on 2022-03-31 00:00:00\n", - "Selling KLAC on 2022-03-31 00:00:00\n", - "Selling UAL on 2022-03-31 00:00:00\n", - "Selling LRCX on 2022-03-31 00:00:00\n", - "Selling NOW on 2022-03-31 00:00:00\n", - "Selling CZR on 2022-03-31 00:00:00\n", - "Selling UBER on 2022-03-31 00:00:00\n", - "Selling MTCH on 2022-03-31 00:00:00\n", - "Selling PODD on 2022-03-31 00:00:00\n", - "Selling META on 2022-03-31 00:00:00\n", - "Selling FTNT on 2022-03-31 00:00:00\n", - "Selling PLTR on 2022-03-31 00:00:00\n", - "Selling ENPH on 2022-03-31 00:00:00\n", - "Selling MRNA on 2022-03-31 00:00:00\n", - "Selling MPWR on 2022-03-31 00:00:00\n", - "Selling AMD on 2022-03-31 00:00:00\n", - "Selling ON on 2022-03-31 00:00:00\n", - "Selling EPAM on 2022-03-31 00:00:00\n", - "Selling NVDA on 2022-03-31 00:00:00\n", - "Buying SLB on 2022-04-30 00:00:00\n", - "Buying NEM on 2022-04-30 00:00:00\n", - "Buying LMT on 2022-04-30 00:00:00\n", - "Buying XOM on 2022-04-30 00:00:00\n", - "Buying CF on 2022-04-30 00:00:00\n", - "Buying EOG on 2022-04-30 00:00:00\n", - "Buying LHX on 2022-04-30 00:00:00\n", - "Buying NOC on 2022-04-30 00:00:00\n", - "Buying K on 2022-04-30 00:00:00\n", - "Buying BKR on 2022-04-30 00:00:00\n", - "Buying VLO on 2022-04-30 00:00:00\n", - "Buying LDOS on 2022-04-30 00:00:00\n", - "Buying HAL on 2022-04-30 00:00:00\n", - "Buying MO on 2022-04-30 00:00:00\n", - "Buying CTRA on 2022-04-30 00:00:00\n", - "Buying CVX on 2022-04-30 00:00:00\n", - "Buying HRL on 2022-04-30 00:00:00\n", - "Buying KR on 2022-04-30 00:00:00\n", - "Buying KMB on 2022-04-30 00:00:00\n", - "Buying KHC on 2022-04-30 00:00:00\n", - "Buying WMB on 2022-04-30 00:00:00\n", - "Buying HSY on 2022-04-30 00:00:00\n", - "Buying CMS on 2022-04-30 00:00:00\n", - "Buying SJM on 2022-04-30 00:00:00\n", - "Buying CLX on 2022-04-30 00:00:00\n", - "Buying MKC on 2022-04-30 00:00:00\n", - "Buying CHD on 2022-04-30 00:00:00\n", - "Buying HII on 2022-04-30 00:00:00\n", - "Buying DUK on 2022-04-30 00:00:00\n", - "Buying ED on 2022-04-30 00:00:00\n", - "Buying SO on 2022-04-30 00:00:00\n", - "Buying BG on 2022-04-30 00:00:00\n", - "Buying OXY on 2022-04-30 00:00:00\n", - "Buying WEC on 2022-04-30 00:00:00\n", - "Buying PSX on 2022-04-30 00:00:00\n", - "Buying D on 2022-04-30 00:00:00\n", - "Buying FE on 2022-04-30 00:00:00\n", - "Buying AEE on 2022-04-30 00:00:00\n", - "Buying CPB on 2022-04-30 00:00:00\n", - "Buying LNT on 2022-04-30 00:00:00\n", - "Buying COP on 2022-04-30 00:00:00\n", - "Buying PEG on 2022-04-30 00:00:00\n", - "Buying GIS on 2022-04-30 00:00:00\n", - "Buying ETR on 2022-04-30 00:00:00\n", - "Buying WMT on 2022-04-30 00:00:00\n", - "Buying ADM on 2022-04-30 00:00:00\n", - "Buying DTE on 2022-04-30 00:00:00\n", - "Buying ES on 2022-04-30 00:00:00\n", - "Buying ATO on 2022-04-30 00:00:00\n", - "Selling MGM on 2022-04-30 00:00:00\n", - "Selling APO on 2022-04-30 00:00:00\n", - "Selling AXON on 2022-04-30 00:00:00\n", - "Selling DAY on 2022-04-30 00:00:00\n", - "Selling MCHP on 2022-04-30 00:00:00\n", - "Selling DECK on 2022-04-30 00:00:00\n", - "Selling ANET on 2022-04-30 00:00:00\n", - "Selling CRM on 2022-04-30 00:00:00\n", - "Selling BLDR on 2022-04-30 00:00:00\n", - "Selling LVS on 2022-04-30 00:00:00\n", - "Selling SNPS on 2022-04-30 00:00:00\n", - "Selling MU on 2022-04-30 00:00:00\n", - "Selling AMAT on 2022-04-30 00:00:00\n", - "Selling CSGP on 2022-04-30 00:00:00\n", - "Selling TSLA on 2022-04-30 00:00:00\n", - "Selling TPR on 2022-04-30 00:00:00\n", - "Selling KKR on 2022-04-30 00:00:00\n", - "Selling CRWD on 2022-04-30 00:00:00\n", - "Selling ALB on 2022-04-30 00:00:00\n", - "Selling PAYC on 2022-04-30 00:00:00\n", - "Selling INTU on 2022-04-30 00:00:00\n", - "Selling CCL on 2022-04-30 00:00:00\n", - "Selling TER on 2022-04-30 00:00:00\n", - "Selling ADSK on 2022-04-30 00:00:00\n", - "Selling ENPH on 2022-04-30 00:00:00\n", - "Selling AMZN on 2022-04-30 00:00:00\n", - "Selling ABNB on 2022-04-30 00:00:00\n", - "Selling MRNA on 2022-04-30 00:00:00\n", - "Selling WYNN on 2022-04-30 00:00:00\n", - "Selling UAL on 2022-04-30 00:00:00\n", - "Selling GNRC on 2022-04-30 00:00:00\n", - "Selling LRCX on 2022-04-30 00:00:00\n", - "Selling BX on 2022-04-30 00:00:00\n", - "Selling QCOM on 2022-04-30 00:00:00\n", - "Selling KLAC on 2022-04-30 00:00:00\n", - "Selling NCLH on 2022-04-30 00:00:00\n", - "Selling CZR on 2022-04-30 00:00:00\n", - "Selling UBER on 2022-04-30 00:00:00\n", - "Selling PYPL on 2022-04-30 00:00:00\n", - "Selling NOW on 2022-04-30 00:00:00\n", - "Selling MTCH on 2022-04-30 00:00:00\n", - "Selling FTNT on 2022-04-30 00:00:00\n", - "Selling PLTR on 2022-04-30 00:00:00\n", - "Selling AMD on 2022-04-30 00:00:00\n", - "Selling ON on 2022-04-30 00:00:00\n", - "Selling MPWR on 2022-04-30 00:00:00\n", - "Selling META on 2022-04-30 00:00:00\n", - "Selling EPAM on 2022-04-30 00:00:00\n", - "Selling NVDA on 2022-04-30 00:00:00\n", - "Buying LMT on 2022-05-31 00:00:00\n", - "Buying K on 2022-05-31 00:00:00\n", - "Buying DUK on 2022-05-31 00:00:00\n", - "Buying CMS on 2022-05-31 00:00:00\n", - "Buying LHX on 2022-05-31 00:00:00\n", - "Buying AMGN on 2022-05-31 00:00:00\n", - "Buying WEC on 2022-05-31 00:00:00\n", - "Buying ES on 2022-05-31 00:00:00\n", - "Buying SO on 2022-05-31 00:00:00\n", - "Buying DTE on 2022-05-31 00:00:00\n", - "Buying PNW on 2022-05-31 00:00:00\n", - "Buying XEL on 2022-05-31 00:00:00\n", - "Buying AEE on 2022-05-31 00:00:00\n", - "Buying ED on 2022-05-31 00:00:00\n", - "Buying D on 2022-05-31 00:00:00\n", - "Buying PEG on 2022-05-31 00:00:00\n", - "Buying ETR on 2022-05-31 00:00:00\n", - "Buying NOC on 2022-05-31 00:00:00\n", - "Buying EVRG on 2022-05-31 00:00:00\n", - "Buying NEM on 2022-05-31 00:00:00\n", - "Buying FE on 2022-05-31 00:00:00\n", - "Buying MRK on 2022-05-31 00:00:00\n", - "Buying ABBV on 2022-05-31 00:00:00\n", - "Buying JNJ on 2022-05-31 00:00:00\n", - "Buying BMY on 2022-05-31 00:00:00\n", - "Buying LNT on 2022-05-31 00:00:00\n", - "Buying SJM on 2022-05-31 00:00:00\n", - "Buying CHD on 2022-05-31 00:00:00\n", - "Buying KMB on 2022-05-31 00:00:00\n", - "Buying AEP on 2022-05-31 00:00:00\n", - "Buying VZ on 2022-05-31 00:00:00\n", - "Buying MO on 2022-05-31 00:00:00\n", - "Buying SRE on 2022-05-31 00:00:00\n", - "Buying ATO on 2022-05-31 00:00:00\n", - "Buying CPB on 2022-05-31 00:00:00\n", - "Buying PM on 2022-05-31 00:00:00\n", - "Buying NRG on 2022-05-31 00:00:00\n", - "Buying XOM on 2022-05-31 00:00:00\n", - "Buying EIX on 2022-05-31 00:00:00\n", - "Buying NI on 2022-05-31 00:00:00\n", - "Buying HRL on 2022-05-31 00:00:00\n", - "Buying TRV on 2022-05-31 00:00:00\n", - "Buying WM on 2022-05-31 00:00:00\n", - "Buying KDP on 2022-05-31 00:00:00\n", - "Buying GIS on 2022-05-31 00:00:00\n", - "Buying WELL on 2022-05-31 00:00:00\n", - "Buying PFE on 2022-05-31 00:00:00\n", - "Buying BDX on 2022-05-31 00:00:00\n", - "Buying AIZ on 2022-05-31 00:00:00\n", - "Selling ANET on 2022-05-31 00:00:00\n", - "Selling ISRG on 2022-05-31 00:00:00\n", - "Selling MGM on 2022-05-31 00:00:00\n", - "Selling APTV on 2022-05-31 00:00:00\n", - "Selling TPR on 2022-05-31 00:00:00\n", - "Selling MU on 2022-05-31 00:00:00\n", - "Selling DECK on 2022-05-31 00:00:00\n", - "Selling UBER on 2022-05-31 00:00:00\n", - "Selling QCOM on 2022-05-31 00:00:00\n", - "Selling ADSK on 2022-05-31 00:00:00\n", - "Selling FTNT on 2022-05-31 00:00:00\n", - "Selling BLDR on 2022-05-31 00:00:00\n", - "Selling EPAM on 2022-05-31 00:00:00\n", - "Selling DAY on 2022-05-31 00:00:00\n", - "Selling RCL on 2022-05-31 00:00:00\n", - "Selling LULU on 2022-05-31 00:00:00\n", - "Selling NFLX on 2022-05-31 00:00:00\n", - "Selling AMAT on 2022-05-31 00:00:00\n", - "Selling TER on 2022-05-31 00:00:00\n", - "Selling AXON on 2022-05-31 00:00:00\n", - "Selling KKR on 2022-05-31 00:00:00\n", - "Selling LVS on 2022-05-31 00:00:00\n", - "Selling SMCI on 2022-05-31 00:00:00\n", - "Selling BX on 2022-05-31 00:00:00\n", - "Selling AMZN on 2022-05-31 00:00:00\n", - "Selling PYPL on 2022-05-31 00:00:00\n", - "Selling UAL on 2022-05-31 00:00:00\n", - "Selling MRNA on 2022-05-31 00:00:00\n", - "Selling META on 2022-05-31 00:00:00\n", - "Selling KLAC on 2022-05-31 00:00:00\n", - "Selling ENPH on 2022-05-31 00:00:00\n", - "Selling NOW on 2022-05-31 00:00:00\n", - "Selling INTU on 2022-05-31 00:00:00\n", - "Selling LRCX on 2022-05-31 00:00:00\n", - "Selling WYNN on 2022-05-31 00:00:00\n", - "Selling ON on 2022-05-31 00:00:00\n", - "Selling PAYC on 2022-05-31 00:00:00\n", - "Selling CCL on 2022-05-31 00:00:00\n", - "Selling MTCH on 2022-05-31 00:00:00\n", - "Selling ABNB on 2022-05-31 00:00:00\n", - "Selling GNRC on 2022-05-31 00:00:00\n", - "Selling CZR on 2022-05-31 00:00:00\n", - "Selling TSLA on 2022-05-31 00:00:00\n", - "Selling CRWD on 2022-05-31 00:00:00\n", - "Selling NCLH on 2022-05-31 00:00:00\n", - "Selling AMD on 2022-05-31 00:00:00\n", - "Selling MPWR on 2022-05-31 00:00:00\n", - "Selling PLTR on 2022-05-31 00:00:00\n", - "Selling NVDA on 2022-05-31 00:00:00\n", - "Buying K on 2022-06-30 00:00:00\n", - "Buying AMGN on 2022-06-30 00:00:00\n", - "Buying PM on 2022-06-30 00:00:00\n", - "Buying KMB on 2022-06-30 00:00:00\n", - "Buying DVA on 2022-06-30 00:00:00\n", - "Buying DUK on 2022-06-30 00:00:00\n", - "Buying CHD on 2022-06-30 00:00:00\n", - "Buying ABBV on 2022-06-30 00:00:00\n", - "Buying VZ on 2022-06-30 00:00:00\n", - "Buying PNW on 2022-06-30 00:00:00\n", - "Buying ED on 2022-06-30 00:00:00\n", - "Buying D on 2022-06-30 00:00:00\n", - "Buying CMS on 2022-06-30 00:00:00\n", - "Buying WEC on 2022-06-30 00:00:00\n", - "Buying MO on 2022-06-30 00:00:00\n", - "Buying LMT on 2022-06-30 00:00:00\n", - "Buying HRL on 2022-06-30 00:00:00\n", - "Buying WMT on 2022-06-30 00:00:00\n", - "Buying DTE on 2022-06-30 00:00:00\n", - "Buying CPB on 2022-06-30 00:00:00\n", - "Buying XEL on 2022-06-30 00:00:00\n", - "Buying KDP on 2022-06-30 00:00:00\n", - "Buying MRK on 2022-06-30 00:00:00\n", - "Buying ES on 2022-06-30 00:00:00\n", - "Buying NOC on 2022-06-30 00:00:00\n", - "Buying GIS on 2022-06-30 00:00:00\n", - "Buying JNJ on 2022-06-30 00:00:00\n", - "Buying BMY on 2022-06-30 00:00:00\n", - "Buying PEG on 2022-06-30 00:00:00\n", - "Buying AIZ on 2022-06-30 00:00:00\n", - "Buying NEM on 2022-06-30 00:00:00\n", - "Buying SO on 2022-06-30 00:00:00\n", - "Buying LHX on 2022-06-30 00:00:00\n", - "Buying AEE on 2022-06-30 00:00:00\n", - "Buying FE on 2022-06-30 00:00:00\n", - "Buying SJM on 2022-06-30 00:00:00\n", - "Buying TRV on 2022-06-30 00:00:00\n", - "Buying GILD on 2022-06-30 00:00:00\n", - "Buying LNT on 2022-06-30 00:00:00\n", - "Buying EVRG on 2022-06-30 00:00:00\n", - "Buying WM on 2022-06-30 00:00:00\n", - "Buying ETR on 2022-06-30 00:00:00\n", - "Buying AEP on 2022-06-30 00:00:00\n", - "Buying CL on 2022-06-30 00:00:00\n", - "Buying BDX on 2022-06-30 00:00:00\n", - "Buying ATO on 2022-06-30 00:00:00\n", - "Buying KHC on 2022-06-30 00:00:00\n", - "Buying BAX on 2022-06-30 00:00:00\n", - "Buying NI on 2022-06-30 00:00:00\n", - "Selling BA on 2022-06-30 00:00:00\n", - "Selling WBD on 2022-06-30 00:00:00\n", - "Selling CDNS on 2022-06-30 00:00:00\n", - "Selling ISRG on 2022-06-30 00:00:00\n", - "Selling MCHP on 2022-06-30 00:00:00\n", - "Selling LULU on 2022-06-30 00:00:00\n", - "Selling ANSS on 2022-06-30 00:00:00\n", - "Selling CRM on 2022-06-30 00:00:00\n", - "Selling DXCM on 2022-06-30 00:00:00\n", - "Selling DECK on 2022-06-30 00:00:00\n", - "Selling NFLX on 2022-06-30 00:00:00\n", - "Selling UAL on 2022-06-30 00:00:00\n", - "Selling APTV on 2022-06-30 00:00:00\n", - "Selling MRNA on 2022-06-30 00:00:00\n", - "Selling AXON on 2022-06-30 00:00:00\n", - "Selling BLDR on 2022-06-30 00:00:00\n", - "Selling ADSK on 2022-06-30 00:00:00\n", - "Selling MGM on 2022-06-30 00:00:00\n", - "Selling TER on 2022-06-30 00:00:00\n", - "Selling WYNN on 2022-06-30 00:00:00\n", - "Selling UBER on 2022-06-30 00:00:00\n", - "Selling KKR on 2022-06-30 00:00:00\n", - "Selling PYPL on 2022-06-30 00:00:00\n", - "Selling BX on 2022-06-30 00:00:00\n", - "Selling AMAT on 2022-06-30 00:00:00\n", - "Selling MTCH on 2022-06-30 00:00:00\n", - "Selling KLAC on 2022-06-30 00:00:00\n", - "Selling NOW on 2022-06-30 00:00:00\n", - "Selling META on 2022-06-30 00:00:00\n", - "Selling ON on 2022-06-30 00:00:00\n", - "Selling LRCX on 2022-06-30 00:00:00\n", - "Selling AMZN on 2022-06-30 00:00:00\n", - "Selling DAY on 2022-06-30 00:00:00\n", - "Selling INTU on 2022-06-30 00:00:00\n", - "Selling PAYC on 2022-06-30 00:00:00\n", - "Selling SMCI on 2022-06-30 00:00:00\n", - "Selling RCL on 2022-06-30 00:00:00\n", - "Selling ABNB on 2022-06-30 00:00:00\n", - "Selling ENPH on 2022-06-30 00:00:00\n", - "Selling GNRC on 2022-06-30 00:00:00\n", - "Selling TSLA on 2022-06-30 00:00:00\n", - "Selling CZR on 2022-06-30 00:00:00\n", - "Selling AMD on 2022-06-30 00:00:00\n", - "Selling CRWD on 2022-06-30 00:00:00\n", - "Selling CCL on 2022-06-30 00:00:00\n", - "Selling MPWR on 2022-06-30 00:00:00\n", - "Selling NVDA on 2022-06-30 00:00:00\n", - "Selling NCLH on 2022-06-30 00:00:00\n", - "Selling PLTR on 2022-06-30 00:00:00\n", - "Buying K on 2022-07-31 00:00:00\n", - "Buying AMGN on 2022-07-31 00:00:00\n", - "Buying ABBV on 2022-07-31 00:00:00\n", - "Buying VZ on 2022-07-31 00:00:00\n", - "Buying DVA on 2022-07-31 00:00:00\n", - "Buying KMB on 2022-07-31 00:00:00\n", - "Buying MRK on 2022-07-31 00:00:00\n", - "Buying CPB on 2022-07-31 00:00:00\n", - "Buying DUK on 2022-07-31 00:00:00\n", - "Buying PM on 2022-07-31 00:00:00\n", - "Buying CHD on 2022-07-31 00:00:00\n", - "Buying KHC on 2022-07-31 00:00:00\n", - "Buying NEM on 2022-07-31 00:00:00\n", - "Buying PNW on 2022-07-31 00:00:00\n", - "Buying ED on 2022-07-31 00:00:00\n", - "Buying GIS on 2022-07-31 00:00:00\n", - "Buying BMY on 2022-07-31 00:00:00\n", - "Buying HRL on 2022-07-31 00:00:00\n", - "Buying D on 2022-07-31 00:00:00\n", - "Buying WEC on 2022-07-31 00:00:00\n", - "Buying JNJ on 2022-07-31 00:00:00\n", - "Buying GILD on 2022-07-31 00:00:00\n", - "Buying CMS on 2022-07-31 00:00:00\n", - "Buying SO on 2022-07-31 00:00:00\n", - "Buying DTE on 2022-07-31 00:00:00\n", - "Buying BAX on 2022-07-31 00:00:00\n", - "Buying SJM on 2022-07-31 00:00:00\n", - "Buying XEL on 2022-07-31 00:00:00\n", - "Buying KDP on 2022-07-31 00:00:00\n", - "Buying CL on 2022-07-31 00:00:00\n", - "Buying ES on 2022-07-31 00:00:00\n", - "Buying AEP on 2022-07-31 00:00:00\n", - "Buying AEE on 2022-07-31 00:00:00\n", - "Buying FE on 2022-07-31 00:00:00\n", - "Buying LNT on 2022-07-31 00:00:00\n", - "Buying AIZ on 2022-07-31 00:00:00\n", - "Buying EVRG on 2022-07-31 00:00:00\n", - "Buying IBM on 2022-07-31 00:00:00\n", - "Buying PEG on 2022-07-31 00:00:00\n", - "Buying ETR on 2022-07-31 00:00:00\n", - "Buying CLX on 2022-07-31 00:00:00\n", - "Buying NI on 2022-07-31 00:00:00\n", - "Buying MO on 2022-07-31 00:00:00\n", - "Buying PG on 2022-07-31 00:00:00\n", - "Buying CAG on 2022-07-31 00:00:00\n", - "Buying BDX on 2022-07-31 00:00:00\n", - "Buying TRV on 2022-07-31 00:00:00\n", - "Buying NOC on 2022-07-31 00:00:00\n", - "Buying WMT on 2022-07-31 00:00:00\n", - "Selling CDNS on 2022-07-31 00:00:00\n", - "Selling ANSS on 2022-07-31 00:00:00\n", - "Selling DECK on 2022-07-31 00:00:00\n", - "Selling WBD on 2022-07-31 00:00:00\n", - "Selling CRM on 2022-07-31 00:00:00\n", - "Selling TER on 2022-07-31 00:00:00\n", - "Selling ALGN on 2022-07-31 00:00:00\n", - "Selling APA on 2022-07-31 00:00:00\n", - "Selling MRNA on 2022-07-31 00:00:00\n", - "Selling LULU on 2022-07-31 00:00:00\n", - "Selling KLAC on 2022-07-31 00:00:00\n", - "Selling GM on 2022-07-31 00:00:00\n", - "Selling META on 2022-07-31 00:00:00\n", - "Selling ADSK on 2022-07-31 00:00:00\n", - "Selling DXCM on 2022-07-31 00:00:00\n", - "Selling NOW on 2022-07-31 00:00:00\n", - "Selling F on 2022-07-31 00:00:00\n", - "Selling KKR on 2022-07-31 00:00:00\n", - "Selling AMAT on 2022-07-31 00:00:00\n", - "Selling UBER on 2022-07-31 00:00:00\n", - "Selling UAL on 2022-07-31 00:00:00\n", - "Selling AXON on 2022-07-31 00:00:00\n", - "Selling AMZN on 2022-07-31 00:00:00\n", - "Selling MGM on 2022-07-31 00:00:00\n", - "Selling WYNN on 2022-07-31 00:00:00\n", - "Selling BX on 2022-07-31 00:00:00\n", - "Selling NFLX on 2022-07-31 00:00:00\n", - "Selling LRCX on 2022-07-31 00:00:00\n", - "Selling INTU on 2022-07-31 00:00:00\n", - "Selling ON on 2022-07-31 00:00:00\n", - "Selling PYPL on 2022-07-31 00:00:00\n", - "Selling MTCH on 2022-07-31 00:00:00\n", - "Selling SMCI on 2022-07-31 00:00:00\n", - "Selling APTV on 2022-07-31 00:00:00\n", - "Selling DAY on 2022-07-31 00:00:00\n", - "Selling PAYC on 2022-07-31 00:00:00\n", - "Selling GNRC on 2022-07-31 00:00:00\n", - "Selling MPWR on 2022-07-31 00:00:00\n", - "Selling AMD on 2022-07-31 00:00:00\n", - "Selling NVDA on 2022-07-31 00:00:00\n", - "Selling ABNB on 2022-07-31 00:00:00\n", - "Selling CRWD on 2022-07-31 00:00:00\n", - "Selling TSLA on 2022-07-31 00:00:00\n", - "Selling ENPH on 2022-07-31 00:00:00\n", - "Selling RCL on 2022-07-31 00:00:00\n", - "Selling CZR on 2022-07-31 00:00:00\n", - "Selling CCL on 2022-07-31 00:00:00\n", - "Selling PLTR on 2022-07-31 00:00:00\n", - "Selling NCLH on 2022-07-31 00:00:00\n", - "Buying DVA on 2022-08-31 00:00:00\n", - "Buying KHC on 2022-08-31 00:00:00\n", - "Buying K on 2022-08-31 00:00:00\n", - "Buying HRL on 2022-08-31 00:00:00\n", - "Buying CME on 2022-08-31 00:00:00\n", - "Buying CHD on 2022-08-31 00:00:00\n", - "Buying GIS on 2022-08-31 00:00:00\n", - "Buying KMB on 2022-08-31 00:00:00\n", - "Buying CPB on 2022-08-31 00:00:00\n", - "Buying NEM on 2022-08-31 00:00:00\n", - "Buying SJM on 2022-08-31 00:00:00\n", - "Buying JNJ on 2022-08-31 00:00:00\n", - "Buying CL on 2022-08-31 00:00:00\n", - "Buying BMY on 2022-08-31 00:00:00\n", - "Buying CLX on 2022-08-31 00:00:00\n", - "Buying VZ on 2022-08-31 00:00:00\n", - "Buying HSY on 2022-08-31 00:00:00\n", - "Buying KR on 2022-08-31 00:00:00\n", - "Buying IBM on 2022-08-31 00:00:00\n", - "Buying CAG on 2022-08-31 00:00:00\n", - "Buying PG on 2022-08-31 00:00:00\n", - "Buying DUK on 2022-08-31 00:00:00\n", - "Buying ED on 2022-08-31 00:00:00\n", - "Buying ABBV on 2022-08-31 00:00:00\n", - "Buying MRK on 2022-08-31 00:00:00\n", - "Buying MKC on 2022-08-31 00:00:00\n", - "Buying WEC on 2022-08-31 00:00:00\n", - "Buying D on 2022-08-31 00:00:00\n", - "Buying KO on 2022-08-31 00:00:00\n", - "Buying AMGN on 2022-08-31 00:00:00\n", - "Buying PEP on 2022-08-31 00:00:00\n", - "Buying AIZ on 2022-08-31 00:00:00\n", - "Buying MCD on 2022-08-31 00:00:00\n", - "Buying MO on 2022-08-31 00:00:00\n", - "Buying DTE on 2022-08-31 00:00:00\n", - "Buying MCK on 2022-08-31 00:00:00\n", - "Buying PNW on 2022-08-31 00:00:00\n", - "Buying PM on 2022-08-31 00:00:00\n", - "Buying AZO on 2022-08-31 00:00:00\n", - "Buying SO on 2022-08-31 00:00:00\n", - "Buying DG on 2022-08-31 00:00:00\n", - "Buying CMS on 2022-08-31 00:00:00\n", - "Buying LNT on 2022-08-31 00:00:00\n", - "Buying BAX on 2022-08-31 00:00:00\n", - "Buying TRV on 2022-08-31 00:00:00\n", - "Buying FE on 2022-08-31 00:00:00\n", - "Buying STZ on 2022-08-31 00:00:00\n", - "Buying XEL on 2022-08-31 00:00:00\n", - "Buying CBOE on 2022-08-31 00:00:00\n", - "Selling URI on 2022-08-31 00:00:00\n", - "Selling APO on 2022-08-31 00:00:00\n", - "Selling MU on 2022-08-31 00:00:00\n", - "Selling UBER on 2022-08-31 00:00:00\n", - "Selling SWKS on 2022-08-31 00:00:00\n", - "Selling ZBRA on 2022-08-31 00:00:00\n", - "Selling UAL on 2022-08-31 00:00:00\n", - "Selling INTU on 2022-08-31 00:00:00\n", - "Selling WYNN on 2022-08-31 00:00:00\n", - "Selling KLAC on 2022-08-31 00:00:00\n", - "Selling MCHP on 2022-08-31 00:00:00\n", - "Selling META on 2022-08-31 00:00:00\n", - "Selling GM on 2022-08-31 00:00:00\n", - "Selling CRM on 2022-08-31 00:00:00\n", - "Selling MTCH on 2022-08-31 00:00:00\n", - "Selling TER on 2022-08-31 00:00:00\n", - "Selling F on 2022-08-31 00:00:00\n", - "Selling SMCI on 2022-08-31 00:00:00\n", - "Selling KKR on 2022-08-31 00:00:00\n", - "Selling MRNA on 2022-08-31 00:00:00\n", - "Selling ALGN on 2022-08-31 00:00:00\n", - "Selling PAYC on 2022-08-31 00:00:00\n", - "Selling NOW on 2022-08-31 00:00:00\n", - "Selling AXON on 2022-08-31 00:00:00\n", - "Selling AMZN on 2022-08-31 00:00:00\n", - "Selling MGM on 2022-08-31 00:00:00\n", - "Selling ADSK on 2022-08-31 00:00:00\n", - "Selling CRWD on 2022-08-31 00:00:00\n", - "Selling LRCX on 2022-08-31 00:00:00\n", - "Selling EXPE on 2022-08-31 00:00:00\n", - "Selling NFLX on 2022-08-31 00:00:00\n", - "Selling TSLA on 2022-08-31 00:00:00\n", - "Selling AMAT on 2022-08-31 00:00:00\n", - "Selling MPWR on 2022-08-31 00:00:00\n", - "Selling BX on 2022-08-31 00:00:00\n", - "Selling ENPH on 2022-08-31 00:00:00\n", - "Selling AMD on 2022-08-31 00:00:00\n", - "Selling DAY on 2022-08-31 00:00:00\n", - "Selling ABNB on 2022-08-31 00:00:00\n", - "Selling APTV on 2022-08-31 00:00:00\n", - "Selling GNRC on 2022-08-31 00:00:00\n", - "Selling ON on 2022-08-31 00:00:00\n", - "Selling PYPL on 2022-08-31 00:00:00\n", - "Selling NVDA on 2022-08-31 00:00:00\n", - "Selling PLTR on 2022-08-31 00:00:00\n", - "Selling CZR on 2022-08-31 00:00:00\n", - "Selling CCL on 2022-08-31 00:00:00\n", - "Selling RCL on 2022-08-31 00:00:00\n", - "Selling NCLH on 2022-08-31 00:00:00\n", - "Buying KHC on 2022-09-30 00:00:00\n", - "Buying GIS on 2022-09-30 00:00:00\n", - "Buying CPB on 2022-09-30 00:00:00\n", - "Buying HRL on 2022-09-30 00:00:00\n", - "Buying SJM on 2022-09-30 00:00:00\n", - "Buying MRK on 2022-09-30 00:00:00\n", - "Buying BMY on 2022-09-30 00:00:00\n", - "Buying JNJ on 2022-09-30 00:00:00\n", - "Buying K on 2022-09-30 00:00:00\n", - "Buying HUM on 2022-09-30 00:00:00\n", - "Buying KMB on 2022-09-30 00:00:00\n", - "Buying CHD on 2022-09-30 00:00:00\n", - "Buying CAG on 2022-09-30 00:00:00\n", - "Buying HSY on 2022-09-30 00:00:00\n", - "Buying ERIE on 2022-09-30 00:00:00\n", - "Buying PG on 2022-09-30 00:00:00\n", - "Buying IBM on 2022-09-30 00:00:00\n", - "Buying STZ on 2022-09-30 00:00:00\n", - "Buying ABBV on 2022-09-30 00:00:00\n", - "Buying CME on 2022-09-30 00:00:00\n", - "Buying CL on 2022-09-30 00:00:00\n", - "Buying MOH on 2022-09-30 00:00:00\n", - "Buying TPL on 2022-09-30 00:00:00\n", - "Buying CLX on 2022-09-30 00:00:00\n", - "Buying MCD on 2022-09-30 00:00:00\n", - "Buying CBOE on 2022-09-30 00:00:00\n", - "Buying TRV on 2022-09-30 00:00:00\n", - "Buying LMT on 2022-09-30 00:00:00\n", - "Buying VZ on 2022-09-30 00:00:00\n", - "Buying NEM on 2022-09-30 00:00:00\n", - "Buying MO on 2022-09-30 00:00:00\n", - "Buying PFE on 2022-09-30 00:00:00\n", - "Buying KR on 2022-09-30 00:00:00\n", - "Buying AMGN on 2022-09-30 00:00:00\n", - "Buying T on 2022-09-30 00:00:00\n", - "Buying O on 2022-09-30 00:00:00\n", - "Buying MCK on 2022-09-30 00:00:00\n", - "Buying CI on 2022-09-30 00:00:00\n", - "Buying EG on 2022-09-30 00:00:00\n", - "Buying BG on 2022-09-30 00:00:00\n", - "Buying MKC on 2022-09-30 00:00:00\n", - "Buying AZO on 2022-09-30 00:00:00\n", - "Buying AIZ on 2022-09-30 00:00:00\n", - "Buying KO on 2022-09-30 00:00:00\n", - "Buying ELV on 2022-09-30 00:00:00\n", - "Buying DG on 2022-09-30 00:00:00\n", - "Buying WELL on 2022-09-30 00:00:00\n", - "Buying PEP on 2022-09-30 00:00:00\n", - "Buying CB on 2022-09-30 00:00:00\n", - "Selling SYF on 2022-09-30 00:00:00\n", - "Selling IR on 2022-09-30 00:00:00\n", - "Selling ROK on 2022-09-30 00:00:00\n", - "Selling BKNG on 2022-09-30 00:00:00\n", - "Selling BLK on 2022-09-30 00:00:00\n", - "Selling GOOGL on 2022-09-30 00:00:00\n", - "Selling URI on 2022-09-30 00:00:00\n", - "Selling GOOG on 2022-09-30 00:00:00\n", - "Selling KLAC on 2022-09-30 00:00:00\n", - "Selling DAY on 2022-09-30 00:00:00\n", - "Selling LULU on 2022-09-30 00:00:00\n", - "Selling MTCH on 2022-09-30 00:00:00\n", - "Selling ENPH on 2022-09-30 00:00:00\n", - "Selling GM on 2022-09-30 00:00:00\n", - "Selling INTU on 2022-09-30 00:00:00\n", - "Selling ADBE on 2022-09-30 00:00:00\n", - "Selling SMCI on 2022-09-30 00:00:00\n", - "Selling AXON on 2022-09-30 00:00:00\n", - "Selling TSLA on 2022-09-30 00:00:00\n", - "Selling MCHP on 2022-09-30 00:00:00\n", - "Selling EXPE on 2022-09-30 00:00:00\n", - "Selling KKR on 2022-09-30 00:00:00\n", - "Selling NOW on 2022-09-30 00:00:00\n", - "Selling CRWD on 2022-09-30 00:00:00\n", - "Selling NKE on 2022-09-30 00:00:00\n", - "Selling NXPI on 2022-09-30 00:00:00\n", - "Selling ZBRA on 2022-09-30 00:00:00\n", - "Selling MPWR on 2022-09-30 00:00:00\n", - "Selling PLTR on 2022-09-30 00:00:00\n", - "Selling LRCX on 2022-09-30 00:00:00\n", - "Selling AMAT on 2022-09-30 00:00:00\n", - "Selling BIIB on 2022-09-30 00:00:00\n", - "Selling F on 2022-09-30 00:00:00\n", - "Selling BX on 2022-09-30 00:00:00\n", - "Selling ALGN on 2022-09-30 00:00:00\n", - "Selling AMZN on 2022-09-30 00:00:00\n", - "Selling KMX on 2022-09-30 00:00:00\n", - "Selling META on 2022-09-30 00:00:00\n", - "Selling AMD on 2022-09-30 00:00:00\n", - "Selling APTV on 2022-09-30 00:00:00\n", - "Selling PYPL on 2022-09-30 00:00:00\n", - "Selling GNRC on 2022-09-30 00:00:00\n", - "Selling NFLX on 2022-09-30 00:00:00\n", - "Selling NVDA on 2022-09-30 00:00:00\n", - "Selling ON on 2022-09-30 00:00:00\n", - "Selling NCLH on 2022-09-30 00:00:00\n", - "Selling RCL on 2022-09-30 00:00:00\n", - "Selling CCL on 2022-09-30 00:00:00\n", - "Selling CZR on 2022-09-30 00:00:00\n", - "Buying DVA on 2022-10-31 00:00:00\n", - "Buying GIS on 2022-10-31 00:00:00\n", - "Buying CPB on 2022-10-31 00:00:00\n", - "Buying BMY on 2022-10-31 00:00:00\n", - "Buying HUM on 2022-10-31 00:00:00\n", - "Buying HRL on 2022-10-31 00:00:00\n", - "Buying JNJ on 2022-10-31 00:00:00\n", - "Buying SJM on 2022-10-31 00:00:00\n", - "Buying MOH on 2022-10-31 00:00:00\n", - "Buying MRK on 2022-10-31 00:00:00\n", - "Buying KHC on 2022-10-31 00:00:00\n", - "Buying ERIE on 2022-10-31 00:00:00\n", - "Buying CAG on 2022-10-31 00:00:00\n", - "Buying K on 2022-10-31 00:00:00\n", - "Buying HSY on 2022-10-31 00:00:00\n", - "Buying LW on 2022-10-31 00:00:00\n", - "Buying ELV on 2022-10-31 00:00:00\n", - "Buying AMGN on 2022-10-31 00:00:00\n", - "Buying ABBV on 2022-10-31 00:00:00\n", - "Buying MKC on 2022-10-31 00:00:00\n", - "Buying CL on 2022-10-31 00:00:00\n", - "Buying ROL on 2022-10-31 00:00:00\n", - "Buying EW on 2022-10-31 00:00:00\n", - "Buying CHD on 2022-10-31 00:00:00\n", - "Buying UNH on 2022-10-31 00:00:00\n", - "Buying AZO on 2022-10-31 00:00:00\n", - "Buying CME on 2022-10-31 00:00:00\n", - "Buying VZ on 2022-10-31 00:00:00\n", - "Buying CI on 2022-10-31 00:00:00\n", - "Buying PG on 2022-10-31 00:00:00\n", - "Buying DG on 2022-10-31 00:00:00\n", - "Buying MO on 2022-10-31 00:00:00\n", - "Buying INCY on 2022-10-31 00:00:00\n", - "Buying KMB on 2022-10-31 00:00:00\n", - "Buying WM on 2022-10-31 00:00:00\n", - "Buying MCD on 2022-10-31 00:00:00\n", - "Buying JKHY on 2022-10-31 00:00:00\n", - "Buying CBOE on 2022-10-31 00:00:00\n", - "Buying WMT on 2022-10-31 00:00:00\n", - "Buying RSG on 2022-10-31 00:00:00\n", - "Buying KO on 2022-10-31 00:00:00\n", - "Buying TSN on 2022-10-31 00:00:00\n", - "Buying WRB on 2022-10-31 00:00:00\n", - "Buying EA on 2022-10-31 00:00:00\n", - "Buying HII on 2022-10-31 00:00:00\n", - "Buying FOXA on 2022-10-31 00:00:00\n", - "Buying OXY on 2022-10-31 00:00:00\n", - "Buying ORLY on 2022-10-31 00:00:00\n", - "Buying TRV on 2022-10-31 00:00:00\n", - "Selling HPQ on 2022-10-31 00:00:00\n", - "Selling IQV on 2022-10-31 00:00:00\n", - "Selling INTU on 2022-10-31 00:00:00\n", - "Selling URI on 2022-10-31 00:00:00\n", - "Selling SWK on 2022-10-31 00:00:00\n", - "Selling IR on 2022-10-31 00:00:00\n", - "Selling CE on 2022-10-31 00:00:00\n", - "Selling KLAC on 2022-10-31 00:00:00\n", - "Selling PODD on 2022-10-31 00:00:00\n", - "Selling EMN on 2022-10-31 00:00:00\n", - "Selling FCX on 2022-10-31 00:00:00\n", - "Selling COF on 2022-10-31 00:00:00\n", - "Selling TRMB on 2022-10-31 00:00:00\n", - "Selling KKR on 2022-10-31 00:00:00\n", - "Selling APO on 2022-10-31 00:00:00\n", - "Selling INTC on 2022-10-31 00:00:00\n", - "Selling TROW on 2022-10-31 00:00:00\n", - "Selling BIIB on 2022-10-31 00:00:00\n", - "Selling WDC on 2022-10-31 00:00:00\n", - "Selling IVZ on 2022-10-31 00:00:00\n", - "Selling NFLX on 2022-10-31 00:00:00\n", - "Selling SYF on 2022-10-31 00:00:00\n", - "Selling BLK on 2022-10-31 00:00:00\n", - "Selling MTCH on 2022-10-31 00:00:00\n", - "Selling SMCI on 2022-10-31 00:00:00\n", - "Selling ZBRA on 2022-10-31 00:00:00\n", - "Selling DAY on 2022-10-31 00:00:00\n", - "Selling META on 2022-10-31 00:00:00\n", - "Selling TER on 2022-10-31 00:00:00\n", - "Selling SWKS on 2022-10-31 00:00:00\n", - "Selling DXCM on 2022-10-31 00:00:00\n", - "Selling MCHP on 2022-10-31 00:00:00\n", - "Selling LRCX on 2022-10-31 00:00:00\n", - "Selling KMX on 2022-10-31 00:00:00\n", - "Selling NXPI on 2022-10-31 00:00:00\n", - "Selling DELL on 2022-10-31 00:00:00\n", - "Selling AMAT on 2022-10-31 00:00:00\n", - "Selling BX on 2022-10-31 00:00:00\n", - "Selling MPWR on 2022-10-31 00:00:00\n", - "Selling APTV on 2022-10-31 00:00:00\n", - "Selling ALGN on 2022-10-31 00:00:00\n", - "Selling GNRC on 2022-10-31 00:00:00\n", - "Selling RCL on 2022-10-31 00:00:00\n", - "Selling AMD on 2022-10-31 00:00:00\n", - "Selling ON on 2022-10-31 00:00:00\n", - "Selling NVDA on 2022-10-31 00:00:00\n", - "Selling CCL on 2022-10-31 00:00:00\n", - "Selling NCLH on 2022-10-31 00:00:00\n", - "Selling CZR on 2022-10-31 00:00:00\n", - "Buying CPB on 2022-11-30 00:00:00\n", - "Buying GIS on 2022-11-30 00:00:00\n", - "Buying SJM on 2022-11-30 00:00:00\n", - "Buying BMY on 2022-11-30 00:00:00\n", - "Buying MCK on 2022-11-30 00:00:00\n", - "Buying HUM on 2022-11-30 00:00:00\n", - "Buying MRK on 2022-11-30 00:00:00\n", - "Buying HSY on 2022-11-30 00:00:00\n", - "Buying HRL on 2022-11-30 00:00:00\n", - "Buying JNJ on 2022-11-30 00:00:00\n", - "Buying ROL on 2022-11-30 00:00:00\n", - "Buying KHC on 2022-11-30 00:00:00\n", - "Buying CAG on 2022-11-30 00:00:00\n", - "Buying K on 2022-11-30 00:00:00\n", - "Buying MCD on 2022-11-30 00:00:00\n", - "Buying WRB on 2022-11-30 00:00:00\n", - "Buying LW on 2022-11-30 00:00:00\n", - "Buying CI on 2022-11-30 00:00:00\n", - "Buying AZO on 2022-11-30 00:00:00\n", - "Buying ERIE on 2022-11-30 00:00:00\n", - "Buying AMGN on 2022-11-30 00:00:00\n", - "Buying CBOE on 2022-11-30 00:00:00\n", - "Buying CAH on 2022-11-30 00:00:00\n", - "Buying DVA on 2022-11-30 00:00:00\n", - "Buying LLY on 2022-11-30 00:00:00\n", - "Buying MO on 2022-11-30 00:00:00\n", - "Buying INCY on 2022-11-30 00:00:00\n", - "Buying ELV on 2022-11-30 00:00:00\n", - "Buying MOH on 2022-11-30 00:00:00\n", - "Buying GEN on 2022-11-30 00:00:00\n", - "Buying KR on 2022-11-30 00:00:00\n", - "Buying TRV on 2022-11-30 00:00:00\n", - "Buying LMT on 2022-11-30 00:00:00\n", - "Buying ABBV on 2022-11-30 00:00:00\n", - "Buying NOC on 2022-11-30 00:00:00\n", - "Buying UNH on 2022-11-30 00:00:00\n", - "Buying COR on 2022-11-30 00:00:00\n", - "Buying CL on 2022-11-30 00:00:00\n", - "Buying LDOS on 2022-11-30 00:00:00\n", - "Buying WMT on 2022-11-30 00:00:00\n", - "Buying FSLR on 2022-11-30 00:00:00\n", - "Buying CME on 2022-11-30 00:00:00\n", - "Buying RSG on 2022-11-30 00:00:00\n", - "Buying ORLY on 2022-11-30 00:00:00\n", - "Buying WM on 2022-11-30 00:00:00\n", - "Buying LHX on 2022-11-30 00:00:00\n", - "Buying PEP on 2022-11-30 00:00:00\n", - "Buying VZ on 2022-11-30 00:00:00\n", - "Buying PFE on 2022-11-30 00:00:00\n", - "Selling ADSK on 2022-11-30 00:00:00\n", - "Selling EXPE on 2022-11-30 00:00:00\n", - "Selling PHM on 2022-11-30 00:00:00\n", - "Selling TER on 2022-11-30 00:00:00\n", - "Selling SYF on 2022-11-30 00:00:00\n", - "Selling KKR on 2022-11-30 00:00:00\n", - "Selling KMX on 2022-11-30 00:00:00\n", - "Selling RCL on 2022-11-30 00:00:00\n", - "Selling WST on 2022-11-30 00:00:00\n", - "Selling QCOM on 2022-11-30 00:00:00\n", - "Selling SWK on 2022-11-30 00:00:00\n", - "Selling AMZN on 2022-11-30 00:00:00\n", - "Selling COF on 2022-11-30 00:00:00\n", - "Selling ZBRA on 2022-11-30 00:00:00\n", - "Selling MHK on 2022-11-30 00:00:00\n", - "Selling ABNB on 2022-11-30 00:00:00\n", - "Selling PARA on 2022-11-30 00:00:00\n", - "Selling BEN on 2022-11-30 00:00:00\n", - "Selling WDC on 2022-11-30 00:00:00\n", - "Selling FCX on 2022-11-30 00:00:00\n", - "Selling BLDR on 2022-11-30 00:00:00\n", - "Selling NXPI on 2022-11-30 00:00:00\n", - "Selling BLK on 2022-11-30 00:00:00\n", - "Selling SWKS on 2022-11-30 00:00:00\n", - "Selling INTU on 2022-11-30 00:00:00\n", - "Selling CE on 2022-11-30 00:00:00\n", - "Selling META on 2022-11-30 00:00:00\n", - "Selling NCLH on 2022-11-30 00:00:00\n", - "Selling EPAM on 2022-11-30 00:00:00\n", - "Selling TRMB on 2022-11-30 00:00:00\n", - "Selling MTCH on 2022-11-30 00:00:00\n", - "Selling MCHP on 2022-11-30 00:00:00\n", - "Selling AMAT on 2022-11-30 00:00:00\n", - "Selling LRCX on 2022-11-30 00:00:00\n", - "Selling APTV on 2022-11-30 00:00:00\n", - "Selling FICO on 2022-11-30 00:00:00\n", - "Selling BX on 2022-11-30 00:00:00\n", - "Selling DAY on 2022-11-30 00:00:00\n", - "Selling TROW on 2022-11-30 00:00:00\n", - "Selling WDAY on 2022-11-30 00:00:00\n", - "Selling IVZ on 2022-11-30 00:00:00\n", - "Selling ALGN on 2022-11-30 00:00:00\n", - "Selling MPWR on 2022-11-30 00:00:00\n", - "Selling GNRC on 2022-11-30 00:00:00\n", - "Selling CCL on 2022-11-30 00:00:00\n", - "Selling AMD on 2022-11-30 00:00:00\n", - "Selling ON on 2022-11-30 00:00:00\n", - "Selling NVDA on 2022-11-30 00:00:00\n", - "Selling CZR on 2022-11-30 00:00:00\n", - "Buying MCK on 2022-12-31 00:00:00\n", - "Buying SJM on 2022-12-31 00:00:00\n", - "Buying CPB on 2022-12-31 00:00:00\n", - "Buying HUM on 2022-12-31 00:00:00\n", - "Buying DVA on 2022-12-31 00:00:00\n", - "Buying GIS on 2022-12-31 00:00:00\n", - "Buying KHC on 2022-12-31 00:00:00\n", - "Buying HSY on 2022-12-31 00:00:00\n", - "Buying CAH on 2022-12-31 00:00:00\n", - "Buying CAG on 2022-12-31 00:00:00\n", - "Buying HRL on 2022-12-31 00:00:00\n", - "Buying MRK on 2022-12-31 00:00:00\n", - "Buying MO on 2022-12-31 00:00:00\n", - "Buying CI on 2022-12-31 00:00:00\n", - "Buying BMY on 2022-12-31 00:00:00\n", - "Buying ROL on 2022-12-31 00:00:00\n", - "Buying INCY on 2022-12-31 00:00:00\n", - "Buying KR on 2022-12-31 00:00:00\n", - "Buying AMGN on 2022-12-31 00:00:00\n", - "Buying COR on 2022-12-31 00:00:00\n", - "Buying MCD on 2022-12-31 00:00:00\n", - "Buying WRB on 2022-12-31 00:00:00\n", - "Buying LW on 2022-12-31 00:00:00\n", - "Buying LLY on 2022-12-31 00:00:00\n", - "Buying ELV on 2022-12-31 00:00:00\n", - "Buying JNJ on 2022-12-31 00:00:00\n", - "Buying ABBV on 2022-12-31 00:00:00\n", - "Buying CBOE on 2022-12-31 00:00:00\n", - "Buying AZO on 2022-12-31 00:00:00\n", - "Buying LDOS on 2022-12-31 00:00:00\n", - "Buying K on 2022-12-31 00:00:00\n", - "Buying LHX on 2022-12-31 00:00:00\n", - "Buying NOC on 2022-12-31 00:00:00\n", - "Buying MOH on 2022-12-31 00:00:00\n", - "Buying GEN on 2022-12-31 00:00:00\n", - "Buying LMT on 2022-12-31 00:00:00\n", - "Buying CME on 2022-12-31 00:00:00\n", - "Buying TRV on 2022-12-31 00:00:00\n", - "Buying ORLY on 2022-12-31 00:00:00\n", - "Buying VZ on 2022-12-31 00:00:00\n", - "Buying REGN on 2022-12-31 00:00:00\n", - "Buying PGR on 2022-12-31 00:00:00\n", - "Buying UNH on 2022-12-31 00:00:00\n", - "Buying TMUS on 2022-12-31 00:00:00\n", - "Buying BG on 2022-12-31 00:00:00\n", - "Buying PEP on 2022-12-31 00:00:00\n", - "Buying EG on 2022-12-31 00:00:00\n", - "Buying CL on 2022-12-31 00:00:00\n", - "Buying CNC on 2022-12-31 00:00:00\n", - "Selling MCO on 2022-12-31 00:00:00\n", - "Selling ANSS on 2022-12-31 00:00:00\n", - "Selling MSFT on 2022-12-31 00:00:00\n", - "Selling FTNT on 2022-12-31 00:00:00\n", - "Selling AAPL on 2022-12-31 00:00:00\n", - "Selling SWK on 2022-12-31 00:00:00\n", - "Selling CE on 2022-12-31 00:00:00\n", - "Selling EXPE on 2022-12-31 00:00:00\n", - "Selling APTV on 2022-12-31 00:00:00\n", - "Selling AMZN on 2022-12-31 00:00:00\n", - "Selling MSCI on 2022-12-31 00:00:00\n", - "Selling WST on 2022-12-31 00:00:00\n", - "Selling WDC on 2022-12-31 00:00:00\n", - "Selling PAYC on 2022-12-31 00:00:00\n", - "Selling BEN on 2022-12-31 00:00:00\n", - "Selling META on 2022-12-31 00:00:00\n", - "Selling TSLA on 2022-12-31 00:00:00\n", - "Selling POOL on 2022-12-31 00:00:00\n", - "Selling EFX on 2022-12-31 00:00:00\n", - "Selling ABNB on 2022-12-31 00:00:00\n", - "Selling PLTR on 2022-12-31 00:00:00\n", - "Selling ZBRA on 2022-12-31 00:00:00\n", - "Selling NXPI on 2022-12-31 00:00:00\n", - "Selling ADSK on 2022-12-31 00:00:00\n", - "Selling QCOM on 2022-12-31 00:00:00\n", - "Selling PARA on 2022-12-31 00:00:00\n", - "Selling TER on 2022-12-31 00:00:00\n", - "Selling SWKS on 2022-12-31 00:00:00\n", - "Selling CCL on 2022-12-31 00:00:00\n", - "Selling IVZ on 2022-12-31 00:00:00\n", - "Selling TRMB on 2022-12-31 00:00:00\n", - "Selling INTU on 2022-12-31 00:00:00\n", - "Selling MCHP on 2022-12-31 00:00:00\n", - "Selling ALGN on 2022-12-31 00:00:00\n", - "Selling AMAT on 2022-12-31 00:00:00\n", - "Selling BX on 2022-12-31 00:00:00\n", - "Selling MTCH on 2022-12-31 00:00:00\n", - "Selling EPAM on 2022-12-31 00:00:00\n", - "Selling TROW on 2022-12-31 00:00:00\n", - "Selling WDAY on 2022-12-31 00:00:00\n", - "Selling LRCX on 2022-12-31 00:00:00\n", - "Selling FICO on 2022-12-31 00:00:00\n", - "Selling DAY on 2022-12-31 00:00:00\n", - "Selling GNRC on 2022-12-31 00:00:00\n", - "Selling CZR on 2022-12-31 00:00:00\n", - "Selling MPWR on 2022-12-31 00:00:00\n", - "Selling AMD on 2022-12-31 00:00:00\n", - "Selling ON on 2022-12-31 00:00:00\n", - "Selling NVDA on 2022-12-31 00:00:00\n", - "Buying MCK on 2023-01-31 00:00:00\n", - "Buying SJM on 2023-01-31 00:00:00\n", - "Buying CPB on 2023-01-31 00:00:00\n", - "Buying HSY on 2023-01-31 00:00:00\n", - "Buying CAH on 2023-01-31 00:00:00\n", - "Buying COR on 2023-01-31 00:00:00\n", - "Buying CBOE on 2023-01-31 00:00:00\n", - "Buying NOC on 2023-01-31 00:00:00\n", - "Buying CI on 2023-01-31 00:00:00\n", - "Buying MRK on 2023-01-31 00:00:00\n", - "Buying INCY on 2023-01-31 00:00:00\n", - "Buying KR on 2023-01-31 00:00:00\n", - "Buying BMY on 2023-01-31 00:00:00\n", - "Buying MO on 2023-01-31 00:00:00\n", - "Buying CAG on 2023-01-31 00:00:00\n", - "Buying VRTX on 2023-01-31 00:00:00\n", - "Buying GIS on 2023-01-31 00:00:00\n", - "Buying ORLY on 2023-01-31 00:00:00\n", - "Buying EG on 2023-01-31 00:00:00\n", - "Buying AZO on 2023-01-31 00:00:00\n", - "Buying LMT on 2023-01-31 00:00:00\n", - "Buying MCD on 2023-01-31 00:00:00\n", - "Buying WRB on 2023-01-31 00:00:00\n", - "Buying ACGL on 2023-01-31 00:00:00\n", - "Buying LLY on 2023-01-31 00:00:00\n", - "Buying LDOS on 2023-01-31 00:00:00\n", - "Buying KHC on 2023-01-31 00:00:00\n", - "Buying HRL on 2023-01-31 00:00:00\n", - "Buying CNC on 2023-01-31 00:00:00\n", - "Buying TMUS on 2023-01-31 00:00:00\n", - "Buying HUM on 2023-01-31 00:00:00\n", - "Buying JNJ on 2023-01-31 00:00:00\n", - "Buying PGR on 2023-01-31 00:00:00\n", - "Buying GILD on 2023-01-31 00:00:00\n", - "Buying LW on 2023-01-31 00:00:00\n", - "Buying ELV on 2023-01-31 00:00:00\n", - "Buying LHX on 2023-01-31 00:00:00\n", - "Buying CME on 2023-01-31 00:00:00\n", - "Buying AMGN on 2023-01-31 00:00:00\n", - "Buying ROL on 2023-01-31 00:00:00\n", - "Buying ABBV on 2023-01-31 00:00:00\n", - "Buying K on 2023-01-31 00:00:00\n", - "Buying YUM on 2023-01-31 00:00:00\n", - "Buying VZ on 2023-01-31 00:00:00\n", - "Buying REGN on 2023-01-31 00:00:00\n", - "Buying PEP on 2023-01-31 00:00:00\n", - "Buying ALL on 2023-01-31 00:00:00\n", - "Buying GL on 2023-01-31 00:00:00\n", - "Buying GEN on 2023-01-31 00:00:00\n", - "Selling MSCI on 2023-01-31 00:00:00\n", - "Selling APTV on 2023-01-31 00:00:00\n", - "Selling TRMB on 2023-01-31 00:00:00\n", - "Selling ANSS on 2023-01-31 00:00:00\n", - "Selling CE on 2023-01-31 00:00:00\n", - "Selling KLAC on 2023-01-31 00:00:00\n", - "Selling ALGN on 2023-01-31 00:00:00\n", - "Selling KMX on 2023-01-31 00:00:00\n", - "Selling EXPE on 2023-01-31 00:00:00\n", - "Selling MCO on 2023-01-31 00:00:00\n", - "Selling ABNB on 2023-01-31 00:00:00\n", - "Selling WBD on 2023-01-31 00:00:00\n", - "Selling NOW on 2023-01-31 00:00:00\n", - "Selling SWK on 2023-01-31 00:00:00\n", - "Selling EFX on 2023-01-31 00:00:00\n", - "Selling COF on 2023-01-31 00:00:00\n", - "Selling SWKS on 2023-01-31 00:00:00\n", - "Selling POOL on 2023-01-31 00:00:00\n", - "Selling MHK on 2023-01-31 00:00:00\n", - "Selling PARA on 2023-01-31 00:00:00\n", - "Selling WDC on 2023-01-31 00:00:00\n", - "Selling ZBRA on 2023-01-31 00:00:00\n", - "Selling AMZN on 2023-01-31 00:00:00\n", - "Selling NXPI on 2023-01-31 00:00:00\n", - "Selling TSLA on 2023-01-31 00:00:00\n", - "Selling TER on 2023-01-31 00:00:00\n", - "Selling ADSK on 2023-01-31 00:00:00\n", - "Selling INTU on 2023-01-31 00:00:00\n", - "Selling KKR on 2023-01-31 00:00:00\n", - "Selling PLTR on 2023-01-31 00:00:00\n", - "Selling QCOM on 2023-01-31 00:00:00\n", - "Selling MCHP on 2023-01-31 00:00:00\n", - "Selling IVZ on 2023-01-31 00:00:00\n", - "Selling AMAT on 2023-01-31 00:00:00\n", - "Selling WDAY on 2023-01-31 00:00:00\n", - "Selling TROW on 2023-01-31 00:00:00\n", - "Selling CCL on 2023-01-31 00:00:00\n", - "Selling DAY on 2023-01-31 00:00:00\n", - "Selling EPAM on 2023-01-31 00:00:00\n", - "Selling LRCX on 2023-01-31 00:00:00\n", - "Selling MTCH on 2023-01-31 00:00:00\n", - "Selling BX on 2023-01-31 00:00:00\n", - "Selling GNRC on 2023-01-31 00:00:00\n", - "Selling AMD on 2023-01-31 00:00:00\n", - "Selling ON on 2023-01-31 00:00:00\n", - "Selling MPWR on 2023-01-31 00:00:00\n", - "Selling FICO on 2023-01-31 00:00:00\n", - "Selling CZR on 2023-01-31 00:00:00\n", - "Selling NVDA on 2023-01-31 00:00:00\n", - "Buying NOC on 2023-02-28 00:00:00\n", - "Buying CPB on 2023-02-28 00:00:00\n", - "Buying SJM on 2023-02-28 00:00:00\n", - "Buying INCY on 2023-02-28 00:00:00\n", - "Buying GIS on 2023-02-28 00:00:00\n", - "Buying CAG on 2023-02-28 00:00:00\n", - "Buying CBOE on 2023-02-28 00:00:00\n", - "Buying COR on 2023-02-28 00:00:00\n", - "Buying ACGL on 2023-02-28 00:00:00\n", - "Buying CF on 2023-02-28 00:00:00\n", - "Buying LW on 2023-02-28 00:00:00\n", - "Buying CI on 2023-02-28 00:00:00\n", - "Buying LMT on 2023-02-28 00:00:00\n", - "Buying EG on 2023-02-28 00:00:00\n", - "Buying ABBV on 2023-02-28 00:00:00\n", - "Buying HUM on 2023-02-28 00:00:00\n", - "Buying MRK on 2023-02-28 00:00:00\n", - "Buying SCHW on 2023-02-28 00:00:00\n", - "Buying CLX on 2023-02-28 00:00:00\n", - "Buying CAH on 2023-02-28 00:00:00\n", - "Buying UNH on 2023-02-28 00:00:00\n", - "Buying ORLY on 2023-02-28 00:00:00\n", - "Buying CME on 2023-02-28 00:00:00\n", - "Buying PGR on 2023-02-28 00:00:00\n", - "Buying LLY on 2023-02-28 00:00:00\n", - "Buying GILD on 2023-02-28 00:00:00\n", - "Buying YUM on 2023-02-28 00:00:00\n", - "Buying MCK on 2023-02-28 00:00:00\n", - "Buying K on 2023-02-28 00:00:00\n", - "Buying GL on 2023-02-28 00:00:00\n", - "Buying DG on 2023-02-28 00:00:00\n", - "Buying CNC on 2023-02-28 00:00:00\n", - "Buying TMUS on 2023-02-28 00:00:00\n", - "Buying HSY on 2023-02-28 00:00:00\n", - "Buying WRB on 2023-02-28 00:00:00\n", - "Buying CL on 2023-02-28 00:00:00\n", - "Buying PEP on 2023-02-28 00:00:00\n", - "Buying ELV on 2023-02-28 00:00:00\n", - "Buying TJX on 2023-02-28 00:00:00\n", - "Buying CVS on 2023-02-28 00:00:00\n", - "Buying VZ on 2023-02-28 00:00:00\n", - "Buying ALL on 2023-02-28 00:00:00\n", - "Buying CB on 2023-02-28 00:00:00\n", - "Buying HII on 2023-02-28 00:00:00\n", - "Buying BMY on 2023-02-28 00:00:00\n", - "Buying AFL on 2023-02-28 00:00:00\n", - "Buying AZO on 2023-02-28 00:00:00\n", - "Buying PG on 2023-02-28 00:00:00\n", - "Buying DGX on 2023-02-28 00:00:00\n", - "Selling ANSS on 2023-02-28 00:00:00\n", - "Selling TYL on 2023-02-28 00:00:00\n", - "Selling GOOGL on 2023-02-28 00:00:00\n", - "Selling WDC on 2023-02-28 00:00:00\n", - "Selling POOL on 2023-02-28 00:00:00\n", - "Selling COF on 2023-02-28 00:00:00\n", - "Selling RCL on 2023-02-28 00:00:00\n", - "Selling MSCI on 2023-02-28 00:00:00\n", - "Selling KLAC on 2023-02-28 00:00:00\n", - "Selling GOOG on 2023-02-28 00:00:00\n", - "Selling NOW on 2023-02-28 00:00:00\n", - "Selling PAYC on 2023-02-28 00:00:00\n", - "Selling ALB on 2023-02-28 00:00:00\n", - "Selling MCHP on 2023-02-28 00:00:00\n", - "Selling ABNB on 2023-02-28 00:00:00\n", - "Selling QCOM on 2023-02-28 00:00:00\n", - "Selling NXPI on 2023-02-28 00:00:00\n", - "Selling KKR on 2023-02-28 00:00:00\n", - "Selling SWKS on 2023-02-28 00:00:00\n", - "Selling SWK on 2023-02-28 00:00:00\n", - "Selling ADSK on 2023-02-28 00:00:00\n", - "Selling INTU on 2023-02-28 00:00:00\n", - "Selling F on 2023-02-28 00:00:00\n", - "Selling MTCH on 2023-02-28 00:00:00\n", - "Selling TROW on 2023-02-28 00:00:00\n", - "Selling ZBRA on 2023-02-28 00:00:00\n", - "Selling TER on 2023-02-28 00:00:00\n", - "Selling NCLH on 2023-02-28 00:00:00\n", - "Selling AMZN on 2023-02-28 00:00:00\n", - "Selling CRWD on 2023-02-28 00:00:00\n", - "Selling TSLA on 2023-02-28 00:00:00\n", - "Selling META on 2023-02-28 00:00:00\n", - "Selling DAY on 2023-02-28 00:00:00\n", - "Selling KMX on 2023-02-28 00:00:00\n", - "Selling AMAT on 2023-02-28 00:00:00\n", - "Selling EPAM on 2023-02-28 00:00:00\n", - "Selling BX on 2023-02-28 00:00:00\n", - "Selling ON on 2023-02-28 00:00:00\n", - "Selling PARA on 2023-02-28 00:00:00\n", - "Selling ALGN on 2023-02-28 00:00:00\n", - "Selling LRCX on 2023-02-28 00:00:00\n", - "Selling CZR on 2023-02-28 00:00:00\n", - "Selling CCL on 2023-02-28 00:00:00\n", - "Selling WBD on 2023-02-28 00:00:00\n", - "Selling MPWR on 2023-02-28 00:00:00\n", - "Selling AMD on 2023-02-28 00:00:00\n", - "Selling GNRC on 2023-02-28 00:00:00\n", - "Selling NVDA on 2023-02-28 00:00:00\n", - "Selling PLTR on 2023-02-28 00:00:00\n", - "Buying CPB on 2023-03-31 00:00:00\n", - "Buying GIS on 2023-03-31 00:00:00\n", - "Buying NOC on 2023-03-31 00:00:00\n", - "Buying LMT on 2023-03-31 00:00:00\n", - "Buying LLY on 2023-03-31 00:00:00\n", - "Buying CHD on 2023-03-31 00:00:00\n", - "Buying CAG on 2023-03-31 00:00:00\n", - "Buying CLX on 2023-03-31 00:00:00\n", - "Buying MRK on 2023-03-31 00:00:00\n", - "Buying KR on 2023-03-31 00:00:00\n", - "Buying K on 2023-03-31 00:00:00\n", - "Buying HSY on 2023-03-31 00:00:00\n", - "Buying ULTA on 2023-03-31 00:00:00\n", - "Buying SJM on 2023-03-31 00:00:00\n", - "Buying LW on 2023-03-31 00:00:00\n", - "Buying PEP on 2023-03-31 00:00:00\n", - "Buying DG on 2023-03-31 00:00:00\n", - "Buying ABBV on 2023-03-31 00:00:00\n", - "Buying INCY on 2023-03-31 00:00:00\n", - "Buying UNH on 2023-03-31 00:00:00\n", - "Buying CL on 2023-03-31 00:00:00\n", - "Buying HUM on 2023-03-31 00:00:00\n", - "Buying TMUS on 2023-03-31 00:00:00\n", - "Buying COR on 2023-03-31 00:00:00\n", - "Buying RSG on 2023-03-31 00:00:00\n", - "Buying VZ on 2023-03-31 00:00:00\n", - "Buying BMY on 2023-03-31 00:00:00\n", - "Buying KO on 2023-03-31 00:00:00\n", - "Buying ORLY on 2023-03-31 00:00:00\n", - "Buying MKC on 2023-03-31 00:00:00\n", - "Buying HRL on 2023-03-31 00:00:00\n", - "Buying NEM on 2023-03-31 00:00:00\n", - "Buying CBOE on 2023-03-31 00:00:00\n", - "Buying PSX on 2023-03-31 00:00:00\n", - "Buying MCK on 2023-03-31 00:00:00\n", - "Buying PG on 2023-03-31 00:00:00\n", - "Buying KMB on 2023-03-31 00:00:00\n", - "Buying MO on 2023-03-31 00:00:00\n", - "Buying CI on 2023-03-31 00:00:00\n", - "Buying GILD on 2023-03-31 00:00:00\n", - "Buying YUM on 2023-03-31 00:00:00\n", - "Buying AMGN on 2023-03-31 00:00:00\n", - "Buying WMT on 2023-03-31 00:00:00\n", - "Buying WM on 2023-03-31 00:00:00\n", - "Buying REGN on 2023-03-31 00:00:00\n", - "Buying AZO on 2023-03-31 00:00:00\n", - "Buying CVS on 2023-03-31 00:00:00\n", - "Buying LDOS on 2023-03-31 00:00:00\n", - "Buying T on 2023-03-31 00:00:00\n", - "Selling PAYC on 2023-03-31 00:00:00\n", - "Selling PNC on 2023-03-31 00:00:00\n", - "Selling NOW on 2023-03-31 00:00:00\n", - "Selling IDXX on 2023-03-31 00:00:00\n", - "Selling NTRS on 2023-03-31 00:00:00\n", - "Selling ENPH on 2023-03-31 00:00:00\n", - "Selling GOOGL on 2023-03-31 00:00:00\n", - "Selling INTU on 2023-03-31 00:00:00\n", - "Selling ADBE on 2023-03-31 00:00:00\n", - "Selling SYF on 2023-03-31 00:00:00\n", - "Selling CFG on 2023-03-31 00:00:00\n", - "Selling ABNB on 2023-03-31 00:00:00\n", - "Selling GOOG on 2023-03-31 00:00:00\n", - "Selling AMAT on 2023-03-31 00:00:00\n", - "Selling EPAM on 2023-03-31 00:00:00\n", - "Selling SWK on 2023-03-31 00:00:00\n", - "Selling F on 2023-03-31 00:00:00\n", - "Selling BXP on 2023-03-31 00:00:00\n", - "Selling LRCX on 2023-03-31 00:00:00\n", - "Selling TROW on 2023-03-31 00:00:00\n", - "Selling URI on 2023-03-31 00:00:00\n", - "Selling RCL on 2023-03-31 00:00:00\n", - "Selling USB on 2023-03-31 00:00:00\n", - "Selling AMZN on 2023-03-31 00:00:00\n", - "Selling KKR on 2023-03-31 00:00:00\n", - "Selling PARA on 2023-03-31 00:00:00\n", - "Selling FITB on 2023-03-31 00:00:00\n", - "Selling APO on 2023-03-31 00:00:00\n", - "Selling KMX on 2023-03-31 00:00:00\n", - "Selling ZBRA on 2023-03-31 00:00:00\n", - "Selling ADSK on 2023-03-31 00:00:00\n", - "Selling AMD on 2023-03-31 00:00:00\n", - "Selling COF on 2023-03-31 00:00:00\n", - "Selling ALB on 2023-03-31 00:00:00\n", - "Selling WBD on 2023-03-31 00:00:00\n", - "Selling CRWD on 2023-03-31 00:00:00\n", - "Selling MPWR on 2023-03-31 00:00:00\n", - "Selling BX on 2023-03-31 00:00:00\n", - "Selling ON on 2023-03-31 00:00:00\n", - "Selling CCL on 2023-03-31 00:00:00\n", - "Selling META on 2023-03-31 00:00:00\n", - "Selling NCLH on 2023-03-31 00:00:00\n", - "Selling NVDA on 2023-03-31 00:00:00\n", - "Selling CZR on 2023-03-31 00:00:00\n", - "Selling TSLA on 2023-03-31 00:00:00\n", - "Selling KEY on 2023-03-31 00:00:00\n", - "Selling GNRC on 2023-03-31 00:00:00\n", - "Selling ALGN on 2023-03-31 00:00:00\n", - "Selling PLTR on 2023-03-31 00:00:00\n", - "Buying GIS on 2023-04-30 00:00:00\n", - "Buying CPB on 2023-04-30 00:00:00\n", - "Buying ABBV on 2023-04-30 00:00:00\n", - "Buying KDP on 2023-04-30 00:00:00\n", - "Buying CLX on 2023-04-30 00:00:00\n", - "Buying K on 2023-04-30 00:00:00\n", - "Buying PEP on 2023-04-30 00:00:00\n", - "Buying CHD on 2023-04-30 00:00:00\n", - "Buying HRL on 2023-04-30 00:00:00\n", - "Buying KR on 2023-04-30 00:00:00\n", - "Buying CAG on 2023-04-30 00:00:00\n", - "Buying DG on 2023-04-30 00:00:00\n", - "Buying WMT on 2023-04-30 00:00:00\n", - "Buying NEM on 2023-04-30 00:00:00\n", - "Buying TMUS on 2023-04-30 00:00:00\n", - "Buying WM on 2023-04-30 00:00:00\n", - "Buying KO on 2023-04-30 00:00:00\n", - "Buying SJM on 2023-04-30 00:00:00\n", - "Buying RSG on 2023-04-30 00:00:00\n", - "Buying LMT on 2023-04-30 00:00:00\n", - "Buying LLY on 2023-04-30 00:00:00\n", - "Buying NOC on 2023-04-30 00:00:00\n", - "Buying KMB on 2023-04-30 00:00:00\n", - "Buying ULTA on 2023-04-30 00:00:00\n", - "Buying UNH on 2023-04-30 00:00:00\n", - "Buying ED on 2023-04-30 00:00:00\n", - "Buying KHC on 2023-04-30 00:00:00\n", - "Buying CL on 2023-04-30 00:00:00\n", - "Buying MRK on 2023-04-30 00:00:00\n", - "Buying HSY on 2023-04-30 00:00:00\n", - "Buying DPZ on 2023-04-30 00:00:00\n", - "Buying MO on 2023-04-30 00:00:00\n", - "Buying PG on 2023-04-30 00:00:00\n", - "Buying HUM on 2023-04-30 00:00:00\n", - "Buying REGN on 2023-04-30 00:00:00\n", - "Buying LW on 2023-04-30 00:00:00\n", - "Buying MKC on 2023-04-30 00:00:00\n", - "Buying CME on 2023-04-30 00:00:00\n", - "Buying TAP on 2023-04-30 00:00:00\n", - "Buying JNJ on 2023-04-30 00:00:00\n", - "Buying GILD on 2023-04-30 00:00:00\n", - "Buying DGX on 2023-04-30 00:00:00\n", - "Buying BMY on 2023-04-30 00:00:00\n", - "Buying WEC on 2023-04-30 00:00:00\n", - "Buying AMGN on 2023-04-30 00:00:00\n", - "Buying MCK on 2023-04-30 00:00:00\n", - "Buying AZO on 2023-04-30 00:00:00\n", - "Buying INCY on 2023-04-30 00:00:00\n", - "Buying ATO on 2023-04-30 00:00:00\n", - "Selling EPAM on 2023-04-30 00:00:00\n", - "Selling NOW on 2023-04-30 00:00:00\n", - "Selling F on 2023-04-30 00:00:00\n", - "Selling NVDA on 2023-04-30 00:00:00\n", - "Selling KMX on 2023-04-30 00:00:00\n", - "Selling COF on 2023-04-30 00:00:00\n", - "Selling ADBE on 2023-04-30 00:00:00\n", - "Selling POOL on 2023-04-30 00:00:00\n", - "Selling ON on 2023-04-30 00:00:00\n", - "Selling GOOGL on 2023-04-30 00:00:00\n", - "Selling INTU on 2023-04-30 00:00:00\n", - "Selling CE on 2023-04-30 00:00:00\n", - "Selling IDXX on 2023-04-30 00:00:00\n", - "Selling KKR on 2023-04-30 00:00:00\n", - "Selling GOOG on 2023-04-30 00:00:00\n", - "Selling ADSK on 2023-04-30 00:00:00\n", - "Selling CBRE on 2023-04-30 00:00:00\n", - "Selling AMZN on 2023-04-30 00:00:00\n", - "Selling CRWD on 2023-04-30 00:00:00\n", - "Selling MSCI on 2023-04-30 00:00:00\n", - "Selling TROW on 2023-04-30 00:00:00\n", - "Selling NTRS on 2023-04-30 00:00:00\n", - "Selling GPN on 2023-04-30 00:00:00\n", - "Selling MTCH on 2023-04-30 00:00:00\n", - "Selling BXP on 2023-04-30 00:00:00\n", - "Selling PAYC on 2023-04-30 00:00:00\n", - "Selling CFG on 2023-04-30 00:00:00\n", - "Selling APO on 2023-04-30 00:00:00\n", - "Selling ALB on 2023-04-30 00:00:00\n", - "Selling BX on 2023-04-30 00:00:00\n", - "Selling SWK on 2023-04-30 00:00:00\n", - "Selling MHK on 2023-04-30 00:00:00\n", - "Selling FITB on 2023-04-30 00:00:00\n", - "Selling WBD on 2023-04-30 00:00:00\n", - "Selling HAS on 2023-04-30 00:00:00\n", - "Selling TFC on 2023-04-30 00:00:00\n", - "Selling TSLA on 2023-04-30 00:00:00\n", - "Selling PARA on 2023-04-30 00:00:00\n", - "Selling RCL on 2023-04-30 00:00:00\n", - "Selling ENPH on 2023-04-30 00:00:00\n", - "Selling CZR on 2023-04-30 00:00:00\n", - "Selling USB on 2023-04-30 00:00:00\n", - "Selling CCL on 2023-04-30 00:00:00\n", - "Selling ALGN on 2023-04-30 00:00:00\n", - "Selling PLTR on 2023-04-30 00:00:00\n", - "Selling NCLH on 2023-04-30 00:00:00\n", - "Selling GNRC on 2023-04-30 00:00:00\n", - "Selling KEY on 2023-04-30 00:00:00\n", - "Selling META on 2023-04-30 00:00:00\n", - "Buying NEM on 2023-05-31 00:00:00\n", - "Buying KDP on 2023-05-31 00:00:00\n", - "Buying ULTA on 2023-05-31 00:00:00\n", - "Buying K on 2023-05-31 00:00:00\n", - "Buying PEP on 2023-05-31 00:00:00\n", - "Buying ABBV on 2023-05-31 00:00:00\n", - "Buying TMUS on 2023-05-31 00:00:00\n", - "Buying GIS on 2023-05-31 00:00:00\n", - "Buying CLX on 2023-05-31 00:00:00\n", - "Buying CPB on 2023-05-31 00:00:00\n", - "Buying TAP on 2023-05-31 00:00:00\n", - "Buying KR on 2023-05-31 00:00:00\n", - "Buying ED on 2023-05-31 00:00:00\n", - "Buying ATO on 2023-05-31 00:00:00\n", - "Buying SJM on 2023-05-31 00:00:00\n", - "Buying KHC on 2023-05-31 00:00:00\n", - "Buying HSY on 2023-05-31 00:00:00\n", - "Buying JNJ on 2023-05-31 00:00:00\n", - "Buying AEP on 2023-05-31 00:00:00\n", - "Buying MRK on 2023-05-31 00:00:00\n", - "Buying LLY on 2023-05-31 00:00:00\n", - "Buying EXC on 2023-05-31 00:00:00\n", - "Buying WEC on 2023-05-31 00:00:00\n", - "Buying WMT on 2023-05-31 00:00:00\n", - "Buying CHD on 2023-05-31 00:00:00\n", - "Buying KO on 2023-05-31 00:00:00\n", - "Buying DG on 2023-05-31 00:00:00\n", - "Buying CAG on 2023-05-31 00:00:00\n", - "Buying PG on 2023-05-31 00:00:00\n", - "Buying XEL on 2023-05-31 00:00:00\n", - "Buying DPZ on 2023-05-31 00:00:00\n", - "Buying KMB on 2023-05-31 00:00:00\n", - "Buying BMY on 2023-05-31 00:00:00\n", - "Buying SO on 2023-05-31 00:00:00\n", - "Buying DTE on 2023-05-31 00:00:00\n", - "Buying WM on 2023-05-31 00:00:00\n", - "Buying MDLZ on 2023-05-31 00:00:00\n", - "Buying PFE on 2023-05-31 00:00:00\n", - "Buying MKC on 2023-05-31 00:00:00\n", - "Buying CL on 2023-05-31 00:00:00\n", - "Buying HRL on 2023-05-31 00:00:00\n", - "Buying CMG on 2023-05-31 00:00:00\n", - "Buying CMS on 2023-05-31 00:00:00\n", - "Buying AWK on 2023-05-31 00:00:00\n", - "Buying DUK on 2023-05-31 00:00:00\n", - "Buying ES on 2023-05-31 00:00:00\n", - "Buying MCK on 2023-05-31 00:00:00\n", - "Buying MO on 2023-05-31 00:00:00\n", - "Buying BSX on 2023-05-31 00:00:00\n", - "Selling DFS on 2023-05-31 00:00:00\n", - "Selling ZBRA on 2023-05-31 00:00:00\n", - "Selling COF on 2023-05-31 00:00:00\n", - "Selling URI on 2023-05-31 00:00:00\n", - "Selling ADBE on 2023-05-31 00:00:00\n", - "Selling KMX on 2023-05-31 00:00:00\n", - "Selling LYV on 2023-05-31 00:00:00\n", - "Selling RJF on 2023-05-31 00:00:00\n", - "Selling RCL on 2023-05-31 00:00:00\n", - "Selling MET on 2023-05-31 00:00:00\n", - "Selling GM on 2023-05-31 00:00:00\n", - "Selling PFG on 2023-05-31 00:00:00\n", - "Selling META on 2023-05-31 00:00:00\n", - "Selling APA on 2023-05-31 00:00:00\n", - "Selling STT on 2023-05-31 00:00:00\n", - "Selling STLD on 2023-05-31 00:00:00\n", - "Selling ENPH on 2023-05-31 00:00:00\n", - "Selling ANET on 2023-05-31 00:00:00\n", - "Selling FCX on 2023-05-31 00:00:00\n", - "Selling NCLH on 2023-05-31 00:00:00\n", - "Selling HAL on 2023-05-31 00:00:00\n", - "Selling PRU on 2023-05-31 00:00:00\n", - "Selling KKR on 2023-05-31 00:00:00\n", - "Selling KLAC on 2023-05-31 00:00:00\n", - "Selling EQT on 2023-05-31 00:00:00\n", - "Selling SMCI on 2023-05-31 00:00:00\n", - "Selling CE on 2023-05-31 00:00:00\n", - "Selling BX on 2023-05-31 00:00:00\n", - "Selling WBD on 2023-05-31 00:00:00\n", - "Selling NVDA on 2023-05-31 00:00:00\n", - "Selling GPN on 2023-05-31 00:00:00\n", - "Selling NTRS on 2023-05-31 00:00:00\n", - "Selling FIS on 2023-05-31 00:00:00\n", - "Selling AMP on 2023-05-31 00:00:00\n", - "Selling AIG on 2023-05-31 00:00:00\n", - "Selling MTB on 2023-05-31 00:00:00\n", - "Selling CCL on 2023-05-31 00:00:00\n", - "Selling HBAN on 2023-05-31 00:00:00\n", - "Selling RF on 2023-05-31 00:00:00\n", - "Selling TSLA on 2023-05-31 00:00:00\n", - "Selling APO on 2023-05-31 00:00:00\n", - "Selling SCHW on 2023-05-31 00:00:00\n", - "Selling PARA on 2023-05-31 00:00:00\n", - "Selling CFG on 2023-05-31 00:00:00\n", - "Selling CZR on 2023-05-31 00:00:00\n", - "Selling FITB on 2023-05-31 00:00:00\n", - "Selling TFC on 2023-05-31 00:00:00\n", - "Selling USB on 2023-05-31 00:00:00\n", - "Selling KEY on 2023-05-31 00:00:00\n", - "Buying ABBV on 2023-06-30 00:00:00\n", - "Buying TAP on 2023-06-30 00:00:00\n", - "Buying KDP on 2023-06-30 00:00:00\n", - "Buying ATO on 2023-06-30 00:00:00\n", - "Buying GIS on 2023-06-30 00:00:00\n", - "Buying TMUS on 2023-06-30 00:00:00\n", - "Buying PCG on 2023-06-30 00:00:00\n", - "Buying SJM on 2023-06-30 00:00:00\n", - "Buying ED on 2023-06-30 00:00:00\n", - "Buying PODD on 2023-06-30 00:00:00\n", - "Buying K on 2023-06-30 00:00:00\n", - "Buying DGX on 2023-06-30 00:00:00\n", - "Buying CLX on 2023-06-30 00:00:00\n", - "Buying NI on 2023-06-30 00:00:00\n", - "Buying FE on 2023-06-30 00:00:00\n", - "Buying JNJ on 2023-06-30 00:00:00\n", - "Buying PEP on 2023-06-30 00:00:00\n", - "Buying XEL on 2023-06-30 00:00:00\n", - "Buying CAG on 2023-06-30 00:00:00\n", - "Buying MRK on 2023-06-30 00:00:00\n", - "Buying MCK on 2023-06-30 00:00:00\n", - "Buying EIX on 2023-06-30 00:00:00\n", - "Buying DTE on 2023-06-30 00:00:00\n", - "Buying EXC on 2023-06-30 00:00:00\n", - "Buying SO on 2023-06-30 00:00:00\n", - "Buying AEP on 2023-06-30 00:00:00\n", - "Buying EVRG on 2023-06-30 00:00:00\n", - "Buying KHC on 2023-06-30 00:00:00\n", - "Buying BMY on 2023-06-30 00:00:00\n", - "Buying CMS on 2023-06-30 00:00:00\n", - "Buying KMB on 2023-06-30 00:00:00\n", - "Buying WEC on 2023-06-30 00:00:00\n", - "Buying COR on 2023-06-30 00:00:00\n", - "Buying AEE on 2023-06-30 00:00:00\n", - "Buying DUK on 2023-06-30 00:00:00\n", - "Buying ES on 2023-06-30 00:00:00\n", - "Buying HSY on 2023-06-30 00:00:00\n", - "Buying LNT on 2023-06-30 00:00:00\n", - "Buying CMG on 2023-06-30 00:00:00\n", - "Buying WM on 2023-06-30 00:00:00\n", - "Buying EG on 2023-06-30 00:00:00\n", - "Buying PEG on 2023-06-30 00:00:00\n", - "Buying PNW on 2023-06-30 00:00:00\n", - "Buying MKC on 2023-06-30 00:00:00\n", - "Buying AWK on 2023-06-30 00:00:00\n", - "Buying CME on 2023-06-30 00:00:00\n", - "Buying MDLZ on 2023-06-30 00:00:00\n", - "Buying BSX on 2023-06-30 00:00:00\n", - "Buying CPB on 2023-06-30 00:00:00\n", - "Selling CDNS on 2023-06-30 00:00:00\n", - "Selling MHK on 2023-06-30 00:00:00\n", - "Selling HAL on 2023-06-30 00:00:00\n", - "Selling SWKS on 2023-06-30 00:00:00\n", - "Selling SWK on 2023-06-30 00:00:00\n", - "Selling NTRS on 2023-06-30 00:00:00\n", - "Selling MPWR on 2023-06-30 00:00:00\n", - "Selling NOW on 2023-06-30 00:00:00\n", - "Selling GNRC on 2023-06-30 00:00:00\n", - "Selling MGM on 2023-06-30 00:00:00\n", - "Selling HPE on 2023-06-30 00:00:00\n", - "Selling CHTR on 2023-06-30 00:00:00\n", - "Selling GM on 2023-06-30 00:00:00\n", - "Selling AMD on 2023-06-30 00:00:00\n", - "Selling AVGO on 2023-06-30 00:00:00\n", - "Selling BX on 2023-06-30 00:00:00\n", - "Selling APO on 2023-06-30 00:00:00\n", - "Selling MTB on 2023-06-30 00:00:00\n", - "Selling RF on 2023-06-30 00:00:00\n", - "Selling EXPE on 2023-06-30 00:00:00\n", - "Selling AMP on 2023-06-30 00:00:00\n", - "Selling FITB on 2023-06-30 00:00:00\n", - "Selling MTCH on 2023-06-30 00:00:00\n", - "Selling PLTR on 2023-06-30 00:00:00\n", - "Selling CE on 2023-06-30 00:00:00\n", - "Selling DAY on 2023-06-30 00:00:00\n", - "Selling META on 2023-06-30 00:00:00\n", - "Selling HBAN on 2023-06-30 00:00:00\n", - "Selling MSCI on 2023-06-30 00:00:00\n", - "Selling KKR on 2023-06-30 00:00:00\n", - "Selling EL on 2023-06-30 00:00:00\n", - "Selling FCX on 2023-06-30 00:00:00\n", - "Selling CFG on 2023-06-30 00:00:00\n", - "Selling ZBRA on 2023-06-30 00:00:00\n", - "Selling LYV on 2023-06-30 00:00:00\n", - "Selling ENPH on 2023-06-30 00:00:00\n", - "Selling USB on 2023-06-30 00:00:00\n", - "Selling WBD on 2023-06-30 00:00:00\n", - "Selling ADBE on 2023-06-30 00:00:00\n", - "Selling NCLH on 2023-06-30 00:00:00\n", - "Selling KLAC on 2023-06-30 00:00:00\n", - "Selling TSLA on 2023-06-30 00:00:00\n", - "Selling ANET on 2023-06-30 00:00:00\n", - "Selling NVDA on 2023-06-30 00:00:00\n", - "Selling TFC on 2023-06-30 00:00:00\n", - "Selling PARA on 2023-06-30 00:00:00\n", - "Selling CZR on 2023-06-30 00:00:00\n", - "Selling KEY on 2023-06-30 00:00:00\n", - "Selling CCL on 2023-06-30 00:00:00\n", - "Buying ATO on 2023-07-31 00:00:00\n", - "Buying TMUS on 2023-07-31 00:00:00\n", - "Buying ABBV on 2023-07-31 00:00:00\n", - "Buying SO on 2023-07-31 00:00:00\n", - "Buying GIS on 2023-07-31 00:00:00\n", - "Buying MCK on 2023-07-31 00:00:00\n", - "Buying JNJ on 2023-07-31 00:00:00\n", - "Buying PGR on 2023-07-31 00:00:00\n", - "Buying ED on 2023-07-31 00:00:00\n", - "Buying D on 2023-07-31 00:00:00\n", - "Buying SJM on 2023-07-31 00:00:00\n", - "Buying NI on 2023-07-31 00:00:00\n", - "Buying ALL on 2023-07-31 00:00:00\n", - "Buying BSX on 2023-07-31 00:00:00\n", - "Buying COR on 2023-07-31 00:00:00\n", - "Buying MRK on 2023-07-31 00:00:00\n", - "Buying RSG on 2023-07-31 00:00:00\n", - "Buying DG on 2023-07-31 00:00:00\n", - "Buying XEL on 2023-07-31 00:00:00\n", - "Buying PODD on 2023-07-31 00:00:00\n", - "Buying WBA on 2023-07-31 00:00:00\n", - "Buying MKC on 2023-07-31 00:00:00\n", - "Buying CMS on 2023-07-31 00:00:00\n", - "Buying WM on 2023-07-31 00:00:00\n", - "Buying HSY on 2023-07-31 00:00:00\n", - "Buying KDP on 2023-07-31 00:00:00\n", - "Buying K on 2023-07-31 00:00:00\n", - "Buying PCG on 2023-07-31 00:00:00\n", - "Buying AEP on 2023-07-31 00:00:00\n", - "Buying KR on 2023-07-31 00:00:00\n", - "Buying ETR on 2023-07-31 00:00:00\n", - "Buying LNT on 2023-07-31 00:00:00\n", - "Buying CAG on 2023-07-31 00:00:00\n", - "Buying EG on 2023-07-31 00:00:00\n", - "Buying ES on 2023-07-31 00:00:00\n", - "Buying PNW on 2023-07-31 00:00:00\n", - "Buying EIX on 2023-07-31 00:00:00\n", - "Buying MSI on 2023-07-31 00:00:00\n", - "Buying DTE on 2023-07-31 00:00:00\n", - "Buying VST on 2023-07-31 00:00:00\n", - "Buying WEC on 2023-07-31 00:00:00\n", - "Buying MDT on 2023-07-31 00:00:00\n", - "Buying DUK on 2023-07-31 00:00:00\n", - "Buying AEE on 2023-07-31 00:00:00\n", - "Buying INCY on 2023-07-31 00:00:00\n", - "Buying CL on 2023-07-31 00:00:00\n", - "Buying EXC on 2023-07-31 00:00:00\n", - "Buying BMY on 2023-07-31 00:00:00\n", - "Buying CNP on 2023-07-31 00:00:00\n", - "Selling GEN on 2023-07-31 00:00:00\n", - "Selling NCLH on 2023-07-31 00:00:00\n", - "Selling CE on 2023-07-31 00:00:00\n", - "Selling APTV on 2023-07-31 00:00:00\n", - "Selling LULU on 2023-07-31 00:00:00\n", - "Selling AMD on 2023-07-31 00:00:00\n", - "Selling NOW on 2023-07-31 00:00:00\n", - "Selling GNRC on 2023-07-31 00:00:00\n", - "Selling DLR on 2023-07-31 00:00:00\n", - "Selling APO on 2023-07-31 00:00:00\n", - "Selling MGM on 2023-07-31 00:00:00\n", - "Selling DFS on 2023-07-31 00:00:00\n", - "Selling EBAY on 2023-07-31 00:00:00\n", - "Selling ABNB on 2023-07-31 00:00:00\n", - "Selling BWA on 2023-07-31 00:00:00\n", - "Selling HBAN on 2023-07-31 00:00:00\n", - "Selling HPE on 2023-07-31 00:00:00\n", - "Selling SWKS on 2023-07-31 00:00:00\n", - "Selling LYV on 2023-07-31 00:00:00\n", - "Selling BX on 2023-07-31 00:00:00\n", - "Selling STLD on 2023-07-31 00:00:00\n", - "Selling WBD on 2023-07-31 00:00:00\n", - "Selling AMAT on 2023-07-31 00:00:00\n", - "Selling DAY on 2023-07-31 00:00:00\n", - "Selling MCHP on 2023-07-31 00:00:00\n", - "Selling EL on 2023-07-31 00:00:00\n", - "Selling ANET on 2023-07-31 00:00:00\n", - "Selling AVGO on 2023-07-31 00:00:00\n", - "Selling ZBRA on 2023-07-31 00:00:00\n", - "Selling NXPI on 2023-07-31 00:00:00\n", - "Selling CFG on 2023-07-31 00:00:00\n", - "Selling QCOM on 2023-07-31 00:00:00\n", - "Selling KLAC on 2023-07-31 00:00:00\n", - "Selling ON on 2023-07-31 00:00:00\n", - "Selling SMCI on 2023-07-31 00:00:00\n", - "Selling FCX on 2023-07-31 00:00:00\n", - "Selling URI on 2023-07-31 00:00:00\n", - "Selling ADBE on 2023-07-31 00:00:00\n", - "Selling MPWR on 2023-07-31 00:00:00\n", - "Selling KKR on 2023-07-31 00:00:00\n", - "Selling PLTR on 2023-07-31 00:00:00\n", - "Selling TER on 2023-07-31 00:00:00\n", - "Selling TSLA on 2023-07-31 00:00:00\n", - "Selling KEY on 2023-07-31 00:00:00\n", - "Selling TFC on 2023-07-31 00:00:00\n", - "Selling PARA on 2023-07-31 00:00:00\n", - "Selling CZR on 2023-07-31 00:00:00\n", - "Selling NVDA on 2023-07-31 00:00:00\n", - "Selling CCL on 2023-07-31 00:00:00\n", - "Buying ERIE on 2023-08-31 00:00:00\n", - "Buying PGR on 2023-08-31 00:00:00\n", - "Buying AIZ on 2023-08-31 00:00:00\n", - "Buying JNJ on 2023-08-31 00:00:00\n", - "Buying ABBV on 2023-08-31 00:00:00\n", - "Buying LLY on 2023-08-31 00:00:00\n", - "Buying TSN on 2023-08-31 00:00:00\n", - "Buying HIG on 2023-08-31 00:00:00\n", - "Buying TPL on 2023-08-31 00:00:00\n", - "Buying AFL on 2023-08-31 00:00:00\n", - "Buying GIS on 2023-08-31 00:00:00\n", - "Buying IP on 2023-08-31 00:00:00\n", - "Buying LMT on 2023-08-31 00:00:00\n", - "Buying HUM on 2023-08-31 00:00:00\n", - "Buying HSIC on 2023-08-31 00:00:00\n", - "Buying CB on 2023-08-31 00:00:00\n", - "Buying CBOE on 2023-08-31 00:00:00\n", - "Buying INCY on 2023-08-31 00:00:00\n", - "Buying KDP on 2023-08-31 00:00:00\n", - "Buying BG on 2023-08-31 00:00:00\n", - "Buying PNW on 2023-08-31 00:00:00\n", - "Buying CL on 2023-08-31 00:00:00\n", - "Buying SO on 2023-08-31 00:00:00\n", - "Buying CLX on 2023-08-31 00:00:00\n", - "Buying HRL on 2023-08-31 00:00:00\n", - "Buying DUK on 2023-08-31 00:00:00\n", - "Buying KR on 2023-08-31 00:00:00\n", - "Buying MCK on 2023-08-31 00:00:00\n", - "Buying KVUE on 2023-08-31 00:00:00\n", - "Buying MPC on 2023-08-31 00:00:00\n", - "Buying CTVA on 2023-08-31 00:00:00\n", - "Buying PSX on 2023-08-31 00:00:00\n", - "Buying EQT on 2023-08-31 00:00:00\n", - "Buying NOC on 2023-08-31 00:00:00\n", - "Buying SJM on 2023-08-31 00:00:00\n", - "Buying FANG on 2023-08-31 00:00:00\n", - "Buying TGT on 2023-08-31 00:00:00\n", - "Buying KMB on 2023-08-31 00:00:00\n", - "Buying L on 2023-08-31 00:00:00\n", - "Buying REGN on 2023-08-31 00:00:00\n", - "Buying WRB on 2023-08-31 00:00:00\n", - "Buying WBA on 2023-08-31 00:00:00\n", - "Buying ATO on 2023-08-31 00:00:00\n", - "Buying AON on 2023-08-31 00:00:00\n", - "Buying WM on 2023-08-31 00:00:00\n", - "Buying CMS on 2023-08-31 00:00:00\n", - "Buying DGX on 2023-08-31 00:00:00\n", - "Buying CNC on 2023-08-31 00:00:00\n", - "Buying TRGP on 2023-08-31 00:00:00\n", - "Selling BEN on 2023-08-31 00:00:00\n", - "Selling SWKS on 2023-08-31 00:00:00\n", - "Selling QCOM on 2023-08-31 00:00:00\n", - "Selling TXN on 2023-08-31 00:00:00\n", - "Selling INTU on 2023-08-31 00:00:00\n", - "Selling CDNS on 2023-08-31 00:00:00\n", - "Selling EPAM on 2023-08-31 00:00:00\n", - "Selling MGM on 2023-08-31 00:00:00\n", - "Selling KKR on 2023-08-31 00:00:00\n", - "Selling ADI on 2023-08-31 00:00:00\n", - "Selling MSFT on 2023-08-31 00:00:00\n", - "Selling WDAY on 2023-08-31 00:00:00\n", - "Selling ADSK on 2023-08-31 00:00:00\n", - "Selling BX on 2023-08-31 00:00:00\n", - "Selling ORCL on 2023-08-31 00:00:00\n", - "Selling BLDR on 2023-08-31 00:00:00\n", - "Selling DAY on 2023-08-31 00:00:00\n", - "Selling IFF on 2023-08-31 00:00:00\n", - "Selling AMAT on 2023-08-31 00:00:00\n", - "Selling KLAC on 2023-08-31 00:00:00\n", - "Selling AVGO on 2023-08-31 00:00:00\n", - "Selling ANSS on 2023-08-31 00:00:00\n", - "Selling META on 2023-08-31 00:00:00\n", - "Selling ADBE on 2023-08-31 00:00:00\n", - "Selling CZR on 2023-08-31 00:00:00\n", - "Selling ENPH on 2023-08-31 00:00:00\n", - "Selling NXPI on 2023-08-31 00:00:00\n", - "Selling NOW on 2023-08-31 00:00:00\n", - "Selling ABNB on 2023-08-31 00:00:00\n", - "Selling NCLH on 2023-08-31 00:00:00\n", - "Selling PYPL on 2023-08-31 00:00:00\n", - "Selling MCHP on 2023-08-31 00:00:00\n", - "Selling FTNT on 2023-08-31 00:00:00\n", - "Selling TER on 2023-08-31 00:00:00\n", - "Selling PANW on 2023-08-31 00:00:00\n", - "Selling FSLR on 2023-08-31 00:00:00\n", - "Selling ON on 2023-08-31 00:00:00\n", - "Selling NFLX on 2023-08-31 00:00:00\n", - "Selling INTC on 2023-08-31 00:00:00\n", - "Selling NVDA on 2023-08-31 00:00:00\n", - "Selling PAYC on 2023-08-31 00:00:00\n", - "Selling GNRC on 2023-08-31 00:00:00\n", - "Selling CRWD on 2023-08-31 00:00:00\n", - "Selling AMD on 2023-08-31 00:00:00\n", - "Selling MPWR on 2023-08-31 00:00:00\n", - "Selling CCL on 2023-08-31 00:00:00\n", - "Selling TSLA on 2023-08-31 00:00:00\n", - "Selling SMCI on 2023-08-31 00:00:00\n", - "Selling PLTR on 2023-08-31 00:00:00\n", - "Buying PGR on 2023-09-30 00:00:00\n", - "Buying ERIE on 2023-09-30 00:00:00\n", - "Buying HUM on 2023-09-30 00:00:00\n", - "Buying CNC on 2023-09-30 00:00:00\n", - "Buying SJM on 2023-09-30 00:00:00\n", - "Buying AIZ on 2023-09-30 00:00:00\n", - "Buying COR on 2023-09-30 00:00:00\n", - "Buying JNJ on 2023-09-30 00:00:00\n", - "Buying MCK on 2023-09-30 00:00:00\n", - "Buying CPB on 2023-09-30 00:00:00\n", - "Buying CBOE on 2023-09-30 00:00:00\n", - "Buying TSN on 2023-09-30 00:00:00\n", - "Buying JNPR on 2023-09-30 00:00:00\n", - "Buying HRL on 2023-09-30 00:00:00\n", - "Buying CB on 2023-09-30 00:00:00\n", - "Buying KHC on 2023-09-30 00:00:00\n", - "Buying LLY on 2023-09-30 00:00:00\n", - "Buying AFL on 2023-09-30 00:00:00\n", - "Buying AON on 2023-09-30 00:00:00\n", - "Buying GIS on 2023-09-30 00:00:00\n", - "Buying CAG on 2023-09-30 00:00:00\n", - "Buying HSIC on 2023-09-30 00:00:00\n", - "Buying KMB on 2023-09-30 00:00:00\n", - "Buying HIG on 2023-09-30 00:00:00\n", - "Buying WM on 2023-09-30 00:00:00\n", - "Buying FOXA on 2023-09-30 00:00:00\n", - "Buying PNW on 2023-09-30 00:00:00\n", - "Buying UNH on 2023-09-30 00:00:00\n", - "Buying ABBV on 2023-09-30 00:00:00\n", - "Buying CL on 2023-09-30 00:00:00\n", - "Buying NOC on 2023-09-30 00:00:00\n", - "Buying RSG on 2023-09-30 00:00:00\n", - "Buying ELV on 2023-09-30 00:00:00\n", - "Buying FOX on 2023-09-30 00:00:00\n", - "Buying TRV on 2023-09-30 00:00:00\n", - "Buying TPL on 2023-09-30 00:00:00\n", - "Buying KDP on 2023-09-30 00:00:00\n", - "Buying RTX on 2023-09-30 00:00:00\n", - "Buying LH on 2023-09-30 00:00:00\n", - "Buying CAH on 2023-09-30 00:00:00\n", - "Buying KR on 2023-09-30 00:00:00\n", - "Buying VST on 2023-09-30 00:00:00\n", - "Buying AMGN on 2023-09-30 00:00:00\n", - "Buying CTVA on 2023-09-30 00:00:00\n", - "Buying INCY on 2023-09-30 00:00:00\n", - "Buying DUK on 2023-09-30 00:00:00\n", - "Buying MPC on 2023-09-30 00:00:00\n", - "Buying T on 2023-09-30 00:00:00\n", - "Buying DTE on 2023-09-30 00:00:00\n", - "Selling CARR on 2023-09-30 00:00:00\n", - "Selling URI on 2023-09-30 00:00:00\n", - "Selling ZBRA on 2023-09-30 00:00:00\n", - "Selling PHM on 2023-09-30 00:00:00\n", - "Selling GOOGL on 2023-09-30 00:00:00\n", - "Selling ORCL on 2023-09-30 00:00:00\n", - "Selling FCX on 2023-09-30 00:00:00\n", - "Selling IDXX on 2023-09-30 00:00:00\n", - "Selling GOOG on 2023-09-30 00:00:00\n", - "Selling LRCX on 2023-09-30 00:00:00\n", - "Selling ABNB on 2023-09-30 00:00:00\n", - "Selling EPAM on 2023-09-30 00:00:00\n", - "Selling CCL on 2023-09-30 00:00:00\n", - "Selling SWKS on 2023-09-30 00:00:00\n", - "Selling INTU on 2023-09-30 00:00:00\n", - "Selling TROW on 2023-09-30 00:00:00\n", - "Selling BEN on 2023-09-30 00:00:00\n", - "Selling TFC on 2023-09-30 00:00:00\n", - "Selling FTNT on 2023-09-30 00:00:00\n", - "Selling ANSS on 2023-09-30 00:00:00\n", - "Selling PANW on 2023-09-30 00:00:00\n", - "Selling UBER on 2023-09-30 00:00:00\n", - "Selling AVGO on 2023-09-30 00:00:00\n", - "Selling AMZN on 2023-09-30 00:00:00\n", - "Selling JBL on 2023-09-30 00:00:00\n", - "Selling KLAC on 2023-09-30 00:00:00\n", - "Selling NXPI on 2023-09-30 00:00:00\n", - "Selling TER on 2023-09-30 00:00:00\n", - "Selling AMAT on 2023-09-30 00:00:00\n", - "Selling CZR on 2023-09-30 00:00:00\n", - "Selling NOW on 2023-09-30 00:00:00\n", - "Selling CRWD on 2023-09-30 00:00:00\n", - "Selling FSLR on 2023-09-30 00:00:00\n", - "Selling NFLX on 2023-09-30 00:00:00\n", - "Selling META on 2023-09-30 00:00:00\n", - "Selling ADBE on 2023-09-30 00:00:00\n", - "Selling MCHP on 2023-09-30 00:00:00\n", - "Selling INTC on 2023-09-30 00:00:00\n", - "Selling PYPL on 2023-09-30 00:00:00\n", - "Selling GNRC on 2023-09-30 00:00:00\n", - "Selling NVDA on 2023-09-30 00:00:00\n", - "Selling BLDR on 2023-09-30 00:00:00\n", - "Selling PAYC on 2023-09-30 00:00:00\n", - "Selling ON on 2023-09-30 00:00:00\n", - "Selling AMD on 2023-09-30 00:00:00\n", - "Selling MPWR on 2023-09-30 00:00:00\n", - "Selling TSLA on 2023-09-30 00:00:00\n", - "Selling SMCI on 2023-09-30 00:00:00\n", - "Selling PLTR on 2023-09-30 00:00:00\n", - "Buying SJM on 2023-10-31 00:00:00\n", - "Buying COR on 2023-10-31 00:00:00\n", - "Buying TPL on 2023-10-31 00:00:00\n", - "Buying CPB on 2023-10-31 00:00:00\n", - "Buying GIS on 2023-10-31 00:00:00\n", - "Buying LH on 2023-10-31 00:00:00\n", - "Buying CHD on 2023-10-31 00:00:00\n", - "Buying BAX on 2023-10-31 00:00:00\n", - "Buying XOM on 2023-10-31 00:00:00\n", - "Buying WM on 2023-10-31 00:00:00\n", - "Buying KMB on 2023-10-31 00:00:00\n", - "Buying K on 2023-10-31 00:00:00\n", - "Buying FMC on 2023-10-31 00:00:00\n", - "Buying TSN on 2023-10-31 00:00:00\n", - "Buying DGX on 2023-10-31 00:00:00\n", - "Buying PGR on 2023-10-31 00:00:00\n", - "Buying KHC on 2023-10-31 00:00:00\n", - "Buying CBOE on 2023-10-31 00:00:00\n", - "Buying KR on 2023-10-31 00:00:00\n", - "Buying CVX on 2023-10-31 00:00:00\n", - "Buying JNJ on 2023-10-31 00:00:00\n", - "Buying HUM on 2023-10-31 00:00:00\n", - "Buying HRL on 2023-10-31 00:00:00\n", - "Buying MCK on 2023-10-31 00:00:00\n", - "Buying UNH on 2023-10-31 00:00:00\n", - "Buying HSIC on 2023-10-31 00:00:00\n", - "Buying RSG on 2023-10-31 00:00:00\n", - "Buying RVTY on 2023-10-31 00:00:00\n", - "Buying DTE on 2023-10-31 00:00:00\n", - "Buying FANG on 2023-10-31 00:00:00\n", - "Buying INCY on 2023-10-31 00:00:00\n", - "Buying CMS on 2023-10-31 00:00:00\n", - "Buying CNC on 2023-10-31 00:00:00\n", - "Buying CL on 2023-10-31 00:00:00\n", - "Buying HAL on 2023-10-31 00:00:00\n", - "Buying APA on 2023-10-31 00:00:00\n", - "Buying DG on 2023-10-31 00:00:00\n", - "Buying PSX on 2023-10-31 00:00:00\n", - "Buying ABT on 2023-10-31 00:00:00\n", - "Buying PG on 2023-10-31 00:00:00\n", - "Buying WTW on 2023-10-31 00:00:00\n", - "Buying TRV on 2023-10-31 00:00:00\n", - "Buying AEE on 2023-10-31 00:00:00\n", - "Buying CAG on 2023-10-31 00:00:00\n", - "Buying CLX on 2023-10-31 00:00:00\n", - "Buying NOC on 2023-10-31 00:00:00\n", - "Buying CTVA on 2023-10-31 00:00:00\n", - "Buying EVRG on 2023-10-31 00:00:00\n", - "Buying BKR on 2023-10-31 00:00:00\n", - "Selling PAYC on 2023-10-31 00:00:00\n", - "Selling FCX on 2023-10-31 00:00:00\n", - "Selling RCL on 2023-10-31 00:00:00\n", - "Selling KKR on 2023-10-31 00:00:00\n", - "Selling KLAC on 2023-10-31 00:00:00\n", - "Selling BX on 2023-10-31 00:00:00\n", - "Selling APTV on 2023-10-31 00:00:00\n", - "Selling TER on 2023-10-31 00:00:00\n", - "Selling INTC on 2023-10-31 00:00:00\n", - "Selling ORCL on 2023-10-31 00:00:00\n", - "Selling CPRT on 2023-10-31 00:00:00\n", - "Selling SNPS on 2023-10-31 00:00:00\n", - "Selling MCHP on 2023-10-31 00:00:00\n", - "Selling IDXX on 2023-10-31 00:00:00\n", - "Selling NOW on 2023-10-31 00:00:00\n", - "Selling ANSS on 2023-10-31 00:00:00\n", - "Selling FSLR on 2023-10-31 00:00:00\n", - "Selling URI on 2023-10-31 00:00:00\n", - "Selling MKTX on 2023-10-31 00:00:00\n", - "Selling CARR on 2023-10-31 00:00:00\n", - "Selling INTU on 2023-10-31 00:00:00\n", - "Selling BXP on 2023-10-31 00:00:00\n", - "Selling CDNS on 2023-10-31 00:00:00\n", - "Selling GOOGL on 2023-10-31 00:00:00\n", - "Selling PYPL on 2023-10-31 00:00:00\n", - "Selling AVGO on 2023-10-31 00:00:00\n", - "Selling GOOG on 2023-10-31 00:00:00\n", - "Selling ABNB on 2023-10-31 00:00:00\n", - "Selling CZR on 2023-10-31 00:00:00\n", - "Selling ADBE on 2023-10-31 00:00:00\n", - "Selling CCL on 2023-10-31 00:00:00\n", - "Selling ALB on 2023-10-31 00:00:00\n", - "Selling ANET on 2023-10-31 00:00:00\n", - "Selling JBL on 2023-10-31 00:00:00\n", - "Selling META on 2023-10-31 00:00:00\n", - "Selling EPAM on 2023-10-31 00:00:00\n", - "Selling PANW on 2023-10-31 00:00:00\n", - "Selling UBER on 2023-10-31 00:00:00\n", - "Selling CRWD on 2023-10-31 00:00:00\n", - "Selling AMZN on 2023-10-31 00:00:00\n", - "Selling ENPH on 2023-10-31 00:00:00\n", - "Selling NVDA on 2023-10-31 00:00:00\n", - "Selling ALGN on 2023-10-31 00:00:00\n", - "Selling TSLA on 2023-10-31 00:00:00\n", - "Selling AMD on 2023-10-31 00:00:00\n", - "Selling BLDR on 2023-10-31 00:00:00\n", - "Selling MPWR on 2023-10-31 00:00:00\n", - "Selling PLTR on 2023-10-31 00:00:00\n", - "Selling SMCI on 2023-10-31 00:00:00\n", - "Buying TPL on 2023-11-30 00:00:00\n", - "Buying MCK on 2023-11-30 00:00:00\n", - "Buying HUM on 2023-11-30 00:00:00\n", - "Buying COR on 2023-11-30 00:00:00\n", - "Buying CHD on 2023-11-30 00:00:00\n", - "Buying SJM on 2023-11-30 00:00:00\n", - "Buying WTW on 2023-11-30 00:00:00\n", - "Buying GIS on 2023-11-30 00:00:00\n", - "Buying CPB on 2023-11-30 00:00:00\n", - "Buying UNH on 2023-11-30 00:00:00\n", - "Buying CBOE on 2023-11-30 00:00:00\n", - "Buying MRK on 2023-11-30 00:00:00\n", - "Buying PGR on 2023-11-30 00:00:00\n", - "Buying CME on 2023-11-30 00:00:00\n", - "Buying KR on 2023-11-30 00:00:00\n", - "Buying WM on 2023-11-30 00:00:00\n", - "Buying XOM on 2023-11-30 00:00:00\n", - "Buying KMB on 2023-11-30 00:00:00\n", - "Buying TRV on 2023-11-30 00:00:00\n", - "Buying K on 2023-11-30 00:00:00\n", - "Buying DGX on 2023-11-30 00:00:00\n", - "Buying PG on 2023-11-30 00:00:00\n", - "Buying CL on 2023-11-30 00:00:00\n", - "Buying HSIC on 2023-11-30 00:00:00\n", - "Buying CNC on 2023-11-30 00:00:00\n", - "Buying LH on 2023-11-30 00:00:00\n", - "Buying RSG on 2023-11-30 00:00:00\n", - "Buying NOC on 2023-11-30 00:00:00\n", - "Buying CVX on 2023-11-30 00:00:00\n", - "Buying WMT on 2023-11-30 00:00:00\n", - "Buying ORLY on 2023-11-30 00:00:00\n", - "Buying BG on 2023-11-30 00:00:00\n", - "Buying RTX on 2023-11-30 00:00:00\n", - "Buying GD on 2023-11-30 00:00:00\n", - "Buying CAH on 2023-11-30 00:00:00\n", - "Buying BWA on 2023-11-30 00:00:00\n", - "Buying ABT on 2023-11-30 00:00:00\n", - "Buying CI on 2023-11-30 00:00:00\n", - "Buying APA on 2023-11-30 00:00:00\n", - "Buying FANG on 2023-11-30 00:00:00\n", - "Buying LMT on 2023-11-30 00:00:00\n", - "Buying HRL on 2023-11-30 00:00:00\n", - "Buying HAL on 2023-11-30 00:00:00\n", - "Buying DG on 2023-11-30 00:00:00\n", - "Buying ADM on 2023-11-30 00:00:00\n", - "Buying OXY on 2023-11-30 00:00:00\n", - "Buying CB on 2023-11-30 00:00:00\n", - "Buying ABBV on 2023-11-30 00:00:00\n", - "Buying JNJ on 2023-11-30 00:00:00\n", - "Selling KLAC on 2023-11-30 00:00:00\n", - "Selling PLD on 2023-11-30 00:00:00\n", - "Selling IVZ on 2023-11-30 00:00:00\n", - "Selling PWR on 2023-11-30 00:00:00\n", - "Selling TFC on 2023-11-30 00:00:00\n", - "Selling MHK on 2023-11-30 00:00:00\n", - "Selling ADBE on 2023-11-30 00:00:00\n", - "Selling DHI on 2023-11-30 00:00:00\n", - "Selling RF on 2023-11-30 00:00:00\n", - "Selling LEN on 2023-11-30 00:00:00\n", - "Selling NCLH on 2023-11-30 00:00:00\n", - "Selling CRWD on 2023-11-30 00:00:00\n", - "Selling NVDA on 2023-11-30 00:00:00\n", - "Selling DAY on 2023-11-30 00:00:00\n", - "Selling URI on 2023-11-30 00:00:00\n", - "Selling DOC on 2023-11-30 00:00:00\n", - "Selling KKR on 2023-11-30 00:00:00\n", - "Selling RCL on 2023-11-30 00:00:00\n", - "Selling AMZN on 2023-11-30 00:00:00\n", - "Selling USB on 2023-11-30 00:00:00\n", - "Selling PHM on 2023-11-30 00:00:00\n", - "Selling PYPL on 2023-11-30 00:00:00\n", - "Selling IDXX on 2023-11-30 00:00:00\n", - "Selling EXPE on 2023-11-30 00:00:00\n", - "Selling ABNB on 2023-11-30 00:00:00\n", - "Selling MGM on 2023-11-30 00:00:00\n", - "Selling KEY on 2023-11-30 00:00:00\n", - "Selling BX on 2023-11-30 00:00:00\n", - "Selling MCHP on 2023-11-30 00:00:00\n", - "Selling FSLR on 2023-11-30 00:00:00\n", - "Selling WBD on 2023-11-30 00:00:00\n", - "Selling CFG on 2023-11-30 00:00:00\n", - "Selling PARA on 2023-11-30 00:00:00\n", - "Selling AMD on 2023-11-30 00:00:00\n", - "Selling UBER on 2023-11-30 00:00:00\n", - "Selling EPAM on 2023-11-30 00:00:00\n", - "Selling GNRC on 2023-11-30 00:00:00\n", - "Selling ARE on 2023-11-30 00:00:00\n", - "Selling ALB on 2023-11-30 00:00:00\n", - "Selling BXP on 2023-11-30 00:00:00\n", - "Selling TSLA on 2023-11-30 00:00:00\n", - "Selling CCL on 2023-11-30 00:00:00\n", - "Selling CZR on 2023-11-30 00:00:00\n", - "Selling MPWR on 2023-11-30 00:00:00\n", - "Selling ALGN on 2023-11-30 00:00:00\n", - "Selling ENPH on 2023-11-30 00:00:00\n", - "Selling BLDR on 2023-11-30 00:00:00\n", - "Selling SMCI on 2023-11-30 00:00:00\n", - "Selling PLTR on 2023-11-30 00:00:00\n", - "Buying MCK on 2023-12-31 00:00:00\n", - "Buying WTW on 2023-12-31 00:00:00\n", - "Buying CHD on 2023-12-31 00:00:00\n", - "Buying PGR on 2023-12-31 00:00:00\n", - "Buying CPB on 2023-12-31 00:00:00\n", - "Buying ORLY on 2023-12-31 00:00:00\n", - "Buying CME on 2023-12-31 00:00:00\n", - "Buying CBOE on 2023-12-31 00:00:00\n", - "Buying COR on 2023-12-31 00:00:00\n", - "Buying MRK on 2023-12-31 00:00:00\n", - "Buying KR on 2023-12-31 00:00:00\n", - "Buying WM on 2023-12-31 00:00:00\n", - "Buying GIS on 2023-12-31 00:00:00\n", - "Buying UNH on 2023-12-31 00:00:00\n", - "Buying CL on 2023-12-31 00:00:00\n", - "Buying TRV on 2023-12-31 00:00:00\n", - "Buying DG on 2023-12-31 00:00:00\n", - "Buying LMT on 2023-12-31 00:00:00\n", - "Buying ABT on 2023-12-31 00:00:00\n", - "Buying HUM on 2023-12-31 00:00:00\n", - "Buying PG on 2023-12-31 00:00:00\n", - "Buying DGX on 2023-12-31 00:00:00\n", - "Buying RSG on 2023-12-31 00:00:00\n", - "Buying NOC on 2023-12-31 00:00:00\n", - "Buying BG on 2023-12-31 00:00:00\n", - "Buying KMB on 2023-12-31 00:00:00\n", - "Buying ACGL on 2023-12-31 00:00:00\n", - "Buying MCD on 2023-12-31 00:00:00\n", - "Buying WMT on 2023-12-31 00:00:00\n", - "Buying GD on 2023-12-31 00:00:00\n", - "Buying K on 2023-12-31 00:00:00\n", - "Buying XOM on 2023-12-31 00:00:00\n", - "Buying CB on 2023-12-31 00:00:00\n", - "Buying IBM on 2023-12-31 00:00:00\n", - "Buying BWA on 2023-12-31 00:00:00\n", - "Buying LH on 2023-12-31 00:00:00\n", - "Buying SJM on 2023-12-31 00:00:00\n", - "Buying PFE on 2023-12-31 00:00:00\n", - "Buying MOH on 2023-12-31 00:00:00\n", - "Buying DECK on 2023-12-31 00:00:00\n", - "Buying FAST on 2023-12-31 00:00:00\n", - "Buying CAH on 2023-12-31 00:00:00\n", - "Buying EG on 2023-12-31 00:00:00\n", - "Buying RTX on 2023-12-31 00:00:00\n", - "Buying HIG on 2023-12-31 00:00:00\n", - "Buying KO on 2023-12-31 00:00:00\n", - "Buying BKR on 2023-12-31 00:00:00\n", - "Buying ABBV on 2023-12-31 00:00:00\n", - "Buying SYY on 2023-12-31 00:00:00\n", - "Buying TPL on 2023-12-31 00:00:00\n", - "Selling HBAN on 2023-12-31 00:00:00\n", - "Selling KKR on 2023-12-31 00:00:00\n", - "Selling PLD on 2023-12-31 00:00:00\n", - "Selling UAL on 2023-12-31 00:00:00\n", - "Selling NVDA on 2023-12-31 00:00:00\n", - "Selling HAS on 2023-12-31 00:00:00\n", - "Selling MHK on 2023-12-31 00:00:00\n", - "Selling UBER on 2023-12-31 00:00:00\n", - "Selling FDX on 2023-12-31 00:00:00\n", - "Selling INVH on 2023-12-31 00:00:00\n", - "Selling IVZ on 2023-12-31 00:00:00\n", - "Selling NCLH on 2023-12-31 00:00:00\n", - "Selling TER on 2023-12-31 00:00:00\n", - "Selling TFC on 2023-12-31 00:00:00\n", - "Selling ABNB on 2023-12-31 00:00:00\n", - "Selling EXPE on 2023-12-31 00:00:00\n", - "Selling PYPL on 2023-12-31 00:00:00\n", - "Selling AES on 2023-12-31 00:00:00\n", - "Selling MTB on 2023-12-31 00:00:00\n", - "Selling FITB on 2023-12-31 00:00:00\n", - "Selling MCHP on 2023-12-31 00:00:00\n", - "Selling FCX on 2023-12-31 00:00:00\n", - "Selling DOC on 2023-12-31 00:00:00\n", - "Selling DAY on 2023-12-31 00:00:00\n", - "Selling EPAM on 2023-12-31 00:00:00\n", - "Selling RF on 2023-12-31 00:00:00\n", - "Selling AMD on 2023-12-31 00:00:00\n", - "Selling CCL on 2023-12-31 00:00:00\n", - "Selling BX on 2023-12-31 00:00:00\n", - "Selling USB on 2023-12-31 00:00:00\n", - "Selling URI on 2023-12-31 00:00:00\n", - "Selling KEY on 2023-12-31 00:00:00\n", - "Selling MGM on 2023-12-31 00:00:00\n", - "Selling KMX on 2023-12-31 00:00:00\n", - "Selling PARA on 2023-12-31 00:00:00\n", - "Selling TSLA on 2023-12-31 00:00:00\n", - "Selling BXP on 2023-12-31 00:00:00\n", - "Selling FSLR on 2023-12-31 00:00:00\n", - "Selling ARE on 2023-12-31 00:00:00\n", - "Selling BLDR on 2023-12-31 00:00:00\n", - "Selling GNRC on 2023-12-31 00:00:00\n", - "Selling CFG on 2023-12-31 00:00:00\n", - "Selling MPWR on 2023-12-31 00:00:00\n", - "Selling WBD on 2023-12-31 00:00:00\n", - "Selling ALB on 2023-12-31 00:00:00\n", - "Selling SMCI on 2023-12-31 00:00:00\n", - "Selling CZR on 2023-12-31 00:00:00\n", - "Selling ALGN on 2023-12-31 00:00:00\n", - "Selling ENPH on 2023-12-31 00:00:00\n", - "Selling PLTR on 2023-12-31 00:00:00\n", - "Buying COR on 2024-01-31 00:00:00\n", - "Buying UNH on 2024-01-31 00:00:00\n", - "Buying MCK on 2024-01-31 00:00:00\n", - "Buying PGR on 2024-01-31 00:00:00\n", - "Buying CPB on 2024-01-31 00:00:00\n", - "Buying ACGL on 2024-01-31 00:00:00\n", - "Buying HUM on 2024-01-31 00:00:00\n", - "Buying MOH on 2024-01-31 00:00:00\n", - "Buying CHD on 2024-01-31 00:00:00\n", - "Buying CME on 2024-01-31 00:00:00\n", - "Buying WRB on 2024-01-31 00:00:00\n", - "Buying BSX on 2024-01-31 00:00:00\n", - "Buying MMC on 2024-01-31 00:00:00\n", - "Buying NOC on 2024-01-31 00:00:00\n", - "Buying CVS on 2024-01-31 00:00:00\n", - "Buying PFE on 2024-01-31 00:00:00\n", - "Buying TMUS on 2024-01-31 00:00:00\n", - "Buying VZ on 2024-01-31 00:00:00\n", - "Buying CBOE on 2024-01-31 00:00:00\n", - "Buying MRK on 2024-01-31 00:00:00\n", - "Buying CAH on 2024-01-31 00:00:00\n", - "Buying CI on 2024-01-31 00:00:00\n", - "Buying CNC on 2024-01-31 00:00:00\n", - "Buying ELV on 2024-01-31 00:00:00\n", - "Buying ALL on 2024-01-31 00:00:00\n", - "Buying AIZ on 2024-01-31 00:00:00\n", - "Buying BA on 2024-01-31 00:00:00\n", - "Buying ERIE on 2024-01-31 00:00:00\n", - "Buying KR on 2024-01-31 00:00:00\n", - "Buying LMT on 2024-01-31 00:00:00\n", - "Buying AJG on 2024-01-31 00:00:00\n", - "Buying SYK on 2024-01-31 00:00:00\n", - "Buying ADP on 2024-01-31 00:00:00\n", - "Buying CB on 2024-01-31 00:00:00\n", - "Buying REGN on 2024-01-31 00:00:00\n", - "Buying T on 2024-01-31 00:00:00\n", - "Buying ABBV on 2024-01-31 00:00:00\n", - "Buying KHC on 2024-01-31 00:00:00\n", - "Buying RTX on 2024-01-31 00:00:00\n", - "Buying JNPR on 2024-01-31 00:00:00\n", - "Buying GIS on 2024-01-31 00:00:00\n", - "Buying LLY on 2024-01-31 00:00:00\n", - "Buying CL on 2024-01-31 00:00:00\n", - "Buying PG on 2024-01-31 00:00:00\n", - "Buying ORLY on 2024-01-31 00:00:00\n", - "Buying EG on 2024-01-31 00:00:00\n", - "Buying K on 2024-01-31 00:00:00\n", - "Buying PAYX on 2024-01-31 00:00:00\n", - "Buying PSX on 2024-01-31 00:00:00\n", - "Buying KMB on 2024-01-31 00:00:00\n", - "Selling WAT on 2024-01-31 00:00:00\n", - "Selling MKTX on 2024-01-31 00:00:00\n", - "Selling TFC on 2024-01-31 00:00:00\n", - "Selling SWKS on 2024-01-31 00:00:00\n", - "Selling RF on 2024-01-31 00:00:00\n", - "Selling BX on 2024-01-31 00:00:00\n", - "Selling MGM on 2024-01-31 00:00:00\n", - "Selling AMAT on 2024-01-31 00:00:00\n", - "Selling FITB on 2024-01-31 00:00:00\n", - "Selling MTB on 2024-01-31 00:00:00\n", - "Selling PYPL on 2024-01-31 00:00:00\n", - "Selling AVGO on 2024-01-31 00:00:00\n", - "Selling WBA on 2024-01-31 00:00:00\n", - "Selling USB on 2024-01-31 00:00:00\n", - "Selling KLAC on 2024-01-31 00:00:00\n", - "Selling CRL on 2024-01-31 00:00:00\n", - "Selling IVZ on 2024-01-31 00:00:00\n", - "Selling GNRC on 2024-01-31 00:00:00\n", - "Selling EXPE on 2024-01-31 00:00:00\n", - "Selling KEY on 2024-01-31 00:00:00\n", - "Selling LRCX on 2024-01-31 00:00:00\n", - "Selling NXPI on 2024-01-31 00:00:00\n", - "Selling CCL on 2024-01-31 00:00:00\n", - "Selling URI on 2024-01-31 00:00:00\n", - "Selling APTV on 2024-01-31 00:00:00\n", - "Selling ABNB on 2024-01-31 00:00:00\n", - "Selling AMD on 2024-01-31 00:00:00\n", - "Selling WBD on 2024-01-31 00:00:00\n", - "Selling MCHP on 2024-01-31 00:00:00\n", - "Selling CFG on 2024-01-31 00:00:00\n", - "Selling ROK on 2024-01-31 00:00:00\n", - "Selling NCLH on 2024-01-31 00:00:00\n", - "Selling TECH on 2024-01-31 00:00:00\n", - "Selling ALGN on 2024-01-31 00:00:00\n", - "Selling ON on 2024-01-31 00:00:00\n", - "Selling ARE on 2024-01-31 00:00:00\n", - "Selling AES on 2024-01-31 00:00:00\n", - "Selling ZBRA on 2024-01-31 00:00:00\n", - "Selling BLDR on 2024-01-31 00:00:00\n", - "Selling FSLR on 2024-01-31 00:00:00\n", - "Selling PODD on 2024-01-31 00:00:00\n", - "Selling KMX on 2024-01-31 00:00:00\n", - "Selling MPWR on 2024-01-31 00:00:00\n", - "Selling TER on 2024-01-31 00:00:00\n", - "Selling BXP on 2024-01-31 00:00:00\n", - "Selling PLTR on 2024-01-31 00:00:00\n", - "Selling CZR on 2024-01-31 00:00:00\n", - "Selling ALB on 2024-01-31 00:00:00\n", - "Selling ENPH on 2024-01-31 00:00:00\n", - "Selling SMCI on 2024-01-31 00:00:00\n", - "Buying COR on 2024-02-29 00:00:00\n", - "Buying CPB on 2024-02-29 00:00:00\n", - "Buying MCK on 2024-02-29 00:00:00\n", - "Buying UNH on 2024-02-29 00:00:00\n", - "Buying CAH on 2024-02-29 00:00:00\n", - "Buying CVS on 2024-02-29 00:00:00\n", - "Buying MOH on 2024-02-29 00:00:00\n", - "Buying CHRW on 2024-02-29 00:00:00\n", - "Buying HUM on 2024-02-29 00:00:00\n", - "Buying JNPR on 2024-02-29 00:00:00\n", - "Buying VZ on 2024-02-29 00:00:00\n", - "Buying KHC on 2024-02-29 00:00:00\n", - "Buying GILD on 2024-02-29 00:00:00\n", - "Buying BA on 2024-02-29 00:00:00\n", - "Buying GIS on 2024-02-29 00:00:00\n", - "Buying WM on 2024-02-29 00:00:00\n", - "Buying T on 2024-02-29 00:00:00\n", - "Buying TMUS on 2024-02-29 00:00:00\n", - "Buying ADP on 2024-02-29 00:00:00\n", - "Buying LDOS on 2024-02-29 00:00:00\n", - "Buying DGX on 2024-02-29 00:00:00\n", - "Buying NOC on 2024-02-29 00:00:00\n", - "Buying ECL on 2024-02-29 00:00:00\n", - "Buying KR on 2024-02-29 00:00:00\n", - "Buying ACGL on 2024-02-29 00:00:00\n", - "Buying TSN on 2024-02-29 00:00:00\n", - "Buying WRB on 2024-02-29 00:00:00\n", - "Buying PFE on 2024-02-29 00:00:00\n", - "Buying HOLX on 2024-02-29 00:00:00\n", - "Buying ERIE on 2024-02-29 00:00:00\n", - "Buying LMT on 2024-02-29 00:00:00\n", - "Buying PGR on 2024-02-29 00:00:00\n", - "Buying SJM on 2024-02-29 00:00:00\n", - "Buying ELV on 2024-02-29 00:00:00\n", - "Buying ALL on 2024-02-29 00:00:00\n", - "Buying EG on 2024-02-29 00:00:00\n", - "Buying DFS on 2024-02-29 00:00:00\n", - "Buying SYY on 2024-02-29 00:00:00\n", - "Buying CNC on 2024-02-29 00:00:00\n", - "Buying CHD on 2024-02-29 00:00:00\n", - "Buying SO on 2024-02-29 00:00:00\n", - "Buying CL on 2024-02-29 00:00:00\n", - "Buying KDP on 2024-02-29 00:00:00\n", - "Buying INCY on 2024-02-29 00:00:00\n", - "Buying AFL on 2024-02-29 00:00:00\n", - "Buying PEP on 2024-02-29 00:00:00\n", - "Buying BSX on 2024-02-29 00:00:00\n", - "Buying XEL on 2024-02-29 00:00:00\n", - "Buying MMC on 2024-02-29 00:00:00\n", - "Buying VTRS on 2024-02-29 00:00:00\n", - "Selling CFG on 2024-02-29 00:00:00\n", - "Selling BXP on 2024-02-29 00:00:00\n", - "Selling WBD on 2024-02-29 00:00:00\n", - "Selling EFX on 2024-02-29 00:00:00\n", - "Selling EPAM on 2024-02-29 00:00:00\n", - "Selling DECK on 2024-02-29 00:00:00\n", - "Selling BX on 2024-02-29 00:00:00\n", - "Selling UBER on 2024-02-29 00:00:00\n", - "Selling CTVA on 2024-02-29 00:00:00\n", - "Selling AMZN on 2024-02-29 00:00:00\n", - "Selling PODD on 2024-02-29 00:00:00\n", - "Selling WDC on 2024-02-29 00:00:00\n", - "Selling KLAC on 2024-02-29 00:00:00\n", - "Selling SNPS on 2024-02-29 00:00:00\n", - "Selling IVZ on 2024-02-29 00:00:00\n", - "Selling APTV on 2024-02-29 00:00:00\n", - "Selling ABNB on 2024-02-29 00:00:00\n", - "Selling CDNS on 2024-02-29 00:00:00\n", - "Selling IQV on 2024-02-29 00:00:00\n", - "Selling GNRC on 2024-02-29 00:00:00\n", - "Selling PYPL on 2024-02-29 00:00:00\n", - "Selling CRWD on 2024-02-29 00:00:00\n", - "Selling BLDR on 2024-02-29 00:00:00\n", - "Selling MOS on 2024-02-29 00:00:00\n", - "Selling CRL on 2024-02-29 00:00:00\n", - "Selling MU on 2024-02-29 00:00:00\n", - "Selling FMC on 2024-02-29 00:00:00\n", - "Selling AMAT on 2024-02-29 00:00:00\n", - "Selling CZR on 2024-02-29 00:00:00\n", - "Selling ALGN on 2024-02-29 00:00:00\n", - "Selling MKTX on 2024-02-29 00:00:00\n", - "Selling DELL on 2024-02-29 00:00:00\n", - "Selling LRCX on 2024-02-29 00:00:00\n", - "Selling MRNA on 2024-02-29 00:00:00\n", - "Selling AVGO on 2024-02-29 00:00:00\n", - "Selling ANET on 2024-02-29 00:00:00\n", - "Selling MPWR on 2024-02-29 00:00:00\n", - "Selling URI on 2024-02-29 00:00:00\n", - "Selling PWR on 2024-02-29 00:00:00\n", - "Selling KMX on 2024-02-29 00:00:00\n", - "Selling TER on 2024-02-29 00:00:00\n", - "Selling ALB on 2024-02-29 00:00:00\n", - "Selling META on 2024-02-29 00:00:00\n", - "Selling ROK on 2024-02-29 00:00:00\n", - "Selling ZBRA on 2024-02-29 00:00:00\n", - "Selling ENPH on 2024-02-29 00:00:00\n", - "Selling NVDA on 2024-02-29 00:00:00\n", - "Selling AMD on 2024-02-29 00:00:00\n", - "Selling PLTR on 2024-02-29 00:00:00\n", - "Selling SMCI on 2024-02-29 00:00:00\n", - "Buying MOH on 2024-03-31 00:00:00\n", - "Buying CPB on 2024-03-31 00:00:00\n", - "Buying COR on 2024-03-31 00:00:00\n", - "Buying CVS on 2024-03-31 00:00:00\n", - "Buying GIS on 2024-03-31 00:00:00\n", - "Buying CAH on 2024-03-31 00:00:00\n", - "Buying MKC on 2024-03-31 00:00:00\n", - "Buying KHC on 2024-03-31 00:00:00\n", - "Buying ALL on 2024-03-31 00:00:00\n", - "Buying MCK on 2024-03-31 00:00:00\n", - "Buying BA on 2024-03-31 00:00:00\n", - "Buying TSN on 2024-03-31 00:00:00\n", - "Buying HUM on 2024-03-31 00:00:00\n", - "Buying UNH on 2024-03-31 00:00:00\n", - "Buying T on 2024-03-31 00:00:00\n", - "Buying CBOE on 2024-03-31 00:00:00\n", - "Buying GILD on 2024-03-31 00:00:00\n", - "Buying WM on 2024-03-31 00:00:00\n", - "Buying NOC on 2024-03-31 00:00:00\n", - "Buying ECL on 2024-03-31 00:00:00\n", - "Buying TMUS on 2024-03-31 00:00:00\n", - "Buying HOLX on 2024-03-31 00:00:00\n", - "Buying LDOS on 2024-03-31 00:00:00\n", - "Buying JNPR on 2024-03-31 00:00:00\n", - "Buying INCY on 2024-03-31 00:00:00\n", - "Buying DGX on 2024-03-31 00:00:00\n", - "Buying KDP on 2024-03-31 00:00:00\n", - "Buying ELV on 2024-03-31 00:00:00\n", - "Buying ACGL on 2024-03-31 00:00:00\n", - "Buying AFL on 2024-03-31 00:00:00\n", - "Buying SJM on 2024-03-31 00:00:00\n", - "Buying LMT on 2024-03-31 00:00:00\n", - "Buying VZ on 2024-03-31 00:00:00\n", - "Buying RTX on 2024-03-31 00:00:00\n", - "Buying PSX on 2024-03-31 00:00:00\n", - "Buying SYY on 2024-03-31 00:00:00\n", - "Buying EG on 2024-03-31 00:00:00\n", - "Buying WRB on 2024-03-31 00:00:00\n", - "Buying XOM on 2024-03-31 00:00:00\n", - "Buying SO on 2024-03-31 00:00:00\n", - "Buying CHD on 2024-03-31 00:00:00\n", - "Buying ERIE on 2024-03-31 00:00:00\n", - "Buying XEL on 2024-03-31 00:00:00\n", - "Buying TAP on 2024-03-31 00:00:00\n", - "Buying FANG on 2024-03-31 00:00:00\n", - "Buying LW on 2024-03-31 00:00:00\n", - "Buying PGR on 2024-03-31 00:00:00\n", - "Buying EVRG on 2024-03-31 00:00:00\n", - "Buying CAG on 2024-03-31 00:00:00\n", - "Buying AON on 2024-03-31 00:00:00\n", - "Selling ADSK on 2024-03-31 00:00:00\n", - "Selling SWKS on 2024-03-31 00:00:00\n", - "Selling ABNB on 2024-03-31 00:00:00\n", - "Selling PYPL on 2024-03-31 00:00:00\n", - "Selling DAY on 2024-03-31 00:00:00\n", - "Selling DLR on 2024-03-31 00:00:00\n", - "Selling EFX on 2024-03-31 00:00:00\n", - "Selling KMX on 2024-03-31 00:00:00\n", - "Selling EPAM on 2024-03-31 00:00:00\n", - "Selling MCHP on 2024-03-31 00:00:00\n", - "Selling ORCL on 2024-03-31 00:00:00\n", - "Selling INTU on 2024-03-31 00:00:00\n", - "Selling IQV on 2024-03-31 00:00:00\n", - "Selling NOW on 2024-03-31 00:00:00\n", - "Selling DECK on 2024-03-31 00:00:00\n", - "Selling FTNT on 2024-03-31 00:00:00\n", - "Selling ON on 2024-03-31 00:00:00\n", - "Selling MKTX on 2024-03-31 00:00:00\n", - "Selling KLAC on 2024-03-31 00:00:00\n", - "Selling NXPI on 2024-03-31 00:00:00\n", - "Selling FICO on 2024-03-31 00:00:00\n", - "Selling AMZN on 2024-03-31 00:00:00\n", - "Selling GNRC on 2024-03-31 00:00:00\n", - "Selling JBL on 2024-03-31 00:00:00\n", - "Selling ADBE on 2024-03-31 00:00:00\n", - "Selling CRL on 2024-03-31 00:00:00\n", - "Selling AMAT on 2024-03-31 00:00:00\n", - "Selling UBER on 2024-03-31 00:00:00\n", - "Selling MRNA on 2024-03-31 00:00:00\n", - "Selling BLDR on 2024-03-31 00:00:00\n", - "Selling PWR on 2024-03-31 00:00:00\n", - "Selling URI on 2024-03-31 00:00:00\n", - "Selling CDNS on 2024-03-31 00:00:00\n", - "Selling LRCX on 2024-03-31 00:00:00\n", - "Selling SNPS on 2024-03-31 00:00:00\n", - "Selling ROK on 2024-03-31 00:00:00\n", - "Selling CRWD on 2024-03-31 00:00:00\n", - "Selling MPWR on 2024-03-31 00:00:00\n", - "Selling ENPH on 2024-03-31 00:00:00\n", - "Selling AMD on 2024-03-31 00:00:00\n", - "Selling TER on 2024-03-31 00:00:00\n", - "Selling AVGO on 2024-03-31 00:00:00\n", - "Selling ZBRA on 2024-03-31 00:00:00\n", - "Selling ANET on 2024-03-31 00:00:00\n", - "Selling META on 2024-03-31 00:00:00\n", - "Selling PLTR on 2024-03-31 00:00:00\n", - "Selling DELL on 2024-03-31 00:00:00\n", - "Selling ALB on 2024-03-31 00:00:00\n", - "Selling NVDA on 2024-03-31 00:00:00\n", - "Selling SMCI on 2024-03-31 00:00:00\n", - "Buying GL on 2024-04-30 00:00:00\n", - "Buying GIS on 2024-04-30 00:00:00\n", - "Buying CBOE on 2024-04-30 00:00:00\n", - "Buying CPB on 2024-04-30 00:00:00\n", - "Buying KHC on 2024-04-30 00:00:00\n", - "Buying LDOS on 2024-04-30 00:00:00\n", - "Buying MKC on 2024-04-30 00:00:00\n", - "Buying ALL on 2024-04-30 00:00:00\n", - "Buying KDP on 2024-04-30 00:00:00\n", - "Buying PGR on 2024-04-30 00:00:00\n", - "Buying CAG on 2024-04-30 00:00:00\n", - "Buying TSN on 2024-04-30 00:00:00\n", - "Buying LMT on 2024-04-30 00:00:00\n", - "Buying T on 2024-04-30 00:00:00\n", - "Buying WM on 2024-04-30 00:00:00\n", - "Buying ECL on 2024-04-30 00:00:00\n", - "Buying TMUS on 2024-04-30 00:00:00\n", - "Buying K on 2024-04-30 00:00:00\n", - "Buying PEP on 2024-04-30 00:00:00\n", - "Buying CAH on 2024-04-30 00:00:00\n", - "Buying RTX on 2024-04-30 00:00:00\n", - "Buying WRB on 2024-04-30 00:00:00\n", - "Buying NEM on 2024-04-30 00:00:00\n", - "Buying NOC on 2024-04-30 00:00:00\n", - "Buying HSY on 2024-04-30 00:00:00\n", - "Buying XEL on 2024-04-30 00:00:00\n", - "Buying PG on 2024-04-30 00:00:00\n", - "Buying CINF on 2024-04-30 00:00:00\n", - "Buying WMT on 2024-04-30 00:00:00\n", - "Buying CHD on 2024-04-30 00:00:00\n", - "Buying ED on 2024-04-30 00:00:00\n", - "Buying SJM on 2024-04-30 00:00:00\n", - "Buying VZ on 2024-04-30 00:00:00\n", - "Buying CMS on 2024-04-30 00:00:00\n", - "Buying DUK on 2024-04-30 00:00:00\n", - "Buying MCK on 2024-04-30 00:00:00\n", - "Buying XOM on 2024-04-30 00:00:00\n", - "Buying HIG on 2024-04-30 00:00:00\n", - "Buying KVUE on 2024-04-30 00:00:00\n", - "Buying WEC on 2024-04-30 00:00:00\n", - "Buying BF-B on 2024-04-30 00:00:00\n", - "Buying CI on 2024-04-30 00:00:00\n", - "Buying ACGL on 2024-04-30 00:00:00\n", - "Buying INCY on 2024-04-30 00:00:00\n", - "Buying CB on 2024-04-30 00:00:00\n", - "Buying ETR on 2024-04-30 00:00:00\n", - "Buying PEG on 2024-04-30 00:00:00\n", - "Buying CL on 2024-04-30 00:00:00\n", - "Buying CME on 2024-04-30 00:00:00\n", - "Buying LHX on 2024-04-30 00:00:00\n", - "Selling NFLX on 2024-04-30 00:00:00\n", - "Selling INTU on 2024-04-30 00:00:00\n", - "Selling AMZN on 2024-04-30 00:00:00\n", - "Selling LEN on 2024-04-30 00:00:00\n", - "Selling NXPI on 2024-04-30 00:00:00\n", - "Selling DHI on 2024-04-30 00:00:00\n", - "Selling IQV on 2024-04-30 00:00:00\n", - "Selling HUBB on 2024-04-30 00:00:00\n", - "Selling MHK on 2024-04-30 00:00:00\n", - "Selling PHM on 2024-04-30 00:00:00\n", - "Selling F on 2024-04-30 00:00:00\n", - "Selling CRM on 2024-04-30 00:00:00\n", - "Selling ABNB on 2024-04-30 00:00:00\n", - "Selling GEHC on 2024-04-30 00:00:00\n", - "Selling RMD on 2024-04-30 00:00:00\n", - "Selling TSLA on 2024-04-30 00:00:00\n", - "Selling EFX on 2024-04-30 00:00:00\n", - "Selling SWKS on 2024-04-30 00:00:00\n", - "Selling WDC on 2024-04-30 00:00:00\n", - "Selling ALGN on 2024-04-30 00:00:00\n", - "Selling QCOM on 2024-04-30 00:00:00\n", - "Selling META on 2024-04-30 00:00:00\n", - "Selling UBER on 2024-04-30 00:00:00\n", - "Selling MCHP on 2024-04-30 00:00:00\n", - "Selling URI on 2024-04-30 00:00:00\n", - "Selling NOW on 2024-04-30 00:00:00\n", - "Selling PWR on 2024-04-30 00:00:00\n", - "Selling CDNS on 2024-04-30 00:00:00\n", - "Selling JBL on 2024-04-30 00:00:00\n", - "Selling CRL on 2024-04-30 00:00:00\n", - "Selling MRNA on 2024-04-30 00:00:00\n", - "Selling BLDR on 2024-04-30 00:00:00\n", - "Selling AMAT on 2024-04-30 00:00:00\n", - "Selling ON on 2024-04-30 00:00:00\n", - "Selling KLAC on 2024-04-30 00:00:00\n", - "Selling SNPS on 2024-04-30 00:00:00\n", - "Selling LRCX on 2024-04-30 00:00:00\n", - "Selling MPWR on 2024-04-30 00:00:00\n", - "Selling MU on 2024-04-30 00:00:00\n", - "Selling CRWD on 2024-04-30 00:00:00\n", - "Selling TER on 2024-04-30 00:00:00\n", - "Selling ENPH on 2024-04-30 00:00:00\n", - "Selling AVGO on 2024-04-30 00:00:00\n", - "Selling ANET on 2024-04-30 00:00:00\n", - "Selling PLTR on 2024-04-30 00:00:00\n", - "Selling DELL on 2024-04-30 00:00:00\n", - "Selling AMD on 2024-04-30 00:00:00\n", - "Selling ALB on 2024-04-30 00:00:00\n", - "Selling NVDA on 2024-04-30 00:00:00\n", - "Selling SMCI on 2024-04-30 00:00:00\n", - "Buying GL on 2024-05-31 00:00:00\n", - "Buying CBOE on 2024-05-31 00:00:00\n", - "Buying CAH on 2024-05-31 00:00:00\n", - "Buying CPB on 2024-05-31 00:00:00\n", - "Buying ALL on 2024-05-31 00:00:00\n", - "Buying GIS on 2024-05-31 00:00:00\n", - "Buying PGR on 2024-05-31 00:00:00\n", - "Buying HII on 2024-05-31 00:00:00\n", - "Buying LMT on 2024-05-31 00:00:00\n", - "Buying CINF on 2024-05-31 00:00:00\n", - "Buying NOC on 2024-05-31 00:00:00\n", - "Buying WRB on 2024-05-31 00:00:00\n", - "Buying CAG on 2024-05-31 00:00:00\n", - "Buying CME on 2024-05-31 00:00:00\n", - "Buying KHC on 2024-05-31 00:00:00\n", - "Buying TMUS on 2024-05-31 00:00:00\n", - "Buying CI on 2024-05-31 00:00:00\n", - "Buying LDOS on 2024-05-31 00:00:00\n", - "Buying MKC on 2024-05-31 00:00:00\n", - "Buying ACGL on 2024-05-31 00:00:00\n", - "Buying RTX on 2024-05-31 00:00:00\n", - "Buying CB on 2024-05-31 00:00:00\n", - "Buying KDP on 2024-05-31 00:00:00\n", - "Buying K on 2024-05-31 00:00:00\n", - "Buying BG on 2024-05-31 00:00:00\n", - "Buying PEP on 2024-05-31 00:00:00\n", - "Buying COR on 2024-05-31 00:00:00\n", - "Buying HPQ on 2024-05-31 00:00:00\n", - "Buying MCK on 2024-05-31 00:00:00\n", - "Buying AFL on 2024-05-31 00:00:00\n", - "Buying ED on 2024-05-31 00:00:00\n", - "Buying CHD on 2024-05-31 00:00:00\n", - "Buying T on 2024-05-31 00:00:00\n", - "Buying CMS on 2024-05-31 00:00:00\n", - "Buying HIG on 2024-05-31 00:00:00\n", - "Buying TSN on 2024-05-31 00:00:00\n", - "Buying PG on 2024-05-31 00:00:00\n", - "Buying ES on 2024-05-31 00:00:00\n", - "Buying EG on 2024-05-31 00:00:00\n", - "Buying MDLZ on 2024-05-31 00:00:00\n", - "Buying JNJ on 2024-05-31 00:00:00\n", - "Buying GLW on 2024-05-31 00:00:00\n", - "Buying SJM on 2024-05-31 00:00:00\n", - "Buying L on 2024-05-31 00:00:00\n", - "Buying AEE on 2024-05-31 00:00:00\n", - "Buying KR on 2024-05-31 00:00:00\n", - "Buying WMT on 2024-05-31 00:00:00\n", - "Buying WM on 2024-05-31 00:00:00\n", - "Buying JNPR on 2024-05-31 00:00:00\n", - "Buying WEC on 2024-05-31 00:00:00\n", - "Selling PODD on 2024-05-31 00:00:00\n", - "Selling FICO on 2024-05-31 00:00:00\n", - "Selling LYV on 2024-05-31 00:00:00\n", - "Selling META on 2024-05-31 00:00:00\n", - "Selling IT on 2024-05-31 00:00:00\n", - "Selling SNPS on 2024-05-31 00:00:00\n", - "Selling PARA on 2024-05-31 00:00:00\n", - "Selling HUBB on 2024-05-31 00:00:00\n", - "Selling GEHC on 2024-05-31 00:00:00\n", - "Selling WAT on 2024-05-31 00:00:00\n", - "Selling MHK on 2024-05-31 00:00:00\n", - "Selling RMD on 2024-05-31 00:00:00\n", - "Selling SWKS on 2024-05-31 00:00:00\n", - "Selling BXP on 2024-05-31 00:00:00\n", - "Selling EFX on 2024-05-31 00:00:00\n", - "Selling BX on 2024-05-31 00:00:00\n", - "Selling KKR on 2024-05-31 00:00:00\n", - "Selling HWM on 2024-05-31 00:00:00\n", - "Selling JBL on 2024-05-31 00:00:00\n", - "Selling NXPI on 2024-05-31 00:00:00\n", - "Selling NCLH on 2024-05-31 00:00:00\n", - "Selling PLTR on 2024-05-31 00:00:00\n", - "Selling DECK on 2024-05-31 00:00:00\n", - "Selling AMAT on 2024-05-31 00:00:00\n", - "Selling PHM on 2024-05-31 00:00:00\n", - "Selling LEN on 2024-05-31 00:00:00\n", - "Selling URI on 2024-05-31 00:00:00\n", - "Selling MCHP on 2024-05-31 00:00:00\n", - "Selling ENPH on 2024-05-31 00:00:00\n", - "Selling APTV on 2024-05-31 00:00:00\n", - "Selling DHI on 2024-05-31 00:00:00\n", - "Selling QCOM on 2024-05-31 00:00:00\n", - "Selling LRCX on 2024-05-31 00:00:00\n", - "Selling CRM on 2024-05-31 00:00:00\n", - "Selling VST on 2024-05-31 00:00:00\n", - "Selling KLAC on 2024-05-31 00:00:00\n", - "Selling CZR on 2024-05-31 00:00:00\n", - "Selling MU on 2024-05-31 00:00:00\n", - "Selling BLDR on 2024-05-31 00:00:00\n", - "Selling ALB on 2024-05-31 00:00:00\n", - "Selling ON on 2024-05-31 00:00:00\n", - "Selling MPWR on 2024-05-31 00:00:00\n", - "Selling AVGO on 2024-05-31 00:00:00\n", - "Selling NOW on 2024-05-31 00:00:00\n", - "Selling CRWD on 2024-05-31 00:00:00\n", - "Selling AMD on 2024-05-31 00:00:00\n", - "Selling TER on 2024-05-31 00:00:00\n", - "Selling NVDA on 2024-05-31 00:00:00\n", - "Selling ANET on 2024-05-31 00:00:00\n", - "Selling SMCI on 2024-05-31 00:00:00\n", - "Buying GL on 2024-06-30 00:00:00\n", - "Buying CAH on 2024-06-30 00:00:00\n", - "Buying GIS on 2024-06-30 00:00:00\n", - "Buying CBOE on 2024-06-30 00:00:00\n", - "Buying LMT on 2024-06-30 00:00:00\n", - "Buying CPB on 2024-06-30 00:00:00\n", - "Buying CINF on 2024-06-30 00:00:00\n", - "Buying NOC on 2024-06-30 00:00:00\n", - "Buying PGR on 2024-06-30 00:00:00\n", - "Buying CAG on 2024-06-30 00:00:00\n", - "Buying ALL on 2024-06-30 00:00:00\n", - "Buying KR on 2024-06-30 00:00:00\n", - "Buying BG on 2024-06-30 00:00:00\n", - "Buying WRB on 2024-06-30 00:00:00\n", - "Buying CI on 2024-06-30 00:00:00\n", - "Buying CF on 2024-06-30 00:00:00\n", - "Buying KHC on 2024-06-30 00:00:00\n", - "Buying CME on 2024-06-30 00:00:00\n", - "Buying HII on 2024-06-30 00:00:00\n", - "Buying ES on 2024-06-30 00:00:00\n", - "Buying UNH on 2024-06-30 00:00:00\n", - "Buying CMS on 2024-06-30 00:00:00\n", - "Buying LDOS on 2024-06-30 00:00:00\n", - "Buying PEP on 2024-06-30 00:00:00\n", - "Buying EXC on 2024-06-30 00:00:00\n", - "Buying ED on 2024-06-30 00:00:00\n", - "Buying HUM on 2024-06-30 00:00:00\n", - "Buying DUK on 2024-06-30 00:00:00\n", - "Buying SJM on 2024-06-30 00:00:00\n", - "Buying CB on 2024-06-30 00:00:00\n", - "Buying TSN on 2024-06-30 00:00:00\n", - "Buying JNJ on 2024-06-30 00:00:00\n", - "Buying COR on 2024-06-30 00:00:00\n", - "Buying AEE on 2024-06-30 00:00:00\n", - "Buying K on 2024-06-30 00:00:00\n", - "Buying ACGL on 2024-06-30 00:00:00\n", - "Buying CHD on 2024-06-30 00:00:00\n", - "Buying VZ on 2024-06-30 00:00:00\n", - "Buying PG on 2024-06-30 00:00:00\n", - "Buying TMUS on 2024-06-30 00:00:00\n", - "Buying MMM on 2024-06-30 00:00:00\n", - "Buying T on 2024-06-30 00:00:00\n", - "Buying HSY on 2024-06-30 00:00:00\n", - "Buying WEC on 2024-06-30 00:00:00\n", - "Buying EXPE on 2024-06-30 00:00:00\n", - "Buying WTW on 2024-06-30 00:00:00\n", - "Buying WMT on 2024-06-30 00:00:00\n", - "Buying MDLZ on 2024-06-30 00:00:00\n", - "Buying TRV on 2024-06-30 00:00:00\n", - "Buying HIG on 2024-06-30 00:00:00\n", - "Selling JBL on 2024-06-30 00:00:00\n", - "Selling RMD on 2024-06-30 00:00:00\n", - "Selling FICO on 2024-06-30 00:00:00\n", - "Selling IT on 2024-06-30 00:00:00\n", - "Selling EFX on 2024-06-30 00:00:00\n", - "Selling LII on 2024-06-30 00:00:00\n", - "Selling A on 2024-06-30 00:00:00\n", - "Selling ADSK on 2024-06-30 00:00:00\n", - "Selling NFLX on 2024-06-30 00:00:00\n", - "Selling URI on 2024-06-30 00:00:00\n", - "Selling DELL on 2024-06-30 00:00:00\n", - "Selling MTD on 2024-06-30 00:00:00\n", - "Selling LW on 2024-06-30 00:00:00\n", - "Selling LEN on 2024-06-30 00:00:00\n", - "Selling ALB on 2024-06-30 00:00:00\n", - "Selling ENPH on 2024-06-30 00:00:00\n", - "Selling SWKS on 2024-06-30 00:00:00\n", - "Selling SNPS on 2024-06-30 00:00:00\n", - "Selling BX on 2024-06-30 00:00:00\n", - "Selling WDC on 2024-06-30 00:00:00\n", - "Selling DHI on 2024-06-30 00:00:00\n", - "Selling VST on 2024-06-30 00:00:00\n", - "Selling GEHC on 2024-06-30 00:00:00\n", - "Selling ON on 2024-06-30 00:00:00\n", - "Selling CEG on 2024-06-30 00:00:00\n", - "Selling HWM on 2024-06-30 00:00:00\n", - "Selling HUBB on 2024-06-30 00:00:00\n", - "Selling PHM on 2024-06-30 00:00:00\n", - "Selling NCLH on 2024-06-30 00:00:00\n", - "Selling DECK on 2024-06-30 00:00:00\n", - "Selling KKR on 2024-06-30 00:00:00\n", - "Selling BLDR on 2024-06-30 00:00:00\n", - "Selling CRM on 2024-06-30 00:00:00\n", - "Selling CZR on 2024-06-30 00:00:00\n", - "Selling AMAT on 2024-06-30 00:00:00\n", - "Selling PLTR on 2024-06-30 00:00:00\n", - "Selling NOW on 2024-06-30 00:00:00\n", - "Selling GEV on 2024-06-30 00:00:00\n", - "Selling QCOM on 2024-06-30 00:00:00\n", - "Selling LRCX on 2024-06-30 00:00:00\n", - "Selling MPWR on 2024-06-30 00:00:00\n", - "Selling TER on 2024-06-30 00:00:00\n", - "Selling KLAC on 2024-06-30 00:00:00\n", - "Selling AMD on 2024-06-30 00:00:00\n", - "Selling AVGO on 2024-06-30 00:00:00\n", - "Selling ANET on 2024-06-30 00:00:00\n", - "Selling MU on 2024-06-30 00:00:00\n", - "Selling NVDA on 2024-06-30 00:00:00\n", - "Selling CRWD on 2024-06-30 00:00:00\n", - "Selling SMCI on 2024-06-30 00:00:00\n", - "Buying GILD on 2024-07-31 00:00:00\n", - "Buying SOLV on 2024-07-31 00:00:00\n", - "Buying DXCM on 2024-07-31 00:00:00\n", - "Buying INCY on 2024-07-31 00:00:00\n", - "Buying VTRS on 2024-07-31 00:00:00\n", - "Buying T on 2024-07-31 00:00:00\n", - "Buying JNJ on 2024-07-31 00:00:00\n", - "Buying BG on 2024-07-31 00:00:00\n", - "Buying GIS on 2024-07-31 00:00:00\n", - "Buying CBOE on 2024-07-31 00:00:00\n", - "Buying ES on 2024-07-31 00:00:00\n", - "Buying XEL on 2024-07-31 00:00:00\n", - "Buying HUM on 2024-07-31 00:00:00\n", - "Buying LMT on 2024-07-31 00:00:00\n", - "Buying VZ on 2024-07-31 00:00:00\n", - "Buying CME on 2024-07-31 00:00:00\n", - "Buying EPAM on 2024-07-31 00:00:00\n", - "Buying SJM on 2024-07-31 00:00:00\n", - "Buying BMY on 2024-07-31 00:00:00\n", - "Buying CCI on 2024-07-31 00:00:00\n", - "Buying ABBV on 2024-07-31 00:00:00\n", - "Buying WBD on 2024-07-31 00:00:00\n", - "Buying ABT on 2024-07-31 00:00:00\n", - "Buying CAG on 2024-07-31 00:00:00\n", - "Buying CMS on 2024-07-31 00:00:00\n", - "Buying EXC on 2024-07-31 00:00:00\n", - "Buying D on 2024-07-31 00:00:00\n", - "Buying ED on 2024-07-31 00:00:00\n", - "Buying MO on 2024-07-31 00:00:00\n", - "Buying TSN on 2024-07-31 00:00:00\n", - "Buying CI on 2024-07-31 00:00:00\n", - "Buying MPC on 2024-07-31 00:00:00\n", - "Buying WEC on 2024-07-31 00:00:00\n", - "Buying AEE on 2024-07-31 00:00:00\n", - "Buying KO on 2024-07-31 00:00:00\n", - "Buying TAP on 2024-07-31 00:00:00\n", - "Buying CPB on 2024-07-31 00:00:00\n", - "Buying K on 2024-07-31 00:00:00\n", - "Buying PFE on 2024-07-31 00:00:00\n", - "Buying CVS on 2024-07-31 00:00:00\n", - "Buying AMT on 2024-07-31 00:00:00\n", - "Buying CF on 2024-07-31 00:00:00\n", - "Buying NOC on 2024-07-31 00:00:00\n", - "Buying DTE on 2024-07-31 00:00:00\n", - "Buying KHC on 2024-07-31 00:00:00\n", - "Buying PGR on 2024-07-31 00:00:00\n", - "Buying DLTR on 2024-07-31 00:00:00\n", - "Buying PEP on 2024-07-31 00:00:00\n", - "Buying CPAY on 2024-07-31 00:00:00\n", - "Buying BF-B on 2024-07-31 00:00:00\n", - "Selling PH on 2024-07-31 00:00:00\n", - "Selling BX on 2024-07-31 00:00:00\n", - "Selling SWKS on 2024-07-31 00:00:00\n", - "Selling NTAP on 2024-07-31 00:00:00\n", - "Selling HPE on 2024-07-31 00:00:00\n", - "Selling CRM on 2024-07-31 00:00:00\n", - "Selling FTV on 2024-07-31 00:00:00\n", - "Selling TT on 2024-07-31 00:00:00\n", - "Selling GE on 2024-07-31 00:00:00\n", - "Selling IR on 2024-07-31 00:00:00\n", - "Selling CARR on 2024-07-31 00:00:00\n", - "Selling INTC on 2024-07-31 00:00:00\n", - "Selling ORCL on 2024-07-31 00:00:00\n", - "Selling ADI on 2024-07-31 00:00:00\n", - "Selling BLDR on 2024-07-31 00:00:00\n", - "Selling DECK on 2024-07-31 00:00:00\n", - "Selling KKR on 2024-07-31 00:00:00\n", - "Selling LII on 2024-07-31 00:00:00\n", - "Selling PWR on 2024-07-31 00:00:00\n", - "Selling MCHP on 2024-07-31 00:00:00\n", - "Selling META on 2024-07-31 00:00:00\n", - "Selling PLTR on 2024-07-31 00:00:00\n", - "Selling CRWD on 2024-07-31 00:00:00\n", - "Selling HUBB on 2024-07-31 00:00:00\n", - "Selling DELL on 2024-07-31 00:00:00\n", - "Selling APH on 2024-07-31 00:00:00\n", - "Selling NXPI on 2024-07-31 00:00:00\n", - "Selling ETN on 2024-07-31 00:00:00\n", - "Selling CZR on 2024-07-31 00:00:00\n", - "Selling CDNS on 2024-07-31 00:00:00\n", - "Selling WDC on 2024-07-31 00:00:00\n", - "Selling SNPS on 2024-07-31 00:00:00\n", - "Selling AMD on 2024-07-31 00:00:00\n", - "Selling ANET on 2024-07-31 00:00:00\n", - "Selling ON on 2024-07-31 00:00:00\n", - "Selling MU on 2024-07-31 00:00:00\n", - "Selling CEG on 2024-07-31 00:00:00\n", - "Selling NVDA on 2024-07-31 00:00:00\n", - "Selling TSLA on 2024-07-31 00:00:00\n", - "Selling AVGO on 2024-07-31 00:00:00\n", - "Selling VST on 2024-07-31 00:00:00\n", - "Selling LW on 2024-07-31 00:00:00\n", - "Selling GEV on 2024-07-31 00:00:00\n", - "Selling KLAC on 2024-07-31 00:00:00\n", - "Selling LRCX on 2024-07-31 00:00:00\n", - "Selling TER on 2024-07-31 00:00:00\n", - "Selling QCOM on 2024-07-31 00:00:00\n", - "Selling AMAT on 2024-07-31 00:00:00\n", - "Selling MPWR on 2024-07-31 00:00:00\n", - "Selling SMCI on 2024-07-31 00:00:00\n", - "Buying K on 2024-08-31 00:00:00\n", - "Buying CBOE on 2024-08-31 00:00:00\n", - "Buying ED on 2024-08-31 00:00:00\n", - "Buying MCK on 2024-08-31 00:00:00\n", - "Buying DXCM on 2024-08-31 00:00:00\n", - "Buying GIS on 2024-08-31 00:00:00\n", - "Buying JNJ on 2024-08-31 00:00:00\n", - "Buying WEC on 2024-08-31 00:00:00\n", - "Buying ES on 2024-08-31 00:00:00\n", - "Buying LMT on 2024-08-31 00:00:00\n", - "Buying GILD on 2024-08-31 00:00:00\n", - "Buying AMT on 2024-08-31 00:00:00\n", - "Buying CHRW on 2024-08-31 00:00:00\n", - "Buying CPB on 2024-08-31 00:00:00\n", - "Buying CMS on 2024-08-31 00:00:00\n", - "Buying T on 2024-08-31 00:00:00\n", - "Buying NOC on 2024-08-31 00:00:00\n", - "Buying D on 2024-08-31 00:00:00\n", - "Buying MNST on 2024-08-31 00:00:00\n", - "Buying CME on 2024-08-31 00:00:00\n", - "Buying SJM on 2024-08-31 00:00:00\n", - "Buying EXC on 2024-08-31 00:00:00\n", - "Buying APD on 2024-08-31 00:00:00\n", - "Buying XEL on 2024-08-31 00:00:00\n", - "Buying SO on 2024-08-31 00:00:00\n", - "Buying KO on 2024-08-31 00:00:00\n", - "Buying TSN on 2024-08-31 00:00:00\n", - "Buying AEE on 2024-08-31 00:00:00\n", - "Buying AEP on 2024-08-31 00:00:00\n", - "Buying O on 2024-08-31 00:00:00\n", - "Buying ABT on 2024-08-31 00:00:00\n", - "Buying CCI on 2024-08-31 00:00:00\n", - "Buying DUK on 2024-08-31 00:00:00\n", - "Buying PPL on 2024-08-31 00:00:00\n", - "Buying PEP on 2024-08-31 00:00:00\n", - "Buying PG on 2024-08-31 00:00:00\n", - "Buying MO on 2024-08-31 00:00:00\n", - "Buying VZ on 2024-08-31 00:00:00\n", - "Buying EVRG on 2024-08-31 00:00:00\n", - "Buying COR on 2024-08-31 00:00:00\n", - "Buying CLX on 2024-08-31 00:00:00\n", - "Buying CHD on 2024-08-31 00:00:00\n", - "Buying FE on 2024-08-31 00:00:00\n", - "Buying ABBV on 2024-08-31 00:00:00\n", - "Buying DTE on 2024-08-31 00:00:00\n", - "Buying HUM on 2024-08-31 00:00:00\n", - "Buying HRL on 2024-08-31 00:00:00\n", - "Buying MOH on 2024-08-31 00:00:00\n", - "Buying CL on 2024-08-31 00:00:00\n", - "Buying PFE on 2024-08-31 00:00:00\n", - "Selling ALB on 2024-08-31 00:00:00\n", - "Selling ULTA on 2024-08-31 00:00:00\n", - "Selling ABNB on 2024-08-31 00:00:00\n", - "Selling RCL on 2024-08-31 00:00:00\n", - "Selling EXPE on 2024-08-31 00:00:00\n", - "Selling TXN on 2024-08-31 00:00:00\n", - "Selling AMZN on 2024-08-31 00:00:00\n", - "Selling PH on 2024-08-31 00:00:00\n", - "Selling PWR on 2024-08-31 00:00:00\n", - "Selling KKR on 2024-08-31 00:00:00\n", - "Selling BLDR on 2024-08-31 00:00:00\n", - "Selling KEYS on 2024-08-31 00:00:00\n", - "Selling CCL on 2024-08-31 00:00:00\n", - "Selling JBL on 2024-08-31 00:00:00\n", - "Selling APO on 2024-08-31 00:00:00\n", - "Selling UAL on 2024-08-31 00:00:00\n", - "Selling HPE on 2024-08-31 00:00:00\n", - "Selling APH on 2024-08-31 00:00:00\n", - "Selling ETN on 2024-08-31 00:00:00\n", - "Selling AMD on 2024-08-31 00:00:00\n", - "Selling MRNA on 2024-08-31 00:00:00\n", - "Selling NCLH on 2024-08-31 00:00:00\n", - "Selling SWKS on 2024-08-31 00:00:00\n", - "Selling ADI on 2024-08-31 00:00:00\n", - "Selling CZR on 2024-08-31 00:00:00\n", - "Selling CEG on 2024-08-31 00:00:00\n", - "Selling ANET on 2024-08-31 00:00:00\n", - "Selling LW on 2024-08-31 00:00:00\n", - "Selling NXPI on 2024-08-31 00:00:00\n", - "Selling CDNS on 2024-08-31 00:00:00\n", - "Selling WDC on 2024-08-31 00:00:00\n", - "Selling PLTR on 2024-08-31 00:00:00\n", - "Selling SNPS on 2024-08-31 00:00:00\n", - "Selling GEV on 2024-08-31 00:00:00\n", - "Selling MCHP on 2024-08-31 00:00:00\n", - "Selling DELL on 2024-08-31 00:00:00\n", - "Selling MU on 2024-08-31 00:00:00\n", - "Selling VST on 2024-08-31 00:00:00\n", - "Selling ON on 2024-08-31 00:00:00\n", - "Selling QCOM on 2024-08-31 00:00:00\n", - "Selling AVGO on 2024-08-31 00:00:00\n", - "Selling TER on 2024-08-31 00:00:00\n", - "Selling AMAT on 2024-08-31 00:00:00\n", - "Selling KLAC on 2024-08-31 00:00:00\n", - "Selling LRCX on 2024-08-31 00:00:00\n", - "Selling MPWR on 2024-08-31 00:00:00\n", - "Selling TSLA on 2024-08-31 00:00:00\n", - "Selling SMCI on 2024-08-31 00:00:00\n", - "Selling NVDA on 2024-08-31 00:00:00\n", - "Selling INTC on 2024-08-31 00:00:00\n", - "Buying K on 2024-09-30 00:00:00\n", - "Buying CBOE on 2024-09-30 00:00:00\n", - "Buying CPB on 2024-09-30 00:00:00\n", - "Buying ED on 2024-09-30 00:00:00\n", - "Buying DXCM on 2024-09-30 00:00:00\n", - "Buying AMT on 2024-09-30 00:00:00\n", - "Buying GIS on 2024-09-30 00:00:00\n", - "Buying MCK on 2024-09-30 00:00:00\n", - "Buying T on 2024-09-30 00:00:00\n", - "Buying JNJ on 2024-09-30 00:00:00\n", - "Buying SJM on 2024-09-30 00:00:00\n", - "Buying CHD on 2024-09-30 00:00:00\n", - "Buying WEC on 2024-09-30 00:00:00\n", - "Buying HUM on 2024-09-30 00:00:00\n", - "Buying MNST on 2024-09-30 00:00:00\n", - "Buying ES on 2024-09-30 00:00:00\n", - "Buying PG on 2024-09-30 00:00:00\n", - "Buying SO on 2024-09-30 00:00:00\n", - "Buying TSN on 2024-09-30 00:00:00\n", - "Buying LMT on 2024-09-30 00:00:00\n", - "Buying O on 2024-09-30 00:00:00\n", - "Buying D on 2024-09-30 00:00:00\n", - "Buying PEP on 2024-09-30 00:00:00\n", - "Buying CLX on 2024-09-30 00:00:00\n", - "Buying KO on 2024-09-30 00:00:00\n", - "Buying KMB on 2024-09-30 00:00:00\n", - "Buying CMS on 2024-09-30 00:00:00\n", - "Buying XEL on 2024-09-30 00:00:00\n", - "Buying HRL on 2024-09-30 00:00:00\n", - "Buying CCI on 2024-09-30 00:00:00\n", - "Buying CHRW on 2024-09-30 00:00:00\n", - "Buying CME on 2024-09-30 00:00:00\n", - "Buying DUK on 2024-09-30 00:00:00\n", - "Buying AEE on 2024-09-30 00:00:00\n", - "Buying AEP on 2024-09-30 00:00:00\n", - "Buying CL on 2024-09-30 00:00:00\n", - "Buying NOC on 2024-09-30 00:00:00\n", - "Buying CAG on 2024-09-30 00:00:00\n", - "Buying PPL on 2024-09-30 00:00:00\n", - "Buying ABT on 2024-09-30 00:00:00\n", - "Buying FE on 2024-09-30 00:00:00\n", - "Buying MO on 2024-09-30 00:00:00\n", - "Buying COR on 2024-09-30 00:00:00\n", - "Buying VTR on 2024-09-30 00:00:00\n", - "Buying EVRG on 2024-09-30 00:00:00\n", - "Buying EXC on 2024-09-30 00:00:00\n", - "Buying GILD on 2024-09-30 00:00:00\n", - "Buying PM on 2024-09-30 00:00:00\n", - "Buying UNH on 2024-09-30 00:00:00\n", - "Buying HSY on 2024-09-30 00:00:00\n", - "Selling FSLR on 2024-09-30 00:00:00\n", - "Selling RCL on 2024-09-30 00:00:00\n", - "Selling BLDR on 2024-09-30 00:00:00\n", - "Selling AMZN on 2024-09-30 00:00:00\n", - "Selling UAL on 2024-09-30 00:00:00\n", - "Selling KKR on 2024-09-30 00:00:00\n", - "Selling PH on 2024-09-30 00:00:00\n", - "Selling URI on 2024-09-30 00:00:00\n", - "Selling TXN on 2024-09-30 00:00:00\n", - "Selling HPE on 2024-09-30 00:00:00\n", - "Selling CCL on 2024-09-30 00:00:00\n", - "Selling JBL on 2024-09-30 00:00:00\n", - "Selling APO on 2024-09-30 00:00:00\n", - "Selling MRNA on 2024-09-30 00:00:00\n", - "Selling KEYS on 2024-09-30 00:00:00\n", - "Selling FCX on 2024-09-30 00:00:00\n", - "Selling LW on 2024-09-30 00:00:00\n", - "Selling PWR on 2024-09-30 00:00:00\n", - "Selling ETN on 2024-09-30 00:00:00\n", - "Selling NCLH on 2024-09-30 00:00:00\n", - "Selling APH on 2024-09-30 00:00:00\n", - "Selling CZR on 2024-09-30 00:00:00\n", - "Selling SWKS on 2024-09-30 00:00:00\n", - "Selling WDC on 2024-09-30 00:00:00\n", - "Selling CDNS on 2024-09-30 00:00:00\n", - "Selling PLTR on 2024-09-30 00:00:00\n", - "Selling ALB on 2024-09-30 00:00:00\n", - "Selling ADI on 2024-09-30 00:00:00\n", - "Selling CEG on 2024-09-30 00:00:00\n", - "Selling GEV on 2024-09-30 00:00:00\n", - "Selling NXPI on 2024-09-30 00:00:00\n", - "Selling SNPS on 2024-09-30 00:00:00\n", - "Selling AMD on 2024-09-30 00:00:00\n", - "Selling ANET on 2024-09-30 00:00:00\n", - "Selling MCHP on 2024-09-30 00:00:00\n", - "Selling DELL on 2024-09-30 00:00:00\n", - "Selling MU on 2024-09-30 00:00:00\n", - "Selling QCOM on 2024-09-30 00:00:00\n", - "Selling SMCI on 2024-09-30 00:00:00\n", - "Selling ON on 2024-09-30 00:00:00\n", - "Selling VST on 2024-09-30 00:00:00\n", - "Selling LRCX on 2024-09-30 00:00:00\n", - "Selling AMAT on 2024-09-30 00:00:00\n", - "Selling TSLA on 2024-09-30 00:00:00\n", - "Selling TER on 2024-09-30 00:00:00\n", - "Selling KLAC on 2024-09-30 00:00:00\n", - "Selling AVGO on 2024-09-30 00:00:00\n", - "Selling INTC on 2024-09-30 00:00:00\n", - "Selling MPWR on 2024-09-30 00:00:00\n", - "Selling NVDA on 2024-09-30 00:00:00\n", - "Buying ETR on 2024-10-31 00:00:00\n", - "Buying MCK on 2024-10-31 00:00:00\n", - "Buying CBOE on 2024-10-31 00:00:00\n", - "Buying AMT on 2024-10-31 00:00:00\n", - "Buying T on 2024-10-31 00:00:00\n", - "Buying MNST on 2024-10-31 00:00:00\n", - "Buying XEL on 2024-10-31 00:00:00\n", - "Buying MO on 2024-10-31 00:00:00\n", - "Buying PAYC on 2024-10-31 00:00:00\n", - "Buying CCI on 2024-10-31 00:00:00\n", - "Buying SO on 2024-10-31 00:00:00\n", - "Buying ED on 2024-10-31 00:00:00\n", - "Buying DUK on 2024-10-31 00:00:00\n", - "Buying SBAC on 2024-10-31 00:00:00\n", - "Buying COR on 2024-10-31 00:00:00\n", - "Buying D on 2024-10-31 00:00:00\n", - "Buying AEP on 2024-10-31 00:00:00\n", - "Buying CPB on 2024-10-31 00:00:00\n", - "Buying IP on 2024-10-31 00:00:00\n", - "Buying ES on 2024-10-31 00:00:00\n", - "Buying AEE on 2024-10-31 00:00:00\n", - "Buying GIS on 2024-10-31 00:00:00\n", - "Buying WTW on 2024-10-31 00:00:00\n", - "Buying BMY on 2024-10-31 00:00:00\n", - "Buying VZ on 2024-10-31 00:00:00\n", - "Buying PNW on 2024-10-31 00:00:00\n", - "Buying CHD on 2024-10-31 00:00:00\n", - "Buying WEC on 2024-10-31 00:00:00\n", - "Buying COP on 2024-10-31 00:00:00\n", - "Buying PG on 2024-10-31 00:00:00\n", - "Buying CLX on 2024-10-31 00:00:00\n", - "Buying MKC on 2024-10-31 00:00:00\n", - "Buying HRL on 2024-10-31 00:00:00\n", - "Buying LNT on 2024-10-31 00:00:00\n", - "Buying NI on 2024-10-31 00:00:00\n", - "Buying CMS on 2024-10-31 00:00:00\n", - "Buying PPL on 2024-10-31 00:00:00\n", - "Buying PM on 2024-10-31 00:00:00\n", - "Buying SJM on 2024-10-31 00:00:00\n", - "Buying EVRG on 2024-10-31 00:00:00\n", - "Buying DG on 2024-10-31 00:00:00\n", - "Buying CAG on 2024-10-31 00:00:00\n", - "Buying CME on 2024-10-31 00:00:00\n", - "Buying PEP on 2024-10-31 00:00:00\n", - "Buying HSY on 2024-10-31 00:00:00\n", - "Buying LMT on 2024-10-31 00:00:00\n", - "Buying KMB on 2024-10-31 00:00:00\n", - "Buying SYY on 2024-10-31 00:00:00\n", - "Buying DTE on 2024-10-31 00:00:00\n", - "Buying O on 2024-10-31 00:00:00\n", - "Selling RCL on 2024-10-31 00:00:00\n", - "Selling AMZN on 2024-10-31 00:00:00\n", - "Selling IVZ on 2024-10-31 00:00:00\n", - "Selling UAL on 2024-10-31 00:00:00\n", - "Selling ETN on 2024-10-31 00:00:00\n", - "Selling CZR on 2024-10-31 00:00:00\n", - "Selling REGN on 2024-10-31 00:00:00\n", - "Selling HPE on 2024-10-31 00:00:00\n", - "Selling CCL on 2024-10-31 00:00:00\n", - "Selling FCX on 2024-10-31 00:00:00\n", - "Selling WDC on 2024-10-31 00:00:00\n", - "Selling KEYS on 2024-10-31 00:00:00\n", - "Selling TXN on 2024-10-31 00:00:00\n", - "Selling APH on 2024-10-31 00:00:00\n", - "Selling CRWD on 2024-10-31 00:00:00\n", - "Selling UBER on 2024-10-31 00:00:00\n", - "Selling HII on 2024-10-31 00:00:00\n", - "Selling MGM on 2024-10-31 00:00:00\n", - "Selling PWR on 2024-10-31 00:00:00\n", - "Selling ALGN on 2024-10-31 00:00:00\n", - "Selling VST on 2024-10-31 00:00:00\n", - "Selling DECK on 2024-10-31 00:00:00\n", - "Selling EL on 2024-10-31 00:00:00\n", - "Selling FSLR on 2024-10-31 00:00:00\n", - "Selling APTV on 2024-10-31 00:00:00\n", - "Selling ENPH on 2024-10-31 00:00:00\n", - "Selling SNPS on 2024-10-31 00:00:00\n", - "Selling CDNS on 2024-10-31 00:00:00\n", - "Selling ANET on 2024-10-31 00:00:00\n", - "Selling ADI on 2024-10-31 00:00:00\n", - "Selling PLTR on 2024-10-31 00:00:00\n", - "Selling SWKS on 2024-10-31 00:00:00\n", - "Selling MU on 2024-10-31 00:00:00\n", - "Selling DELL on 2024-10-31 00:00:00\n", - "Selling QCOM on 2024-10-31 00:00:00\n", - "Selling NXPI on 2024-10-31 00:00:00\n", - "Selling TSLA on 2024-10-31 00:00:00\n", - "Selling MCHP on 2024-10-31 00:00:00\n", - "Selling ALB on 2024-10-31 00:00:00\n", - "Selling SMCI on 2024-10-31 00:00:00\n", - "Selling LRCX on 2024-10-31 00:00:00\n", - "Selling AMAT on 2024-10-31 00:00:00\n", - "Selling TER on 2024-10-31 00:00:00\n", - "Selling AMD on 2024-10-31 00:00:00\n", - "Selling INTC on 2024-10-31 00:00:00\n", - "Selling ON on 2024-10-31 00:00:00\n", - "Selling NVDA on 2024-10-31 00:00:00\n", - "Selling KLAC on 2024-10-31 00:00:00\n", - "Selling AVGO on 2024-10-31 00:00:00\n", - "Selling MPWR on 2024-10-31 00:00:00\n", - "Generated 16528 orders.\n" - ] - } - ], + "outputs": [], "source": [ "import pickle\n", "import pandas as pd\n", @@ -16593,7 +50,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -16682,3670 +139,3670 @@ "2010-04-28 00:00:00: Portfolio Value - 100000.00\n", "2010-04-29 00:00:00: Portfolio Value - 100000.00\n", "2010-04-30 00:00:00: Portfolio Value - 100000.00\n", - "2010-05-03 00:00:00: Portfolio Value - 107024.17\n", - "2010-05-04 00:00:00: Portfolio Value - 91037.45\n", - "2010-05-05 00:00:00: Portfolio Value - 96135.93\n", - "2010-05-06 00:00:00: Portfolio Value - 60016.49\n", - "2010-05-07 00:00:00: Portfolio Value - 43142.43\n", - "2010-05-10 00:00:00: Portfolio Value - 87214.59\n", - "2010-05-11 00:00:00: Portfolio Value - 88378.43\n", - "2010-05-12 00:00:00: Portfolio Value - 96358.27\n", - "2010-05-13 00:00:00: Portfolio Value - 86284.51\n", - "2010-05-14 00:00:00: Portfolio Value - 76583.66\n", - "2010-05-17 00:00:00: Portfolio Value - 98071.67\n", - "2010-05-18 00:00:00: Portfolio Value - 81766.10\n", - "2010-05-19 00:00:00: Portfolio Value - 77058.81\n", - "2010-05-20 00:00:00: Portfolio Value - 29912.11\n", - "2010-05-21 00:00:00: Portfolio Value - 30860.45\n", - "2010-05-24 00:00:00: Portfolio Value - 27374.29\n", - "2010-05-25 00:00:00: Portfolio Value - 33516.42\n", - "2010-05-26 00:00:00: Portfolio Value - 15127.55\n", - "2010-05-27 00:00:00: Portfolio Value - 40393.98\n", - "2010-05-28 00:00:00: Portfolio Value - 34984.10\n", - "2010-06-01 00:00:00: Portfolio Value - 29772.15\n", - "2010-06-02 00:00:00: Portfolio Value - 46694.97\n", - "2010-06-03 00:00:00: Portfolio Value - 57874.27\n", - "2010-06-04 00:00:00: Portfolio Value - 16412.51\n", - "2010-06-07 00:00:00: Portfolio Value - 11868.71\n", - "2010-06-08 00:00:00: Portfolio Value - 34751.29\n", - "2010-06-09 00:00:00: Portfolio Value - 27924.80\n", - "2010-06-10 00:00:00: Portfolio Value - 46585.87\n", - "2010-06-11 00:00:00: Portfolio Value - 51788.93\n", - "2010-06-14 00:00:00: Portfolio Value - 58149.61\n", - "2010-06-15 00:00:00: Portfolio Value - 82246.72\n", - "2010-06-16 00:00:00: Portfolio Value - 82965.81\n", - "2010-06-17 00:00:00: Portfolio Value - 88908.09\n", - "2010-06-18 00:00:00: Portfolio Value - 87692.47\n", - "2010-06-21 00:00:00: Portfolio Value - 82800.71\n", - "2010-06-22 00:00:00: Portfolio Value - 70816.44\n", - "2010-06-23 00:00:00: Portfolio Value - 64022.61\n", - "2010-06-24 00:00:00: Portfolio Value - 56718.78\n", - "2010-06-25 00:00:00: Portfolio Value - 49657.65\n", - "2010-06-28 00:00:00: Portfolio Value - 57613.35\n", - "2010-06-29 00:00:00: Portfolio Value - 38653.28\n", - "2010-06-30 00:00:00: Portfolio Value - 26817.09\n", - "2010-07-01 00:00:00: Portfolio Value - 25850.21\n", - "2010-07-02 00:00:00: Portfolio Value - 27094.43\n", - "2010-07-06 00:00:00: Portfolio Value - 30472.82\n", - "2010-07-07 00:00:00: Portfolio Value - 58474.67\n", - "2010-07-08 00:00:00: Portfolio Value - 75038.02\n", - "2010-07-09 00:00:00: Portfolio Value - 82711.22\n", - "2010-07-12 00:00:00: Portfolio Value - 94517.97\n", - "2010-07-13 00:00:00: Portfolio Value - 110821.57\n", - "2010-07-14 00:00:00: Portfolio Value - 113423.66\n", - "2010-07-15 00:00:00: Portfolio Value - 110520.27\n", - "2010-07-16 00:00:00: Portfolio Value - 82038.19\n", - "2010-07-19 00:00:00: Portfolio Value - 89906.40\n", - "2010-07-20 00:00:00: Portfolio Value - 102078.16\n", - "2010-07-21 00:00:00: Portfolio Value - 78089.17\n", - "2010-07-22 00:00:00: Portfolio Value - 98198.20\n", - "2010-07-23 00:00:00: Portfolio Value - 107807.21\n", - "2010-07-26 00:00:00: Portfolio Value - 129313.92\n", - "2010-07-27 00:00:00: Portfolio Value - 136148.15\n", - "2010-07-28 00:00:00: Portfolio Value - 122278.31\n", - "2010-07-29 00:00:00: Portfolio Value - 105788.09\n", - "2010-07-30 00:00:00: Portfolio Value - 123989.05\n", - "2010-08-02 00:00:00: Portfolio Value - 141168.32\n", - "2010-08-03 00:00:00: Portfolio Value - 126142.64\n", - "2010-08-04 00:00:00: Portfolio Value - 135569.23\n", - "2010-08-05 00:00:00: Portfolio Value - 133008.53\n", - "2010-08-06 00:00:00: Portfolio Value - 140336.89\n", - "2010-08-09 00:00:00: Portfolio Value - 150379.89\n", - "2010-08-10 00:00:00: Portfolio Value - 151279.34\n", - "2010-08-11 00:00:00: Portfolio Value - 121734.54\n", - "2010-08-12 00:00:00: Portfolio Value - 123871.10\n", - "2010-08-13 00:00:00: Portfolio Value - 122617.71\n", - "2010-08-16 00:00:00: Portfolio Value - 121387.19\n", - "2010-08-17 00:00:00: Portfolio Value - 144568.08\n", - "2010-08-18 00:00:00: Portfolio Value - 149537.14\n", - "2010-08-19 00:00:00: Portfolio Value - 131571.14\n", - "2010-08-20 00:00:00: Portfolio Value - 135679.95\n", - "2010-08-23 00:00:00: Portfolio Value - 135325.22\n", - "2010-08-24 00:00:00: Portfolio Value - 121911.26\n", - "2010-08-25 00:00:00: Portfolio Value - 127871.64\n", - "2010-08-26 00:00:00: Portfolio Value - 120572.97\n", - "2010-08-27 00:00:00: Portfolio Value - 140458.46\n", - "2010-08-30 00:00:00: Portfolio Value - 122162.58\n", - "2010-08-31 00:00:00: Portfolio Value - 116890.75\n", - "2010-09-01 00:00:00: Portfolio Value - 152099.12\n", - "2010-09-02 00:00:00: Portfolio Value - 163432.08\n", - "2010-09-03 00:00:00: Portfolio Value - 173751.37\n", - "2010-09-07 00:00:00: Portfolio Value - 169797.62\n", - "2010-09-08 00:00:00: Portfolio Value - 173762.36\n", - "2010-09-09 00:00:00: Portfolio Value - 174843.74\n", - "2010-09-10 00:00:00: Portfolio Value - 174790.71\n", - "2010-09-13 00:00:00: Portfolio Value - 180648.90\n", - "2010-09-14 00:00:00: Portfolio Value - 189113.31\n", - "2010-09-15 00:00:00: Portfolio Value - 202583.48\n", - "2010-09-16 00:00:00: Portfolio Value - 198701.73\n", - "2010-09-17 00:00:00: Portfolio Value - 207935.64\n", - "2010-09-20 00:00:00: Portfolio Value - 217143.69\n", - "2010-09-21 00:00:00: Portfolio Value - 207210.43\n", - "2010-09-22 00:00:00: Portfolio Value - 221590.14\n", - "2010-09-23 00:00:00: Portfolio Value - 214209.48\n", - "2010-09-24 00:00:00: Portfolio Value - 237359.96\n", - "2010-09-27 00:00:00: Portfolio Value - 230308.56\n", - "2010-09-28 00:00:00: Portfolio Value - 242199.87\n", - "2010-09-29 00:00:00: Portfolio Value - 243497.14\n", - "2010-09-30 00:00:00: Portfolio Value - 242186.79\n", - "2010-10-01 00:00:00: Portfolio Value - 242923.46\n", - "2010-10-04 00:00:00: Portfolio Value - 242379.68\n", - "2010-10-05 00:00:00: Portfolio Value - 265303.75\n", - "2010-10-06 00:00:00: Portfolio Value - 264623.14\n", - "2010-10-07 00:00:00: Portfolio Value - 260111.43\n", - "2010-10-08 00:00:00: Portfolio Value - 260482.29\n", - "2010-10-11 00:00:00: Portfolio Value - 254211.11\n", - "2010-10-12 00:00:00: Portfolio Value - 251077.57\n", - "2010-10-13 00:00:00: Portfolio Value - 254856.17\n", - "2010-10-14 00:00:00: Portfolio Value - 261772.42\n", - "2010-10-15 00:00:00: Portfolio Value - 260622.36\n", - "2010-10-18 00:00:00: Portfolio Value - 265816.79\n", - "2010-10-19 00:00:00: Portfolio Value - 249371.58\n", - "2010-10-20 00:00:00: Portfolio Value - 265428.29\n", - "2010-10-21 00:00:00: Portfolio Value - 266306.91\n", - "2010-10-22 00:00:00: Portfolio Value - 273432.28\n", - "2010-10-25 00:00:00: Portfolio Value - 275227.43\n", - "2010-10-26 00:00:00: Portfolio Value - 263151.50\n", - "2010-10-27 00:00:00: Portfolio Value - 254269.72\n", - "2010-10-28 00:00:00: Portfolio Value - 247488.89\n", - "2010-10-29 00:00:00: Portfolio Value - 260792.78\n", - "2010-11-01 00:00:00: Portfolio Value - 254424.12\n", - "2010-11-02 00:00:00: Portfolio Value - 261296.12\n", - "2010-11-03 00:00:00: Portfolio Value - 261761.85\n", - "2010-11-04 00:00:00: Portfolio Value - 294974.37\n", - "2010-11-05 00:00:00: Portfolio Value - 292071.45\n", - "2010-11-08 00:00:00: Portfolio Value - 286612.99\n", - "2010-11-09 00:00:00: Portfolio Value - 285535.18\n", - "2010-11-10 00:00:00: Portfolio Value - 300766.93\n", - "2010-11-11 00:00:00: Portfolio Value - 304127.76\n", - "2010-11-12 00:00:00: Portfolio Value - 297632.72\n", - "2010-11-15 00:00:00: Portfolio Value - 306724.34\n", - "2010-11-16 00:00:00: Portfolio Value - 288499.46\n", - "2010-11-17 00:00:00: Portfolio Value - 298971.02\n", - "2010-11-18 00:00:00: Portfolio Value - 311131.05\n", - "2010-11-19 00:00:00: Portfolio Value - 308844.39\n", - "2010-11-22 00:00:00: Portfolio Value - 316525.38\n", - "2010-11-23 00:00:00: Portfolio Value - 301170.02\n", - "2010-11-24 00:00:00: Portfolio Value - 321954.10\n", - "2010-11-26 00:00:00: Portfolio Value - 314950.05\n", - "2010-11-29 00:00:00: Portfolio Value - 304875.91\n", - "2010-11-30 00:00:00: Portfolio Value - 300780.63\n", - "2010-12-01 00:00:00: Portfolio Value - 327598.41\n", - "2010-12-02 00:00:00: Portfolio Value - 340284.50\n", - "2010-12-03 00:00:00: Portfolio Value - 347789.31\n", - "2010-12-06 00:00:00: Portfolio Value - 335298.24\n", - "2010-12-07 00:00:00: Portfolio Value - 343602.28\n", - "2010-12-08 00:00:00: Portfolio Value - 351899.26\n", - "2010-12-09 00:00:00: Portfolio Value - 353278.30\n", - "2010-12-10 00:00:00: Portfolio Value - 362180.57\n", - "2010-12-13 00:00:00: Portfolio Value - 366769.79\n", - "2010-12-14 00:00:00: Portfolio Value - 381080.19\n", - "2010-12-15 00:00:00: Portfolio Value - 383129.53\n", - "2010-12-16 00:00:00: Portfolio Value - 405673.40\n", - "2010-12-17 00:00:00: Portfolio Value - 410854.27\n", - "2010-12-20 00:00:00: Portfolio Value - 412125.92\n", - "2010-12-21 00:00:00: Portfolio Value - 404806.16\n", - "2010-12-22 00:00:00: Portfolio Value - 411439.42\n", - "2010-12-23 00:00:00: Portfolio Value - 413078.89\n", - "2010-12-27 00:00:00: Portfolio Value - 407096.18\n", - "2010-12-28 00:00:00: Portfolio Value - 417031.48\n", - "2010-12-29 00:00:00: Portfolio Value - 421395.37\n", - "2010-12-30 00:00:00: Portfolio Value - 422850.74\n", - "2010-12-31 00:00:00: Portfolio Value - 407950.27\n", - "2011-01-03 00:00:00: Portfolio Value - 398334.32\n", - "2011-01-04 00:00:00: Portfolio Value - 373111.64\n", - "2011-01-05 00:00:00: Portfolio Value - 359169.27\n", - "2011-01-06 00:00:00: Portfolio Value - 343447.99\n", - "2011-01-07 00:00:00: Portfolio Value - 334640.15\n", - "2011-01-10 00:00:00: Portfolio Value - 333969.73\n", - "2011-01-11 00:00:00: Portfolio Value - 334544.09\n", - "2011-01-12 00:00:00: Portfolio Value - 342228.44\n", - "2011-01-13 00:00:00: Portfolio Value - 340458.34\n", - "2011-01-14 00:00:00: Portfolio Value - 346812.55\n", - "2011-01-18 00:00:00: Portfolio Value - 348053.58\n", - "2011-01-19 00:00:00: Portfolio Value - 350779.04\n", - "2011-01-20 00:00:00: Portfolio Value - 357198.64\n", - "2011-01-21 00:00:00: Portfolio Value - 351315.47\n", - "2011-01-24 00:00:00: Portfolio Value - 359802.48\n", - "2011-01-25 00:00:00: Portfolio Value - 370525.72\n", - "2011-01-26 00:00:00: Portfolio Value - 369189.97\n", - "2011-01-27 00:00:00: Portfolio Value - 382293.73\n", - "2011-01-28 00:00:00: Portfolio Value - 348852.80\n", - "2011-01-31 00:00:00: Portfolio Value - 346995.61\n", - "2011-02-01 00:00:00: Portfolio Value - 354325.43\n", - "2011-02-02 00:00:00: Portfolio Value - 338018.39\n", - "2011-02-03 00:00:00: Portfolio Value - 356977.67\n", - "2011-02-04 00:00:00: Portfolio Value - 375952.64\n", - "2011-02-07 00:00:00: Portfolio Value - 377604.81\n", - "2011-02-08 00:00:00: Portfolio Value - 386300.12\n", - "2011-02-09 00:00:00: Portfolio Value - 397513.54\n", - "2011-02-10 00:00:00: Portfolio Value - 397899.82\n", - "2011-02-11 00:00:00: Portfolio Value - 412422.21\n", - "2011-02-14 00:00:00: Portfolio Value - 399077.45\n", - "2011-02-15 00:00:00: Portfolio Value - 401265.30\n", - "2011-02-16 00:00:00: Portfolio Value - 405575.64\n", - "2011-02-17 00:00:00: Portfolio Value - 397193.90\n", - "2011-02-18 00:00:00: Portfolio Value - 417192.21\n", - "2011-02-22 00:00:00: Portfolio Value - 391938.26\n", - "2011-02-23 00:00:00: Portfolio Value - 372004.91\n", - "2011-02-24 00:00:00: Portfolio Value - 370452.58\n", - "2011-02-25 00:00:00: Portfolio Value - 389708.14\n", - "2011-02-28 00:00:00: Portfolio Value - 416188.18\n", - "2011-03-01 00:00:00: Portfolio Value - 415377.48\n", - "2011-03-02 00:00:00: Portfolio Value - 413649.65\n", - "2011-03-03 00:00:00: Portfolio Value - 441606.12\n", - "2011-03-04 00:00:00: Portfolio Value - 433246.19\n", - "2011-03-07 00:00:00: Portfolio Value - 423695.91\n", - "2011-03-08 00:00:00: Portfolio Value - 445781.10\n", - "2011-03-09 00:00:00: Portfolio Value - 447105.69\n", - "2011-03-10 00:00:00: Portfolio Value - 427603.60\n", - "2011-03-11 00:00:00: Portfolio Value - 426155.96\n", - "2011-03-14 00:00:00: Portfolio Value - 404402.67\n", - "2011-03-15 00:00:00: Portfolio Value - 374532.30\n", - "2011-03-16 00:00:00: Portfolio Value - 357156.31\n", - "2011-03-17 00:00:00: Portfolio Value - 368246.70\n", - "2011-03-18 00:00:00: Portfolio Value - 382593.91\n", - "2011-03-21 00:00:00: Portfolio Value - 405215.11\n", - "2011-03-22 00:00:00: Portfolio Value - 402754.84\n", - "2011-03-23 00:00:00: Portfolio Value - 411293.39\n", - "2011-03-24 00:00:00: Portfolio Value - 425811.72\n", - "2011-03-25 00:00:00: Portfolio Value - 433236.15\n", - "2011-03-28 00:00:00: Portfolio Value - 423061.77\n", - "2011-03-29 00:00:00: Portfolio Value - 437922.14\n", - "2011-03-30 00:00:00: Portfolio Value - 452343.73\n", - "2011-03-31 00:00:00: Portfolio Value - 464832.70\n", - "2011-04-01 00:00:00: Portfolio Value - 484863.08\n", - "2011-04-04 00:00:00: Portfolio Value - 491458.79\n", - "2011-04-05 00:00:00: Portfolio Value - 493848.14\n", - "2011-04-06 00:00:00: Portfolio Value - 516483.90\n", - "2011-04-07 00:00:00: Portfolio Value - 516503.67\n", - "2011-04-08 00:00:00: Portfolio Value - 507826.14\n", - "2011-04-11 00:00:00: Portfolio Value - 505002.39\n", - "2011-04-12 00:00:00: Portfolio Value - 514440.57\n", - "2011-04-13 00:00:00: Portfolio Value - 519471.63\n", - "2011-04-14 00:00:00: Portfolio Value - 526787.81\n", - "2011-04-15 00:00:00: Portfolio Value - 542525.46\n", - "2011-04-18 00:00:00: Portfolio Value - 525118.48\n", - "2011-04-19 00:00:00: Portfolio Value - 523482.38\n", - "2011-04-20 00:00:00: Portfolio Value - 548739.36\n", - "2011-04-21 00:00:00: Portfolio Value - 551605.05\n", - "2011-04-25 00:00:00: Portfolio Value - 543602.48\n", - "2011-04-26 00:00:00: Portfolio Value - 560724.79\n", - "2011-04-27 00:00:00: Portfolio Value - 570276.88\n", - "2011-04-28 00:00:00: Portfolio Value - 594227.56\n", - "2011-04-29 00:00:00: Portfolio Value - 592832.51\n", - "2011-05-02 00:00:00: Portfolio Value - 597665.54\n", - "2011-05-03 00:00:00: Portfolio Value - 613189.86\n", - "2011-05-04 00:00:00: Portfolio Value - 608741.41\n", - "2011-05-05 00:00:00: Portfolio Value - 602890.64\n", - "2011-05-06 00:00:00: Portfolio Value - 601654.74\n", - "2011-05-09 00:00:00: Portfolio Value - 615765.23\n", - "2011-05-10 00:00:00: Portfolio Value - 634741.61\n", - "2011-05-11 00:00:00: Portfolio Value - 633868.19\n", - "2011-05-12 00:00:00: Portfolio Value - 662365.60\n", - "2011-05-13 00:00:00: Portfolio Value - 650441.24\n", - "2011-05-16 00:00:00: Portfolio Value - 644173.70\n", - "2011-05-17 00:00:00: Portfolio Value - 637645.57\n", - "2011-05-18 00:00:00: Portfolio Value - 644470.00\n", - "2011-05-19 00:00:00: Portfolio Value - 641878.88\n", - "2011-05-20 00:00:00: Portfolio Value - 630103.97\n", - "2011-05-23 00:00:00: Portfolio Value - 611914.83\n", - "2011-05-24 00:00:00: Portfolio Value - 637860.40\n", - "2011-05-25 00:00:00: Portfolio Value - 648114.83\n", - "2011-05-26 00:00:00: Portfolio Value - 650957.79\n", - "2011-05-27 00:00:00: Portfolio Value - 656399.62\n", - "2011-05-31 00:00:00: Portfolio Value - 669862.81\n", - "2011-06-01 00:00:00: Portfolio Value - 655224.65\n", - "2011-06-02 00:00:00: Portfolio Value - 644933.70\n", - "2011-06-03 00:00:00: Portfolio Value - 621597.47\n", - "2011-06-06 00:00:00: Portfolio Value - 616166.10\n", - "2011-06-07 00:00:00: Portfolio Value - 611503.13\n", - "2011-06-08 00:00:00: Portfolio Value - 617421.85\n", - "2011-06-09 00:00:00: Portfolio Value - 625733.33\n", - "2011-06-10 00:00:00: Portfolio Value - 597258.62\n", - "2011-06-13 00:00:00: Portfolio Value - 596455.58\n", - "2011-06-14 00:00:00: Portfolio Value - 613650.51\n", - "2011-06-15 00:00:00: Portfolio Value - 589384.94\n", - "2011-06-16 00:00:00: Portfolio Value - 597108.48\n", - "2011-06-17 00:00:00: Portfolio Value - 608782.97\n", - "2011-06-20 00:00:00: Portfolio Value - 620084.92\n", - "2011-06-21 00:00:00: Portfolio Value - 624750.15\n", - "2011-06-22 00:00:00: Portfolio Value - 620255.05\n", - "2011-06-23 00:00:00: Portfolio Value - 607837.30\n", - "2011-06-24 00:00:00: Portfolio Value - 596366.02\n", - "2011-06-27 00:00:00: Portfolio Value - 604783.27\n", - "2011-06-28 00:00:00: Portfolio Value - 612585.69\n", - "2011-06-29 00:00:00: Portfolio Value - 618607.77\n", - "2011-06-30 00:00:00: Portfolio Value - 634251.06\n", - "2011-07-01 00:00:00: Portfolio Value - 660353.94\n", - "2011-07-05 00:00:00: Portfolio Value - 654846.62\n", - "2011-07-06 00:00:00: Portfolio Value - 670681.21\n", - "2011-07-07 00:00:00: Portfolio Value - 676793.29\n", - "2011-07-08 00:00:00: Portfolio Value - 665904.04\n", - "2011-07-11 00:00:00: Portfolio Value - 652170.56\n", - "2011-07-12 00:00:00: Portfolio Value - 658932.57\n", - "2011-07-13 00:00:00: Portfolio Value - 656134.16\n", - "2011-07-14 00:00:00: Portfolio Value - 652556.01\n", - "2011-07-15 00:00:00: Portfolio Value - 653044.61\n", - "2011-07-18 00:00:00: Portfolio Value - 631440.32\n", - "2011-07-19 00:00:00: Portfolio Value - 639479.14\n", - "2011-07-20 00:00:00: Portfolio Value - 634800.51\n", - "2011-07-21 00:00:00: Portfolio Value - 650372.05\n", - "2011-07-22 00:00:00: Portfolio Value - 646426.02\n", - "2011-07-25 00:00:00: Portfolio Value - 634469.30\n", - "2011-07-26 00:00:00: Portfolio Value - 630062.01\n", - "2011-07-27 00:00:00: Portfolio Value - 606569.34\n", - "2011-07-28 00:00:00: Portfolio Value - 594063.19\n", - "2011-07-29 00:00:00: Portfolio Value - 584007.99\n", - "2011-08-01 00:00:00: Portfolio Value - 565013.59\n", - "2011-08-02 00:00:00: Portfolio Value - 530307.54\n", - "2011-08-03 00:00:00: Portfolio Value - 551415.11\n", - "2011-08-04 00:00:00: Portfolio Value - 482829.24\n", - "2011-08-05 00:00:00: Portfolio Value - 508540.75\n", - "2011-08-08 00:00:00: Portfolio Value - 398422.12\n", - "2011-08-09 00:00:00: Portfolio Value - 484843.72\n", - "2011-08-10 00:00:00: Portfolio Value - 418476.04\n", - "2011-08-11 00:00:00: Portfolio Value - 507182.01\n", - "2011-08-12 00:00:00: Portfolio Value - 522848.91\n", - "2011-08-15 00:00:00: Portfolio Value - 552920.93\n", - "2011-08-16 00:00:00: Portfolio Value - 550871.09\n", - "2011-08-17 00:00:00: Portfolio Value - 556543.67\n", - "2011-08-18 00:00:00: Portfolio Value - 513109.51\n", - "2011-08-19 00:00:00: Portfolio Value - 518555.78\n", - "2011-08-22 00:00:00: Portfolio Value - 536635.98\n", - "2011-08-23 00:00:00: Portfolio Value - 584737.76\n", - "2011-08-24 00:00:00: Portfolio Value - 610863.89\n", - "2011-08-25 00:00:00: Portfolio Value - 569661.65\n", - "2011-08-26 00:00:00: Portfolio Value - 599174.83\n", - "2011-08-29 00:00:00: Portfolio Value - 647253.72\n", - "2011-08-30 00:00:00: Portfolio Value - 655059.70\n", - "2011-08-31 00:00:00: Portfolio Value - 661685.36\n", - "2011-09-01 00:00:00: Portfolio Value - 659565.24\n", - "2011-09-02 00:00:00: Portfolio Value - 626457.41\n", - "2011-09-06 00:00:00: Portfolio Value - 619546.37\n", - "2011-09-07 00:00:00: Portfolio Value - 664056.97\n", - "2011-09-08 00:00:00: Portfolio Value - 650919.65\n", - "2011-09-09 00:00:00: Portfolio Value - 600375.67\n", - "2011-09-12 00:00:00: Portfolio Value - 603851.06\n", - "2011-09-13 00:00:00: Portfolio Value - 622285.89\n", - "2011-09-14 00:00:00: Portfolio Value - 654370.22\n", - "2011-09-15 00:00:00: Portfolio Value - 674704.73\n", - "2011-09-16 00:00:00: Portfolio Value - 702975.89\n", - "2011-09-19 00:00:00: Portfolio Value - 690749.16\n", - "2011-09-20 00:00:00: Portfolio Value - 699219.83\n", - "2011-09-21 00:00:00: Portfolio Value - 650691.82\n", - "2011-09-22 00:00:00: Portfolio Value - 611051.46\n", - "2011-09-23 00:00:00: Portfolio Value - 637853.85\n", - "2011-09-26 00:00:00: Portfolio Value - 671598.70\n", - "2011-09-27 00:00:00: Portfolio Value - 693716.94\n", - "2011-09-28 00:00:00: Portfolio Value - 663197.71\n", - "2011-09-29 00:00:00: Portfolio Value - 680866.76\n", - "2011-09-30 00:00:00: Portfolio Value - 674128.23\n", - "2011-10-03 00:00:00: Portfolio Value - 617381.46\n", - "2011-10-04 00:00:00: Portfolio Value - 656123.25\n", - "2011-10-05 00:00:00: Portfolio Value - 658982.96\n", - "2011-10-06 00:00:00: Portfolio Value - 679546.67\n", - "2011-10-07 00:00:00: Portfolio Value - 683343.38\n", - "2011-10-10 00:00:00: Portfolio Value - 733717.22\n", - "2011-10-11 00:00:00: Portfolio Value - 710104.61\n", - "2011-10-12 00:00:00: Portfolio Value - 714367.02\n", - "2011-10-13 00:00:00: Portfolio Value - 716427.94\n", - "2011-10-14 00:00:00: Portfolio Value - 732750.61\n", - "2011-10-17 00:00:00: Portfolio Value - 704688.69\n", - "2011-10-18 00:00:00: Portfolio Value - 732706.92\n", - "2011-10-19 00:00:00: Portfolio Value - 735296.63\n", - "2011-10-20 00:00:00: Portfolio Value - 748344.97\n", - "2011-10-21 00:00:00: Portfolio Value - 792274.74\n", - "2011-10-24 00:00:00: Portfolio Value - 799608.79\n", - "2011-10-25 00:00:00: Portfolio Value - 759727.63\n", - "2011-10-26 00:00:00: Portfolio Value - 758365.81\n", - "2011-10-27 00:00:00: Portfolio Value - 792258.58\n", - "2011-10-28 00:00:00: Portfolio Value - 769693.32\n", - "2011-10-31 00:00:00: Portfolio Value - 748739.84\n", - "2011-11-01 00:00:00: Portfolio Value - 720769.58\n", - "2011-11-02 00:00:00: Portfolio Value - 737733.86\n", - "2011-11-03 00:00:00: Portfolio Value - 766832.96\n", - "2011-11-04 00:00:00: Portfolio Value - 767898.53\n", - "2011-11-07 00:00:00: Portfolio Value - 783726.41\n", - "2011-11-08 00:00:00: Portfolio Value - 810313.23\n", - "2011-11-09 00:00:00: Portfolio Value - 754238.48\n", - "2011-11-10 00:00:00: Portfolio Value - 779682.64\n", - "2011-11-11 00:00:00: Portfolio Value - 814085.27\n", - "2011-11-14 00:00:00: Portfolio Value - 796502.78\n", - "2011-11-15 00:00:00: Portfolio Value - 801994.94\n", - "2011-11-16 00:00:00: Portfolio Value - 765981.18\n", - "2011-11-17 00:00:00: Portfolio Value - 743617.88\n", - "2011-11-18 00:00:00: Portfolio Value - 747937.32\n", - "2011-11-21 00:00:00: Portfolio Value - 713691.15\n", - "2011-11-22 00:00:00: Portfolio Value - 700657.23\n", - "2011-11-23 00:00:00: Portfolio Value - 665304.51\n", - "2011-11-25 00:00:00: Portfolio Value - 686562.78\n", - "2011-11-28 00:00:00: Portfolio Value - 706634.40\n", - "2011-11-29 00:00:00: Portfolio Value - 720117.64\n", - "2011-11-30 00:00:00: Portfolio Value - 775353.12\n", - "2011-12-01 00:00:00: Portfolio Value - 782300.16\n", - "2011-12-02 00:00:00: Portfolio Value - 765049.75\n", - "2011-12-05 00:00:00: Portfolio Value - 788547.57\n", - "2011-12-06 00:00:00: Portfolio Value - 799780.98\n", - "2011-12-07 00:00:00: Portfolio Value - 794032.24\n", - "2011-12-08 00:00:00: Portfolio Value - 766253.40\n", - "2011-12-09 00:00:00: Portfolio Value - 788847.39\n", - "2011-12-12 00:00:00: Portfolio Value - 780230.96\n", - "2011-12-13 00:00:00: Portfolio Value - 767202.15\n", - "2011-12-14 00:00:00: Portfolio Value - 760806.57\n", - "2011-12-15 00:00:00: Portfolio Value - 781156.22\n", - "2011-12-16 00:00:00: Portfolio Value - 778537.41\n", - "2011-12-19 00:00:00: Portfolio Value - 764142.54\n", - "2011-12-20 00:00:00: Portfolio Value - 804683.89\n", - "2011-12-21 00:00:00: Portfolio Value - 828195.77\n", - "2011-12-22 00:00:00: Portfolio Value - 824569.99\n", - "2011-12-23 00:00:00: Portfolio Value - 849670.10\n", - "2011-12-27 00:00:00: Portfolio Value - 858317.12\n", - "2011-12-28 00:00:00: Portfolio Value - 841722.59\n", - "2011-12-29 00:00:00: Portfolio Value - 854761.01\n", - "2011-12-30 00:00:00: Portfolio Value - 840728.06\n", - "2012-01-03 00:00:00: Portfolio Value - 824348.77\n", - "2012-01-04 00:00:00: Portfolio Value - 819219.08\n", - "2012-01-05 00:00:00: Portfolio Value - 832285.44\n", - "2012-01-06 00:00:00: Portfolio Value - 837959.92\n", - "2012-01-09 00:00:00: Portfolio Value - 835383.18\n", - "2012-01-10 00:00:00: Portfolio Value - 840305.85\n", - "2012-01-11 00:00:00: Portfolio Value - 837676.93\n", - "2012-01-12 00:00:00: Portfolio Value - 845442.95\n", - "2012-01-13 00:00:00: Portfolio Value - 842281.08\n", - "2012-01-17 00:00:00: Portfolio Value - 849011.44\n", - "2012-01-18 00:00:00: Portfolio Value - 855193.61\n", - "2012-01-19 00:00:00: Portfolio Value - 862534.29\n", - "2012-01-20 00:00:00: Portfolio Value - 868050.73\n", - "2012-01-23 00:00:00: Portfolio Value - 857463.46\n", - "2012-01-24 00:00:00: Portfolio Value - 849417.98\n", - "2012-01-25 00:00:00: Portfolio Value - 864802.95\n", - "2012-01-26 00:00:00: Portfolio Value - 867787.32\n", - "2012-01-27 00:00:00: Portfolio Value - 848135.91\n", - "2012-01-30 00:00:00: Portfolio Value - 843993.33\n", - "2012-01-31 00:00:00: Portfolio Value - 850872.16\n", - "2012-02-01 00:00:00: Portfolio Value - 880394.94\n", - "2012-02-02 00:00:00: Portfolio Value - 874076.99\n", - "2012-02-03 00:00:00: Portfolio Value - 888394.00\n", - "2012-02-06 00:00:00: Portfolio Value - 877530.98\n", - "2012-02-07 00:00:00: Portfolio Value - 878612.44\n", - "2012-02-08 00:00:00: Portfolio Value - 871930.22\n", - "2012-02-09 00:00:00: Portfolio Value - 883417.53\n", - "2012-02-10 00:00:00: Portfolio Value - 874378.17\n", - "2012-02-13 00:00:00: Portfolio Value - 890869.06\n", - "2012-02-14 00:00:00: Portfolio Value - 894101.73\n", - "2012-02-15 00:00:00: Portfolio Value - 870051.44\n", - "2012-02-16 00:00:00: Portfolio Value - 886152.92\n", - "2012-02-17 00:00:00: Portfolio Value - 893514.94\n", - "2012-02-21 00:00:00: Portfolio Value - 891357.69\n", - "2012-02-22 00:00:00: Portfolio Value - 888834.48\n", - "2012-02-23 00:00:00: Portfolio Value - 903355.44\n", - "2012-02-24 00:00:00: Portfolio Value - 907261.67\n", - "2012-02-27 00:00:00: Portfolio Value - 915769.45\n", - "2012-02-28 00:00:00: Portfolio Value - 934686.42\n", - "2012-02-29 00:00:00: Portfolio Value - 936853.89\n", - "2012-03-01 00:00:00: Portfolio Value - 941181.94\n", - "2012-03-02 00:00:00: Portfolio Value - 936318.84\n", - "2012-03-05 00:00:00: Portfolio Value - 962446.63\n", - "2012-03-06 00:00:00: Portfolio Value - 952614.82\n", - "2012-03-07 00:00:00: Portfolio Value - 951087.84\n", - "2012-03-08 00:00:00: Portfolio Value - 954901.22\n", - "2012-03-09 00:00:00: Portfolio Value - 971410.54\n", - "2012-03-12 00:00:00: Portfolio Value - 975122.35\n", - "2012-03-13 00:00:00: Portfolio Value - 982139.51\n", - "2012-03-14 00:00:00: Portfolio Value - 985172.84\n", - "2012-03-15 00:00:00: Portfolio Value - 984968.93\n", - "2012-03-16 00:00:00: Portfolio Value - 979765.26\n", - "2012-03-19 00:00:00: Portfolio Value - 977985.01\n", - "2012-03-20 00:00:00: Portfolio Value - 972833.94\n", - "2012-03-21 00:00:00: Portfolio Value - 969536.21\n", - "2012-03-22 00:00:00: Portfolio Value - 973102.96\n", - "2012-03-23 00:00:00: Portfolio Value - 972586.83\n", - "2012-03-26 00:00:00: Portfolio Value - 997429.92\n", - "2012-03-27 00:00:00: Portfolio Value - 997158.32\n", - "2012-03-28 00:00:00: Portfolio Value - 986906.65\n", - "2012-03-29 00:00:00: Portfolio Value - 982277.91\n", - "2012-03-30 00:00:00: Portfolio Value - 981844.35\n", - "2012-04-02 00:00:00: Portfolio Value - 1006887.24\n", - "2012-04-03 00:00:00: Portfolio Value - 1010854.54\n", - "2012-04-04 00:00:00: Portfolio Value - 1002461.72\n", - "2012-04-05 00:00:00: Portfolio Value - 1008677.51\n", - "2012-04-09 00:00:00: Portfolio Value - 990917.16\n", - "2012-04-10 00:00:00: Portfolio Value - 958181.67\n", - "2012-04-11 00:00:00: Portfolio Value - 975485.89\n", - "2012-04-12 00:00:00: Portfolio Value - 985308.79\n", - "2012-04-13 00:00:00: Portfolio Value - 974615.11\n", - "2012-04-16 00:00:00: Portfolio Value - 976275.34\n", - "2012-04-17 00:00:00: Portfolio Value - 994382.54\n", - "2012-04-18 00:00:00: Portfolio Value - 984671.32\n", - "2012-04-19 00:00:00: Portfolio Value - 979790.91\n", - "2012-04-20 00:00:00: Portfolio Value - 1000271.17\n", - "2012-04-23 00:00:00: Portfolio Value - 983897.68\n", - "2012-04-24 00:00:00: Portfolio Value - 993550.83\n", - "2012-04-25 00:00:00: Portfolio Value - 1017667.63\n", - "2012-04-26 00:00:00: Portfolio Value - 1053484.15\n", - "2012-04-27 00:00:00: Portfolio Value - 1062775.11\n", - "2012-04-30 00:00:00: Portfolio Value - 1058396.42\n", - "2012-05-01 00:00:00: Portfolio Value - 1056628.16\n", - "2012-05-02 00:00:00: Portfolio Value - 1062981.82\n", - "2012-05-03 00:00:00: Portfolio Value - 1058783.67\n", - "2012-05-04 00:00:00: Portfolio Value - 1040960.76\n", - "2012-05-07 00:00:00: Portfolio Value - 1039876.40\n", - "2012-05-08 00:00:00: Portfolio Value - 1039331.60\n", - "2012-05-09 00:00:00: Portfolio Value - 1034868.51\n", - "2012-05-10 00:00:00: Portfolio Value - 1053191.58\n", - "2012-05-11 00:00:00: Portfolio Value - 1054570.61\n", - "2012-05-14 00:00:00: Portfolio Value - 1026750.53\n", - "2012-05-15 00:00:00: Portfolio Value - 1037993.11\n", - "2012-05-16 00:00:00: Portfolio Value - 1046288.85\n", - "2012-05-17 00:00:00: Portfolio Value - 981623.09\n", - "2012-05-18 00:00:00: Portfolio Value - 981016.32\n", - "2012-05-21 00:00:00: Portfolio Value - 982395.09\n", - "2012-05-22 00:00:00: Portfolio Value - 978001.02\n", - "2012-05-23 00:00:00: Portfolio Value - 1001878.59\n", - "2012-05-24 00:00:00: Portfolio Value - 1006653.22\n", - "2012-05-25 00:00:00: Portfolio Value - 1012477.86\n", - "2012-05-29 00:00:00: Portfolio Value - 1035194.88\n", - "2012-05-30 00:00:00: Portfolio Value - 1013786.82\n", - "2012-05-31 00:00:00: Portfolio Value - 1019318.73\n", - "2012-06-01 00:00:00: Portfolio Value - 988683.98\n", - "2012-06-04 00:00:00: Portfolio Value - 1001778.37\n", - "2012-06-05 00:00:00: Portfolio Value - 1012039.59\n", - "2012-06-06 00:00:00: Portfolio Value - 1056206.69\n", - "2012-06-07 00:00:00: Portfolio Value - 1051492.34\n", - "2012-06-08 00:00:00: Portfolio Value - 1063442.42\n", - "2012-06-11 00:00:00: Portfolio Value - 1044039.52\n", - "2012-06-12 00:00:00: Portfolio Value - 1066957.98\n", - "2012-06-13 00:00:00: Portfolio Value - 1062365.70\n", - "2012-06-14 00:00:00: Portfolio Value - 1084662.32\n", - "2012-06-15 00:00:00: Portfolio Value - 1085909.31\n", - "2012-06-18 00:00:00: Portfolio Value - 1096688.40\n", - "2012-06-19 00:00:00: Portfolio Value - 1107404.39\n", - "2012-06-20 00:00:00: Portfolio Value - 1092963.43\n", - "2012-06-21 00:00:00: Portfolio Value - 1056136.28\n", - "2012-06-22 00:00:00: Portfolio Value - 1072771.03\n", - "2012-06-25 00:00:00: Portfolio Value - 1037555.97\n", - "2012-06-26 00:00:00: Portfolio Value - 1048903.78\n", - "2012-06-27 00:00:00: Portfolio Value - 1032213.06\n", - "2012-06-28 00:00:00: Portfolio Value - 1041691.77\n", - "2012-06-29 00:00:00: Portfolio Value - 1089601.94\n", - "2012-07-02 00:00:00: Portfolio Value - 1095536.00\n", - "2012-07-03 00:00:00: Portfolio Value - 1097774.11\n", - "2012-07-05 00:00:00: Portfolio Value - 1102660.42\n", - "2012-07-06 00:00:00: Portfolio Value - 1085567.15\n", - "2012-07-09 00:00:00: Portfolio Value - 1092342.69\n", - "2012-07-10 00:00:00: Portfolio Value - 1093174.04\n", - "2012-07-11 00:00:00: Portfolio Value - 1096446.74\n", - "2012-07-12 00:00:00: Portfolio Value - 1130503.71\n", - "2012-07-13 00:00:00: Portfolio Value - 1148761.90\n", - "2012-07-16 00:00:00: Portfolio Value - 1136806.96\n", - "2012-07-17 00:00:00: Portfolio Value - 1150196.91\n", - "2012-07-18 00:00:00: Portfolio Value - 1166618.22\n", - "2012-07-19 00:00:00: Portfolio Value - 1168639.53\n", - "2012-07-20 00:00:00: Portfolio Value - 1139237.93\n", - "2012-07-23 00:00:00: Portfolio Value - 1119761.28\n", - "2012-07-24 00:00:00: Portfolio Value - 1099662.01\n", - "2012-07-25 00:00:00: Portfolio Value - 1117754.18\n", - "2012-07-26 00:00:00: Portfolio Value - 1123179.75\n", - "2012-07-27 00:00:00: Portfolio Value - 1158289.36\n", - "2012-07-30 00:00:00: Portfolio Value - 1164100.18\n", - "2012-07-31 00:00:00: Portfolio Value - 1146784.28\n", - "2012-08-01 00:00:00: Portfolio Value - 1113459.33\n", - "2012-08-02 00:00:00: Portfolio Value - 1096091.25\n", - "2012-08-03 00:00:00: Portfolio Value - 1131854.30\n", - "2012-08-06 00:00:00: Portfolio Value - 1110326.23\n", - "2012-08-07 00:00:00: Portfolio Value - 1103608.46\n", - "2012-08-08 00:00:00: Portfolio Value - 1102761.99\n", - "2012-08-09 00:00:00: Portfolio Value - 1100059.15\n", - "2012-08-10 00:00:00: Portfolio Value - 1102885.06\n", - "2012-08-13 00:00:00: Portfolio Value - 1097646.42\n", - "2012-08-14 00:00:00: Portfolio Value - 1109936.46\n", - "2012-08-15 00:00:00: Portfolio Value - 1118300.49\n", - "2012-08-16 00:00:00: Portfolio Value - 1113426.77\n", - "2012-08-17 00:00:00: Portfolio Value - 1124525.60\n", - "2012-08-20 00:00:00: Portfolio Value - 1125001.65\n", - "2012-08-21 00:00:00: Portfolio Value - 1119693.30\n", - "2012-08-22 00:00:00: Portfolio Value - 1112412.32\n", - "2012-08-23 00:00:00: Portfolio Value - 1096796.90\n", - "2012-08-24 00:00:00: Portfolio Value - 1119669.81\n", - "2012-08-27 00:00:00: Portfolio Value - 1120919.50\n", - "2012-08-28 00:00:00: Portfolio Value - 1114690.28\n", - "2012-08-29 00:00:00: Portfolio Value - 1115044.78\n", - "2012-08-30 00:00:00: Portfolio Value - 1106362.44\n", - "2012-08-31 00:00:00: Portfolio Value - 1120536.85\n", - "2012-09-04 00:00:00: Portfolio Value - 1124365.54\n", - "2012-09-05 00:00:00: Portfolio Value - 1129403.01\n", - "2012-09-06 00:00:00: Portfolio Value - 1170125.07\n", - "2012-09-07 00:00:00: Portfolio Value - 1159930.77\n", - "2012-09-10 00:00:00: Portfolio Value - 1150767.64\n", - "2012-09-11 00:00:00: Portfolio Value - 1158644.39\n", - "2012-09-12 00:00:00: Portfolio Value - 1171835.44\n", - "2012-09-13 00:00:00: Portfolio Value - 1189375.06\n", - "2012-09-14 00:00:00: Portfolio Value - 1138803.06\n", - "2012-09-17 00:00:00: Portfolio Value - 1145514.49\n", - "2012-09-18 00:00:00: Portfolio Value - 1150734.21\n", - "2012-09-19 00:00:00: Portfolio Value - 1178262.52\n", - "2012-09-20 00:00:00: Portfolio Value - 1188984.78\n", - "2012-09-21 00:00:00: Portfolio Value - 1187220.89\n", - "2012-09-24 00:00:00: Portfolio Value - 1183848.65\n", - "2012-09-25 00:00:00: Portfolio Value - 1172956.85\n", - "2012-09-26 00:00:00: Portfolio Value - 1181132.42\n", - "2012-09-27 00:00:00: Portfolio Value - 1181770.12\n", - "2012-09-28 00:00:00: Portfolio Value - 1178071.28\n", - "2012-10-01 00:00:00: Portfolio Value - 1182824.90\n", - "2012-10-02 00:00:00: Portfolio Value - 1182611.98\n", - "2012-10-03 00:00:00: Portfolio Value - 1194365.42\n", - "2012-10-04 00:00:00: Portfolio Value - 1216945.03\n", - "2012-10-05 00:00:00: Portfolio Value - 1227512.58\n", - "2012-10-08 00:00:00: Portfolio Value - 1229548.98\n", - "2012-10-09 00:00:00: Portfolio Value - 1206737.99\n", - "2012-10-10 00:00:00: Portfolio Value - 1197174.56\n", - "2012-10-11 00:00:00: Portfolio Value - 1184732.47\n", - "2012-10-12 00:00:00: Portfolio Value - 1176969.38\n", - "2012-10-15 00:00:00: Portfolio Value - 1194666.95\n", - "2012-10-16 00:00:00: Portfolio Value - 1200206.77\n", - "2012-10-17 00:00:00: Portfolio Value - 1199470.14\n", - "2012-10-18 00:00:00: Portfolio Value - 1203053.31\n", - "2012-10-19 00:00:00: Portfolio Value - 1168810.02\n", - "2012-10-22 00:00:00: Portfolio Value - 1155776.97\n", - "2012-10-23 00:00:00: Portfolio Value - 1146742.85\n", - "2012-10-24 00:00:00: Portfolio Value - 1130192.84\n", - "2012-10-25 00:00:00: Portfolio Value - 1146901.95\n", - "2012-10-26 00:00:00: Portfolio Value - 1151458.43\n", - "2012-10-31 00:00:00: Portfolio Value - 1173310.64\n", - "2012-11-01 00:00:00: Portfolio Value - 1188392.93\n", - "2012-11-02 00:00:00: Portfolio Value - 1169766.84\n", - "2012-11-05 00:00:00: Portfolio Value - 1176703.93\n", - "2012-11-06 00:00:00: Portfolio Value - 1195101.10\n", - "2012-11-07 00:00:00: Portfolio Value - 1161374.92\n", - "2012-11-08 00:00:00: Portfolio Value - 1134528.60\n", - "2012-11-09 00:00:00: Portfolio Value - 1132306.95\n", - "2012-11-12 00:00:00: Portfolio Value - 1131582.54\n", - "2012-11-13 00:00:00: Portfolio Value - 1127634.27\n", - "2012-11-14 00:00:00: Portfolio Value - 1104202.26\n", - "2012-11-15 00:00:00: Portfolio Value - 1110615.71\n", - "2012-11-16 00:00:00: Portfolio Value - 1134124.48\n", - "2012-11-19 00:00:00: Portfolio Value - 1155236.56\n", - "2012-11-20 00:00:00: Portfolio Value - 1156289.75\n", - "2012-11-21 00:00:00: Portfolio Value - 1161927.53\n", - "2012-11-23 00:00:00: Portfolio Value - 1183379.97\n", - "2012-11-26 00:00:00: Portfolio Value - 1178105.11\n", - "2012-11-27 00:00:00: Portfolio Value - 1170401.35\n", - "2012-11-28 00:00:00: Portfolio Value - 1194354.45\n", - "2012-11-29 00:00:00: Portfolio Value - 1186703.41\n", - "2012-11-30 00:00:00: Portfolio Value - 1210944.74\n", - "2012-12-03 00:00:00: Portfolio Value - 1186664.74\n", - "2012-12-04 00:00:00: Portfolio Value - 1161262.76\n", - "2012-12-05 00:00:00: Portfolio Value - 1156522.61\n", - "2012-12-06 00:00:00: Portfolio Value - 1163830.76\n", - "2012-12-07 00:00:00: Portfolio Value - 1162427.58\n", - "2012-12-10 00:00:00: Portfolio Value - 1157140.98\n", - "2012-12-11 00:00:00: Portfolio Value - 1161047.61\n", - "2012-12-12 00:00:00: Portfolio Value - 1156468.37\n", - "2012-12-13 00:00:00: Portfolio Value - 1147523.73\n", - "2012-12-14 00:00:00: Portfolio Value - 1130442.89\n", - "2012-12-17 00:00:00: Portfolio Value - 1170329.12\n", - "2012-12-18 00:00:00: Portfolio Value - 1174193.41\n", - "2012-12-19 00:00:00: Portfolio Value - 1160998.36\n", - "2012-12-20 00:00:00: Portfolio Value - 1159570.83\n", - "2012-12-21 00:00:00: Portfolio Value - 1148099.42\n", - "2012-12-24 00:00:00: Portfolio Value - 1141663.76\n", - "2012-12-26 00:00:00: Portfolio Value - 1120920.49\n", - "2012-12-27 00:00:00: Portfolio Value - 1128965.20\n", - "2012-12-28 00:00:00: Portfolio Value - 1103500.57\n", - "2012-12-31 00:00:00: Portfolio Value - 1140996.91\n", - "2013-01-02 00:00:00: Portfolio Value - 1186285.49\n", - "2013-01-03 00:00:00: Portfolio Value - 1192418.08\n", - "2013-01-04 00:00:00: Portfolio Value - 1211210.45\n", - "2013-01-07 00:00:00: Portfolio Value - 1190506.22\n", - "2013-01-08 00:00:00: Portfolio Value - 1178636.73\n", - "2013-01-09 00:00:00: Portfolio Value - 1191930.87\n", - "2013-01-10 00:00:00: Portfolio Value - 1196016.20\n", - "2013-01-11 00:00:00: Portfolio Value - 1199832.54\n", - "2013-01-14 00:00:00: Portfolio Value - 1200111.89\n", - "2013-01-15 00:00:00: Portfolio Value - 1218944.56\n", - "2013-01-16 00:00:00: Portfolio Value - 1209769.70\n", - "2013-01-17 00:00:00: Portfolio Value - 1215701.87\n", - "2013-01-18 00:00:00: Portfolio Value - 1229305.45\n", - "2013-01-22 00:00:00: Portfolio Value - 1238715.74\n", - "2013-01-23 00:00:00: Portfolio Value - 1244254.20\n", - "2013-01-24 00:00:00: Portfolio Value - 1259302.41\n", - "2013-01-25 00:00:00: Portfolio Value - 1288119.43\n", - "2013-01-28 00:00:00: Portfolio Value - 1301428.96\n", - "2013-01-29 00:00:00: Portfolio Value - 1304647.89\n", - "2013-01-30 00:00:00: Portfolio Value - 1311704.91\n", - "2013-01-31 00:00:00: Portfolio Value - 1318810.64\n", - "2013-02-01 00:00:00: Portfolio Value - 1351083.63\n", - "2013-02-04 00:00:00: Portfolio Value - 1317965.54\n", - "2013-02-05 00:00:00: Portfolio Value - 1350565.00\n", - "2013-02-06 00:00:00: Portfolio Value - 1358449.39\n", - "2013-02-07 00:00:00: Portfolio Value - 1381302.45\n", - "2013-02-08 00:00:00: Portfolio Value - 1397009.02\n", - "2013-02-11 00:00:00: Portfolio Value - 1387721.26\n", - "2013-02-12 00:00:00: Portfolio Value - 1379114.90\n", - "2013-02-13 00:00:00: Portfolio Value - 1379805.50\n", - "2013-02-14 00:00:00: Portfolio Value - 1359630.54\n", - "2013-02-15 00:00:00: Portfolio Value - 1372758.36\n", - "2013-02-19 00:00:00: Portfolio Value - 1394423.33\n", - "2013-02-20 00:00:00: Portfolio Value - 1395601.58\n", - "2013-02-21 00:00:00: Portfolio Value - 1386559.78\n", - "2013-02-22 00:00:00: Portfolio Value - 1433752.32\n", - "2013-02-25 00:00:00: Portfolio Value - 1402172.55\n", - "2013-02-26 00:00:00: Portfolio Value - 1413201.29\n", - "2013-02-27 00:00:00: Portfolio Value - 1443760.83\n", - "2013-02-28 00:00:00: Portfolio Value - 1450234.46\n", - "2013-03-01 00:00:00: Portfolio Value - 1452444.85\n", - "2013-03-04 00:00:00: Portfolio Value - 1474807.80\n", - "2013-03-05 00:00:00: Portfolio Value - 1496771.81\n", - "2013-03-06 00:00:00: Portfolio Value - 1477214.91\n", - "2013-03-07 00:00:00: Portfolio Value - 1483000.64\n", - "2013-03-08 00:00:00: Portfolio Value - 1503513.49\n", - "2013-03-11 00:00:00: Portfolio Value - 1510337.14\n", - "2013-03-12 00:00:00: Portfolio Value - 1515670.06\n", - "2013-03-13 00:00:00: Portfolio Value - 1523573.51\n", - "2013-03-14 00:00:00: Portfolio Value - 1525197.44\n", - "2013-03-15 00:00:00: Portfolio Value - 1524484.72\n", - "2013-03-18 00:00:00: Portfolio Value - 1534564.53\n", - "2013-03-19 00:00:00: Portfolio Value - 1544920.17\n", - "2013-03-20 00:00:00: Portfolio Value - 1586091.75\n", - "2013-03-21 00:00:00: Portfolio Value - 1569117.78\n", - "2013-03-22 00:00:00: Portfolio Value - 1596511.33\n", - "2013-03-25 00:00:00: Portfolio Value - 1587838.50\n", - "2013-03-26 00:00:00: Portfolio Value - 1612484.12\n", - "2013-03-27 00:00:00: Portfolio Value - 1622196.47\n", - "2013-03-28 00:00:00: Portfolio Value - 1648355.05\n", - "2013-04-01 00:00:00: Portfolio Value - 1636125.54\n", - "2013-04-02 00:00:00: Portfolio Value - 1663577.88\n", - "2013-04-03 00:00:00: Portfolio Value - 1627092.84\n", - "2013-04-04 00:00:00: Portfolio Value - 1654457.85\n", - "2013-04-05 00:00:00: Portfolio Value - 1638683.52\n", - "2013-04-08 00:00:00: Portfolio Value - 1640892.18\n", - "2013-04-09 00:00:00: Portfolio Value - 1606171.09\n", - "2013-04-10 00:00:00: Portfolio Value - 1634619.71\n", - "2013-04-11 00:00:00: Portfolio Value - 1653507.85\n", - "2013-04-12 00:00:00: Portfolio Value - 1651303.67\n", - "2013-04-15 00:00:00: Portfolio Value - 1593276.85\n", - "2013-04-16 00:00:00: Portfolio Value - 1623072.90\n", - "2013-04-17 00:00:00: Portfolio Value - 1599058.50\n", - "2013-04-18 00:00:00: Portfolio Value - 1587844.48\n", - "2013-04-19 00:00:00: Portfolio Value - 1612075.02\n", - "2013-04-22 00:00:00: Portfolio Value - 1616813.07\n", - "2013-04-23 00:00:00: Portfolio Value - 1643747.52\n", - "2013-04-24 00:00:00: Portfolio Value - 1622082.10\n", - "2013-04-25 00:00:00: Portfolio Value - 1655297.18\n", - "2013-04-26 00:00:00: Portfolio Value - 1664328.53\n", - "2013-04-29 00:00:00: Portfolio Value - 1669776.41\n", - "2013-04-30 00:00:00: Portfolio Value - 1680569.89\n", - "2013-05-01 00:00:00: Portfolio Value - 1658966.29\n", - "2013-05-02 00:00:00: Portfolio Value - 1674944.09\n", - "2013-05-03 00:00:00: Portfolio Value - 1685735.71\n", - "2013-05-06 00:00:00: Portfolio Value - 1675736.71\n", - "2013-05-07 00:00:00: Portfolio Value - 1716003.85\n", - "2013-05-08 00:00:00: Portfolio Value - 1728641.44\n", - "2013-05-09 00:00:00: Portfolio Value - 1708563.25\n", - "2013-05-10 00:00:00: Portfolio Value - 1724995.54\n", - "2013-05-13 00:00:00: Portfolio Value - 1718095.80\n", - "2013-05-14 00:00:00: Portfolio Value - 1750798.48\n", - "2013-05-15 00:00:00: Portfolio Value - 1773743.45\n", - "2013-05-16 00:00:00: Portfolio Value - 1745781.36\n", - "2013-05-17 00:00:00: Portfolio Value - 1744268.04\n", - "2013-05-20 00:00:00: Portfolio Value - 1718292.49\n", - "2013-05-21 00:00:00: Portfolio Value - 1759095.10\n", - "2013-05-22 00:00:00: Portfolio Value - 1718393.35\n", - "2013-05-23 00:00:00: Portfolio Value - 1721399.69\n", - "2013-05-24 00:00:00: Portfolio Value - 1718085.86\n", - "2013-05-28 00:00:00: Portfolio Value - 1733839.10\n", - "2013-05-29 00:00:00: Portfolio Value - 1686031.63\n", - "2013-05-30 00:00:00: Portfolio Value - 1692517.19\n", - "2013-05-31 00:00:00: Portfolio Value - 1638298.13\n", - "2013-06-03 00:00:00: Portfolio Value - 1652836.14\n", - "2013-06-04 00:00:00: Portfolio Value - 1650538.31\n", - "2013-06-05 00:00:00: Portfolio Value - 1618699.88\n", - "2013-06-06 00:00:00: Portfolio Value - 1647983.48\n", - "2013-06-07 00:00:00: Portfolio Value - 1669184.57\n", - "2013-06-10 00:00:00: Portfolio Value - 1671524.47\n", - "2013-06-11 00:00:00: Portfolio Value - 1661738.50\n", - "2013-06-12 00:00:00: Portfolio Value - 1645953.24\n", - "2013-06-13 00:00:00: Portfolio Value - 1680269.94\n", - "2013-06-14 00:00:00: Portfolio Value - 1700390.40\n", - "2013-06-17 00:00:00: Portfolio Value - 1736052.20\n", - "2013-06-18 00:00:00: Portfolio Value - 1745943.11\n", - "2013-06-19 00:00:00: Portfolio Value - 1693389.78\n", - "2013-06-20 00:00:00: Portfolio Value - 1619027.42\n", - "2013-06-21 00:00:00: Portfolio Value - 1648995.89\n", - "2013-06-24 00:00:00: Portfolio Value - 1653326.56\n", - "2013-06-25 00:00:00: Portfolio Value - 1669361.58\n", - "2013-06-26 00:00:00: Portfolio Value - 1676682.10\n", - "2013-06-27 00:00:00: Portfolio Value - 1709962.27\n", - "2013-06-28 00:00:00: Portfolio Value - 1710366.30\n", - "2013-07-01 00:00:00: Portfolio Value - 1722188.07\n", - "2013-07-02 00:00:00: Portfolio Value - 1716741.73\n", - "2013-07-03 00:00:00: Portfolio Value - 1722365.31\n", - "2013-07-05 00:00:00: Portfolio Value - 1747040.96\n", - "2013-07-08 00:00:00: Portfolio Value - 1779831.38\n", - "2013-07-09 00:00:00: Portfolio Value - 1777896.90\n", - "2013-07-10 00:00:00: Portfolio Value - 1782704.91\n", - "2013-07-11 00:00:00: Portfolio Value - 1825605.17\n", - "2013-07-12 00:00:00: Portfolio Value - 1831530.98\n", - "2013-07-15 00:00:00: Portfolio Value - 1831906.13\n", - "2013-07-16 00:00:00: Portfolio Value - 1814684.19\n", - "2013-07-17 00:00:00: Portfolio Value - 1804194.23\n", - "2013-07-18 00:00:00: Portfolio Value - 1810619.40\n", - "2013-07-19 00:00:00: Portfolio Value - 1832645.73\n", - "2013-07-22 00:00:00: Portfolio Value - 1834810.56\n", - "2013-07-23 00:00:00: Portfolio Value - 1833061.38\n", - "2013-07-24 00:00:00: Portfolio Value - 1821544.04\n", - "2013-07-25 00:00:00: Portfolio Value - 1844128.90\n", - "2013-07-26 00:00:00: Portfolio Value - 1848981.03\n", - "2013-07-29 00:00:00: Portfolio Value - 1847098.16\n", - "2013-07-30 00:00:00: Portfolio Value - 1849661.29\n", - "2013-07-31 00:00:00: Portfolio Value - 1867158.30\n", - "2013-08-01 00:00:00: Portfolio Value - 1885241.70\n", - "2013-08-02 00:00:00: Portfolio Value - 1898517.02\n", - "2013-08-05 00:00:00: Portfolio Value - 1882006.04\n", - "2013-08-06 00:00:00: Portfolio Value - 1872913.91\n", - "2013-08-07 00:00:00: Portfolio Value - 1858611.62\n", - "2013-08-08 00:00:00: Portfolio Value - 1852280.77\n", - "2013-08-09 00:00:00: Portfolio Value - 1849026.46\n", - "2013-08-12 00:00:00: Portfolio Value - 1836615.29\n", - "2013-08-13 00:00:00: Portfolio Value - 1861238.70\n", - "2013-08-14 00:00:00: Portfolio Value - 1824740.88\n", - "2013-08-15 00:00:00: Portfolio Value - 1775849.56\n", - "2013-08-16 00:00:00: Portfolio Value - 1762678.63\n", - "2013-08-19 00:00:00: Portfolio Value - 1770968.57\n", - "2013-08-20 00:00:00: Portfolio Value - 1791424.90\n", - "2013-08-21 00:00:00: Portfolio Value - 1758188.41\n", - "2013-08-22 00:00:00: Portfolio Value - 1777965.22\n", - "2013-08-23 00:00:00: Portfolio Value - 1786923.91\n", - "2013-08-26 00:00:00: Portfolio Value - 1763969.75\n", - "2013-08-27 00:00:00: Portfolio Value - 1737550.06\n", - "2013-08-28 00:00:00: Portfolio Value - 1728326.59\n", - "2013-08-29 00:00:00: Portfolio Value - 1739589.83\n", - "2013-08-30 00:00:00: Portfolio Value - 1732991.25\n", - "2013-09-03 00:00:00: Portfolio Value - 1731817.52\n", - "2013-09-04 00:00:00: Portfolio Value - 1746394.68\n", - "2013-09-05 00:00:00: Portfolio Value - 1742979.50\n", - "2013-09-06 00:00:00: Portfolio Value - 1739412.45\n", - "2013-09-09 00:00:00: Portfolio Value - 1757906.99\n", - "2013-09-10 00:00:00: Portfolio Value - 1786726.51\n", - "2013-09-11 00:00:00: Portfolio Value - 1804893.07\n", - "2013-09-12 00:00:00: Portfolio Value - 1791974.28\n", - "2013-09-13 00:00:00: Portfolio Value - 1783191.18\n", - "2013-09-16 00:00:00: Portfolio Value - 1797016.79\n", - "2013-09-17 00:00:00: Portfolio Value - 1815883.83\n", - "2013-09-18 00:00:00: Portfolio Value - 1847539.09\n", - "2013-09-19 00:00:00: Portfolio Value - 1855686.16\n", - "2013-09-20 00:00:00: Portfolio Value - 1838055.60\n", - "2013-09-23 00:00:00: Portfolio Value - 1838171.46\n", - "2013-09-24 00:00:00: Portfolio Value - 1819579.05\n", - "2013-09-25 00:00:00: Portfolio Value - 1829360.41\n", - "2013-09-26 00:00:00: Portfolio Value - 1831852.39\n", - "2013-09-27 00:00:00: Portfolio Value - 1811853.08\n", - "2013-09-30 00:00:00: Portfolio Value - 1807814.38\n", - "2013-10-01 00:00:00: Portfolio Value - 1831481.93\n", - "2013-10-02 00:00:00: Portfolio Value - 1817066.80\n", - "2013-10-03 00:00:00: Portfolio Value - 1777095.53\n", - "2013-10-04 00:00:00: Portfolio Value - 1796091.97\n", - "2013-10-07 00:00:00: Portfolio Value - 1779443.45\n", - "2013-10-08 00:00:00: Portfolio Value - 1760043.94\n", - "2013-10-09 00:00:00: Portfolio Value - 1769834.96\n", - "2013-10-10 00:00:00: Portfolio Value - 1831830.77\n", - "2013-10-11 00:00:00: Portfolio Value - 1862340.66\n", - "2013-10-14 00:00:00: Portfolio Value - 1871750.72\n", - "2013-10-15 00:00:00: Portfolio Value - 1839464.92\n", - "2013-10-16 00:00:00: Portfolio Value - 1883022.52\n", - "2013-10-17 00:00:00: Portfolio Value - 1920465.91\n", - "2013-10-18 00:00:00: Portfolio Value - 1927980.38\n", - "2013-10-21 00:00:00: Portfolio Value - 1932772.56\n", - "2013-10-22 00:00:00: Portfolio Value - 1963182.47\n", - "2013-10-23 00:00:00: Portfolio Value - 1952386.64\n", - "2013-10-24 00:00:00: Portfolio Value - 1952156.02\n", - "2013-10-25 00:00:00: Portfolio Value - 1964593.42\n", - "2013-10-28 00:00:00: Portfolio Value - 1976361.21\n", - "2013-10-29 00:00:00: Portfolio Value - 1994614.87\n", - "2013-10-30 00:00:00: Portfolio Value - 1975281.49\n", - "2013-10-31 00:00:00: Portfolio Value - 1985153.00\n", - "2013-11-01 00:00:00: Portfolio Value - 1988736.00\n", - "2013-11-04 00:00:00: Portfolio Value - 1998505.46\n", - "2013-11-05 00:00:00: Portfolio Value - 1976596.14\n", - "2013-11-06 00:00:00: Portfolio Value - 2002154.89\n", - "2013-11-07 00:00:00: Portfolio Value - 1970201.07\n", - "2013-11-08 00:00:00: Portfolio Value - 1999019.46\n", - "2013-11-11 00:00:00: Portfolio Value - 1993303.06\n", - "2013-11-12 00:00:00: Portfolio Value - 2003284.75\n", - "2013-11-13 00:00:00: Portfolio Value - 2034968.39\n", - "2013-11-14 00:00:00: Portfolio Value - 2044317.34\n", - "2013-11-15 00:00:00: Portfolio Value - 2064551.81\n", - "2013-11-18 00:00:00: Portfolio Value - 2044817.60\n", - "2013-11-19 00:00:00: Portfolio Value - 2057769.51\n", - "2013-11-20 00:00:00: Portfolio Value - 2041674.51\n", - "2013-11-21 00:00:00: Portfolio Value - 2075292.18\n", - "2013-11-22 00:00:00: Portfolio Value - 2094356.57\n", - "2013-11-25 00:00:00: Portfolio Value - 2081063.97\n", - "2013-11-26 00:00:00: Portfolio Value - 2058309.86\n", - "2013-11-27 00:00:00: Portfolio Value - 2061247.16\n", - "2013-11-29 00:00:00: Portfolio Value - 2065185.27\n", - "2013-12-02 00:00:00: Portfolio Value - 2040191.09\n", - "2013-12-03 00:00:00: Portfolio Value - 2030952.80\n", - "2013-12-04 00:00:00: Portfolio Value - 2004374.71\n", - "2013-12-05 00:00:00: Portfolio Value - 1998721.18\n", - "2013-12-06 00:00:00: Portfolio Value - 2051694.76\n", - "2013-12-09 00:00:00: Portfolio Value - 2040782.14\n", - "2013-12-10 00:00:00: Portfolio Value - 2044293.25\n", - "2013-12-11 00:00:00: Portfolio Value - 2011220.54\n", - "2013-12-12 00:00:00: Portfolio Value - 1989431.84\n", - "2013-12-13 00:00:00: Portfolio Value - 1993393.83\n", - "2013-12-16 00:00:00: Portfolio Value - 1992692.46\n", - "2013-12-17 00:00:00: Portfolio Value - 1977314.07\n", - "2013-12-18 00:00:00: Portfolio Value - 2032582.89\n", - "2013-12-19 00:00:00: Portfolio Value - 2022091.76\n", - "2013-12-20 00:00:00: Portfolio Value - 2052477.02\n", - "2013-12-23 00:00:00: Portfolio Value - 2052286.80\n", - "2013-12-24 00:00:00: Portfolio Value - 2066773.76\n", - "2013-12-26 00:00:00: Portfolio Value - 2068491.21\n", - "2013-12-27 00:00:00: Portfolio Value - 2079916.89\n", - "2013-12-30 00:00:00: Portfolio Value - 2083723.25\n", - "2013-12-31 00:00:00: Portfolio Value - 2084395.78\n", - "2014-01-02 00:00:00: Portfolio Value - 2030456.77\n", - "2014-01-03 00:00:00: Portfolio Value - 2032341.36\n", - "2014-01-06 00:00:00: Portfolio Value - 2039226.39\n", - "2014-01-07 00:00:00: Portfolio Value - 2066406.37\n", - "2014-01-08 00:00:00: Portfolio Value - 2050824.51\n", - "2014-01-09 00:00:00: Portfolio Value - 2076000.86\n", - "2014-01-10 00:00:00: Portfolio Value - 2075244.77\n", - "2014-01-13 00:00:00: Portfolio Value - 2045897.08\n", - "2014-01-14 00:00:00: Portfolio Value - 2074032.10\n", - "2014-01-15 00:00:00: Portfolio Value - 2087245.94\n", - "2014-01-16 00:00:00: Portfolio Value - 2088912.15\n", - "2014-01-17 00:00:00: Portfolio Value - 2100562.03\n", - "2014-01-21 00:00:00: Portfolio Value - 2100496.13\n", - "2014-01-22 00:00:00: Portfolio Value - 2105717.72\n", - "2014-01-23 00:00:00: Portfolio Value - 2073255.68\n", - "2014-01-24 00:00:00: Portfolio Value - 2034939.70\n", - "2014-01-27 00:00:00: Portfolio Value - 2060798.01\n", - "2014-01-28 00:00:00: Portfolio Value - 2070226.46\n", - "2014-01-29 00:00:00: Portfolio Value - 2025238.28\n", - "2014-01-30 00:00:00: Portfolio Value - 2053034.05\n", - "2014-01-31 00:00:00: Portfolio Value - 2032402.05\n", - "2014-02-03 00:00:00: Portfolio Value - 1950165.35\n", - "2014-02-04 00:00:00: Portfolio Value - 1956348.01\n", - "2014-02-05 00:00:00: Portfolio Value - 1957311.40\n", - "2014-02-06 00:00:00: Portfolio Value - 1988810.64\n", - "2014-02-07 00:00:00: Portfolio Value - 2043977.50\n", - "2014-02-10 00:00:00: Portfolio Value - 2044716.11\n", - "2014-02-11 00:00:00: Portfolio Value - 2085004.53\n", - "2014-02-12 00:00:00: Portfolio Value - 2091177.05\n", - "2014-02-13 00:00:00: Portfolio Value - 2097970.59\n", - "2014-02-14 00:00:00: Portfolio Value - 2107784.87\n", - "2014-02-18 00:00:00: Portfolio Value - 2117323.12\n", - "2014-02-19 00:00:00: Portfolio Value - 2108602.93\n", - "2014-02-20 00:00:00: Portfolio Value - 2132785.06\n", - "2014-02-21 00:00:00: Portfolio Value - 2106661.08\n", - "2014-02-24 00:00:00: Portfolio Value - 2089691.35\n", - "2014-02-25 00:00:00: Portfolio Value - 2071077.66\n", - "2014-02-26 00:00:00: Portfolio Value - 2061072.28\n", - "2014-02-27 00:00:00: Portfolio Value - 2075484.02\n", - "2014-02-28 00:00:00: Portfolio Value - 2098482.70\n", - "2014-03-03 00:00:00: Portfolio Value - 2076036.73\n", - "2014-03-04 00:00:00: Portfolio Value - 2108777.70\n", - "2014-03-05 00:00:00: Portfolio Value - 2106418.13\n", - "2014-03-06 00:00:00: Portfolio Value - 2100687.78\n", - "2014-03-07 00:00:00: Portfolio Value - 2114535.30\n", - "2014-03-10 00:00:00: Portfolio Value - 2123591.03\n", - "2014-03-11 00:00:00: Portfolio Value - 2117689.49\n", - "2014-03-12 00:00:00: Portfolio Value - 2121853.56\n", - "2014-03-13 00:00:00: Portfolio Value - 2090940.12\n", - "2014-03-14 00:00:00: Portfolio Value - 2101672.60\n", - "2014-03-17 00:00:00: Portfolio Value - 2130499.30\n", - "2014-03-18 00:00:00: Portfolio Value - 2135124.83\n", - "2014-03-19 00:00:00: Portfolio Value - 2094984.26\n", - "2014-03-20 00:00:00: Portfolio Value - 2093469.51\n", - "2014-03-21 00:00:00: Portfolio Value - 2106180.78\n", - "2014-03-24 00:00:00: Portfolio Value - 2085520.20\n", - "2014-03-25 00:00:00: Portfolio Value - 2096157.43\n", - "2014-03-26 00:00:00: Portfolio Value - 2075892.82\n", - "2014-03-27 00:00:00: Portfolio Value - 2071291.49\n", - "2014-03-28 00:00:00: Portfolio Value - 2074140.07\n", - "2014-03-31 00:00:00: Portfolio Value - 2125086.61\n", - "2014-04-01 00:00:00: Portfolio Value - 2122983.19\n", - "2014-04-02 00:00:00: Portfolio Value - 2121875.44\n", - "2014-04-03 00:00:00: Portfolio Value - 2132329.75\n", - "2014-04-04 00:00:00: Portfolio Value - 2093270.58\n", - "2014-04-07 00:00:00: Portfolio Value - 2065169.41\n", - "2014-04-08 00:00:00: Portfolio Value - 2097838.16\n", - "2014-04-09 00:00:00: Portfolio Value - 2110692.20\n", - "2014-04-10 00:00:00: Portfolio Value - 2055592.07\n", - "2014-04-11 00:00:00: Portfolio Value - 2034058.86\n", - "2014-04-14 00:00:00: Portfolio Value - 2069350.95\n", - "2014-04-15 00:00:00: Portfolio Value - 2095276.05\n", - "2014-04-16 00:00:00: Portfolio Value - 2112490.94\n", - "2014-04-17 00:00:00: Portfolio Value - 2109211.60\n", - "2014-04-21 00:00:00: Portfolio Value - 2122999.77\n", - "2014-04-22 00:00:00: Portfolio Value - 2118782.39\n", - "2014-04-23 00:00:00: Portfolio Value - 2136132.53\n", - "2014-04-24 00:00:00: Portfolio Value - 2135478.50\n", - "2014-04-25 00:00:00: Portfolio Value - 2144697.07\n", - "2014-04-28 00:00:00: Portfolio Value - 2212884.96\n", - "2014-04-29 00:00:00: Portfolio Value - 2191701.15\n", - "2014-04-30 00:00:00: Portfolio Value - 2195813.18\n", - "2014-05-01 00:00:00: Portfolio Value - 2183447.35\n", - "2014-05-02 00:00:00: Portfolio Value - 2173088.21\n", - "2014-05-05 00:00:00: Portfolio Value - 2177314.15\n", - "2014-05-06 00:00:00: Portfolio Value - 2161277.77\n", - "2014-05-07 00:00:00: Portfolio Value - 2201120.17\n", - "2014-05-08 00:00:00: Portfolio Value - 2218264.20\n", - "2014-05-09 00:00:00: Portfolio Value - 2240464.76\n", - "2014-05-12 00:00:00: Portfolio Value - 2251255.53\n", - "2014-05-13 00:00:00: Portfolio Value - 2234397.62\n", - "2014-05-14 00:00:00: Portfolio Value - 2215118.60\n", - "2014-05-15 00:00:00: Portfolio Value - 2191275.80\n", - "2014-05-16 00:00:00: Portfolio Value - 2212548.29\n", - "2014-05-19 00:00:00: Portfolio Value - 2220094.99\n", - "2014-05-20 00:00:00: Portfolio Value - 2206445.28\n", - "2014-05-21 00:00:00: Portfolio Value - 2221331.58\n", - "2014-05-22 00:00:00: Portfolio Value - 2236097.82\n", - "2014-05-23 00:00:00: Portfolio Value - 2242513.52\n", - "2014-05-27 00:00:00: Portfolio Value - 2206294.65\n", - "2014-05-28 00:00:00: Portfolio Value - 2224670.64\n", - "2014-05-29 00:00:00: Portfolio Value - 2221457.80\n", - "2014-05-30 00:00:00: Portfolio Value - 2245977.63\n", - "2014-06-02 00:00:00: Portfolio Value - 2243879.84\n", - "2014-06-03 00:00:00: Portfolio Value - 2231154.71\n", - "2014-06-04 00:00:00: Portfolio Value - 2274582.39\n", - "2014-06-05 00:00:00: Portfolio Value - 2281028.30\n", - "2014-06-06 00:00:00: Portfolio Value - 2295009.90\n", - "2014-06-09 00:00:00: Portfolio Value - 2284844.00\n", - "2014-06-10 00:00:00: Portfolio Value - 2281832.38\n", - "2014-06-11 00:00:00: Portfolio Value - 2256631.43\n", - "2014-06-12 00:00:00: Portfolio Value - 2235614.72\n", - "2014-06-13 00:00:00: Portfolio Value - 2236065.54\n", - "2014-06-16 00:00:00: Portfolio Value - 2242228.23\n", - "2014-06-17 00:00:00: Portfolio Value - 2249184.33\n", - "2014-06-18 00:00:00: Portfolio Value - 2275280.08\n", - "2014-06-19 00:00:00: Portfolio Value - 2296041.98\n", - "2014-06-20 00:00:00: Portfolio Value - 2306459.11\n", - "2014-06-23 00:00:00: Portfolio Value - 2306904.92\n", - "2014-06-24 00:00:00: Portfolio Value - 2297908.92\n", - "2014-06-25 00:00:00: Portfolio Value - 2304920.19\n", - "2014-06-26 00:00:00: Portfolio Value - 2299012.04\n", - "2014-06-27 00:00:00: Portfolio Value - 2320133.08\n", - "2014-06-30 00:00:00: Portfolio Value - 2324645.07\n", - "2014-07-01 00:00:00: Portfolio Value - 2345743.43\n", - "2014-07-02 00:00:00: Portfolio Value - 2333729.38\n", - "2014-07-03 00:00:00: Portfolio Value - 2342989.83\n", - "2014-07-07 00:00:00: Portfolio Value - 2332598.83\n", - "2014-07-08 00:00:00: Portfolio Value - 2328543.27\n", - "2014-07-09 00:00:00: Portfolio Value - 2349951.97\n", - "2014-07-10 00:00:00: Portfolio Value - 2337758.16\n", - "2014-07-11 00:00:00: Portfolio Value - 2331927.64\n", - "2014-07-14 00:00:00: Portfolio Value - 2335177.90\n", - "2014-07-15 00:00:00: Portfolio Value - 2329788.27\n", - "2014-07-16 00:00:00: Portfolio Value - 2324329.67\n", - "2014-07-17 00:00:00: Portfolio Value - 2294790.54\n", - "2014-07-18 00:00:00: Portfolio Value - 2315124.04\n", - "2014-07-21 00:00:00: Portfolio Value - 2290380.97\n", - "2014-07-22 00:00:00: Portfolio Value - 2285111.34\n", - "2014-07-23 00:00:00: Portfolio Value - 2281506.25\n", - "2014-07-24 00:00:00: Portfolio Value - 2315213.00\n", - "2014-07-25 00:00:00: Portfolio Value - 2286517.94\n", - "2014-07-28 00:00:00: Portfolio Value - 2274808.88\n", - "2014-07-29 00:00:00: Portfolio Value - 2249498.27\n", - "2014-07-30 00:00:00: Portfolio Value - 2244296.55\n", - "2014-07-31 00:00:00: Portfolio Value - 2179210.15\n", - "2014-08-01 00:00:00: Portfolio Value - 2176237.53\n", - "2014-08-04 00:00:00: Portfolio Value - 2191756.08\n", - "2014-08-05 00:00:00: Portfolio Value - 2169533.14\n", - "2014-08-06 00:00:00: Portfolio Value - 2180721.64\n", - "2014-08-07 00:00:00: Portfolio Value - 2162089.51\n", - "2014-08-08 00:00:00: Portfolio Value - 2207101.22\n", - "2014-08-11 00:00:00: Portfolio Value - 2217311.50\n", - "2014-08-12 00:00:00: Portfolio Value - 2214836.55\n", - "2014-08-13 00:00:00: Portfolio Value - 2230289.58\n", - "2014-08-14 00:00:00: Portfolio Value - 2256978.77\n", - "2014-08-15 00:00:00: Portfolio Value - 2246426.64\n", - "2014-08-18 00:00:00: Portfolio Value - 2272422.54\n", - "2014-08-19 00:00:00: Portfolio Value - 2286276.12\n", - "2014-08-20 00:00:00: Portfolio Value - 2287530.99\n", - "2014-08-21 00:00:00: Portfolio Value - 2309878.96\n", - "2014-08-22 00:00:00: Portfolio Value - 2297771.78\n", - "2014-08-25 00:00:00: Portfolio Value - 2301745.09\n", - "2014-08-26 00:00:00: Portfolio Value - 2288705.63\n", - "2014-08-27 00:00:00: Portfolio Value - 2302802.00\n", - "2014-08-28 00:00:00: Portfolio Value - 2302590.08\n", - "2014-08-29 00:00:00: Portfolio Value - 2314878.16\n", - "2014-09-02 00:00:00: Portfolio Value - 2315033.21\n", - "2014-09-03 00:00:00: Portfolio Value - 2317171.04\n", - "2014-09-04 00:00:00: Portfolio Value - 2318333.65\n", - "2014-09-05 00:00:00: Portfolio Value - 2340052.47\n", - "2014-09-08 00:00:00: Portfolio Value - 2333705.07\n", - "2014-09-09 00:00:00: Portfolio Value - 2301845.96\n", - "2014-09-10 00:00:00: Portfolio Value - 2308150.53\n", - "2014-09-11 00:00:00: Portfolio Value - 2321826.15\n", - "2014-09-12 00:00:00: Portfolio Value - 2293663.48\n", - "2014-09-15 00:00:00: Portfolio Value - 2301523.52\n", - "2014-09-16 00:00:00: Portfolio Value - 2332518.04\n", - "2014-09-17 00:00:00: Portfolio Value - 2316637.35\n", - "2014-09-18 00:00:00: Portfolio Value - 2314708.66\n", - "2014-09-19 00:00:00: Portfolio Value - 2306566.90\n", - "2014-09-22 00:00:00: Portfolio Value - 2267598.41\n", - "2014-09-23 00:00:00: Portfolio Value - 2235389.32\n", - "2014-09-24 00:00:00: Portfolio Value - 2258049.42\n", - "2014-09-25 00:00:00: Portfolio Value - 2223915.92\n", - "2014-09-26 00:00:00: Portfolio Value - 2240215.30\n", - "2014-09-29 00:00:00: Portfolio Value - 2242339.48\n", - "2014-09-30 00:00:00: Portfolio Value - 2228493.92\n", - "2014-10-01 00:00:00: Portfolio Value - 2206265.03\n", - "2014-10-02 00:00:00: Portfolio Value - 2226683.08\n", - "2014-10-03 00:00:00: Portfolio Value - 2272887.65\n", - "2014-10-06 00:00:00: Portfolio Value - 2276012.81\n", - "2014-10-07 00:00:00: Portfolio Value - 2257508.35\n", - "2014-10-08 00:00:00: Portfolio Value - 2325565.27\n", - "2014-10-09 00:00:00: Portfolio Value - 2273258.84\n", - "2014-10-10 00:00:00: Portfolio Value - 2273321.96\n", - "2014-10-13 00:00:00: Portfolio Value - 2225842.71\n", - "2014-10-14 00:00:00: Portfolio Value - 2242023.67\n", - "2014-10-15 00:00:00: Portfolio Value - 2224358.31\n", - "2014-10-16 00:00:00: Portfolio Value - 2177761.82\n", - "2014-10-17 00:00:00: Portfolio Value - 2207995.15\n", - "2014-10-20 00:00:00: Portfolio Value - 2264357.34\n", - "2014-10-21 00:00:00: Portfolio Value - 2325119.78\n", - "2014-10-22 00:00:00: Portfolio Value - 2315980.44\n", - "2014-10-23 00:00:00: Portfolio Value - 2361444.71\n", - "2014-10-24 00:00:00: Portfolio Value - 2410867.76\n", - "2014-10-27 00:00:00: Portfolio Value - 2422440.73\n", - "2014-10-28 00:00:00: Portfolio Value - 2465608.48\n", - "2014-10-29 00:00:00: Portfolio Value - 2457010.75\n", - "2014-10-30 00:00:00: Portfolio Value - 2491165.32\n", - "2014-10-31 00:00:00: Portfolio Value - 2517672.20\n", - "2014-11-03 00:00:00: Portfolio Value - 2512842.39\n", - "2014-11-04 00:00:00: Portfolio Value - 2542920.09\n", - "2014-11-05 00:00:00: Portfolio Value - 2572743.76\n", - "2014-11-06 00:00:00: Portfolio Value - 2580015.89\n", - "2014-11-07 00:00:00: Portfolio Value - 2573481.37\n", - "2014-11-10 00:00:00: Portfolio Value - 2571311.68\n", - "2014-11-11 00:00:00: Portfolio Value - 2568330.45\n", - "2014-11-12 00:00:00: Portfolio Value - 2566811.98\n", - "2014-11-13 00:00:00: Portfolio Value - 2587328.38\n", - "2014-11-14 00:00:00: Portfolio Value - 2564684.91\n", - "2014-11-17 00:00:00: Portfolio Value - 2580092.60\n", - "2014-11-18 00:00:00: Portfolio Value - 2589472.13\n", - "2014-11-19 00:00:00: Portfolio Value - 2592969.76\n", - "2014-11-20 00:00:00: Portfolio Value - 2593382.43\n", - "2014-11-21 00:00:00: Portfolio Value - 2603318.35\n", - "2014-11-24 00:00:00: Portfolio Value - 2617099.71\n", - "2014-11-25 00:00:00: Portfolio Value - 2620263.65\n", - "2014-11-26 00:00:00: Portfolio Value - 2642511.29\n", - "2014-11-28 00:00:00: Portfolio Value - 2694729.10\n", - "2014-12-01 00:00:00: Portfolio Value - 2684937.40\n", - "2014-12-02 00:00:00: Portfolio Value - 2723164.85\n", - "2014-12-03 00:00:00: Portfolio Value - 2735878.24\n", - "2014-12-04 00:00:00: Portfolio Value - 2735954.94\n", - "2014-12-05 00:00:00: Portfolio Value - 2731439.47\n", - "2014-12-08 00:00:00: Portfolio Value - 2722527.69\n", - "2014-12-09 00:00:00: Portfolio Value - 2757393.22\n", - "2014-12-10 00:00:00: Portfolio Value - 2708628.63\n", - "2014-12-11 00:00:00: Portfolio Value - 2742341.75\n", - "2014-12-12 00:00:00: Portfolio Value - 2715863.60\n", - "2014-12-15 00:00:00: Portfolio Value - 2705396.57\n", - "2014-12-16 00:00:00: Portfolio Value - 2683163.46\n", - "2014-12-17 00:00:00: Portfolio Value - 2739751.95\n", - "2014-12-18 00:00:00: Portfolio Value - 2813008.93\n", - "2014-12-19 00:00:00: Portfolio Value - 2817722.15\n", - "2014-12-22 00:00:00: Portfolio Value - 2841194.72\n", - "2014-12-23 00:00:00: Portfolio Value - 2869545.86\n", - "2014-12-24 00:00:00: Portfolio Value - 2867619.75\n", - "2014-12-26 00:00:00: Portfolio Value - 2875694.39\n", - "2014-12-29 00:00:00: Portfolio Value - 2885110.14\n", - "2014-12-30 00:00:00: Portfolio Value - 2871950.81\n", - "2014-12-31 00:00:00: Portfolio Value - 2818674.75\n", - "2015-01-02 00:00:00: Portfolio Value - 2807449.28\n", - "2015-01-05 00:00:00: Portfolio Value - 2764577.50\n", - "2015-01-06 00:00:00: Portfolio Value - 2767123.20\n", - "2015-01-07 00:00:00: Portfolio Value - 2800475.08\n", - "2015-01-08 00:00:00: Portfolio Value - 2867773.93\n", - "2015-01-09 00:00:00: Portfolio Value - 2831394.19\n", - "2015-01-12 00:00:00: Portfolio Value - 2806889.56\n", - "2015-01-13 00:00:00: Portfolio Value - 2798245.87\n", - "2015-01-14 00:00:00: Portfolio Value - 2770838.62\n", - "2015-01-15 00:00:00: Portfolio Value - 2761670.85\n", - "2015-01-16 00:00:00: Portfolio Value - 2805929.96\n", - "2015-01-20 00:00:00: Portfolio Value - 2787818.09\n", - "2015-01-21 00:00:00: Portfolio Value - 2789184.58\n", - "2015-01-22 00:00:00: Portfolio Value - 2867042.43\n", - "2015-01-23 00:00:00: Portfolio Value - 2850116.51\n", - "2015-01-26 00:00:00: Portfolio Value - 2868188.75\n", - "2015-01-27 00:00:00: Portfolio Value - 2834565.08\n", - "2015-01-28 00:00:00: Portfolio Value - 2814506.56\n", - "2015-01-29 00:00:00: Portfolio Value - 2849283.91\n", - "2015-01-30 00:00:00: Portfolio Value - 2776653.25\n", - "2015-02-02 00:00:00: Portfolio Value - 2812830.14\n", - "2015-02-03 00:00:00: Portfolio Value - 2876570.47\n", - "2015-02-04 00:00:00: Portfolio Value - 2885575.59\n", - "2015-02-05 00:00:00: Portfolio Value - 2972119.88\n", - "2015-02-06 00:00:00: Portfolio Value - 2934501.39\n", - "2015-02-09 00:00:00: Portfolio Value - 2903015.95\n", - "2015-02-10 00:00:00: Portfolio Value - 2944709.81\n", - "2015-02-11 00:00:00: Portfolio Value - 2959586.27\n", - "2015-02-12 00:00:00: Portfolio Value - 2972595.80\n", - "2015-02-13 00:00:00: Portfolio Value - 2981692.32\n", - "2015-02-17 00:00:00: Portfolio Value - 2968132.93\n", - "2015-02-18 00:00:00: Portfolio Value - 2983127.24\n", - "2015-02-19 00:00:00: Portfolio Value - 2963720.07\n", - "2015-02-20 00:00:00: Portfolio Value - 2992333.38\n", - "2015-02-23 00:00:00: Portfolio Value - 3021857.19\n", - "2015-02-24 00:00:00: Portfolio Value - 3045555.91\n", - "2015-02-25 00:00:00: Portfolio Value - 3055236.32\n", - "2015-02-26 00:00:00: Portfolio Value - 3076447.55\n", - "2015-02-27 00:00:00: Portfolio Value - 3061355.77\n", - "2015-03-02 00:00:00: Portfolio Value - 3100819.89\n", - "2015-03-03 00:00:00: Portfolio Value - 3090261.11\n", - "2015-03-04 00:00:00: Portfolio Value - 3074810.72\n", - "2015-03-05 00:00:00: Portfolio Value - 3082082.76\n", - "2015-03-06 00:00:00: Portfolio Value - 3026454.52\n", - "2015-03-09 00:00:00: Portfolio Value - 3060610.37\n", - "2015-03-10 00:00:00: Portfolio Value - 2995091.64\n", - "2015-03-11 00:00:00: Portfolio Value - 3000979.16\n", - "2015-03-12 00:00:00: Portfolio Value - 3081361.23\n", - "2015-03-13 00:00:00: Portfolio Value - 3064598.89\n", - "2015-03-16 00:00:00: Portfolio Value - 3126823.28\n", - "2015-03-17 00:00:00: Portfolio Value - 3092238.38\n", - "2015-03-18 00:00:00: Portfolio Value - 3136335.79\n", - "2015-03-19 00:00:00: Portfolio Value - 3118716.60\n", - "2015-03-20 00:00:00: Portfolio Value - 3138995.05\n", - "2015-03-23 00:00:00: Portfolio Value - 3169219.31\n", - "2015-03-24 00:00:00: Portfolio Value - 3137408.14\n", - "2015-03-25 00:00:00: Portfolio Value - 3073096.27\n", - "2015-03-26 00:00:00: Portfolio Value - 3062905.71\n", - "2015-03-27 00:00:00: Portfolio Value - 3113761.72\n", - "2015-03-30 00:00:00: Portfolio Value - 3178950.23\n", - "2015-03-31 00:00:00: Portfolio Value - 3162531.46\n", - "2015-04-01 00:00:00: Portfolio Value - 3167372.49\n", - "2015-04-02 00:00:00: Portfolio Value - 3168309.02\n", - "2015-04-06 00:00:00: Portfolio Value - 3208825.72\n", - "2015-04-07 00:00:00: Portfolio Value - 3188152.86\n", - "2015-04-08 00:00:00: Portfolio Value - 3213285.11\n", - "2015-04-09 00:00:00: Portfolio Value - 3207606.50\n", - "2015-04-10 00:00:00: Portfolio Value - 3233977.17\n", - "2015-04-13 00:00:00: Portfolio Value - 3207269.06\n", - "2015-04-14 00:00:00: Portfolio Value - 3207091.77\n", - "2015-04-15 00:00:00: Portfolio Value - 3184478.20\n", - "2015-04-16 00:00:00: Portfolio Value - 3166701.69\n", - "2015-04-17 00:00:00: Portfolio Value - 3107463.86\n", - "2015-04-20 00:00:00: Portfolio Value - 3143275.18\n", - "2015-04-21 00:00:00: Portfolio Value - 3156674.42\n", - "2015-04-22 00:00:00: Portfolio Value - 3157444.25\n", - "2015-04-23 00:00:00: Portfolio Value - 3179508.87\n", - "2015-04-24 00:00:00: Portfolio Value - 3186898.89\n", - "2015-04-27 00:00:00: Portfolio Value - 3135768.79\n", - "2015-04-28 00:00:00: Portfolio Value - 3143603.96\n", - "2015-04-29 00:00:00: Portfolio Value - 3135395.95\n", - "2015-04-30 00:00:00: Portfolio Value - 3082285.45\n", - "2015-05-01 00:00:00: Portfolio Value - 3118435.42\n", - "2015-05-04 00:00:00: Portfolio Value - 3132992.09\n", - "2015-05-05 00:00:00: Portfolio Value - 3076540.50\n", - "2015-05-06 00:00:00: Portfolio Value - 3081186.45\n", - "2015-05-07 00:00:00: Portfolio Value - 3094150.76\n", - "2015-05-08 00:00:00: Portfolio Value - 3121825.49\n", - "2015-05-11 00:00:00: Portfolio Value - 3095492.03\n", - "2015-05-12 00:00:00: Portfolio Value - 3080044.49\n", - "2015-05-13 00:00:00: Portfolio Value - 3064506.96\n", - "2015-05-14 00:00:00: Portfolio Value - 3105702.51\n", - "2015-05-15 00:00:00: Portfolio Value - 3139652.42\n", - "2015-05-18 00:00:00: Portfolio Value - 3157726.63\n", - "2015-05-19 00:00:00: Portfolio Value - 3171464.36\n", - "2015-05-20 00:00:00: Portfolio Value - 3146390.97\n", - "2015-05-21 00:00:00: Portfolio Value - 3152599.82\n", - "2015-05-22 00:00:00: Portfolio Value - 3131890.50\n", - "2015-05-26 00:00:00: Portfolio Value - 3120019.47\n", - "2015-05-27 00:00:00: Portfolio Value - 3129579.78\n", - "2015-05-28 00:00:00: Portfolio Value - 3122747.09\n", - "2015-05-29 00:00:00: Portfolio Value - 3093874.13\n", - "2015-06-01 00:00:00: Portfolio Value - 3102891.34\n", - "2015-06-02 00:00:00: Portfolio Value - 3083304.20\n", - "2015-06-03 00:00:00: Portfolio Value - 3093897.65\n", - "2015-06-04 00:00:00: Portfolio Value - 3050783.89\n", - "2015-06-05 00:00:00: Portfolio Value - 3021490.28\n", - "2015-06-08 00:00:00: Portfolio Value - 3013122.57\n", - "2015-06-09 00:00:00: Portfolio Value - 3015057.33\n", - "2015-06-10 00:00:00: Portfolio Value - 3061284.90\n", - "2015-06-11 00:00:00: Portfolio Value - 3100732.40\n", - "2015-06-12 00:00:00: Portfolio Value - 3070121.30\n", - "2015-06-15 00:00:00: Portfolio Value - 3023075.54\n", - "2015-06-16 00:00:00: Portfolio Value - 3051403.74\n", - "2015-06-17 00:00:00: Portfolio Value - 3058940.84\n", - "2015-06-18 00:00:00: Portfolio Value - 3112804.57\n", - "2015-06-19 00:00:00: Portfolio Value - 3104106.61\n", - "2015-06-22 00:00:00: Portfolio Value - 3116710.17\n", - "2015-06-23 00:00:00: Portfolio Value - 3113167.05\n", - "2015-06-24 00:00:00: Portfolio Value - 3073304.71\n", - "2015-06-25 00:00:00: Portfolio Value - 3073339.06\n", - "2015-06-26 00:00:00: Portfolio Value - 3090725.17\n", - "2015-06-29 00:00:00: Portfolio Value - 3011482.44\n", - "2015-06-30 00:00:00: Portfolio Value - 3024862.64\n", - "2015-07-01 00:00:00: Portfolio Value - 3088204.33\n", - "2015-07-02 00:00:00: Portfolio Value - 3081995.22\n", - "2015-07-06 00:00:00: Portfolio Value - 3096389.09\n", - "2015-07-07 00:00:00: Portfolio Value - 3153908.31\n", - "2015-07-08 00:00:00: Portfolio Value - 3105472.17\n", - "2015-07-09 00:00:00: Portfolio Value - 3115245.42\n", - "2015-07-10 00:00:00: Portfolio Value - 3177247.77\n", - "2015-07-13 00:00:00: Portfolio Value - 3203649.43\n", - "2015-07-14 00:00:00: Portfolio Value - 3186751.41\n", - "2015-07-15 00:00:00: Portfolio Value - 3198990.34\n", - "2015-07-16 00:00:00: Portfolio Value - 3215285.69\n", - "2015-07-17 00:00:00: Portfolio Value - 3202643.02\n", - "2015-07-20 00:00:00: Portfolio Value - 3211398.46\n", - "2015-07-21 00:00:00: Portfolio Value - 3176034.84\n", - "2015-07-22 00:00:00: Portfolio Value - 3196821.28\n", - "2015-07-23 00:00:00: Portfolio Value - 3185318.45\n", - "2015-07-24 00:00:00: Portfolio Value - 3168806.33\n", - "2015-07-27 00:00:00: Portfolio Value - 3157185.85\n", - "2015-07-28 00:00:00: Portfolio Value - 3208769.75\n", - "2015-07-29 00:00:00: Portfolio Value - 3259276.73\n", - "2015-07-30 00:00:00: Portfolio Value - 3273119.28\n", - "2015-07-31 00:00:00: Portfolio Value - 3279383.37\n", - "2015-08-03 00:00:00: Portfolio Value - 3285899.01\n", - "2015-08-04 00:00:00: Portfolio Value - 3291217.36\n", - "2015-08-05 00:00:00: Portfolio Value - 3337833.98\n", - "2015-08-06 00:00:00: Portfolio Value - 3277161.87\n", - "2015-08-07 00:00:00: Portfolio Value - 3289034.19\n", - "2015-08-10 00:00:00: Portfolio Value - 3317265.56\n", - "2015-08-11 00:00:00: Portfolio Value - 3316310.25\n", - "2015-08-12 00:00:00: Portfolio Value - 3322016.62\n", - "2015-08-13 00:00:00: Portfolio Value - 3356858.07\n", - "2015-08-14 00:00:00: Portfolio Value - 3380725.79\n", - "2015-08-17 00:00:00: Portfolio Value - 3405635.46\n", - "2015-08-18 00:00:00: Portfolio Value - 3411960.57\n", - "2015-08-19 00:00:00: Portfolio Value - 3399244.71\n", - "2015-08-20 00:00:00: Portfolio Value - 3328521.18\n", - "2015-08-21 00:00:00: Portfolio Value - 3183783.04\n", - "2015-08-24 00:00:00: Portfolio Value - 3009376.25\n", - "2015-08-25 00:00:00: Portfolio Value - 2976947.09\n", - "2015-08-26 00:00:00: Portfolio Value - 3100544.76\n", - "2015-08-27 00:00:00: Portfolio Value - 3191894.68\n", - "2015-08-28 00:00:00: Portfolio Value - 3186472.33\n", - "2015-08-31 00:00:00: Portfolio Value - 3140556.89\n", - "2015-09-01 00:00:00: Portfolio Value - 3051591.40\n", - "2015-09-02 00:00:00: Portfolio Value - 3127352.90\n", - "2015-09-03 00:00:00: Portfolio Value - 3147477.76\n", - "2015-09-04 00:00:00: Portfolio Value - 3078510.74\n", - "2015-09-08 00:00:00: Portfolio Value - 3173478.00\n", - "2015-09-09 00:00:00: Portfolio Value - 3106056.60\n", - "2015-09-10 00:00:00: Portfolio Value - 3108431.71\n", - "2015-09-11 00:00:00: Portfolio Value - 3136620.04\n", - "2015-09-14 00:00:00: Portfolio Value - 3116078.75\n", - "2015-09-15 00:00:00: Portfolio Value - 3166788.07\n", - "2015-09-16 00:00:00: Portfolio Value - 3196348.71\n", - "2015-09-17 00:00:00: Portfolio Value - 3228261.97\n", - "2015-09-18 00:00:00: Portfolio Value - 3173193.33\n", - "2015-09-21 00:00:00: Portfolio Value - 3217192.37\n", - "2015-09-22 00:00:00: Portfolio Value - 3190800.21\n", - "2015-09-23 00:00:00: Portfolio Value - 3236732.39\n", - "2015-09-24 00:00:00: Portfolio Value - 3226251.85\n", - "2015-09-25 00:00:00: Portfolio Value - 3256937.86\n", - "2015-09-28 00:00:00: Portfolio Value - 3142067.11\n", - "2015-09-29 00:00:00: Portfolio Value - 3144337.45\n", - "2015-09-30 00:00:00: Portfolio Value - 3189113.36\n", - "2015-10-01 00:00:00: Portfolio Value - 3255411.72\n", - "2015-10-02 00:00:00: Portfolio Value - 3310397.75\n", - "2015-10-05 00:00:00: Portfolio Value - 3368115.83\n", - "2015-10-06 00:00:00: Portfolio Value - 3333789.02\n", - "2015-10-07 00:00:00: Portfolio Value - 3318467.70\n", - "2015-10-08 00:00:00: Portfolio Value - 3348744.11\n", - "2015-10-09 00:00:00: Portfolio Value - 3356430.43\n", - "2015-10-12 00:00:00: Portfolio Value - 3371765.99\n", - "2015-10-13 00:00:00: Portfolio Value - 3364302.44\n", - "2015-10-14 00:00:00: Portfolio Value - 3314298.49\n", - "2015-10-15 00:00:00: Portfolio Value - 3371383.28\n", - "2015-10-16 00:00:00: Portfolio Value - 3417203.58\n", - "2015-10-19 00:00:00: Portfolio Value - 3424171.67\n", - "2015-10-20 00:00:00: Portfolio Value - 3428614.93\n", - "2015-10-21 00:00:00: Portfolio Value - 3409704.58\n", - "2015-10-22 00:00:00: Portfolio Value - 3506831.34\n", - "2015-10-23 00:00:00: Portfolio Value - 3515443.47\n", - "2015-10-26 00:00:00: Portfolio Value - 3523991.83\n", - "2015-10-27 00:00:00: Portfolio Value - 3502812.49\n", - "2015-10-28 00:00:00: Portfolio Value - 3546461.50\n", - "2015-10-29 00:00:00: Portfolio Value - 3579423.11\n", - "2015-10-30 00:00:00: Portfolio Value - 3552534.64\n", - "2015-11-02 00:00:00: Portfolio Value - 3567400.69\n", - "2015-11-03 00:00:00: Portfolio Value - 3572914.92\n", - "2015-11-04 00:00:00: Portfolio Value - 3583904.81\n", - "2015-11-05 00:00:00: Portfolio Value - 3573578.99\n", - "2015-11-06 00:00:00: Portfolio Value - 3557651.14\n", - "2015-11-09 00:00:00: Portfolio Value - 3518593.13\n", - "2015-11-10 00:00:00: Portfolio Value - 3552657.36\n", - "2015-11-11 00:00:00: Portfolio Value - 3568705.10\n", - "2015-11-12 00:00:00: Portfolio Value - 3512264.33\n", - "2015-11-13 00:00:00: Portfolio Value - 3439256.97\n", - "2015-11-16 00:00:00: Portfolio Value - 3518587.77\n", - "2015-11-17 00:00:00: Portfolio Value - 3502926.51\n", - "2015-11-18 00:00:00: Portfolio Value - 3561627.09\n", - "2015-11-19 00:00:00: Portfolio Value - 3567504.33\n", - "2015-11-20 00:00:00: Portfolio Value - 3599483.34\n", - "2015-11-23 00:00:00: Portfolio Value - 3590521.79\n", - "2015-11-24 00:00:00: Portfolio Value - 3585912.85\n", - "2015-11-25 00:00:00: Portfolio Value - 3598709.56\n", - "2015-11-27 00:00:00: Portfolio Value - 3617126.59\n", - "2015-11-30 00:00:00: Portfolio Value - 3602716.89\n", - "2015-12-01 00:00:00: Portfolio Value - 3628738.78\n", - "2015-12-02 00:00:00: Portfolio Value - 3589552.87\n", - "2015-12-03 00:00:00: Portfolio Value - 3523658.34\n", - "2015-12-04 00:00:00: Portfolio Value - 3606909.15\n", - "2015-12-07 00:00:00: Portfolio Value - 3604358.38\n", - "2015-12-08 00:00:00: Portfolio Value - 3680368.30\n", - "2015-12-09 00:00:00: Portfolio Value - 3587909.30\n", - "2015-12-10 00:00:00: Portfolio Value - 3580484.57\n", - "2015-12-11 00:00:00: Portfolio Value - 3520888.90\n", - "2015-12-14 00:00:00: Portfolio Value - 3548898.36\n", - "2015-12-15 00:00:00: Portfolio Value - 3577434.18\n", - "2015-12-16 00:00:00: Portfolio Value - 3630954.30\n", - "2015-12-17 00:00:00: Portfolio Value - 3594377.20\n", - "2015-12-18 00:00:00: Portfolio Value - 3499962.80\n", - "2015-12-21 00:00:00: Portfolio Value - 3525174.16\n", - "2015-12-22 00:00:00: Portfolio Value - 3563322.56\n", - "2015-12-23 00:00:00: Portfolio Value - 3579910.76\n", - "2015-12-24 00:00:00: Portfolio Value - 3577429.94\n", - "2015-12-28 00:00:00: Portfolio Value - 3588175.45\n", - "2015-12-29 00:00:00: Portfolio Value - 3639808.64\n", - "2015-12-30 00:00:00: Portfolio Value - 3620876.67\n", - "2015-12-31 00:00:00: Portfolio Value - 3552973.60\n", - "2016-01-04 00:00:00: Portfolio Value - 3461190.51\n", - "2016-01-05 00:00:00: Portfolio Value - 3488893.40\n", - "2016-01-06 00:00:00: Portfolio Value - 3442169.40\n", - "2016-01-07 00:00:00: Portfolio Value - 3393784.72\n", - "2016-01-08 00:00:00: Portfolio Value - 3336340.59\n", - "2016-01-11 00:00:00: Portfolio Value - 3369210.45\n", - "2016-01-12 00:00:00: Portfolio Value - 3427256.69\n", - "2016-01-13 00:00:00: Portfolio Value - 3316412.97\n", - "2016-01-14 00:00:00: Portfolio Value - 3392356.43\n", - "2016-01-15 00:00:00: Portfolio Value - 3334066.18\n", - "2016-01-19 00:00:00: Portfolio Value - 3379947.54\n", - "2016-01-20 00:00:00: Portfolio Value - 3342555.31\n", - "2016-01-21 00:00:00: Portfolio Value - 3355570.10\n", - "2016-01-22 00:00:00: Portfolio Value - 3448838.32\n", - "2016-01-25 00:00:00: Portfolio Value - 3407450.81\n", - "2016-01-26 00:00:00: Portfolio Value - 3470155.98\n", - "2016-01-27 00:00:00: Portfolio Value - 3462297.39\n", - "2016-01-28 00:00:00: Portfolio Value - 3481890.68\n", - "2016-01-29 00:00:00: Portfolio Value - 3592470.52\n", - "2016-02-01 00:00:00: Portfolio Value - 3623206.81\n", - "2016-02-02 00:00:00: Portfolio Value - 3569971.99\n", - "2016-02-03 00:00:00: Portfolio Value - 3566571.05\n", - "2016-02-04 00:00:00: Portfolio Value - 3516022.10\n", - "2016-02-05 00:00:00: Portfolio Value - 3420244.56\n", - "2016-02-08 00:00:00: Portfolio Value - 3355762.86\n", - "2016-02-09 00:00:00: Portfolio Value - 3405802.27\n", - "2016-02-10 00:00:00: Portfolio Value - 3399093.19\n", - "2016-02-11 00:00:00: Portfolio Value - 3398537.78\n", - "2016-02-12 00:00:00: Portfolio Value - 3481046.90\n", - "2016-02-16 00:00:00: Portfolio Value - 3571685.53\n", - "2016-02-17 00:00:00: Portfolio Value - 3592652.25\n", - "2016-02-18 00:00:00: Portfolio Value - 3533270.46\n", - "2016-02-19 00:00:00: Portfolio Value - 3553854.69\n", - "2016-02-22 00:00:00: Portfolio Value - 3589511.50\n", - "2016-02-23 00:00:00: Portfolio Value - 3575696.48\n", - "2016-02-24 00:00:00: Portfolio Value - 3634848.43\n", - "2016-02-25 00:00:00: Portfolio Value - 3710611.88\n", - "2016-02-26 00:00:00: Portfolio Value - 3651554.45\n", - "2016-02-29 00:00:00: Portfolio Value - 3612598.94\n", - "2016-03-01 00:00:00: Portfolio Value - 3695593.87\n", - "2016-03-02 00:00:00: Portfolio Value - 3690078.81\n", - "2016-03-03 00:00:00: Portfolio Value - 3689968.72\n", - "2016-03-04 00:00:00: Portfolio Value - 3697171.87\n", - "2016-03-07 00:00:00: Portfolio Value - 3673295.47\n", - "2016-03-08 00:00:00: Portfolio Value - 3676446.76\n", - "2016-03-09 00:00:00: Portfolio Value - 3728105.38\n", - "2016-03-10 00:00:00: Portfolio Value - 3746701.33\n", - "2016-03-11 00:00:00: Portfolio Value - 3794704.14\n", - "2016-03-14 00:00:00: Portfolio Value - 3797547.86\n", - "2016-03-15 00:00:00: Portfolio Value - 3793515.07\n", - "2016-03-16 00:00:00: Portfolio Value - 3822110.81\n", - "2016-03-17 00:00:00: Portfolio Value - 3811061.73\n", - "2016-03-18 00:00:00: Portfolio Value - 3803188.04\n", - "2016-03-21 00:00:00: Portfolio Value - 3802960.32\n", - "2016-03-22 00:00:00: Portfolio Value - 3796787.15\n", - "2016-03-23 00:00:00: Portfolio Value - 3840669.57\n", - "2016-03-24 00:00:00: Portfolio Value - 3813454.34\n", - "2016-03-28 00:00:00: Portfolio Value - 3822769.18\n", - "2016-03-29 00:00:00: Portfolio Value - 3881964.65\n", - "2016-03-30 00:00:00: Portfolio Value - 3907805.34\n", - "2016-03-31 00:00:00: Portfolio Value - 3883879.46\n", - "2016-04-01 00:00:00: Portfolio Value - 3934701.76\n", - "2016-04-04 00:00:00: Portfolio Value - 3913792.97\n", - "2016-04-05 00:00:00: Portfolio Value - 3865631.02\n", - "2016-04-06 00:00:00: Portfolio Value - 3899951.15\n", - "2016-04-07 00:00:00: Portfolio Value - 3857631.13\n", - "2016-04-08 00:00:00: Portfolio Value - 3858138.06\n", - "2016-04-11 00:00:00: Portfolio Value - 3819088.62\n", - "2016-04-12 00:00:00: Portfolio Value - 3844153.76\n", - "2016-04-13 00:00:00: Portfolio Value - 3859032.18\n", - "2016-04-14 00:00:00: Portfolio Value - 3854053.75\n", - "2016-04-15 00:00:00: Portfolio Value - 3892902.17\n", - "2016-04-18 00:00:00: Portfolio Value - 3922695.91\n", - "2016-04-19 00:00:00: Portfolio Value - 3920764.71\n", - "2016-04-20 00:00:00: Portfolio Value - 3883602.22\n", - "2016-04-21 00:00:00: Portfolio Value - 3809652.41\n", - "2016-04-22 00:00:00: Portfolio Value - 3825980.83\n", - "2016-04-25 00:00:00: Portfolio Value - 3866491.09\n", - "2016-04-26 00:00:00: Portfolio Value - 3863675.87\n", - "2016-04-27 00:00:00: Portfolio Value - 3875375.09\n", - "2016-04-28 00:00:00: Portfolio Value - 3843673.55\n", - "2016-04-29 00:00:00: Portfolio Value - 3844943.67\n", - "2016-05-02 00:00:00: Portfolio Value - 3903377.53\n", - "2016-05-03 00:00:00: Portfolio Value - 3919095.17\n", - "2016-05-04 00:00:00: Portfolio Value - 3935822.17\n", - "2016-05-05 00:00:00: Portfolio Value - 3919946.30\n", - "2016-05-06 00:00:00: Portfolio Value - 3926197.51\n", - "2016-05-09 00:00:00: Portfolio Value - 3970270.77\n", - "2016-05-10 00:00:00: Portfolio Value - 4024190.69\n", - "2016-05-11 00:00:00: Portfolio Value - 3990368.85\n", - "2016-05-12 00:00:00: Portfolio Value - 4031683.03\n", - "2016-05-13 00:00:00: Portfolio Value - 3991174.18\n", - "2016-05-16 00:00:00: Portfolio Value - 4009974.40\n", - "2016-05-17 00:00:00: Portfolio Value - 3898971.37\n", - "2016-05-18 00:00:00: Portfolio Value - 3923202.14\n", - "2016-05-19 00:00:00: Portfolio Value - 3914847.86\n", - "2016-05-20 00:00:00: Portfolio Value - 3937689.38\n", - "2016-05-23 00:00:00: Portfolio Value - 3873993.45\n", - "2016-05-24 00:00:00: Portfolio Value - 3961196.69\n", - "2016-05-25 00:00:00: Portfolio Value - 3957357.65\n", - "2016-05-26 00:00:00: Portfolio Value - 3962260.70\n", - "2016-05-27 00:00:00: Portfolio Value - 3962283.13\n", - "2016-05-31 00:00:00: Portfolio Value - 3949256.90\n", - "2016-06-01 00:00:00: Portfolio Value - 3979341.64\n", - "2016-06-02 00:00:00: Portfolio Value - 4008689.77\n", - "2016-06-03 00:00:00: Portfolio Value - 4007535.48\n", - "2016-06-06 00:00:00: Portfolio Value - 3989671.20\n", - "2016-06-07 00:00:00: Portfolio Value - 4002000.86\n", - "2016-06-08 00:00:00: Portfolio Value - 4029642.15\n", - "2016-06-09 00:00:00: Portfolio Value - 4051585.54\n", - "2016-06-10 00:00:00: Portfolio Value - 4029836.02\n", - "2016-06-13 00:00:00: Portfolio Value - 3999543.16\n", - "2016-06-14 00:00:00: Portfolio Value - 4014542.50\n", - "2016-06-15 00:00:00: Portfolio Value - 3979620.73\n", - "2016-06-16 00:00:00: Portfolio Value - 4013175.33\n", - "2016-06-17 00:00:00: Portfolio Value - 3979176.10\n", - "2016-06-20 00:00:00: Portfolio Value - 4016173.95\n", - "2016-06-21 00:00:00: Portfolio Value - 4031082.54\n", - "2016-06-22 00:00:00: Portfolio Value - 4041254.23\n", - "2016-06-23 00:00:00: Portfolio Value - 4091802.83\n", - "2016-06-24 00:00:00: Portfolio Value - 4017550.16\n", - "2016-06-27 00:00:00: Portfolio Value - 4000018.23\n", - "2016-06-28 00:00:00: Portfolio Value - 4107614.81\n", - "2016-06-29 00:00:00: Portfolio Value - 4176858.30\n", - "2016-06-30 00:00:00: Portfolio Value - 4268530.59\n", - "2016-07-01 00:00:00: Portfolio Value - 4270631.59\n", - "2016-07-05 00:00:00: Portfolio Value - 4298911.35\n", - "2016-07-06 00:00:00: Portfolio Value - 4317194.64\n", - "2016-07-07 00:00:00: Portfolio Value - 4310710.49\n", - "2016-07-08 00:00:00: Portfolio Value - 4377872.07\n", - "2016-07-11 00:00:00: Portfolio Value - 4363338.70\n", - "2016-07-12 00:00:00: Portfolio Value - 4321437.52\n", - "2016-07-13 00:00:00: Portfolio Value - 4330128.17\n", - "2016-07-14 00:00:00: Portfolio Value - 4340817.56\n", - "2016-07-15 00:00:00: Portfolio Value - 4300969.41\n", - "2016-07-18 00:00:00: Portfolio Value - 4284360.49\n", - "2016-07-19 00:00:00: Portfolio Value - 4294475.34\n", - "2016-07-20 00:00:00: Portfolio Value - 4313625.84\n", - "2016-07-21 00:00:00: Portfolio Value - 4279167.16\n", - "2016-07-22 00:00:00: Portfolio Value - 4323597.86\n", - "2016-07-25 00:00:00: Portfolio Value - 4312185.18\n", - "2016-07-26 00:00:00: Portfolio Value - 4312553.82\n", - "2016-07-27 00:00:00: Portfolio Value - 4268183.24\n", - "2016-07-28 00:00:00: Portfolio Value - 4329112.74\n", - "2016-07-29 00:00:00: Portfolio Value - 4322590.19\n", - "2016-08-01 00:00:00: Portfolio Value - 4337388.29\n", - "2016-08-02 00:00:00: Portfolio Value - 4308556.76\n", - "2016-08-03 00:00:00: Portfolio Value - 4285249.50\n", - "2016-08-04 00:00:00: Portfolio Value - 4299065.21\n", - "2016-08-05 00:00:00: Portfolio Value - 4291385.51\n", - "2016-08-08 00:00:00: Portfolio Value - 4274071.58\n", - "2016-08-09 00:00:00: Portfolio Value - 4319479.39\n", - "2016-08-10 00:00:00: Portfolio Value - 4342448.04\n", - "2016-08-11 00:00:00: Portfolio Value - 4341219.22\n", - "2016-08-12 00:00:00: Portfolio Value - 4325860.24\n", - "2016-08-15 00:00:00: Portfolio Value - 4312684.34\n", - "2016-08-16 00:00:00: Portfolio Value - 4273553.66\n", - "2016-08-17 00:00:00: Portfolio Value - 4276528.06\n", - "2016-08-18 00:00:00: Portfolio Value - 4287571.43\n", - "2016-08-19 00:00:00: Portfolio Value - 4295957.58\n", - "2016-08-22 00:00:00: Portfolio Value - 4291019.30\n", - "2016-08-23 00:00:00: Portfolio Value - 4279785.72\n", - "2016-08-24 00:00:00: Portfolio Value - 4253231.97\n", - "2016-08-25 00:00:00: Portfolio Value - 4254286.13\n", - "2016-08-26 00:00:00: Portfolio Value - 4206043.08\n", - "2016-08-29 00:00:00: Portfolio Value - 4229507.71\n", - "2016-08-30 00:00:00: Portfolio Value - 4211869.96\n", - "2016-08-31 00:00:00: Portfolio Value - 4208225.62\n", - "2016-09-01 00:00:00: Portfolio Value - 4234181.15\n", - "2016-09-02 00:00:00: Portfolio Value - 4264283.34\n", - "2016-09-06 00:00:00: Portfolio Value - 4279984.40\n", - "2016-09-07 00:00:00: Portfolio Value - 4259912.87\n", - "2016-09-08 00:00:00: Portfolio Value - 4207025.96\n", - "2016-09-09 00:00:00: Portfolio Value - 4088882.49\n", - "2016-09-12 00:00:00: Portfolio Value - 4179697.68\n", - "2016-09-13 00:00:00: Portfolio Value - 4146065.44\n", - "2016-09-14 00:00:00: Portfolio Value - 4131634.71\n", - "2016-09-15 00:00:00: Portfolio Value - 4180200.72\n", - "2016-09-16 00:00:00: Portfolio Value - 4156222.52\n", - "2016-09-19 00:00:00: Portfolio Value - 4183521.55\n", - "2016-09-20 00:00:00: Portfolio Value - 4195647.06\n", - "2016-09-21 00:00:00: Portfolio Value - 4272924.67\n", - "2016-09-22 00:00:00: Portfolio Value - 4306053.95\n", - "2016-09-23 00:00:00: Portfolio Value - 4266835.27\n", - "2016-09-26 00:00:00: Portfolio Value - 4265558.37\n", - "2016-09-27 00:00:00: Portfolio Value - 4315998.52\n", - "2016-09-28 00:00:00: Portfolio Value - 4296987.50\n", - "2016-09-29 00:00:00: Portfolio Value - 4248679.67\n", - "2016-09-30 00:00:00: Portfolio Value - 4289977.98\n", - "2016-10-03 00:00:00: Portfolio Value - 4239810.93\n", - "2016-10-04 00:00:00: Portfolio Value - 4197825.04\n", - "2016-10-05 00:00:00: Portfolio Value - 4188396.95\n", - "2016-10-06 00:00:00: Portfolio Value - 4200831.20\n", - "2016-10-07 00:00:00: Portfolio Value - 4201322.32\n", - "2016-10-10 00:00:00: Portfolio Value - 4221848.65\n", - "2016-10-11 00:00:00: Portfolio Value - 4148453.84\n", - "2016-10-12 00:00:00: Portfolio Value - 4173266.63\n", - "2016-10-13 00:00:00: Portfolio Value - 4174817.73\n", - "2016-10-14 00:00:00: Portfolio Value - 4171648.38\n", - "2016-10-17 00:00:00: Portfolio Value - 4150822.48\n", - "2016-10-18 00:00:00: Portfolio Value - 4156911.86\n", - "2016-10-19 00:00:00: Portfolio Value - 4127936.74\n", - "2016-10-20 00:00:00: Portfolio Value - 4089252.03\n", - "2016-10-21 00:00:00: Portfolio Value - 4091333.71\n", - "2016-10-24 00:00:00: Portfolio Value - 4122428.99\n", - "2016-10-25 00:00:00: Portfolio Value - 4108313.71\n", - "2016-10-26 00:00:00: Portfolio Value - 4077764.87\n", - "2016-10-27 00:00:00: Portfolio Value - 3997034.72\n", - "2016-10-28 00:00:00: Portfolio Value - 4023160.49\n", - "2016-10-31 00:00:00: Portfolio Value - 4048537.85\n", - "2016-11-01 00:00:00: Portfolio Value - 3994109.22\n", - "2016-11-02 00:00:00: Portfolio Value - 3994124.79\n", - "2016-11-03 00:00:00: Portfolio Value - 4007680.95\n", - "2016-11-04 00:00:00: Portfolio Value - 3954986.74\n", - "2016-11-07 00:00:00: Portfolio Value - 4015740.59\n", - "2016-11-08 00:00:00: Portfolio Value - 4052257.60\n", - "2016-11-09 00:00:00: Portfolio Value - 4025027.73\n", - "2016-11-10 00:00:00: Portfolio Value - 3987159.89\n", - "2016-11-11 00:00:00: Portfolio Value - 3992049.95\n", - "2016-11-14 00:00:00: Portfolio Value - 3888410.04\n", - "2016-11-15 00:00:00: Portfolio Value - 3944621.03\n", - "2016-11-16 00:00:00: Portfolio Value - 3984555.20\n", - "2016-11-17 00:00:00: Portfolio Value - 4054651.60\n", - "2016-11-18 00:00:00: Portfolio Value - 4008711.66\n", - "2016-11-21 00:00:00: Portfolio Value - 4051797.82\n", - "2016-11-22 00:00:00: Portfolio Value - 4090724.00\n", - "2016-11-23 00:00:00: Portfolio Value - 4081753.10\n", - "2016-11-25 00:00:00: Portfolio Value - 4120670.85\n", - "2016-11-28 00:00:00: Portfolio Value - 4114209.48\n", - "2016-11-29 00:00:00: Portfolio Value - 4150588.38\n", - "2016-11-30 00:00:00: Portfolio Value - 4049354.77\n", - "2016-12-01 00:00:00: Portfolio Value - 3979566.65\n", - "2016-12-02 00:00:00: Portfolio Value - 3984528.25\n", - "2016-12-05 00:00:00: Portfolio Value - 3992852.93\n", - "2016-12-06 00:00:00: Portfolio Value - 4021739.44\n", - "2016-12-07 00:00:00: Portfolio Value - 4124600.12\n", - "2016-12-08 00:00:00: Portfolio Value - 4110609.92\n", - "2016-12-09 00:00:00: Portfolio Value - 4126133.78\n", - "2016-12-12 00:00:00: Portfolio Value - 4154937.00\n", - "2016-12-13 00:00:00: Portfolio Value - 4192345.50\n", - "2016-12-14 00:00:00: Portfolio Value - 4137418.54\n", - "2016-12-15 00:00:00: Portfolio Value - 4159702.67\n", - "2016-12-16 00:00:00: Portfolio Value - 4158924.60\n", - "2016-12-19 00:00:00: Portfolio Value - 4190151.48\n", - "2016-12-20 00:00:00: Portfolio Value - 4207601.99\n", - "2016-12-21 00:00:00: Portfolio Value - 4193800.59\n", - "2016-12-22 00:00:00: Portfolio Value - 4188537.31\n", - "2016-12-23 00:00:00: Portfolio Value - 4185228.75\n", - "2016-12-27 00:00:00: Portfolio Value - 4204389.71\n", - "2016-12-28 00:00:00: Portfolio Value - 4162921.54\n", - "2016-12-29 00:00:00: Portfolio Value - 4193148.99\n", - "2016-12-30 00:00:00: Portfolio Value - 4148804.50\n", - "2017-01-03 00:00:00: Portfolio Value - 4144700.50\n", - "2017-01-04 00:00:00: Portfolio Value - 4176067.57\n", - "2017-01-05 00:00:00: Portfolio Value - 4195433.29\n", - "2017-01-06 00:00:00: Portfolio Value - 4228540.83\n", - "2017-01-09 00:00:00: Portfolio Value - 4200924.82\n", - "2017-01-10 00:00:00: Portfolio Value - 4206010.57\n", - "2017-01-11 00:00:00: Portfolio Value - 4219194.80\n", - "2017-01-12 00:00:00: Portfolio Value - 4221386.95\n", - "2017-01-13 00:00:00: Portfolio Value - 4206473.13\n", - "2017-01-17 00:00:00: Portfolio Value - 4248279.05\n", - "2017-01-18 00:00:00: Portfolio Value - 4247177.48\n", - "2017-01-19 00:00:00: Portfolio Value - 4212046.04\n", - "2017-01-20 00:00:00: Portfolio Value - 4220474.74\n", - "2017-01-23 00:00:00: Portfolio Value - 4140202.29\n", - "2017-01-24 00:00:00: Portfolio Value - 4149119.70\n", - "2017-01-25 00:00:00: Portfolio Value - 4159638.16\n", - "2017-01-26 00:00:00: Portfolio Value - 4190791.41\n", - "2017-01-27 00:00:00: Portfolio Value - 4177411.55\n", - "2017-01-30 00:00:00: Portfolio Value - 4159055.79\n", - "2017-01-31 00:00:00: Portfolio Value - 4170243.32\n", - "2017-02-01 00:00:00: Portfolio Value - 4143964.85\n", - "2017-02-02 00:00:00: Portfolio Value - 4195454.61\n", - "2017-02-03 00:00:00: Portfolio Value - 4215648.05\n", - "2017-02-06 00:00:00: Portfolio Value - 4182032.36\n", - "2017-02-07 00:00:00: Portfolio Value - 4217101.75\n", - "2017-02-08 00:00:00: Portfolio Value - 4279244.33\n", - "2017-02-09 00:00:00: Portfolio Value - 4322126.29\n", - "2017-02-10 00:00:00: Portfolio Value - 4330310.71\n", - "2017-02-13 00:00:00: Portfolio Value - 4323699.38\n", - "2017-02-14 00:00:00: Portfolio Value - 4320672.18\n", - "2017-02-15 00:00:00: Portfolio Value - 4360632.55\n", - "2017-02-16 00:00:00: Portfolio Value - 4384948.56\n", - "2017-02-17 00:00:00: Portfolio Value - 4430234.17\n", - "2017-02-21 00:00:00: Portfolio Value - 4448761.13\n", - "2017-02-22 00:00:00: Portfolio Value - 4438933.87\n", - "2017-02-23 00:00:00: Portfolio Value - 4438688.49\n", - "2017-02-24 00:00:00: Portfolio Value - 4480523.48\n", - "2017-02-27 00:00:00: Portfolio Value - 4466200.25\n", - "2017-02-28 00:00:00: Portfolio Value - 4451305.30\n", - "2017-03-01 00:00:00: Portfolio Value - 4495314.61\n", - "2017-03-02 00:00:00: Portfolio Value - 4468405.51\n", - "2017-03-03 00:00:00: Portfolio Value - 4423270.74\n", - "2017-03-06 00:00:00: Portfolio Value - 4403077.50\n", - "2017-03-07 00:00:00: Portfolio Value - 4381107.92\n", - "2017-03-08 00:00:00: Portfolio Value - 4376986.57\n", - "2017-03-09 00:00:00: Portfolio Value - 4387184.12\n", - "2017-03-10 00:00:00: Portfolio Value - 4407245.74\n", - "2017-03-13 00:00:00: Portfolio Value - 4433301.02\n", - "2017-03-14 00:00:00: Portfolio Value - 4423403.46\n", - "2017-03-15 00:00:00: Portfolio Value - 4435995.32\n", - "2017-03-16 00:00:00: Portfolio Value - 4416017.84\n", - "2017-03-17 00:00:00: Portfolio Value - 4457046.84\n", - "2017-03-20 00:00:00: Portfolio Value - 4441779.18\n", - "2017-03-21 00:00:00: Portfolio Value - 4423777.90\n", - "2017-03-22 00:00:00: Portfolio Value - 4439856.65\n", - "2017-03-23 00:00:00: Portfolio Value - 4443110.21\n", - "2017-03-24 00:00:00: Portfolio Value - 4435096.71\n", - "2017-03-27 00:00:00: Portfolio Value - 4404879.69\n", - "2017-03-28 00:00:00: Portfolio Value - 4424949.77\n", - "2017-03-29 00:00:00: Portfolio Value - 4430141.43\n", - "2017-03-30 00:00:00: Portfolio Value - 4421756.16\n", - "2017-03-31 00:00:00: Portfolio Value - 4426922.48\n", - "2017-04-03 00:00:00: Portfolio Value - 4375870.41\n", - "2017-04-04 00:00:00: Portfolio Value - 4382967.84\n", - "2017-04-05 00:00:00: Portfolio Value - 4389461.24\n", - "2017-04-06 00:00:00: Portfolio Value - 4397025.10\n", - "2017-04-07 00:00:00: Portfolio Value - 4377295.98\n", - "2017-04-10 00:00:00: Portfolio Value - 4394080.34\n", - "2017-04-11 00:00:00: Portfolio Value - 4402952.36\n", - "2017-04-12 00:00:00: Portfolio Value - 4397529.32\n", - "2017-04-13 00:00:00: Portfolio Value - 4357271.93\n", - "2017-04-17 00:00:00: Portfolio Value - 4391468.34\n", - "2017-04-18 00:00:00: Portfolio Value - 4399442.30\n", - "2017-04-19 00:00:00: Portfolio Value - 4430006.73\n", - "2017-04-20 00:00:00: Portfolio Value - 4468245.99\n", - "2017-04-21 00:00:00: Portfolio Value - 4472030.88\n", - "2017-04-24 00:00:00: Portfolio Value - 4533284.05\n", - "2017-04-25 00:00:00: Portfolio Value - 4567800.10\n", - "2017-04-26 00:00:00: Portfolio Value - 4589756.91\n", - "2017-04-27 00:00:00: Portfolio Value - 4597300.78\n", - "2017-04-28 00:00:00: Portfolio Value - 4533814.11\n", - "2017-05-01 00:00:00: Portfolio Value - 4501579.57\n", - "2017-05-02 00:00:00: Portfolio Value - 4481597.45\n", - "2017-05-03 00:00:00: Portfolio Value - 4466292.20\n", - "2017-05-04 00:00:00: Portfolio Value - 4515461.43\n", - "2017-05-05 00:00:00: Portfolio Value - 4546154.60\n", - "2017-05-08 00:00:00: Portfolio Value - 4516727.70\n", - "2017-05-09 00:00:00: Portfolio Value - 4486780.98\n", - "2017-05-10 00:00:00: Portfolio Value - 4502882.50\n", - "2017-05-11 00:00:00: Portfolio Value - 4495431.34\n", - "2017-05-12 00:00:00: Portfolio Value - 4469459.93\n", - "2017-05-15 00:00:00: Portfolio Value - 4490796.36\n", - "2017-05-16 00:00:00: Portfolio Value - 4455302.53\n", - "2017-05-17 00:00:00: Portfolio Value - 4410748.78\n", - "2017-05-18 00:00:00: Portfolio Value - 4435986.40\n", - "2017-05-19 00:00:00: Portfolio Value - 4465323.46\n", - "2017-05-22 00:00:00: Portfolio Value - 4455907.17\n", - "2017-05-23 00:00:00: Portfolio Value - 4325181.57\n", - "2017-05-24 00:00:00: Portfolio Value - 4396224.87\n", - "2017-05-25 00:00:00: Portfolio Value - 4467594.70\n", - "2017-05-26 00:00:00: Portfolio Value - 4485426.47\n", - "2017-05-30 00:00:00: Portfolio Value - 4504688.74\n", - "2017-05-31 00:00:00: Portfolio Value - 4542063.02\n", - "2017-06-01 00:00:00: Portfolio Value - 4610740.76\n", - "2017-06-02 00:00:00: Portfolio Value - 4640632.79\n", - "2017-06-05 00:00:00: Portfolio Value - 4615467.44\n", - "2017-06-06 00:00:00: Portfolio Value - 4563211.05\n", - "2017-06-07 00:00:00: Portfolio Value - 4586599.08\n", - "2017-06-08 00:00:00: Portfolio Value - 4530277.22\n", - "2017-06-09 00:00:00: Portfolio Value - 4534761.94\n", - "2017-06-12 00:00:00: Portfolio Value - 4552017.79\n", - "2017-06-13 00:00:00: Portfolio Value - 4582310.70\n", - "2017-06-14 00:00:00: Portfolio Value - 4583568.50\n", - "2017-06-15 00:00:00: Portfolio Value - 4613590.54\n", - "2017-06-16 00:00:00: Portfolio Value - 4569698.83\n", - "2017-06-19 00:00:00: Portfolio Value - 4596841.48\n", - "2017-06-20 00:00:00: Portfolio Value - 4544762.29\n", - "2017-06-21 00:00:00: Portfolio Value - 4504487.83\n", - "2017-06-22 00:00:00: Portfolio Value - 4511877.52\n", - "2017-06-23 00:00:00: Portfolio Value - 4496435.12\n", - "2017-06-26 00:00:00: Portfolio Value - 4515904.69\n", - "2017-06-27 00:00:00: Portfolio Value - 4476930.91\n", - "2017-06-28 00:00:00: Portfolio Value - 4482076.11\n", - "2017-06-29 00:00:00: Portfolio Value - 4409078.09\n", - "2017-06-30 00:00:00: Portfolio Value - 4446094.65\n", - "2017-07-03 00:00:00: Portfolio Value - 4436747.16\n", - "2017-07-05 00:00:00: Portfolio Value - 4344754.47\n", - "2017-07-06 00:00:00: Portfolio Value - 4295065.36\n", - "2017-07-07 00:00:00: Portfolio Value - 4314852.67\n", - "2017-07-10 00:00:00: Portfolio Value - 4320389.97\n", - "2017-07-11 00:00:00: Portfolio Value - 4296731.95\n", - "2017-07-12 00:00:00: Portfolio Value - 4322951.83\n", - "2017-07-13 00:00:00: Portfolio Value - 4332993.96\n", - "2017-07-14 00:00:00: Portfolio Value - 4368642.84\n", - "2017-07-17 00:00:00: Portfolio Value - 4377585.27\n", - "2017-07-18 00:00:00: Portfolio Value - 4378018.23\n", - "2017-07-19 00:00:00: Portfolio Value - 4395279.91\n", - "2017-07-20 00:00:00: Portfolio Value - 4409506.18\n", - "2017-07-21 00:00:00: Portfolio Value - 4454155.43\n", - "2017-07-24 00:00:00: Portfolio Value - 4419939.49\n", - "2017-07-25 00:00:00: Portfolio Value - 4455721.85\n", - "2017-07-26 00:00:00: Portfolio Value - 4449500.31\n", - "2017-07-27 00:00:00: Portfolio Value - 4489208.47\n", - "2017-07-28 00:00:00: Portfolio Value - 4498505.56\n", - "2017-07-31 00:00:00: Portfolio Value - 4582372.69\n", - "2017-08-01 00:00:00: Portfolio Value - 4603993.49\n", - "2017-08-02 00:00:00: Portfolio Value - 4580454.51\n", - "2017-08-03 00:00:00: Portfolio Value - 4553585.57\n", - "2017-08-04 00:00:00: Portfolio Value - 4556824.24\n", - "2017-08-07 00:00:00: Portfolio Value - 4561313.85\n", - "2017-08-08 00:00:00: Portfolio Value - 4534390.45\n", - "2017-08-09 00:00:00: Portfolio Value - 4570839.47\n", - "2017-08-10 00:00:00: Portfolio Value - 4550922.76\n", - "2017-08-11 00:00:00: Portfolio Value - 4562676.82\n", - "2017-08-14 00:00:00: Portfolio Value - 4602754.00\n", - "2017-08-15 00:00:00: Portfolio Value - 4570762.83\n", - "2017-08-16 00:00:00: Portfolio Value - 4619333.85\n", - "2017-08-17 00:00:00: Portfolio Value - 4545126.90\n", - "2017-08-18 00:00:00: Portfolio Value - 4525099.90\n", - "2017-08-21 00:00:00: Portfolio Value - 4570944.48\n", - "2017-08-22 00:00:00: Portfolio Value - 4606963.17\n", - "2017-08-23 00:00:00: Portfolio Value - 4557204.73\n", - "2017-08-24 00:00:00: Portfolio Value - 4505504.09\n", - "2017-08-25 00:00:00: Portfolio Value - 4564695.89\n", - "2017-08-28 00:00:00: Portfolio Value - 4553408.65\n", - "2017-08-29 00:00:00: Portfolio Value - 4542129.74\n", - "2017-08-30 00:00:00: Portfolio Value - 4566085.64\n", - "2017-08-31 00:00:00: Portfolio Value - 4604021.82\n", - "2017-09-01 00:00:00: Portfolio Value - 4582176.94\n", - "2017-09-05 00:00:00: Portfolio Value - 4559410.74\n", - "2017-09-06 00:00:00: Portfolio Value - 4557788.71\n", - "2017-09-07 00:00:00: Portfolio Value - 4548197.77\n", - "2017-09-08 00:00:00: Portfolio Value - 4593672.87\n", - "2017-09-11 00:00:00: Portfolio Value - 4639165.51\n", - "2017-09-12 00:00:00: Portfolio Value - 4655715.27\n", - "2017-09-13 00:00:00: Portfolio Value - 4665226.12\n", - "2017-09-14 00:00:00: Portfolio Value - 4636520.38\n", - "2017-09-15 00:00:00: Portfolio Value - 4645580.02\n", - "2017-09-18 00:00:00: Portfolio Value - 4626591.43\n", - "2017-09-19 00:00:00: Portfolio Value - 4556843.29\n", - "2017-09-20 00:00:00: Portfolio Value - 4582635.19\n", - "2017-09-21 00:00:00: Portfolio Value - 4557783.20\n", - "2017-09-22 00:00:00: Portfolio Value - 4609304.39\n", - "2017-09-25 00:00:00: Portfolio Value - 4618444.23\n", - "2017-09-26 00:00:00: Portfolio Value - 4611801.03\n", - "2017-09-27 00:00:00: Portfolio Value - 4609768.41\n", - "2017-09-28 00:00:00: Portfolio Value - 4620990.33\n", - "2017-09-29 00:00:00: Portfolio Value - 4658103.69\n", - "2017-10-02 00:00:00: Portfolio Value - 4686093.67\n", - "2017-10-03 00:00:00: Portfolio Value - 4694203.64\n", - "2017-10-04 00:00:00: Portfolio Value - 4707131.01\n", - "2017-10-05 00:00:00: Portfolio Value - 4729214.81\n", - "2017-10-06 00:00:00: Portfolio Value - 4709160.29\n", - "2017-10-09 00:00:00: Portfolio Value - 4676596.05\n", - "2017-10-10 00:00:00: Portfolio Value - 4684392.63\n", - "2017-10-11 00:00:00: Portfolio Value - 4713968.29\n", - "2017-10-12 00:00:00: Portfolio Value - 4727044.54\n", - "2017-10-13 00:00:00: Portfolio Value - 4780218.66\n", - "2017-10-16 00:00:00: Portfolio Value - 4766612.57\n", - "2017-10-17 00:00:00: Portfolio Value - 4785141.54\n", - "2017-10-18 00:00:00: Portfolio Value - 4770166.97\n", - "2017-10-19 00:00:00: Portfolio Value - 4767760.04\n", - "2017-10-20 00:00:00: Portfolio Value - 4765443.13\n", - "2017-10-23 00:00:00: Portfolio Value - 4753320.83\n", - "2017-10-24 00:00:00: Portfolio Value - 4719703.07\n", - "2017-10-25 00:00:00: Portfolio Value - 4733124.78\n", - "2017-10-26 00:00:00: Portfolio Value - 4716837.78\n", - "2017-10-27 00:00:00: Portfolio Value - 4723402.00\n", - "2017-10-30 00:00:00: Portfolio Value - 4712667.96\n", - "2017-10-31 00:00:00: Portfolio Value - 4748422.93\n", - "2017-11-01 00:00:00: Portfolio Value - 4745341.20\n", - "2017-11-02 00:00:00: Portfolio Value - 4782856.79\n", - "2017-11-03 00:00:00: Portfolio Value - 4807406.85\n", - "2017-11-06 00:00:00: Portfolio Value - 4806856.17\n", - "2017-11-07 00:00:00: Portfolio Value - 4816032.31\n", - "2017-11-08 00:00:00: Portfolio Value - 4826765.82\n", - "2017-11-09 00:00:00: Portfolio Value - 4833478.33\n", - "2017-11-10 00:00:00: Portfolio Value - 4810955.99\n", - "2017-11-13 00:00:00: Portfolio Value - 4846622.60\n", - "2017-11-14 00:00:00: Portfolio Value - 4878585.96\n", - "2017-11-15 00:00:00: Portfolio Value - 4848300.80\n", - "2017-11-16 00:00:00: Portfolio Value - 4893877.11\n", - "2017-11-17 00:00:00: Portfolio Value - 4895069.38\n", - "2017-11-20 00:00:00: Portfolio Value - 4906347.94\n", - "2017-11-21 00:00:00: Portfolio Value - 4938725.63\n", - "2017-11-22 00:00:00: Portfolio Value - 4917858.32\n", - "2017-11-24 00:00:00: Portfolio Value - 4913740.90\n", - "2017-11-27 00:00:00: Portfolio Value - 4931851.86\n", - "2017-11-28 00:00:00: Portfolio Value - 5041570.99\n", - "2017-11-29 00:00:00: Portfolio Value - 5098031.17\n", - "2017-11-30 00:00:00: Portfolio Value - 5121870.10\n", - "2017-12-01 00:00:00: Portfolio Value - 5107732.76\n", - "2017-12-04 00:00:00: Portfolio Value - 5132634.23\n", - "2017-12-05 00:00:00: Portfolio Value - 5135980.19\n", - "2017-12-06 00:00:00: Portfolio Value - 5085336.99\n", - "2017-12-07 00:00:00: Portfolio Value - 5085498.42\n", - "2017-12-08 00:00:00: Portfolio Value - 5133961.06\n", - "2017-12-11 00:00:00: Portfolio Value - 5133779.09\n", - "2017-12-12 00:00:00: Portfolio Value - 5123507.25\n", - "2017-12-13 00:00:00: Portfolio Value - 5105002.43\n", - "2017-12-14 00:00:00: Portfolio Value - 5075385.38\n", - "2017-12-15 00:00:00: Portfolio Value - 5114680.38\n", - "2017-12-18 00:00:00: Portfolio Value - 5115838.36\n", - "2017-12-19 00:00:00: Portfolio Value - 5082010.64\n", - "2017-12-20 00:00:00: Portfolio Value - 5058924.19\n", - "2017-12-21 00:00:00: Portfolio Value - 5063201.72\n", - "2017-12-22 00:00:00: Portfolio Value - 5082057.14\n", - "2017-12-26 00:00:00: Portfolio Value - 5096160.02\n", - "2017-12-27 00:00:00: Portfolio Value - 5075139.80\n", - "2017-12-28 00:00:00: Portfolio Value - 5112928.09\n", - "2017-12-29 00:00:00: Portfolio Value - 5081602.96\n", - "2018-01-02 00:00:00: Portfolio Value - 5140018.80\n", - "2018-01-03 00:00:00: Portfolio Value - 5184151.41\n", - "2018-01-04 00:00:00: Portfolio Value - 5226379.10\n", - "2018-01-05 00:00:00: Portfolio Value - 5294088.08\n", - "2018-01-08 00:00:00: Portfolio Value - 5308030.03\n", - "2018-01-09 00:00:00: Portfolio Value - 5318422.96\n", - "2018-01-10 00:00:00: Portfolio Value - 5273944.93\n", - "2018-01-11 00:00:00: Portfolio Value - 5293334.52\n", - "2018-01-12 00:00:00: Portfolio Value - 5330693.18\n", - "2018-01-16 00:00:00: Portfolio Value - 5311204.83\n", - "2018-01-17 00:00:00: Portfolio Value - 5383764.06\n", - "2018-01-18 00:00:00: Portfolio Value - 5388541.52\n", - "2018-01-19 00:00:00: Portfolio Value - 5439236.24\n", - "2018-01-22 00:00:00: Portfolio Value - 5475440.89\n", - "2018-01-23 00:00:00: Portfolio Value - 5487097.95\n", - "2018-01-24 00:00:00: Portfolio Value - 5518085.17\n", - "2018-01-25 00:00:00: Portfolio Value - 5548751.90\n", - "2018-01-26 00:00:00: Portfolio Value - 5614926.57\n", - "2018-01-29 00:00:00: Portfolio Value - 5565922.35\n", - "2018-01-30 00:00:00: Portfolio Value - 5522533.69\n", - "2018-01-31 00:00:00: Portfolio Value - 5524346.52\n", - "2018-02-01 00:00:00: Portfolio Value - 5503073.09\n", - "2018-02-02 00:00:00: Portfolio Value - 5425862.45\n", - "2018-02-05 00:00:00: Portfolio Value - 5184430.76\n", - "2018-02-06 00:00:00: Portfolio Value - 5255506.17\n", - "2018-02-07 00:00:00: Portfolio Value - 5199673.62\n", - "2018-02-08 00:00:00: Portfolio Value - 5017804.39\n", - "2018-02-09 00:00:00: Portfolio Value - 5102560.07\n", - "2018-02-12 00:00:00: Portfolio Value - 5178409.37\n", - "2018-02-13 00:00:00: Portfolio Value - 5162098.58\n", - "2018-02-14 00:00:00: Portfolio Value - 5239880.51\n", - "2018-02-15 00:00:00: Portfolio Value - 5327878.25\n", - "2018-02-16 00:00:00: Portfolio Value - 5317377.93\n", - "2018-02-20 00:00:00: Portfolio Value - 5244190.24\n", - "2018-02-21 00:00:00: Portfolio Value - 5227676.85\n", - "2018-02-22 00:00:00: Portfolio Value - 5217179.41\n", - "2018-02-23 00:00:00: Portfolio Value - 5319140.08\n", - "2018-02-26 00:00:00: Portfolio Value - 5380644.00\n", - "2018-02-27 00:00:00: Portfolio Value - 5164529.17\n", - "2018-02-28 00:00:00: Portfolio Value - 5119966.80\n", - "2018-03-01 00:00:00: Portfolio Value - 5063434.10\n", - "2018-03-02 00:00:00: Portfolio Value - 5068878.20\n", - "2018-03-05 00:00:00: Portfolio Value - 5151765.87\n", - "2018-03-06 00:00:00: Portfolio Value - 5155255.66\n", - "2018-03-07 00:00:00: Portfolio Value - 5145373.24\n", - "2018-03-08 00:00:00: Portfolio Value - 5178603.04\n", - "2018-03-09 00:00:00: Portfolio Value - 5267448.91\n", - "2018-03-12 00:00:00: Portfolio Value - 5242680.00\n", - "2018-03-13 00:00:00: Portfolio Value - 5213834.18\n", - "2018-03-14 00:00:00: Portfolio Value - 5165730.97\n", - "2018-03-15 00:00:00: Portfolio Value - 5168902.55\n", - "2018-03-16 00:00:00: Portfolio Value - 5173840.77\n", - "2018-03-19 00:00:00: Portfolio Value - 5115812.74\n", - "2018-03-20 00:00:00: Portfolio Value - 5120024.83\n", - "2018-03-21 00:00:00: Portfolio Value - 5074051.62\n", - "2018-03-22 00:00:00: Portfolio Value - 4983834.35\n", - "2018-03-23 00:00:00: Portfolio Value - 4886163.65\n", - "2018-03-26 00:00:00: Portfolio Value - 4976473.17\n", - "2018-03-27 00:00:00: Portfolio Value - 4934268.30\n", - "2018-03-28 00:00:00: Portfolio Value - 4955853.88\n", - "2018-03-29 00:00:00: Portfolio Value - 5049062.43\n", - "2018-04-02 00:00:00: Portfolio Value - 4862330.46\n", - "2018-04-03 00:00:00: Portfolio Value - 4931395.54\n", - "2018-04-04 00:00:00: Portfolio Value - 4996457.95\n", - "2018-04-05 00:00:00: Portfolio Value - 5036178.57\n", - "2018-04-06 00:00:00: Portfolio Value - 4923162.33\n", - "2018-04-09 00:00:00: Portfolio Value - 4950466.11\n", - "2018-04-10 00:00:00: Portfolio Value - 4971723.87\n", - "2018-04-11 00:00:00: Portfolio Value - 4967205.38\n", - "2018-04-12 00:00:00: Portfolio Value - 4958416.02\n", - "2018-04-13 00:00:00: Portfolio Value - 4950361.82\n", - "2018-04-16 00:00:00: Portfolio Value - 5031317.69\n", - "2018-04-17 00:00:00: Portfolio Value - 5068320.52\n", - "2018-04-18 00:00:00: Portfolio Value - 5075420.62\n", - "2018-04-19 00:00:00: Portfolio Value - 5021731.21\n", - "2018-04-20 00:00:00: Portfolio Value - 4954228.37\n", - "2018-04-23 00:00:00: Portfolio Value - 4953198.01\n", - "2018-04-24 00:00:00: Portfolio Value - 4911242.48\n", - "2018-04-25 00:00:00: Portfolio Value - 4930431.77\n", - "2018-04-26 00:00:00: Portfolio Value - 4968041.43\n", - "2018-04-27 00:00:00: Portfolio Value - 4946948.84\n", - "2018-04-30 00:00:00: Portfolio Value - 4928034.17\n", - "2018-05-01 00:00:00: Portfolio Value - 4945962.78\n", - "2018-05-02 00:00:00: Portfolio Value - 4853625.61\n", - "2018-05-03 00:00:00: Portfolio Value - 4859416.29\n", - "2018-05-04 00:00:00: Portfolio Value - 4943273.69\n", - "2018-05-07 00:00:00: Portfolio Value - 4944065.23\n", - "2018-05-08 00:00:00: Portfolio Value - 4944800.54\n", - "2018-05-09 00:00:00: Portfolio Value - 4986757.11\n", - "2018-05-10 00:00:00: Portfolio Value - 5053164.81\n", - "2018-05-11 00:00:00: Portfolio Value - 5074540.16\n", - "2018-05-14 00:00:00: Portfolio Value - 5064681.74\n", - "2018-05-15 00:00:00: Portfolio Value - 4990771.14\n", - "2018-05-16 00:00:00: Portfolio Value - 4989732.79\n", - "2018-05-17 00:00:00: Portfolio Value - 4966126.43\n", - "2018-05-18 00:00:00: Portfolio Value - 5004486.46\n", - "2018-05-21 00:00:00: Portfolio Value - 5054780.44\n", - "2018-05-22 00:00:00: Portfolio Value - 4901710.53\n", - "2018-05-23 00:00:00: Portfolio Value - 4978579.52\n", - "2018-05-24 00:00:00: Portfolio Value - 5003977.67\n", - "2018-05-25 00:00:00: Portfolio Value - 5014882.95\n", - "2018-05-29 00:00:00: Portfolio Value - 4946936.51\n", - "2018-05-30 00:00:00: Portfolio Value - 5056751.84\n", - "2018-05-31 00:00:00: Portfolio Value - 4989940.00\n", - "2018-06-01 00:00:00: Portfolio Value - 5028839.97\n", - "2018-06-04 00:00:00: Portfolio Value - 5087710.47\n", - "2018-06-05 00:00:00: Portfolio Value - 5083520.95\n", - "2018-06-06 00:00:00: Portfolio Value - 5129293.96\n", - "2018-06-07 00:00:00: Portfolio Value - 5171299.66\n", - "2018-06-08 00:00:00: Portfolio Value - 5236416.50\n", - "2018-06-11 00:00:00: Portfolio Value - 5261088.89\n", - "2018-06-12 00:00:00: Portfolio Value - 5288948.95\n", - "2018-06-13 00:00:00: Portfolio Value - 5253091.77\n", - "2018-06-14 00:00:00: Portfolio Value - 5281109.80\n", - "2018-06-15 00:00:00: Portfolio Value - 5328134.72\n", - "2018-06-18 00:00:00: Portfolio Value - 5282111.79\n", - "2018-06-19 00:00:00: Portfolio Value - 5281599.06\n", - "2018-06-20 00:00:00: Portfolio Value - 5258962.44\n", - "2018-06-21 00:00:00: Portfolio Value - 5253019.13\n", - "2018-06-22 00:00:00: Portfolio Value - 5296363.00\n", - "2018-06-25 00:00:00: Portfolio Value - 5276277.92\n", - "2018-06-26 00:00:00: Portfolio Value - 5275251.25\n", - "2018-06-27 00:00:00: Portfolio Value - 5206598.30\n", - "2018-06-28 00:00:00: Portfolio Value - 5268491.42\n", - "2018-06-29 00:00:00: Portfolio Value - 5260933.04\n", - "2018-07-02 00:00:00: Portfolio Value - 5266759.93\n", - "2018-07-03 00:00:00: Portfolio Value - 5287525.90\n", - "2018-07-05 00:00:00: Portfolio Value - 5333601.00\n", - "2018-07-06 00:00:00: Portfolio Value - 5398134.14\n", - "2018-07-09 00:00:00: Portfolio Value - 5425908.27\n", - "2018-07-10 00:00:00: Portfolio Value - 5438039.14\n", - "2018-07-11 00:00:00: Portfolio Value - 5409346.81\n", - "2018-07-12 00:00:00: Portfolio Value - 5470969.90\n", - "2018-07-13 00:00:00: Portfolio Value - 5478653.40\n", - "2018-07-16 00:00:00: Portfolio Value - 5469193.04\n", - "2018-07-17 00:00:00: Portfolio Value - 5521284.89\n", - "2018-07-18 00:00:00: Portfolio Value - 5482531.98\n", - "2018-07-19 00:00:00: Portfolio Value - 5515851.38\n", - "2018-07-20 00:00:00: Portfolio Value - 5504516.06\n", - "2018-07-23 00:00:00: Portfolio Value - 5510192.08\n", - "2018-07-24 00:00:00: Portfolio Value - 5507089.70\n", - "2018-07-25 00:00:00: Portfolio Value - 5541769.96\n", - "2018-07-26 00:00:00: Portfolio Value - 5599913.83\n", - "2018-07-27 00:00:00: Portfolio Value - 5526894.29\n", - "2018-07-30 00:00:00: Portfolio Value - 5486744.03\n", - "2018-07-31 00:00:00: Portfolio Value - 5560457.06\n", - "2018-08-01 00:00:00: Portfolio Value - 5550720.02\n", - "2018-08-02 00:00:00: Portfolio Value - 5578713.97\n", - "2018-08-03 00:00:00: Portfolio Value - 5632310.04\n", - "2018-08-06 00:00:00: Portfolio Value - 5656607.98\n", - "2018-08-07 00:00:00: Portfolio Value - 5665807.01\n", - "2018-08-08 00:00:00: Portfolio Value - 5701416.00\n", - "2018-08-09 00:00:00: Portfolio Value - 5711428.59\n", - "2018-08-10 00:00:00: Portfolio Value - 5712322.73\n", - "2018-08-13 00:00:00: Portfolio Value - 5671486.28\n", - "2018-08-14 00:00:00: Portfolio Value - 5750266.75\n", - "2018-08-15 00:00:00: Portfolio Value - 5752084.37\n", - "2018-08-16 00:00:00: Portfolio Value - 5835398.78\n", - "2018-08-17 00:00:00: Portfolio Value - 5858402.06\n", - "2018-08-20 00:00:00: Portfolio Value - 5852350.28\n", - "2018-08-21 00:00:00: Portfolio Value - 5850433.01\n", - "2018-08-22 00:00:00: Portfolio Value - 5816136.10\n", - "2018-08-23 00:00:00: Portfolio Value - 5828086.67\n", - "2018-08-24 00:00:00: Portfolio Value - 5881884.48\n", - "2018-08-27 00:00:00: Portfolio Value - 5881385.37\n", - "2018-08-28 00:00:00: Portfolio Value - 5885974.68\n", - "2018-08-29 00:00:00: Portfolio Value - 5925362.94\n", - "2018-08-30 00:00:00: Portfolio Value - 5876653.31\n", - "2018-08-31 00:00:00: Portfolio Value - 5894402.17\n", - "2018-09-04 00:00:00: Portfolio Value - 5958297.86\n", - "2018-09-05 00:00:00: Portfolio Value - 5937065.43\n", - "2018-09-06 00:00:00: Portfolio Value - 5969582.32\n", - "2018-09-07 00:00:00: Portfolio Value - 5966370.04\n", - "2018-09-10 00:00:00: Portfolio Value - 5967654.94\n", - "2018-09-11 00:00:00: Portfolio Value - 5983234.89\n", - "2018-09-12 00:00:00: Portfolio Value - 6003391.20\n", - "2018-09-13 00:00:00: Portfolio Value - 6065479.18\n", - "2018-09-14 00:00:00: Portfolio Value - 6027185.79\n", - "2018-09-17 00:00:00: Portfolio Value - 5979265.41\n", - "2018-09-18 00:00:00: Portfolio Value - 6000459.73\n", - "2018-09-19 00:00:00: Portfolio Value - 6013616.76\n", - "2018-09-20 00:00:00: Portfolio Value - 6059933.95\n", - "2018-09-21 00:00:00: Portfolio Value - 6088854.30\n", - "2018-09-24 00:00:00: Portfolio Value - 6037286.22\n", - "2018-09-25 00:00:00: Portfolio Value - 6037278.75\n", - "2018-09-26 00:00:00: Portfolio Value - 6030831.10\n", - "2018-09-27 00:00:00: Portfolio Value - 6033427.24\n", - "2018-09-28 00:00:00: Portfolio Value - 6058666.72\n", - "2018-10-01 00:00:00: Portfolio Value - 6030285.82\n", - "2018-10-02 00:00:00: Portfolio Value - 6038540.43\n", - "2018-10-03 00:00:00: Portfolio Value - 5967774.08\n", - "2018-10-04 00:00:00: Portfolio Value - 5934518.95\n", - "2018-10-05 00:00:00: Portfolio Value - 5926656.50\n", - "2018-10-08 00:00:00: Portfolio Value - 5959164.10\n", - "2018-10-09 00:00:00: Portfolio Value - 5952007.28\n", - "2018-10-10 00:00:00: Portfolio Value - 5761159.44\n", - "2018-10-11 00:00:00: Portfolio Value - 5609867.97\n", - "2018-10-12 00:00:00: Portfolio Value - 5690855.34\n", - "2018-10-15 00:00:00: Portfolio Value - 5710606.49\n", - "2018-10-16 00:00:00: Portfolio Value - 5798737.95\n", - "2018-10-17 00:00:00: Portfolio Value - 5699125.43\n", - "2018-10-18 00:00:00: Portfolio Value - 5681624.52\n", - "2018-10-19 00:00:00: Portfolio Value - 5693853.94\n", - "2018-10-22 00:00:00: Portfolio Value - 5695258.73\n", - "2018-10-23 00:00:00: Portfolio Value - 5668965.63\n", - "2018-10-24 00:00:00: Portfolio Value - 5573703.70\n", - "2018-10-25 00:00:00: Portfolio Value - 5633206.89\n", - "2018-10-26 00:00:00: Portfolio Value - 5541983.46\n", - "2018-10-29 00:00:00: Portfolio Value - 5575522.42\n", - "2018-10-30 00:00:00: Portfolio Value - 5726862.75\n", - "2018-10-31 00:00:00: Portfolio Value - 5685243.58\n", - "2018-11-01 00:00:00: Portfolio Value - 5703376.39\n", - "2018-11-02 00:00:00: Portfolio Value - 5731870.38\n", - "2018-11-05 00:00:00: Portfolio Value - 5790891.16\n", - "2018-11-06 00:00:00: Portfolio Value - 5824626.65\n", - "2018-11-07 00:00:00: Portfolio Value - 5900306.87\n", - "2018-11-08 00:00:00: Portfolio Value - 5926685.21\n", - "2018-11-09 00:00:00: Portfolio Value - 5904240.87\n", - "2018-11-12 00:00:00: Portfolio Value - 5835864.86\n", - "2018-11-13 00:00:00: Portfolio Value - 5864631.02\n", - "2018-11-14 00:00:00: Portfolio Value - 5844296.39\n", - "2018-11-15 00:00:00: Portfolio Value - 5860796.31\n", - "2018-11-16 00:00:00: Portfolio Value - 5968048.04\n", - "2018-11-19 00:00:00: Portfolio Value - 5906765.10\n", - "2018-11-20 00:00:00: Portfolio Value - 5744894.04\n", - "2018-11-21 00:00:00: Portfolio Value - 5786014.92\n", - "2018-11-23 00:00:00: Portfolio Value - 5828658.55\n", - "2018-11-26 00:00:00: Portfolio Value - 5844351.89\n", - "2018-11-27 00:00:00: Portfolio Value - 5907157.50\n", - "2018-11-28 00:00:00: Portfolio Value - 6017761.90\n", - "2018-11-29 00:00:00: Portfolio Value - 6032878.80\n", - "2018-11-30 00:00:00: Portfolio Value - 6036023.55\n", - "2018-12-03 00:00:00: Portfolio Value - 6045979.06\n", - "2018-12-04 00:00:00: Portfolio Value - 6072603.75\n", - "2018-12-06 00:00:00: Portfolio Value - 6061638.91\n", - "2018-12-07 00:00:00: Portfolio Value - 5974512.82\n", - "2018-12-10 00:00:00: Portfolio Value - 6046094.57\n", - "2018-12-11 00:00:00: Portfolio Value - 6039741.35\n", - "2018-12-12 00:00:00: Portfolio Value - 6074248.41\n", - "2018-12-13 00:00:00: Portfolio Value - 6062081.28\n", - "2018-12-14 00:00:00: Portfolio Value - 5920114.84\n", - "2018-12-17 00:00:00: Portfolio Value - 5753913.80\n", - "2018-12-18 00:00:00: Portfolio Value - 5759694.23\n", - "2018-12-19 00:00:00: Portfolio Value - 5683281.57\n", - "2018-12-20 00:00:00: Portfolio Value - 5582792.81\n", - "2018-12-21 00:00:00: Portfolio Value - 5537658.44\n", - "2018-12-24 00:00:00: Portfolio Value - 5347726.75\n", - "2018-12-26 00:00:00: Portfolio Value - 5578915.33\n", - "2018-12-27 00:00:00: Portfolio Value - 5671414.15\n", - "2018-12-28 00:00:00: Portfolio Value - 5669122.24\n", - "2018-12-31 00:00:00: Portfolio Value - 5722128.60\n", - "2019-01-02 00:00:00: Portfolio Value - 5637773.95\n", - "2019-01-03 00:00:00: Portfolio Value - 5541452.24\n", - "2019-01-04 00:00:00: Portfolio Value - 5662040.69\n", - "2019-01-07 00:00:00: Portfolio Value - 5636443.63\n", - "2019-01-08 00:00:00: Portfolio Value - 5657724.49\n", - "2019-01-09 00:00:00: Portfolio Value - 5674729.24\n", - "2019-01-10 00:00:00: Portfolio Value - 5728763.06\n", - "2019-01-11 00:00:00: Portfolio Value - 5711493.38\n", - "2019-01-14 00:00:00: Portfolio Value - 5671622.68\n", - "2019-01-15 00:00:00: Portfolio Value - 5728013.36\n", - "2019-01-16 00:00:00: Portfolio Value - 5716643.13\n", - "2019-01-17 00:00:00: Portfolio Value - 5762525.40\n", - "2019-01-18 00:00:00: Portfolio Value - 5827225.20\n", - "2019-01-22 00:00:00: Portfolio Value - 5751940.38\n", - "2019-01-23 00:00:00: Portfolio Value - 5784131.60\n", - "2019-01-24 00:00:00: Portfolio Value - 5737018.81\n", - "2019-01-25 00:00:00: Portfolio Value - 5679814.18\n", - "2019-01-28 00:00:00: Portfolio Value - 5673525.30\n", - "2019-01-29 00:00:00: Portfolio Value - 5690273.53\n", - "2019-01-30 00:00:00: Portfolio Value - 5763021.04\n", - "2019-01-31 00:00:00: Portfolio Value - 5925815.50\n", - "2019-02-01 00:00:00: Portfolio Value - 5968307.48\n", - "2019-02-04 00:00:00: Portfolio Value - 6022113.40\n", - "2019-02-05 00:00:00: Portfolio Value - 6050168.56\n", - "2019-02-06 00:00:00: Portfolio Value - 6026944.91\n", - "2019-02-07 00:00:00: Portfolio Value - 6044324.83\n", - "2019-02-08 00:00:00: Portfolio Value - 6107342.75\n", - "2019-02-11 00:00:00: Portfolio Value - 6130424.63\n", - "2019-02-12 00:00:00: Portfolio Value - 6184157.67\n", - "2019-02-13 00:00:00: Portfolio Value - 6193192.54\n", - "2019-02-14 00:00:00: Portfolio Value - 6227648.08\n", - "2019-02-15 00:00:00: Portfolio Value - 6327950.47\n", - "2019-02-19 00:00:00: Portfolio Value - 6325727.68\n", - "2019-02-20 00:00:00: Portfolio Value - 6329937.55\n", - "2019-02-21 00:00:00: Portfolio Value - 6313085.89\n", - "2019-02-22 00:00:00: Portfolio Value - 6347636.05\n", - "2019-02-25 00:00:00: Portfolio Value - 6288877.15\n", - "2019-02-26 00:00:00: Portfolio Value - 6360064.89\n", - "2019-02-27 00:00:00: Portfolio Value - 6330355.43\n", - "2019-02-28 00:00:00: Portfolio Value - 6392089.89\n", - "2019-03-01 00:00:00: Portfolio Value - 6412967.02\n", - "2019-03-04 00:00:00: Portfolio Value - 6389956.27\n", - "2019-03-05 00:00:00: Portfolio Value - 6410347.46\n", - "2019-03-06 00:00:00: Portfolio Value - 6350425.74\n", - "2019-03-07 00:00:00: Portfolio Value - 6359202.63\n", - "2019-03-08 00:00:00: Portfolio Value - 6358199.51\n", - "2019-03-11 00:00:00: Portfolio Value - 6423031.95\n", - "2019-03-12 00:00:00: Portfolio Value - 6434791.20\n", - "2019-03-13 00:00:00: Portfolio Value - 6495718.54\n", - "2019-03-14 00:00:00: Portfolio Value - 6521483.19\n", - "2019-03-15 00:00:00: Portfolio Value - 6568025.01\n", - "2019-03-18 00:00:00: Portfolio Value - 6573789.53\n", - "2019-03-19 00:00:00: Portfolio Value - 6586050.80\n", - "2019-03-20 00:00:00: Portfolio Value - 6567968.31\n", - "2019-03-21 00:00:00: Portfolio Value - 6698234.75\n", - "2019-03-22 00:00:00: Portfolio Value - 6607331.01\n", - "2019-03-25 00:00:00: Portfolio Value - 6636544.82\n", - "2019-03-26 00:00:00: Portfolio Value - 6686688.83\n", - "2019-03-27 00:00:00: Portfolio Value - 6684518.93\n", - "2019-03-28 00:00:00: Portfolio Value - 6718310.76\n", - "2019-03-29 00:00:00: Portfolio Value - 6765228.34\n", - "2019-04-01 00:00:00: Portfolio Value - 6775359.38\n", - "2019-04-02 00:00:00: Portfolio Value - 6773003.22\n", - "2019-04-03 00:00:00: Portfolio Value - 6768403.19\n", - "2019-04-04 00:00:00: Portfolio Value - 6739559.33\n", - "2019-04-05 00:00:00: Portfolio Value - 6784003.60\n", - "2019-04-08 00:00:00: Portfolio Value - 6794866.76\n", - "2019-04-09 00:00:00: Portfolio Value - 6773920.32\n", - "2019-04-10 00:00:00: Portfolio Value - 6820943.91\n", - "2019-04-11 00:00:00: Portfolio Value - 6854193.84\n", - "2019-04-12 00:00:00: Portfolio Value - 6874994.38\n", - "2019-04-15 00:00:00: Portfolio Value - 6909315.03\n", - "2019-04-16 00:00:00: Portfolio Value - 6881598.18\n", - "2019-04-17 00:00:00: Portfolio Value - 6808185.58\n", - "2019-04-18 00:00:00: Portfolio Value - 6827268.22\n", - "2019-04-22 00:00:00: Portfolio Value - 6827069.69\n", - "2019-04-23 00:00:00: Portfolio Value - 6901294.01\n", - "2019-04-24 00:00:00: Portfolio Value - 6914501.64\n", - "2019-04-25 00:00:00: Portfolio Value - 6925452.14\n", - "2019-04-26 00:00:00: Portfolio Value - 6963146.58\n", - "2019-04-29 00:00:00: Portfolio Value - 6931276.65\n", - "2019-04-30 00:00:00: Portfolio Value - 7030828.63\n", - "2019-05-01 00:00:00: Portfolio Value - 6918905.06\n", - "2019-05-02 00:00:00: Portfolio Value - 6961484.04\n", - "2019-05-03 00:00:00: Portfolio Value - 7017307.55\n", - "2019-05-06 00:00:00: Portfolio Value - 7015188.45\n", - "2019-05-07 00:00:00: Portfolio Value - 6915641.32\n", - "2019-05-08 00:00:00: Portfolio Value - 6899228.23\n", - "2019-05-09 00:00:00: Portfolio Value - 6894658.23\n", - "2019-05-10 00:00:00: Portfolio Value - 6952362.16\n", - "2019-05-13 00:00:00: Portfolio Value - 6853209.03\n", - "2019-05-14 00:00:00: Portfolio Value - 6884489.32\n", - "2019-05-15 00:00:00: Portfolio Value - 6907907.73\n", - "2019-05-16 00:00:00: Portfolio Value - 6982376.39\n", - "2019-05-17 00:00:00: Portfolio Value - 6977959.95\n", - "2019-05-20 00:00:00: Portfolio Value - 6925779.00\n", - "2019-05-21 00:00:00: Portfolio Value - 7075172.32\n", - "2019-05-22 00:00:00: Portfolio Value - 7115214.50\n", - "2019-05-23 00:00:00: Portfolio Value - 7071724.01\n", - "2019-05-24 00:00:00: Portfolio Value - 7108419.81\n", - "2019-05-28 00:00:00: Portfolio Value - 7054841.97\n", - "2019-05-29 00:00:00: Portfolio Value - 6967386.53\n", - "2019-05-30 00:00:00: Portfolio Value - 7054643.62\n", - "2019-05-31 00:00:00: Portfolio Value - 7012187.12\n", - "2019-06-03 00:00:00: Portfolio Value - 7067007.50\n", - "2019-06-04 00:00:00: Portfolio Value - 7132758.24\n", - "2019-06-05 00:00:00: Portfolio Value - 7307912.42\n", - "2019-06-06 00:00:00: Portfolio Value - 7410031.82\n", - "2019-06-07 00:00:00: Portfolio Value - 7492021.22\n", - "2019-06-10 00:00:00: Portfolio Value - 7503644.75\n", - "2019-06-11 00:00:00: Portfolio Value - 7436375.64\n", - "2019-06-12 00:00:00: Portfolio Value - 7506936.75\n", - "2019-06-13 00:00:00: Portfolio Value - 7499476.03\n", - "2019-06-14 00:00:00: Portfolio Value - 7516993.18\n", - "2019-06-17 00:00:00: Portfolio Value - 7511299.49\n", - "2019-06-18 00:00:00: Portfolio Value - 7513514.13\n", - "2019-06-19 00:00:00: Portfolio Value - 7554628.15\n", - "2019-06-20 00:00:00: Portfolio Value - 7614581.05\n", - "2019-06-21 00:00:00: Portfolio Value - 7568854.25\n", - "2019-06-24 00:00:00: Portfolio Value - 7581399.46\n", - "2019-06-25 00:00:00: Portfolio Value - 7522131.06\n", - "2019-06-26 00:00:00: Portfolio Value - 7384827.82\n", - "2019-06-27 00:00:00: Portfolio Value - 7437780.53\n", - "2019-06-28 00:00:00: Portfolio Value - 7507143.14\n", - "2019-07-01 00:00:00: Portfolio Value - 7560449.10\n", - "2019-07-02 00:00:00: Portfolio Value - 7633940.34\n", - "2019-07-03 00:00:00: Portfolio Value - 7729101.91\n", - "2019-07-05 00:00:00: Portfolio Value - 7700602.37\n", - "2019-07-08 00:00:00: Portfolio Value - 7698963.14\n", - "2019-07-09 00:00:00: Portfolio Value - 7705771.72\n", - "2019-07-10 00:00:00: Portfolio Value - 7750396.39\n", - "2019-07-11 00:00:00: Portfolio Value - 7772829.58\n", - "2019-07-12 00:00:00: Portfolio Value - 7794725.86\n", - "2019-07-15 00:00:00: Portfolio Value - 7832215.66\n", - "2019-07-16 00:00:00: Portfolio Value - 7804575.24\n", - "2019-07-17 00:00:00: Portfolio Value - 7766406.60\n", - "2019-07-18 00:00:00: Portfolio Value - 7823141.09\n", - "2019-07-19 00:00:00: Portfolio Value - 7770466.53\n", - "2019-07-22 00:00:00: Portfolio Value - 7764929.21\n", - "2019-07-23 00:00:00: Portfolio Value - 7784471.24\n", - "2019-07-24 00:00:00: Portfolio Value - 7809163.64\n", - "2019-07-25 00:00:00: Portfolio Value - 7765575.01\n", - "2019-07-26 00:00:00: Portfolio Value - 7815356.24\n", - "2019-07-29 00:00:00: Portfolio Value - 7826356.23\n", - "2019-07-30 00:00:00: Portfolio Value - 7807846.63\n", - "2019-07-31 00:00:00: Portfolio Value - 7674946.55\n", - "2019-08-01 00:00:00: Portfolio Value - 7667346.99\n", - "2019-08-02 00:00:00: Portfolio Value - 7665333.48\n", - "2019-08-05 00:00:00: Portfolio Value - 7409504.90\n", - "2019-08-06 00:00:00: Portfolio Value - 7563844.99\n", - "2019-08-07 00:00:00: Portfolio Value - 7640484.66\n", - "2019-08-08 00:00:00: Portfolio Value - 7777735.73\n", - "2019-08-09 00:00:00: Portfolio Value - 7784780.19\n", - "2019-08-12 00:00:00: Portfolio Value - 7694097.99\n", - "2019-08-13 00:00:00: Portfolio Value - 7797544.89\n", - "2019-08-14 00:00:00: Portfolio Value - 7616130.61\n", - "2019-08-15 00:00:00: Portfolio Value - 7747616.97\n", - "2019-08-16 00:00:00: Portfolio Value - 7836451.08\n", - "2019-08-19 00:00:00: Portfolio Value - 7880616.63\n", - "2019-08-20 00:00:00: Portfolio Value - 7824156.78\n", - "2019-08-21 00:00:00: Portfolio Value - 7868698.64\n", - "2019-08-22 00:00:00: Portfolio Value - 7867468.52\n", - "2019-08-23 00:00:00: Portfolio Value - 7687573.69\n", - "2019-08-26 00:00:00: Portfolio Value - 7791943.76\n", - "2019-08-27 00:00:00: Portfolio Value - 7845458.10\n", - "2019-08-28 00:00:00: Portfolio Value - 7922605.43\n", - "2019-08-29 00:00:00: Portfolio Value - 8004454.86\n", - "2019-08-30 00:00:00: Portfolio Value - 8009865.53\n", - "2019-09-03 00:00:00: Portfolio Value - 8014923.23\n", - "2019-09-04 00:00:00: Portfolio Value - 8135779.07\n", - "2019-09-05 00:00:00: Portfolio Value - 8162597.84\n", - "2019-09-06 00:00:00: Portfolio Value - 8201854.39\n", - "2019-09-09 00:00:00: Portfolio Value - 8029415.51\n", - "2019-09-10 00:00:00: Portfolio Value - 7988500.78\n", - "2019-09-11 00:00:00: Portfolio Value - 8033828.04\n", - "2019-09-12 00:00:00: Portfolio Value - 8021597.15\n", - "2019-09-13 00:00:00: Portfolio Value - 8036682.84\n", - "2019-09-16 00:00:00: Portfolio Value - 7946697.99\n", - "2019-09-17 00:00:00: Portfolio Value - 8084933.85\n", - "2019-09-18 00:00:00: Portfolio Value - 8118027.83\n", - "2019-09-19 00:00:00: Portfolio Value - 8114499.10\n", - "2019-09-20 00:00:00: Portfolio Value - 8088884.31\n", - "2019-09-23 00:00:00: Portfolio Value - 8063776.10\n", - "2019-09-24 00:00:00: Portfolio Value - 7955586.52\n", - "2019-09-25 00:00:00: Portfolio Value - 7962662.57\n", - "2019-09-26 00:00:00: Portfolio Value - 7966016.93\n", - "2019-09-27 00:00:00: Portfolio Value - 7904020.91\n", - "2019-09-30 00:00:00: Portfolio Value - 7963060.72\n", - "2019-10-01 00:00:00: Portfolio Value - 7875645.07\n", - "2019-10-02 00:00:00: Portfolio Value - 7727126.50\n", - "2019-10-03 00:00:00: Portfolio Value - 7787244.49\n", - "2019-10-04 00:00:00: Portfolio Value - 7929158.25\n", - "2019-10-07 00:00:00: Portfolio Value - 7901561.76\n", - "2019-10-08 00:00:00: Portfolio Value - 7782864.55\n", - "2019-10-09 00:00:00: Portfolio Value - 7865300.00\n", - "2019-10-10 00:00:00: Portfolio Value - 7887975.69\n", - "2019-10-11 00:00:00: Portfolio Value - 7894198.99\n", - "2019-10-14 00:00:00: Portfolio Value - 7855738.00\n", - "2019-10-15 00:00:00: Portfolio Value - 7934419.32\n", - "2019-10-16 00:00:00: Portfolio Value - 7953754.59\n", - "2019-10-17 00:00:00: Portfolio Value - 7978442.51\n", - "2019-10-18 00:00:00: Portfolio Value - 7961568.79\n", - "2019-10-21 00:00:00: Portfolio Value - 7954765.74\n", - "2019-10-22 00:00:00: Portfolio Value - 7846725.21\n", - "2019-10-23 00:00:00: Portfolio Value - 7851598.73\n", - "2019-10-24 00:00:00: Portfolio Value - 7915617.19\n", - "2019-10-25 00:00:00: Portfolio Value - 7966597.71\n", - "2019-10-28 00:00:00: Portfolio Value - 8015764.94\n", - "2019-10-29 00:00:00: Portfolio Value - 8057761.41\n", - "2019-10-30 00:00:00: Portfolio Value - 8148312.45\n", - "2019-10-31 00:00:00: Portfolio Value - 8107709.51\n", - "2019-11-01 00:00:00: Portfolio Value - 8135782.63\n", - "2019-11-04 00:00:00: Portfolio Value - 8043380.93\n", - "2019-11-05 00:00:00: Portfolio Value - 8006803.28\n", - "2019-11-06 00:00:00: Portfolio Value - 8080286.13\n", - "2019-11-07 00:00:00: Portfolio Value - 8068721.31\n", - "2019-11-08 00:00:00: Portfolio Value - 8079849.01\n", - "2019-11-11 00:00:00: Portfolio Value - 8088026.40\n", - "2019-11-12 00:00:00: Portfolio Value - 8082841.00\n", - "2019-11-13 00:00:00: Portfolio Value - 8153504.99\n", - "2019-11-14 00:00:00: Portfolio Value - 8182357.64\n", - "2019-11-15 00:00:00: Portfolio Value - 8179820.42\n", - "2019-11-18 00:00:00: Portfolio Value - 8212491.28\n", - "2019-11-19 00:00:00: Portfolio Value - 8216583.56\n", - "2019-11-20 00:00:00: Portfolio Value - 8204086.48\n", - "2019-11-21 00:00:00: Portfolio Value - 8157571.87\n", - "2019-11-22 00:00:00: Portfolio Value - 8146910.42\n", - "2019-11-25 00:00:00: Portfolio Value - 8169810.88\n", - "2019-11-26 00:00:00: Portfolio Value - 8265769.86\n", - "2019-11-27 00:00:00: Portfolio Value - 8314843.31\n", - "2019-11-29 00:00:00: Portfolio Value - 8277687.58\n", - "2019-12-02 00:00:00: Portfolio Value - 8241530.06\n", - "2019-12-03 00:00:00: Portfolio Value - 8175008.03\n", - "2019-12-04 00:00:00: Portfolio Value - 8216008.44\n", - "2019-12-05 00:00:00: Portfolio Value - 8239896.94\n", - "2019-12-06 00:00:00: Portfolio Value - 8272162.01\n", - "2019-12-09 00:00:00: Portfolio Value - 8269693.10\n", - "2019-12-10 00:00:00: Portfolio Value - 8394987.60\n", - "2019-12-11 00:00:00: Portfolio Value - 8403062.09\n", - "2019-12-12 00:00:00: Portfolio Value - 8416005.15\n", - "2019-12-13 00:00:00: Portfolio Value - 8462708.57\n", - "2019-12-16 00:00:00: Portfolio Value - 8476180.28\n", - "2019-12-17 00:00:00: Portfolio Value - 8484719.08\n", - "2019-12-18 00:00:00: Portfolio Value - 8482963.17\n", - "2019-12-19 00:00:00: Portfolio Value - 8529167.98\n", - "2019-12-20 00:00:00: Portfolio Value - 8599973.08\n", - "2019-12-23 00:00:00: Portfolio Value - 8548834.45\n", - "2019-12-24 00:00:00: Portfolio Value - 8570461.37\n", - "2019-12-26 00:00:00: Portfolio Value - 8564783.21\n", - "2019-12-27 00:00:00: Portfolio Value - 8569568.55\n", - "2019-12-30 00:00:00: Portfolio Value - 8503830.73\n", - "2019-12-31 00:00:00: Portfolio Value - 8541360.95\n", - "2020-01-02 00:00:00: Portfolio Value - 8550080.86\n", - "2020-01-03 00:00:00: Portfolio Value - 8547932.72\n", - "2020-01-06 00:00:00: Portfolio Value - 8540001.18\n", - "2020-01-07 00:00:00: Portfolio Value - 8477831.69\n", - "2020-01-08 00:00:00: Portfolio Value - 8515605.34\n", - "2020-01-09 00:00:00: Portfolio Value - 8579655.57\n", - "2020-01-10 00:00:00: Portfolio Value - 8545527.04\n", - "2020-01-13 00:00:00: Portfolio Value - 8592535.60\n", - "2020-01-14 00:00:00: Portfolio Value - 8593973.71\n", - "2020-01-15 00:00:00: Portfolio Value - 8667298.33\n", - "2020-01-16 00:00:00: Portfolio Value - 8719741.91\n", - "2020-01-17 00:00:00: Portfolio Value - 8765275.46\n", - "2020-01-21 00:00:00: Portfolio Value - 8816880.61\n", - "2020-01-22 00:00:00: Portfolio Value - 8847148.87\n", - "2020-01-23 00:00:00: Portfolio Value - 8872742.03\n", - "2020-01-24 00:00:00: Portfolio Value - 8790934.72\n", - "2020-01-27 00:00:00: Portfolio Value - 8722100.56\n", - "2020-01-28 00:00:00: Portfolio Value - 8755741.23\n", - "2020-01-29 00:00:00: Portfolio Value - 8738628.05\n", - "2020-01-30 00:00:00: Portfolio Value - 8756935.28\n", - "2020-01-31 00:00:00: Portfolio Value - 8658219.51\n", - "2020-02-03 00:00:00: Portfolio Value - 8732713.48\n", - "2020-02-04 00:00:00: Portfolio Value - 8809697.12\n", - "2020-02-05 00:00:00: Portfolio Value - 8877106.17\n", - "2020-02-06 00:00:00: Portfolio Value - 8795920.00\n", - "2020-02-07 00:00:00: Portfolio Value - 8758855.88\n", - "2020-02-10 00:00:00: Portfolio Value - 8808746.38\n", - "2020-02-11 00:00:00: Portfolio Value - 8811531.95\n", - "2020-02-12 00:00:00: Portfolio Value - 8830780.68\n", - "2020-02-13 00:00:00: Portfolio Value - 8878850.49\n", - "2020-02-14 00:00:00: Portfolio Value - 8906449.24\n", - "2020-02-18 00:00:00: Portfolio Value - 8936004.11\n", - "2020-02-19 00:00:00: Portfolio Value - 8935993.73\n", - "2020-02-20 00:00:00: Portfolio Value - 8921049.68\n", - "2020-02-21 00:00:00: Portfolio Value - 8873985.92\n", - "2020-02-24 00:00:00: Portfolio Value - 8702428.86\n", - "2020-02-25 00:00:00: Portfolio Value - 8492868.60\n", - "2020-02-26 00:00:00: Portfolio Value - 8452204.61\n", - "2020-02-27 00:00:00: Portfolio Value - 8157485.35\n", - "2020-02-28 00:00:00: Portfolio Value - 7994918.47\n", - "2020-03-02 00:00:00: Portfolio Value - 8425172.19\n", - "2020-03-03 00:00:00: Portfolio Value - 8252995.40\n", - "2020-03-04 00:00:00: Portfolio Value - 8728455.89\n", - "2020-03-05 00:00:00: Portfolio Value - 8470182.32\n", - "2020-03-06 00:00:00: Portfolio Value - 8468547.71\n", - "2020-03-09 00:00:00: Portfolio Value - 8180884.15\n", - "2020-03-10 00:00:00: Portfolio Value - 8473088.79\n", - "2020-03-11 00:00:00: Portfolio Value - 8025827.15\n", - "2020-03-12 00:00:00: Portfolio Value - 7245288.25\n", - "2020-03-13 00:00:00: Portfolio Value - 7749367.75\n", - "2020-03-16 00:00:00: Portfolio Value - 6747557.28\n", - "2020-03-17 00:00:00: Portfolio Value - 7464094.53\n", - "2020-03-18 00:00:00: Portfolio Value - 6946105.19\n", - "2020-03-19 00:00:00: Portfolio Value - 6818489.31\n", - "2020-03-20 00:00:00: Portfolio Value - 6290361.29\n", - "2020-03-23 00:00:00: Portfolio Value - 6043647.58\n", - "2020-03-24 00:00:00: Portfolio Value - 6656515.84\n", - "2020-03-25 00:00:00: Portfolio Value - 6662151.67\n", - "2020-03-26 00:00:00: Portfolio Value - 7205064.54\n", - "2020-03-27 00:00:00: Portfolio Value - 7048351.98\n", - "2020-03-30 00:00:00: Portfolio Value - 7404980.70\n", - "2020-03-31 00:00:00: Portfolio Value - 7186356.63\n", - "2020-04-01 00:00:00: Portfolio Value - 6846143.74\n", - "2020-04-02 00:00:00: Portfolio Value - 7071331.78\n", - "2020-04-03 00:00:00: Portfolio Value - 6994821.81\n", - "2020-04-06 00:00:00: Portfolio Value - 7544746.85\n", - "2020-04-07 00:00:00: Portfolio Value - 7528245.99\n", - "2020-04-08 00:00:00: Portfolio Value - 7755793.38\n", - "2020-04-09 00:00:00: Portfolio Value - 7901918.34\n", - "2020-04-13 00:00:00: Portfolio Value - 7817046.77\n", - "2020-04-14 00:00:00: Portfolio Value - 8197138.59\n", - "2020-04-15 00:00:00: Portfolio Value - 8015189.96\n", - "2020-04-16 00:00:00: Portfolio Value - 8193930.55\n", - "2020-04-17 00:00:00: Portfolio Value - 8336220.38\n", - "2020-04-20 00:00:00: Portfolio Value - 8223100.18\n", - "2020-04-21 00:00:00: Portfolio Value - 7987490.62\n", - "2020-04-22 00:00:00: Portfolio Value - 8173641.21\n", - "2020-04-23 00:00:00: Portfolio Value - 8112250.17\n", - "2020-04-24 00:00:00: Portfolio Value - 8242293.11\n", - "2020-04-27 00:00:00: Portfolio Value - 8309528.22\n", - "2020-04-28 00:00:00: Portfolio Value - 8185646.21\n", - "2020-04-29 00:00:00: Portfolio Value - 8211049.29\n", - "2020-04-30 00:00:00: Portfolio Value - 8091377.41\n", - "2020-05-01 00:00:00: Portfolio Value - 8015485.34\n", - "2020-05-04 00:00:00: Portfolio Value - 8087466.78\n", - "2020-05-05 00:00:00: Portfolio Value - 8236420.79\n", - "2020-05-06 00:00:00: Portfolio Value - 8178209.51\n", - "2020-05-07 00:00:00: Portfolio Value - 8222043.01\n", - "2020-05-08 00:00:00: Portfolio Value - 8361596.75\n", - "2020-05-11 00:00:00: Portfolio Value - 8443868.17\n", - "2020-05-12 00:00:00: Portfolio Value - 8338858.23\n", - "2020-05-13 00:00:00: Portfolio Value - 8248407.93\n", - "2020-05-14 00:00:00: Portfolio Value - 8275406.61\n", - "2020-05-15 00:00:00: Portfolio Value - 8404512.62\n", - "2020-05-18 00:00:00: Portfolio Value - 8549238.10\n", - "2020-05-19 00:00:00: Portfolio Value - 8544745.50\n", - "2020-05-20 00:00:00: Portfolio Value - 8571992.21\n", - "2020-05-21 00:00:00: Portfolio Value - 8519599.87\n", - "2020-05-22 00:00:00: Portfolio Value - 8588968.87\n", - "2020-05-26 00:00:00: Portfolio Value - 8531842.66\n", - "2020-05-27 00:00:00: Portfolio Value - 8691262.85\n", - "2020-05-28 00:00:00: Portfolio Value - 8823077.72\n", - "2020-05-29 00:00:00: Portfolio Value - 8884857.72\n", - "2020-06-01 00:00:00: Portfolio Value - 8835946.47\n", - "2020-06-02 00:00:00: Portfolio Value - 8890976.19\n", - "2020-06-03 00:00:00: Portfolio Value - 8960583.03\n", - "2020-06-04 00:00:00: Portfolio Value - 8845426.06\n", - "2020-06-05 00:00:00: Portfolio Value - 8902819.50\n", - "2020-06-08 00:00:00: Portfolio Value - 8926159.71\n", - "2020-06-09 00:00:00: Portfolio Value - 8842390.52\n", - "2020-06-10 00:00:00: Portfolio Value - 8859207.72\n", - "2020-06-11 00:00:00: Portfolio Value - 8488521.91\n", - "2020-06-12 00:00:00: Portfolio Value - 8504291.51\n", - "2020-06-15 00:00:00: Portfolio Value - 8611461.24\n", - "2020-06-16 00:00:00: Portfolio Value - 8782679.06\n", - "2020-06-17 00:00:00: Portfolio Value - 8835028.97\n", - "2020-06-18 00:00:00: Portfolio Value - 8850423.88\n", - "2020-06-19 00:00:00: Portfolio Value - 8742957.36\n", - "2020-06-22 00:00:00: Portfolio Value - 8779173.96\n", - "2020-06-23 00:00:00: Portfolio Value - 8753020.76\n", - "2020-06-24 00:00:00: Portfolio Value - 8575151.30\n", - "2020-06-25 00:00:00: Portfolio Value - 8637568.88\n", - "2020-06-26 00:00:00: Portfolio Value - 8576420.11\n", - "2020-06-29 00:00:00: Portfolio Value - 8690337.78\n", - "2020-06-30 00:00:00: Portfolio Value - 8813575.15\n", - "2020-07-01 00:00:00: Portfolio Value - 8881278.35\n", - "2020-07-02 00:00:00: Portfolio Value - 8929058.11\n", - "2020-07-06 00:00:00: Portfolio Value - 8941601.07\n", - "2020-07-07 00:00:00: Portfolio Value - 8925606.12\n", - "2020-07-08 00:00:00: Portfolio Value - 8934032.19\n", - "2020-07-09 00:00:00: Portfolio Value - 8953832.98\n", - "2020-07-10 00:00:00: Portfolio Value - 9025887.35\n", - "2020-07-13 00:00:00: Portfolio Value - 8916746.81\n", - "2020-07-14 00:00:00: Portfolio Value - 9114791.07\n", - "2020-07-15 00:00:00: Portfolio Value - 9204696.13\n", - "2020-07-16 00:00:00: Portfolio Value - 9237560.40\n", - "2020-07-17 00:00:00: Portfolio Value - 9338026.26\n", - "2020-07-20 00:00:00: Portfolio Value - 9370893.08\n", - "2020-07-21 00:00:00: Portfolio Value - 9377524.04\n", - "2020-07-22 00:00:00: Portfolio Value - 9450896.86\n", - "2020-07-23 00:00:00: Portfolio Value - 9412178.70\n", - "2020-07-24 00:00:00: Portfolio Value - 9401974.84\n", - "2020-07-27 00:00:00: Portfolio Value - 9422861.00\n", - "2020-07-28 00:00:00: Portfolio Value - 9402452.95\n", - "2020-07-29 00:00:00: Portfolio Value - 9525807.01\n", - "2020-07-30 00:00:00: Portfolio Value - 9567631.38\n", - "2020-07-31 00:00:00: Portfolio Value - 9651598.30\n", - "2020-08-03 00:00:00: Portfolio Value - 9688740.22\n", - "2020-08-04 00:00:00: Portfolio Value - 9753866.22\n", - "2020-08-05 00:00:00: Portfolio Value - 9729416.91\n", - "2020-08-06 00:00:00: Portfolio Value - 9627776.28\n", - "2020-08-07 00:00:00: Portfolio Value - 9653326.90\n", - "2020-08-10 00:00:00: Portfolio Value - 9566265.55\n", - "2020-08-11 00:00:00: Portfolio Value - 9454659.10\n", - "2020-08-12 00:00:00: Portfolio Value - 9593988.44\n", - "2020-08-13 00:00:00: Portfolio Value - 9628807.93\n", - "2020-08-14 00:00:00: Portfolio Value - 9613766.28\n", - "2020-08-17 00:00:00: Portfolio Value - 9665010.10\n", - "2020-08-18 00:00:00: Portfolio Value - 9717672.35\n", - "2020-08-19 00:00:00: Portfolio Value - 9671465.30\n", - "2020-08-20 00:00:00: Portfolio Value - 9658831.09\n", - "2020-08-21 00:00:00: Portfolio Value - 9655766.20\n", - "2020-08-24 00:00:00: Portfolio Value - 9646740.43\n", - "2020-08-25 00:00:00: Portfolio Value - 9632806.10\n", - "2020-08-26 00:00:00: Portfolio Value - 9648600.56\n", - "2020-08-27 00:00:00: Portfolio Value - 9666747.62\n", - "2020-08-28 00:00:00: Portfolio Value - 9640716.71\n", - "2020-08-31 00:00:00: Portfolio Value - 9673239.59\n", - "2020-09-01 00:00:00: Portfolio Value - 9738157.51\n", - "2020-09-02 00:00:00: Portfolio Value - 9951927.22\n", - "2020-09-03 00:00:00: Portfolio Value - 9643388.62\n", - "2020-09-04 00:00:00: Portfolio Value - 9535827.23\n", - "2020-09-08 00:00:00: Portfolio Value - 9402659.81\n", - "2020-09-09 00:00:00: Portfolio Value - 9646517.35\n", - "2020-09-10 00:00:00: Portfolio Value - 9505421.34\n", - "2020-09-11 00:00:00: Portfolio Value - 9558910.18\n", - "2020-09-14 00:00:00: Portfolio Value - 9657125.30\n", - "2020-09-15 00:00:00: Portfolio Value - 9688792.60\n", - "2020-09-16 00:00:00: Portfolio Value - 9645198.64\n", - "2020-09-17 00:00:00: Portfolio Value - 9604633.92\n", - "2020-09-18 00:00:00: Portfolio Value - 9529359.68\n", - "2020-09-21 00:00:00: Portfolio Value - 9428823.93\n", - "2020-09-22 00:00:00: Portfolio Value - 9495647.16\n", - "2020-09-23 00:00:00: Portfolio Value - 9299084.39\n", - "2020-09-24 00:00:00: Portfolio Value - 9284237.47\n", - "2020-09-25 00:00:00: Portfolio Value - 9380705.69\n", - "2020-09-28 00:00:00: Portfolio Value - 9529828.41\n", - "2020-09-29 00:00:00: Portfolio Value - 9512264.28\n", - "2020-09-30 00:00:00: Portfolio Value - 9621337.68\n", - "2020-10-01 00:00:00: Portfolio Value - 9677435.13\n", - "2020-10-02 00:00:00: Portfolio Value - 9576127.47\n", - "2020-10-05 00:00:00: Portfolio Value - 9690733.47\n", - "2020-10-06 00:00:00: Portfolio Value - 9549974.64\n", - "2020-10-07 00:00:00: Portfolio Value - 9655829.46\n", - "2020-10-08 00:00:00: Portfolio Value - 9721124.76\n", - "2020-10-09 00:00:00: Portfolio Value - 9804069.49\n", - "2020-10-12 00:00:00: Portfolio Value - 9933663.59\n", - "2020-10-13 00:00:00: Portfolio Value - 9950888.15\n", - "2020-10-14 00:00:00: Portfolio Value - 9913977.04\n", - "2020-10-15 00:00:00: Portfolio Value - 9977882.24\n", - "2020-10-16 00:00:00: Portfolio Value - 9987624.99\n", - "2020-10-19 00:00:00: Portfolio Value - 9819129.78\n", - "2020-10-20 00:00:00: Portfolio Value - 9813454.20\n", - "2020-10-21 00:00:00: Portfolio Value - 9855010.60\n", - "2020-10-22 00:00:00: Portfolio Value - 9836537.62\n", - "2020-10-23 00:00:00: Portfolio Value - 9872841.39\n", - "2020-10-26 00:00:00: Portfolio Value - 9704282.20\n", - "2020-10-27 00:00:00: Portfolio Value - 9664641.26\n", - "2020-10-28 00:00:00: Portfolio Value - 9434814.21\n", - "2020-10-29 00:00:00: Portfolio Value - 9462355.42\n", - "2020-10-30 00:00:00: Portfolio Value - 9450023.22\n", - "2020-11-02 00:00:00: Portfolio Value - 9579725.42\n", - "2020-11-03 00:00:00: Portfolio Value - 9744849.33\n", - "2020-11-04 00:00:00: Portfolio Value - 9939374.89\n", - "2020-11-05 00:00:00: Portfolio Value - 10048840.24\n", - "2020-11-06 00:00:00: Portfolio Value - 10113705.78\n", - "2020-11-09 00:00:00: Portfolio Value - 9971113.75\n", - "2020-11-10 00:00:00: Portfolio Value - 10101269.12\n", - "2020-11-11 00:00:00: Portfolio Value - 10242425.86\n", - "2020-11-12 00:00:00: Portfolio Value - 10127921.77\n", - "2020-11-13 00:00:00: Portfolio Value - 10204292.03\n", - "2020-11-16 00:00:00: Portfolio Value - 10221832.99\n", - "2020-11-17 00:00:00: Portfolio Value - 10137477.27\n", - "2020-11-18 00:00:00: Portfolio Value - 10048157.09\n", - "2020-11-19 00:00:00: Portfolio Value - 10096601.92\n", - "2020-11-20 00:00:00: Portfolio Value - 10032716.27\n", - "2020-11-23 00:00:00: Portfolio Value - 9978717.60\n", - "2020-11-24 00:00:00: Portfolio Value - 10035945.24\n", - "2020-11-25 00:00:00: Portfolio Value - 10030781.14\n", - "2020-11-27 00:00:00: Portfolio Value - 10036214.23\n", - "2020-11-30 00:00:00: Portfolio Value - 10112972.02\n", - "2020-12-01 00:00:00: Portfolio Value - 10272677.63\n", - "2020-12-02 00:00:00: Portfolio Value - 10163978.35\n", - "2020-12-03 00:00:00: Portfolio Value - 10118644.39\n", - "2020-12-04 00:00:00: Portfolio Value - 10207066.52\n", - "2020-12-07 00:00:00: Portfolio Value - 10204822.53\n", - "2020-12-08 00:00:00: Portfolio Value - 10139300.40\n", - "2020-12-09 00:00:00: Portfolio Value - 10165475.82\n", - "2020-12-10 00:00:00: Portfolio Value - 10194647.68\n", - "2020-12-11 00:00:00: Portfolio Value - 10212300.70\n", - "2020-12-14 00:00:00: Portfolio Value - 10173053.90\n", - "2020-12-15 00:00:00: Portfolio Value - 10336519.06\n", - "2020-12-16 00:00:00: Portfolio Value - 10392254.87\n", - "2020-12-17 00:00:00: Portfolio Value - 10437334.45\n", - "2020-12-18 00:00:00: Portfolio Value - 10449049.63\n", - "2020-12-21 00:00:00: Portfolio Value - 10357798.77\n", - "2020-12-22 00:00:00: Portfolio Value - 10314205.59\n", - "2020-12-23 00:00:00: Portfolio Value - 10290962.01\n", - "2020-12-24 00:00:00: Portfolio Value - 10388228.12\n", - "2020-12-28 00:00:00: Portfolio Value - 10381221.31\n", - "2020-12-29 00:00:00: Portfolio Value - 10362840.99\n", - "2020-12-30 00:00:00: Portfolio Value - 10335136.66\n", - "2020-12-31 00:00:00: Portfolio Value - 10473313.88\n", - "2021-01-04 00:00:00: Portfolio Value - 10313503.47\n", - "2021-01-05 00:00:00: Portfolio Value - 10298443.20\n", - "2021-01-06 00:00:00: Portfolio Value - 10394673.79\n", - "2021-01-07 00:00:00: Portfolio Value - 10460338.22\n", - "2021-01-08 00:00:00: Portfolio Value - 10486498.11\n", - "2021-01-11 00:00:00: Portfolio Value - 10496364.34\n", - "2021-01-12 00:00:00: Portfolio Value - 10452335.93\n", - "2021-01-13 00:00:00: Portfolio Value - 10444464.31\n", - "2021-01-14 00:00:00: Portfolio Value - 10340146.52\n", - "2021-01-15 00:00:00: Portfolio Value - 10384848.41\n", - "2021-01-19 00:00:00: Portfolio Value - 10383824.74\n", - "2021-01-20 00:00:00: Portfolio Value - 10506063.44\n", - "2021-01-21 00:00:00: Portfolio Value - 10500329.23\n", - "2021-01-22 00:00:00: Portfolio Value - 10420904.72\n", - "2021-01-25 00:00:00: Portfolio Value - 10468078.78\n", - "2021-01-26 00:00:00: Portfolio Value - 10457554.33\n", - "2021-01-27 00:00:00: Portfolio Value - 10116968.70\n", - "2021-01-28 00:00:00: Portfolio Value - 10243527.47\n", - "2021-01-29 00:00:00: Portfolio Value - 9998385.80\n", - "2021-02-01 00:00:00: Portfolio Value - 10112478.45\n", - "2021-02-02 00:00:00: Portfolio Value - 10286028.07\n", - "2021-02-03 00:00:00: Portfolio Value - 10215612.59\n", - "2021-02-04 00:00:00: Portfolio Value - 10303119.28\n", - "2021-02-05 00:00:00: Portfolio Value - 10360338.70\n", - "2021-02-08 00:00:00: Portfolio Value - 10398733.20\n", - "2021-02-09 00:00:00: Portfolio Value - 10405876.13\n", - "2021-02-10 00:00:00: Portfolio Value - 10449183.78\n", - "2021-02-11 00:00:00: Portfolio Value - 10380304.01\n", - "2021-02-12 00:00:00: Portfolio Value - 10386435.20\n", - "2021-02-16 00:00:00: Portfolio Value - 10375300.43\n", - "2021-02-17 00:00:00: Portfolio Value - 10457088.40\n", - "2021-02-18 00:00:00: Portfolio Value - 10489531.46\n", - "2021-02-19 00:00:00: Portfolio Value - 10368038.34\n", - "2021-02-22 00:00:00: Portfolio Value - 10215415.40\n", - "2021-02-23 00:00:00: Portfolio Value - 10174875.07\n", - "2021-02-24 00:00:00: Portfolio Value - 10155087.14\n", - "2021-02-25 00:00:00: Portfolio Value - 9978293.83\n", - "2021-02-26 00:00:00: Portfolio Value - 9916749.84\n", - "2021-03-01 00:00:00: Portfolio Value - 10068846.10\n", - "2021-03-02 00:00:00: Portfolio Value - 10018057.38\n", - "2021-03-03 00:00:00: Portfolio Value - 9827497.47\n", - "2021-03-04 00:00:00: Portfolio Value - 9614984.76\n", - "2021-03-05 00:00:00: Portfolio Value - 9954597.69\n", - "2021-03-08 00:00:00: Portfolio Value - 9951427.02\n", - "2021-03-09 00:00:00: Portfolio Value - 9986835.33\n", - "2021-03-10 00:00:00: Portfolio Value - 10093714.08\n", - "2021-03-11 00:00:00: Portfolio Value - 10121755.18\n", - "2021-03-12 00:00:00: Portfolio Value - 10207656.21\n", - "2021-03-15 00:00:00: Portfolio Value - 10275191.61\n", - "2021-03-16 00:00:00: Portfolio Value - 10332078.91\n", - "2021-03-17 00:00:00: Portfolio Value - 10265994.99\n", - "2021-03-18 00:00:00: Portfolio Value - 10197366.99\n", - "2021-03-19 00:00:00: Portfolio Value - 10221638.14\n", - "2021-03-22 00:00:00: Portfolio Value - 10369903.43\n", - "2021-03-23 00:00:00: Portfolio Value - 10405749.77\n", - "2021-03-24 00:00:00: Portfolio Value - 10444292.73\n", - "2021-03-25 00:00:00: Portfolio Value - 10491693.20\n", - "2021-03-26 00:00:00: Portfolio Value - 10692073.00\n", - "2021-03-29 00:00:00: Portfolio Value - 10813199.02\n", - "2021-03-30 00:00:00: Portfolio Value - 10691016.49\n", - "2021-03-31 00:00:00: Portfolio Value - 10639416.26\n", - "2021-04-01 00:00:00: Portfolio Value - 10710789.44\n", - "2021-04-05 00:00:00: Portfolio Value - 10810114.48\n", - "2021-04-06 00:00:00: Portfolio Value - 10866880.00\n", - "2021-04-07 00:00:00: Portfolio Value - 10820001.85\n", - "2021-04-08 00:00:00: Portfolio Value - 10831392.12\n", - "2021-04-09 00:00:00: Portfolio Value - 10922887.19\n", - "2021-04-12 00:00:00: Portfolio Value - 10967721.69\n", - "2021-04-13 00:00:00: Portfolio Value - 10981722.36\n", - "2021-04-14 00:00:00: Portfolio Value - 10971730.89\n", - "2021-04-15 00:00:00: Portfolio Value - 11148850.90\n", - "2021-04-16 00:00:00: Portfolio Value - 11265680.85\n", - "2021-04-19 00:00:00: Portfolio Value - 11246499.38\n", - "2021-04-20 00:00:00: Portfolio Value - 11340153.07\n", - "2021-04-21 00:00:00: Portfolio Value - 11339673.52\n", - "2021-04-22 00:00:00: Portfolio Value - 11326169.39\n", - "2021-04-23 00:00:00: Portfolio Value - 11311340.78\n", - "2021-04-26 00:00:00: Portfolio Value - 11175778.08\n", - "2021-04-27 00:00:00: Portfolio Value - 11198700.57\n", - "2021-04-28 00:00:00: Portfolio Value - 11203324.34\n", - "2021-04-29 00:00:00: Portfolio Value - 11312249.93\n", - "2021-04-30 00:00:00: Portfolio Value - 11285425.97\n", - "2021-05-03 00:00:00: Portfolio Value - 11371194.89\n", - "2021-05-04 00:00:00: Portfolio Value - 11331476.77\n", - "2021-05-05 00:00:00: Portfolio Value - 11260317.39\n", - "2021-05-06 00:00:00: Portfolio Value - 11337554.12\n", - "2021-05-07 00:00:00: Portfolio Value - 11439711.35\n", - "2021-05-10 00:00:00: Portfolio Value - 11471684.72\n", - "2021-05-11 00:00:00: Portfolio Value - 11321478.75\n", - "2021-05-12 00:00:00: Portfolio Value - 11181769.67\n", - "2021-05-13 00:00:00: Portfolio Value - 11362703.66\n", - "2021-05-14 00:00:00: Portfolio Value - 11431867.96\n", - "2021-05-17 00:00:00: Portfolio Value - 11331198.96\n", - "2021-05-18 00:00:00: Portfolio Value - 11281370.74\n", - "2021-05-19 00:00:00: Portfolio Value - 11174824.71\n", - "2021-05-20 00:00:00: Portfolio Value - 11320152.64\n", - "2021-05-21 00:00:00: Portfolio Value - 11270587.17\n", - "2021-05-24 00:00:00: Portfolio Value - 11313270.65\n", - "2021-05-25 00:00:00: Portfolio Value - 11219486.01\n", - "2021-05-26 00:00:00: Portfolio Value - 11163892.99\n", - "2021-05-27 00:00:00: Portfolio Value - 11165151.66\n", - "2021-05-28 00:00:00: Portfolio Value - 11142259.40\n", - "2021-06-01 00:00:00: Portfolio Value - 11062662.25\n", - "2021-06-02 00:00:00: Portfolio Value - 11027153.15\n", - "2021-06-03 00:00:00: Portfolio Value - 11013585.11\n", - "2021-06-04 00:00:00: Portfolio Value - 11080216.17\n", - "2021-06-07 00:00:00: Portfolio Value - 11066850.78\n", - "2021-06-08 00:00:00: Portfolio Value - 11069044.54\n", - "2021-06-09 00:00:00: Portfolio Value - 11088708.20\n", - "2021-06-10 00:00:00: Portfolio Value - 11184855.24\n", - "2021-06-11 00:00:00: Portfolio Value - 11224176.23\n", - "2021-06-14 00:00:00: Portfolio Value - 11267992.53\n", - "2021-06-15 00:00:00: Portfolio Value - 11273058.54\n", - "2021-06-16 00:00:00: Portfolio Value - 11142595.40\n", - "2021-06-17 00:00:00: Portfolio Value - 11219150.06\n", - "2021-06-18 00:00:00: Portfolio Value - 11075535.93\n", - "2021-06-21 00:00:00: Portfolio Value - 11275169.51\n", - "2021-06-22 00:00:00: Portfolio Value - 11366343.01\n", - "2021-06-23 00:00:00: Portfolio Value - 11316216.97\n", - "2021-06-24 00:00:00: Portfolio Value - 11406430.34\n", - "2021-06-25 00:00:00: Portfolio Value - 11532753.46\n", - "2021-06-28 00:00:00: Portfolio Value - 11582575.58\n", - "2021-06-29 00:00:00: Portfolio Value - 11592703.58\n", - "2021-06-30 00:00:00: Portfolio Value - 11560141.82\n", - "2021-07-01 00:00:00: Portfolio Value - 11678555.04\n", - "2021-07-02 00:00:00: Portfolio Value - 11795543.29\n", - "2021-07-06 00:00:00: Portfolio Value - 11798974.39\n", - "2021-07-07 00:00:00: Portfolio Value - 11951500.64\n", - "2021-07-08 00:00:00: Portfolio Value - 11869687.62\n", - "2021-07-09 00:00:00: Portfolio Value - 11948774.29\n", - "2021-07-12 00:00:00: Portfolio Value - 11920506.98\n", - "2021-07-13 00:00:00: Portfolio Value - 11851008.68\n", - "2021-07-14 00:00:00: Portfolio Value - 11891841.30\n", - "2021-07-15 00:00:00: Portfolio Value - 11957663.48\n", - "2021-07-16 00:00:00: Portfolio Value - 12052771.90\n", - "2021-07-19 00:00:00: Portfolio Value - 11951633.00\n", - "2021-07-20 00:00:00: Portfolio Value - 12042611.22\n", - "2021-07-21 00:00:00: Portfolio Value - 12012748.29\n", - "2021-07-22 00:00:00: Portfolio Value - 12077520.49\n", - "2021-07-23 00:00:00: Portfolio Value - 12288995.49\n", - "2021-07-26 00:00:00: Portfolio Value - 12206102.03\n", - "2021-07-27 00:00:00: Portfolio Value - 12248430.54\n", - "2021-07-28 00:00:00: Portfolio Value - 12172733.90\n", - "2021-07-29 00:00:00: Portfolio Value - 12241531.43\n", - "2021-07-30 00:00:00: Portfolio Value - 12321266.41\n", - "2021-08-02 00:00:00: Portfolio Value - 12353545.29\n", - "2021-08-03 00:00:00: Portfolio Value - 12438207.43\n", - "2021-08-04 00:00:00: Portfolio Value - 12378444.37\n", - "2021-08-05 00:00:00: Portfolio Value - 12347382.56\n", - "2021-08-06 00:00:00: Portfolio Value - 12301010.18\n", - "2021-08-09 00:00:00: Portfolio Value - 12268193.85\n", - "2021-08-10 00:00:00: Portfolio Value - 12257671.43\n", - "2021-08-11 00:00:00: Portfolio Value - 12319862.02\n", - "2021-08-12 00:00:00: Portfolio Value - 12349413.38\n", - "2021-08-13 00:00:00: Portfolio Value - 12348675.68\n", - "2021-08-16 00:00:00: Portfolio Value - 12518467.54\n", - "2021-08-17 00:00:00: Portfolio Value - 12505827.89\n", - "2021-08-18 00:00:00: Portfolio Value - 12384534.17\n", - "2021-08-19 00:00:00: Portfolio Value - 12514916.21\n", - "2021-08-20 00:00:00: Portfolio Value - 12598523.96\n", - "2021-08-23 00:00:00: Portfolio Value - 12526933.95\n", - "2021-08-24 00:00:00: Portfolio Value - 12406985.70\n", - "2021-08-25 00:00:00: Portfolio Value - 12432491.01\n", - "2021-08-26 00:00:00: Portfolio Value - 12351874.76\n", - "2021-08-27 00:00:00: Portfolio Value - 12322226.06\n", - "2021-08-30 00:00:00: Portfolio Value - 12401090.70\n", - "2021-08-31 00:00:00: Portfolio Value - 12422135.55\n", - "2021-09-01 00:00:00: Portfolio Value - 12450583.42\n", - "2021-09-02 00:00:00: Portfolio Value - 12497209.03\n", - "2021-09-03 00:00:00: Portfolio Value - 12519379.82\n", - "2021-09-07 00:00:00: Portfolio Value - 12406865.55\n", - "2021-09-08 00:00:00: Portfolio Value - 12559323.61\n", - "2021-09-09 00:00:00: Portfolio Value - 12449540.28\n", - "2021-09-10 00:00:00: Portfolio Value - 12449860.89\n", - "2021-09-13 00:00:00: Portfolio Value - 12423520.21\n", - "2021-09-14 00:00:00: Portfolio Value - 12373553.58\n", - "2021-09-15 00:00:00: Portfolio Value - 12434991.81\n", - "2021-09-16 00:00:00: Portfolio Value - 12410879.92\n", - "2021-09-17 00:00:00: Portfolio Value - 12308305.64\n", - "2021-09-20 00:00:00: Portfolio Value - 12207485.06\n", - "2021-09-21 00:00:00: Portfolio Value - 12303166.87\n", - "2021-09-22 00:00:00: Portfolio Value - 12407445.72\n", - "2021-09-23 00:00:00: Portfolio Value - 12452371.01\n", - "2021-09-24 00:00:00: Portfolio Value - 12491862.91\n", - "2021-09-27 00:00:00: Portfolio Value - 12339827.21\n", - "2021-09-28 00:00:00: Portfolio Value - 12157577.66\n", - "2021-09-29 00:00:00: Portfolio Value - 12349735.44\n", - "2021-09-30 00:00:00: Portfolio Value - 12204778.18\n", - "2021-10-01 00:00:00: Portfolio Value - 12219188.57\n", - "2021-10-04 00:00:00: Portfolio Value - 12065227.60\n", - "2021-10-05 00:00:00: Portfolio Value - 12188681.04\n", - "2021-10-06 00:00:00: Portfolio Value - 12274716.86\n", - "2021-10-07 00:00:00: Portfolio Value - 12364823.96\n", - "2021-10-08 00:00:00: Portfolio Value - 12281025.87\n", - "2021-10-11 00:00:00: Portfolio Value - 12190949.80\n", - "2021-10-12 00:00:00: Portfolio Value - 12193049.23\n", - "2021-10-13 00:00:00: Portfolio Value - 12254959.67\n", - "2021-10-14 00:00:00: Portfolio Value - 12461271.33\n", - "2021-10-15 00:00:00: Portfolio Value - 12501502.85\n", - "2021-10-18 00:00:00: Portfolio Value - 12534083.11\n", - "2021-10-19 00:00:00: Portfolio Value - 12668016.73\n", - "2021-10-20 00:00:00: Portfolio Value - 12779356.32\n", - "2021-10-21 00:00:00: Portfolio Value - 12941640.97\n", - "2021-10-22 00:00:00: Portfolio Value - 13054539.67\n", - "2021-10-25 00:00:00: Portfolio Value - 13034134.13\n", - "2021-10-26 00:00:00: Portfolio Value - 13047963.42\n", - "2021-10-27 00:00:00: Portfolio Value - 12960774.62\n", - "2021-10-28 00:00:00: Portfolio Value - 12887137.08\n", - "2021-10-29 00:00:00: Portfolio Value - 12824090.63\n", - "2021-11-01 00:00:00: Portfolio Value - 12786397.51\n", - "2021-11-02 00:00:00: Portfolio Value - 12843086.26\n", - "2021-11-03 00:00:00: Portfolio Value - 12906363.63\n", - "2021-11-04 00:00:00: Portfolio Value - 12974207.23\n", - "2021-11-05 00:00:00: Portfolio Value - 12993827.40\n", - "2021-11-08 00:00:00: Portfolio Value - 13007844.72\n", - "2021-11-09 00:00:00: Portfolio Value - 13129932.47\n", - "2021-11-10 00:00:00: Portfolio Value - 13161954.51\n", - "2021-11-11 00:00:00: Portfolio Value - 13136000.89\n", - "2021-11-12 00:00:00: Portfolio Value - 13185509.36\n", - "2021-11-15 00:00:00: Portfolio Value - 13279062.25\n", - "2021-11-16 00:00:00: Portfolio Value - 13335686.90\n", - "2021-11-17 00:00:00: Portfolio Value - 13279314.38\n", - "2021-11-18 00:00:00: Portfolio Value - 13182705.40\n", - "2021-11-19 00:00:00: Portfolio Value - 13160501.42\n", - "2021-11-22 00:00:00: Portfolio Value - 13119682.53\n", - "2021-11-23 00:00:00: Portfolio Value - 13129120.27\n", - "2021-11-24 00:00:00: Portfolio Value - 13062349.92\n", - "2021-11-26 00:00:00: Portfolio Value - 12858716.38\n", - "2021-11-29 00:00:00: Portfolio Value - 13005262.16\n", - "2021-11-30 00:00:00: Portfolio Value - 12703833.83\n", - "2021-12-01 00:00:00: Portfolio Value - 12617132.16\n", - "2021-12-02 00:00:00: Portfolio Value - 12938086.15\n", - "2021-12-03 00:00:00: Portfolio Value - 12956630.14\n", - "2021-12-06 00:00:00: Portfolio Value - 13099360.46\n", - "2021-12-07 00:00:00: Portfolio Value - 13427299.66\n", - "2021-12-08 00:00:00: Portfolio Value - 13359619.00\n", - "2021-12-09 00:00:00: Portfolio Value - 13181304.67\n", - "2021-12-10 00:00:00: Portfolio Value - 13362641.17\n", - "2021-12-13 00:00:00: Portfolio Value - 13420753.20\n", - "2021-12-14 00:00:00: Portfolio Value - 13370846.92\n", - "2021-12-15 00:00:00: Portfolio Value - 13653482.56\n", - "2021-12-16 00:00:00: Portfolio Value - 13610747.63\n", - "2021-12-17 00:00:00: Portfolio Value - 13469059.22\n", - "2021-12-20 00:00:00: Portfolio Value - 13419854.90\n", - "2021-12-21 00:00:00: Portfolio Value - 13460021.86\n", - "2021-12-22 00:00:00: Portfolio Value - 13579605.27\n", - "2021-12-23 00:00:00: Portfolio Value - 13604344.95\n", - "2021-12-27 00:00:00: Portfolio Value - 13823605.60\n", - "2021-12-28 00:00:00: Portfolio Value - 13874255.53\n", - "2021-12-29 00:00:00: Portfolio Value - 14004608.11\n", - "2021-12-30 00:00:00: Portfolio Value - 13966983.96\n", - "2021-12-31 00:00:00: Portfolio Value - 14001747.11\n", - "2022-01-03 00:00:00: Portfolio Value - 13747830.05\n", - "2022-01-04 00:00:00: Portfolio Value - 13743387.68\n", - "2022-01-05 00:00:00: Portfolio Value - 13479964.52\n", - "2022-01-06 00:00:00: Portfolio Value - 13512689.51\n", - "2022-01-07 00:00:00: Portfolio Value - 13300277.62\n", - "2022-01-10 00:00:00: Portfolio Value - 13226594.77\n", - "2022-01-11 00:00:00: Portfolio Value - 13275898.42\n", - "2022-01-12 00:00:00: Portfolio Value - 13376230.52\n", - "2022-01-13 00:00:00: Portfolio Value - 13260955.31\n", - "2022-01-14 00:00:00: Portfolio Value - 13118812.16\n", - "2022-01-18 00:00:00: Portfolio Value - 12820341.45\n", - "2022-01-19 00:00:00: Portfolio Value - 12795315.34\n", - "2022-01-20 00:00:00: Portfolio Value - 12688205.69\n", - "2022-01-21 00:00:00: Portfolio Value - 12676964.55\n", - "2022-01-24 00:00:00: Portfolio Value - 12795620.03\n", - "2022-01-25 00:00:00: Portfolio Value - 12513913.02\n", - "2022-01-26 00:00:00: Portfolio Value - 12301955.29\n", - "2022-01-27 00:00:00: Portfolio Value - 12306418.52\n", - "2022-01-28 00:00:00: Portfolio Value - 12642688.12\n", - "2022-01-31 00:00:00: Portfolio Value - 12887544.82\n", - "2022-02-01 00:00:00: Portfolio Value - 12937447.54\n", - "2022-02-02 00:00:00: Portfolio Value - 13185765.93\n", - "2022-02-03 00:00:00: Portfolio Value - 13051658.26\n", - "2022-02-04 00:00:00: Portfolio Value - 12960452.22\n", - "2022-02-07 00:00:00: Portfolio Value - 12864454.38\n", - "2022-02-08 00:00:00: Portfolio Value - 12916196.17\n", - "2022-02-09 00:00:00: Portfolio Value - 13022166.71\n", - "2022-02-10 00:00:00: Portfolio Value - 12713867.42\n", - "2022-02-11 00:00:00: Portfolio Value - 12608174.09\n", - "2022-02-14 00:00:00: Portfolio Value - 12501316.92\n", - "2022-02-15 00:00:00: Portfolio Value - 12601650.74\n", - "2022-02-16 00:00:00: Portfolio Value - 12594568.09\n", - "2022-02-17 00:00:00: Portfolio Value - 12374201.59\n", - "2022-02-18 00:00:00: Portfolio Value - 12396841.45\n", - "2022-02-22 00:00:00: Portfolio Value - 12198458.08\n", - "2022-02-23 00:00:00: Portfolio Value - 11949439.01\n", - "2022-02-24 00:00:00: Portfolio Value - 12070575.94\n", - "2022-02-25 00:00:00: Portfolio Value - 12462405.97\n", - "2022-02-28 00:00:00: Portfolio Value - 12394224.15\n", - "2022-03-01 00:00:00: Portfolio Value - 12229923.73\n", - "2022-03-02 00:00:00: Portfolio Value - 12390773.23\n", - "2022-03-03 00:00:00: Portfolio Value - 12399717.30\n", - "2022-03-04 00:00:00: Portfolio Value - 12415329.93\n", - "2022-03-07 00:00:00: Portfolio Value - 12209954.59\n", - "2022-03-08 00:00:00: Portfolio Value - 11957235.05\n", - "2022-03-09 00:00:00: Portfolio Value - 12192918.45\n", - "2022-03-10 00:00:00: Portfolio Value - 12066801.82\n", - "2022-03-11 00:00:00: Portfolio Value - 11941943.00\n", - "2022-03-14 00:00:00: Portfolio Value - 11974835.07\n", - "2022-03-15 00:00:00: Portfolio Value - 12298569.39\n", - "2022-03-16 00:00:00: Portfolio Value - 12498367.40\n", - "2022-03-17 00:00:00: Portfolio Value - 12586917.51\n", - "2022-03-18 00:00:00: Portfolio Value - 12692478.47\n", - "2022-03-21 00:00:00: Portfolio Value - 12617934.46\n", - "2022-03-22 00:00:00: Portfolio Value - 12692041.18\n", - "2022-03-23 00:00:00: Portfolio Value - 12553259.03\n", - "2022-03-24 00:00:00: Portfolio Value - 12733519.56\n", - "2022-03-25 00:00:00: Portfolio Value - 12800835.00\n", - "2022-03-28 00:00:00: Portfolio Value - 12921544.58\n", - "2022-03-29 00:00:00: Portfolio Value - 13169389.66\n", - "2022-03-30 00:00:00: Portfolio Value - 13146912.49\n", - "2022-03-31 00:00:00: Portfolio Value - 12984894.42\n", - "2022-04-01 00:00:00: Portfolio Value - 12974875.64\n", - "2022-04-04 00:00:00: Portfolio Value - 13019434.25\n", - "2022-04-05 00:00:00: Portfolio Value - 13083804.18\n", - "2022-04-06 00:00:00: Portfolio Value - 13252673.73\n", - "2022-04-07 00:00:00: Portfolio Value - 13513065.97\n", - "2022-04-08 00:00:00: Portfolio Value - 13547269.40\n", - "2022-04-11 00:00:00: Portfolio Value - 13347095.25\n", - "2022-04-12 00:00:00: Portfolio Value - 13260477.27\n", - "2022-04-13 00:00:00: Portfolio Value - 13317011.34\n", - "2022-04-14 00:00:00: Portfolio Value - 13193608.95\n", - "2022-04-18 00:00:00: Portfolio Value - 13034908.65\n", - "2022-04-19 00:00:00: Portfolio Value - 13274484.58\n", - "2022-04-20 00:00:00: Portfolio Value - 13435710.89\n", - "2022-04-21 00:00:00: Portfolio Value - 13292184.04\n", - "2022-04-22 00:00:00: Portfolio Value - 12927987.99\n", - "2022-04-25 00:00:00: Portfolio Value - 13073756.29\n", - "2022-04-26 00:00:00: Portfolio Value - 12881054.54\n", - "2022-04-27 00:00:00: Portfolio Value - 12874760.65\n", - "2022-04-28 00:00:00: Portfolio Value - 12673636.12\n", - "2022-04-29 00:00:00: Portfolio Value - 12161548.82\n", - "2022-05-02 00:00:00: Portfolio Value - 12188433.17\n", - "2022-05-03 00:00:00: Portfolio Value - 12104303.72\n", - "2022-05-04 00:00:00: Portfolio Value - 12525608.69\n", - "2022-05-05 00:00:00: Portfolio Value - 12187324.71\n", - "2022-05-06 00:00:00: Portfolio Value - 12193299.04\n", - "2022-05-09 00:00:00: Portfolio Value - 11979028.11\n", - "2022-05-10 00:00:00: Portfolio Value - 11927652.10\n", - "2022-05-11 00:00:00: Portfolio Value - 11777223.69\n", - "2022-05-12 00:00:00: Portfolio Value - 11913249.26\n", - "2022-05-13 00:00:00: Portfolio Value - 12122696.59\n", - "2022-05-16 00:00:00: Portfolio Value - 12141745.01\n", - "2022-05-17 00:00:00: Portfolio Value - 12203050.95\n", - "2022-05-18 00:00:00: Portfolio Value - 11415016.77\n", - "2022-05-19 00:00:00: Portfolio Value - 11484086.15\n", - "2022-05-20 00:00:00: Portfolio Value - 11303614.93\n", - "2022-05-23 00:00:00: Portfolio Value - 11466316.09\n", - "2022-05-24 00:00:00: Portfolio Value - 11725633.74\n", - "2022-05-25 00:00:00: Portfolio Value - 11841003.08\n", - "2022-05-26 00:00:00: Portfolio Value - 12164316.01\n", - "2022-05-27 00:00:00: Portfolio Value - 12396151.76\n", - "2022-05-31 00:00:00: Portfolio Value - 12303081.20\n", - "2022-06-01 00:00:00: Portfolio Value - 12118310.14\n", - "2022-06-02 00:00:00: Portfolio Value - 12368984.43\n", - "2022-06-03 00:00:00: Portfolio Value - 12255913.52\n", - "2022-06-06 00:00:00: Portfolio Value - 12360551.94\n", - "2022-06-07 00:00:00: Portfolio Value - 12464439.21\n", - "2022-06-08 00:00:00: Portfolio Value - 12305714.94\n", - "2022-06-09 00:00:00: Portfolio Value - 12152987.46\n", - "2022-06-10 00:00:00: Portfolio Value - 11939501.79\n", - "2022-06-13 00:00:00: Portfolio Value - 11616315.32\n", - "2022-06-14 00:00:00: Portfolio Value - 11528026.92\n", - "2022-06-15 00:00:00: Portfolio Value - 11521231.25\n", - "2022-06-16 00:00:00: Portfolio Value - 11255618.50\n", - "2022-06-17 00:00:00: Portfolio Value - 11294170.93\n", - "2022-06-21 00:00:00: Portfolio Value - 11513595.28\n", - "2022-06-22 00:00:00: Portfolio Value - 11698929.99\n", - "2022-06-23 00:00:00: Portfolio Value - 11978818.02\n", - "2022-06-24 00:00:00: Portfolio Value - 12342415.25\n", - "2022-06-27 00:00:00: Portfolio Value - 12351369.16\n", - "2022-06-28 00:00:00: Portfolio Value - 12077589.52\n", - "2022-06-29 00:00:00: Portfolio Value - 12205650.34\n", - "2022-06-30 00:00:00: Portfolio Value - 12248014.25\n", - "2022-07-01 00:00:00: Portfolio Value - 12443244.19\n", - "2022-07-05 00:00:00: Portfolio Value - 12399780.75\n", - "2022-07-06 00:00:00: Portfolio Value - 12501111.10\n", - "2022-07-07 00:00:00: Portfolio Value - 12510575.80\n", - "2022-07-08 00:00:00: Portfolio Value - 12498393.55\n", - "2022-07-11 00:00:00: Portfolio Value - 12407378.28\n", - "2022-07-12 00:00:00: Portfolio Value - 12311902.98\n", - "2022-07-13 00:00:00: Portfolio Value - 12324850.44\n", - "2022-07-14 00:00:00: Portfolio Value - 12362645.81\n", - "2022-07-15 00:00:00: Portfolio Value - 12558146.09\n", - "2022-07-18 00:00:00: Portfolio Value - 12356732.95\n", - "2022-07-19 00:00:00: Portfolio Value - 12616816.10\n", - "2022-07-20 00:00:00: Portfolio Value - 12569681.98\n", - "2022-07-21 00:00:00: Portfolio Value - 12602083.11\n", - "2022-07-22 00:00:00: Portfolio Value - 12631080.51\n", - "2022-07-25 00:00:00: Portfolio Value - 12624146.21\n", - "2022-07-26 00:00:00: Portfolio Value - 12511879.76\n", - "2022-07-27 00:00:00: Portfolio Value - 12620646.80\n", - "2022-07-28 00:00:00: Portfolio Value - 12670027.78\n", - "2022-07-29 00:00:00: Portfolio Value - 12655512.86\n", - "2022-08-01 00:00:00: Portfolio Value - 12680595.78\n", - "2022-08-02 00:00:00: Portfolio Value - 12647429.24\n", - "2022-08-03 00:00:00: Portfolio Value - 12721863.27\n", - "2022-08-04 00:00:00: Portfolio Value - 12745950.24\n", - "2022-08-05 00:00:00: Portfolio Value - 12801453.72\n", - "2022-08-08 00:00:00: Portfolio Value - 12850049.46\n", - "2022-08-09 00:00:00: Portfolio Value - 12799388.68\n", - "2022-08-10 00:00:00: Portfolio Value - 12944183.32\n", - "2022-08-11 00:00:00: Portfolio Value - 12908847.35\n", - "2022-08-12 00:00:00: Portfolio Value - 13130813.49\n", - "2022-08-15 00:00:00: Portfolio Value - 13264805.47\n", - "2022-08-16 00:00:00: Portfolio Value - 13370719.82\n", - "2022-08-17 00:00:00: Portfolio Value - 13319813.37\n", - "2022-08-18 00:00:00: Portfolio Value - 13309241.29\n", - "2022-08-19 00:00:00: Portfolio Value - 13278365.85\n", - "2022-08-22 00:00:00: Portfolio Value - 13077343.39\n", - "2022-08-23 00:00:00: Portfolio Value - 12908050.54\n", - "2022-08-24 00:00:00: Portfolio Value - 12799947.63\n", - "2022-08-25 00:00:00: Portfolio Value - 12899101.83\n", - "2022-08-26 00:00:00: Portfolio Value - 12504889.78\n", - "2022-08-29 00:00:00: Portfolio Value - 12453950.71\n", - "2022-08-30 00:00:00: Portfolio Value - 12306269.10\n", - "2022-08-31 00:00:00: Portfolio Value - 12226956.06\n", - "2022-09-01 00:00:00: Portfolio Value - 12378612.66\n", - "2022-09-02 00:00:00: Portfolio Value - 12178208.07\n", - "2022-09-06 00:00:00: Portfolio Value - 12177164.29\n", - "2022-09-07 00:00:00: Portfolio Value - 12535552.80\n", - "2022-09-08 00:00:00: Portfolio Value - 12514177.98\n", - "2022-09-09 00:00:00: Portfolio Value - 12610404.30\n", - "2022-09-12 00:00:00: Portfolio Value - 12699737.33\n", - "2022-09-13 00:00:00: Portfolio Value - 12191106.11\n", - "2022-09-14 00:00:00: Portfolio Value - 12186044.34\n", - "2022-09-15 00:00:00: Portfolio Value - 12084993.77\n", - "2022-09-16 00:00:00: Portfolio Value - 12079216.49\n", - "2022-09-19 00:00:00: Portfolio Value - 11961685.44\n", - "2022-09-20 00:00:00: Portfolio Value - 11857683.80\n", - "2022-09-21 00:00:00: Portfolio Value - 11652865.49\n", - "2022-09-22 00:00:00: Portfolio Value - 11523412.07\n", - "2022-09-23 00:00:00: Portfolio Value - 11459083.15\n", - "2022-09-26 00:00:00: Portfolio Value - 11379711.16\n", - "2022-09-27 00:00:00: Portfolio Value - 11323354.15\n", - "2022-09-28 00:00:00: Portfolio Value - 11621976.67\n", - "2022-09-29 00:00:00: Portfolio Value - 11519771.47\n", - "2022-09-30 00:00:00: Portfolio Value - 11342834.85\n", - "2022-10-03 00:00:00: Portfolio Value - 11646157.41\n", - "2022-10-04 00:00:00: Portfolio Value - 11881444.11\n", - "2022-10-05 00:00:00: Portfolio Value - 11936178.98\n", - "2022-10-06 00:00:00: Portfolio Value - 11772117.10\n", - "2022-10-07 00:00:00: Portfolio Value - 11444967.92\n", - "2022-10-10 00:00:00: Portfolio Value - 11536641.46\n", - "2022-10-11 00:00:00: Portfolio Value - 11574838.96\n", - "2022-10-12 00:00:00: Portfolio Value - 11440139.55\n", - "2022-10-13 00:00:00: Portfolio Value - 11707495.91\n", - "2022-10-14 00:00:00: Portfolio Value - 11512144.99\n", - "2022-10-17 00:00:00: Portfolio Value - 11775628.65\n", - "2022-10-18 00:00:00: Portfolio Value - 11940324.95\n", - "2022-10-19 00:00:00: Portfolio Value - 11848395.70\n", - "2022-10-20 00:00:00: Portfolio Value - 11657185.74\n", - "2022-10-21 00:00:00: Portfolio Value - 11893465.66\n", - "2022-10-24 00:00:00: Portfolio Value - 12248315.66\n", - "2022-10-25 00:00:00: Portfolio Value - 12400223.29\n", - "2022-10-26 00:00:00: Portfolio Value - 12387987.79\n", - "2022-10-27 00:00:00: Portfolio Value - 12652839.81\n", - "2022-10-28 00:00:00: Portfolio Value - 12912856.50\n", - "2022-10-31 00:00:00: Portfolio Value - 12833549.65\n", - "2022-11-01 00:00:00: Portfolio Value - 12741914.50\n", - "2022-11-02 00:00:00: Portfolio Value - 12432737.70\n", - "2022-11-03 00:00:00: Portfolio Value - 12387025.94\n", - "2022-11-04 00:00:00: Portfolio Value - 12384554.30\n", - "2022-11-07 00:00:00: Portfolio Value - 12575703.50\n", - "2022-11-08 00:00:00: Portfolio Value - 12614386.48\n", - "2022-11-09 00:00:00: Portfolio Value - 12464360.50\n", - "2022-11-10 00:00:00: Portfolio Value - 12842972.53\n", - "2022-11-11 00:00:00: Portfolio Value - 12676320.13\n", - "2022-11-14 00:00:00: Portfolio Value - 12687445.93\n", - "2022-11-15 00:00:00: Portfolio Value - 12794247.95\n", - "2022-11-16 00:00:00: Portfolio Value - 12861205.48\n", - "2022-11-17 00:00:00: Portfolio Value - 12718854.94\n", - "2022-11-18 00:00:00: Portfolio Value - 12877470.66\n", - "2022-11-21 00:00:00: Portfolio Value - 13032183.30\n", - "2022-11-22 00:00:00: Portfolio Value - 13190198.42\n", - "2022-11-23 00:00:00: Portfolio Value - 13248079.07\n", - "2022-11-25 00:00:00: Portfolio Value - 13373769.61\n", - "2022-11-28 00:00:00: Portfolio Value - 13229671.59\n", - "2022-11-29 00:00:00: Portfolio Value - 13211013.97\n", - "2022-11-30 00:00:00: Portfolio Value - 13514254.85\n", - "2022-12-01 00:00:00: Portfolio Value - 13421090.60\n", - "2022-12-02 00:00:00: Portfolio Value - 13471300.14\n", - "2022-12-05 00:00:00: Portfolio Value - 13200366.62\n", - "2022-12-06 00:00:00: Portfolio Value - 12986662.40\n", - "2022-12-07 00:00:00: Portfolio Value - 12969160.24\n", - "2022-12-08 00:00:00: Portfolio Value - 13079720.26\n", - "2022-12-09 00:00:00: Portfolio Value - 12973381.71\n", - "2022-12-12 00:00:00: Portfolio Value - 13076763.98\n", - "2022-12-13 00:00:00: Portfolio Value - 13032939.80\n", - "2022-12-14 00:00:00: Portfolio Value - 12790935.91\n", - "2022-12-15 00:00:00: Portfolio Value - 12578295.86\n", - "2022-12-16 00:00:00: Portfolio Value - 12515535.47\n", - "2022-12-19 00:00:00: Portfolio Value - 12484889.78\n", - "2022-12-20 00:00:00: Portfolio Value - 12512231.16\n", - "2022-12-21 00:00:00: Portfolio Value - 12779997.25\n", - "2022-12-22 00:00:00: Portfolio Value - 12681070.85\n", - "2022-12-23 00:00:00: Portfolio Value - 12796058.65\n", - "2022-12-27 00:00:00: Portfolio Value - 12843557.24\n", - "2022-12-28 00:00:00: Portfolio Value - 12763911.18\n", - "2022-12-29 00:00:00: Portfolio Value - 12897331.23\n", - "2022-12-30 00:00:00: Portfolio Value - 12820001.39\n", - "2023-01-03 00:00:00: Portfolio Value - 12775587.77\n", - "2023-01-04 00:00:00: Portfolio Value - 12907739.32\n", - "2023-01-05 00:00:00: Portfolio Value - 12705998.02\n", - "2023-01-06 00:00:00: Portfolio Value - 13074193.90\n", - "2023-01-09 00:00:00: Portfolio Value - 12931336.99\n", - "2023-01-10 00:00:00: Portfolio Value - 12943162.71\n", - "2023-01-11 00:00:00: Portfolio Value - 13013453.82\n", - "2023-01-12 00:00:00: Portfolio Value - 12827248.19\n", - "2023-01-13 00:00:00: Portfolio Value - 12882368.41\n", - "2023-01-17 00:00:00: Portfolio Value - 12857262.45\n", - "2023-01-18 00:00:00: Portfolio Value - 12652819.65\n", - "2023-01-19 00:00:00: Portfolio Value - 12557727.80\n", - "2023-01-20 00:00:00: Portfolio Value - 12694900.27\n", - "2023-01-23 00:00:00: Portfolio Value - 12730553.92\n", - "2023-01-24 00:00:00: Portfolio Value - 12767401.27\n", - "2023-01-25 00:00:00: Portfolio Value - 12808431.66\n", - "2023-01-26 00:00:00: Portfolio Value - 12911710.55\n", - "2023-01-27 00:00:00: Portfolio Value - 12733657.86\n", - "2023-01-30 00:00:00: Portfolio Value - 12795823.08\n", - "2023-01-31 00:00:00: Portfolio Value - 12891047.34\n", - "2023-02-01 00:00:00: Portfolio Value - 13067878.88\n", - "2023-02-02 00:00:00: Portfolio Value - 12939214.12\n", - "2023-02-03 00:00:00: Portfolio Value - 12757231.64\n", - "2023-02-06 00:00:00: Portfolio Value - 12786230.51\n", - "2023-02-07 00:00:00: Portfolio Value - 12844634.39\n", - "2023-02-08 00:00:00: Portfolio Value - 12757214.86\n", - "2023-02-09 00:00:00: Portfolio Value - 12778518.03\n", - "2023-02-10 00:00:00: Portfolio Value - 12870030.78\n", - "2023-02-13 00:00:00: Portfolio Value - 13014498.45\n", - "2023-02-14 00:00:00: Portfolio Value - 12925583.81\n", - "2023-02-15 00:00:00: Portfolio Value - 13034654.53\n", - "2023-02-16 00:00:00: Portfolio Value - 12936108.29\n", - "2023-02-17 00:00:00: Portfolio Value - 13083436.50\n", - "2023-02-21 00:00:00: Portfolio Value - 12882197.39\n", - "2023-02-22 00:00:00: Portfolio Value - 12875415.60\n", - "2023-02-23 00:00:00: Portfolio Value - 12853510.34\n", - "2023-02-24 00:00:00: Portfolio Value - 12694226.03\n", - "2023-02-27 00:00:00: Portfolio Value - 12716251.39\n", - "2023-02-28 00:00:00: Portfolio Value - 12502096.62\n", - "2023-03-01 00:00:00: Portfolio Value - 12391224.04\n", - "2023-03-02 00:00:00: Portfolio Value - 12538117.62\n", - "2023-03-03 00:00:00: Portfolio Value - 12626859.68\n", - "2023-03-06 00:00:00: Portfolio Value - 12643879.07\n", - "2023-03-07 00:00:00: Portfolio Value - 12435412.77\n", - "2023-03-08 00:00:00: Portfolio Value - 12420020.76\n", - "2023-03-09 00:00:00: Portfolio Value - 12226831.41\n", - "2023-03-10 00:00:00: Portfolio Value - 12089584.26\n", - "2023-03-13 00:00:00: Portfolio Value - 12194282.90\n", - "2023-03-14 00:00:00: Portfolio Value - 12296011.37\n", - "2023-03-15 00:00:00: Portfolio Value - 12271690.08\n", - "2023-03-16 00:00:00: Portfolio Value - 12409917.13\n", - "2023-03-17 00:00:00: Portfolio Value - 12209869.61\n", - "2023-03-20 00:00:00: Portfolio Value - 12375720.44\n", - "2023-03-21 00:00:00: Portfolio Value - 12407493.97\n", - "2023-03-22 00:00:00: Portfolio Value - 12182644.90\n", - "2023-03-23 00:00:00: Portfolio Value - 12074661.01\n", - "2023-03-24 00:00:00: Portfolio Value - 12268641.48\n", - "2023-03-27 00:00:00: Portfolio Value - 12387907.10\n", - "2023-03-28 00:00:00: Portfolio Value - 12433707.35\n", - "2023-03-29 00:00:00: Portfolio Value - 12521375.40\n", - "2023-03-30 00:00:00: Portfolio Value - 12581318.57\n", - "2023-03-31 00:00:00: Portfolio Value - 12802563.02\n", - "2023-04-03 00:00:00: Portfolio Value - 12933996.51\n", - "2023-04-04 00:00:00: Portfolio Value - 12939097.55\n", - "2023-04-05 00:00:00: Portfolio Value - 13015961.34\n", - "2023-04-06 00:00:00: Portfolio Value - 13106642.95\n", - "2023-04-10 00:00:00: Portfolio Value - 13139826.71\n", - "2023-04-11 00:00:00: Portfolio Value - 13197772.84\n", - "2023-04-12 00:00:00: Portfolio Value - 13254927.08\n", - "2023-04-13 00:00:00: Portfolio Value - 13391320.21\n", - "2023-04-14 00:00:00: Portfolio Value - 13350177.04\n", - "2023-04-17 00:00:00: Portfolio Value - 13450618.12\n", - "2023-04-18 00:00:00: Portfolio Value - 13505184.02\n", - "2023-04-19 00:00:00: Portfolio Value - 13524893.20\n", - "2023-04-20 00:00:00: Portfolio Value - 13641816.35\n", - "2023-04-21 00:00:00: Portfolio Value - 13645885.99\n", - "2023-04-24 00:00:00: Portfolio Value - 13657050.59\n", - "2023-04-25 00:00:00: Portfolio Value - 13599930.75\n", - "2023-04-26 00:00:00: Portfolio Value - 13407297.84\n", - "2023-04-27 00:00:00: Portfolio Value - 13646800.75\n", - "2023-04-28 00:00:00: Portfolio Value - 13798731.96\n", - "2023-05-01 00:00:00: Portfolio Value - 13849056.94\n", - "2023-05-02 00:00:00: Portfolio Value - 13859658.61\n", - "2023-05-03 00:00:00: Portfolio Value - 13893198.45\n", - "2023-05-04 00:00:00: Portfolio Value - 13802506.77\n", - "2023-05-05 00:00:00: Portfolio Value - 13927269.98\n", - "2023-05-08 00:00:00: Portfolio Value - 13965343.15\n", - "2023-05-09 00:00:00: Portfolio Value - 13947738.75\n", - "2023-05-10 00:00:00: Portfolio Value - 14042119.65\n", - "2023-05-11 00:00:00: Portfolio Value - 14006006.34\n", - "2023-05-12 00:00:00: Portfolio Value - 14020793.36\n", - "2023-05-15 00:00:00: Portfolio Value - 13933739.16\n", - "2023-05-16 00:00:00: Portfolio Value - 13792934.81\n", - "2023-05-17 00:00:00: Portfolio Value - 13764273.37\n", - "2023-05-18 00:00:00: Portfolio Value - 13757451.75\n", - "2023-05-19 00:00:00: Portfolio Value - 13776697.17\n", - "2023-05-22 00:00:00: Portfolio Value - 13620112.30\n", - "2023-05-23 00:00:00: Portfolio Value - 13166492.86\n", - "2023-05-24 00:00:00: Portfolio Value - 13040351.09\n", - "2023-05-25 00:00:00: Portfolio Value - 13026517.89\n", - "2023-05-26 00:00:00: Portfolio Value - 13101921.84\n", - "2023-05-30 00:00:00: Portfolio Value - 13075295.03\n", - "2023-05-31 00:00:00: Portfolio Value - 12930349.09\n", - "2023-06-01 00:00:00: Portfolio Value - 12998073.97\n", - "2023-06-02 00:00:00: Portfolio Value - 13101190.89\n", - "2023-06-05 00:00:00: Portfolio Value - 13053934.59\n", - "2023-06-06 00:00:00: Portfolio Value - 12962822.81\n", - "2023-06-07 00:00:00: Portfolio Value - 12888480.16\n", - "2023-06-08 00:00:00: Portfolio Value - 13027551.97\n", - "2023-06-09 00:00:00: Portfolio Value - 13010138.22\n", - "2023-06-12 00:00:00: Portfolio Value - 13136694.69\n", - "2023-06-13 00:00:00: Portfolio Value - 13153310.94\n", - "2023-06-14 00:00:00: Portfolio Value - 13149144.95\n", - "2023-06-15 00:00:00: Portfolio Value - 13468362.90\n", - "2023-06-16 00:00:00: Portfolio Value - 13504417.14\n", - "2023-06-20 00:00:00: Portfolio Value - 13348574.15\n", - "2023-06-21 00:00:00: Portfolio Value - 13351394.64\n", - "2023-06-22 00:00:00: Portfolio Value - 13388776.92\n", - "2023-06-23 00:00:00: Portfolio Value - 13295789.99\n", - "2023-06-26 00:00:00: Portfolio Value - 13395952.87\n", - "2023-06-27 00:00:00: Portfolio Value - 13465783.32\n", - "2023-06-28 00:00:00: Portfolio Value - 13420647.32\n", - "2023-06-29 00:00:00: Portfolio Value - 13534660.80\n", - "2023-06-30 00:00:00: Portfolio Value - 13743237.90\n", - "2023-07-03 00:00:00: Portfolio Value - 13648499.77\n", - "2023-07-05 00:00:00: Portfolio Value - 13665826.31\n", - "2023-07-06 00:00:00: Portfolio Value - 13663368.92\n", - "2023-07-07 00:00:00: Portfolio Value - 13524458.62\n", - "2023-07-10 00:00:00: Portfolio Value - 13634416.51\n", - "2023-07-11 00:00:00: Portfolio Value - 13749471.23\n", - "2023-07-12 00:00:00: Portfolio Value - 13811506.90\n", - "2023-07-13 00:00:00: Portfolio Value - 13772121.19\n", - "2023-07-14 00:00:00: Portfolio Value - 13851337.55\n", - "2023-07-17 00:00:00: Portfolio Value - 13839223.60\n", - "2023-07-18 00:00:00: Portfolio Value - 13805277.92\n", - "2023-07-19 00:00:00: Portfolio Value - 13779944.67\n", - "2023-07-20 00:00:00: Portfolio Value - 13839014.31\n", - "2023-07-21 00:00:00: Portfolio Value - 13892112.77\n", - "2023-07-24 00:00:00: Portfolio Value - 14000707.84\n", - "2023-07-25 00:00:00: Portfolio Value - 14027388.65\n", - "2023-07-26 00:00:00: Portfolio Value - 14039484.45\n", - "2023-07-27 00:00:00: Portfolio Value - 13807265.15\n", - "2023-07-28 00:00:00: Portfolio Value - 13888645.50\n", - "2023-07-31 00:00:00: Portfolio Value - 13852869.40\n", - "2023-08-01 00:00:00: Portfolio Value - 13868925.98\n", - "2023-08-02 00:00:00: Portfolio Value - 13769602.55\n", - "2023-08-03 00:00:00: Portfolio Value - 13782694.26\n", - "2023-08-04 00:00:00: Portfolio Value - 13582204.97\n", - "2023-08-07 00:00:00: Portfolio Value - 13686302.51\n", - "2023-08-08 00:00:00: Portfolio Value - 13735323.89\n", - "2023-08-09 00:00:00: Portfolio Value - 13794237.37\n", - "2023-08-10 00:00:00: Portfolio Value - 13786280.99\n", - "2023-08-11 00:00:00: Portfolio Value - 13885748.74\n", - "2023-08-14 00:00:00: Portfolio Value - 13962745.23\n", - "2023-08-15 00:00:00: Portfolio Value - 13902240.93\n", - "2023-08-16 00:00:00: Portfolio Value - 13834158.82\n", - "2023-08-17 00:00:00: Portfolio Value - 13636651.39\n", - "2023-08-18 00:00:00: Portfolio Value - 13646098.84\n", - "2023-08-21 00:00:00: Portfolio Value - 13608061.78\n", - "2023-08-22 00:00:00: Portfolio Value - 13603353.13\n", - "2023-08-23 00:00:00: Portfolio Value - 13725635.84\n", - "2023-08-24 00:00:00: Portfolio Value - 13646923.77\n", - "2023-08-25 00:00:00: Portfolio Value - 13736194.17\n", - "2023-08-28 00:00:00: Portfolio Value - 13815943.45\n", - "2023-08-29 00:00:00: Portfolio Value - 14031251.85\n", - "2023-08-30 00:00:00: Portfolio Value - 14089758.89\n", - "2023-08-31 00:00:00: Portfolio Value - 14009364.57\n", - "2023-09-01 00:00:00: Portfolio Value - 13983232.78\n", - "2023-09-05 00:00:00: Portfolio Value - 13890942.23\n", - "2023-09-06 00:00:00: Portfolio Value - 13930228.57\n", - "2023-09-07 00:00:00: Portfolio Value - 14003529.26\n", - "2023-09-08 00:00:00: Portfolio Value - 14115015.42\n", - "2023-09-11 00:00:00: Portfolio Value - 14146660.10\n", - "2023-09-12 00:00:00: Portfolio Value - 14024933.63\n", - "2023-09-13 00:00:00: Portfolio Value - 14058673.99\n", - "2023-09-14 00:00:00: Portfolio Value - 14214146.30\n", - "2023-09-15 00:00:00: Portfolio Value - 14001535.59\n", - "2023-09-18 00:00:00: Portfolio Value - 14053258.59\n", - "2023-09-19 00:00:00: Portfolio Value - 13966732.28\n", - "2023-09-20 00:00:00: Portfolio Value - 14165134.95\n", - "2023-09-21 00:00:00: Portfolio Value - 13916674.21\n", - "2023-09-22 00:00:00: Portfolio Value - 14004386.24\n", - "2023-09-25 00:00:00: Portfolio Value - 14017647.98\n", - "2023-09-26 00:00:00: Portfolio Value - 13850059.95\n", - "2023-09-27 00:00:00: Portfolio Value - 13791782.88\n", - "2023-09-28 00:00:00: Portfolio Value - 13868530.33\n", - "2023-09-29 00:00:00: Portfolio Value - 13721064.99\n", - "2023-10-02 00:00:00: Portfolio Value - 13641046.86\n", - "2023-10-03 00:00:00: Portfolio Value - 13483325.65\n", - "2023-10-04 00:00:00: Portfolio Value - 13671834.77\n", - "2023-10-05 00:00:00: Portfolio Value - 13677881.84\n", - "2023-10-06 00:00:00: Portfolio Value - 13771031.52\n", - "2023-10-09 00:00:00: Portfolio Value - 13889388.14\n", - "2023-10-10 00:00:00: Portfolio Value - 13952447.92\n", - "2023-10-11 00:00:00: Portfolio Value - 13978620.50\n", - "2023-10-12 00:00:00: Portfolio Value - 13884431.30\n", - "2023-10-13 00:00:00: Portfolio Value - 13909838.38\n", - "2023-10-16 00:00:00: Portfolio Value - 14121717.71\n", - "2023-10-17 00:00:00: Portfolio Value - 14214254.59\n", - "2023-10-18 00:00:00: Portfolio Value - 14138354.04\n", - "2023-10-19 00:00:00: Portfolio Value - 13756324.79\n", - "2023-10-20 00:00:00: Portfolio Value - 13650517.38\n", - "2023-10-23 00:00:00: Portfolio Value - 13471534.33\n", - "2023-10-24 00:00:00: Portfolio Value - 13544780.59\n", - "2023-10-25 00:00:00: Portfolio Value - 13517989.03\n", - "2023-10-26 00:00:00: Portfolio Value - 13463786.67\n", - "2023-10-27 00:00:00: Portfolio Value - 13275631.24\n", - "2023-10-30 00:00:00: Portfolio Value - 13471787.94\n", - "2023-10-31 00:00:00: Portfolio Value - 13582182.12\n", - "2023-11-01 00:00:00: Portfolio Value - 13637072.48\n", - "2023-11-02 00:00:00: Portfolio Value - 13935139.57\n", - "2023-11-03 00:00:00: Portfolio Value - 14028928.29\n", - "2023-11-06 00:00:00: Portfolio Value - 14147240.24\n", - "2023-11-07 00:00:00: Portfolio Value - 14246151.52\n", - "2023-11-08 00:00:00: Portfolio Value - 14297956.40\n", - "2023-11-09 00:00:00: Portfolio Value - 14207631.23\n", - "2023-11-10 00:00:00: Portfolio Value - 14368310.66\n", - "2023-11-13 00:00:00: Portfolio Value - 14419501.77\n", - "2023-11-14 00:00:00: Portfolio Value - 14489773.26\n", - "2023-11-15 00:00:00: Portfolio Value - 14451557.39\n", - "2023-11-16 00:00:00: Portfolio Value - 14432125.42\n", - "2023-11-17 00:00:00: Portfolio Value - 14324456.99\n", - "2023-11-20 00:00:00: Portfolio Value - 14429888.36\n", - "2023-11-21 00:00:00: Portfolio Value - 14528754.52\n", - "2023-11-22 00:00:00: Portfolio Value - 14571607.90\n", - "2023-11-24 00:00:00: Portfolio Value - 14655532.14\n", - "2023-11-27 00:00:00: Portfolio Value - 14483198.33\n", - "2023-11-28 00:00:00: Portfolio Value - 14423872.26\n", - "2023-11-29 00:00:00: Portfolio Value - 14364314.31\n", - "2023-11-30 00:00:00: Portfolio Value - 14505407.87\n", - "2023-12-01 00:00:00: Portfolio Value - 14563550.65\n", - "2023-12-04 00:00:00: Portfolio Value - 14585735.65\n", - "2023-12-05 00:00:00: Portfolio Value - 14496395.89\n", - "2023-12-06 00:00:00: Portfolio Value - 14535481.37\n", - "2023-12-07 00:00:00: Portfolio Value - 14375782.74\n", - "2023-12-08 00:00:00: Portfolio Value - 14323758.81\n", - "2023-12-11 00:00:00: Portfolio Value - 14420713.48\n", - "2023-12-12 00:00:00: Portfolio Value - 14542655.22\n", - "2023-12-13 00:00:00: Portfolio Value - 14802965.88\n", - "2023-12-14 00:00:00: Portfolio Value - 14334640.72\n", - "2023-12-15 00:00:00: Portfolio Value - 14308534.32\n", - "2023-12-18 00:00:00: Portfolio Value - 14488764.75\n", - "2023-12-19 00:00:00: Portfolio Value - 14503327.09\n", - "2023-12-20 00:00:00: Portfolio Value - 14284226.52\n", - "2023-12-21 00:00:00: Portfolio Value - 14379890.15\n", - "2023-12-22 00:00:00: Portfolio Value - 14410121.83\n", - "2023-12-26 00:00:00: Portfolio Value - 14366332.08\n", - "2023-12-27 00:00:00: Portfolio Value - 14412023.74\n", - "2023-12-28 00:00:00: Portfolio Value - 14418814.25\n", - "2023-12-29 00:00:00: Portfolio Value - 14470963.74\n", - "2024-01-02 00:00:00: Portfolio Value - 14424908.50\n", - "2024-01-03 00:00:00: Portfolio Value - 14393627.35\n", - "2024-01-04 00:00:00: Portfolio Value - 14369427.23\n", - "2024-01-05 00:00:00: Portfolio Value - 14342200.09\n", - "2024-01-08 00:00:00: Portfolio Value - 14481429.60\n", - "2024-01-09 00:00:00: Portfolio Value - 14389072.35\n", - "2024-01-10 00:00:00: Portfolio Value - 14501209.86\n", - "2024-01-11 00:00:00: Portfolio Value - 14543280.65\n", - "2024-01-12 00:00:00: Portfolio Value - 14656922.69\n", - "2024-01-16 00:00:00: Portfolio Value - 14771362.37\n", - "2024-01-17 00:00:00: Portfolio Value - 14757637.99\n", - "2024-01-18 00:00:00: Portfolio Value - 14920546.51\n", - "2024-01-19 00:00:00: Portfolio Value - 15053365.17\n", - "2024-01-22 00:00:00: Portfolio Value - 15137412.07\n", - "2024-01-23 00:00:00: Portfolio Value - 15185184.81\n", - "2024-01-24 00:00:00: Portfolio Value - 15041291.53\n", - "2024-01-25 00:00:00: Portfolio Value - 15022424.71\n", - "2024-01-26 00:00:00: Portfolio Value - 15148978.27\n", - "2024-01-29 00:00:00: Portfolio Value - 15198907.57\n", - "2024-01-30 00:00:00: Portfolio Value - 15298758.02\n", - "2024-01-31 00:00:00: Portfolio Value - 15127545.15\n", - "2024-02-01 00:00:00: Portfolio Value - 15308829.79\n", - "2024-02-02 00:00:00: Portfolio Value - 15239342.75\n", - "2024-02-05 00:00:00: Portfolio Value - 15195281.11\n", - "2024-02-06 00:00:00: Portfolio Value - 15254571.75\n", - "2024-02-07 00:00:00: Portfolio Value - 15391754.79\n", - "2024-02-08 00:00:00: Portfolio Value - 15126950.75\n", - "2024-02-09 00:00:00: Portfolio Value - 15069513.06\n", - "2024-02-12 00:00:00: Portfolio Value - 15102136.62\n", - "2024-02-13 00:00:00: Portfolio Value - 15100589.95\n", - "2024-02-14 00:00:00: Portfolio Value - 15206418.92\n", - "2024-02-15 00:00:00: Portfolio Value - 15288244.75\n", - "2024-02-16 00:00:00: Portfolio Value - 15314585.86\n", - "2024-02-20 00:00:00: Portfolio Value - 15215536.77\n", - "2024-02-21 00:00:00: Portfolio Value - 15260478.80\n", - "2024-02-22 00:00:00: Portfolio Value - 15465098.97\n", - "2024-02-23 00:00:00: Portfolio Value - 15508735.32\n", - "2024-02-26 00:00:00: Portfolio Value - 15480838.45\n", - "2024-02-27 00:00:00: Portfolio Value - 15788194.62\n", - "2024-02-28 00:00:00: Portfolio Value - 15898118.04\n", - "2024-02-29 00:00:00: Portfolio Value - 15861041.31\n", - "2024-03-01 00:00:00: Portfolio Value - 15991923.40\n", - "2024-03-04 00:00:00: Portfolio Value - 16098847.91\n", - "2024-03-05 00:00:00: Portfolio Value - 16043483.81\n", - "2024-03-06 00:00:00: Portfolio Value - 16139413.36\n", - "2024-03-07 00:00:00: Portfolio Value - 16273127.26\n", - "2024-03-08 00:00:00: Portfolio Value - 16036539.90\n", - "2024-03-11 00:00:00: Portfolio Value - 16031342.15\n", - "2024-03-12 00:00:00: Portfolio Value - 16125703.99\n", - "2024-03-13 00:00:00: Portfolio Value - 16135460.47\n", - "2024-03-14 00:00:00: Portfolio Value - 16152692.20\n", - "2024-03-15 00:00:00: Portfolio Value - 16113289.18\n", - "2024-03-18 00:00:00: Portfolio Value - 16092434.57\n", - "2024-03-19 00:00:00: Portfolio Value - 16275864.60\n", - "2024-03-20 00:00:00: Portfolio Value - 16334716.66\n", - "2024-03-21 00:00:00: Portfolio Value - 16352301.89\n", - "2024-03-22 00:00:00: Portfolio Value - 16362351.27\n", - "2024-03-25 00:00:00: Portfolio Value - 16202368.13\n", - "2024-03-26 00:00:00: Portfolio Value - 16230962.92\n", - "2024-03-27 00:00:00: Portfolio Value - 16381509.95\n", - "2024-03-28 00:00:00: Portfolio Value - 16325702.69\n", - "2024-04-01 00:00:00: Portfolio Value - 16183182.80\n", - "2024-04-02 00:00:00: Portfolio Value - 16099942.10\n", - "2024-04-03 00:00:00: Portfolio Value - 16048923.67\n", - "2024-04-04 00:00:00: Portfolio Value - 15826433.50\n", - "2024-04-05 00:00:00: Portfolio Value - 15943027.67\n", - "2024-04-08 00:00:00: Portfolio Value - 15882839.67\n", - "2024-04-09 00:00:00: Portfolio Value - 15836076.77\n", - "2024-04-10 00:00:00: Portfolio Value - 15703135.43\n", - "2024-04-11 00:00:00: Portfolio Value - 15630375.66\n", - "2024-04-12 00:00:00: Portfolio Value - 15460167.17\n", - "2024-04-15 00:00:00: Portfolio Value - 15255187.83\n", - "2024-04-16 00:00:00: Portfolio Value - 15228849.52\n", - "2024-04-17 00:00:00: Portfolio Value - 15281987.84\n", - "2024-04-18 00:00:00: Portfolio Value - 15379096.76\n", - "2024-04-19 00:00:00: Portfolio Value - 15466491.38\n", - "2024-04-22 00:00:00: Portfolio Value - 15493309.59\n", - "2024-04-23 00:00:00: Portfolio Value - 15540281.62\n", - "2024-04-24 00:00:00: Portfolio Value - 15583855.06\n", - "2024-04-25 00:00:00: Portfolio Value - 15530127.30\n", - "2024-04-26 00:00:00: Portfolio Value - 15582630.62\n", - "2024-04-29 00:00:00: Portfolio Value - 15727108.34\n", - "2024-04-30 00:00:00: Portfolio Value - 15713522.68\n", - "2024-05-01 00:00:00: Portfolio Value - 15801868.08\n", - "2024-05-02 00:00:00: Portfolio Value - 15852133.20\n", - "2024-05-03 00:00:00: Portfolio Value - 15817328.29\n", - "2024-05-06 00:00:00: Portfolio Value - 16002782.84\n", - "2024-05-07 00:00:00: Portfolio Value - 16172607.31\n", - "2024-05-08 00:00:00: Portfolio Value - 16068002.47\n", - "2024-05-09 00:00:00: Portfolio Value - 16173197.29\n", - "2024-05-10 00:00:00: Portfolio Value - 16233417.93\n", - "2024-05-13 00:00:00: Portfolio Value - 16074869.92\n", - "2024-05-14 00:00:00: Portfolio Value - 16063845.23\n", - "2024-05-15 00:00:00: Portfolio Value - 16161526.70\n", - "2024-05-16 00:00:00: Portfolio Value - 16200210.90\n", - "2024-05-17 00:00:00: Portfolio Value - 16249514.33\n", - "2024-05-20 00:00:00: Portfolio Value - 16231897.67\n", - "2024-05-21 00:00:00: Portfolio Value - 16114976.73\n", - "2024-05-22 00:00:00: Portfolio Value - 16067620.80\n", - "2024-05-23 00:00:00: Portfolio Value - 15900854.57\n", - "2024-05-24 00:00:00: Portfolio Value - 15964041.21\n", - "2024-05-28 00:00:00: Portfolio Value - 15836196.41\n", - "2024-05-29 00:00:00: Portfolio Value - 15642036.36\n", - "2024-05-30 00:00:00: Portfolio Value - 15808986.02\n", - "2024-05-31 00:00:00: Portfolio Value - 15957524.68\n", - "2024-06-03 00:00:00: Portfolio Value - 16003307.16\n", - "2024-06-04 00:00:00: Portfolio Value - 16145126.79\n", - "2024-06-05 00:00:00: Portfolio Value - 16100890.32\n", - "2024-06-06 00:00:00: Portfolio Value - 16109863.03\n", - "2024-06-07 00:00:00: Portfolio Value - 16184020.54\n", - "2024-06-10 00:00:00: Portfolio Value - 16160538.62\n", - "2024-06-11 00:00:00: Portfolio Value - 16225120.56\n", - "2024-06-12 00:00:00: Portfolio Value - 16192618.93\n", - "2024-06-13 00:00:00: Portfolio Value - 16221152.70\n", - "2024-06-14 00:00:00: Portfolio Value - 16265285.76\n", - "2024-06-17 00:00:00: Portfolio Value - 16572551.11\n", - "2024-06-18 00:00:00: Portfolio Value - 16656741.38\n", - "2024-06-20 00:00:00: Portfolio Value - 16769834.81\n", - "2024-06-21 00:00:00: Portfolio Value - 16737717.00\n", - "2024-06-24 00:00:00: Portfolio Value - 16707154.56\n", - "2024-06-25 00:00:00: Portfolio Value - 16578505.60\n", - "2024-06-26 00:00:00: Portfolio Value - 16521987.10\n", - "2024-06-27 00:00:00: Portfolio Value - 16632884.67\n", - "2024-06-28 00:00:00: Portfolio Value - 16614004.27\n", - "2024-07-01 00:00:00: Portfolio Value - 16277966.37\n", - "2024-07-02 00:00:00: Portfolio Value - 16407260.95\n", - "2024-07-03 00:00:00: Portfolio Value - 16341796.64\n", - "2024-07-05 00:00:00: Portfolio Value - 16437278.66\n", - "2024-07-08 00:00:00: Portfolio Value - 16425849.96\n", - "2024-07-09 00:00:00: Portfolio Value - 16389238.29\n", - "2024-07-10 00:00:00: Portfolio Value - 16562206.72\n", - "2024-07-11 00:00:00: Portfolio Value - 16606248.88\n", - "2024-07-12 00:00:00: Portfolio Value - 16775755.39\n", - "2024-07-15 00:00:00: Portfolio Value - 16838477.15\n", - "2024-07-16 00:00:00: Portfolio Value - 16999834.88\n", - "2024-07-17 00:00:00: Portfolio Value - 17023557.55\n", - "2024-07-18 00:00:00: Portfolio Value - 16770805.79\n", - "2024-07-19 00:00:00: Portfolio Value - 16729311.14\n", - "2024-07-22 00:00:00: Portfolio Value - 16834588.25\n", - "2024-07-23 00:00:00: Portfolio Value - 16811029.46\n", - "2024-07-24 00:00:00: Portfolio Value - 16737514.04\n", - "2024-07-25 00:00:00: Portfolio Value - 16893716.22\n", - "2024-07-26 00:00:00: Portfolio Value - 17237883.60\n", - "2024-07-29 00:00:00: Portfolio Value - 17259467.27\n", - "2024-07-30 00:00:00: Portfolio Value - 17326072.56\n", - "2024-07-31 00:00:00: Portfolio Value - 17345495.59\n", - "2024-08-01 00:00:00: Portfolio Value - 17476637.47\n", - "2024-08-02 00:00:00: Portfolio Value - 17649468.09\n", - "2024-08-05 00:00:00: Portfolio Value - 17202090.15\n", - "2024-08-06 00:00:00: Portfolio Value - 17304952.58\n", - "2024-08-07 00:00:00: Portfolio Value - 17150229.52\n", - "2024-08-08 00:00:00: Portfolio Value - 17580175.84\n", - "2024-08-09 00:00:00: Portfolio Value - 17596812.44\n", - "2024-08-12 00:00:00: Portfolio Value - 17582975.81\n", - "2024-08-13 00:00:00: Portfolio Value - 17653206.52\n", - "2024-08-14 00:00:00: Portfolio Value - 17842162.30\n", - "2024-08-15 00:00:00: Portfolio Value - 17831277.48\n", - "2024-08-16 00:00:00: Portfolio Value - 17907680.95\n", - "2024-08-19 00:00:00: Portfolio Value - 17888773.57\n", - "2024-08-20 00:00:00: Portfolio Value - 17953261.40\n", - "2024-08-21 00:00:00: Portfolio Value - 18041887.69\n", - "2024-08-22 00:00:00: Portfolio Value - 17982892.01\n", - "2024-08-23 00:00:00: Portfolio Value - 17893318.17\n", - "2024-08-26 00:00:00: Portfolio Value - 18016789.18\n", - "2024-08-27 00:00:00: Portfolio Value - 18193387.48\n", - "2024-08-28 00:00:00: Portfolio Value - 18218594.47\n", - "2024-08-29 00:00:00: Portfolio Value - 18280289.84\n", - "2024-08-30 00:00:00: Portfolio Value - 18353004.18\n", - "2024-09-03 00:00:00: Portfolio Value - 18280391.11\n", - "2024-09-04 00:00:00: Portfolio Value - 18354042.53\n", - "2024-09-05 00:00:00: Portfolio Value - 18198558.68\n", - "2024-09-06 00:00:00: Portfolio Value - 18031018.67\n", - "2024-09-09 00:00:00: Portfolio Value - 18229033.52\n", - "2024-09-10 00:00:00: Portfolio Value - 18286543.20\n", - "2024-09-11 00:00:00: Portfolio Value - 18178383.60\n", - "2024-09-12 00:00:00: Portfolio Value - 18233466.69\n", - "2024-09-13 00:00:00: Portfolio Value - 18286093.28\n", - "2024-09-16 00:00:00: Portfolio Value - 18288861.23\n", - "2024-09-17 00:00:00: Portfolio Value - 18077049.44\n", - "2024-09-18 00:00:00: Portfolio Value - 17955059.62\n", - "2024-09-19 00:00:00: Portfolio Value - 17876325.44\n", - "2024-09-20 00:00:00: Portfolio Value - 17853274.61\n", - "2024-09-23 00:00:00: Portfolio Value - 18007592.91\n", - "2024-09-24 00:00:00: Portfolio Value - 17961202.17\n", - "2024-09-25 00:00:00: Portfolio Value - 18058116.38\n", - "2024-09-26 00:00:00: Portfolio Value - 18172970.71\n", - "2024-09-27 00:00:00: Portfolio Value - 18135085.28\n", - "2024-09-30 00:00:00: Portfolio Value - 18124675.34\n", - "2024-10-01 00:00:00: Portfolio Value - 18174012.73\n", - "2024-10-02 00:00:00: Portfolio Value - 17994581.94\n", - "2024-10-03 00:00:00: Portfolio Value - 17850524.76\n", - "2024-10-04 00:00:00: Portfolio Value - 17804475.87\n", - "2024-10-07 00:00:00: Portfolio Value - 17672961.94\n", - "2024-10-08 00:00:00: Portfolio Value - 17959668.03\n", - "2024-10-09 00:00:00: Portfolio Value - 18189875.40\n", - "2024-10-10 00:00:00: Portfolio Value - 17984537.27\n", - "2024-10-11 00:00:00: Portfolio Value - 18108234.27\n", - "2024-10-14 00:00:00: Portfolio Value - 18253947.45\n", - "2024-10-15 00:00:00: Portfolio Value - 18149023.76\n", - "2024-10-16 00:00:00: Portfolio Value - 18144305.57\n", - "2024-10-17 00:00:00: Portfolio Value - 18200226.24\n", - "2024-10-18 00:00:00: Portfolio Value - 18275577.44\n", - "2024-10-21 00:00:00: Portfolio Value - 18261006.53\n", - "2024-10-22 00:00:00: Portfolio Value - 18146094.60\n", - "2024-10-23 00:00:00: Portfolio Value - 18171581.63\n", - "2024-10-24 00:00:00: Portfolio Value - 18091624.11\n", - "2024-10-25 00:00:00: Portfolio Value - 17972484.65\n", - "2024-10-28 00:00:00: Portfolio Value - 17911520.22\n", - "2024-10-29 00:00:00: Portfolio Value - 17827786.54\n", - "2024-10-30 00:00:00: Portfolio Value - 17666914.55\n", - "2024-10-31 00:00:00: Portfolio Value - 17558797.36\n", - "2024-11-01 00:00:00: Portfolio Value - 17565410.40\n", - "2024-11-04 00:00:00: Portfolio Value - 17734938.16\n", - "2024-11-05 00:00:00: Portfolio Value - 17900296.33\n", - "2024-11-06 00:00:00: Portfolio Value - 18106637.80\n", - "2024-11-07 00:00:00: Portfolio Value - 18065454.43\n", - "2024-11-08 00:00:00: Portfolio Value - 18262997.05\n", - "2024-11-11 00:00:00: Portfolio Value - 18329259.13\n", - "2024-11-12 00:00:00: Portfolio Value - 18316640.60\n", - "2024-11-13 00:00:00: Portfolio Value - 18300843.33\n", - "2024-11-14 00:00:00: Portfolio Value - 18049513.72\n", - "2024-11-15 00:00:00: Portfolio Value - 17842614.69\n", - "2024-11-18 00:00:00: Portfolio Value - 17985131.93\n", - "2024-11-19 00:00:00: Portfolio Value - 17867005.68\n" + "2010-05-03 00:00:00: Portfolio Value - 107781.81\n", + "2010-05-04 00:00:00: Portfolio Value - 91537.82\n", + "2010-05-05 00:00:00: Portfolio Value - 96523.91\n", + "2010-05-06 00:00:00: Portfolio Value - 60272.15\n", + "2010-05-07 00:00:00: Portfolio Value - 43052.16\n", + "2010-05-10 00:00:00: Portfolio Value - 87574.61\n", + "2010-05-11 00:00:00: Portfolio Value - 88916.00\n", + "2010-05-12 00:00:00: Portfolio Value - 97355.45\n", + "2010-05-13 00:00:00: Portfolio Value - 86829.08\n", + "2010-05-14 00:00:00: Portfolio Value - 76568.08\n", + "2010-05-17 00:00:00: Portfolio Value - 97988.58\n", + "2010-05-18 00:00:00: Portfolio Value - 81499.28\n", + "2010-05-19 00:00:00: Portfolio Value - 77070.30\n", + "2010-05-20 00:00:00: Portfolio Value - 29765.12\n", + "2010-05-21 00:00:00: Portfolio Value - 30792.79\n", + "2010-05-24 00:00:00: Portfolio Value - 27055.49\n", + "2010-05-25 00:00:00: Portfolio Value - 33183.66\n", + "2010-05-26 00:00:00: Portfolio Value - 14708.43\n", + "2010-05-27 00:00:00: Portfolio Value - 40366.49\n", + "2010-05-28 00:00:00: Portfolio Value - 34764.80\n", + "2010-06-01 00:00:00: Portfolio Value - 29392.16\n", + "2010-06-02 00:00:00: Portfolio Value - 46610.44\n", + "2010-06-03 00:00:00: Portfolio Value - 57559.88\n", + "2010-06-04 00:00:00: Portfolio Value - 15701.29\n", + "2010-06-07 00:00:00: Portfolio Value - 11077.56\n", + "2010-06-08 00:00:00: Portfolio Value - 34172.86\n", + "2010-06-09 00:00:00: Portfolio Value - 27057.74\n", + "2010-06-10 00:00:00: Portfolio Value - 46253.73\n", + "2010-06-11 00:00:00: Portfolio Value - 51426.00\n", + "2010-06-14 00:00:00: Portfolio Value - 57849.29\n", + "2010-06-15 00:00:00: Portfolio Value - 82408.94\n", + "2010-06-16 00:00:00: Portfolio Value - 83077.46\n", + "2010-06-17 00:00:00: Portfolio Value - 88975.79\n", + "2010-06-18 00:00:00: Portfolio Value - 87872.65\n", + "2010-06-21 00:00:00: Portfolio Value - 83228.44\n", + "2010-06-22 00:00:00: Portfolio Value - 71449.36\n", + "2010-06-23 00:00:00: Portfolio Value - 64600.26\n", + "2010-06-24 00:00:00: Portfolio Value - 57239.94\n", + "2010-06-25 00:00:00: Portfolio Value - 50377.94\n", + "2010-06-28 00:00:00: Portfolio Value - 58186.04\n", + "2010-06-29 00:00:00: Portfolio Value - 38677.45\n", + "2010-06-30 00:00:00: Portfolio Value - 26773.76\n", + "2010-07-01 00:00:00: Portfolio Value - 25567.03\n", + "2010-07-02 00:00:00: Portfolio Value - 26812.66\n", + "2010-07-06 00:00:00: Portfolio Value - 30237.47\n", + "2010-07-07 00:00:00: Portfolio Value - 58830.03\n", + "2010-07-08 00:00:00: Portfolio Value - 75558.43\n", + "2010-07-09 00:00:00: Portfolio Value - 83476.62\n", + "2010-07-12 00:00:00: Portfolio Value - 95270.26\n", + "2010-07-13 00:00:00: Portfolio Value - 111878.56\n", + "2010-07-14 00:00:00: Portfolio Value - 114320.76\n", + "2010-07-15 00:00:00: Portfolio Value - 110966.93\n", + "2010-07-16 00:00:00: Portfolio Value - 81967.99\n", + "2010-07-19 00:00:00: Portfolio Value - 89599.93\n", + "2010-07-20 00:00:00: Portfolio Value - 101861.72\n", + "2010-07-21 00:00:00: Portfolio Value - 77554.06\n", + "2010-07-22 00:00:00: Portfolio Value - 98140.94\n", + "2010-07-23 00:00:00: Portfolio Value - 107343.50\n", + "2010-07-26 00:00:00: Portfolio Value - 128955.91\n", + "2010-07-27 00:00:00: Portfolio Value - 135933.89\n", + "2010-07-28 00:00:00: Portfolio Value - 122210.26\n", + "2010-07-29 00:00:00: Portfolio Value - 106023.56\n", + "2010-07-30 00:00:00: Portfolio Value - 124246.88\n", + "2010-08-02 00:00:00: Portfolio Value - 141464.03\n", + "2010-08-03 00:00:00: Portfolio Value - 126223.97\n", + "2010-08-04 00:00:00: Portfolio Value - 135470.50\n", + "2010-08-05 00:00:00: Portfolio Value - 132881.08\n", + "2010-08-06 00:00:00: Portfolio Value - 140066.20\n", + "2010-08-09 00:00:00: Portfolio Value - 150193.46\n", + "2010-08-10 00:00:00: Portfolio Value - 151234.90\n", + "2010-08-11 00:00:00: Portfolio Value - 121347.89\n", + "2010-08-12 00:00:00: Portfolio Value - 123117.96\n", + "2010-08-13 00:00:00: Portfolio Value - 121947.60\n", + "2010-08-16 00:00:00: Portfolio Value - 120723.69\n", + "2010-08-17 00:00:00: Portfolio Value - 143885.85\n", + "2010-08-18 00:00:00: Portfolio Value - 148830.04\n", + "2010-08-19 00:00:00: Portfolio Value - 130479.90\n", + "2010-08-20 00:00:00: Portfolio Value - 134636.98\n", + "2010-08-23 00:00:00: Portfolio Value - 134328.20\n", + "2010-08-24 00:00:00: Portfolio Value - 120839.59\n", + "2010-08-25 00:00:00: Portfolio Value - 126726.35\n", + "2010-08-26 00:00:00: Portfolio Value - 119482.57\n", + "2010-08-27 00:00:00: Portfolio Value - 139567.05\n", + "2010-08-30 00:00:00: Portfolio Value - 121163.06\n", + "2010-08-31 00:00:00: Portfolio Value - 116008.53\n", + "2010-09-01 00:00:00: Portfolio Value - 151419.33\n", + "2010-09-02 00:00:00: Portfolio Value - 162824.17\n", + "2010-09-03 00:00:00: Portfolio Value - 173490.42\n", + "2010-09-07 00:00:00: Portfolio Value - 169036.74\n", + "2010-09-08 00:00:00: Portfolio Value - 173030.41\n", + "2010-09-09 00:00:00: Portfolio Value - 174301.54\n", + "2010-09-10 00:00:00: Portfolio Value - 174096.85\n", + "2010-09-13 00:00:00: Portfolio Value - 180020.99\n", + "2010-09-14 00:00:00: Portfolio Value - 188114.56\n", + "2010-09-15 00:00:00: Portfolio Value - 201703.33\n", + "2010-09-16 00:00:00: Portfolio Value - 197921.91\n", + "2010-09-17 00:00:00: Portfolio Value - 206959.30\n", + "2010-09-20 00:00:00: Portfolio Value - 216278.80\n", + "2010-09-21 00:00:00: Portfolio Value - 205967.12\n", + "2010-09-22 00:00:00: Portfolio Value - 220311.23\n", + "2010-09-23 00:00:00: Portfolio Value - 212901.87\n", + "2010-09-24 00:00:00: Portfolio Value - 236472.59\n", + "2010-09-27 00:00:00: Portfolio Value - 229162.69\n", + "2010-09-28 00:00:00: Portfolio Value - 241092.33\n", + "2010-09-29 00:00:00: Portfolio Value - 242303.99\n", + "2010-09-30 00:00:00: Portfolio Value - 241201.72\n", + "2010-10-01 00:00:00: Portfolio Value - 241849.80\n", + "2010-10-04 00:00:00: Portfolio Value - 241135.50\n", + "2010-10-05 00:00:00: Portfolio Value - 264548.24\n", + "2010-10-06 00:00:00: Portfolio Value - 263905.85\n", + "2010-10-07 00:00:00: Portfolio Value - 259098.78\n", + "2010-10-08 00:00:00: Portfolio Value - 259457.25\n", + "2010-10-11 00:00:00: Portfolio Value - 253323.09\n", + "2010-10-12 00:00:00: Portfolio Value - 250415.32\n", + "2010-10-13 00:00:00: Portfolio Value - 254149.23\n", + "2010-10-14 00:00:00: Portfolio Value - 260909.94\n", + "2010-10-15 00:00:00: Portfolio Value - 258693.56\n", + "2010-10-18 00:00:00: Portfolio Value - 264039.53\n", + "2010-10-19 00:00:00: Portfolio Value - 248141.26\n", + "2010-10-20 00:00:00: Portfolio Value - 264112.26\n", + "2010-10-21 00:00:00: Portfolio Value - 265194.66\n", + "2010-10-22 00:00:00: Portfolio Value - 272164.42\n", + "2010-10-25 00:00:00: Portfolio Value - 273632.14\n", + "2010-10-26 00:00:00: Portfolio Value - 261458.83\n", + "2010-10-27 00:00:00: Portfolio Value - 252528.47\n", + "2010-10-28 00:00:00: Portfolio Value - 245764.19\n", + "2010-10-29 00:00:00: Portfolio Value - 258819.43\n", + "2010-11-01 00:00:00: Portfolio Value - 252428.02\n", + "2010-11-02 00:00:00: Portfolio Value - 259273.51\n", + "2010-11-03 00:00:00: Portfolio Value - 259837.82\n", + "2010-11-04 00:00:00: Portfolio Value - 293426.89\n", + "2010-11-05 00:00:00: Portfolio Value - 290763.86\n", + "2010-11-08 00:00:00: Portfolio Value - 285205.77\n", + "2010-11-09 00:00:00: Portfolio Value - 284281.00\n", + "2010-11-10 00:00:00: Portfolio Value - 299817.22\n", + "2010-11-11 00:00:00: Portfolio Value - 303142.47\n", + "2010-11-12 00:00:00: Portfolio Value - 296626.37\n", + "2010-11-15 00:00:00: Portfolio Value - 305895.17\n", + "2010-11-16 00:00:00: Portfolio Value - 287474.35\n", + "2010-11-17 00:00:00: Portfolio Value - 297785.46\n", + "2010-11-18 00:00:00: Portfolio Value - 309788.46\n", + "2010-11-19 00:00:00: Portfolio Value - 307382.35\n", + "2010-11-22 00:00:00: Portfolio Value - 314805.16\n", + "2010-11-23 00:00:00: Portfolio Value - 299347.35\n", + "2010-11-24 00:00:00: Portfolio Value - 320368.27\n", + "2010-11-26 00:00:00: Portfolio Value - 313162.98\n", + "2010-11-29 00:00:00: Portfolio Value - 303352.09\n", + "2010-11-30 00:00:00: Portfolio Value - 299081.88\n", + "2010-12-01 00:00:00: Portfolio Value - 325933.93\n", + "2010-12-02 00:00:00: Portfolio Value - 338710.13\n", + "2010-12-03 00:00:00: Portfolio Value - 346092.37\n", + "2010-12-06 00:00:00: Portfolio Value - 333556.23\n", + "2010-12-07 00:00:00: Portfolio Value - 341880.73\n", + "2010-12-08 00:00:00: Portfolio Value - 350672.43\n", + "2010-12-09 00:00:00: Portfolio Value - 352313.36\n", + "2010-12-10 00:00:00: Portfolio Value - 361543.82\n", + "2010-12-13 00:00:00: Portfolio Value - 366167.93\n", + "2010-12-14 00:00:00: Portfolio Value - 380517.96\n", + "2010-12-15 00:00:00: Portfolio Value - 382416.12\n", + "2010-12-16 00:00:00: Portfolio Value - 404728.65\n", + "2010-12-17 00:00:00: Portfolio Value - 409715.61\n", + "2010-12-20 00:00:00: Portfolio Value - 411144.59\n", + "2010-12-21 00:00:00: Portfolio Value - 404134.30\n", + "2010-12-22 00:00:00: Portfolio Value - 410850.10\n", + "2010-12-23 00:00:00: Portfolio Value - 412399.66\n", + "2010-12-27 00:00:00: Portfolio Value - 406448.94\n", + "2010-12-28 00:00:00: Portfolio Value - 416386.34\n", + "2010-12-29 00:00:00: Portfolio Value - 420572.19\n", + "2010-12-30 00:00:00: Portfolio Value - 422019.00\n", + "2010-12-31 00:00:00: Portfolio Value - 407134.73\n", + "2011-01-03 00:00:00: Portfolio Value - 397861.81\n", + "2011-01-04 00:00:00: Portfolio Value - 372501.45\n", + "2011-01-05 00:00:00: Portfolio Value - 359109.24\n", + "2011-01-06 00:00:00: Portfolio Value - 343293.79\n", + "2011-01-07 00:00:00: Portfolio Value - 334346.43\n", + "2011-01-10 00:00:00: Portfolio Value - 333649.68\n", + "2011-01-11 00:00:00: Portfolio Value - 334371.94\n", + "2011-01-12 00:00:00: Portfolio Value - 342245.65\n", + "2011-01-13 00:00:00: Portfolio Value - 340313.69\n", + "2011-01-14 00:00:00: Portfolio Value - 347100.84\n", + "2011-01-18 00:00:00: Portfolio Value - 348217.15\n", + "2011-01-19 00:00:00: Portfolio Value - 350906.71\n", + "2011-01-20 00:00:00: Portfolio Value - 357386.07\n", + "2011-01-21 00:00:00: Portfolio Value - 352207.03\n", + "2011-01-24 00:00:00: Portfolio Value - 360277.56\n", + "2011-01-25 00:00:00: Portfolio Value - 370928.12\n", + "2011-01-26 00:00:00: Portfolio Value - 369577.89\n", + "2011-01-27 00:00:00: Portfolio Value - 382665.30\n", + "2011-01-28 00:00:00: Portfolio Value - 349382.17\n", + "2011-01-31 00:00:00: Portfolio Value - 347424.52\n", + "2011-02-01 00:00:00: Portfolio Value - 355158.54\n", + "2011-02-02 00:00:00: Portfolio Value - 338675.86\n", + "2011-02-03 00:00:00: Portfolio Value - 357638.87\n", + "2011-02-04 00:00:00: Portfolio Value - 376375.50\n", + "2011-02-07 00:00:00: Portfolio Value - 378266.28\n", + "2011-02-08 00:00:00: Portfolio Value - 387586.48\n", + "2011-02-09 00:00:00: Portfolio Value - 398738.97\n", + "2011-02-10 00:00:00: Portfolio Value - 399386.23\n", + "2011-02-11 00:00:00: Portfolio Value - 413933.49\n", + "2011-02-14 00:00:00: Portfolio Value - 400673.25\n", + "2011-02-15 00:00:00: Portfolio Value - 402702.10\n", + "2011-02-16 00:00:00: Portfolio Value - 406958.19\n", + "2011-02-17 00:00:00: Portfolio Value - 398531.76\n", + "2011-02-18 00:00:00: Portfolio Value - 418763.56\n", + "2011-02-22 00:00:00: Portfolio Value - 393218.89\n", + "2011-02-23 00:00:00: Portfolio Value - 373210.82\n", + "2011-02-24 00:00:00: Portfolio Value - 371642.55\n", + "2011-02-25 00:00:00: Portfolio Value - 390568.11\n", + "2011-02-28 00:00:00: Portfolio Value - 417056.25\n", + "2011-03-01 00:00:00: Portfolio Value - 415874.93\n", + "2011-03-02 00:00:00: Portfolio Value - 413993.16\n", + "2011-03-03 00:00:00: Portfolio Value - 442235.38\n", + "2011-03-04 00:00:00: Portfolio Value - 433725.75\n", + "2011-03-07 00:00:00: Portfolio Value - 424289.01\n", + "2011-03-08 00:00:00: Portfolio Value - 446664.99\n", + "2011-03-09 00:00:00: Portfolio Value - 448197.76\n", + "2011-03-10 00:00:00: Portfolio Value - 428422.41\n", + "2011-03-11 00:00:00: Portfolio Value - 427343.74\n", + "2011-03-14 00:00:00: Portfolio Value - 405640.53\n", + "2011-03-15 00:00:00: Portfolio Value - 376431.12\n", + "2011-03-16 00:00:00: Portfolio Value - 358915.23\n", + "2011-03-17 00:00:00: Portfolio Value - 370101.73\n", + "2011-03-18 00:00:00: Portfolio Value - 384563.38\n", + "2011-03-21 00:00:00: Portfolio Value - 407104.24\n", + "2011-03-22 00:00:00: Portfolio Value - 404499.37\n", + "2011-03-23 00:00:00: Portfolio Value - 413284.33\n", + "2011-03-24 00:00:00: Portfolio Value - 427869.30\n", + "2011-03-25 00:00:00: Portfolio Value - 435354.19\n", + "2011-03-28 00:00:00: Portfolio Value - 425025.60\n", + "2011-03-29 00:00:00: Portfolio Value - 440021.83\n", + "2011-03-30 00:00:00: Portfolio Value - 454472.41\n", + "2011-03-31 00:00:00: Portfolio Value - 466929.00\n", + "2011-04-01 00:00:00: Portfolio Value - 487029.81\n", + "2011-04-04 00:00:00: Portfolio Value - 493583.34\n", + "2011-04-05 00:00:00: Portfolio Value - 495821.05\n", + "2011-04-06 00:00:00: Portfolio Value - 518653.18\n", + "2011-04-07 00:00:00: Portfolio Value - 518631.53\n", + "2011-04-08 00:00:00: Portfolio Value - 509884.15\n", + "2011-04-11 00:00:00: Portfolio Value - 507037.19\n", + "2011-04-12 00:00:00: Portfolio Value - 516594.86\n", + "2011-04-13 00:00:00: Portfolio Value - 521539.66\n", + "2011-04-14 00:00:00: Portfolio Value - 528515.19\n", + "2011-04-15 00:00:00: Portfolio Value - 544124.22\n", + "2011-04-18 00:00:00: Portfolio Value - 526669.46\n", + "2011-04-19 00:00:00: Portfolio Value - 525191.98\n", + "2011-04-20 00:00:00: Portfolio Value - 550329.37\n", + "2011-04-21 00:00:00: Portfolio Value - 554043.85\n", + "2011-04-25 00:00:00: Portfolio Value - 546383.73\n", + "2011-04-26 00:00:00: Portfolio Value - 563416.99\n", + "2011-04-27 00:00:00: Portfolio Value - 573262.69\n", + "2011-04-28 00:00:00: Portfolio Value - 597132.24\n", + "2011-04-29 00:00:00: Portfolio Value - 595514.64\n", + "2011-05-02 00:00:00: Portfolio Value - 600322.89\n", + "2011-05-03 00:00:00: Portfolio Value - 615712.28\n", + "2011-05-04 00:00:00: Portfolio Value - 611035.63\n", + "2011-05-05 00:00:00: Portfolio Value - 604871.85\n", + "2011-05-06 00:00:00: Portfolio Value - 603741.92\n", + "2011-05-09 00:00:00: Portfolio Value - 617652.68\n", + "2011-05-10 00:00:00: Portfolio Value - 636665.03\n", + "2011-05-11 00:00:00: Portfolio Value - 635544.98\n", + "2011-05-12 00:00:00: Portfolio Value - 663937.99\n", + "2011-05-13 00:00:00: Portfolio Value - 651904.90\n", + "2011-05-16 00:00:00: Portfolio Value - 646104.69\n", + "2011-05-17 00:00:00: Portfolio Value - 640062.45\n", + "2011-05-18 00:00:00: Portfolio Value - 646895.73\n", + "2011-05-19 00:00:00: Portfolio Value - 644632.14\n", + "2011-05-20 00:00:00: Portfolio Value - 632597.45\n", + "2011-05-23 00:00:00: Portfolio Value - 614225.02\n", + "2011-05-24 00:00:00: Portfolio Value - 639912.82\n", + "2011-05-25 00:00:00: Portfolio Value - 649988.79\n", + "2011-05-26 00:00:00: Portfolio Value - 652897.88\n", + "2011-05-27 00:00:00: Portfolio Value - 658647.15\n", + "2011-05-31 00:00:00: Portfolio Value - 672130.81\n", + "2011-06-01 00:00:00: Portfolio Value - 657212.12\n", + "2011-06-02 00:00:00: Portfolio Value - 646814.17\n", + "2011-06-03 00:00:00: Portfolio Value - 623351.41\n", + "2011-06-06 00:00:00: Portfolio Value - 617696.71\n", + "2011-06-07 00:00:00: Portfolio Value - 612836.03\n", + "2011-06-08 00:00:00: Portfolio Value - 618672.47\n", + "2011-06-09 00:00:00: Portfolio Value - 627078.50\n", + "2011-06-10 00:00:00: Portfolio Value - 598576.64\n", + "2011-06-13 00:00:00: Portfolio Value - 598045.23\n", + "2011-06-14 00:00:00: Portfolio Value - 614591.42\n", + "2011-06-15 00:00:00: Portfolio Value - 590234.73\n", + "2011-06-16 00:00:00: Portfolio Value - 598394.80\n", + "2011-06-17 00:00:00: Portfolio Value - 610047.92\n", + "2011-06-20 00:00:00: Portfolio Value - 621617.84\n", + "2011-06-21 00:00:00: Portfolio Value - 626525.85\n", + "2011-06-22 00:00:00: Portfolio Value - 621860.01\n", + "2011-06-23 00:00:00: Portfolio Value - 609382.95\n", + "2011-06-24 00:00:00: Portfolio Value - 597662.41\n", + "2011-06-27 00:00:00: Portfolio Value - 606442.80\n", + "2011-06-28 00:00:00: Portfolio Value - 614407.32\n", + "2011-06-29 00:00:00: Portfolio Value - 620710.14\n", + "2011-06-30 00:00:00: Portfolio Value - 636017.65\n", + "2011-07-01 00:00:00: Portfolio Value - 662321.49\n", + "2011-07-05 00:00:00: Portfolio Value - 656966.00\n", + "2011-07-06 00:00:00: Portfolio Value - 672903.67\n", + "2011-07-07 00:00:00: Portfolio Value - 679285.62\n", + "2011-07-08 00:00:00: Portfolio Value - 668247.55\n", + "2011-07-11 00:00:00: Portfolio Value - 654187.87\n", + "2011-07-12 00:00:00: Portfolio Value - 661381.76\n", + "2011-07-13 00:00:00: Portfolio Value - 658086.94\n", + "2011-07-14 00:00:00: Portfolio Value - 653853.99\n", + "2011-07-15 00:00:00: Portfolio Value - 654236.05\n", + "2011-07-18 00:00:00: Portfolio Value - 632754.28\n", + "2011-07-19 00:00:00: Portfolio Value - 640734.25\n", + "2011-07-20 00:00:00: Portfolio Value - 636257.99\n", + "2011-07-21 00:00:00: Portfolio Value - 652248.69\n", + "2011-07-22 00:00:00: Portfolio Value - 648012.79\n", + "2011-07-25 00:00:00: Portfolio Value - 635924.04\n", + "2011-07-26 00:00:00: Portfolio Value - 631427.64\n", + "2011-07-27 00:00:00: Portfolio Value - 607726.15\n", + "2011-07-28 00:00:00: Portfolio Value - 595285.55\n", + "2011-07-29 00:00:00: Portfolio Value - 585354.69\n", + "2011-08-01 00:00:00: Portfolio Value - 566168.46\n", + "2011-08-02 00:00:00: Portfolio Value - 530978.69\n", + "2011-08-03 00:00:00: Portfolio Value - 552272.79\n", + "2011-08-04 00:00:00: Portfolio Value - 483238.31\n", + "2011-08-05 00:00:00: Portfolio Value - 509024.24\n", + "2011-08-08 00:00:00: Portfolio Value - 397527.77\n", + "2011-08-09 00:00:00: Portfolio Value - 484667.13\n", + "2011-08-10 00:00:00: Portfolio Value - 418545.68\n", + "2011-08-11 00:00:00: Portfolio Value - 507990.11\n", + "2011-08-12 00:00:00: Portfolio Value - 523446.73\n", + "2011-08-15 00:00:00: Portfolio Value - 553985.59\n", + "2011-08-16 00:00:00: Portfolio Value - 551783.27\n", + "2011-08-17 00:00:00: Portfolio Value - 557507.05\n", + "2011-08-18 00:00:00: Portfolio Value - 513544.12\n", + "2011-08-19 00:00:00: Portfolio Value - 518885.92\n", + "2011-08-22 00:00:00: Portfolio Value - 536944.87\n", + "2011-08-23 00:00:00: Portfolio Value - 585235.90\n", + "2011-08-24 00:00:00: Portfolio Value - 611740.49\n", + "2011-08-25 00:00:00: Portfolio Value - 570459.32\n", + "2011-08-26 00:00:00: Portfolio Value - 600134.37\n", + "2011-08-29 00:00:00: Portfolio Value - 648432.22\n", + "2011-08-30 00:00:00: Portfolio Value - 656213.05\n", + "2011-08-31 00:00:00: Portfolio Value - 663123.41\n", + "2011-09-01 00:00:00: Portfolio Value - 660857.16\n", + "2011-09-02 00:00:00: Portfolio Value - 626912.67\n", + "2011-09-06 00:00:00: Portfolio Value - 619870.81\n", + "2011-09-07 00:00:00: Portfolio Value - 664943.77\n", + "2011-09-08 00:00:00: Portfolio Value - 651477.43\n", + "2011-09-09 00:00:00: Portfolio Value - 600592.15\n", + "2011-09-12 00:00:00: Portfolio Value - 604248.99\n", + "2011-09-13 00:00:00: Portfolio Value - 622618.67\n", + "2011-09-14 00:00:00: Portfolio Value - 654800.16\n", + "2011-09-15 00:00:00: Portfolio Value - 674874.27\n", + "2011-09-16 00:00:00: Portfolio Value - 703028.08\n", + "2011-09-19 00:00:00: Portfolio Value - 690803.80\n", + "2011-09-20 00:00:00: Portfolio Value - 699239.20\n", + "2011-09-21 00:00:00: Portfolio Value - 650519.13\n", + "2011-09-22 00:00:00: Portfolio Value - 610904.58\n", + "2011-09-23 00:00:00: Portfolio Value - 637612.28\n", + "2011-09-26 00:00:00: Portfolio Value - 671905.36\n", + "2011-09-27 00:00:00: Portfolio Value - 693803.14\n", + "2011-09-28 00:00:00: Portfolio Value - 662994.38\n", + "2011-09-29 00:00:00: Portfolio Value - 680708.21\n", + "2011-09-30 00:00:00: Portfolio Value - 673677.69\n", + "2011-10-03 00:00:00: Portfolio Value - 616602.31\n", + "2011-10-04 00:00:00: Portfolio Value - 655509.20\n", + "2011-10-05 00:00:00: Portfolio Value - 658419.83\n", + "2011-10-06 00:00:00: Portfolio Value - 679293.43\n", + "2011-10-07 00:00:00: Portfolio Value - 682927.21\n", + "2011-10-10 00:00:00: Portfolio Value - 733822.12\n", + "2011-10-11 00:00:00: Portfolio Value - 710413.40\n", + "2011-10-12 00:00:00: Portfolio Value - 714926.32\n", + "2011-10-13 00:00:00: Portfolio Value - 716236.77\n", + "2011-10-14 00:00:00: Portfolio Value - 732524.63\n", + "2011-10-17 00:00:00: Portfolio Value - 704094.78\n", + "2011-10-18 00:00:00: Portfolio Value - 732248.35\n", + "2011-10-19 00:00:00: Portfolio Value - 734939.94\n", + "2011-10-20 00:00:00: Portfolio Value - 748254.08\n", + "2011-10-21 00:00:00: Portfolio Value - 793079.96\n", + "2011-10-24 00:00:00: Portfolio Value - 800912.38\n", + "2011-10-25 00:00:00: Portfolio Value - 760415.39\n", + "2011-10-26 00:00:00: Portfolio Value - 759317.89\n", + "2011-10-27 00:00:00: Portfolio Value - 793757.00\n", + "2011-10-28 00:00:00: Portfolio Value - 771110.93\n", + "2011-10-31 00:00:00: Portfolio Value - 749918.25\n", + "2011-11-01 00:00:00: Portfolio Value - 721540.72\n", + "2011-11-02 00:00:00: Portfolio Value - 738960.22\n", + "2011-11-03 00:00:00: Portfolio Value - 768218.90\n", + "2011-11-04 00:00:00: Portfolio Value - 769021.89\n", + "2011-11-07 00:00:00: Portfolio Value - 784993.58\n", + "2011-11-08 00:00:00: Portfolio Value - 812291.02\n", + "2011-11-09 00:00:00: Portfolio Value - 755677.97\n", + "2011-11-10 00:00:00: Portfolio Value - 781107.94\n", + "2011-11-11 00:00:00: Portfolio Value - 815502.06\n", + "2011-11-14 00:00:00: Portfolio Value - 797544.18\n", + "2011-11-15 00:00:00: Portfolio Value - 802898.80\n", + "2011-11-16 00:00:00: Portfolio Value - 766392.36\n", + "2011-11-17 00:00:00: Portfolio Value - 743994.04\n", + "2011-11-18 00:00:00: Portfolio Value - 748534.74\n", + "2011-11-21 00:00:00: Portfolio Value - 714073.27\n", + "2011-11-22 00:00:00: Portfolio Value - 700950.65\n", + "2011-11-23 00:00:00: Portfolio Value - 665507.93\n", + "2011-11-25 00:00:00: Portfolio Value - 686871.88\n", + "2011-11-28 00:00:00: Portfolio Value - 707389.39\n", + "2011-11-29 00:00:00: Portfolio Value - 720852.03\n", + "2011-11-30 00:00:00: Portfolio Value - 776806.72\n", + "2011-12-01 00:00:00: Portfolio Value - 783583.84\n", + "2011-12-02 00:00:00: Portfolio Value - 766509.78\n", + "2011-12-05 00:00:00: Portfolio Value - 790448.19\n", + "2011-12-06 00:00:00: Portfolio Value - 801275.00\n", + "2011-12-07 00:00:00: Portfolio Value - 795681.04\n", + "2011-12-08 00:00:00: Portfolio Value - 767525.84\n", + "2011-12-09 00:00:00: Portfolio Value - 790463.96\n", + "2011-12-12 00:00:00: Portfolio Value - 781722.90\n", + "2011-12-13 00:00:00: Portfolio Value - 768748.96\n", + "2011-12-14 00:00:00: Portfolio Value - 762346.07\n", + "2011-12-15 00:00:00: Portfolio Value - 782275.00\n", + "2011-12-16 00:00:00: Portfolio Value - 779673.67\n", + "2011-12-19 00:00:00: Portfolio Value - 764853.53\n", + "2011-12-20 00:00:00: Portfolio Value - 805302.82\n", + "2011-12-21 00:00:00: Portfolio Value - 829013.91\n", + "2011-12-22 00:00:00: Portfolio Value - 825513.78\n", + "2011-12-23 00:00:00: Portfolio Value - 850664.41\n", + "2011-12-27 00:00:00: Portfolio Value - 859075.20\n", + "2011-12-28 00:00:00: Portfolio Value - 842330.40\n", + "2011-12-29 00:00:00: Portfolio Value - 855593.45\n", + "2011-12-30 00:00:00: Portfolio Value - 841427.54\n", + "2012-01-03 00:00:00: Portfolio Value - 825493.47\n", + "2012-01-04 00:00:00: Portfolio Value - 820615.55\n", + "2012-01-05 00:00:00: Portfolio Value - 833814.47\n", + "2012-01-06 00:00:00: Portfolio Value - 839482.97\n", + "2012-01-09 00:00:00: Portfolio Value - 837131.26\n", + "2012-01-10 00:00:00: Portfolio Value - 842531.41\n", + "2012-01-11 00:00:00: Portfolio Value - 839876.72\n", + "2012-01-12 00:00:00: Portfolio Value - 847851.46\n", + "2012-01-13 00:00:00: Portfolio Value - 844939.74\n", + "2012-01-17 00:00:00: Portfolio Value - 851643.86\n", + "2012-01-18 00:00:00: Portfolio Value - 857626.10\n", + "2012-01-19 00:00:00: Portfolio Value - 864760.33\n", + "2012-01-20 00:00:00: Portfolio Value - 869412.39\n", + "2012-01-23 00:00:00: Portfolio Value - 858857.73\n", + "2012-01-24 00:00:00: Portfolio Value - 850403.01\n", + "2012-01-25 00:00:00: Portfolio Value - 865981.26\n", + "2012-01-26 00:00:00: Portfolio Value - 869103.75\n", + "2012-01-27 00:00:00: Portfolio Value - 849514.83\n", + "2012-01-30 00:00:00: Portfolio Value - 844978.29\n", + "2012-01-31 00:00:00: Portfolio Value - 852209.34\n", + "2012-02-01 00:00:00: Portfolio Value - 881916.71\n", + "2012-02-02 00:00:00: Portfolio Value - 875614.62\n", + "2012-02-03 00:00:00: Portfolio Value - 890587.41\n", + "2012-02-06 00:00:00: Portfolio Value - 879306.74\n", + "2012-02-07 00:00:00: Portfolio Value - 880180.07\n", + "2012-02-08 00:00:00: Portfolio Value - 873879.41\n", + "2012-02-09 00:00:00: Portfolio Value - 885431.94\n", + "2012-02-10 00:00:00: Portfolio Value - 876195.94\n", + "2012-02-13 00:00:00: Portfolio Value - 892744.73\n", + "2012-02-14 00:00:00: Portfolio Value - 895870.05\n", + "2012-02-15 00:00:00: Portfolio Value - 872218.13\n", + "2012-02-16 00:00:00: Portfolio Value - 888264.13\n", + "2012-02-17 00:00:00: Portfolio Value - 895507.29\n", + "2012-02-21 00:00:00: Portfolio Value - 893363.10\n", + "2012-02-22 00:00:00: Portfolio Value - 890792.00\n", + "2012-02-23 00:00:00: Portfolio Value - 905594.30\n", + "2012-02-24 00:00:00: Portfolio Value - 909579.73\n", + "2012-02-27 00:00:00: Portfolio Value - 918229.66\n", + "2012-02-28 00:00:00: Portfolio Value - 937254.68\n", + "2012-02-29 00:00:00: Portfolio Value - 939542.34\n", + "2012-03-01 00:00:00: Portfolio Value - 943761.30\n", + "2012-03-02 00:00:00: Portfolio Value - 938885.12\n", + "2012-03-05 00:00:00: Portfolio Value - 964997.15\n", + "2012-03-06 00:00:00: Portfolio Value - 954800.46\n", + "2012-03-07 00:00:00: Portfolio Value - 953323.31\n", + "2012-03-08 00:00:00: Portfolio Value - 957393.23\n", + "2012-03-09 00:00:00: Portfolio Value - 973976.61\n", + "2012-03-12 00:00:00: Portfolio Value - 977489.16\n", + "2012-03-13 00:00:00: Portfolio Value - 984994.68\n", + "2012-03-14 00:00:00: Portfolio Value - 988452.02\n", + "2012-03-15 00:00:00: Portfolio Value - 988598.24\n", + "2012-03-16 00:00:00: Portfolio Value - 983687.03\n", + "2012-03-19 00:00:00: Portfolio Value - 982027.54\n", + "2012-03-20 00:00:00: Portfolio Value - 976918.27\n", + "2012-03-21 00:00:00: Portfolio Value - 973686.79\n", + "2012-03-22 00:00:00: Portfolio Value - 977020.25\n", + "2012-03-23 00:00:00: Portfolio Value - 976930.66\n", + "2012-03-26 00:00:00: Portfolio Value - 1002122.67\n", + "2012-03-27 00:00:00: Portfolio Value - 1001798.04\n", + "2012-03-28 00:00:00: Portfolio Value - 991663.59\n", + "2012-03-29 00:00:00: Portfolio Value - 986826.06\n", + "2012-03-30 00:00:00: Portfolio Value - 986106.40\n", + "2012-04-02 00:00:00: Portfolio Value - 1011339.87\n", + "2012-04-03 00:00:00: Portfolio Value - 1015408.31\n", + "2012-04-04 00:00:00: Portfolio Value - 1006796.66\n", + "2012-04-05 00:00:00: Portfolio Value - 1013122.01\n", + "2012-04-09 00:00:00: Portfolio Value - 994977.85\n", + "2012-04-10 00:00:00: Portfolio Value - 961837.05\n", + "2012-04-11 00:00:00: Portfolio Value - 979330.55\n", + "2012-04-12 00:00:00: Portfolio Value - 989323.84\n", + "2012-04-13 00:00:00: Portfolio Value - 978372.77\n", + "2012-04-16 00:00:00: Portfolio Value - 980046.71\n", + "2012-04-17 00:00:00: Portfolio Value - 998290.70\n", + "2012-04-18 00:00:00: Portfolio Value - 988734.70\n", + "2012-04-19 00:00:00: Portfolio Value - 983800.83\n", + "2012-04-20 00:00:00: Portfolio Value - 1004328.45\n", + "2012-04-23 00:00:00: Portfolio Value - 988076.19\n", + "2012-04-24 00:00:00: Portfolio Value - 997842.52\n", + "2012-04-25 00:00:00: Portfolio Value - 1021999.81\n", + "2012-04-26 00:00:00: Portfolio Value - 1057684.72\n", + "2012-04-27 00:00:00: Portfolio Value - 1067365.93\n", + "2012-04-30 00:00:00: Portfolio Value - 1062838.50\n", + "2012-05-01 00:00:00: Portfolio Value - 1061224.58\n", + "2012-05-02 00:00:00: Portfolio Value - 1067585.55\n", + "2012-05-03 00:00:00: Portfolio Value - 1063218.21\n", + "2012-05-04 00:00:00: Portfolio Value - 1045180.64\n", + "2012-05-07 00:00:00: Portfolio Value - 1044173.04\n", + "2012-05-08 00:00:00: Portfolio Value - 1043594.48\n", + "2012-05-09 00:00:00: Portfolio Value - 1039034.88\n", + "2012-05-10 00:00:00: Portfolio Value - 1057630.06\n", + "2012-05-11 00:00:00: Portfolio Value - 1059069.94\n", + "2012-05-14 00:00:00: Portfolio Value - 1030701.35\n", + "2012-05-15 00:00:00: Portfolio Value - 1041666.29\n", + "2012-05-16 00:00:00: Portfolio Value - 1049701.58\n", + "2012-05-17 00:00:00: Portfolio Value - 984975.24\n", + "2012-05-18 00:00:00: Portfolio Value - 984233.38\n", + "2012-05-21 00:00:00: Portfolio Value - 985783.86\n", + "2012-05-22 00:00:00: Portfolio Value - 981558.62\n", + "2012-05-23 00:00:00: Portfolio Value - 1005492.80\n", + "2012-05-24 00:00:00: Portfolio Value - 1010759.28\n", + "2012-05-25 00:00:00: Portfolio Value - 1016310.67\n", + "2012-05-29 00:00:00: Portfolio Value - 1039213.61\n", + "2012-05-30 00:00:00: Portfolio Value - 1017567.80\n", + "2012-05-31 00:00:00: Portfolio Value - 1023230.84\n", + "2012-06-01 00:00:00: Portfolio Value - 991860.82\n", + "2012-06-04 00:00:00: Portfolio Value - 1005021.06\n", + "2012-06-05 00:00:00: Portfolio Value - 1015617.77\n", + "2012-06-06 00:00:00: Portfolio Value - 1059784.50\n", + "2012-06-07 00:00:00: Portfolio Value - 1055305.70\n", + "2012-06-08 00:00:00: Portfolio Value - 1067654.23\n", + "2012-06-11 00:00:00: Portfolio Value - 1048130.06\n", + "2012-06-12 00:00:00: Portfolio Value - 1071387.14\n", + "2012-06-13 00:00:00: Portfolio Value - 1066560.33\n", + "2012-06-14 00:00:00: Portfolio Value - 1089141.89\n", + "2012-06-15 00:00:00: Portfolio Value - 1090549.00\n", + "2012-06-18 00:00:00: Portfolio Value - 1101370.99\n", + "2012-06-19 00:00:00: Portfolio Value - 1112282.38\n", + "2012-06-20 00:00:00: Portfolio Value - 1097637.68\n", + "2012-06-21 00:00:00: Portfolio Value - 1060543.89\n", + "2012-06-22 00:00:00: Portfolio Value - 1077108.42\n", + "2012-06-25 00:00:00: Portfolio Value - 1041788.11\n", + "2012-06-26 00:00:00: Portfolio Value - 1053434.14\n", + "2012-06-27 00:00:00: Portfolio Value - 1036722.69\n", + "2012-06-28 00:00:00: Portfolio Value - 1046321.52\n", + "2012-06-29 00:00:00: Portfolio Value - 1094456.44\n", + "2012-07-02 00:00:00: Portfolio Value - 1100498.56\n", + "2012-07-03 00:00:00: Portfolio Value - 1102765.37\n", + "2012-07-05 00:00:00: Portfolio Value - 1107457.79\n", + "2012-07-06 00:00:00: Portfolio Value - 1090282.93\n", + "2012-07-09 00:00:00: Portfolio Value - 1097255.28\n", + "2012-07-10 00:00:00: Portfolio Value - 1097918.30\n", + "2012-07-11 00:00:00: Portfolio Value - 1101391.69\n", + "2012-07-12 00:00:00: Portfolio Value - 1135186.64\n", + "2012-07-13 00:00:00: Portfolio Value - 1153780.00\n", + "2012-07-16 00:00:00: Portfolio Value - 1142076.84\n", + "2012-07-17 00:00:00: Portfolio Value - 1155633.33\n", + "2012-07-18 00:00:00: Portfolio Value - 1171565.71\n", + "2012-07-19 00:00:00: Portfolio Value - 1174045.29\n", + "2012-07-20 00:00:00: Portfolio Value - 1144546.35\n", + "2012-07-23 00:00:00: Portfolio Value - 1124989.35\n", + "2012-07-24 00:00:00: Portfolio Value - 1104851.51\n", + "2012-07-25 00:00:00: Portfolio Value - 1122807.56\n", + "2012-07-26 00:00:00: Portfolio Value - 1128593.76\n", + "2012-07-27 00:00:00: Portfolio Value - 1163992.16\n", + "2012-07-30 00:00:00: Portfolio Value - 1169628.75\n", + "2012-07-31 00:00:00: Portfolio Value - 1152204.75\n", + "2012-08-01 00:00:00: Portfolio Value - 1118623.00\n", + "2012-08-02 00:00:00: Portfolio Value - 1101150.77\n", + "2012-08-03 00:00:00: Portfolio Value - 1137883.50\n", + "2012-08-06 00:00:00: Portfolio Value - 1116017.26\n", + "2012-08-07 00:00:00: Portfolio Value - 1109174.57\n", + "2012-08-08 00:00:00: Portfolio Value - 1108360.42\n", + "2012-08-09 00:00:00: Portfolio Value - 1105539.56\n", + "2012-08-10 00:00:00: Portfolio Value - 1108263.59\n", + "2012-08-13 00:00:00: Portfolio Value - 1102888.85\n", + "2012-08-14 00:00:00: Portfolio Value - 1115033.38\n", + "2012-08-15 00:00:00: Portfolio Value - 1123405.99\n", + "2012-08-16 00:00:00: Portfolio Value - 1118905.12\n", + "2012-08-17 00:00:00: Portfolio Value - 1130225.25\n", + "2012-08-20 00:00:00: Portfolio Value - 1130613.68\n", + "2012-08-21 00:00:00: Portfolio Value - 1125229.91\n", + "2012-08-22 00:00:00: Portfolio Value - 1117782.21\n", + "2012-08-23 00:00:00: Portfolio Value - 1102163.49\n", + "2012-08-24 00:00:00: Portfolio Value - 1125410.04\n", + "2012-08-27 00:00:00: Portfolio Value - 1126670.72\n", + "2012-08-28 00:00:00: Portfolio Value - 1120429.79\n", + "2012-08-29 00:00:00: Portfolio Value - 1120667.54\n", + "2012-08-30 00:00:00: Portfolio Value - 1111925.91\n", + "2012-08-31 00:00:00: Portfolio Value - 1126224.44\n", + "2012-09-04 00:00:00: Portfolio Value - 1130095.99\n", + "2012-09-05 00:00:00: Portfolio Value - 1135041.62\n", + "2012-09-06 00:00:00: Portfolio Value - 1175910.22\n", + "2012-09-07 00:00:00: Portfolio Value - 1165744.56\n", + "2012-09-10 00:00:00: Portfolio Value - 1156486.64\n", + "2012-09-11 00:00:00: Portfolio Value - 1164128.88\n", + "2012-09-12 00:00:00: Portfolio Value - 1177821.69\n", + "2012-09-13 00:00:00: Portfolio Value - 1195627.83\n", + "2012-09-14 00:00:00: Portfolio Value - 1145039.74\n", + "2012-09-17 00:00:00: Portfolio Value - 1151599.48\n", + "2012-09-18 00:00:00: Portfolio Value - 1156522.20\n", + "2012-09-19 00:00:00: Portfolio Value - 1184061.75\n", + "2012-09-20 00:00:00: Portfolio Value - 1194867.80\n", + "2012-09-21 00:00:00: Portfolio Value - 1192894.77\n", + "2012-09-24 00:00:00: Portfolio Value - 1189551.56\n", + "2012-09-25 00:00:00: Portfolio Value - 1178438.41\n", + "2012-09-26 00:00:00: Portfolio Value - 1186392.00\n", + "2012-09-27 00:00:00: Portfolio Value - 1187518.08\n", + "2012-09-28 00:00:00: Portfolio Value - 1183859.04\n", + "2012-10-01 00:00:00: Portfolio Value - 1188975.64\n", + "2012-10-02 00:00:00: Portfolio Value - 1188832.36\n", + "2012-10-03 00:00:00: Portfolio Value - 1200696.54\n", + "2012-10-04 00:00:00: Portfolio Value - 1223560.95\n", + "2012-10-05 00:00:00: Portfolio Value - 1233950.20\n", + "2012-10-08 00:00:00: Portfolio Value - 1236021.28\n", + "2012-10-09 00:00:00: Portfolio Value - 1213173.43\n", + "2012-10-10 00:00:00: Portfolio Value - 1203535.64\n", + "2012-10-11 00:00:00: Portfolio Value - 1191268.30\n", + "2012-10-12 00:00:00: Portfolio Value - 1183344.47\n", + "2012-10-15 00:00:00: Portfolio Value - 1200739.44\n", + "2012-10-16 00:00:00: Portfolio Value - 1206283.43\n", + "2012-10-17 00:00:00: Portfolio Value - 1205515.16\n", + "2012-10-18 00:00:00: Portfolio Value - 1208893.64\n", + "2012-10-19 00:00:00: Portfolio Value - 1175920.61\n", + "2012-10-22 00:00:00: Portfolio Value - 1162642.87\n", + "2012-10-23 00:00:00: Portfolio Value - 1153612.13\n", + "2012-10-24 00:00:00: Portfolio Value - 1137028.65\n", + "2012-10-25 00:00:00: Portfolio Value - 1153816.78\n", + "2012-10-26 00:00:00: Portfolio Value - 1158339.08\n", + "2012-10-31 00:00:00: Portfolio Value - 1180250.25\n", + "2012-11-01 00:00:00: Portfolio Value - 1195654.58\n", + "2012-11-02 00:00:00: Portfolio Value - 1177100.92\n", + "2012-11-05 00:00:00: Portfolio Value - 1183628.06\n", + "2012-11-06 00:00:00: Portfolio Value - 1202092.41\n", + "2012-11-07 00:00:00: Portfolio Value - 1167375.38\n", + "2012-11-08 00:00:00: Portfolio Value - 1140213.45\n", + "2012-11-09 00:00:00: Portfolio Value - 1138006.74\n", + "2012-11-12 00:00:00: Portfolio Value - 1137070.03\n", + "2012-11-13 00:00:00: Portfolio Value - 1132964.17\n", + "2012-11-14 00:00:00: Portfolio Value - 1109266.11\n", + "2012-11-15 00:00:00: Portfolio Value - 1115276.26\n", + "2012-11-16 00:00:00: Portfolio Value - 1139060.86\n", + "2012-11-19 00:00:00: Portfolio Value - 1160872.52\n", + "2012-11-20 00:00:00: Portfolio Value - 1162015.27\n", + "2012-11-21 00:00:00: Portfolio Value - 1167575.21\n", + "2012-11-23 00:00:00: Portfolio Value - 1189114.28\n", + "2012-11-26 00:00:00: Portfolio Value - 1183739.53\n", + "2012-11-27 00:00:00: Portfolio Value - 1175632.21\n", + "2012-11-28 00:00:00: Portfolio Value - 1199651.34\n", + "2012-11-29 00:00:00: Portfolio Value - 1191988.08\n", + "2012-11-30 00:00:00: Portfolio Value - 1216080.04\n", + "2012-12-03 00:00:00: Portfolio Value - 1191712.15\n", + "2012-12-04 00:00:00: Portfolio Value - 1166181.26\n", + "2012-12-05 00:00:00: Portfolio Value - 1161449.71\n", + "2012-12-06 00:00:00: Portfolio Value - 1168802.83\n", + "2012-12-07 00:00:00: Portfolio Value - 1167314.86\n", + "2012-12-10 00:00:00: Portfolio Value - 1162132.22\n", + "2012-12-11 00:00:00: Portfolio Value - 1166194.17\n", + "2012-12-12 00:00:00: Portfolio Value - 1161693.74\n", + "2012-12-13 00:00:00: Portfolio Value - 1152640.44\n", + "2012-12-14 00:00:00: Portfolio Value - 1135195.24\n", + "2012-12-17 00:00:00: Portfolio Value - 1175397.94\n", + "2012-12-18 00:00:00: Portfolio Value - 1179788.18\n", + "2012-12-19 00:00:00: Portfolio Value - 1166275.49\n", + "2012-12-20 00:00:00: Portfolio Value - 1164995.63\n", + "2012-12-21 00:00:00: Portfolio Value - 1153491.55\n", + "2012-12-24 00:00:00: Portfolio Value - 1146969.65\n", + "2012-12-26 00:00:00: Portfolio Value - 1125955.39\n", + "2012-12-27 00:00:00: Portfolio Value - 1133861.14\n", + "2012-12-28 00:00:00: Portfolio Value - 1108354.61\n", + "2012-12-31 00:00:00: Portfolio Value - 1145985.35\n", + "2013-01-02 00:00:00: Portfolio Value - 1192116.40\n", + "2013-01-03 00:00:00: Portfolio Value - 1198060.85\n", + "2013-01-04 00:00:00: Portfolio Value - 1217263.48\n", + "2013-01-07 00:00:00: Portfolio Value - 1196900.38\n", + "2013-01-08 00:00:00: Portfolio Value - 1184818.42\n", + "2013-01-09 00:00:00: Portfolio Value - 1198085.01\n", + "2013-01-10 00:00:00: Portfolio Value - 1202262.29\n", + "2013-01-11 00:00:00: Portfolio Value - 1205765.44\n", + "2013-01-14 00:00:00: Portfolio Value - 1205828.74\n", + "2013-01-15 00:00:00: Portfolio Value - 1224821.66\n", + "2013-01-16 00:00:00: Portfolio Value - 1215601.32\n", + "2013-01-17 00:00:00: Portfolio Value - 1221428.86\n", + "2013-01-18 00:00:00: Portfolio Value - 1233580.18\n", + "2013-01-22 00:00:00: Portfolio Value - 1242682.66\n", + "2013-01-23 00:00:00: Portfolio Value - 1248209.34\n", + "2013-01-24 00:00:00: Portfolio Value - 1263518.33\n", + "2013-01-25 00:00:00: Portfolio Value - 1292121.26\n", + "2013-01-28 00:00:00: Portfolio Value - 1305278.99\n", + "2013-01-29 00:00:00: Portfolio Value - 1308420.52\n", + "2013-01-30 00:00:00: Portfolio Value - 1315733.71\n", + "2013-01-31 00:00:00: Portfolio Value - 1322718.39\n", + "2013-02-01 00:00:00: Portfolio Value - 1354907.02\n", + "2013-02-04 00:00:00: Portfolio Value - 1321840.36\n", + "2013-02-05 00:00:00: Portfolio Value - 1354606.95\n", + "2013-02-06 00:00:00: Portfolio Value - 1362554.44\n", + "2013-02-07 00:00:00: Portfolio Value - 1385397.61\n", + "2013-02-08 00:00:00: Portfolio Value - 1400998.86\n", + "2013-02-11 00:00:00: Portfolio Value - 1391413.16\n", + "2013-02-12 00:00:00: Portfolio Value - 1382530.87\n", + "2013-02-13 00:00:00: Portfolio Value - 1383055.54\n", + "2013-02-14 00:00:00: Portfolio Value - 1362985.13\n", + "2013-02-15 00:00:00: Portfolio Value - 1375712.66\n", + "2013-02-19 00:00:00: Portfolio Value - 1397072.71\n", + "2013-02-20 00:00:00: Portfolio Value - 1398143.20\n", + "2013-02-21 00:00:00: Portfolio Value - 1389169.04\n", + "2013-02-22 00:00:00: Portfolio Value - 1436282.02\n", + "2013-02-25 00:00:00: Portfolio Value - 1404307.67\n", + "2013-02-26 00:00:00: Portfolio Value - 1415529.48\n", + "2013-02-27 00:00:00: Portfolio Value - 1446058.00\n", + "2013-02-28 00:00:00: Portfolio Value - 1452361.58\n", + "2013-03-01 00:00:00: Portfolio Value - 1454881.75\n", + "2013-03-04 00:00:00: Portfolio Value - 1477628.39\n", + "2013-03-05 00:00:00: Portfolio Value - 1499762.12\n", + "2013-03-06 00:00:00: Portfolio Value - 1480281.54\n", + "2013-03-07 00:00:00: Portfolio Value - 1486107.13\n", + "2013-03-08 00:00:00: Portfolio Value - 1506542.94\n", + "2013-03-11 00:00:00: Portfolio Value - 1513579.72\n", + "2013-03-12 00:00:00: Portfolio Value - 1518762.35\n", + "2013-03-13 00:00:00: Portfolio Value - 1526681.13\n", + "2013-03-14 00:00:00: Portfolio Value - 1528195.65\n", + "2013-03-15 00:00:00: Portfolio Value - 1527829.63\n", + "2013-03-18 00:00:00: Portfolio Value - 1537739.76\n", + "2013-03-19 00:00:00: Portfolio Value - 1547766.63\n", + "2013-03-20 00:00:00: Portfolio Value - 1588829.82\n", + "2013-03-21 00:00:00: Portfolio Value - 1571918.43\n", + "2013-03-22 00:00:00: Portfolio Value - 1599469.95\n", + "2013-03-25 00:00:00: Portfolio Value - 1590938.45\n", + "2013-03-26 00:00:00: Portfolio Value - 1615635.37\n", + "2013-03-27 00:00:00: Portfolio Value - 1625285.66\n", + "2013-03-28 00:00:00: Portfolio Value - 1651456.63\n", + "2013-04-01 00:00:00: Portfolio Value - 1638918.34\n", + "2013-04-02 00:00:00: Portfolio Value - 1666767.02\n", + "2013-04-03 00:00:00: Portfolio Value - 1630207.77\n", + "2013-04-04 00:00:00: Portfolio Value - 1657805.13\n", + "2013-04-05 00:00:00: Portfolio Value - 1641906.86\n", + "2013-04-08 00:00:00: Portfolio Value - 1644174.80\n", + "2013-04-09 00:00:00: Portfolio Value - 1609481.39\n", + "2013-04-10 00:00:00: Portfolio Value - 1637789.62\n", + "2013-04-11 00:00:00: Portfolio Value - 1656386.59\n", + "2013-04-12 00:00:00: Portfolio Value - 1654165.80\n", + "2013-04-15 00:00:00: Portfolio Value - 1595783.16\n", + "2013-04-16 00:00:00: Portfolio Value - 1625534.25\n", + "2013-04-17 00:00:00: Portfolio Value - 1601577.63\n", + "2013-04-18 00:00:00: Portfolio Value - 1590591.65\n", + "2013-04-19 00:00:00: Portfolio Value - 1615901.94\n", + "2013-04-22 00:00:00: Portfolio Value - 1620314.86\n", + "2013-04-23 00:00:00: Portfolio Value - 1647481.65\n", + "2013-04-24 00:00:00: Portfolio Value - 1626044.59\n", + "2013-04-25 00:00:00: Portfolio Value - 1659178.55\n", + "2013-04-26 00:00:00: Portfolio Value - 1668334.53\n", + "2013-04-29 00:00:00: Portfolio Value - 1673830.05\n", + "2013-04-30 00:00:00: Portfolio Value - 1684620.22\n", + "2013-05-01 00:00:00: Portfolio Value - 1662892.00\n", + "2013-05-02 00:00:00: Portfolio Value - 1679029.23\n", + "2013-05-03 00:00:00: Portfolio Value - 1689821.24\n", + "2013-05-06 00:00:00: Portfolio Value - 1679960.76\n", + "2013-05-07 00:00:00: Portfolio Value - 1720240.18\n", + "2013-05-08 00:00:00: Portfolio Value - 1733173.18\n", + "2013-05-09 00:00:00: Portfolio Value - 1713036.56\n", + "2013-05-10 00:00:00: Portfolio Value - 1729505.53\n", + "2013-05-13 00:00:00: Portfolio Value - 1722343.29\n", + "2013-05-14 00:00:00: Portfolio Value - 1755238.49\n", + "2013-05-15 00:00:00: Portfolio Value - 1778309.42\n", + "2013-05-16 00:00:00: Portfolio Value - 1750105.58\n", + "2013-05-17 00:00:00: Portfolio Value - 1749017.86\n", + "2013-05-20 00:00:00: Portfolio Value - 1723382.17\n", + "2013-05-21 00:00:00: Portfolio Value - 1764275.55\n", + "2013-05-22 00:00:00: Portfolio Value - 1723495.93\n", + "2013-05-23 00:00:00: Portfolio Value - 1726493.07\n", + "2013-05-24 00:00:00: Portfolio Value - 1723153.61\n", + "2013-05-28 00:00:00: Portfolio Value - 1739035.68\n", + "2013-05-29 00:00:00: Portfolio Value - 1691140.26\n", + "2013-05-30 00:00:00: Portfolio Value - 1697774.86\n", + "2013-05-31 00:00:00: Portfolio Value - 1643138.88\n", + "2013-06-03 00:00:00: Portfolio Value - 1658020.46\n", + "2013-06-04 00:00:00: Portfolio Value - 1655504.91\n", + "2013-06-05 00:00:00: Portfolio Value - 1623484.75\n", + "2013-06-06 00:00:00: Portfolio Value - 1652952.01\n", + "2013-06-07 00:00:00: Portfolio Value - 1674601.19\n", + "2013-06-10 00:00:00: Portfolio Value - 1676956.92\n", + "2013-06-11 00:00:00: Portfolio Value - 1666977.72\n", + "2013-06-12 00:00:00: Portfolio Value - 1651248.69\n", + "2013-06-13 00:00:00: Portfolio Value - 1685713.82\n", + "2013-06-14 00:00:00: Portfolio Value - 1705431.37\n", + "2013-06-17 00:00:00: Portfolio Value - 1741322.69\n", + "2013-06-18 00:00:00: Portfolio Value - 1751224.03\n", + "2013-06-19 00:00:00: Portfolio Value - 1698670.10\n", + "2013-06-20 00:00:00: Portfolio Value - 1624457.69\n", + "2013-06-21 00:00:00: Portfolio Value - 1654415.76\n", + "2013-06-24 00:00:00: Portfolio Value - 1658369.80\n", + "2013-06-25 00:00:00: Portfolio Value - 1674718.05\n", + "2013-06-26 00:00:00: Portfolio Value - 1682130.17\n", + "2013-06-27 00:00:00: Portfolio Value - 1715648.72\n", + "2013-06-28 00:00:00: Portfolio Value - 1716068.94\n", + "2013-07-01 00:00:00: Portfolio Value - 1728111.13\n", + "2013-07-02 00:00:00: Portfolio Value - 1722879.21\n", + "2013-07-03 00:00:00: Portfolio Value - 1728405.34\n", + "2013-07-05 00:00:00: Portfolio Value - 1753506.39\n", + "2013-07-08 00:00:00: Portfolio Value - 1786438.25\n", + "2013-07-09 00:00:00: Portfolio Value - 1784399.87\n", + "2013-07-10 00:00:00: Portfolio Value - 1788999.04\n", + "2013-07-11 00:00:00: Portfolio Value - 1832113.75\n", + "2013-07-12 00:00:00: Portfolio Value - 1838324.93\n", + "2013-07-15 00:00:00: Portfolio Value - 1838711.43\n", + "2013-07-16 00:00:00: Portfolio Value - 1821448.22\n", + "2013-07-17 00:00:00: Portfolio Value - 1810976.48\n", + "2013-07-18 00:00:00: Portfolio Value - 1817622.70\n", + "2013-07-19 00:00:00: Portfolio Value - 1840299.18\n", + "2013-07-22 00:00:00: Portfolio Value - 1842476.43\n", + "2013-07-23 00:00:00: Portfolio Value - 1840671.15\n", + "2013-07-24 00:00:00: Portfolio Value - 1829117.62\n", + "2013-07-25 00:00:00: Portfolio Value - 1851635.70\n", + "2013-07-26 00:00:00: Portfolio Value - 1856550.41\n", + "2013-07-29 00:00:00: Portfolio Value - 1854528.38\n", + "2013-07-30 00:00:00: Portfolio Value - 1857286.05\n", + "2013-07-31 00:00:00: Portfolio Value - 1874690.38\n", + "2013-08-01 00:00:00: Portfolio Value - 1892956.11\n", + "2013-08-02 00:00:00: Portfolio Value - 1906515.20\n", + "2013-08-05 00:00:00: Portfolio Value - 1890001.76\n", + "2013-08-06 00:00:00: Portfolio Value - 1880914.46\n", + "2013-08-07 00:00:00: Portfolio Value - 1866216.55\n", + "2013-08-08 00:00:00: Portfolio Value - 1860044.29\n", + "2013-08-09 00:00:00: Portfolio Value - 1856735.90\n", + "2013-08-12 00:00:00: Portfolio Value - 1844378.88\n", + "2013-08-13 00:00:00: Portfolio Value - 1869046.33\n", + "2013-08-14 00:00:00: Portfolio Value - 1832558.25\n", + "2013-08-15 00:00:00: Portfolio Value - 1783355.30\n", + "2013-08-16 00:00:00: Portfolio Value - 1770230.74\n", + "2013-08-19 00:00:00: Portfolio Value - 1778163.60\n", + "2013-08-20 00:00:00: Portfolio Value - 1798776.05\n", + "2013-08-21 00:00:00: Portfolio Value - 1765404.18\n", + "2013-08-22 00:00:00: Portfolio Value - 1785285.29\n", + "2013-08-23 00:00:00: Portfolio Value - 1794241.45\n", + "2013-08-26 00:00:00: Portfolio Value - 1771072.28\n", + "2013-08-27 00:00:00: Portfolio Value - 1744221.73\n", + "2013-08-28 00:00:00: Portfolio Value - 1734914.56\n", + "2013-08-29 00:00:00: Portfolio Value - 1746248.86\n", + "2013-08-30 00:00:00: Portfolio Value - 1739735.90\n", + "2013-09-03 00:00:00: Portfolio Value - 1738465.47\n", + "2013-09-04 00:00:00: Portfolio Value - 1753154.56\n", + "2013-09-05 00:00:00: Portfolio Value - 1749877.47\n", + "2013-09-06 00:00:00: Portfolio Value - 1746231.76\n", + "2013-09-09 00:00:00: Portfolio Value - 1765003.34\n", + "2013-09-10 00:00:00: Portfolio Value - 1794215.12\n", + "2013-09-11 00:00:00: Portfolio Value - 1812325.49\n", + "2013-09-12 00:00:00: Portfolio Value - 1799527.67\n", + "2013-09-13 00:00:00: Portfolio Value - 1790618.57\n", + "2013-09-16 00:00:00: Portfolio Value - 1804456.50\n", + "2013-09-17 00:00:00: Portfolio Value - 1823772.95\n", + "2013-09-18 00:00:00: Portfolio Value - 1855419.18\n", + "2013-09-19 00:00:00: Portfolio Value - 1863522.89\n", + "2013-09-20 00:00:00: Portfolio Value - 1846022.45\n", + "2013-09-23 00:00:00: Portfolio Value - 1845960.61\n", + "2013-09-24 00:00:00: Portfolio Value - 1827334.61\n", + "2013-09-25 00:00:00: Portfolio Value - 1837354.98\n", + "2013-09-26 00:00:00: Portfolio Value - 1839813.94\n", + "2013-09-27 00:00:00: Portfolio Value - 1819817.74\n", + "2013-09-30 00:00:00: Portfolio Value - 1815716.50\n", + "2013-10-01 00:00:00: Portfolio Value - 1839688.19\n", + "2013-10-02 00:00:00: Portfolio Value - 1825205.69\n", + "2013-10-03 00:00:00: Portfolio Value - 1785053.96\n", + "2013-10-04 00:00:00: Portfolio Value - 1804495.88\n", + "2013-10-07 00:00:00: Portfolio Value - 1787470.94\n", + "2013-10-08 00:00:00: Portfolio Value - 1767854.50\n", + "2013-10-09 00:00:00: Portfolio Value - 1777805.97\n", + "2013-10-10 00:00:00: Portfolio Value - 1840511.45\n", + "2013-10-11 00:00:00: Portfolio Value - 1871310.95\n", + "2013-10-14 00:00:00: Portfolio Value - 1880740.54\n", + "2013-10-15 00:00:00: Portfolio Value - 1848382.04\n", + "2013-10-16 00:00:00: Portfolio Value - 1892066.23\n", + "2013-10-17 00:00:00: Portfolio Value - 1929442.05\n", + "2013-10-18 00:00:00: Portfolio Value - 1936743.31\n", + "2013-10-21 00:00:00: Portfolio Value - 1941472.84\n", + "2013-10-22 00:00:00: Portfolio Value - 1971742.38\n", + "2013-10-23 00:00:00: Portfolio Value - 1960854.59\n", + "2013-10-24 00:00:00: Portfolio Value - 1960686.85\n", + "2013-10-25 00:00:00: Portfolio Value - 1972948.31\n", + "2013-10-28 00:00:00: Portfolio Value - 1984806.33\n", + "2013-10-29 00:00:00: Portfolio Value - 2003088.77\n", + "2013-10-30 00:00:00: Portfolio Value - 1983405.41\n", + "2013-10-31 00:00:00: Portfolio Value - 1992904.95\n", + "2013-11-01 00:00:00: Portfolio Value - 1996524.54\n", + "2013-11-04 00:00:00: Portfolio Value - 2006410.16\n", + "2013-11-05 00:00:00: Portfolio Value - 1984627.41\n", + "2013-11-06 00:00:00: Portfolio Value - 2010106.55\n", + "2013-11-07 00:00:00: Portfolio Value - 1978142.86\n", + "2013-11-08 00:00:00: Portfolio Value - 2007148.69\n", + "2013-11-11 00:00:00: Portfolio Value - 2001479.77\n", + "2013-11-12 00:00:00: Portfolio Value - 2011344.63\n", + "2013-11-13 00:00:00: Portfolio Value - 2043145.31\n", + "2013-11-14 00:00:00: Portfolio Value - 2052678.41\n", + "2013-11-15 00:00:00: Portfolio Value - 2072861.46\n", + "2013-11-18 00:00:00: Portfolio Value - 2052890.34\n", + "2013-11-19 00:00:00: Portfolio Value - 2065847.90\n", + "2013-11-20 00:00:00: Portfolio Value - 2049624.41\n", + "2013-11-21 00:00:00: Portfolio Value - 2083436.51\n", + "2013-11-22 00:00:00: Portfolio Value - 2102461.09\n", + "2013-11-25 00:00:00: Portfolio Value - 2089416.05\n", + "2013-11-26 00:00:00: Portfolio Value - 2066774.38\n", + "2013-11-27 00:00:00: Portfolio Value - 2069923.39\n", + "2013-11-29 00:00:00: Portfolio Value - 2073896.11\n", + "2013-12-02 00:00:00: Portfolio Value - 2049093.05\n", + "2013-12-03 00:00:00: Portfolio Value - 2039639.68\n", + "2013-12-04 00:00:00: Portfolio Value - 2013238.55\n", + "2013-12-05 00:00:00: Portfolio Value - 2007441.90\n", + "2013-12-06 00:00:00: Portfolio Value - 2060583.86\n", + "2013-12-09 00:00:00: Portfolio Value - 2049820.95\n", + "2013-12-10 00:00:00: Portfolio Value - 2053287.86\n", + "2013-12-11 00:00:00: Portfolio Value - 2019928.17\n", + "2013-12-12 00:00:00: Portfolio Value - 1998066.72\n", + "2013-12-13 00:00:00: Portfolio Value - 2002027.87\n", + "2013-12-16 00:00:00: Portfolio Value - 2001450.55\n", + "2013-12-17 00:00:00: Portfolio Value - 1985955.57\n", + "2013-12-18 00:00:00: Portfolio Value - 2041674.95\n", + "2013-12-19 00:00:00: Portfolio Value - 2031259.70\n", + "2013-12-20 00:00:00: Portfolio Value - 2061985.10\n", + "2013-12-23 00:00:00: Portfolio Value - 2061847.57\n", + "2013-12-24 00:00:00: Portfolio Value - 2076388.05\n", + "2013-12-26 00:00:00: Portfolio Value - 2078225.95\n", + "2013-12-27 00:00:00: Portfolio Value - 2089585.70\n", + "2013-12-30 00:00:00: Portfolio Value - 2093379.93\n", + "2013-12-31 00:00:00: Portfolio Value - 2094324.27\n", + "2014-01-02 00:00:00: Portfolio Value - 2040708.69\n", + "2014-01-03 00:00:00: Portfolio Value - 2042606.43\n", + "2014-01-06 00:00:00: Portfolio Value - 2049269.69\n", + "2014-01-07 00:00:00: Portfolio Value - 2076609.72\n", + "2014-01-08 00:00:00: Portfolio Value - 2061028.58\n", + "2014-01-09 00:00:00: Portfolio Value - 2086230.75\n", + "2014-01-10 00:00:00: Portfolio Value - 2085427.84\n", + "2014-01-13 00:00:00: Portfolio Value - 2055570.37\n", + "2014-01-14 00:00:00: Portfolio Value - 2083883.08\n", + "2014-01-15 00:00:00: Portfolio Value - 2096960.87\n", + "2014-01-16 00:00:00: Portfolio Value - 2098424.28\n", + "2014-01-17 00:00:00: Portfolio Value - 2108789.62\n", + "2014-01-21 00:00:00: Portfolio Value - 2108765.78\n", + "2014-01-22 00:00:00: Portfolio Value - 2113984.51\n", + "2014-01-23 00:00:00: Portfolio Value - 2081229.03\n", + "2014-01-24 00:00:00: Portfolio Value - 2042775.51\n", + "2014-01-27 00:00:00: Portfolio Value - 2068469.38\n", + "2014-01-28 00:00:00: Portfolio Value - 2078146.43\n", + "2014-01-29 00:00:00: Portfolio Value - 2032897.61\n", + "2014-01-30 00:00:00: Portfolio Value - 2060922.91\n", + "2014-01-31 00:00:00: Portfolio Value - 2040229.43\n", + "2014-02-03 00:00:00: Portfolio Value - 1957658.99\n", + "2014-02-04 00:00:00: Portfolio Value - 1963727.71\n", + "2014-02-05 00:00:00: Portfolio Value - 1964736.73\n", + "2014-02-06 00:00:00: Portfolio Value - 1996588.96\n", + "2014-02-07 00:00:00: Portfolio Value - 2051915.87\n", + "2014-02-10 00:00:00: Portfolio Value - 2052687.39\n", + "2014-02-11 00:00:00: Portfolio Value - 2092849.23\n", + "2014-02-12 00:00:00: Portfolio Value - 2099174.40\n", + "2014-02-13 00:00:00: Portfolio Value - 2106036.90\n", + "2014-02-14 00:00:00: Portfolio Value - 2115789.88\n", + "2014-02-18 00:00:00: Portfolio Value - 2125314.80\n", + "2014-02-19 00:00:00: Portfolio Value - 2116139.87\n", + "2014-02-20 00:00:00: Portfolio Value - 2140250.68\n", + "2014-02-21 00:00:00: Portfolio Value - 2114237.48\n", + "2014-02-24 00:00:00: Portfolio Value - 2097420.07\n", + "2014-02-25 00:00:00: Portfolio Value - 2078645.85\n", + "2014-02-26 00:00:00: Portfolio Value - 2068704.59\n", + "2014-02-27 00:00:00: Portfolio Value - 2083578.11\n", + "2014-02-28 00:00:00: Portfolio Value - 2106823.44\n", + "2014-03-03 00:00:00: Portfolio Value - 2084003.61\n", + "2014-03-04 00:00:00: Portfolio Value - 2117018.53\n", + "2014-03-05 00:00:00: Portfolio Value - 2114877.83\n", + "2014-03-06 00:00:00: Portfolio Value - 2109348.39\n", + "2014-03-07 00:00:00: Portfolio Value - 2123227.76\n", + "2014-03-10 00:00:00: Portfolio Value - 2132385.80\n", + "2014-03-11 00:00:00: Portfolio Value - 2126263.29\n", + "2014-03-12 00:00:00: Portfolio Value - 2130339.98\n", + "2014-03-13 00:00:00: Portfolio Value - 2099101.02\n", + "2014-03-14 00:00:00: Portfolio Value - 2109648.42\n", + "2014-03-17 00:00:00: Portfolio Value - 2138935.41\n", + "2014-03-18 00:00:00: Portfolio Value - 2143377.14\n", + "2014-03-19 00:00:00: Portfolio Value - 2103077.86\n", + "2014-03-20 00:00:00: Portfolio Value - 2101963.52\n", + "2014-03-21 00:00:00: Portfolio Value - 2115093.39\n", + "2014-03-24 00:00:00: Portfolio Value - 2094361.65\n", + "2014-03-25 00:00:00: Portfolio Value - 2105093.38\n", + "2014-03-26 00:00:00: Portfolio Value - 2084802.19\n", + "2014-03-27 00:00:00: Portfolio Value - 2080529.17\n", + "2014-03-28 00:00:00: Portfolio Value - 2083412.40\n", + "2014-03-31 00:00:00: Portfolio Value - 2134584.21\n", + "2014-04-01 00:00:00: Portfolio Value - 2132303.29\n", + "2014-04-02 00:00:00: Portfolio Value - 2131274.66\n", + "2014-04-03 00:00:00: Portfolio Value - 2141742.16\n", + "2014-04-04 00:00:00: Portfolio Value - 2102592.83\n", + "2014-04-07 00:00:00: Portfolio Value - 2074133.91\n", + "2014-04-08 00:00:00: Portfolio Value - 2106689.19\n", + "2014-04-09 00:00:00: Portfolio Value - 2119648.26\n", + "2014-04-10 00:00:00: Portfolio Value - 2063999.06\n", + "2014-04-11 00:00:00: Portfolio Value - 2042541.40\n", + "2014-04-14 00:00:00: Portfolio Value - 2077802.60\n", + "2014-04-15 00:00:00: Portfolio Value - 2103811.83\n", + "2014-04-16 00:00:00: Portfolio Value - 2121260.10\n", + "2014-04-17 00:00:00: Portfolio Value - 2117865.97\n", + "2014-04-21 00:00:00: Portfolio Value - 2131709.95\n", + "2014-04-22 00:00:00: Portfolio Value - 2127451.84\n", + "2014-04-23 00:00:00: Portfolio Value - 2144778.53\n", + "2014-04-24 00:00:00: Portfolio Value - 2144076.15\n", + "2014-04-25 00:00:00: Portfolio Value - 2153000.43\n", + "2014-04-28 00:00:00: Portfolio Value - 2221142.90\n", + "2014-04-29 00:00:00: Portfolio Value - 2200039.73\n", + "2014-04-30 00:00:00: Portfolio Value - 2204260.48\n", + "2014-05-01 00:00:00: Portfolio Value - 2192134.55\n", + "2014-05-02 00:00:00: Portfolio Value - 2182389.26\n", + "2014-05-05 00:00:00: Portfolio Value - 2186569.93\n", + "2014-05-06 00:00:00: Portfolio Value - 2170325.51\n", + "2014-05-07 00:00:00: Portfolio Value - 2210648.88\n", + "2014-05-08 00:00:00: Portfolio Value - 2227850.97\n", + "2014-05-09 00:00:00: Portfolio Value - 2250192.80\n", + "2014-05-12 00:00:00: Portfolio Value - 2261347.11\n", + "2014-05-13 00:00:00: Portfolio Value - 2244442.44\n", + "2014-05-14 00:00:00: Portfolio Value - 2224799.11\n", + "2014-05-15 00:00:00: Portfolio Value - 2201115.30\n", + "2014-05-16 00:00:00: Portfolio Value - 2222156.80\n", + "2014-05-19 00:00:00: Portfolio Value - 2229782.60\n", + "2014-05-20 00:00:00: Portfolio Value - 2216020.13\n", + "2014-05-21 00:00:00: Portfolio Value - 2231264.98\n", + "2014-05-22 00:00:00: Portfolio Value - 2245984.00\n", + "2014-05-23 00:00:00: Portfolio Value - 2252548.66\n", + "2014-05-27 00:00:00: Portfolio Value - 2216391.55\n", + "2014-05-28 00:00:00: Portfolio Value - 2235064.40\n", + "2014-05-29 00:00:00: Portfolio Value - 2231878.39\n", + "2014-05-30 00:00:00: Portfolio Value - 2256437.35\n", + "2014-06-02 00:00:00: Portfolio Value - 2254251.36\n", + "2014-06-03 00:00:00: Portfolio Value - 2241537.38\n", + "2014-06-04 00:00:00: Portfolio Value - 2284997.97\n", + "2014-06-05 00:00:00: Portfolio Value - 2291667.09\n", + "2014-06-06 00:00:00: Portfolio Value - 2305968.48\n", + "2014-06-09 00:00:00: Portfolio Value - 2296191.92\n", + "2014-06-10 00:00:00: Portfolio Value - 2293076.97\n", + "2014-06-11 00:00:00: Portfolio Value - 2267582.13\n", + "2014-06-12 00:00:00: Portfolio Value - 2246668.05\n", + "2014-06-13 00:00:00: Portfolio Value - 2246877.11\n", + "2014-06-16 00:00:00: Portfolio Value - 2253281.67\n", + "2014-06-17 00:00:00: Portfolio Value - 2260101.32\n", + "2014-06-18 00:00:00: Portfolio Value - 2286463.52\n", + "2014-06-19 00:00:00: Portfolio Value - 2307327.98\n", + "2014-06-20 00:00:00: Portfolio Value - 2318213.60\n", + "2014-06-23 00:00:00: Portfolio Value - 2318673.61\n", + "2014-06-24 00:00:00: Portfolio Value - 2309421.84\n", + "2014-06-25 00:00:00: Portfolio Value - 2316309.22\n", + "2014-06-26 00:00:00: Portfolio Value - 2310470.21\n", + "2014-06-27 00:00:00: Portfolio Value - 2331728.48\n", + "2014-06-30 00:00:00: Portfolio Value - 2336097.56\n", + "2014-07-01 00:00:00: Portfolio Value - 2357230.29\n", + "2014-07-02 00:00:00: Portfolio Value - 2345382.74\n", + "2014-07-03 00:00:00: Portfolio Value - 2355038.00\n", + "2014-07-07 00:00:00: Portfolio Value - 2344267.54\n", + "2014-07-08 00:00:00: Portfolio Value - 2340142.04\n", + "2014-07-09 00:00:00: Portfolio Value - 2361934.99\n", + "2014-07-10 00:00:00: Portfolio Value - 2349522.14\n", + "2014-07-11 00:00:00: Portfolio Value - 2343765.45\n", + "2014-07-14 00:00:00: Portfolio Value - 2347054.34\n", + "2014-07-15 00:00:00: Portfolio Value - 2341930.27\n", + "2014-07-16 00:00:00: Portfolio Value - 2336266.19\n", + "2014-07-17 00:00:00: Portfolio Value - 2306242.12\n", + "2014-07-18 00:00:00: Portfolio Value - 2326346.77\n", + "2014-07-21 00:00:00: Portfolio Value - 2301462.29\n", + "2014-07-22 00:00:00: Portfolio Value - 2296202.04\n", + "2014-07-23 00:00:00: Portfolio Value - 2292768.78\n", + "2014-07-24 00:00:00: Portfolio Value - 2326666.18\n", + "2014-07-25 00:00:00: Portfolio Value - 2297917.39\n", + "2014-07-28 00:00:00: Portfolio Value - 2286111.18\n", + "2014-07-29 00:00:00: Portfolio Value - 2260749.82\n", + "2014-07-30 00:00:00: Portfolio Value - 2255601.19\n", + "2014-07-31 00:00:00: Portfolio Value - 2190046.80\n", + "2014-08-01 00:00:00: Portfolio Value - 2186968.09\n", + "2014-08-04 00:00:00: Portfolio Value - 2202822.65\n", + "2014-08-05 00:00:00: Portfolio Value - 2180111.66\n", + "2014-08-06 00:00:00: Portfolio Value - 2191236.32\n", + "2014-08-07 00:00:00: Portfolio Value - 2172626.53\n", + "2014-08-08 00:00:00: Portfolio Value - 2217840.67\n", + "2014-08-11 00:00:00: Portfolio Value - 2227934.47\n", + "2014-08-12 00:00:00: Portfolio Value - 2225674.00\n", + "2014-08-13 00:00:00: Portfolio Value - 2241273.47\n", + "2014-08-14 00:00:00: Portfolio Value - 2267886.18\n", + "2014-08-15 00:00:00: Portfolio Value - 2257131.69\n", + "2014-08-18 00:00:00: Portfolio Value - 2283412.87\n", + "2014-08-19 00:00:00: Portfolio Value - 2297227.01\n", + "2014-08-20 00:00:00: Portfolio Value - 2298549.91\n", + "2014-08-21 00:00:00: Portfolio Value - 2321045.47\n", + "2014-08-22 00:00:00: Portfolio Value - 2308801.13\n", + "2014-08-25 00:00:00: Portfolio Value - 2313018.04\n", + "2014-08-26 00:00:00: Portfolio Value - 2299862.22\n", + "2014-08-27 00:00:00: Portfolio Value - 2313998.52\n", + "2014-08-28 00:00:00: Portfolio Value - 2313631.64\n", + "2014-08-29 00:00:00: Portfolio Value - 2326033.71\n", + "2014-09-02 00:00:00: Portfolio Value - 2326375.10\n", + "2014-09-03 00:00:00: Portfolio Value - 2328489.03\n", + "2014-09-04 00:00:00: Portfolio Value - 2329614.78\n", + "2014-09-05 00:00:00: Portfolio Value - 2351388.87\n", + "2014-09-08 00:00:00: Portfolio Value - 2344835.79\n", + "2014-09-09 00:00:00: Portfolio Value - 2312869.43\n", + "2014-09-10 00:00:00: Portfolio Value - 2319104.87\n", + "2014-09-11 00:00:00: Portfolio Value - 2332762.34\n", + "2014-09-12 00:00:00: Portfolio Value - 2304545.36\n", + "2014-09-15 00:00:00: Portfolio Value - 2312689.71\n", + "2014-09-16 00:00:00: Portfolio Value - 2343798.45\n", + "2014-09-17 00:00:00: Portfolio Value - 2328102.88\n", + "2014-09-18 00:00:00: Portfolio Value - 2326368.14\n", + "2014-09-19 00:00:00: Portfolio Value - 2318402.89\n", + "2014-09-22 00:00:00: Portfolio Value - 2279265.01\n", + "2014-09-23 00:00:00: Portfolio Value - 2246726.64\n", + "2014-09-24 00:00:00: Portfolio Value - 2269406.68\n", + "2014-09-25 00:00:00: Portfolio Value - 2234971.09\n", + "2014-09-26 00:00:00: Portfolio Value - 2251438.57\n", + "2014-09-29 00:00:00: Portfolio Value - 2253668.15\n", + "2014-09-30 00:00:00: Portfolio Value - 2239991.50\n", + "2014-10-01 00:00:00: Portfolio Value - 2217540.86\n", + "2014-10-02 00:00:00: Portfolio Value - 2238109.48\n", + "2014-10-03 00:00:00: Portfolio Value - 2284615.37\n", + "2014-10-06 00:00:00: Portfolio Value - 2287803.33\n", + "2014-10-07 00:00:00: Portfolio Value - 2269010.76\n", + "2014-10-08 00:00:00: Portfolio Value - 2337582.07\n", + "2014-10-09 00:00:00: Portfolio Value - 2285019.84\n", + "2014-10-10 00:00:00: Portfolio Value - 2285147.07\n", + "2014-10-13 00:00:00: Portfolio Value - 2237680.58\n", + "2014-10-14 00:00:00: Portfolio Value - 2254012.07\n", + "2014-10-15 00:00:00: Portfolio Value - 2236094.70\n", + "2014-10-16 00:00:00: Portfolio Value - 2189172.89\n", + "2014-10-17 00:00:00: Portfolio Value - 2218527.02\n", + "2014-10-20 00:00:00: Portfolio Value - 2274835.74\n", + "2014-10-21 00:00:00: Portfolio Value - 2336123.69\n", + "2014-10-22 00:00:00: Portfolio Value - 2326737.13\n", + "2014-10-23 00:00:00: Portfolio Value - 2372322.89\n", + "2014-10-24 00:00:00: Portfolio Value - 2421914.99\n", + "2014-10-27 00:00:00: Portfolio Value - 2433407.45\n", + "2014-10-28 00:00:00: Portfolio Value - 2477015.18\n", + "2014-10-29 00:00:00: Portfolio Value - 2468626.18\n", + "2014-10-30 00:00:00: Portfolio Value - 2502967.67\n", + "2014-10-31 00:00:00: Portfolio Value - 2529643.52\n", + "2014-11-03 00:00:00: Portfolio Value - 2524781.25\n", + "2014-11-04 00:00:00: Portfolio Value - 2554814.80\n", + "2014-11-05 00:00:00: Portfolio Value - 2582309.71\n", + "2014-11-06 00:00:00: Portfolio Value - 2589838.54\n", + "2014-11-07 00:00:00: Portfolio Value - 2583492.20\n", + "2014-11-10 00:00:00: Portfolio Value - 2581500.73\n", + "2014-11-11 00:00:00: Portfolio Value - 2578145.47\n", + "2014-11-12 00:00:00: Portfolio Value - 2576405.59\n", + "2014-11-13 00:00:00: Portfolio Value - 2596956.11\n", + "2014-11-14 00:00:00: Portfolio Value - 2574338.68\n", + "2014-11-17 00:00:00: Portfolio Value - 2589480.30\n", + "2014-11-18 00:00:00: Portfolio Value - 2598805.43\n", + "2014-11-19 00:00:00: Portfolio Value - 2602124.41\n", + "2014-11-20 00:00:00: Portfolio Value - 2602694.83\n", + "2014-11-21 00:00:00: Portfolio Value - 2612579.32\n", + "2014-11-24 00:00:00: Portfolio Value - 2626541.21\n", + "2014-11-25 00:00:00: Portfolio Value - 2629874.82\n", + "2014-11-26 00:00:00: Portfolio Value - 2652031.61\n", + "2014-11-28 00:00:00: Portfolio Value - 2704370.13\n", + "2014-12-01 00:00:00: Portfolio Value - 2694156.92\n", + "2014-12-02 00:00:00: Portfolio Value - 2732383.56\n", + "2014-12-03 00:00:00: Portfolio Value - 2744872.93\n", + "2014-12-04 00:00:00: Portfolio Value - 2744917.84\n", + "2014-12-05 00:00:00: Portfolio Value - 2740508.41\n", + "2014-12-08 00:00:00: Portfolio Value - 2731807.33\n", + "2014-12-09 00:00:00: Portfolio Value - 2766699.61\n", + "2014-12-10 00:00:00: Portfolio Value - 2717849.89\n", + "2014-12-11 00:00:00: Portfolio Value - 2751483.85\n", + "2014-12-12 00:00:00: Portfolio Value - 2724430.04\n", + "2014-12-15 00:00:00: Portfolio Value - 2713834.17\n", + "2014-12-16 00:00:00: Portfolio Value - 2691204.45\n", + "2014-12-17 00:00:00: Portfolio Value - 2748080.70\n", + "2014-12-18 00:00:00: Portfolio Value - 2821887.35\n", + "2014-12-19 00:00:00: Portfolio Value - 2826605.05\n", + "2014-12-22 00:00:00: Portfolio Value - 2850164.24\n", + "2014-12-23 00:00:00: Portfolio Value - 2878651.66\n", + "2014-12-24 00:00:00: Portfolio Value - 2876683.67\n", + "2014-12-26 00:00:00: Portfolio Value - 2884710.69\n", + "2014-12-29 00:00:00: Portfolio Value - 2894170.23\n", + "2014-12-30 00:00:00: Portfolio Value - 2881076.33\n", + "2014-12-31 00:00:00: Portfolio Value - 2827602.95\n", + "2015-01-02 00:00:00: Portfolio Value - 2816337.26\n", + "2015-01-05 00:00:00: Portfolio Value - 2773022.70\n", + "2015-01-06 00:00:00: Portfolio Value - 2775129.26\n", + "2015-01-07 00:00:00: Portfolio Value - 2808640.63\n", + "2015-01-08 00:00:00: Portfolio Value - 2875998.92\n", + "2015-01-09 00:00:00: Portfolio Value - 2839187.66\n", + "2015-01-12 00:00:00: Portfolio Value - 2814603.65\n", + "2015-01-13 00:00:00: Portfolio Value - 2805872.53\n", + "2015-01-14 00:00:00: Portfolio Value - 2778007.26\n", + "2015-01-15 00:00:00: Portfolio Value - 2769083.73\n", + "2015-01-16 00:00:00: Portfolio Value - 2813115.09\n", + "2015-01-20 00:00:00: Portfolio Value - 2795186.85\n", + "2015-01-21 00:00:00: Portfolio Value - 2796503.86\n", + "2015-01-22 00:00:00: Portfolio Value - 2873880.58\n", + "2015-01-23 00:00:00: Portfolio Value - 2857560.98\n", + "2015-01-26 00:00:00: Portfolio Value - 2875787.06\n", + "2015-01-27 00:00:00: Portfolio Value - 2841795.05\n", + "2015-01-28 00:00:00: Portfolio Value - 2821006.62\n", + "2015-01-29 00:00:00: Portfolio Value - 2855944.05\n", + "2015-01-30 00:00:00: Portfolio Value - 2782854.18\n", + "2015-02-02 00:00:00: Portfolio Value - 2819386.98\n", + "2015-02-03 00:00:00: Portfolio Value - 2883287.91\n", + "2015-02-04 00:00:00: Portfolio Value - 2892183.97\n", + "2015-02-05 00:00:00: Portfolio Value - 2978989.06\n", + "2015-02-06 00:00:00: Portfolio Value - 2941098.31\n", + "2015-02-09 00:00:00: Portfolio Value - 2909759.48\n", + "2015-02-10 00:00:00: Portfolio Value - 2951433.79\n", + "2015-02-11 00:00:00: Portfolio Value - 2966409.11\n", + "2015-02-12 00:00:00: Portfolio Value - 2979983.19\n", + "2015-02-13 00:00:00: Portfolio Value - 2988775.98\n", + "2015-02-17 00:00:00: Portfolio Value - 2975574.85\n", + "2015-02-18 00:00:00: Portfolio Value - 2990257.82\n", + "2015-02-19 00:00:00: Portfolio Value - 2970969.67\n", + "2015-02-20 00:00:00: Portfolio Value - 2999826.02\n", + "2015-02-23 00:00:00: Portfolio Value - 3029250.80\n", + "2015-02-24 00:00:00: Portfolio Value - 3053012.53\n", + "2015-02-25 00:00:00: Portfolio Value - 3062482.54\n", + "2015-02-26 00:00:00: Portfolio Value - 3083166.31\n", + "2015-02-27 00:00:00: Portfolio Value - 3068006.23\n", + "2015-03-02 00:00:00: Portfolio Value - 3107373.45\n", + "2015-03-03 00:00:00: Portfolio Value - 3096984.64\n", + "2015-03-04 00:00:00: Portfolio Value - 3081337.01\n", + "2015-03-05 00:00:00: Portfolio Value - 3088672.22\n", + "2015-03-06 00:00:00: Portfolio Value - 3033220.74\n", + "2015-03-09 00:00:00: Portfolio Value - 3067628.32\n", + "2015-03-10 00:00:00: Portfolio Value - 3001591.13\n", + "2015-03-11 00:00:00: Portfolio Value - 3007700.59\n", + "2015-03-12 00:00:00: Portfolio Value - 3089088.35\n", + "2015-03-13 00:00:00: Portfolio Value - 3071898.75\n", + "2015-03-16 00:00:00: Portfolio Value - 3134399.11\n", + "2015-03-17 00:00:00: Portfolio Value - 3099918.82\n", + "2015-03-18 00:00:00: Portfolio Value - 3143954.46\n", + "2015-03-19 00:00:00: Portfolio Value - 3126016.91\n", + "2015-03-20 00:00:00: Portfolio Value - 3146330.63\n", + "2015-03-23 00:00:00: Portfolio Value - 3176683.18\n", + "2015-03-24 00:00:00: Portfolio Value - 3144664.22\n", + "2015-03-25 00:00:00: Portfolio Value - 3080234.90\n", + "2015-03-26 00:00:00: Portfolio Value - 3070089.88\n", + "2015-03-27 00:00:00: Portfolio Value - 3120907.82\n", + "2015-03-30 00:00:00: Portfolio Value - 3186065.20\n", + "2015-03-31 00:00:00: Portfolio Value - 3169578.95\n", + "2015-04-01 00:00:00: Portfolio Value - 3175040.45\n", + "2015-04-02 00:00:00: Portfolio Value - 3176040.04\n", + "2015-04-06 00:00:00: Portfolio Value - 3216610.45\n", + "2015-04-07 00:00:00: Portfolio Value - 3195732.53\n", + "2015-04-08 00:00:00: Portfolio Value - 3221005.82\n", + "2015-04-09 00:00:00: Portfolio Value - 3215344.01\n", + "2015-04-10 00:00:00: Portfolio Value - 3241760.97\n", + "2015-04-13 00:00:00: Portfolio Value - 3215199.55\n", + "2015-04-14 00:00:00: Portfolio Value - 3215172.69\n", + "2015-04-15 00:00:00: Portfolio Value - 3192845.05\n", + "2015-04-16 00:00:00: Portfolio Value - 3174978.28\n", + "2015-04-17 00:00:00: Portfolio Value - 3115672.66\n", + "2015-04-20 00:00:00: Portfolio Value - 3151489.92\n", + "2015-04-21 00:00:00: Portfolio Value - 3164454.57\n", + "2015-04-22 00:00:00: Portfolio Value - 3165192.56\n", + "2015-04-23 00:00:00: Portfolio Value - 3187340.22\n", + "2015-04-24 00:00:00: Portfolio Value - 3194494.60\n", + "2015-04-27 00:00:00: Portfolio Value - 3143388.41\n", + "2015-04-28 00:00:00: Portfolio Value - 3151358.20\n", + "2015-04-29 00:00:00: Portfolio Value - 3143022.17\n", + "2015-04-30 00:00:00: Portfolio Value - 3090181.04\n", + "2015-05-01 00:00:00: Portfolio Value - 3126482.46\n", + "2015-05-04 00:00:00: Portfolio Value - 3140873.65\n", + "2015-05-05 00:00:00: Portfolio Value - 3084669.37\n", + "2015-05-06 00:00:00: Portfolio Value - 3089421.27\n", + "2015-05-07 00:00:00: Portfolio Value - 3102287.72\n", + "2015-05-08 00:00:00: Portfolio Value - 3130168.82\n", + "2015-05-11 00:00:00: Portfolio Value - 3103853.62\n", + "2015-05-12 00:00:00: Portfolio Value - 3088293.79\n", + "2015-05-13 00:00:00: Portfolio Value - 3072982.91\n", + "2015-05-14 00:00:00: Portfolio Value - 3114351.73\n", + "2015-05-15 00:00:00: Portfolio Value - 3148083.80\n", + "2015-05-18 00:00:00: Portfolio Value - 3166235.46\n", + "2015-05-19 00:00:00: Portfolio Value - 3180249.86\n", + "2015-05-20 00:00:00: Portfolio Value - 3155236.00\n", + "2015-05-21 00:00:00: Portfolio Value - 3161369.88\n", + "2015-05-22 00:00:00: Portfolio Value - 3140611.93\n", + "2015-05-26 00:00:00: Portfolio Value - 3128525.20\n", + "2015-05-27 00:00:00: Portfolio Value - 3138028.98\n", + "2015-05-28 00:00:00: Portfolio Value - 3131112.33\n", + "2015-05-29 00:00:00: Portfolio Value - 3101943.25\n", + "2015-06-01 00:00:00: Portfolio Value - 3110954.29\n", + "2015-06-02 00:00:00: Portfolio Value - 3091624.80\n", + "2015-06-03 00:00:00: Portfolio Value - 3102183.66\n", + "2015-06-04 00:00:00: Portfolio Value - 3058903.28\n", + "2015-06-05 00:00:00: Portfolio Value - 3030176.15\n", + "2015-06-08 00:00:00: Portfolio Value - 3022058.33\n", + "2015-06-09 00:00:00: Portfolio Value - 3024213.41\n", + "2015-06-10 00:00:00: Portfolio Value - 3070770.85\n", + "2015-06-11 00:00:00: Portfolio Value - 3110399.00\n", + "2015-06-12 00:00:00: Portfolio Value - 3079957.75\n", + "2015-06-15 00:00:00: Portfolio Value - 3032929.55\n", + "2015-06-16 00:00:00: Portfolio Value - 3061380.59\n", + "2015-06-17 00:00:00: Portfolio Value - 3068853.37\n", + "2015-06-18 00:00:00: Portfolio Value - 3122776.73\n", + "2015-06-19 00:00:00: Portfolio Value - 3114112.26\n", + "2015-06-22 00:00:00: Portfolio Value - 3126967.34\n", + "2015-06-23 00:00:00: Portfolio Value - 3123449.08\n", + "2015-06-24 00:00:00: Portfolio Value - 3083571.67\n", + "2015-06-25 00:00:00: Portfolio Value - 3083569.55\n", + "2015-06-26 00:00:00: Portfolio Value - 3101220.97\n", + "2015-06-29 00:00:00: Portfolio Value - 3021805.85\n", + "2015-06-30 00:00:00: Portfolio Value - 3035310.33\n", + "2015-07-01 00:00:00: Portfolio Value - 3098847.40\n", + "2015-07-02 00:00:00: Portfolio Value - 3092584.67\n", + "2015-07-06 00:00:00: Portfolio Value - 3106876.94\n", + "2015-07-07 00:00:00: Portfolio Value - 3164348.84\n", + "2015-07-08 00:00:00: Portfolio Value - 3115567.13\n", + "2015-07-09 00:00:00: Portfolio Value - 3125573.32\n", + "2015-07-10 00:00:00: Portfolio Value - 3187635.72\n", + "2015-07-13 00:00:00: Portfolio Value - 3214473.50\n", + "2015-07-14 00:00:00: Portfolio Value - 3197514.54\n", + "2015-07-15 00:00:00: Portfolio Value - 3210176.83\n", + "2015-07-16 00:00:00: Portfolio Value - 3226850.74\n", + "2015-07-17 00:00:00: Portfolio Value - 3214234.87\n", + "2015-07-20 00:00:00: Portfolio Value - 3223181.98\n", + "2015-07-21 00:00:00: Portfolio Value - 3187879.67\n", + "2015-07-22 00:00:00: Portfolio Value - 3208849.48\n", + "2015-07-23 00:00:00: Portfolio Value - 3197027.10\n", + "2015-07-24 00:00:00: Portfolio Value - 3176682.83\n", + "2015-07-27 00:00:00: Portfolio Value - 3165068.90\n", + "2015-07-28 00:00:00: Portfolio Value - 3216410.70\n", + "2015-07-29 00:00:00: Portfolio Value - 3267143.63\n", + "2015-07-30 00:00:00: Portfolio Value - 3281543.84\n", + "2015-07-31 00:00:00: Portfolio Value - 3287776.65\n", + "2015-08-03 00:00:00: Portfolio Value - 3294507.90\n", + "2015-08-04 00:00:00: Portfolio Value - 3299769.86\n", + "2015-08-05 00:00:00: Portfolio Value - 3346446.41\n", + "2015-08-06 00:00:00: Portfolio Value - 3285781.77\n", + "2015-08-07 00:00:00: Portfolio Value - 3297514.15\n", + "2015-08-10 00:00:00: Portfolio Value - 3326170.95\n", + "2015-08-11 00:00:00: Portfolio Value - 3324906.27\n", + "2015-08-12 00:00:00: Portfolio Value - 3330505.24\n", + "2015-08-13 00:00:00: Portfolio Value - 3365483.38\n", + "2015-08-14 00:00:00: Portfolio Value - 3389484.69\n", + "2015-08-17 00:00:00: Portfolio Value - 3414393.90\n", + "2015-08-18 00:00:00: Portfolio Value - 3420715.72\n", + "2015-08-19 00:00:00: Portfolio Value - 3407733.12\n", + "2015-08-20 00:00:00: Portfolio Value - 3336949.37\n", + "2015-08-21 00:00:00: Portfolio Value - 3191621.15\n", + "2015-08-24 00:00:00: Portfolio Value - 3016542.73\n", + "2015-08-25 00:00:00: Portfolio Value - 2983821.50\n", + "2015-08-26 00:00:00: Portfolio Value - 3107804.14\n", + "2015-08-27 00:00:00: Portfolio Value - 3199761.63\n", + "2015-08-28 00:00:00: Portfolio Value - 3194290.90\n", + "2015-08-31 00:00:00: Portfolio Value - 3148717.95\n", + "2015-09-01 00:00:00: Portfolio Value - 3058896.88\n", + "2015-09-02 00:00:00: Portfolio Value - 3134793.52\n", + "2015-09-03 00:00:00: Portfolio Value - 3155000.04\n", + "2015-09-04 00:00:00: Portfolio Value - 3085767.69\n", + "2015-09-08 00:00:00: Portfolio Value - 3180871.71\n", + "2015-09-09 00:00:00: Portfolio Value - 3113332.89\n", + "2015-09-10 00:00:00: Portfolio Value - 3115734.59\n", + "2015-09-11 00:00:00: Portfolio Value - 3143787.83\n", + "2015-09-14 00:00:00: Portfolio Value - 3123373.87\n", + "2015-09-15 00:00:00: Portfolio Value - 3174141.90\n", + "2015-09-16 00:00:00: Portfolio Value - 3203955.58\n", + "2015-09-17 00:00:00: Portfolio Value - 3235429.39\n", + "2015-09-18 00:00:00: Portfolio Value - 3179759.34\n", + "2015-09-21 00:00:00: Portfolio Value - 3224158.39\n", + "2015-09-22 00:00:00: Portfolio Value - 3197668.73\n", + "2015-09-23 00:00:00: Portfolio Value - 3243599.52\n", + "2015-09-24 00:00:00: Portfolio Value - 3233079.46\n", + "2015-09-25 00:00:00: Portfolio Value - 3264055.89\n", + "2015-09-28 00:00:00: Portfolio Value - 3148884.22\n", + "2015-09-29 00:00:00: Portfolio Value - 3150884.90\n", + "2015-09-30 00:00:00: Portfolio Value - 3195719.45\n", + "2015-10-01 00:00:00: Portfolio Value - 3262174.37\n", + "2015-10-02 00:00:00: Portfolio Value - 3316947.21\n", + "2015-10-05 00:00:00: Portfolio Value - 3375255.70\n", + "2015-10-06 00:00:00: Portfolio Value - 3340922.04\n", + "2015-10-07 00:00:00: Portfolio Value - 3325282.59\n", + "2015-10-08 00:00:00: Portfolio Value - 3355499.93\n", + "2015-10-09 00:00:00: Portfolio Value - 3363071.97\n", + "2015-10-12 00:00:00: Portfolio Value - 3378344.38\n", + "2015-10-13 00:00:00: Portfolio Value - 3370761.76\n", + "2015-10-14 00:00:00: Portfolio Value - 3320022.09\n", + "2015-10-15 00:00:00: Portfolio Value - 3377752.45\n", + "2015-10-16 00:00:00: Portfolio Value - 3423640.10\n", + "2015-10-19 00:00:00: Portfolio Value - 3430634.28\n", + "2015-10-20 00:00:00: Portfolio Value - 3435023.52\n", + "2015-10-21 00:00:00: Portfolio Value - 3415958.35\n", + "2015-10-22 00:00:00: Portfolio Value - 3513090.62\n", + "2015-10-23 00:00:00: Portfolio Value - 3523475.93\n", + "2015-10-26 00:00:00: Portfolio Value - 3531736.68\n", + "2015-10-27 00:00:00: Portfolio Value - 3510533.59\n", + "2015-10-28 00:00:00: Portfolio Value - 3554637.80\n", + "2015-10-29 00:00:00: Portfolio Value - 3587579.25\n", + "2015-10-30 00:00:00: Portfolio Value - 3559981.21\n", + "2015-11-02 00:00:00: Portfolio Value - 3575130.83\n", + "2015-11-03 00:00:00: Portfolio Value - 3580861.72\n", + "2015-11-04 00:00:00: Portfolio Value - 3590365.49\n", + "2015-11-05 00:00:00: Portfolio Value - 3580022.58\n", + "2015-11-06 00:00:00: Portfolio Value - 3564590.31\n", + "2015-11-09 00:00:00: Portfolio Value - 3525285.06\n", + "2015-11-10 00:00:00: Portfolio Value - 3559096.32\n", + "2015-11-11 00:00:00: Portfolio Value - 3574946.49\n", + "2015-11-12 00:00:00: Portfolio Value - 3518294.47\n", + "2015-11-13 00:00:00: Portfolio Value - 3445280.19\n", + "2015-11-16 00:00:00: Portfolio Value - 3524855.94\n", + "2015-11-17 00:00:00: Portfolio Value - 3508627.66\n", + "2015-11-18 00:00:00: Portfolio Value - 3568217.99\n", + "2015-11-19 00:00:00: Portfolio Value - 3574450.18\n", + "2015-11-20 00:00:00: Portfolio Value - 3606356.43\n", + "2015-11-23 00:00:00: Portfolio Value - 3597160.33\n", + "2015-11-24 00:00:00: Portfolio Value - 3592418.48\n", + "2015-11-25 00:00:00: Portfolio Value - 3605315.02\n", + "2015-11-27 00:00:00: Portfolio Value - 3623590.94\n", + "2015-11-30 00:00:00: Portfolio Value - 3608974.44\n", + "2015-12-01 00:00:00: Portfolio Value - 3635225.15\n", + "2015-12-02 00:00:00: Portfolio Value - 3595706.37\n", + "2015-12-03 00:00:00: Portfolio Value - 3529550.64\n", + "2015-12-04 00:00:00: Portfolio Value - 3613153.88\n", + "2015-12-07 00:00:00: Portfolio Value - 3610340.84\n", + "2015-12-08 00:00:00: Portfolio Value - 3686200.42\n", + "2015-12-09 00:00:00: Portfolio Value - 3593467.44\n", + "2015-12-10 00:00:00: Portfolio Value - 3586087.14\n", + "2015-12-11 00:00:00: Portfolio Value - 3526074.00\n", + "2015-12-14 00:00:00: Portfolio Value - 3553836.22\n", + "2015-12-15 00:00:00: Portfolio Value - 3582900.40\n", + "2015-12-16 00:00:00: Portfolio Value - 3636634.95\n", + "2015-12-17 00:00:00: Portfolio Value - 3599624.80\n", + "2015-12-18 00:00:00: Portfolio Value - 3504679.17\n", + "2015-12-21 00:00:00: Portfolio Value - 3529822.01\n", + "2015-12-22 00:00:00: Portfolio Value - 3567968.69\n", + "2015-12-23 00:00:00: Portfolio Value - 3584787.47\n", + "2015-12-24 00:00:00: Portfolio Value - 3582226.00\n", + "2015-12-28 00:00:00: Portfolio Value - 3592882.11\n", + "2015-12-29 00:00:00: Portfolio Value - 3644605.48\n", + "2015-12-30 00:00:00: Portfolio Value - 3625586.84\n", + "2015-12-31 00:00:00: Portfolio Value - 3557489.50\n", + "2016-01-04 00:00:00: Portfolio Value - 3465407.19\n", + "2016-01-05 00:00:00: Portfolio Value - 3492639.65\n", + "2016-01-06 00:00:00: Portfolio Value - 3445869.03\n", + "2016-01-07 00:00:00: Portfolio Value - 3396730.20\n", + "2016-01-08 00:00:00: Portfolio Value - 3339149.77\n", + "2016-01-11 00:00:00: Portfolio Value - 3372177.25\n", + "2016-01-12 00:00:00: Portfolio Value - 3430531.33\n", + "2016-01-13 00:00:00: Portfolio Value - 3319232.61\n", + "2016-01-14 00:00:00: Portfolio Value - 3395313.73\n", + "2016-01-15 00:00:00: Portfolio Value - 3336689.87\n", + "2016-01-19 00:00:00: Portfolio Value - 3382412.38\n", + "2016-01-20 00:00:00: Portfolio Value - 3344520.85\n", + "2016-01-21 00:00:00: Portfolio Value - 3357633.57\n", + "2016-01-22 00:00:00: Portfolio Value - 3450729.09\n", + "2016-01-25 00:00:00: Portfolio Value - 3408690.52\n", + "2016-01-26 00:00:00: Portfolio Value - 3471800.63\n", + "2016-01-27 00:00:00: Portfolio Value - 3465053.67\n", + "2016-01-28 00:00:00: Portfolio Value - 3484630.74\n", + "2016-01-29 00:00:00: Portfolio Value - 3595723.29\n", + "2016-02-01 00:00:00: Portfolio Value - 3626184.59\n", + "2016-02-02 00:00:00: Portfolio Value - 3572680.53\n", + "2016-02-03 00:00:00: Portfolio Value - 3569147.75\n", + "2016-02-04 00:00:00: Portfolio Value - 3518699.74\n", + "2016-02-05 00:00:00: Portfolio Value - 3423141.40\n", + "2016-02-08 00:00:00: Portfolio Value - 3358178.58\n", + "2016-02-09 00:00:00: Portfolio Value - 3408841.95\n", + "2016-02-10 00:00:00: Portfolio Value - 3402038.68\n", + "2016-02-11 00:00:00: Portfolio Value - 3401075.03\n", + "2016-02-12 00:00:00: Portfolio Value - 3484229.90\n", + "2016-02-16 00:00:00: Portfolio Value - 3575145.86\n", + "2016-02-17 00:00:00: Portfolio Value - 3596235.22\n", + "2016-02-18 00:00:00: Portfolio Value - 3537276.21\n", + "2016-02-19 00:00:00: Portfolio Value - 3557752.12\n", + "2016-02-22 00:00:00: Portfolio Value - 3593869.98\n", + "2016-02-23 00:00:00: Portfolio Value - 3579417.24\n", + "2016-02-24 00:00:00: Portfolio Value - 3638286.95\n", + "2016-02-25 00:00:00: Portfolio Value - 3714318.66\n", + "2016-02-26 00:00:00: Portfolio Value - 3655497.28\n", + "2016-02-29 00:00:00: Portfolio Value - 3616102.25\n", + "2016-03-01 00:00:00: Portfolio Value - 3699574.00\n", + "2016-03-02 00:00:00: Portfolio Value - 3694360.73\n", + "2016-03-03 00:00:00: Portfolio Value - 3694364.94\n", + "2016-03-04 00:00:00: Portfolio Value - 3701542.11\n", + "2016-03-07 00:00:00: Portfolio Value - 3677565.50\n", + "2016-03-08 00:00:00: Portfolio Value - 3680543.05\n", + "2016-03-09 00:00:00: Portfolio Value - 3732223.27\n", + "2016-03-10 00:00:00: Portfolio Value - 3750953.22\n", + "2016-03-11 00:00:00: Portfolio Value - 3799275.27\n", + "2016-03-14 00:00:00: Portfolio Value - 3801790.48\n", + "2016-03-15 00:00:00: Portfolio Value - 3797588.38\n", + "2016-03-16 00:00:00: Portfolio Value - 3826120.93\n", + "2016-03-17 00:00:00: Portfolio Value - 3815057.55\n", + "2016-03-18 00:00:00: Portfolio Value - 3807405.53\n", + "2016-03-21 00:00:00: Portfolio Value - 3807290.54\n", + "2016-03-22 00:00:00: Portfolio Value - 3800951.53\n", + "2016-03-23 00:00:00: Portfolio Value - 3844944.54\n", + "2016-03-24 00:00:00: Portfolio Value - 3817565.89\n", + "2016-03-28 00:00:00: Portfolio Value - 3826655.40\n", + "2016-03-29 00:00:00: Portfolio Value - 3885468.11\n", + "2016-03-30 00:00:00: Portfolio Value - 3911502.26\n", + "2016-03-31 00:00:00: Portfolio Value - 3887690.44\n", + "2016-04-01 00:00:00: Portfolio Value - 3938882.91\n", + "2016-04-04 00:00:00: Portfolio Value - 3917728.44\n", + "2016-04-05 00:00:00: Portfolio Value - 3869173.01\n", + "2016-04-06 00:00:00: Portfolio Value - 3903255.39\n", + "2016-04-07 00:00:00: Portfolio Value - 3860500.37\n", + "2016-04-08 00:00:00: Portfolio Value - 3861019.25\n", + "2016-04-11 00:00:00: Portfolio Value - 3822185.86\n", + "2016-04-12 00:00:00: Portfolio Value - 3847584.45\n", + "2016-04-13 00:00:00: Portfolio Value - 3863178.90\n", + "2016-04-14 00:00:00: Portfolio Value - 3858424.52\n", + "2016-04-15 00:00:00: Portfolio Value - 3897272.41\n", + "2016-04-18 00:00:00: Portfolio Value - 3927123.96\n", + "2016-04-19 00:00:00: Portfolio Value - 3925595.56\n", + "2016-04-20 00:00:00: Portfolio Value - 3889237.27\n", + "2016-04-21 00:00:00: Portfolio Value - 3815179.20\n", + "2016-04-22 00:00:00: Portfolio Value - 3831817.11\n", + "2016-04-25 00:00:00: Portfolio Value - 3872247.80\n", + "2016-04-26 00:00:00: Portfolio Value - 3869604.74\n", + "2016-04-27 00:00:00: Portfolio Value - 3880695.69\n", + "2016-04-28 00:00:00: Portfolio Value - 3848843.20\n", + "2016-04-29 00:00:00: Portfolio Value - 3849968.73\n", + "2016-05-02 00:00:00: Portfolio Value - 3908656.02\n", + "2016-05-03 00:00:00: Portfolio Value - 3923933.98\n", + "2016-05-04 00:00:00: Portfolio Value - 3939969.56\n", + "2016-05-05 00:00:00: Portfolio Value - 3923886.59\n", + "2016-05-06 00:00:00: Portfolio Value - 3930134.53\n", + "2016-05-09 00:00:00: Portfolio Value - 3974381.07\n", + "2016-05-10 00:00:00: Portfolio Value - 4028620.98\n", + "2016-05-11 00:00:00: Portfolio Value - 3994613.91\n", + "2016-05-12 00:00:00: Portfolio Value - 4035875.30\n", + "2016-05-13 00:00:00: Portfolio Value - 3995203.09\n", + "2016-05-16 00:00:00: Portfolio Value - 4014102.77\n", + "2016-05-17 00:00:00: Portfolio Value - 3903055.69\n", + "2016-05-18 00:00:00: Portfolio Value - 3927920.21\n", + "2016-05-19 00:00:00: Portfolio Value - 3919502.26\n", + "2016-05-20 00:00:00: Portfolio Value - 3942411.68\n", + "2016-05-23 00:00:00: Portfolio Value - 3878601.89\n", + "2016-05-24 00:00:00: Portfolio Value - 3965946.86\n", + "2016-05-25 00:00:00: Portfolio Value - 3962595.31\n", + "2016-05-26 00:00:00: Portfolio Value - 3967258.01\n", + "2016-05-27 00:00:00: Portfolio Value - 3967581.73\n", + "2016-05-31 00:00:00: Portfolio Value - 3954339.69\n", + "2016-06-01 00:00:00: Portfolio Value - 3984319.88\n", + "2016-06-02 00:00:00: Portfolio Value - 4013720.31\n", + "2016-06-03 00:00:00: Portfolio Value - 4012022.03\n", + "2016-06-06 00:00:00: Portfolio Value - 3994516.76\n", + "2016-06-07 00:00:00: Portfolio Value - 4006578.53\n", + "2016-06-08 00:00:00: Portfolio Value - 4034139.85\n", + "2016-06-09 00:00:00: Portfolio Value - 4055653.55\n", + "2016-06-10 00:00:00: Portfolio Value - 4033773.16\n", + "2016-06-13 00:00:00: Portfolio Value - 4003108.62\n", + "2016-06-14 00:00:00: Portfolio Value - 4016615.66\n", + "2016-06-15 00:00:00: Portfolio Value - 3981798.59\n", + "2016-06-16 00:00:00: Portfolio Value - 4015276.11\n", + "2016-06-17 00:00:00: Portfolio Value - 3981314.95\n", + "2016-06-20 00:00:00: Portfolio Value - 4018162.39\n", + "2016-06-21 00:00:00: Portfolio Value - 4033063.20\n", + "2016-06-22 00:00:00: Portfolio Value - 4043169.06\n", + "2016-06-23 00:00:00: Portfolio Value - 4094115.21\n", + "2016-06-24 00:00:00: Portfolio Value - 4019189.30\n", + "2016-06-27 00:00:00: Portfolio Value - 4000904.17\n", + "2016-06-28 00:00:00: Portfolio Value - 4108674.29\n", + "2016-06-29 00:00:00: Portfolio Value - 4178585.53\n", + "2016-06-30 00:00:00: Portfolio Value - 4270605.07\n", + "2016-07-01 00:00:00: Portfolio Value - 4272534.40\n", + "2016-07-05 00:00:00: Portfolio Value - 4300242.81\n", + "2016-07-06 00:00:00: Portfolio Value - 4318644.50\n", + "2016-07-07 00:00:00: Portfolio Value - 4312294.41\n", + "2016-07-08 00:00:00: Portfolio Value - 4380231.65\n", + "2016-07-11 00:00:00: Portfolio Value - 4366137.11\n", + "2016-07-12 00:00:00: Portfolio Value - 4324721.21\n", + "2016-07-13 00:00:00: Portfolio Value - 4333438.01\n", + "2016-07-14 00:00:00: Portfolio Value - 4344341.18\n", + "2016-07-15 00:00:00: Portfolio Value - 4304267.32\n", + "2016-07-18 00:00:00: Portfolio Value - 4287585.25\n", + "2016-07-19 00:00:00: Portfolio Value - 4297583.20\n", + "2016-07-20 00:00:00: Portfolio Value - 4316402.04\n", + "2016-07-21 00:00:00: Portfolio Value - 4282108.23\n", + "2016-07-22 00:00:00: Portfolio Value - 4326123.56\n", + "2016-07-25 00:00:00: Portfolio Value - 4314824.73\n", + "2016-07-26 00:00:00: Portfolio Value - 4315081.19\n", + "2016-07-27 00:00:00: Portfolio Value - 4270794.23\n", + "2016-07-28 00:00:00: Portfolio Value - 4331623.79\n", + "2016-07-29 00:00:00: Portfolio Value - 4325028.98\n", + "2016-08-01 00:00:00: Portfolio Value - 4339791.94\n", + "2016-08-02 00:00:00: Portfolio Value - 4310896.41\n", + "2016-08-03 00:00:00: Portfolio Value - 4287682.51\n", + "2016-08-04 00:00:00: Portfolio Value - 4301471.33\n", + "2016-08-05 00:00:00: Portfolio Value - 4294320.84\n", + "2016-08-08 00:00:00: Portfolio Value - 4277000.15\n", + "2016-08-09 00:00:00: Portfolio Value - 4322174.89\n", + "2016-08-10 00:00:00: Portfolio Value - 4344834.38\n", + "2016-08-11 00:00:00: Portfolio Value - 4343988.86\n", + "2016-08-12 00:00:00: Portfolio Value - 4328731.42\n", + "2016-08-15 00:00:00: Portfolio Value - 4315634.74\n", + "2016-08-16 00:00:00: Portfolio Value - 4276512.28\n", + "2016-08-17 00:00:00: Portfolio Value - 4279298.47\n", + "2016-08-18 00:00:00: Portfolio Value - 4290369.32\n", + "2016-08-19 00:00:00: Portfolio Value - 4298907.66\n", + "2016-08-22 00:00:00: Portfolio Value - 4293928.24\n", + "2016-08-23 00:00:00: Portfolio Value - 4282579.01\n", + "2016-08-24 00:00:00: Portfolio Value - 4255978.39\n", + "2016-08-25 00:00:00: Portfolio Value - 4256926.35\n", + "2016-08-26 00:00:00: Portfolio Value - 4208844.36\n", + "2016-08-29 00:00:00: Portfolio Value - 4232445.69\n", + "2016-08-30 00:00:00: Portfolio Value - 4215073.91\n", + "2016-08-31 00:00:00: Portfolio Value - 4211899.59\n", + "2016-09-01 00:00:00: Portfolio Value - 4237588.77\n", + "2016-09-02 00:00:00: Portfolio Value - 4267813.75\n", + "2016-09-06 00:00:00: Portfolio Value - 4283312.98\n", + "2016-09-07 00:00:00: Portfolio Value - 4263515.89\n", + "2016-09-08 00:00:00: Portfolio Value - 4210931.82\n", + "2016-09-09 00:00:00: Portfolio Value - 4092998.42\n", + "2016-09-12 00:00:00: Portfolio Value - 4183917.27\n", + "2016-09-13 00:00:00: Portfolio Value - 4150052.94\n", + "2016-09-14 00:00:00: Portfolio Value - 4135327.70\n", + "2016-09-15 00:00:00: Portfolio Value - 4183801.36\n", + "2016-09-16 00:00:00: Portfolio Value - 4159377.67\n", + "2016-09-19 00:00:00: Portfolio Value - 4186849.13\n", + "2016-09-20 00:00:00: Portfolio Value - 4198769.90\n", + "2016-09-21 00:00:00: Portfolio Value - 4276272.28\n", + "2016-09-22 00:00:00: Portfolio Value - 4309396.02\n", + "2016-09-23 00:00:00: Portfolio Value - 4270051.86\n", + "2016-09-26 00:00:00: Portfolio Value - 4268728.33\n", + "2016-09-27 00:00:00: Portfolio Value - 4319375.08\n", + "2016-09-28 00:00:00: Portfolio Value - 4300265.26\n", + "2016-09-29 00:00:00: Portfolio Value - 4251552.46\n", + "2016-09-30 00:00:00: Portfolio Value - 4293198.56\n", + "2016-10-03 00:00:00: Portfolio Value - 4243212.87\n", + "2016-10-04 00:00:00: Portfolio Value - 4201549.23\n", + "2016-10-05 00:00:00: Portfolio Value - 4192358.43\n", + "2016-10-06 00:00:00: Portfolio Value - 4204500.74\n", + "2016-10-07 00:00:00: Portfolio Value - 4205110.64\n", + "2016-10-10 00:00:00: Portfolio Value - 4225780.28\n", + "2016-10-11 00:00:00: Portfolio Value - 4152227.30\n", + "2016-10-12 00:00:00: Portfolio Value - 4177041.89\n", + "2016-10-13 00:00:00: Portfolio Value - 4178278.80\n", + "2016-10-14 00:00:00: Portfolio Value - 4175296.71\n", + "2016-10-17 00:00:00: Portfolio Value - 4154638.78\n", + "2016-10-18 00:00:00: Portfolio Value - 4160719.60\n", + "2016-10-19 00:00:00: Portfolio Value - 4132288.93\n", + "2016-10-20 00:00:00: Portfolio Value - 4093908.81\n", + "2016-10-21 00:00:00: Portfolio Value - 4096095.29\n", + "2016-10-24 00:00:00: Portfolio Value - 4127315.80\n", + "2016-10-25 00:00:00: Portfolio Value - 4113334.96\n", + "2016-10-26 00:00:00: Portfolio Value - 4082917.11\n", + "2016-10-27 00:00:00: Portfolio Value - 4002011.36\n", + "2016-10-28 00:00:00: Portfolio Value - 4028145.36\n", + "2016-10-31 00:00:00: Portfolio Value - 4053240.82\n", + "2016-11-01 00:00:00: Portfolio Value - 3998605.62\n", + "2016-11-02 00:00:00: Portfolio Value - 3998541.57\n", + "2016-11-03 00:00:00: Portfolio Value - 4012003.18\n", + "2016-11-04 00:00:00: Portfolio Value - 3959562.29\n", + "2016-11-07 00:00:00: Portfolio Value - 4020785.88\n", + "2016-11-08 00:00:00: Portfolio Value - 4056672.35\n", + "2016-11-09 00:00:00: Portfolio Value - 4030595.18\n", + "2016-11-10 00:00:00: Portfolio Value - 3993860.07\n", + "2016-11-11 00:00:00: Portfolio Value - 3999223.36\n", + "2016-11-14 00:00:00: Portfolio Value - 3896369.78\n", + "2016-11-15 00:00:00: Portfolio Value - 3951948.76\n", + "2016-11-16 00:00:00: Portfolio Value - 3991276.59\n", + "2016-11-17 00:00:00: Portfolio Value - 4061784.72\n", + "2016-11-18 00:00:00: Portfolio Value - 4016098.95\n", + "2016-11-21 00:00:00: Portfolio Value - 4059421.13\n", + "2016-11-22 00:00:00: Portfolio Value - 4097879.71\n", + "2016-11-23 00:00:00: Portfolio Value - 4089352.71\n", + "2016-11-25 00:00:00: Portfolio Value - 4128198.91\n", + "2016-11-28 00:00:00: Portfolio Value - 4121407.63\n", + "2016-11-29 00:00:00: Portfolio Value - 4157671.22\n", + "2016-11-30 00:00:00: Portfolio Value - 4057043.27\n", + "2016-12-01 00:00:00: Portfolio Value - 3988528.30\n", + "2016-12-02 00:00:00: Portfolio Value - 3993193.01\n", + "2016-12-05 00:00:00: Portfolio Value - 4001646.30\n", + "2016-12-06 00:00:00: Portfolio Value - 4030814.53\n", + "2016-12-07 00:00:00: Portfolio Value - 4133997.23\n", + "2016-12-08 00:00:00: Portfolio Value - 4120325.60\n", + "2016-12-09 00:00:00: Portfolio Value - 4135651.68\n", + "2016-12-12 00:00:00: Portfolio Value - 4164206.66\n", + "2016-12-13 00:00:00: Portfolio Value - 4201413.98\n", + "2016-12-14 00:00:00: Portfolio Value - 4146354.75\n", + "2016-12-15 00:00:00: Portfolio Value - 4168870.25\n", + "2016-12-16 00:00:00: Portfolio Value - 4167921.84\n", + "2016-12-19 00:00:00: Portfolio Value - 4199307.84\n", + "2016-12-20 00:00:00: Portfolio Value - 4216960.25\n", + "2016-12-21 00:00:00: Portfolio Value - 4203153.87\n", + "2016-12-22 00:00:00: Portfolio Value - 4197430.54\n", + "2016-12-23 00:00:00: Portfolio Value - 4194266.41\n", + "2016-12-27 00:00:00: Portfolio Value - 4213366.07\n", + "2016-12-28 00:00:00: Portfolio Value - 4171469.94\n", + "2016-12-29 00:00:00: Portfolio Value - 4201339.85\n", + "2016-12-30 00:00:00: Portfolio Value - 4157189.72\n", + "2017-01-03 00:00:00: Portfolio Value - 4153632.37\n", + "2017-01-04 00:00:00: Portfolio Value - 4185286.80\n", + "2017-01-05 00:00:00: Portfolio Value - 4204067.66\n", + "2017-01-06 00:00:00: Portfolio Value - 4237170.08\n", + "2017-01-09 00:00:00: Portfolio Value - 4209076.70\n", + "2017-01-10 00:00:00: Portfolio Value - 4214637.87\n", + "2017-01-11 00:00:00: Portfolio Value - 4227834.52\n", + "2017-01-12 00:00:00: Portfolio Value - 4229650.99\n", + "2017-01-13 00:00:00: Portfolio Value - 4215036.59\n", + "2017-01-17 00:00:00: Portfolio Value - 4256136.72\n", + "2017-01-18 00:00:00: Portfolio Value - 4255274.36\n", + "2017-01-19 00:00:00: Portfolio Value - 4220053.55\n", + "2017-01-20 00:00:00: Portfolio Value - 4228579.84\n", + "2017-01-23 00:00:00: Portfolio Value - 4148178.50\n", + "2017-01-24 00:00:00: Portfolio Value - 4157571.98\n", + "2017-01-25 00:00:00: Portfolio Value - 4167767.09\n", + "2017-01-26 00:00:00: Portfolio Value - 4199387.98\n", + "2017-01-27 00:00:00: Portfolio Value - 4185799.16\n", + "2017-01-30 00:00:00: Portfolio Value - 4167439.63\n", + "2017-01-31 00:00:00: Portfolio Value - 4178299.24\n", + "2017-02-01 00:00:00: Portfolio Value - 4151875.13\n", + "2017-02-02 00:00:00: Portfolio Value - 4202946.33\n", + "2017-02-03 00:00:00: Portfolio Value - 4223541.59\n", + "2017-02-06 00:00:00: Portfolio Value - 4189871.68\n", + "2017-02-07 00:00:00: Portfolio Value - 4225067.58\n", + "2017-02-08 00:00:00: Portfolio Value - 4287006.38\n", + "2017-02-09 00:00:00: Portfolio Value - 4330341.43\n", + "2017-02-10 00:00:00: Portfolio Value - 4338343.68\n", + "2017-02-13 00:00:00: Portfolio Value - 4331584.88\n", + "2017-02-14 00:00:00: Portfolio Value - 4328797.82\n", + "2017-02-15 00:00:00: Portfolio Value - 4368806.69\n", + "2017-02-16 00:00:00: Portfolio Value - 4392968.47\n", + "2017-02-17 00:00:00: Portfolio Value - 4438627.30\n", + "2017-02-21 00:00:00: Portfolio Value - 4457302.17\n", + "2017-02-22 00:00:00: Portfolio Value - 4447481.23\n", + "2017-02-23 00:00:00: Portfolio Value - 4447595.62\n", + "2017-02-24 00:00:00: Portfolio Value - 4489249.76\n", + "2017-02-27 00:00:00: Portfolio Value - 4475196.39\n", + "2017-02-28 00:00:00: Portfolio Value - 4460564.33\n", + "2017-03-01 00:00:00: Portfolio Value - 4505151.37\n", + "2017-03-02 00:00:00: Portfolio Value - 4477742.28\n", + "2017-03-03 00:00:00: Portfolio Value - 4432451.35\n", + "2017-03-06 00:00:00: Portfolio Value - 4411928.01\n", + "2017-03-07 00:00:00: Portfolio Value - 4389918.40\n", + "2017-03-08 00:00:00: Portfolio Value - 4385733.29\n", + "2017-03-09 00:00:00: Portfolio Value - 4395766.16\n", + "2017-03-10 00:00:00: Portfolio Value - 4415769.83\n", + "2017-03-13 00:00:00: Portfolio Value - 4441643.12\n", + "2017-03-14 00:00:00: Portfolio Value - 4431748.33\n", + "2017-03-15 00:00:00: Portfolio Value - 4443673.99\n", + "2017-03-16 00:00:00: Portfolio Value - 4423815.09\n", + "2017-03-17 00:00:00: Portfolio Value - 4464052.74\n", + "2017-03-20 00:00:00: Portfolio Value - 4448293.13\n", + "2017-03-21 00:00:00: Portfolio Value - 4429547.81\n", + "2017-03-22 00:00:00: Portfolio Value - 4445515.35\n", + "2017-03-23 00:00:00: Portfolio Value - 4448747.78\n", + "2017-03-24 00:00:00: Portfolio Value - 4440670.08\n", + "2017-03-27 00:00:00: Portfolio Value - 4409930.83\n", + "2017-03-28 00:00:00: Portfolio Value - 4430532.03\n", + "2017-03-29 00:00:00: Portfolio Value - 4435942.01\n", + "2017-03-30 00:00:00: Portfolio Value - 4428299.04\n", + "2017-03-31 00:00:00: Portfolio Value - 4433289.98\n", + "2017-04-03 00:00:00: Portfolio Value - 4382164.22\n", + "2017-04-04 00:00:00: Portfolio Value - 4389131.68\n", + "2017-04-05 00:00:00: Portfolio Value - 4395322.01\n", + "2017-04-06 00:00:00: Portfolio Value - 4402809.40\n", + "2017-04-07 00:00:00: Portfolio Value - 4382822.05\n", + "2017-04-10 00:00:00: Portfolio Value - 4399350.79\n", + "2017-04-11 00:00:00: Portfolio Value - 4408522.84\n", + "2017-04-12 00:00:00: Portfolio Value - 4403058.46\n", + "2017-04-13 00:00:00: Portfolio Value - 4362416.89\n", + "2017-04-17 00:00:00: Portfolio Value - 4397172.43\n", + "2017-04-18 00:00:00: Portfolio Value - 4404713.80\n", + "2017-04-19 00:00:00: Portfolio Value - 4435255.51\n", + "2017-04-20 00:00:00: Portfolio Value - 4473959.76\n", + "2017-04-21 00:00:00: Portfolio Value - 4477672.52\n", + "2017-04-24 00:00:00: Portfolio Value - 4539335.61\n", + "2017-04-25 00:00:00: Portfolio Value - 4574104.67\n", + "2017-04-26 00:00:00: Portfolio Value - 4595286.01\n", + "2017-04-27 00:00:00: Portfolio Value - 4602471.34\n", + "2017-04-28 00:00:00: Portfolio Value - 4538536.18\n", + "2017-05-01 00:00:00: Portfolio Value - 4506643.45\n", + "2017-05-02 00:00:00: Portfolio Value - 4487155.08\n", + "2017-05-03 00:00:00: Portfolio Value - 4471884.28\n", + "2017-05-04 00:00:00: Portfolio Value - 4520892.00\n", + "2017-05-05 00:00:00: Portfolio Value - 4551329.58\n", + "2017-05-08 00:00:00: Portfolio Value - 4521918.22\n", + "2017-05-09 00:00:00: Portfolio Value - 4491780.77\n", + "2017-05-10 00:00:00: Portfolio Value - 4507718.92\n", + "2017-05-11 00:00:00: Portfolio Value - 4499845.34\n", + "2017-05-12 00:00:00: Portfolio Value - 4473636.89\n", + "2017-05-15 00:00:00: Portfolio Value - 4495343.88\n", + "2017-05-16 00:00:00: Portfolio Value - 4459413.15\n", + "2017-05-17 00:00:00: Portfolio Value - 4414590.29\n", + "2017-05-18 00:00:00: Portfolio Value - 4440024.67\n", + "2017-05-19 00:00:00: Portfolio Value - 4469563.38\n", + "2017-05-22 00:00:00: Portfolio Value - 4459805.76\n", + "2017-05-23 00:00:00: Portfolio Value - 4329433.96\n", + "2017-05-24 00:00:00: Portfolio Value - 4400170.37\n", + "2017-05-25 00:00:00: Portfolio Value - 4471329.13\n", + "2017-05-26 00:00:00: Portfolio Value - 4489264.83\n", + "2017-05-30 00:00:00: Portfolio Value - 4507986.42\n", + "2017-05-31 00:00:00: Portfolio Value - 4544889.24\n", + "2017-06-01 00:00:00: Portfolio Value - 4613759.51\n", + "2017-06-02 00:00:00: Portfolio Value - 4643507.02\n", + "2017-06-05 00:00:00: Portfolio Value - 4618406.40\n", + "2017-06-06 00:00:00: Portfolio Value - 4566219.08\n", + "2017-06-07 00:00:00: Portfolio Value - 4589749.78\n", + "2017-06-08 00:00:00: Portfolio Value - 4533466.11\n", + "2017-06-09 00:00:00: Portfolio Value - 4538390.80\n", + "2017-06-12 00:00:00: Portfolio Value - 4555803.61\n", + "2017-06-13 00:00:00: Portfolio Value - 4586071.28\n", + "2017-06-14 00:00:00: Portfolio Value - 4587257.15\n", + "2017-06-15 00:00:00: Portfolio Value - 4617825.46\n", + "2017-06-16 00:00:00: Portfolio Value - 4573897.13\n", + "2017-06-19 00:00:00: Portfolio Value - 4600951.31\n", + "2017-06-20 00:00:00: Portfolio Value - 4548923.50\n", + "2017-06-21 00:00:00: Portfolio Value - 4508533.62\n", + "2017-06-22 00:00:00: Portfolio Value - 4515813.18\n", + "2017-06-23 00:00:00: Portfolio Value - 4500001.51\n", + "2017-06-26 00:00:00: Portfolio Value - 4519866.47\n", + "2017-06-27 00:00:00: Portfolio Value - 4481571.50\n", + "2017-06-28 00:00:00: Portfolio Value - 4487077.67\n", + "2017-06-29 00:00:00: Portfolio Value - 4413866.45\n", + "2017-06-30 00:00:00: Portfolio Value - 4451341.17\n", + "2017-07-03 00:00:00: Portfolio Value - 4442431.47\n", + "2017-07-05 00:00:00: Portfolio Value - 4350012.95\n", + "2017-07-06 00:00:00: Portfolio Value - 4300225.25\n", + "2017-07-07 00:00:00: Portfolio Value - 4319916.69\n", + "2017-07-10 00:00:00: Portfolio Value - 4325221.13\n", + "2017-07-11 00:00:00: Portfolio Value - 4301262.78\n", + "2017-07-12 00:00:00: Portfolio Value - 4327614.94\n", + "2017-07-13 00:00:00: Portfolio Value - 4337841.06\n", + "2017-07-14 00:00:00: Portfolio Value - 4373352.05\n", + "2017-07-17 00:00:00: Portfolio Value - 4382228.02\n", + "2017-07-18 00:00:00: Portfolio Value - 4382353.17\n", + "2017-07-19 00:00:00: Portfolio Value - 4399395.72\n", + "2017-07-20 00:00:00: Portfolio Value - 4413473.29\n", + "2017-07-21 00:00:00: Portfolio Value - 4460493.32\n", + "2017-07-24 00:00:00: Portfolio Value - 4426054.15\n", + "2017-07-25 00:00:00: Portfolio Value - 4461797.75\n", + "2017-07-26 00:00:00: Portfolio Value - 4454938.97\n", + "2017-07-27 00:00:00: Portfolio Value - 4494530.55\n", + "2017-07-28 00:00:00: Portfolio Value - 4503981.13\n", + "2017-07-31 00:00:00: Portfolio Value - 4588351.79\n", + "2017-08-01 00:00:00: Portfolio Value - 4609899.80\n", + "2017-08-02 00:00:00: Portfolio Value - 4586361.09\n", + "2017-08-03 00:00:00: Portfolio Value - 4559250.17\n", + "2017-08-04 00:00:00: Portfolio Value - 4562327.33\n", + "2017-08-07 00:00:00: Portfolio Value - 4566568.40\n", + "2017-08-08 00:00:00: Portfolio Value - 4539759.69\n", + "2017-08-09 00:00:00: Portfolio Value - 4576113.39\n", + "2017-08-10 00:00:00: Portfolio Value - 4555911.43\n", + "2017-08-11 00:00:00: Portfolio Value - 4567409.84\n", + "2017-08-14 00:00:00: Portfolio Value - 4607671.31\n", + "2017-08-15 00:00:00: Portfolio Value - 4575631.98\n", + "2017-08-16 00:00:00: Portfolio Value - 4624044.00\n", + "2017-08-17 00:00:00: Portfolio Value - 4549532.86\n", + "2017-08-18 00:00:00: Portfolio Value - 4529344.47\n", + "2017-08-21 00:00:00: Portfolio Value - 4575192.60\n", + "2017-08-22 00:00:00: Portfolio Value - 4611014.66\n", + "2017-08-23 00:00:00: Portfolio Value - 4561150.36\n", + "2017-08-24 00:00:00: Portfolio Value - 4509519.17\n", + "2017-08-25 00:00:00: Portfolio Value - 4568846.12\n", + "2017-08-28 00:00:00: Portfolio Value - 4557165.67\n", + "2017-08-29 00:00:00: Portfolio Value - 4545606.43\n", + "2017-08-30 00:00:00: Portfolio Value - 4569257.09\n", + "2017-08-31 00:00:00: Portfolio Value - 4606943.13\n", + "2017-09-01 00:00:00: Portfolio Value - 4585245.31\n", + "2017-09-05 00:00:00: Portfolio Value - 4562175.80\n", + "2017-09-06 00:00:00: Portfolio Value - 4560975.66\n", + "2017-09-07 00:00:00: Portfolio Value - 4550904.52\n", + "2017-09-08 00:00:00: Portfolio Value - 4596439.21\n", + "2017-09-11 00:00:00: Portfolio Value - 4641944.85\n", + "2017-09-12 00:00:00: Portfolio Value - 4658740.03\n", + "2017-09-13 00:00:00: Portfolio Value - 4668547.83\n", + "2017-09-14 00:00:00: Portfolio Value - 4639280.11\n", + "2017-09-15 00:00:00: Portfolio Value - 4648616.73\n", + "2017-09-18 00:00:00: Portfolio Value - 4629633.35\n", + "2017-09-19 00:00:00: Portfolio Value - 4560050.31\n", + "2017-09-20 00:00:00: Portfolio Value - 4586183.48\n", + "2017-09-21 00:00:00: Portfolio Value - 4561270.53\n", + "2017-09-22 00:00:00: Portfolio Value - 4612841.43\n", + "2017-09-25 00:00:00: Portfolio Value - 4622188.13\n", + "2017-09-26 00:00:00: Portfolio Value - 4615690.23\n", + "2017-09-27 00:00:00: Portfolio Value - 4613665.14\n", + "2017-09-28 00:00:00: Portfolio Value - 4624890.59\n", + "2017-09-29 00:00:00: Portfolio Value - 4662091.77\n", + "2017-10-02 00:00:00: Portfolio Value - 4690345.73\n", + "2017-10-03 00:00:00: Portfolio Value - 4698505.25\n", + "2017-10-04 00:00:00: Portfolio Value - 4711335.51\n", + "2017-10-05 00:00:00: Portfolio Value - 4733570.71\n", + "2017-10-06 00:00:00: Portfolio Value - 4713464.72\n", + "2017-10-09 00:00:00: Portfolio Value - 4680950.58\n", + "2017-10-10 00:00:00: Portfolio Value - 4688686.33\n", + "2017-10-11 00:00:00: Portfolio Value - 4718007.84\n", + "2017-10-12 00:00:00: Portfolio Value - 4730415.58\n", + "2017-10-13 00:00:00: Portfolio Value - 4783671.43\n", + "2017-10-16 00:00:00: Portfolio Value - 4770596.37\n", + "2017-10-17 00:00:00: Portfolio Value - 4788864.44\n", + "2017-10-18 00:00:00: Portfolio Value - 4774065.64\n", + "2017-10-19 00:00:00: Portfolio Value - 4771988.73\n", + "2017-10-20 00:00:00: Portfolio Value - 4770268.70\n", + "2017-10-23 00:00:00: Portfolio Value - 4758218.79\n", + "2017-10-24 00:00:00: Portfolio Value - 4724411.60\n", + "2017-10-25 00:00:00: Portfolio Value - 4738345.31\n", + "2017-10-26 00:00:00: Portfolio Value - 4722515.81\n", + "2017-10-27 00:00:00: Portfolio Value - 4729015.08\n", + "2017-10-30 00:00:00: Portfolio Value - 4718156.60\n", + "2017-10-31 00:00:00: Portfolio Value - 4753683.49\n", + "2017-11-01 00:00:00: Portfolio Value - 4750578.86\n", + "2017-11-02 00:00:00: Portfolio Value - 4788216.64\n", + "2017-11-03 00:00:00: Portfolio Value - 4812222.10\n", + "2017-11-06 00:00:00: Portfolio Value - 4812021.97\n", + "2017-11-07 00:00:00: Portfolio Value - 4820310.60\n", + "2017-11-08 00:00:00: Portfolio Value - 4830459.96\n", + "2017-11-09 00:00:00: Portfolio Value - 4837174.93\n", + "2017-11-10 00:00:00: Portfolio Value - 4814384.99\n", + "2017-11-13 00:00:00: Portfolio Value - 4849885.41\n", + "2017-11-14 00:00:00: Portfolio Value - 4881555.75\n", + "2017-11-15 00:00:00: Portfolio Value - 4852001.13\n", + "2017-11-16 00:00:00: Portfolio Value - 4897204.61\n", + "2017-11-17 00:00:00: Portfolio Value - 4898654.12\n", + "2017-11-20 00:00:00: Portfolio Value - 4909958.90\n", + "2017-11-21 00:00:00: Portfolio Value - 4942097.24\n", + "2017-11-22 00:00:00: Portfolio Value - 4921209.19\n", + "2017-11-24 00:00:00: Portfolio Value - 4917047.30\n", + "2017-11-27 00:00:00: Portfolio Value - 4935170.20\n", + "2017-11-28 00:00:00: Portfolio Value - 5045742.87\n", + "2017-11-29 00:00:00: Portfolio Value - 5103062.01\n", + "2017-11-30 00:00:00: Portfolio Value - 5127065.21\n", + "2017-12-01 00:00:00: Portfolio Value - 5113279.26\n", + "2017-12-04 00:00:00: Portfolio Value - 5139239.91\n", + "2017-12-05 00:00:00: Portfolio Value - 5142202.14\n", + "2017-12-06 00:00:00: Portfolio Value - 5091541.47\n", + "2017-12-07 00:00:00: Portfolio Value - 5091969.69\n", + "2017-12-08 00:00:00: Portfolio Value - 5140652.64\n", + "2017-12-11 00:00:00: Portfolio Value - 5140538.86\n", + "2017-12-12 00:00:00: Portfolio Value - 5130472.12\n", + "2017-12-13 00:00:00: Portfolio Value - 5111351.35\n", + "2017-12-14 00:00:00: Portfolio Value - 5081520.91\n", + "2017-12-15 00:00:00: Portfolio Value - 5121375.85\n", + "2017-12-18 00:00:00: Portfolio Value - 5123117.56\n", + "2017-12-19 00:00:00: Portfolio Value - 5089109.57\n", + "2017-12-20 00:00:00: Portfolio Value - 5065913.02\n", + "2017-12-21 00:00:00: Portfolio Value - 5070553.93\n", + "2017-12-22 00:00:00: Portfolio Value - 5089840.99\n", + "2017-12-26 00:00:00: Portfolio Value - 5103752.26\n", + "2017-12-27 00:00:00: Portfolio Value - 5082520.99\n", + "2017-12-28 00:00:00: Portfolio Value - 5120510.89\n", + "2017-12-29 00:00:00: Portfolio Value - 5089066.20\n", + "2018-01-02 00:00:00: Portfolio Value - 5147078.95\n", + "2018-01-03 00:00:00: Portfolio Value - 5190716.26\n", + "2018-01-04 00:00:00: Portfolio Value - 5233558.43\n", + "2018-01-05 00:00:00: Portfolio Value - 5301211.05\n", + "2018-01-08 00:00:00: Portfolio Value - 5314871.68\n", + "2018-01-09 00:00:00: Portfolio Value - 5325659.88\n", + "2018-01-10 00:00:00: Portfolio Value - 5281857.10\n", + "2018-01-11 00:00:00: Portfolio Value - 5301463.60\n", + "2018-01-12 00:00:00: Portfolio Value - 5338987.10\n", + "2018-01-16 00:00:00: Portfolio Value - 5319147.49\n", + "2018-01-17 00:00:00: Portfolio Value - 5391416.44\n", + "2018-01-18 00:00:00: Portfolio Value - 5395538.36\n", + "2018-01-19 00:00:00: Portfolio Value - 5446363.19\n", + "2018-01-22 00:00:00: Portfolio Value - 5482771.10\n", + "2018-01-23 00:00:00: Portfolio Value - 5494588.76\n", + "2018-01-24 00:00:00: Portfolio Value - 5525624.15\n", + "2018-01-25 00:00:00: Portfolio Value - 5556171.28\n", + "2018-01-26 00:00:00: Portfolio Value - 5621996.55\n", + "2018-01-29 00:00:00: Portfolio Value - 5572906.48\n", + "2018-01-30 00:00:00: Portfolio Value - 5529502.45\n", + "2018-01-31 00:00:00: Portfolio Value - 5531444.78\n", + "2018-02-01 00:00:00: Portfolio Value - 5510715.31\n", + "2018-02-02 00:00:00: Portfolio Value - 5432867.78\n", + "2018-02-05 00:00:00: Portfolio Value - 5190658.86\n", + "2018-02-06 00:00:00: Portfolio Value - 5262102.90\n", + "2018-02-07 00:00:00: Portfolio Value - 5206404.77\n", + "2018-02-08 00:00:00: Portfolio Value - 5023227.57\n", + "2018-02-09 00:00:00: Portfolio Value - 5107895.28\n", + "2018-02-12 00:00:00: Portfolio Value - 5184619.86\n", + "2018-02-13 00:00:00: Portfolio Value - 5168165.65\n", + "2018-02-14 00:00:00: Portfolio Value - 5246228.13\n", + "2018-02-15 00:00:00: Portfolio Value - 5334387.94\n", + "2018-02-16 00:00:00: Portfolio Value - 5324323.22\n", + "2018-02-20 00:00:00: Portfolio Value - 5250417.87\n", + "2018-02-21 00:00:00: Portfolio Value - 5233678.62\n", + "2018-02-22 00:00:00: Portfolio Value - 5222939.60\n", + "2018-02-23 00:00:00: Portfolio Value - 5325340.97\n", + "2018-02-26 00:00:00: Portfolio Value - 5387098.80\n", + "2018-02-27 00:00:00: Portfolio Value - 5170559.08\n", + "2018-02-28 00:00:00: Portfolio Value - 5125778.27\n", + "2018-03-01 00:00:00: Portfolio Value - 5068852.24\n", + "2018-03-02 00:00:00: Portfolio Value - 5074185.25\n", + "2018-03-05 00:00:00: Portfolio Value - 5157372.82\n", + "2018-03-06 00:00:00: Portfolio Value - 5160472.67\n", + "2018-03-07 00:00:00: Portfolio Value - 5150305.67\n", + "2018-03-08 00:00:00: Portfolio Value - 5183533.59\n", + "2018-03-09 00:00:00: Portfolio Value - 5272843.21\n", + "2018-03-12 00:00:00: Portfolio Value - 5247893.49\n", + "2018-03-13 00:00:00: Portfolio Value - 5218846.83\n", + "2018-03-14 00:00:00: Portfolio Value - 5170397.82\n", + "2018-03-15 00:00:00: Portfolio Value - 5173855.05\n", + "2018-03-16 00:00:00: Portfolio Value - 5179167.10\n", + "2018-03-19 00:00:00: Portfolio Value - 5121146.41\n", + "2018-03-20 00:00:00: Portfolio Value - 5125206.39\n", + "2018-03-21 00:00:00: Portfolio Value - 5078871.79\n", + "2018-03-22 00:00:00: Portfolio Value - 4988043.77\n", + "2018-03-23 00:00:00: Portfolio Value - 4889992.52\n", + "2018-03-26 00:00:00: Portfolio Value - 4980583.22\n", + "2018-03-27 00:00:00: Portfolio Value - 4938404.81\n", + "2018-03-28 00:00:00: Portfolio Value - 4960673.27\n", + "2018-03-29 00:00:00: Portfolio Value - 5054080.36\n", + "2018-04-02 00:00:00: Portfolio Value - 4867268.16\n", + "2018-04-03 00:00:00: Portfolio Value - 4936719.10\n", + "2018-04-04 00:00:00: Portfolio Value - 5001704.49\n", + "2018-04-05 00:00:00: Portfolio Value - 5041807.03\n", + "2018-04-06 00:00:00: Portfolio Value - 4928402.43\n", + "2018-04-09 00:00:00: Portfolio Value - 4955883.92\n", + "2018-04-10 00:00:00: Portfolio Value - 4977051.21\n", + "2018-04-11 00:00:00: Portfolio Value - 4972050.24\n", + "2018-04-12 00:00:00: Portfolio Value - 4963444.54\n", + "2018-04-13 00:00:00: Portfolio Value - 4955425.76\n", + "2018-04-16 00:00:00: Portfolio Value - 5036442.96\n", + "2018-04-17 00:00:00: Portfolio Value - 5073286.00\n", + "2018-04-18 00:00:00: Portfolio Value - 5080313.58\n", + "2018-04-19 00:00:00: Portfolio Value - 5027811.43\n", + "2018-04-20 00:00:00: Portfolio Value - 4960438.88\n", + "2018-04-23 00:00:00: Portfolio Value - 4959335.25\n", + "2018-04-24 00:00:00: Portfolio Value - 4917535.76\n", + "2018-04-25 00:00:00: Portfolio Value - 4935140.87\n", + "2018-04-26 00:00:00: Portfolio Value - 4972008.93\n", + "2018-04-27 00:00:00: Portfolio Value - 4951227.10\n", + "2018-04-30 00:00:00: Portfolio Value - 4932324.81\n", + "2018-05-01 00:00:00: Portfolio Value - 4949873.97\n", + "2018-05-02 00:00:00: Portfolio Value - 4857478.85\n", + "2018-05-03 00:00:00: Portfolio Value - 4862823.99\n", + "2018-05-04 00:00:00: Portfolio Value - 4946666.61\n", + "2018-05-07 00:00:00: Portfolio Value - 4947300.35\n", + "2018-05-08 00:00:00: Portfolio Value - 4948465.21\n", + "2018-05-09 00:00:00: Portfolio Value - 4990871.89\n", + "2018-05-10 00:00:00: Portfolio Value - 5057196.98\n", + "2018-05-11 00:00:00: Portfolio Value - 5078713.27\n", + "2018-05-14 00:00:00: Portfolio Value - 5068937.17\n", + "2018-05-15 00:00:00: Portfolio Value - 4995631.33\n", + "2018-05-16 00:00:00: Portfolio Value - 4994883.81\n", + "2018-05-17 00:00:00: Portfolio Value - 4971678.68\n", + "2018-05-18 00:00:00: Portfolio Value - 5009930.05\n", + "2018-05-21 00:00:00: Portfolio Value - 5060139.81\n", + "2018-05-22 00:00:00: Portfolio Value - 4907109.92\n", + "2018-05-23 00:00:00: Portfolio Value - 4983587.42\n", + "2018-05-24 00:00:00: Portfolio Value - 5008481.06\n", + "2018-05-25 00:00:00: Portfolio Value - 5018856.64\n", + "2018-05-29 00:00:00: Portfolio Value - 4950044.42\n", + "2018-05-30 00:00:00: Portfolio Value - 5060256.03\n", + "2018-05-31 00:00:00: Portfolio Value - 4994062.74\n", + "2018-06-01 00:00:00: Portfolio Value - 5032891.30\n", + "2018-06-04 00:00:00: Portfolio Value - 5091739.41\n", + "2018-06-05 00:00:00: Portfolio Value - 5087090.85\n", + "2018-06-06 00:00:00: Portfolio Value - 5133557.73\n", + "2018-06-07 00:00:00: Portfolio Value - 5175805.15\n", + "2018-06-08 00:00:00: Portfolio Value - 5241112.20\n", + "2018-06-11 00:00:00: Portfolio Value - 5265602.16\n", + "2018-06-12 00:00:00: Portfolio Value - 5293427.87\n", + "2018-06-13 00:00:00: Portfolio Value - 5257448.53\n", + "2018-06-14 00:00:00: Portfolio Value - 5285335.63\n", + "2018-06-15 00:00:00: Portfolio Value - 5332842.43\n", + "2018-06-18 00:00:00: Portfolio Value - 5287017.79\n", + "2018-06-19 00:00:00: Portfolio Value - 5286400.85\n", + "2018-06-20 00:00:00: Portfolio Value - 5263387.66\n", + "2018-06-21 00:00:00: Portfolio Value - 5257580.47\n", + "2018-06-22 00:00:00: Portfolio Value - 5301047.09\n", + "2018-06-25 00:00:00: Portfolio Value - 5281271.70\n", + "2018-06-26 00:00:00: Portfolio Value - 5279994.66\n", + "2018-06-27 00:00:00: Portfolio Value - 5211228.23\n", + "2018-06-28 00:00:00: Portfolio Value - 5273170.85\n", + "2018-06-29 00:00:00: Portfolio Value - 5265404.20\n", + "2018-07-02 00:00:00: Portfolio Value - 5271697.42\n", + "2018-07-03 00:00:00: Portfolio Value - 5292403.41\n", + "2018-07-05 00:00:00: Portfolio Value - 5337958.50\n", + "2018-07-06 00:00:00: Portfolio Value - 5402358.74\n", + "2018-07-09 00:00:00: Portfolio Value - 5431262.81\n", + "2018-07-10 00:00:00: Portfolio Value - 5442957.62\n", + "2018-07-11 00:00:00: Portfolio Value - 5414424.91\n", + "2018-07-12 00:00:00: Portfolio Value - 5475752.94\n", + "2018-07-13 00:00:00: Portfolio Value - 5483175.01\n", + "2018-07-16 00:00:00: Portfolio Value - 5474340.74\n", + "2018-07-17 00:00:00: Portfolio Value - 5526111.56\n", + "2018-07-18 00:00:00: Portfolio Value - 5487690.81\n", + "2018-07-19 00:00:00: Portfolio Value - 5520476.75\n", + "2018-07-20 00:00:00: Portfolio Value - 5509571.13\n", + "2018-07-23 00:00:00: Portfolio Value - 5516052.93\n", + "2018-07-24 00:00:00: Portfolio Value - 5512763.48\n", + "2018-07-25 00:00:00: Portfolio Value - 5547444.91\n", + "2018-07-26 00:00:00: Portfolio Value - 5604537.73\n", + "2018-07-27 00:00:00: Portfolio Value - 5531102.91\n", + "2018-07-30 00:00:00: Portfolio Value - 5491087.32\n", + "2018-07-31 00:00:00: Portfolio Value - 5564967.85\n", + "2018-08-01 00:00:00: Portfolio Value - 5555486.82\n", + "2018-08-02 00:00:00: Portfolio Value - 5583603.17\n", + "2018-08-03 00:00:00: Portfolio Value - 5637927.61\n", + "2018-08-06 00:00:00: Portfolio Value - 5661868.31\n", + "2018-08-07 00:00:00: Portfolio Value - 5671240.65\n", + "2018-08-08 00:00:00: Portfolio Value - 5706997.85\n", + "2018-08-09 00:00:00: Portfolio Value - 5717222.44\n", + "2018-08-10 00:00:00: Portfolio Value - 5717887.14\n", + "2018-08-13 00:00:00: Portfolio Value - 5677145.36\n", + "2018-08-14 00:00:00: Portfolio Value - 5756587.23\n", + "2018-08-15 00:00:00: Portfolio Value - 5758377.12\n", + "2018-08-16 00:00:00: Portfolio Value - 5842237.16\n", + "2018-08-17 00:00:00: Portfolio Value - 5865289.19\n", + "2018-08-20 00:00:00: Portfolio Value - 5859463.83\n", + "2018-08-21 00:00:00: Portfolio Value - 5857514.01\n", + "2018-08-22 00:00:00: Portfolio Value - 5823302.52\n", + "2018-08-23 00:00:00: Portfolio Value - 5835033.74\n", + "2018-08-24 00:00:00: Portfolio Value - 5888574.09\n", + "2018-08-27 00:00:00: Portfolio Value - 5888389.06\n", + "2018-08-28 00:00:00: Portfolio Value - 5892748.25\n", + "2018-08-29 00:00:00: Portfolio Value - 5931950.46\n", + "2018-08-30 00:00:00: Portfolio Value - 5883181.23\n", + "2018-08-31 00:00:00: Portfolio Value - 5900741.35\n", + "2018-09-04 00:00:00: Portfolio Value - 5964845.20\n", + "2018-09-05 00:00:00: Portfolio Value - 5943915.04\n", + "2018-09-06 00:00:00: Portfolio Value - 5976074.10\n", + "2018-09-07 00:00:00: Portfolio Value - 5973105.86\n", + "2018-09-10 00:00:00: Portfolio Value - 5974470.57\n", + "2018-09-11 00:00:00: Portfolio Value - 5990146.77\n", + "2018-09-12 00:00:00: Portfolio Value - 6009906.62\n", + "2018-09-13 00:00:00: Portfolio Value - 6071695.21\n", + "2018-09-14 00:00:00: Portfolio Value - 6033581.75\n", + "2018-09-17 00:00:00: Portfolio Value - 5985762.04\n", + "2018-09-18 00:00:00: Portfolio Value - 6006852.10\n", + "2018-09-19 00:00:00: Portfolio Value - 6020729.03\n", + "2018-09-20 00:00:00: Portfolio Value - 6066921.22\n", + "2018-09-21 00:00:00: Portfolio Value - 6095877.45\n", + "2018-09-24 00:00:00: Portfolio Value - 6043945.19\n", + "2018-09-25 00:00:00: Portfolio Value - 6044141.02\n", + "2018-09-26 00:00:00: Portfolio Value - 6037539.47\n", + "2018-09-27 00:00:00: Portfolio Value - 6039969.11\n", + "2018-09-28 00:00:00: Portfolio Value - 6064923.82\n", + "2018-10-01 00:00:00: Portfolio Value - 6036561.87\n", + "2018-10-02 00:00:00: Portfolio Value - 6044940.06\n", + "2018-10-03 00:00:00: Portfolio Value - 5974769.14\n", + "2018-10-04 00:00:00: Portfolio Value - 5941779.57\n", + "2018-10-05 00:00:00: Portfolio Value - 5933847.40\n", + "2018-10-08 00:00:00: Portfolio Value - 5966678.46\n", + "2018-10-09 00:00:00: Portfolio Value - 5959497.54\n", + "2018-10-10 00:00:00: Portfolio Value - 5768439.98\n", + "2018-10-11 00:00:00: Portfolio Value - 5616407.96\n", + "2018-10-12 00:00:00: Portfolio Value - 5697103.06\n", + "2018-10-15 00:00:00: Portfolio Value - 5716877.37\n", + "2018-10-16 00:00:00: Portfolio Value - 5804989.60\n", + "2018-10-17 00:00:00: Portfolio Value - 5705462.62\n", + "2018-10-18 00:00:00: Portfolio Value - 5688065.34\n", + "2018-10-19 00:00:00: Portfolio Value - 5700868.70\n", + "2018-10-22 00:00:00: Portfolio Value - 5701225.92\n", + "2018-10-23 00:00:00: Portfolio Value - 5674402.05\n", + "2018-10-24 00:00:00: Portfolio Value - 5579576.56\n", + "2018-10-25 00:00:00: Portfolio Value - 5639592.39\n", + "2018-10-26 00:00:00: Portfolio Value - 5547912.55\n", + "2018-10-29 00:00:00: Portfolio Value - 5581182.70\n", + "2018-10-30 00:00:00: Portfolio Value - 5732308.24\n", + "2018-10-31 00:00:00: Portfolio Value - 5691061.72\n", + "2018-11-01 00:00:00: Portfolio Value - 5708543.22\n", + "2018-11-02 00:00:00: Portfolio Value - 5736435.84\n", + "2018-11-05 00:00:00: Portfolio Value - 5795873.27\n", + "2018-11-06 00:00:00: Portfolio Value - 5829895.57\n", + "2018-11-07 00:00:00: Portfolio Value - 5905705.61\n", + "2018-11-08 00:00:00: Portfolio Value - 5932342.29\n", + "2018-11-09 00:00:00: Portfolio Value - 5910011.87\n", + "2018-11-12 00:00:00: Portfolio Value - 5841745.76\n", + "2018-11-13 00:00:00: Portfolio Value - 5870537.26\n", + "2018-11-14 00:00:00: Portfolio Value - 5849827.38\n", + "2018-11-15 00:00:00: Portfolio Value - 5865883.65\n", + "2018-11-16 00:00:00: Portfolio Value - 5972333.66\n", + "2018-11-19 00:00:00: Portfolio Value - 5911728.01\n", + "2018-11-20 00:00:00: Portfolio Value - 5749180.10\n", + "2018-11-21 00:00:00: Portfolio Value - 5790152.30\n", + "2018-11-23 00:00:00: Portfolio Value - 5832457.91\n", + "2018-11-26 00:00:00: Portfolio Value - 5848814.00\n", + "2018-11-27 00:00:00: Portfolio Value - 5911852.68\n", + "2018-11-28 00:00:00: Portfolio Value - 6022818.97\n", + "2018-11-29 00:00:00: Portfolio Value - 6037523.60\n", + "2018-11-30 00:00:00: Portfolio Value - 6040665.01\n", + "2018-12-03 00:00:00: Portfolio Value - 6050791.28\n", + "2018-12-04 00:00:00: Portfolio Value - 6076173.63\n", + "2018-12-06 00:00:00: Portfolio Value - 6065201.85\n", + "2018-12-07 00:00:00: Portfolio Value - 5978043.38\n", + "2018-12-10 00:00:00: Portfolio Value - 6049438.12\n", + "2018-12-11 00:00:00: Portfolio Value - 6042749.84\n", + "2018-12-12 00:00:00: Portfolio Value - 6077283.79\n", + "2018-12-13 00:00:00: Portfolio Value - 6064648.51\n", + "2018-12-14 00:00:00: Portfolio Value - 5922177.72\n", + "2018-12-17 00:00:00: Portfolio Value - 5755639.18\n", + "2018-12-18 00:00:00: Portfolio Value - 5760990.11\n", + "2018-12-19 00:00:00: Portfolio Value - 5684647.81\n", + "2018-12-20 00:00:00: Portfolio Value - 5584449.52\n", + "2018-12-21 00:00:00: Portfolio Value - 5538846.72\n", + "2018-12-24 00:00:00: Portfolio Value - 5348847.55\n", + "2018-12-26 00:00:00: Portfolio Value - 5580433.87\n", + "2018-12-27 00:00:00: Portfolio Value - 5673022.70\n", + "2018-12-28 00:00:00: Portfolio Value - 5670566.63\n", + "2018-12-31 00:00:00: Portfolio Value - 5723732.04\n", + "2019-01-02 00:00:00: Portfolio Value - 5639900.36\n", + "2019-01-03 00:00:00: Portfolio Value - 5543824.98\n", + "2019-01-04 00:00:00: Portfolio Value - 5664902.39\n", + "2019-01-07 00:00:00: Portfolio Value - 5639174.05\n", + "2019-01-08 00:00:00: Portfolio Value - 5660561.30\n", + "2019-01-09 00:00:00: Portfolio Value - 5677198.89\n", + "2019-01-10 00:00:00: Portfolio Value - 5730876.90\n", + "2019-01-11 00:00:00: Portfolio Value - 5713682.64\n", + "2019-01-14 00:00:00: Portfolio Value - 5674371.12\n", + "2019-01-15 00:00:00: Portfolio Value - 5730745.97\n", + "2019-01-16 00:00:00: Portfolio Value - 5720205.44\n", + "2019-01-17 00:00:00: Portfolio Value - 5765899.10\n", + "2019-01-18 00:00:00: Portfolio Value - 5830638.53\n", + "2019-01-22 00:00:00: Portfolio Value - 5755171.32\n", + "2019-01-23 00:00:00: Portfolio Value - 5785638.93\n", + "2019-01-24 00:00:00: Portfolio Value - 5738645.12\n", + "2019-01-25 00:00:00: Portfolio Value - 5680744.67\n", + "2019-01-28 00:00:00: Portfolio Value - 5674645.69\n", + "2019-01-29 00:00:00: Portfolio Value - 5691549.15\n", + "2019-01-30 00:00:00: Portfolio Value - 5764362.74\n", + "2019-01-31 00:00:00: Portfolio Value - 5926953.20\n", + "2019-02-01 00:00:00: Portfolio Value - 5969216.94\n", + "2019-02-04 00:00:00: Portfolio Value - 6022826.94\n", + "2019-02-05 00:00:00: Portfolio Value - 6050521.29\n", + "2019-02-06 00:00:00: Portfolio Value - 6026660.12\n", + "2019-02-07 00:00:00: Portfolio Value - 6043931.23\n", + "2019-02-08 00:00:00: Portfolio Value - 6106738.83\n", + "2019-02-11 00:00:00: Portfolio Value - 6129632.40\n", + "2019-02-12 00:00:00: Portfolio Value - 6183665.61\n", + "2019-02-13 00:00:00: Portfolio Value - 6192660.62\n", + "2019-02-14 00:00:00: Portfolio Value - 6226984.98\n", + "2019-02-15 00:00:00: Portfolio Value - 6327795.92\n", + "2019-02-19 00:00:00: Portfolio Value - 6325862.14\n", + "2019-02-20 00:00:00: Portfolio Value - 6330319.75\n", + "2019-02-21 00:00:00: Portfolio Value - 6313264.02\n", + "2019-02-22 00:00:00: Portfolio Value - 6347274.20\n", + "2019-02-25 00:00:00: Portfolio Value - 6288567.71\n", + "2019-02-26 00:00:00: Portfolio Value - 6359786.77\n", + "2019-02-27 00:00:00: Portfolio Value - 6330908.38\n", + "2019-02-28 00:00:00: Portfolio Value - 6393110.01\n", + "2019-03-01 00:00:00: Portfolio Value - 6414076.47\n", + "2019-03-04 00:00:00: Portfolio Value - 6390724.58\n", + "2019-03-05 00:00:00: Portfolio Value - 6411049.60\n", + "2019-03-06 00:00:00: Portfolio Value - 6351226.53\n", + "2019-03-07 00:00:00: Portfolio Value - 6359680.90\n", + "2019-03-08 00:00:00: Portfolio Value - 6358415.25\n", + "2019-03-11 00:00:00: Portfolio Value - 6423420.50\n", + "2019-03-12 00:00:00: Portfolio Value - 6435249.52\n", + "2019-03-13 00:00:00: Portfolio Value - 6496478.87\n", + "2019-03-14 00:00:00: Portfolio Value - 6522164.91\n", + "2019-03-15 00:00:00: Portfolio Value - 6568944.54\n", + "2019-03-18 00:00:00: Portfolio Value - 6574976.35\n", + "2019-03-19 00:00:00: Portfolio Value - 6587053.11\n", + "2019-03-20 00:00:00: Portfolio Value - 6568776.32\n", + "2019-03-21 00:00:00: Portfolio Value - 6698422.47\n", + "2019-03-22 00:00:00: Portfolio Value - 6607211.70\n", + "2019-03-25 00:00:00: Portfolio Value - 6636419.29\n", + "2019-03-26 00:00:00: Portfolio Value - 6686874.30\n", + "2019-03-27 00:00:00: Portfolio Value - 6684677.23\n", + "2019-03-28 00:00:00: Portfolio Value - 6718818.66\n", + "2019-03-29 00:00:00: Portfolio Value - 6765808.44\n", + "2019-04-01 00:00:00: Portfolio Value - 6776468.38\n", + "2019-04-02 00:00:00: Portfolio Value - 6774158.88\n", + "2019-04-03 00:00:00: Portfolio Value - 6769383.33\n", + "2019-04-04 00:00:00: Portfolio Value - 6741025.30\n", + "2019-04-05 00:00:00: Portfolio Value - 6785199.45\n", + "2019-04-08 00:00:00: Portfolio Value - 6795863.10\n", + "2019-04-09 00:00:00: Portfolio Value - 6774786.70\n", + "2019-04-10 00:00:00: Portfolio Value - 6821820.97\n", + "2019-04-11 00:00:00: Portfolio Value - 6855376.30\n", + "2019-04-12 00:00:00: Portfolio Value - 6876605.52\n", + "2019-04-15 00:00:00: Portfolio Value - 6910738.26\n", + "2019-04-16 00:00:00: Portfolio Value - 6883101.58\n", + "2019-04-17 00:00:00: Portfolio Value - 6809718.92\n", + "2019-04-18 00:00:00: Portfolio Value - 6828728.45\n", + "2019-04-22 00:00:00: Portfolio Value - 6828389.56\n", + "2019-04-23 00:00:00: Portfolio Value - 6902644.83\n", + "2019-04-24 00:00:00: Portfolio Value - 6915522.11\n", + "2019-04-25 00:00:00: Portfolio Value - 6926879.78\n", + "2019-04-26 00:00:00: Portfolio Value - 6966504.43\n", + "2019-04-29 00:00:00: Portfolio Value - 6934245.83\n", + "2019-04-30 00:00:00: Portfolio Value - 7033557.79\n", + "2019-05-01 00:00:00: Portfolio Value - 6921883.64\n", + "2019-05-02 00:00:00: Portfolio Value - 6964310.95\n", + "2019-05-03 00:00:00: Portfolio Value - 7020214.03\n", + "2019-05-06 00:00:00: Portfolio Value - 7018106.91\n", + "2019-05-07 00:00:00: Portfolio Value - 6918416.46\n", + "2019-05-08 00:00:00: Portfolio Value - 6901630.46\n", + "2019-05-09 00:00:00: Portfolio Value - 6897297.89\n", + "2019-05-10 00:00:00: Portfolio Value - 6955206.40\n", + "2019-05-13 00:00:00: Portfolio Value - 6855866.75\n", + "2019-05-14 00:00:00: Portfolio Value - 6887501.66\n", + "2019-05-15 00:00:00: Portfolio Value - 6910792.88\n", + "2019-05-16 00:00:00: Portfolio Value - 6985985.30\n", + "2019-05-17 00:00:00: Portfolio Value - 6981865.84\n", + "2019-05-20 00:00:00: Portfolio Value - 6930237.04\n", + "2019-05-21 00:00:00: Portfolio Value - 7079598.55\n", + "2019-05-22 00:00:00: Portfolio Value - 7119632.77\n", + "2019-05-23 00:00:00: Portfolio Value - 7075644.06\n", + "2019-05-24 00:00:00: Portfolio Value - 7113037.02\n", + "2019-05-28 00:00:00: Portfolio Value - 7058811.58\n", + "2019-05-29 00:00:00: Portfolio Value - 6971458.75\n", + "2019-05-30 00:00:00: Portfolio Value - 7058193.32\n", + "2019-05-31 00:00:00: Portfolio Value - 7015093.32\n", + "2019-06-03 00:00:00: Portfolio Value - 7070101.03\n", + "2019-06-04 00:00:00: Portfolio Value - 7136321.52\n", + "2019-06-05 00:00:00: Portfolio Value - 7311363.32\n", + "2019-06-06 00:00:00: Portfolio Value - 7413460.52\n", + "2019-06-07 00:00:00: Portfolio Value - 7495274.02\n", + "2019-06-10 00:00:00: Portfolio Value - 7506622.43\n", + "2019-06-11 00:00:00: Portfolio Value - 7439623.57\n", + "2019-06-12 00:00:00: Portfolio Value - 7509920.13\n", + "2019-06-13 00:00:00: Portfolio Value - 7502341.34\n", + "2019-06-14 00:00:00: Portfolio Value - 7520228.84\n", + "2019-06-17 00:00:00: Portfolio Value - 7514545.84\n", + "2019-06-18 00:00:00: Portfolio Value - 7516895.53\n", + "2019-06-19 00:00:00: Portfolio Value - 7557628.82\n", + "2019-06-20 00:00:00: Portfolio Value - 7617799.29\n", + "2019-06-21 00:00:00: Portfolio Value - 7572294.51\n", + "2019-06-24 00:00:00: Portfolio Value - 7583805.53\n", + "2019-06-25 00:00:00: Portfolio Value - 7524727.34\n", + "2019-06-26 00:00:00: Portfolio Value - 7387337.16\n", + "2019-06-27 00:00:00: Portfolio Value - 7439989.09\n", + "2019-06-28 00:00:00: Portfolio Value - 7509834.11\n", + "2019-07-01 00:00:00: Portfolio Value - 7563347.91\n", + "2019-07-02 00:00:00: Portfolio Value - 7636699.79\n", + "2019-07-03 00:00:00: Portfolio Value - 7732476.17\n", + "2019-07-05 00:00:00: Portfolio Value - 7703766.97\n", + "2019-07-08 00:00:00: Portfolio Value - 7702117.86\n", + "2019-07-09 00:00:00: Portfolio Value - 7709084.01\n", + "2019-07-10 00:00:00: Portfolio Value - 7752935.63\n", + "2019-07-11 00:00:00: Portfolio Value - 7775556.44\n", + "2019-07-12 00:00:00: Portfolio Value - 7797232.61\n", + "2019-07-15 00:00:00: Portfolio Value - 7834166.33\n", + "2019-07-16 00:00:00: Portfolio Value - 7806642.03\n", + "2019-07-17 00:00:00: Portfolio Value - 7767449.16\n", + "2019-07-18 00:00:00: Portfolio Value - 7824278.51\n", + "2019-07-19 00:00:00: Portfolio Value - 7772540.54\n", + "2019-07-22 00:00:00: Portfolio Value - 7767261.38\n", + "2019-07-23 00:00:00: Portfolio Value - 7787415.09\n", + "2019-07-24 00:00:00: Portfolio Value - 7812430.98\n", + "2019-07-25 00:00:00: Portfolio Value - 7768682.30\n", + "2019-07-26 00:00:00: Portfolio Value - 7819092.17\n", + "2019-07-29 00:00:00: Portfolio Value - 7829639.90\n", + "2019-07-30 00:00:00: Portfolio Value - 7809021.63\n", + "2019-07-31 00:00:00: Portfolio Value - 7677021.29\n", + "2019-08-01 00:00:00: Portfolio Value - 7669561.41\n", + "2019-08-02 00:00:00: Portfolio Value - 7667382.02\n", + "2019-08-05 00:00:00: Portfolio Value - 7411627.49\n", + "2019-08-06 00:00:00: Portfolio Value - 7566416.36\n", + "2019-08-07 00:00:00: Portfolio Value - 7642852.41\n", + "2019-08-08 00:00:00: Portfolio Value - 7779946.03\n", + "2019-08-09 00:00:00: Portfolio Value - 7786986.62\n", + "2019-08-12 00:00:00: Portfolio Value - 7695850.55\n", + "2019-08-13 00:00:00: Portfolio Value - 7799229.55\n", + "2019-08-14 00:00:00: Portfolio Value - 7617154.95\n", + "2019-08-15 00:00:00: Portfolio Value - 7748675.06\n", + "2019-08-16 00:00:00: Portfolio Value - 7837684.01\n", + "2019-08-19 00:00:00: Portfolio Value - 7882023.72\n", + "2019-08-20 00:00:00: Portfolio Value - 7824928.58\n", + "2019-08-21 00:00:00: Portfolio Value - 7869565.38\n", + "2019-08-22 00:00:00: Portfolio Value - 7868264.61\n", + "2019-08-23 00:00:00: Portfolio Value - 7688246.08\n", + "2019-08-26 00:00:00: Portfolio Value - 7792975.97\n", + "2019-08-27 00:00:00: Portfolio Value - 7846103.18\n", + "2019-08-28 00:00:00: Portfolio Value - 7923618.69\n", + "2019-08-29 00:00:00: Portfolio Value - 8005709.98\n", + "2019-08-30 00:00:00: Portfolio Value - 8011407.46\n", + "2019-09-03 00:00:00: Portfolio Value - 8016315.14\n", + "2019-09-04 00:00:00: Portfolio Value - 8137041.81\n", + "2019-09-05 00:00:00: Portfolio Value - 8164412.39\n", + "2019-09-06 00:00:00: Portfolio Value - 8203557.92\n", + "2019-09-09 00:00:00: Portfolio Value - 8032422.98\n", + "2019-09-10 00:00:00: Portfolio Value - 7991747.71\n", + "2019-09-11 00:00:00: Portfolio Value - 8037039.03\n", + "2019-09-12 00:00:00: Portfolio Value - 8024964.64\n", + "2019-09-13 00:00:00: Portfolio Value - 8040278.96\n", + "2019-09-16 00:00:00: Portfolio Value - 7950727.79\n", + "2019-09-17 00:00:00: Portfolio Value - 8088738.52\n", + "2019-09-18 00:00:00: Portfolio Value - 8121833.94\n", + "2019-09-19 00:00:00: Portfolio Value - 8118076.54\n", + "2019-09-20 00:00:00: Portfolio Value - 8092337.26\n", + "2019-09-23 00:00:00: Portfolio Value - 8067172.35\n", + "2019-09-24 00:00:00: Portfolio Value - 7958754.61\n", + "2019-09-25 00:00:00: Portfolio Value - 7965280.15\n", + "2019-09-26 00:00:00: Portfolio Value - 7968552.97\n", + "2019-09-27 00:00:00: Portfolio Value - 7906841.83\n", + "2019-09-30 00:00:00: Portfolio Value - 7965452.41\n", + "2019-10-01 00:00:00: Portfolio Value - 7877765.85\n", + "2019-10-02 00:00:00: Portfolio Value - 7728697.89\n", + "2019-10-03 00:00:00: Portfolio Value - 7788466.43\n", + "2019-10-04 00:00:00: Portfolio Value - 7930618.52\n", + "2019-10-07 00:00:00: Portfolio Value - 7903179.64\n", + "2019-10-08 00:00:00: Portfolio Value - 7784120.43\n", + "2019-10-09 00:00:00: Portfolio Value - 7866541.78\n", + "2019-10-10 00:00:00: Portfolio Value - 7889547.39\n", + "2019-10-11 00:00:00: Portfolio Value - 7896067.56\n", + "2019-10-14 00:00:00: Portfolio Value - 7857565.69\n", + "2019-10-15 00:00:00: Portfolio Value - 7936487.84\n", + "2019-10-16 00:00:00: Portfolio Value - 7955951.92\n", + "2019-10-17 00:00:00: Portfolio Value - 7980553.29\n", + "2019-10-18 00:00:00: Portfolio Value - 7963658.17\n", + "2019-10-21 00:00:00: Portfolio Value - 7957064.12\n", + "2019-10-22 00:00:00: Portfolio Value - 7849731.63\n", + "2019-10-23 00:00:00: Portfolio Value - 7854933.57\n", + "2019-10-24 00:00:00: Portfolio Value - 7918534.63\n", + "2019-10-25 00:00:00: Portfolio Value - 7969780.23\n", + "2019-10-28 00:00:00: Portfolio Value - 8018797.11\n", + "2019-10-29 00:00:00: Portfolio Value - 8060509.74\n", + "2019-10-30 00:00:00: Portfolio Value - 8151010.43\n", + "2019-10-31 00:00:00: Portfolio Value - 8110433.26\n", + "2019-11-01 00:00:00: Portfolio Value - 8138904.74\n", + "2019-11-04 00:00:00: Portfolio Value - 8046609.28\n", + "2019-11-05 00:00:00: Portfolio Value - 8010378.72\n", + "2019-11-06 00:00:00: Portfolio Value - 8083904.33\n", + "2019-11-07 00:00:00: Portfolio Value - 8075720.37\n", + "2019-11-08 00:00:00: Portfolio Value - 8086723.17\n", + "2019-11-11 00:00:00: Portfolio Value - 8094903.40\n", + "2019-11-12 00:00:00: Portfolio Value - 8089713.73\n", + "2019-11-13 00:00:00: Portfolio Value - 8160138.87\n", + "2019-11-14 00:00:00: Portfolio Value - 8189105.09\n", + "2019-11-15 00:00:00: Portfolio Value - 8186735.52\n", + "2019-11-18 00:00:00: Portfolio Value - 8219613.65\n", + "2019-11-19 00:00:00: Portfolio Value - 8223669.74\n", + "2019-11-20 00:00:00: Portfolio Value - 8211109.61\n", + "2019-11-21 00:00:00: Portfolio Value - 8164817.62\n", + "2019-11-22 00:00:00: Portfolio Value - 8154597.72\n", + "2019-11-25 00:00:00: Portfolio Value - 8177772.89\n", + "2019-11-26 00:00:00: Portfolio Value - 8273302.80\n", + "2019-11-27 00:00:00: Portfolio Value - 8322608.81\n", + "2019-11-29 00:00:00: Portfolio Value - 8285659.15\n", + "2019-12-02 00:00:00: Portfolio Value - 8249326.87\n", + "2019-12-03 00:00:00: Portfolio Value - 8182762.93\n", + "2019-12-04 00:00:00: Portfolio Value - 8223805.76\n", + "2019-12-05 00:00:00: Portfolio Value - 8247690.90\n", + "2019-12-06 00:00:00: Portfolio Value - 8280304.41\n", + "2019-12-09 00:00:00: Portfolio Value - 8278319.63\n", + "2019-12-10 00:00:00: Portfolio Value - 8403639.46\n", + "2019-12-11 00:00:00: Portfolio Value - 8411091.73\n", + "2019-12-12 00:00:00: Portfolio Value - 8424602.67\n", + "2019-12-13 00:00:00: Portfolio Value - 8471431.15\n", + "2019-12-16 00:00:00: Portfolio Value - 8484354.16\n", + "2019-12-17 00:00:00: Portfolio Value - 8493209.12\n", + "2019-12-18 00:00:00: Portfolio Value - 8491297.86\n", + "2019-12-19 00:00:00: Portfolio Value - 8537082.88\n", + "2019-12-20 00:00:00: Portfolio Value - 8607713.87\n", + "2019-12-23 00:00:00: Portfolio Value - 8556305.05\n", + "2019-12-24 00:00:00: Portfolio Value - 8577935.38\n", + "2019-12-26 00:00:00: Portfolio Value - 8572421.70\n", + "2019-12-27 00:00:00: Portfolio Value - 8577042.96\n", + "2019-12-30 00:00:00: Portfolio Value - 8511312.72\n", + "2019-12-31 00:00:00: Portfolio Value - 8548869.99\n", + "2020-01-02 00:00:00: Portfolio Value - 8557542.91\n", + "2020-01-03 00:00:00: Portfolio Value - 8555051.85\n", + "2020-01-06 00:00:00: Portfolio Value - 8547020.62\n", + "2020-01-07 00:00:00: Portfolio Value - 8484222.12\n", + "2020-01-08 00:00:00: Portfolio Value - 8522176.61\n", + "2020-01-09 00:00:00: Portfolio Value - 8586570.00\n", + "2020-01-10 00:00:00: Portfolio Value - 8552214.25\n", + "2020-01-13 00:00:00: Portfolio Value - 8598944.83\n", + "2020-01-14 00:00:00: Portfolio Value - 8600482.93\n", + "2020-01-15 00:00:00: Portfolio Value - 8673952.43\n", + "2020-01-16 00:00:00: Portfolio Value - 8726438.86\n", + "2020-01-17 00:00:00: Portfolio Value - 8772368.02\n", + "2020-01-21 00:00:00: Portfolio Value - 8823486.55\n", + "2020-01-22 00:00:00: Portfolio Value - 8855439.08\n", + "2020-01-23 00:00:00: Portfolio Value - 8880424.15\n", + "2020-01-24 00:00:00: Portfolio Value - 8798335.52\n", + "2020-01-27 00:00:00: Portfolio Value - 8729070.31\n", + "2020-01-28 00:00:00: Portfolio Value - 8762730.86\n", + "2020-01-29 00:00:00: Portfolio Value - 8745353.83\n", + "2020-01-30 00:00:00: Portfolio Value - 8763951.48\n", + "2020-01-31 00:00:00: Portfolio Value - 8664900.28\n", + "2020-02-03 00:00:00: Portfolio Value - 8740531.36\n", + "2020-02-04 00:00:00: Portfolio Value - 8818105.60\n", + "2020-02-05 00:00:00: Portfolio Value - 8885920.23\n", + "2020-02-06 00:00:00: Portfolio Value - 8804365.47\n", + "2020-02-07 00:00:00: Portfolio Value - 8767132.11\n", + "2020-02-10 00:00:00: Portfolio Value - 8816958.52\n", + "2020-02-11 00:00:00: Portfolio Value - 8819480.79\n", + "2020-02-12 00:00:00: Portfolio Value - 8838764.23\n", + "2020-02-13 00:00:00: Portfolio Value - 8886757.12\n", + "2020-02-14 00:00:00: Portfolio Value - 8914350.52\n", + "2020-02-18 00:00:00: Portfolio Value - 8944249.16\n", + "2020-02-19 00:00:00: Portfolio Value - 8944655.47\n", + "2020-02-20 00:00:00: Portfolio Value - 8929731.00\n", + "2020-02-21 00:00:00: Portfolio Value - 8882183.36\n", + "2020-02-24 00:00:00: Portfolio Value - 8710100.39\n", + "2020-02-25 00:00:00: Portfolio Value - 8499131.33\n", + "2020-02-26 00:00:00: Portfolio Value - 8458609.04\n", + "2020-02-27 00:00:00: Portfolio Value - 8163412.01\n", + "2020-02-28 00:00:00: Portfolio Value - 8000199.46\n", + "2020-03-02 00:00:00: Portfolio Value - 8430952.45\n", + "2020-03-03 00:00:00: Portfolio Value - 8257459.45\n", + "2020-03-04 00:00:00: Portfolio Value - 8733177.56\n", + "2020-03-05 00:00:00: Portfolio Value - 8474154.78\n", + "2020-03-06 00:00:00: Portfolio Value - 8471764.94\n", + "2020-03-09 00:00:00: Portfolio Value - 8182198.25\n", + "2020-03-10 00:00:00: Portfolio Value - 8475232.26\n", + "2020-03-11 00:00:00: Portfolio Value - 8026864.04\n", + "2020-03-12 00:00:00: Portfolio Value - 7245391.09\n", + "2020-03-13 00:00:00: Portfolio Value - 7751481.95\n", + "2020-03-16 00:00:00: Portfolio Value - 6745711.81\n", + "2020-03-17 00:00:00: Portfolio Value - 7461363.23\n", + "2020-03-18 00:00:00: Portfolio Value - 6941975.05\n", + "2020-03-19 00:00:00: Portfolio Value - 6814068.70\n", + "2020-03-20 00:00:00: Portfolio Value - 6285831.27\n", + "2020-03-23 00:00:00: Portfolio Value - 6038581.15\n", + "2020-03-24 00:00:00: Portfolio Value - 6652475.36\n", + "2020-03-25 00:00:00: Portfolio Value - 6658025.96\n", + "2020-03-26 00:00:00: Portfolio Value - 7202858.66\n", + "2020-03-27 00:00:00: Portfolio Value - 7045988.64\n", + "2020-03-30 00:00:00: Portfolio Value - 7401766.67\n", + "2020-03-31 00:00:00: Portfolio Value - 7182350.69\n", + "2020-04-01 00:00:00: Portfolio Value - 6841042.60\n", + "2020-04-02 00:00:00: Portfolio Value - 7065684.93\n", + "2020-04-03 00:00:00: Portfolio Value - 6988825.71\n", + "2020-04-06 00:00:00: Portfolio Value - 7539879.22\n", + "2020-04-07 00:00:00: Portfolio Value - 7524583.23\n", + "2020-04-08 00:00:00: Portfolio Value - 7752835.71\n", + "2020-04-09 00:00:00: Portfolio Value - 7900019.03\n", + "2020-04-13 00:00:00: Portfolio Value - 7813767.48\n", + "2020-04-14 00:00:00: Portfolio Value - 8192935.09\n", + "2020-04-15 00:00:00: Portfolio Value - 8010757.72\n", + "2020-04-16 00:00:00: Portfolio Value - 8188585.51\n", + "2020-04-17 00:00:00: Portfolio Value - 8331988.06\n", + "2020-04-20 00:00:00: Portfolio Value - 8219067.81\n", + "2020-04-21 00:00:00: Portfolio Value - 7982900.80\n", + "2020-04-22 00:00:00: Portfolio Value - 8168346.36\n", + "2020-04-23 00:00:00: Portfolio Value - 8107479.87\n", + "2020-04-24 00:00:00: Portfolio Value - 8238411.12\n", + "2020-04-27 00:00:00: Portfolio Value - 8306244.06\n", + "2020-04-28 00:00:00: Portfolio Value - 8183782.81\n", + "2020-04-29 00:00:00: Portfolio Value - 8210555.95\n", + "2020-04-30 00:00:00: Portfolio Value - 8089726.35\n", + "2020-05-01 00:00:00: Portfolio Value - 8013360.25\n", + "2020-05-04 00:00:00: Portfolio Value - 8085473.73\n", + "2020-05-05 00:00:00: Portfolio Value - 8234015.18\n", + "2020-05-06 00:00:00: Portfolio Value - 8174904.79\n", + "2020-05-07 00:00:00: Portfolio Value - 8219203.82\n", + "2020-05-08 00:00:00: Portfolio Value - 8358722.00\n", + "2020-05-11 00:00:00: Portfolio Value - 8440635.15\n", + "2020-05-12 00:00:00: Portfolio Value - 8335701.35\n", + "2020-05-13 00:00:00: Portfolio Value - 8244278.26\n", + "2020-05-14 00:00:00: Portfolio Value - 8272544.10\n", + "2020-05-15 00:00:00: Portfolio Value - 8401480.45\n", + "2020-05-18 00:00:00: Portfolio Value - 8547283.07\n", + "2020-05-19 00:00:00: Portfolio Value - 8541755.58\n", + "2020-05-20 00:00:00: Portfolio Value - 8568935.04\n", + "2020-05-21 00:00:00: Portfolio Value - 8516582.29\n", + "2020-05-22 00:00:00: Portfolio Value - 8585617.86\n", + "2020-05-26 00:00:00: Portfolio Value - 8529975.82\n", + "2020-05-27 00:00:00: Portfolio Value - 8690817.99\n", + "2020-05-28 00:00:00: Portfolio Value - 8822299.56\n", + "2020-05-29 00:00:00: Portfolio Value - 8883713.36\n", + "2020-06-01 00:00:00: Portfolio Value - 8835001.28\n", + "2020-06-02 00:00:00: Portfolio Value - 8890397.19\n", + "2020-06-03 00:00:00: Portfolio Value - 8960267.95\n", + "2020-06-04 00:00:00: Portfolio Value - 8846144.46\n", + "2020-06-05 00:00:00: Portfolio Value - 8903367.55\n", + "2020-06-08 00:00:00: Portfolio Value - 8926613.37\n", + "2020-06-09 00:00:00: Portfolio Value - 8842738.02\n", + "2020-06-10 00:00:00: Portfolio Value - 8857518.82\n", + "2020-06-11 00:00:00: Portfolio Value - 8485909.61\n", + "2020-06-12 00:00:00: Portfolio Value - 8502901.00\n", + "2020-06-15 00:00:00: Portfolio Value - 8609900.49\n", + "2020-06-16 00:00:00: Portfolio Value - 8781669.54\n", + "2020-06-17 00:00:00: Portfolio Value - 8833267.59\n", + "2020-06-18 00:00:00: Portfolio Value - 8848173.75\n", + "2020-06-19 00:00:00: Portfolio Value - 8740159.53\n", + "2020-06-22 00:00:00: Portfolio Value - 8776414.15\n", + "2020-06-23 00:00:00: Portfolio Value - 8750489.15\n", + "2020-06-24 00:00:00: Portfolio Value - 8571794.98\n", + "2020-06-25 00:00:00: Portfolio Value - 8634659.20\n", + "2020-06-26 00:00:00: Portfolio Value - 8571737.24\n", + "2020-06-29 00:00:00: Portfolio Value - 8685704.81\n", + "2020-06-30 00:00:00: Portfolio Value - 8808718.59\n", + "2020-07-01 00:00:00: Portfolio Value - 8876063.85\n", + "2020-07-02 00:00:00: Portfolio Value - 8923828.36\n", + "2020-07-06 00:00:00: Portfolio Value - 8936577.16\n", + "2020-07-07 00:00:00: Portfolio Value - 8919861.95\n", + "2020-07-08 00:00:00: Portfolio Value - 8928520.98\n", + "2020-07-09 00:00:00: Portfolio Value - 8947039.55\n", + "2020-07-10 00:00:00: Portfolio Value - 9020052.10\n", + "2020-07-13 00:00:00: Portfolio Value - 8911211.40\n", + "2020-07-14 00:00:00: Portfolio Value - 9108628.31\n", + "2020-07-15 00:00:00: Portfolio Value - 9199122.46\n", + "2020-07-16 00:00:00: Portfolio Value - 9231980.41\n", + "2020-07-17 00:00:00: Portfolio Value - 9331902.56\n", + "2020-07-20 00:00:00: Portfolio Value - 9364202.54\n", + "2020-07-21 00:00:00: Portfolio Value - 9371478.28\n", + "2020-07-22 00:00:00: Portfolio Value - 9445209.87\n", + "2020-07-23 00:00:00: Portfolio Value - 9407121.92\n", + "2020-07-24 00:00:00: Portfolio Value - 9396993.66\n", + "2020-07-27 00:00:00: Portfolio Value - 9417779.02\n", + "2020-07-28 00:00:00: Portfolio Value - 9397148.65\n", + "2020-07-29 00:00:00: Portfolio Value - 9520936.42\n", + "2020-07-30 00:00:00: Portfolio Value - 9562230.48\n", + "2020-07-31 00:00:00: Portfolio Value - 9645919.89\n", + "2020-08-03 00:00:00: Portfolio Value - 9682680.14\n", + "2020-08-04 00:00:00: Portfolio Value - 9747335.27\n", + "2020-08-05 00:00:00: Portfolio Value - 9723585.91\n", + "2020-08-06 00:00:00: Portfolio Value - 9621519.17\n", + "2020-08-07 00:00:00: Portfolio Value - 9647920.51\n", + "2020-08-10 00:00:00: Portfolio Value - 9560949.32\n", + "2020-08-11 00:00:00: Portfolio Value - 9450035.28\n", + "2020-08-12 00:00:00: Portfolio Value - 9588532.35\n", + "2020-08-13 00:00:00: Portfolio Value - 9623417.01\n", + "2020-08-14 00:00:00: Portfolio Value - 9609037.49\n", + "2020-08-17 00:00:00: Portfolio Value - 9659281.14\n", + "2020-08-18 00:00:00: Portfolio Value - 9711588.97\n", + "2020-08-19 00:00:00: Portfolio Value - 9665531.02\n", + "2020-08-20 00:00:00: Portfolio Value - 9652624.53\n", + "2020-08-21 00:00:00: Portfolio Value - 9649396.62\n", + "2020-08-24 00:00:00: Portfolio Value - 9641362.11\n", + "2020-08-25 00:00:00: Portfolio Value - 9627184.22\n", + "2020-08-26 00:00:00: Portfolio Value - 9642680.27\n", + "2020-08-27 00:00:00: Portfolio Value - 9662163.26\n", + "2020-08-28 00:00:00: Portfolio Value - 9636261.95\n", + "2020-08-31 00:00:00: Portfolio Value - 9668296.61\n", + "2020-09-01 00:00:00: Portfolio Value - 9732870.01\n", + "2020-09-02 00:00:00: Portfolio Value - 9946407.51\n", + "2020-09-03 00:00:00: Portfolio Value - 9638856.49\n", + "2020-09-04 00:00:00: Portfolio Value - 9532320.85\n", + "2020-09-08 00:00:00: Portfolio Value - 9398879.75\n", + "2020-09-09 00:00:00: Portfolio Value - 9642184.47\n", + "2020-09-10 00:00:00: Portfolio Value - 9500965.66\n", + "2020-09-11 00:00:00: Portfolio Value - 9554935.89\n", + "2020-09-14 00:00:00: Portfolio Value - 9654110.49\n", + "2020-09-15 00:00:00: Portfolio Value - 9685191.67\n", + "2020-09-16 00:00:00: Portfolio Value - 9642637.55\n", + "2020-09-17 00:00:00: Portfolio Value - 9602136.98\n", + "2020-09-18 00:00:00: Portfolio Value - 9527210.32\n", + "2020-09-21 00:00:00: Portfolio Value - 9425627.39\n", + "2020-09-22 00:00:00: Portfolio Value - 9491583.19\n", + "2020-09-23 00:00:00: Portfolio Value - 9294911.17\n", + "2020-09-24 00:00:00: Portfolio Value - 9279881.30\n", + "2020-09-25 00:00:00: Portfolio Value - 9376539.95\n", + "2020-09-28 00:00:00: Portfolio Value - 9525613.65\n", + "2020-09-29 00:00:00: Portfolio Value - 9507813.85\n", + "2020-09-30 00:00:00: Portfolio Value - 9617371.96\n", + "2020-10-01 00:00:00: Portfolio Value - 9673266.86\n", + "2020-10-02 00:00:00: Portfolio Value - 9572971.84\n", + "2020-10-05 00:00:00: Portfolio Value - 9688184.62\n", + "2020-10-06 00:00:00: Portfolio Value - 9546804.21\n", + "2020-10-07 00:00:00: Portfolio Value - 9653215.78\n", + "2020-10-08 00:00:00: Portfolio Value - 9718117.96\n", + "2020-10-09 00:00:00: Portfolio Value - 9800727.38\n", + "2020-10-12 00:00:00: Portfolio Value - 9930286.02\n", + "2020-10-13 00:00:00: Portfolio Value - 9947381.72\n", + "2020-10-14 00:00:00: Portfolio Value - 9910158.73\n", + "2020-10-15 00:00:00: Portfolio Value - 9973973.09\n", + "2020-10-16 00:00:00: Portfolio Value - 9983936.75\n", + "2020-10-19 00:00:00: Portfolio Value - 9814830.07\n", + "2020-10-20 00:00:00: Portfolio Value - 9809247.47\n", + "2020-10-21 00:00:00: Portfolio Value - 9849716.83\n", + "2020-10-22 00:00:00: Portfolio Value - 9832329.40\n", + "2020-10-23 00:00:00: Portfolio Value - 9868986.94\n", + "2020-10-26 00:00:00: Portfolio Value - 9699835.53\n", + "2020-10-27 00:00:00: Portfolio Value - 9660161.04\n", + "2020-10-28 00:00:00: Portfolio Value - 9430180.21\n", + "2020-10-29 00:00:00: Portfolio Value - 9457682.35\n", + "2020-10-30 00:00:00: Portfolio Value - 9445513.88\n", + "2020-11-02 00:00:00: Portfolio Value - 9576264.07\n", + "2020-11-03 00:00:00: Portfolio Value - 9741549.41\n", + "2020-11-04 00:00:00: Portfolio Value - 9934866.64\n", + "2020-11-05 00:00:00: Portfolio Value - 10049631.61\n", + "2020-11-06 00:00:00: Portfolio Value - 10114108.84\n", + "2020-11-09 00:00:00: Portfolio Value - 9974612.08\n", + "2020-11-10 00:00:00: Portfolio Value - 10104749.75\n", + "2020-11-11 00:00:00: Portfolio Value - 10244676.50\n", + "2020-11-12 00:00:00: Portfolio Value - 10130111.11\n", + "2020-11-13 00:00:00: Portfolio Value - 10207262.66\n", + "2020-11-16 00:00:00: Portfolio Value - 10225130.94\n", + "2020-11-17 00:00:00: Portfolio Value - 10140648.99\n", + "2020-11-18 00:00:00: Portfolio Value - 10050874.43\n", + "2020-11-19 00:00:00: Portfolio Value - 10098981.51\n", + "2020-11-20 00:00:00: Portfolio Value - 10034790.35\n", + "2020-11-23 00:00:00: Portfolio Value - 9981689.68\n", + "2020-11-24 00:00:00: Portfolio Value - 10040209.30\n", + "2020-11-25 00:00:00: Portfolio Value - 10034553.59\n", + "2020-11-27 00:00:00: Portfolio Value - 10039155.66\n", + "2020-11-30 00:00:00: Portfolio Value - 10115095.07\n", + "2020-12-01 00:00:00: Portfolio Value - 10275992.15\n", + "2020-12-02 00:00:00: Portfolio Value - 10168192.04\n", + "2020-12-03 00:00:00: Portfolio Value - 10122741.75\n", + "2020-12-04 00:00:00: Portfolio Value - 10211078.79\n", + "2020-12-07 00:00:00: Portfolio Value - 10208838.26\n", + "2020-12-08 00:00:00: Portfolio Value - 10142871.76\n", + "2020-12-09 00:00:00: Portfolio Value - 10170222.49\n", + "2020-12-10 00:00:00: Portfolio Value - 10199392.33\n", + "2020-12-11 00:00:00: Portfolio Value - 10216190.88\n", + "2020-12-14 00:00:00: Portfolio Value - 10176157.81\n", + "2020-12-15 00:00:00: Portfolio Value - 10340142.20\n", + "2020-12-16 00:00:00: Portfolio Value - 10396323.15\n", + "2020-12-17 00:00:00: Portfolio Value - 10441324.85\n", + "2020-12-18 00:00:00: Portfolio Value - 10452187.77\n", + "2020-12-21 00:00:00: Portfolio Value - 10362331.55\n", + "2020-12-22 00:00:00: Portfolio Value - 10318564.13\n", + "2020-12-23 00:00:00: Portfolio Value - 10295964.65\n", + "2020-12-24 00:00:00: Portfolio Value - 10393292.63\n", + "2020-12-28 00:00:00: Portfolio Value - 10386426.03\n", + "2020-12-29 00:00:00: Portfolio Value - 10367676.25\n", + "2020-12-30 00:00:00: Portfolio Value - 10340252.14\n", + "2020-12-31 00:00:00: Portfolio Value - 10478569.19\n", + "2021-01-04 00:00:00: Portfolio Value - 10318580.18\n", + "2021-01-05 00:00:00: Portfolio Value - 10304098.16\n", + "2021-01-06 00:00:00: Portfolio Value - 10402574.35\n", + "2021-01-07 00:00:00: Portfolio Value - 10468804.41\n", + "2021-01-08 00:00:00: Portfolio Value - 10494834.59\n", + "2021-01-11 00:00:00: Portfolio Value - 10503973.81\n", + "2021-01-12 00:00:00: Portfolio Value - 10460337.92\n", + "2021-01-13 00:00:00: Portfolio Value - 10452691.76\n", + "2021-01-14 00:00:00: Portfolio Value - 10348825.77\n", + "2021-01-15 00:00:00: Portfolio Value - 10393386.26\n", + "2021-01-19 00:00:00: Portfolio Value - 10391635.73\n", + "2021-01-20 00:00:00: Portfolio Value - 10513500.44\n", + "2021-01-21 00:00:00: Portfolio Value - 10506756.96\n", + "2021-01-22 00:00:00: Portfolio Value - 10426396.19\n", + "2021-01-25 00:00:00: Portfolio Value - 10472602.12\n", + "2021-01-26 00:00:00: Portfolio Value - 10461480.00\n", + "2021-01-27 00:00:00: Portfolio Value - 10123063.60\n", + "2021-01-28 00:00:00: Portfolio Value - 10250679.21\n", + "2021-01-29 00:00:00: Portfolio Value - 10005029.83\n", + "2021-02-01 00:00:00: Portfolio Value - 10117588.26\n", + "2021-02-02 00:00:00: Portfolio Value - 10292153.95\n", + "2021-02-03 00:00:00: Portfolio Value - 10222109.83\n", + "2021-02-04 00:00:00: Portfolio Value - 10311191.23\n", + "2021-02-05 00:00:00: Portfolio Value - 10368905.75\n", + "2021-02-08 00:00:00: Portfolio Value - 10407207.76\n", + "2021-02-09 00:00:00: Portfolio Value - 10414011.94\n", + "2021-02-10 00:00:00: Portfolio Value - 10458226.15\n", + "2021-02-11 00:00:00: Portfolio Value - 10389911.36\n", + "2021-02-12 00:00:00: Portfolio Value - 10395854.23\n", + "2021-02-16 00:00:00: Portfolio Value - 10385428.32\n", + "2021-02-17 00:00:00: Portfolio Value - 10467223.05\n", + "2021-02-18 00:00:00: Portfolio Value - 10499479.30\n", + "2021-02-19 00:00:00: Portfolio Value - 10378105.91\n", + "2021-02-22 00:00:00: Portfolio Value - 10227246.15\n", + "2021-02-23 00:00:00: Portfolio Value - 10186695.00\n", + "2021-02-24 00:00:00: Portfolio Value - 10167364.24\n", + "2021-02-25 00:00:00: Portfolio Value - 9989964.85\n", + "2021-02-26 00:00:00: Portfolio Value - 9927827.66\n", + "2021-03-01 00:00:00: Portfolio Value - 10080420.18\n", + "2021-03-02 00:00:00: Portfolio Value - 10030243.50\n", + "2021-03-03 00:00:00: Portfolio Value - 9840756.02\n", + "2021-03-04 00:00:00: Portfolio Value - 9629659.07\n", + "2021-03-05 00:00:00: Portfolio Value - 9969044.54\n", + "2021-03-08 00:00:00: Portfolio Value - 9967305.33\n", + "2021-03-09 00:00:00: Portfolio Value - 10001018.83\n", + "2021-03-10 00:00:00: Portfolio Value - 10109210.86\n", + "2021-03-11 00:00:00: Portfolio Value - 10137712.47\n", + "2021-03-12 00:00:00: Portfolio Value - 10223870.44\n", + "2021-03-15 00:00:00: Portfolio Value - 10290872.01\n", + "2021-03-16 00:00:00: Portfolio Value - 10345710.65\n", + "2021-03-17 00:00:00: Portfolio Value - 10280224.07\n", + "2021-03-18 00:00:00: Portfolio Value - 10211522.44\n", + "2021-03-19 00:00:00: Portfolio Value - 10234749.28\n", + "2021-03-22 00:00:00: Portfolio Value - 10382169.43\n", + "2021-03-23 00:00:00: Portfolio Value - 10417978.83\n", + "2021-03-24 00:00:00: Portfolio Value - 10457366.31\n", + "2021-03-25 00:00:00: Portfolio Value - 10506095.74\n", + "2021-03-26 00:00:00: Portfolio Value - 10705986.43\n", + "2021-03-29 00:00:00: Portfolio Value - 10826566.89\n", + "2021-03-30 00:00:00: Portfolio Value - 10704829.79\n", + "2021-03-31 00:00:00: Portfolio Value - 10652057.78\n", + "2021-04-01 00:00:00: Portfolio Value - 10723762.10\n", + "2021-04-05 00:00:00: Portfolio Value - 10823535.81\n", + "2021-04-06 00:00:00: Portfolio Value - 10880217.56\n", + "2021-04-07 00:00:00: Portfolio Value - 10834015.43\n", + "2021-04-08 00:00:00: Portfolio Value - 10845208.90\n", + "2021-04-09 00:00:00: Portfolio Value - 10937253.22\n", + "2021-04-12 00:00:00: Portfolio Value - 10982375.17\n", + "2021-04-13 00:00:00: Portfolio Value - 10995968.58\n", + "2021-04-14 00:00:00: Portfolio Value - 10987113.77\n", + "2021-04-15 00:00:00: Portfolio Value - 11163543.06\n", + "2021-04-16 00:00:00: Portfolio Value - 11281117.15\n", + "2021-04-19 00:00:00: Portfolio Value - 11261947.44\n", + "2021-04-20 00:00:00: Portfolio Value - 11354711.45\n", + "2021-04-21 00:00:00: Portfolio Value - 11354019.77\n", + "2021-04-22 00:00:00: Portfolio Value - 11340827.57\n", + "2021-04-23 00:00:00: Portfolio Value - 11326342.74\n", + "2021-04-26 00:00:00: Portfolio Value - 11191222.23\n", + "2021-04-27 00:00:00: Portfolio Value - 11214542.45\n", + "2021-04-28 00:00:00: Portfolio Value - 11221879.68\n", + "2021-04-29 00:00:00: Portfolio Value - 11332633.23\n", + "2021-04-30 00:00:00: Portfolio Value - 11306583.79\n", + "2021-05-03 00:00:00: Portfolio Value - 11393250.85\n", + "2021-05-04 00:00:00: Portfolio Value - 11354477.60\n", + "2021-05-05 00:00:00: Portfolio Value - 11283698.76\n", + "2021-05-06 00:00:00: Portfolio Value - 11361872.45\n", + "2021-05-07 00:00:00: Portfolio Value - 11464065.37\n", + "2021-05-10 00:00:00: Portfolio Value - 11496623.20\n", + "2021-05-11 00:00:00: Portfolio Value - 11345524.80\n", + "2021-05-12 00:00:00: Portfolio Value - 11205962.86\n", + "2021-05-13 00:00:00: Portfolio Value - 11387666.89\n", + "2021-05-14 00:00:00: Portfolio Value - 11457179.85\n", + "2021-05-17 00:00:00: Portfolio Value - 11357413.27\n", + "2021-05-18 00:00:00: Portfolio Value - 11306576.67\n", + "2021-05-19 00:00:00: Portfolio Value - 11199835.43\n", + "2021-05-20 00:00:00: Portfolio Value - 11344940.75\n", + "2021-05-21 00:00:00: Portfolio Value - 11295992.96\n", + "2021-05-24 00:00:00: Portfolio Value - 11338821.50\n", + "2021-05-25 00:00:00: Portfolio Value - 11244286.02\n", + "2021-05-26 00:00:00: Portfolio Value - 11189248.48\n", + "2021-05-27 00:00:00: Portfolio Value - 11190613.96\n", + "2021-05-28 00:00:00: Portfolio Value - 11167422.42\n", + "2021-06-01 00:00:00: Portfolio Value - 11089879.43\n", + "2021-06-02 00:00:00: Portfolio Value - 11054469.04\n", + "2021-06-03 00:00:00: Portfolio Value - 11041756.82\n", + "2021-06-04 00:00:00: Portfolio Value - 11108120.80\n", + "2021-06-07 00:00:00: Portfolio Value - 11093887.58\n", + "2021-06-08 00:00:00: Portfolio Value - 11095912.51\n", + "2021-06-09 00:00:00: Portfolio Value - 11114998.15\n", + "2021-06-10 00:00:00: Portfolio Value - 11210228.39\n", + "2021-06-11 00:00:00: Portfolio Value - 11250213.34\n", + "2021-06-14 00:00:00: Portfolio Value - 11293157.88\n", + "2021-06-15 00:00:00: Portfolio Value - 11299903.32\n", + "2021-06-16 00:00:00: Portfolio Value - 11169627.84\n", + "2021-06-17 00:00:00: Portfolio Value - 11243165.45\n", + "2021-06-18 00:00:00: Portfolio Value - 11098865.79\n", + "2021-06-21 00:00:00: Portfolio Value - 11299900.97\n", + "2021-06-22 00:00:00: Portfolio Value - 11390960.87\n", + "2021-06-23 00:00:00: Portfolio Value - 11341375.86\n", + "2021-06-24 00:00:00: Portfolio Value - 11431615.42\n", + "2021-06-25 00:00:00: Portfolio Value - 11558884.13\n", + "2021-06-28 00:00:00: Portfolio Value - 11606790.75\n", + "2021-06-29 00:00:00: Portfolio Value - 11616170.24\n", + "2021-06-30 00:00:00: Portfolio Value - 11583936.04\n", + "2021-07-01 00:00:00: Portfolio Value - 11703392.22\n", + "2021-07-02 00:00:00: Portfolio Value - 11820242.77\n", + "2021-07-06 00:00:00: Portfolio Value - 11823132.27\n", + "2021-07-07 00:00:00: Portfolio Value - 11975939.38\n", + "2021-07-08 00:00:00: Portfolio Value - 11893445.60\n", + "2021-07-09 00:00:00: Portfolio Value - 11974956.50\n", + "2021-07-12 00:00:00: Portfolio Value - 11948002.65\n", + "2021-07-13 00:00:00: Portfolio Value - 11877977.95\n", + "2021-07-14 00:00:00: Portfolio Value - 11917378.40\n", + "2021-07-15 00:00:00: Portfolio Value - 11984257.84\n", + "2021-07-16 00:00:00: Portfolio Value - 12078976.16\n", + "2021-07-19 00:00:00: Portfolio Value - 11976646.78\n", + "2021-07-20 00:00:00: Portfolio Value - 12068883.49\n", + "2021-07-21 00:00:00: Portfolio Value - 12040351.40\n", + "2021-07-22 00:00:00: Portfolio Value - 12104875.29\n", + "2021-07-23 00:00:00: Portfolio Value - 12315551.20\n", + "2021-07-26 00:00:00: Portfolio Value - 12233314.16\n", + "2021-07-27 00:00:00: Portfolio Value - 12276065.62\n", + "2021-07-28 00:00:00: Portfolio Value - 12199449.96\n", + "2021-07-29 00:00:00: Portfolio Value - 12268411.20\n", + "2021-07-30 00:00:00: Portfolio Value - 12347168.65\n", + "2021-08-02 00:00:00: Portfolio Value - 12377028.41\n", + "2021-08-03 00:00:00: Portfolio Value - 12461414.54\n", + "2021-08-04 00:00:00: Portfolio Value - 12401542.22\n", + "2021-08-05 00:00:00: Portfolio Value - 12371535.60\n", + "2021-08-06 00:00:00: Portfolio Value - 12326404.45\n", + "2021-08-09 00:00:00: Portfolio Value - 12293619.66\n", + "2021-08-10 00:00:00: Portfolio Value - 12285149.37\n", + "2021-08-11 00:00:00: Portfolio Value - 12348520.59\n", + "2021-08-12 00:00:00: Portfolio Value - 12379519.80\n", + "2021-08-13 00:00:00: Portfolio Value - 12378993.01\n", + "2021-08-16 00:00:00: Portfolio Value - 12548587.81\n", + "2021-08-17 00:00:00: Portfolio Value - 12535118.48\n", + "2021-08-18 00:00:00: Portfolio Value - 12413565.38\n", + "2021-08-19 00:00:00: Portfolio Value - 12542800.85\n", + "2021-08-20 00:00:00: Portfolio Value - 12626151.70\n", + "2021-08-23 00:00:00: Portfolio Value - 12554545.88\n", + "2021-08-24 00:00:00: Portfolio Value - 12434376.97\n", + "2021-08-25 00:00:00: Portfolio Value - 12461294.40\n", + "2021-08-26 00:00:00: Portfolio Value - 12379643.21\n", + "2021-08-27 00:00:00: Portfolio Value - 12350876.82\n", + "2021-08-30 00:00:00: Portfolio Value - 12425850.30\n", + "2021-08-31 00:00:00: Portfolio Value - 12447535.71\n", + "2021-09-01 00:00:00: Portfolio Value - 12474192.74\n", + "2021-09-02 00:00:00: Portfolio Value - 12519871.11\n", + "2021-09-03 00:00:00: Portfolio Value - 12540905.41\n", + "2021-09-07 00:00:00: Portfolio Value - 12428375.49\n", + "2021-09-08 00:00:00: Portfolio Value - 12580340.57\n", + "2021-09-09 00:00:00: Portfolio Value - 12470898.90\n", + "2021-09-10 00:00:00: Portfolio Value - 12470508.20\n", + "2021-09-13 00:00:00: Portfolio Value - 12445090.27\n", + "2021-09-14 00:00:00: Portfolio Value - 12393370.61\n", + "2021-09-15 00:00:00: Portfolio Value - 12455962.93\n", + "2021-09-16 00:00:00: Portfolio Value - 12432252.10\n", + "2021-09-17 00:00:00: Portfolio Value - 12329801.06\n", + "2021-09-20 00:00:00: Portfolio Value - 12228469.48\n", + "2021-09-21 00:00:00: Portfolio Value - 12324213.77\n", + "2021-09-22 00:00:00: Portfolio Value - 12429186.89\n", + "2021-09-23 00:00:00: Portfolio Value - 12476104.31\n", + "2021-09-24 00:00:00: Portfolio Value - 12515686.82\n", + "2021-09-27 00:00:00: Portfolio Value - 12364874.86\n", + "2021-09-28 00:00:00: Portfolio Value - 12182757.47\n", + "2021-09-29 00:00:00: Portfolio Value - 12375191.21\n", + "2021-09-30 00:00:00: Portfolio Value - 12228701.60\n", + "2021-10-01 00:00:00: Portfolio Value - 12244849.10\n", + "2021-10-04 00:00:00: Portfolio Value - 12091107.92\n", + "2021-10-05 00:00:00: Portfolio Value - 12215142.66\n", + "2021-10-06 00:00:00: Portfolio Value - 12301233.90\n", + "2021-10-07 00:00:00: Portfolio Value - 12390998.81\n", + "2021-10-08 00:00:00: Portfolio Value - 12308029.25\n", + "2021-10-11 00:00:00: Portfolio Value - 12217467.24\n", + "2021-10-12 00:00:00: Portfolio Value - 12220547.05\n", + "2021-10-13 00:00:00: Portfolio Value - 12280557.05\n", + "2021-10-14 00:00:00: Portfolio Value - 12487770.64\n", + "2021-10-15 00:00:00: Portfolio Value - 12528712.94\n", + "2021-10-18 00:00:00: Portfolio Value - 12561311.30\n", + "2021-10-19 00:00:00: Portfolio Value - 12695172.23\n", + "2021-10-20 00:00:00: Portfolio Value - 12807500.68\n", + "2021-10-21 00:00:00: Portfolio Value - 12966562.88\n", + "2021-10-22 00:00:00: Portfolio Value - 13080409.10\n", + "2021-10-25 00:00:00: Portfolio Value - 13060243.57\n", + "2021-10-26 00:00:00: Portfolio Value - 13073069.79\n", + "2021-10-27 00:00:00: Portfolio Value - 12981508.70\n", + "2021-10-28 00:00:00: Portfolio Value - 12906612.46\n", + "2021-10-29 00:00:00: Portfolio Value - 12842653.77\n", + "2021-11-01 00:00:00: Portfolio Value - 12802815.21\n", + "2021-11-02 00:00:00: Portfolio Value - 12858240.74\n", + "2021-11-03 00:00:00: Portfolio Value - 12921883.70\n", + "2021-11-04 00:00:00: Portfolio Value - 12988558.90\n", + "2021-11-05 00:00:00: Portfolio Value - 13008844.03\n", + "2021-11-08 00:00:00: Portfolio Value - 13023186.57\n", + "2021-11-09 00:00:00: Portfolio Value - 13145424.57\n", + "2021-11-10 00:00:00: Portfolio Value - 13178425.47\n", + "2021-11-11 00:00:00: Portfolio Value - 13152188.73\n", + "2021-11-12 00:00:00: Portfolio Value - 13200288.36\n", + "2021-11-15 00:00:00: Portfolio Value - 13293341.82\n", + "2021-11-16 00:00:00: Portfolio Value - 13347694.64\n", + "2021-11-17 00:00:00: Portfolio Value - 13290590.10\n", + "2021-11-18 00:00:00: Portfolio Value - 13193958.08\n", + "2021-11-19 00:00:00: Portfolio Value - 13171196.18\n", + "2021-11-22 00:00:00: Portfolio Value - 13131723.65\n", + "2021-11-23 00:00:00: Portfolio Value - 13142316.40\n", + "2021-11-24 00:00:00: Portfolio Value - 13075065.91\n", + "2021-11-26 00:00:00: Portfolio Value - 12870006.80\n", + "2021-11-29 00:00:00: Portfolio Value - 13014499.29\n", + "2021-11-30 00:00:00: Portfolio Value - 12711597.02\n", + "2021-12-01 00:00:00: Portfolio Value - 12624075.80\n", + "2021-12-02 00:00:00: Portfolio Value - 12946337.75\n", + "2021-12-03 00:00:00: Portfolio Value - 12963738.90\n", + "2021-12-06 00:00:00: Portfolio Value - 13108704.90\n", + "2021-12-07 00:00:00: Portfolio Value - 13435967.59\n", + "2021-12-08 00:00:00: Portfolio Value - 13368865.68\n", + "2021-12-09 00:00:00: Portfolio Value - 13191100.62\n", + "2021-12-10 00:00:00: Portfolio Value - 13372064.96\n", + "2021-12-13 00:00:00: Portfolio Value - 13429682.93\n", + "2021-12-14 00:00:00: Portfolio Value - 13380358.76\n", + "2021-12-15 00:00:00: Portfolio Value - 13661725.98\n", + "2021-12-16 00:00:00: Portfolio Value - 13621095.64\n", + "2021-12-17 00:00:00: Portfolio Value - 13477631.80\n", + "2021-12-20 00:00:00: Portfolio Value - 13426798.49\n", + "2021-12-21 00:00:00: Portfolio Value - 13467186.05\n", + "2021-12-22 00:00:00: Portfolio Value - 13586459.31\n", + "2021-12-23 00:00:00: Portfolio Value - 13611154.20\n", + "2021-12-27 00:00:00: Portfolio Value - 13829303.41\n", + "2021-12-28 00:00:00: Portfolio Value - 13880665.71\n", + "2021-12-29 00:00:00: Portfolio Value - 14010450.95\n", + "2021-12-30 00:00:00: Portfolio Value - 13973394.28\n", + "2021-12-31 00:00:00: Portfolio Value - 14007844.44\n", + "2022-01-03 00:00:00: Portfolio Value - 13754238.02\n", + "2022-01-04 00:00:00: Portfolio Value - 13750433.47\n", + "2022-01-05 00:00:00: Portfolio Value - 13487425.47\n", + "2022-01-06 00:00:00: Portfolio Value - 13521130.61\n", + "2022-01-07 00:00:00: Portfolio Value - 13311419.29\n", + "2022-01-10 00:00:00: Portfolio Value - 13238534.01\n", + "2022-01-11 00:00:00: Portfolio Value - 13287926.88\n", + "2022-01-12 00:00:00: Portfolio Value - 13388137.14\n", + "2022-01-13 00:00:00: Portfolio Value - 13274671.24\n", + "2022-01-14 00:00:00: Portfolio Value - 13131637.82\n", + "2022-01-18 00:00:00: Portfolio Value - 12833399.21\n", + "2022-01-19 00:00:00: Portfolio Value - 12808052.96\n", + "2022-01-20 00:00:00: Portfolio Value - 12702016.61\n", + "2022-01-21 00:00:00: Portfolio Value - 12689777.77\n", + "2022-01-24 00:00:00: Portfolio Value - 12808792.26\n", + "2022-01-25 00:00:00: Portfolio Value - 12529591.27\n", + "2022-01-26 00:00:00: Portfolio Value - 12313987.26\n", + "2022-01-27 00:00:00: Portfolio Value - 12318179.55\n", + "2022-01-28 00:00:00: Portfolio Value - 12654540.07\n", + "2022-01-31 00:00:00: Portfolio Value - 12898634.08\n", + "2022-02-01 00:00:00: Portfolio Value - 12949587.28\n", + "2022-02-02 00:00:00: Portfolio Value - 13196914.16\n", + "2022-02-03 00:00:00: Portfolio Value - 13064511.19\n", + "2022-02-04 00:00:00: Portfolio Value - 12973689.04\n", + "2022-02-07 00:00:00: Portfolio Value - 12876521.14\n", + "2022-02-08 00:00:00: Portfolio Value - 12928105.01\n", + "2022-02-09 00:00:00: Portfolio Value - 13034547.14\n", + "2022-02-10 00:00:00: Portfolio Value - 12727422.19\n", + "2022-02-11 00:00:00: Portfolio Value - 12623383.41\n", + "2022-02-14 00:00:00: Portfolio Value - 12516404.18\n", + "2022-02-15 00:00:00: Portfolio Value - 12616523.94\n", + "2022-02-16 00:00:00: Portfolio Value - 12609101.04\n", + "2022-02-17 00:00:00: Portfolio Value - 12388396.68\n", + "2022-02-18 00:00:00: Portfolio Value - 12410890.40\n", + "2022-02-22 00:00:00: Portfolio Value - 12212924.39\n", + "2022-02-23 00:00:00: Portfolio Value - 11963082.87\n", + "2022-02-24 00:00:00: Portfolio Value - 12082236.67\n", + "2022-02-25 00:00:00: Portfolio Value - 12474969.02\n", + "2022-02-28 00:00:00: Portfolio Value - 12407148.01\n", + "2022-03-01 00:00:00: Portfolio Value - 12239642.40\n", + "2022-03-02 00:00:00: Portfolio Value - 12399130.94\n", + "2022-03-03 00:00:00: Portfolio Value - 12407726.18\n", + "2022-03-04 00:00:00: Portfolio Value - 12423091.77\n", + "2022-03-07 00:00:00: Portfolio Value - 12216674.09\n", + "2022-03-08 00:00:00: Portfolio Value - 11963607.80\n", + "2022-03-09 00:00:00: Portfolio Value - 12200187.11\n", + "2022-03-10 00:00:00: Portfolio Value - 12073885.53\n", + "2022-03-11 00:00:00: Portfolio Value - 11949726.78\n", + "2022-03-14 00:00:00: Portfolio Value - 11984852.46\n", + "2022-03-15 00:00:00: Portfolio Value - 12307470.25\n", + "2022-03-16 00:00:00: Portfolio Value - 12506941.96\n", + "2022-03-17 00:00:00: Portfolio Value - 12595045.01\n", + "2022-03-18 00:00:00: Portfolio Value - 12700323.79\n", + "2022-03-21 00:00:00: Portfolio Value - 12624398.62\n", + "2022-03-22 00:00:00: Portfolio Value - 12699684.12\n", + "2022-03-23 00:00:00: Portfolio Value - 12560310.96\n", + "2022-03-24 00:00:00: Portfolio Value - 12739524.55\n", + "2022-03-25 00:00:00: Portfolio Value - 12806995.34\n", + "2022-03-28 00:00:00: Portfolio Value - 12926034.45\n", + "2022-03-29 00:00:00: Portfolio Value - 13173753.71\n", + "2022-03-30 00:00:00: Portfolio Value - 13152165.35\n", + "2022-03-31 00:00:00: Portfolio Value - 12989775.43\n", + "2022-04-01 00:00:00: Portfolio Value - 12980787.45\n", + "2022-04-04 00:00:00: Portfolio Value - 13025613.19\n", + "2022-04-05 00:00:00: Portfolio Value - 13091201.28\n", + "2022-04-06 00:00:00: Portfolio Value - 13260489.55\n", + "2022-04-07 00:00:00: Portfolio Value - 13520696.34\n", + "2022-04-08 00:00:00: Portfolio Value - 13556378.05\n", + "2022-04-11 00:00:00: Portfolio Value - 13356186.39\n", + "2022-04-12 00:00:00: Portfolio Value - 13269685.98\n", + "2022-04-13 00:00:00: Portfolio Value - 13325787.93\n", + "2022-04-14 00:00:00: Portfolio Value - 13202893.55\n", + "2022-04-18 00:00:00: Portfolio Value - 13045731.13\n", + "2022-04-19 00:00:00: Portfolio Value - 13285735.54\n", + "2022-04-20 00:00:00: Portfolio Value - 13447399.53\n", + "2022-04-21 00:00:00: Portfolio Value - 13304132.97\n", + "2022-04-22 00:00:00: Portfolio Value - 12938868.34\n", + "2022-04-25 00:00:00: Portfolio Value - 13084198.99\n", + "2022-04-26 00:00:00: Portfolio Value - 12890856.17\n", + "2022-04-27 00:00:00: Portfolio Value - 12881512.42\n", + "2022-04-28 00:00:00: Portfolio Value - 12680647.68\n", + "2022-04-29 00:00:00: Portfolio Value - 12168046.84\n", + "2022-05-02 00:00:00: Portfolio Value - 12194308.66\n", + "2022-05-03 00:00:00: Portfolio Value - 12110507.00\n", + "2022-05-04 00:00:00: Portfolio Value - 12532652.77\n", + "2022-05-05 00:00:00: Portfolio Value - 12194723.07\n", + "2022-05-06 00:00:00: Portfolio Value - 12199562.83\n", + "2022-05-09 00:00:00: Portfolio Value - 11985726.86\n", + "2022-05-10 00:00:00: Portfolio Value - 11932394.66\n", + "2022-05-11 00:00:00: Portfolio Value - 11782372.22\n", + "2022-05-12 00:00:00: Portfolio Value - 11915777.78\n", + "2022-05-13 00:00:00: Portfolio Value - 12124905.26\n", + "2022-05-16 00:00:00: Portfolio Value - 12143485.59\n", + "2022-05-17 00:00:00: Portfolio Value - 12205716.08\n", + "2022-05-18 00:00:00: Portfolio Value - 11416991.73\n", + "2022-05-19 00:00:00: Portfolio Value - 11485656.80\n", + "2022-05-20 00:00:00: Portfolio Value - 11305189.00\n", + "2022-05-23 00:00:00: Portfolio Value - 11469908.24\n", + "2022-05-24 00:00:00: Portfolio Value - 11729058.46\n", + "2022-05-25 00:00:00: Portfolio Value - 11844882.74\n", + "2022-05-26 00:00:00: Portfolio Value - 12168323.55\n", + "2022-05-27 00:00:00: Portfolio Value - 12399948.38\n", + "2022-05-31 00:00:00: Portfolio Value - 12307670.05\n", + "2022-06-01 00:00:00: Portfolio Value - 12122495.35\n", + "2022-06-02 00:00:00: Portfolio Value - 12371803.45\n", + "2022-06-03 00:00:00: Portfolio Value - 12258234.98\n", + "2022-06-06 00:00:00: Portfolio Value - 12362208.60\n", + "2022-06-07 00:00:00: Portfolio Value - 12467202.04\n", + "2022-06-08 00:00:00: Portfolio Value - 12308183.62\n", + "2022-06-09 00:00:00: Portfolio Value - 12153960.26\n", + "2022-06-10 00:00:00: Portfolio Value - 11939206.45\n", + "2022-06-13 00:00:00: Portfolio Value - 11615817.80\n", + "2022-06-14 00:00:00: Portfolio Value - 11527188.24\n", + "2022-06-15 00:00:00: Portfolio Value - 11520387.20\n", + "2022-06-16 00:00:00: Portfolio Value - 11254714.25\n", + "2022-06-17 00:00:00: Portfolio Value - 11295549.14\n", + "2022-06-21 00:00:00: Portfolio Value - 11514714.27\n", + "2022-06-22 00:00:00: Portfolio Value - 11700068.41\n", + "2022-06-23 00:00:00: Portfolio Value - 11979558.00\n", + "2022-06-24 00:00:00: Portfolio Value - 12344034.31\n", + "2022-06-27 00:00:00: Portfolio Value - 12352351.58\n", + "2022-06-28 00:00:00: Portfolio Value - 12078806.84\n", + "2022-06-29 00:00:00: Portfolio Value - 12206395.72\n", + "2022-06-30 00:00:00: Portfolio Value - 12248624.24\n", + "2022-07-01 00:00:00: Portfolio Value - 12446123.90\n", + "2022-07-05 00:00:00: Portfolio Value - 12402380.87\n", + "2022-07-06 00:00:00: Portfolio Value - 12503324.68\n", + "2022-07-07 00:00:00: Portfolio Value - 12511953.47\n", + "2022-07-08 00:00:00: Portfolio Value - 12499126.97\n", + "2022-07-11 00:00:00: Portfolio Value - 12407980.27\n", + "2022-07-12 00:00:00: Portfolio Value - 12312342.04\n", + "2022-07-13 00:00:00: Portfolio Value - 12324829.44\n", + "2022-07-14 00:00:00: Portfolio Value - 12361210.58\n", + "2022-07-15 00:00:00: Portfolio Value - 12557529.46\n", + "2022-07-18 00:00:00: Portfolio Value - 12357575.28\n", + "2022-07-19 00:00:00: Portfolio Value - 12616799.16\n", + "2022-07-20 00:00:00: Portfolio Value - 12569745.66\n", + "2022-07-21 00:00:00: Portfolio Value - 12601442.86\n", + "2022-07-22 00:00:00: Portfolio Value - 12629143.12\n", + "2022-07-25 00:00:00: Portfolio Value - 12623023.65\n", + "2022-07-26 00:00:00: Portfolio Value - 12509508.87\n", + "2022-07-27 00:00:00: Portfolio Value - 12617436.90\n", + "2022-07-28 00:00:00: Portfolio Value - 12665407.25\n", + "2022-07-29 00:00:00: Portfolio Value - 12650795.60\n", + "2022-08-01 00:00:00: Portfolio Value - 12677026.71\n", + "2022-08-02 00:00:00: Portfolio Value - 12642127.10\n", + "2022-08-03 00:00:00: Portfolio Value - 12715948.26\n", + "2022-08-04 00:00:00: Portfolio Value - 12739517.20\n", + "2022-08-05 00:00:00: Portfolio Value - 12795218.55\n", + "2022-08-08 00:00:00: Portfolio Value - 12844466.58\n", + "2022-08-09 00:00:00: Portfolio Value - 12795069.03\n", + "2022-08-10 00:00:00: Portfolio Value - 12940791.00\n", + "2022-08-11 00:00:00: Portfolio Value - 12906351.59\n", + "2022-08-12 00:00:00: Portfolio Value - 13126374.31\n", + "2022-08-15 00:00:00: Portfolio Value - 13259462.88\n", + "2022-08-16 00:00:00: Portfolio Value - 13366236.34\n", + "2022-08-17 00:00:00: Portfolio Value - 13315723.00\n", + "2022-08-18 00:00:00: Portfolio Value - 13303231.39\n", + "2022-08-19 00:00:00: Portfolio Value - 13272160.44\n", + "2022-08-22 00:00:00: Portfolio Value - 13071630.92\n", + "2022-08-23 00:00:00: Portfolio Value - 12901752.48\n", + "2022-08-24 00:00:00: Portfolio Value - 12793509.75\n", + "2022-08-25 00:00:00: Portfolio Value - 12891874.80\n", + "2022-08-26 00:00:00: Portfolio Value - 12498630.16\n", + "2022-08-29 00:00:00: Portfolio Value - 12447600.94\n", + "2022-08-30 00:00:00: Portfolio Value - 12300101.46\n", + "2022-08-31 00:00:00: Portfolio Value - 12220541.78\n", + "2022-09-01 00:00:00: Portfolio Value - 12371972.77\n", + "2022-09-02 00:00:00: Portfolio Value - 12171729.95\n", + "2022-09-06 00:00:00: Portfolio Value - 12170581.06\n", + "2022-09-07 00:00:00: Portfolio Value - 12529236.03\n", + "2022-09-08 00:00:00: Portfolio Value - 12506989.47\n", + "2022-09-09 00:00:00: Portfolio Value - 12603362.46\n", + "2022-09-12 00:00:00: Portfolio Value - 12693118.09\n", + "2022-09-13 00:00:00: Portfolio Value - 12183566.12\n", + "2022-09-14 00:00:00: Portfolio Value - 12177735.29\n", + "2022-09-15 00:00:00: Portfolio Value - 12077716.45\n", + "2022-09-16 00:00:00: Portfolio Value - 12071299.04\n", + "2022-09-19 00:00:00: Portfolio Value - 11953431.64\n", + "2022-09-20 00:00:00: Portfolio Value - 11849847.47\n", + "2022-09-21 00:00:00: Portfolio Value - 11644540.21\n", + "2022-09-22 00:00:00: Portfolio Value - 11515048.80\n", + "2022-09-23 00:00:00: Portfolio Value - 11450864.62\n", + "2022-09-26 00:00:00: Portfolio Value - 11370927.02\n", + "2022-09-27 00:00:00: Portfolio Value - 11314024.96\n", + "2022-09-28 00:00:00: Portfolio Value - 11613455.49\n", + "2022-09-29 00:00:00: Portfolio Value - 11511971.65\n", + "2022-09-30 00:00:00: Portfolio Value - 11334831.22\n", + "2022-10-03 00:00:00: Portfolio Value - 11638150.07\n", + "2022-10-04 00:00:00: Portfolio Value - 11873134.53\n", + "2022-10-05 00:00:00: Portfolio Value - 11927317.91\n", + "2022-10-06 00:00:00: Portfolio Value - 11762250.86\n", + "2022-10-07 00:00:00: Portfolio Value - 11436438.50\n", + "2022-10-10 00:00:00: Portfolio Value - 11529001.07\n", + "2022-10-11 00:00:00: Portfolio Value - 11568468.96\n", + "2022-10-12 00:00:00: Portfolio Value - 11433916.23\n", + "2022-10-13 00:00:00: Portfolio Value - 11701956.80\n", + "2022-10-14 00:00:00: Portfolio Value - 11507014.38\n", + "2022-10-17 00:00:00: Portfolio Value - 11770319.35\n", + "2022-10-18 00:00:00: Portfolio Value - 11935353.65\n", + "2022-10-19 00:00:00: Portfolio Value - 11841816.27\n", + "2022-10-20 00:00:00: Portfolio Value - 11650332.26\n", + "2022-10-21 00:00:00: Portfolio Value - 11885183.91\n", + "2022-10-24 00:00:00: Portfolio Value - 12240542.16\n", + "2022-10-25 00:00:00: Portfolio Value - 12393294.93\n", + "2022-10-26 00:00:00: Portfolio Value - 12380833.79\n", + "2022-10-27 00:00:00: Portfolio Value - 12646814.24\n", + "2022-10-28 00:00:00: Portfolio Value - 12907332.40\n", + "2022-10-31 00:00:00: Portfolio Value - 12830099.12\n", + "2022-11-01 00:00:00: Portfolio Value - 12738599.10\n", + "2022-11-02 00:00:00: Portfolio Value - 12428933.89\n", + "2022-11-03 00:00:00: Portfolio Value - 12381927.48\n", + "2022-11-04 00:00:00: Portfolio Value - 12379084.37\n", + "2022-11-07 00:00:00: Portfolio Value - 12570038.95\n", + "2022-11-08 00:00:00: Portfolio Value - 12608321.01\n", + "2022-11-09 00:00:00: Portfolio Value - 12458190.08\n", + "2022-11-10 00:00:00: Portfolio Value - 12837576.95\n", + "2022-11-11 00:00:00: Portfolio Value - 12671125.54\n", + "2022-11-14 00:00:00: Portfolio Value - 12681423.45\n", + "2022-11-15 00:00:00: Portfolio Value - 12784444.74\n", + "2022-11-16 00:00:00: Portfolio Value - 12852335.31\n", + "2022-11-17 00:00:00: Portfolio Value - 12708735.60\n", + "2022-11-18 00:00:00: Portfolio Value - 12866528.10\n", + "2022-11-21 00:00:00: Portfolio Value - 13022663.31\n", + "2022-11-22 00:00:00: Portfolio Value - 13179583.81\n", + "2022-11-23 00:00:00: Portfolio Value - 13237369.53\n", + "2022-11-25 00:00:00: Portfolio Value - 13363314.15\n", + "2022-11-28 00:00:00: Portfolio Value - 13219973.56\n", + "2022-11-29 00:00:00: Portfolio Value - 13202011.61\n", + "2022-11-30 00:00:00: Portfolio Value - 13503575.52\n", + "2022-12-01 00:00:00: Portfolio Value - 13409341.32\n", + "2022-12-02 00:00:00: Portfolio Value - 13459267.94\n", + "2022-12-05 00:00:00: Portfolio Value - 13188048.40\n", + "2022-12-06 00:00:00: Portfolio Value - 12974780.24\n", + "2022-12-07 00:00:00: Portfolio Value - 12956805.58\n", + "2022-12-08 00:00:00: Portfolio Value - 13066676.79\n", + "2022-12-09 00:00:00: Portfolio Value - 12961438.91\n", + "2022-12-12 00:00:00: Portfolio Value - 13065687.25\n", + "2022-12-13 00:00:00: Portfolio Value - 13022055.05\n", + "2022-12-14 00:00:00: Portfolio Value - 12780883.34\n", + "2022-12-15 00:00:00: Portfolio Value - 12568748.13\n", + "2022-12-16 00:00:00: Portfolio Value - 12504272.46\n", + "2022-12-19 00:00:00: Portfolio Value - 12473358.54\n", + "2022-12-20 00:00:00: Portfolio Value - 12500901.22\n", + "2022-12-21 00:00:00: Portfolio Value - 12768671.93\n", + "2022-12-22 00:00:00: Portfolio Value - 12670927.32\n", + "2022-12-23 00:00:00: Portfolio Value - 12786239.18\n", + "2022-12-27 00:00:00: Portfolio Value - 12834194.05\n", + "2022-12-28 00:00:00: Portfolio Value - 12754713.09\n", + "2022-12-29 00:00:00: Portfolio Value - 12888165.85\n", + "2022-12-30 00:00:00: Portfolio Value - 12811141.72\n", + "2023-01-03 00:00:00: Portfolio Value - 12767002.40\n", + "2023-01-04 00:00:00: Portfolio Value - 12899817.09\n", + "2023-01-05 00:00:00: Portfolio Value - 12698526.36\n", + "2023-01-06 00:00:00: Portfolio Value - 13066455.32\n", + "2023-01-09 00:00:00: Portfolio Value - 12922950.44\n", + "2023-01-10 00:00:00: Portfolio Value - 12935252.37\n", + "2023-01-11 00:00:00: Portfolio Value - 13006536.38\n", + "2023-01-12 00:00:00: Portfolio Value - 12819842.69\n", + "2023-01-13 00:00:00: Portfolio Value - 12875508.45\n", + "2023-01-17 00:00:00: Portfolio Value - 12850379.98\n", + "2023-01-18 00:00:00: Portfolio Value - 12645289.99\n", + "2023-01-19 00:00:00: Portfolio Value - 12549991.85\n", + "2023-01-20 00:00:00: Portfolio Value - 12688186.31\n", + "2023-01-23 00:00:00: Portfolio Value - 12722963.14\n", + "2023-01-24 00:00:00: Portfolio Value - 12759877.09\n", + "2023-01-25 00:00:00: Portfolio Value - 12803916.22\n", + "2023-01-26 00:00:00: Portfolio Value - 12906394.40\n", + "2023-01-27 00:00:00: Portfolio Value - 12728960.08\n", + "2023-01-30 00:00:00: Portfolio Value - 12791274.43\n", + "2023-01-31 00:00:00: Portfolio Value - 12886935.16\n", + "2023-02-01 00:00:00: Portfolio Value - 13060823.18\n", + "2023-02-02 00:00:00: Portfolio Value - 12932619.69\n", + "2023-02-03 00:00:00: Portfolio Value - 12751265.35\n", + "2023-02-06 00:00:00: Portfolio Value - 12779025.32\n", + "2023-02-07 00:00:00: Portfolio Value - 12836241.33\n", + "2023-02-08 00:00:00: Portfolio Value - 12748626.35\n", + "2023-02-09 00:00:00: Portfolio Value - 12768976.38\n", + "2023-02-10 00:00:00: Portfolio Value - 12860778.95\n", + "2023-02-13 00:00:00: Portfolio Value - 13005613.30\n", + "2023-02-14 00:00:00: Portfolio Value - 12914948.33\n", + "2023-02-15 00:00:00: Portfolio Value - 13023781.04\n", + "2023-02-16 00:00:00: Portfolio Value - 12925248.73\n", + "2023-02-17 00:00:00: Portfolio Value - 13073317.87\n", + "2023-02-21 00:00:00: Portfolio Value - 12872100.46\n", + "2023-02-22 00:00:00: Portfolio Value - 12865753.17\n", + "2023-02-23 00:00:00: Portfolio Value - 12844264.93\n", + "2023-02-24 00:00:00: Portfolio Value - 12685976.47\n", + "2023-02-27 00:00:00: Portfolio Value - 12707150.77\n", + "2023-02-28 00:00:00: Portfolio Value - 12493131.13\n", + "2023-03-01 00:00:00: Portfolio Value - 12381686.84\n", + "2023-03-02 00:00:00: Portfolio Value - 12528922.06\n", + "2023-03-03 00:00:00: Portfolio Value - 12617293.51\n", + "2023-03-06 00:00:00: Portfolio Value - 12634505.20\n", + "2023-03-07 00:00:00: Portfolio Value - 12424536.40\n", + "2023-03-08 00:00:00: Portfolio Value - 12407165.68\n", + "2023-03-09 00:00:00: Portfolio Value - 12213335.39\n", + "2023-03-10 00:00:00: Portfolio Value - 12076405.58\n", + "2023-03-13 00:00:00: Portfolio Value - 12179566.59\n", + "2023-03-14 00:00:00: Portfolio Value - 12280820.05\n", + "2023-03-15 00:00:00: Portfolio Value - 12256669.84\n", + "2023-03-16 00:00:00: Portfolio Value - 12393955.02\n", + "2023-03-17 00:00:00: Portfolio Value - 12193517.63\n", + "2023-03-20 00:00:00: Portfolio Value - 12358710.97\n", + "2023-03-21 00:00:00: Portfolio Value - 12391486.65\n", + "2023-03-22 00:00:00: Portfolio Value - 12166455.82\n", + "2023-03-23 00:00:00: Portfolio Value - 12057079.20\n", + "2023-03-24 00:00:00: Portfolio Value - 12252467.43\n", + "2023-03-27 00:00:00: Portfolio Value - 12373039.37\n", + "2023-03-28 00:00:00: Portfolio Value - 12418226.19\n", + "2023-03-29 00:00:00: Portfolio Value - 12505633.79\n", + "2023-03-30 00:00:00: Portfolio Value - 12564751.41\n", + "2023-03-31 00:00:00: Portfolio Value - 12786359.26\n", + "2023-04-03 00:00:00: Portfolio Value - 12918316.97\n", + "2023-04-04 00:00:00: Portfolio Value - 12924744.58\n", + "2023-04-05 00:00:00: Portfolio Value - 13001693.12\n", + "2023-04-06 00:00:00: Portfolio Value - 13092857.23\n", + "2023-04-10 00:00:00: Portfolio Value - 13125137.30\n", + "2023-04-11 00:00:00: Portfolio Value - 13184472.82\n", + "2023-04-12 00:00:00: Portfolio Value - 13240914.94\n", + "2023-04-13 00:00:00: Portfolio Value - 13376818.01\n", + "2023-04-14 00:00:00: Portfolio Value - 13335828.51\n", + "2023-04-17 00:00:00: Portfolio Value - 13436489.97\n", + "2023-04-18 00:00:00: Portfolio Value - 13490587.73\n", + "2023-04-19 00:00:00: Portfolio Value - 13511871.27\n", + "2023-04-20 00:00:00: Portfolio Value - 13629106.41\n", + "2023-04-21 00:00:00: Portfolio Value - 13633099.82\n", + "2023-04-24 00:00:00: Portfolio Value - 13643858.70\n", + "2023-04-25 00:00:00: Portfolio Value - 13587982.86\n", + "2023-04-26 00:00:00: Portfolio Value - 13394615.14\n", + "2023-04-27 00:00:00: Portfolio Value - 13635341.55\n", + "2023-04-28 00:00:00: Portfolio Value - 13786888.16\n", + "2023-05-01 00:00:00: Portfolio Value - 13833080.17\n", + "2023-05-02 00:00:00: Portfolio Value - 13842000.81\n", + "2023-05-03 00:00:00: Portfolio Value - 13875312.40\n", + "2023-05-04 00:00:00: Portfolio Value - 13784237.42\n", + "2023-05-05 00:00:00: Portfolio Value - 13908380.36\n", + "2023-05-08 00:00:00: Portfolio Value - 13947139.72\n", + "2023-05-09 00:00:00: Portfolio Value - 13930273.31\n", + "2023-05-10 00:00:00: Portfolio Value - 14023489.63\n", + "2023-05-11 00:00:00: Portfolio Value - 13987395.05\n", + "2023-05-12 00:00:00: Portfolio Value - 13999909.40\n", + "2023-05-15 00:00:00: Portfolio Value - 13913462.85\n", + "2023-05-16 00:00:00: Portfolio Value - 13773273.53\n", + "2023-05-17 00:00:00: Portfolio Value - 13744910.67\n", + "2023-05-18 00:00:00: Portfolio Value - 13739433.86\n", + "2023-05-19 00:00:00: Portfolio Value - 13759030.87\n", + "2023-05-22 00:00:00: Portfolio Value - 13602860.33\n", + "2023-05-23 00:00:00: Portfolio Value - 13151566.37\n", + "2023-05-24 00:00:00: Portfolio Value - 13025606.86\n", + "2023-05-25 00:00:00: Portfolio Value - 13011013.80\n", + "2023-05-26 00:00:00: Portfolio Value - 13085655.01\n", + "2023-05-30 00:00:00: Portfolio Value - 13060835.52\n", + "2023-05-31 00:00:00: Portfolio Value - 12915937.55\n", + "2023-06-01 00:00:00: Portfolio Value - 12982617.44\n", + "2023-06-02 00:00:00: Portfolio Value - 13087555.87\n", + "2023-06-05 00:00:00: Portfolio Value - 13040253.43\n", + "2023-06-06 00:00:00: Portfolio Value - 12949129.46\n", + "2023-06-07 00:00:00: Portfolio Value - 12875071.52\n", + "2023-06-08 00:00:00: Portfolio Value - 13013051.54\n", + "2023-06-09 00:00:00: Portfolio Value - 12995973.10\n", + "2023-06-12 00:00:00: Portfolio Value - 13121690.28\n", + "2023-06-13 00:00:00: Portfolio Value - 13138230.13\n", + "2023-06-14 00:00:00: Portfolio Value - 13133546.70\n", + "2023-06-15 00:00:00: Portfolio Value - 13453038.72\n", + "2023-06-16 00:00:00: Portfolio Value - 13488815.95\n", + "2023-06-20 00:00:00: Portfolio Value - 13333026.87\n", + "2023-06-21 00:00:00: Portfolio Value - 13336038.95\n", + "2023-06-22 00:00:00: Portfolio Value - 13372588.56\n", + "2023-06-23 00:00:00: Portfolio Value - 13280154.05\n", + "2023-06-26 00:00:00: Portfolio Value - 13379660.05\n", + "2023-06-27 00:00:00: Portfolio Value - 13449026.44\n", + "2023-06-28 00:00:00: Portfolio Value - 13404478.37\n", + "2023-06-29 00:00:00: Portfolio Value - 13517998.63\n", + "2023-06-30 00:00:00: Portfolio Value - 13725427.75\n", + "2023-07-03 00:00:00: Portfolio Value - 13630446.49\n", + "2023-07-05 00:00:00: Portfolio Value - 13648702.87\n", + "2023-07-06 00:00:00: Portfolio Value - 13645764.56\n", + "2023-07-07 00:00:00: Portfolio Value - 13506920.37\n", + "2023-07-10 00:00:00: Portfolio Value - 13616222.25\n", + "2023-07-11 00:00:00: Portfolio Value - 13731973.39\n", + "2023-07-12 00:00:00: Portfolio Value - 13793340.57\n", + "2023-07-13 00:00:00: Portfolio Value - 13753057.01\n", + "2023-07-14 00:00:00: Portfolio Value - 13832251.49\n", + "2023-07-17 00:00:00: Portfolio Value - 13818962.82\n", + "2023-07-18 00:00:00: Portfolio Value - 13785812.98\n", + "2023-07-19 00:00:00: Portfolio Value - 13762367.17\n", + "2023-07-20 00:00:00: Portfolio Value - 13822179.68\n", + "2023-07-21 00:00:00: Portfolio Value - 13874815.20\n", + "2023-07-24 00:00:00: Portfolio Value - 13984498.23\n", + "2023-07-25 00:00:00: Portfolio Value - 14009242.11\n", + "2023-07-26 00:00:00: Portfolio Value - 14021435.38\n", + "2023-07-27 00:00:00: Portfolio Value - 13788047.74\n", + "2023-07-28 00:00:00: Portfolio Value - 13868483.42\n", + "2023-07-31 00:00:00: Portfolio Value - 13832484.81\n", + "2023-08-01 00:00:00: Portfolio Value - 13848175.99\n", + "2023-08-02 00:00:00: Portfolio Value - 13749519.26\n", + "2023-08-03 00:00:00: Portfolio Value - 13762909.48\n", + "2023-08-04 00:00:00: Portfolio Value - 13563034.37\n", + "2023-08-07 00:00:00: Portfolio Value - 13667222.04\n", + "2023-08-08 00:00:00: Portfolio Value - 13716983.59\n", + "2023-08-09 00:00:00: Portfolio Value - 13775764.58\n", + "2023-08-10 00:00:00: Portfolio Value - 13767856.80\n", + "2023-08-11 00:00:00: Portfolio Value - 13868522.45\n", + "2023-08-14 00:00:00: Portfolio Value - 13943975.05\n", + "2023-08-15 00:00:00: Portfolio Value - 13883966.77\n", + "2023-08-16 00:00:00: Portfolio Value - 13816029.23\n", + "2023-08-17 00:00:00: Portfolio Value - 13619591.05\n", + "2023-08-18 00:00:00: Portfolio Value - 13628694.17\n", + "2023-08-21 00:00:00: Portfolio Value - 13589472.79\n", + "2023-08-22 00:00:00: Portfolio Value - 13583475.56\n", + "2023-08-23 00:00:00: Portfolio Value - 13705900.03\n", + "2023-08-24 00:00:00: Portfolio Value - 13628412.23\n", + "2023-08-25 00:00:00: Portfolio Value - 13716429.44\n", + "2023-08-28 00:00:00: Portfolio Value - 13795851.32\n", + "2023-08-29 00:00:00: Portfolio Value - 14010175.82\n", + "2023-08-30 00:00:00: Portfolio Value - 14067765.92\n", + "2023-08-31 00:00:00: Portfolio Value - 13987466.91\n", + "2023-09-01 00:00:00: Portfolio Value - 13961338.92\n", + "2023-09-05 00:00:00: Portfolio Value - 13868569.63\n", + "2023-09-06 00:00:00: Portfolio Value - 13907763.79\n", + "2023-09-07 00:00:00: Portfolio Value - 13980896.14\n", + "2023-09-08 00:00:00: Portfolio Value - 14092616.35\n", + "2023-09-11 00:00:00: Portfolio Value - 14124269.64\n", + "2023-09-12 00:00:00: Portfolio Value - 14003413.96\n", + "2023-09-13 00:00:00: Portfolio Value - 14036878.51\n", + "2023-09-14 00:00:00: Portfolio Value - 14193101.60\n", + "2023-09-15 00:00:00: Portfolio Value - 13982914.42\n", + "2023-09-18 00:00:00: Portfolio Value - 14033293.51\n", + "2023-09-19 00:00:00: Portfolio Value - 13946555.63\n", + "2023-09-20 00:00:00: Portfolio Value - 14145114.89\n", + "2023-09-21 00:00:00: Portfolio Value - 13897015.60\n", + "2023-09-22 00:00:00: Portfolio Value - 13983325.12\n", + "2023-09-25 00:00:00: Portfolio Value - 13996100.10\n", + "2023-09-26 00:00:00: Portfolio Value - 13830078.80\n", + "2023-09-27 00:00:00: Portfolio Value - 13770487.76\n", + "2023-09-28 00:00:00: Portfolio Value - 13846885.39\n", + "2023-09-29 00:00:00: Portfolio Value - 13699949.30\n", + "2023-10-02 00:00:00: Portfolio Value - 13619156.18\n", + "2023-10-03 00:00:00: Portfolio Value - 13462228.76\n", + "2023-10-04 00:00:00: Portfolio Value - 13650345.24\n", + "2023-10-05 00:00:00: Portfolio Value - 13657016.83\n", + "2023-10-06 00:00:00: Portfolio Value - 13749572.68\n", + "2023-10-09 00:00:00: Portfolio Value - 13868219.62\n", + "2023-10-10 00:00:00: Portfolio Value - 13931251.07\n", + "2023-10-11 00:00:00: Portfolio Value - 13956708.19\n", + "2023-10-12 00:00:00: Portfolio Value - 13863444.43\n", + "2023-10-13 00:00:00: Portfolio Value - 13889806.01\n", + "2023-10-16 00:00:00: Portfolio Value - 14101280.12\n", + "2023-10-17 00:00:00: Portfolio Value - 14194108.21\n", + "2023-10-18 00:00:00: Portfolio Value - 14118371.43\n", + "2023-10-19 00:00:00: Portfolio Value - 13736225.93\n", + "2023-10-20 00:00:00: Portfolio Value - 13630440.63\n", + "2023-10-23 00:00:00: Portfolio Value - 13452100.10\n", + "2023-10-24 00:00:00: Portfolio Value - 13524218.41\n", + "2023-10-25 00:00:00: Portfolio Value - 13499086.37\n", + "2023-10-26 00:00:00: Portfolio Value - 13444403.73\n", + "2023-10-27 00:00:00: Portfolio Value - 13259293.94\n", + "2023-10-30 00:00:00: Portfolio Value - 13463696.75\n", + "2023-10-31 00:00:00: Portfolio Value - 13575383.84\n", + "2023-11-01 00:00:00: Portfolio Value - 13628913.42\n", + "2023-11-02 00:00:00: Portfolio Value - 13927645.46\n", + "2023-11-03 00:00:00: Portfolio Value - 14021257.07\n", + "2023-11-06 00:00:00: Portfolio Value - 14140039.83\n", + "2023-11-07 00:00:00: Portfolio Value - 14238556.54\n", + "2023-11-08 00:00:00: Portfolio Value - 14290610.75\n", + "2023-11-09 00:00:00: Portfolio Value - 14200906.69\n", + "2023-11-10 00:00:00: Portfolio Value - 14360478.23\n", + "2023-11-13 00:00:00: Portfolio Value - 14411881.64\n", + "2023-11-14 00:00:00: Portfolio Value - 14483509.47\n", + "2023-11-15 00:00:00: Portfolio Value - 14444404.88\n", + "2023-11-16 00:00:00: Portfolio Value - 14425188.86\n", + "2023-11-17 00:00:00: Portfolio Value - 14318278.63\n", + "2023-11-20 00:00:00: Portfolio Value - 14423204.30\n", + "2023-11-21 00:00:00: Portfolio Value - 14522478.11\n", + "2023-11-22 00:00:00: Portfolio Value - 14565589.98\n", + "2023-11-24 00:00:00: Portfolio Value - 14649117.46\n", + "2023-11-27 00:00:00: Portfolio Value - 14476875.85\n", + "2023-11-28 00:00:00: Portfolio Value - 14418392.30\n", + "2023-11-29 00:00:00: Portfolio Value - 14358350.57\n", + "2023-11-30 00:00:00: Portfolio Value - 14500006.83\n", + "2023-12-01 00:00:00: Portfolio Value - 14557729.90\n", + "2023-12-04 00:00:00: Portfolio Value - 14580739.34\n", + "2023-12-05 00:00:00: Portfolio Value - 14491956.98\n", + "2023-12-06 00:00:00: Portfolio Value - 14529922.83\n", + "2023-12-07 00:00:00: Portfolio Value - 14369791.65\n", + "2023-12-08 00:00:00: Portfolio Value - 14318756.50\n", + "2023-12-11 00:00:00: Portfolio Value - 14414528.94\n", + "2023-12-12 00:00:00: Portfolio Value - 14537386.82\n", + "2023-12-13 00:00:00: Portfolio Value - 14798265.19\n", + "2023-12-14 00:00:00: Portfolio Value - 14329391.98\n", + "2023-12-15 00:00:00: Portfolio Value - 14303769.90\n", + "2023-12-18 00:00:00: Portfolio Value - 14484863.59\n", + "2023-12-19 00:00:00: Portfolio Value - 14499568.16\n", + "2023-12-20 00:00:00: Portfolio Value - 14280593.13\n", + "2023-12-21 00:00:00: Portfolio Value - 14375972.80\n", + "2023-12-22 00:00:00: Portfolio Value - 14406076.28\n", + "2023-12-26 00:00:00: Portfolio Value - 14362035.94\n", + "2023-12-27 00:00:00: Portfolio Value - 14407997.81\n", + "2023-12-28 00:00:00: Portfolio Value - 14415099.40\n", + "2023-12-29 00:00:00: Portfolio Value - 14467508.63\n", + "2024-01-02 00:00:00: Portfolio Value - 14422713.43\n", + "2024-01-03 00:00:00: Portfolio Value - 14391903.28\n", + "2024-01-04 00:00:00: Portfolio Value - 14368644.79\n", + "2024-01-05 00:00:00: Portfolio Value - 14342647.79\n", + "2024-01-08 00:00:00: Portfolio Value - 14481365.31\n", + "2024-01-09 00:00:00: Portfolio Value - 14389109.75\n", + "2024-01-10 00:00:00: Portfolio Value - 14500198.89\n", + "2024-01-11 00:00:00: Portfolio Value - 14542492.80\n", + "2024-01-12 00:00:00: Portfolio Value - 14656235.52\n", + "2024-01-16 00:00:00: Portfolio Value - 14770525.63\n", + "2024-01-17 00:00:00: Portfolio Value - 14756910.36\n", + "2024-01-18 00:00:00: Portfolio Value - 14918816.19\n", + "2024-01-19 00:00:00: Portfolio Value - 15052386.43\n", + "2024-01-22 00:00:00: Portfolio Value - 15136524.01\n", + "2024-01-23 00:00:00: Portfolio Value - 15183641.94\n", + "2024-01-24 00:00:00: Portfolio Value - 15041049.41\n", + "2024-01-25 00:00:00: Portfolio Value - 15023596.59\n", + "2024-01-26 00:00:00: Portfolio Value - 15153121.27\n", + "2024-01-29 00:00:00: Portfolio Value - 15202377.46\n", + "2024-01-30 00:00:00: Portfolio Value - 15302462.41\n", + "2024-01-31 00:00:00: Portfolio Value - 15130645.25\n", + "2024-02-01 00:00:00: Portfolio Value - 15311940.88\n", + "2024-02-02 00:00:00: Portfolio Value - 15242967.25\n", + "2024-02-05 00:00:00: Portfolio Value - 15195869.46\n", + "2024-02-06 00:00:00: Portfolio Value - 15255290.14\n", + "2024-02-07 00:00:00: Portfolio Value - 15391929.29\n", + "2024-02-08 00:00:00: Portfolio Value - 15126049.43\n", + "2024-02-09 00:00:00: Portfolio Value - 15068669.44\n", + "2024-02-12 00:00:00: Portfolio Value - 15102074.80\n", + "2024-02-13 00:00:00: Portfolio Value - 15100101.54\n", + "2024-02-14 00:00:00: Portfolio Value - 15203244.73\n", + "2024-02-15 00:00:00: Portfolio Value - 15285821.66\n", + "2024-02-16 00:00:00: Portfolio Value - 15313427.69\n", + "2024-02-20 00:00:00: Portfolio Value - 15214887.79\n", + "2024-02-21 00:00:00: Portfolio Value - 15258781.42\n", + "2024-02-22 00:00:00: Portfolio Value - 15462657.59\n", + "2024-02-23 00:00:00: Portfolio Value - 15507510.19\n", + "2024-02-26 00:00:00: Portfolio Value - 15478608.82\n", + "2024-02-27 00:00:00: Portfolio Value - 15787105.66\n", + "2024-02-28 00:00:00: Portfolio Value - 15897526.69\n", + "2024-02-29 00:00:00: Portfolio Value - 15859402.77\n", + "2024-03-01 00:00:00: Portfolio Value - 15988909.46\n", + "2024-03-04 00:00:00: Portfolio Value - 16095967.93\n", + "2024-03-05 00:00:00: Portfolio Value - 16042462.86\n", + "2024-03-06 00:00:00: Portfolio Value - 16137299.50\n", + "2024-03-07 00:00:00: Portfolio Value - 16269419.29\n", + "2024-03-08 00:00:00: Portfolio Value - 16034383.09\n", + "2024-03-11 00:00:00: Portfolio Value - 16028588.28\n", + "2024-03-12 00:00:00: Portfolio Value - 16123168.48\n", + "2024-03-13 00:00:00: Portfolio Value - 16134330.53\n", + "2024-03-14 00:00:00: Portfolio Value - 16152339.98\n", + "2024-03-15 00:00:00: Portfolio Value - 16112417.94\n", + "2024-03-18 00:00:00: Portfolio Value - 16092287.85\n", + "2024-03-19 00:00:00: Portfolio Value - 16275796.28\n", + "2024-03-20 00:00:00: Portfolio Value - 16335830.39\n", + "2024-03-21 00:00:00: Portfolio Value - 16353752.90\n", + "2024-03-22 00:00:00: Portfolio Value - 16363550.52\n", + "2024-03-25 00:00:00: Portfolio Value - 16203860.25\n", + "2024-03-26 00:00:00: Portfolio Value - 16232776.12\n", + "2024-03-27 00:00:00: Portfolio Value - 16383463.77\n", + "2024-03-28 00:00:00: Portfolio Value - 16330159.58\n", + "2024-04-01 00:00:00: Portfolio Value - 16186143.51\n", + "2024-04-02 00:00:00: Portfolio Value - 16104106.92\n", + "2024-04-03 00:00:00: Portfolio Value - 16052587.71\n", + "2024-04-04 00:00:00: Portfolio Value - 15830558.40\n", + "2024-04-05 00:00:00: Portfolio Value - 15947556.32\n", + "2024-04-08 00:00:00: Portfolio Value - 15887727.11\n", + "2024-04-09 00:00:00: Portfolio Value - 15839830.41\n", + "2024-04-10 00:00:00: Portfolio Value - 15706440.18\n", + "2024-04-11 00:00:00: Portfolio Value - 15633276.74\n", + "2024-04-12 00:00:00: Portfolio Value - 15464627.24\n", + "2024-04-15 00:00:00: Portfolio Value - 15259959.56\n", + "2024-04-16 00:00:00: Portfolio Value - 15232978.25\n", + "2024-04-17 00:00:00: Portfolio Value - 15286383.05\n", + "2024-04-18 00:00:00: Portfolio Value - 15386066.26\n", + "2024-04-19 00:00:00: Portfolio Value - 15474922.70\n", + "2024-04-22 00:00:00: Portfolio Value - 15503308.16\n", + "2024-04-23 00:00:00: Portfolio Value - 15549931.65\n", + "2024-04-24 00:00:00: Portfolio Value - 15592308.64\n", + "2024-04-25 00:00:00: Portfolio Value - 15537061.63\n", + "2024-04-26 00:00:00: Portfolio Value - 15588964.82\n", + "2024-04-29 00:00:00: Portfolio Value - 15731934.45\n", + "2024-04-30 00:00:00: Portfolio Value - 15717968.00\n", + "2024-05-01 00:00:00: Portfolio Value - 15806071.34\n", + "2024-05-02 00:00:00: Portfolio Value - 15855744.28\n", + "2024-05-03 00:00:00: Portfolio Value - 15820944.95\n", + "2024-05-06 00:00:00: Portfolio Value - 16006925.74\n", + "2024-05-07 00:00:00: Portfolio Value - 16176036.21\n", + "2024-05-08 00:00:00: Portfolio Value - 16071581.33\n", + "2024-05-09 00:00:00: Portfolio Value - 16176294.24\n", + "2024-05-10 00:00:00: Portfolio Value - 16237003.99\n", + "2024-05-13 00:00:00: Portfolio Value - 16077603.03\n", + "2024-05-14 00:00:00: Portfolio Value - 16068538.86\n", + "2024-05-15 00:00:00: Portfolio Value - 16165855.11\n", + "2024-05-16 00:00:00: Portfolio Value - 16204015.49\n", + "2024-05-17 00:00:00: Portfolio Value - 16253532.12\n", + "2024-05-20 00:00:00: Portfolio Value - 16235039.33\n", + "2024-05-21 00:00:00: Portfolio Value - 16118578.05\n", + "2024-05-22 00:00:00: Portfolio Value - 16069431.98\n", + "2024-05-23 00:00:00: Portfolio Value - 15903990.30\n", + "2024-05-24 00:00:00: Portfolio Value - 15966633.37\n", + "2024-05-28 00:00:00: Portfolio Value - 15838060.16\n", + "2024-05-29 00:00:00: Portfolio Value - 15644799.17\n", + "2024-05-30 00:00:00: Portfolio Value - 15811430.75\n", + "2024-05-31 00:00:00: Portfolio Value - 15959955.88\n", + "2024-06-03 00:00:00: Portfolio Value - 16005456.14\n", + "2024-06-04 00:00:00: Portfolio Value - 16146897.88\n", + "2024-06-05 00:00:00: Portfolio Value - 16101713.42\n", + "2024-06-06 00:00:00: Portfolio Value - 16111961.71\n", + "2024-06-07 00:00:00: Portfolio Value - 16187689.67\n", + "2024-06-10 00:00:00: Portfolio Value - 16164130.28\n", + "2024-06-11 00:00:00: Portfolio Value - 16226247.72\n", + "2024-06-12 00:00:00: Portfolio Value - 16193448.07\n", + "2024-06-13 00:00:00: Portfolio Value - 16221544.36\n", + "2024-06-14 00:00:00: Portfolio Value - 16266490.86\n", + "2024-06-17 00:00:00: Portfolio Value - 16575459.73\n", + "2024-06-18 00:00:00: Portfolio Value - 16659698.30\n", + "2024-06-20 00:00:00: Portfolio Value - 16774473.37\n", + "2024-06-21 00:00:00: Portfolio Value - 16741435.85\n", + "2024-06-24 00:00:00: Portfolio Value - 16711600.30\n", + "2024-06-25 00:00:00: Portfolio Value - 16581963.73\n", + "2024-06-26 00:00:00: Portfolio Value - 16526146.30\n", + "2024-06-27 00:00:00: Portfolio Value - 16636129.96\n", + "2024-06-28 00:00:00: Portfolio Value - 16618737.31\n", + "2024-07-01 00:00:00: Portfolio Value - 16283051.71\n", + "2024-07-02 00:00:00: Portfolio Value - 16411158.46\n", + "2024-07-03 00:00:00: Portfolio Value - 16344869.86\n", + "2024-07-05 00:00:00: Portfolio Value - 16439138.27\n", + "2024-07-08 00:00:00: Portfolio Value - 16426907.04\n", + "2024-07-09 00:00:00: Portfolio Value - 16391423.58\n", + "2024-07-10 00:00:00: Portfolio Value - 16562736.60\n", + "2024-07-11 00:00:00: Portfolio Value - 16608595.91\n", + "2024-07-12 00:00:00: Portfolio Value - 16776676.37\n", + "2024-07-15 00:00:00: Portfolio Value - 16842045.12\n", + "2024-07-16 00:00:00: Portfolio Value - 17004174.13\n", + "2024-07-17 00:00:00: Portfolio Value - 17029416.98\n", + "2024-07-18 00:00:00: Portfolio Value - 16776563.36\n", + "2024-07-19 00:00:00: Portfolio Value - 16735842.10\n", + "2024-07-22 00:00:00: Portfolio Value - 16838121.38\n", + "2024-07-23 00:00:00: Portfolio Value - 16816420.01\n", + "2024-07-24 00:00:00: Portfolio Value - 16744853.09\n", + "2024-07-25 00:00:00: Portfolio Value - 16902798.51\n", + "2024-07-26 00:00:00: Portfolio Value - 17246185.54\n", + "2024-07-29 00:00:00: Portfolio Value - 17264366.71\n", + "2024-07-30 00:00:00: Portfolio Value - 17334101.34\n", + "2024-07-31 00:00:00: Portfolio Value - 17351274.12\n", + "2024-08-01 00:00:00: Portfolio Value - 17482240.46\n", + "2024-08-02 00:00:00: Portfolio Value - 17653752.39\n", + "2024-08-05 00:00:00: Portfolio Value - 17204447.46\n", + "2024-08-06 00:00:00: Portfolio Value - 17308251.94\n", + "2024-08-07 00:00:00: Portfolio Value - 17153950.35\n", + "2024-08-08 00:00:00: Portfolio Value - 17582041.77\n", + "2024-08-09 00:00:00: Portfolio Value - 17599249.82\n", + "2024-08-12 00:00:00: Portfolio Value - 17585041.29\n", + "2024-08-13 00:00:00: Portfolio Value - 17654740.20\n", + "2024-08-14 00:00:00: Portfolio Value - 17845162.25\n", + "2024-08-15 00:00:00: Portfolio Value - 17830248.19\n", + "2024-08-16 00:00:00: Portfolio Value - 17907578.01\n", + "2024-08-19 00:00:00: Portfolio Value - 17889042.38\n", + "2024-08-20 00:00:00: Portfolio Value - 17953813.29\n", + "2024-08-21 00:00:00: Portfolio Value - 18041246.73\n", + "2024-08-22 00:00:00: Portfolio Value - 17983548.01\n", + "2024-08-23 00:00:00: Portfolio Value - 17893808.85\n", + "2024-08-26 00:00:00: Portfolio Value - 18017969.68\n", + "2024-08-27 00:00:00: Portfolio Value - 18193987.35\n", + "2024-08-28 00:00:00: Portfolio Value - 18220558.84\n", + "2024-08-29 00:00:00: Portfolio Value - 18282111.58\n", + "2024-08-30 00:00:00: Portfolio Value - 18354606.14\n", + "2024-09-03 00:00:00: Portfolio Value - 18284630.85\n", + "2024-09-04 00:00:00: Portfolio Value - 18357550.51\n", + "2024-09-05 00:00:00: Portfolio Value - 18201598.24\n", + "2024-09-06 00:00:00: Portfolio Value - 18033918.05\n", + "2024-09-09 00:00:00: Portfolio Value - 18232586.61\n", + "2024-09-10 00:00:00: Portfolio Value - 18288721.53\n", + "2024-09-11 00:00:00: Portfolio Value - 18178967.35\n", + "2024-09-12 00:00:00: Portfolio Value - 18234927.87\n", + "2024-09-13 00:00:00: Portfolio Value - 18286991.14\n", + "2024-09-16 00:00:00: Portfolio Value - 18291010.57\n", + "2024-09-17 00:00:00: Portfolio Value - 18080433.65\n", + "2024-09-18 00:00:00: Portfolio Value - 17959065.92\n", + "2024-09-19 00:00:00: Portfolio Value - 17882040.18\n", + "2024-09-20 00:00:00: Portfolio Value - 17860331.59\n", + "2024-09-23 00:00:00: Portfolio Value - 18014122.38\n", + "2024-09-24 00:00:00: Portfolio Value - 17965860.77\n", + "2024-09-25 00:00:00: Portfolio Value - 18062701.18\n", + "2024-09-26 00:00:00: Portfolio Value - 18176412.18\n", + "2024-09-27 00:00:00: Portfolio Value - 18138610.77\n", + "2024-09-30 00:00:00: Portfolio Value - 18129214.99\n", + "2024-10-01 00:00:00: Portfolio Value - 18178113.51\n", + "2024-10-02 00:00:00: Portfolio Value - 17998415.98\n", + "2024-10-03 00:00:00: Portfolio Value - 17854430.10\n", + "2024-10-04 00:00:00: Portfolio Value - 17811088.67\n", + "2024-10-07 00:00:00: Portfolio Value - 17679288.84\n", + "2024-10-08 00:00:00: Portfolio Value - 17965147.79\n", + "2024-10-09 00:00:00: Portfolio Value - 18195929.78\n", + "2024-10-10 00:00:00: Portfolio Value - 17990750.70\n", + "2024-10-11 00:00:00: Portfolio Value - 18116054.17\n", + "2024-10-14 00:00:00: Portfolio Value - 18260894.42\n", + "2024-10-15 00:00:00: Portfolio Value - 18157425.26\n", + "2024-10-16 00:00:00: Portfolio Value - 18153348.98\n", + "2024-10-17 00:00:00: Portfolio Value - 18209806.14\n", + "2024-10-18 00:00:00: Portfolio Value - 18285188.45\n", + "2024-10-21 00:00:00: Portfolio Value - 18270543.01\n", + "2024-10-22 00:00:00: Portfolio Value - 18155672.75\n", + "2024-10-23 00:00:00: Portfolio Value - 18180245.01\n", + "2024-10-24 00:00:00: Portfolio Value - 18099039.39\n", + "2024-10-25 00:00:00: Portfolio Value - 17982752.97\n", + "2024-10-28 00:00:00: Portfolio Value - 17922863.69\n", + "2024-10-29 00:00:00: Portfolio Value - 17837226.79\n", + "2024-10-30 00:00:00: Portfolio Value - 17678462.26\n", + "2024-10-31 00:00:00: Portfolio Value - 17570261.29\n", + "2024-11-01 00:00:00: Portfolio Value - 17577052.42\n", + "2024-11-04 00:00:00: Portfolio Value - 17746129.19\n", + "2024-11-05 00:00:00: Portfolio Value - 17912963.99\n", + "2024-11-06 00:00:00: Portfolio Value - 18128165.85\n", + "2024-11-07 00:00:00: Portfolio Value - 18084596.01\n", + "2024-11-08 00:00:00: Portfolio Value - 18282894.87\n", + "2024-11-11 00:00:00: Portfolio Value - 18351328.21\n", + "2024-11-12 00:00:00: Portfolio Value - 18337451.85\n", + "2024-11-13 00:00:00: Portfolio Value - 18321907.02\n", + "2024-11-14 00:00:00: Portfolio Value - 18070418.39\n", + "2024-11-15 00:00:00: Portfolio Value - 17865479.79\n", + "2024-11-18 00:00:00: Portfolio Value - 18006347.72\n", + "2024-11-19 00:00:00: Portfolio Value - 17887491.83\n" ] } ], @@ -20365,7 +3822,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -20374,18 +3831,18 @@ "text": [ "\n", "Performance Metrics:\n", - "Daily Return: 0.002739206708431655\n", - "Cumulative Return: 177.67005678992533\n", - "Log Return: 0.0013846571019474373\n", - "Volatility: 0.9478032801607053\n", - "Sharpe Ratio: 0.7235468634467053\n", - "Max Drawdown: -0.8891025638381926\n", - "VaR 5%: -0.02262748632892988\n" + "Daily Return: 0.002811186051144646\n", + "Cumulative Return: 177.87491833713133\n", + "Log Return: 0.0013849630924807905\n", + "Volatility: 0.9868007104201414\n", + "Sharpe Ratio: 0.7133343920970119\n", + "Max Drawdown: -0.8972223264930794\n", + "VaR 5%: -0.022530432965060607\n" ] }, { "data": { - "image/png": "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", + "image/png": "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BwBwAoQkAIBD8fHxkVKlSklwcLA0aNBARo8eLfPmzdOBSY0QKVOnTpXatWtLwYIFJTQ0VJ566im5du2avm358uUydOhQiYqKsoxKjR8/Xt8WHx8vL7zwgn5u9dimTZvq+wMAXAshCQDg8Nq3by9169aVuXPn6uvu7u7y4Ycfyp49e2TWrFmydOlSeemll/RtLVq0kGnTpklAQIAekVInFYyUYcOGybp162TOnDmyc+dO6devnx65OnTokKHvDwCQt9xMJpMpj18TAIDbXpN05coV+f3339Pcdu+99+pgs3fv3jS3/fLLL/LEE09IZGSkvq5GnEaMGKGfy+zkyZNSoUIFfV6mTBnL8Y4dO0qTJk3kjTfeyLX3BQDIXzyNbgAAAPag/uanps4p//77r7z55puyf/9+iY6O1muV4uLiJDY2Vvz8/NJ9/K5duyQ5OVmqVKlic1xNwStWrFievAcAQP5ASAIAOIV9+/ZJ+fLldUEHVcThySeflNdff12KFi0qq1evlocfflgSEhIyDElqzZKHh4ds2bJFn1srVKhQHr0LAEB+QEgCADg8teZIjQQ999xzOuSocuDvvfeeXpuk/PTTTzb39/b21qNG1urXr6+PRUREyB133JGn7QcA5C+EJACAQ1HT38LDw3WgOX/+vCxcuFBPrVOjR4MGDZLdu3dLYmKifPTRR9KzZ09Zs2aNTJ8+3eY5wsLC9MjRkiVLdMEHNbqkptndf//9+jlUwFKh6cKFC/o+derUkR49ehj2ngEAeYvqdgAAh6JCUenSpXXQUZXnli1bpivZqTLgapqcCj2qBPjbb78ttWrVku+//16HKGuqwp0q5DBgwAApUaKEvPPOO/r4119/rUPS888/L1WrVpU+ffrIpk2bpGzZsga9WwCAEahuBwAAAABWGEkCAAAAACuEJAAAAACwQkgCAAAAACuEJAAAAACwQkgCAAAAACuEJAAAAACwQkgCAAAAACuEJAAAAACwQkgCAAAAACuEJAAAAACwQkgCAAAAACuEJAAAAACQm/4P5prYaZCam/4AAAAASUVORK5CYII=", "text/plain": [ "
" ] @@ -20406,11 +3863,18 @@ "metrics_calculator.plot_returns(portfolio_returns)\n", "# 0.72 sharpe consistent with literature" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "data-quality", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -20424,9 +3888,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.13.0" + "version": "3.12.4" } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } diff --git a/backtester/order_generator.py b/backtester/order_generator.py index 571e381..41e1dce 100644 --- a/backtester/order_generator.py +++ b/backtester/order_generator.py @@ -151,15 +151,18 @@ def calculate_predicted_returns(self, data, date): if len(df_up_to_date) < self.lookback_period: continue recent = df_up_to_date.iloc[-self.lookback_period:] - daily_returns = recent['Adj Close'].pct_change().dropna() + daily_returns = recent['Adj Close'].pct_change(fill_method=None).dropna() if len(daily_returns) > 0: avg_daily_return = daily_returns.mean() + if isinstance(avg_daily_return, pd.Series): + avg_daily_return = avg_daily_return.iloc[0] + ann_return = avg_daily_return * 252 predicted_returns[ticker] = ann_return return predicted_returns def generate_orders_for_date(self, predicted_returns, date): - pr_series = pd.Series(predicted_returns).dropna() + pr_series = pd.Series(predicted_returns).dropna().astype(float) if pr_series.empty: return [] sorted_by_pr = pr_series.sort_values() diff --git a/backtester/smr.ipynb b/backtester/smr.ipynb index fb7bb92..418763f 100644 --- a/backtester/smr.ipynb +++ b/backtester/smr.ipynb @@ -2,4705 +2,43 @@ "cells": [ { "cell_type": "code", - "execution_count": 6, + "execution_count": 13, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ - "[*********************100%***********************] 1 of 1 completed\n" + "[*********************100%***********************] 1 of 1 completed" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "Buying VRSK on 2010-04-30 00:00:00\n", - "Buying RMD on 2010-04-30 00:00:00\n", - "Buying WTW on 2010-04-30 00:00:00\n", - "Buying CLX on 2010-04-30 00:00:00\n", - "Buying LDOS on 2010-04-30 00:00:00\n", - "Buying DUK on 2010-04-30 00:00:00\n", - "Buying CHD on 2010-04-30 00:00:00\n", - "Buying AJG on 2010-04-30 00:00:00\n", - "Buying BDX on 2010-04-30 00:00:00\n", - "Buying MTCH on 2010-04-30 00:00:00\n", - "Buying ACGL on 2010-04-30 00:00:00\n", - "Buying CTAS on 2010-04-30 00:00:00\n", - "Selling NUE on 2010-04-30 00:00:00\n", - "Selling CE on 2010-04-30 00:00:00\n", - "Selling GS on 2010-04-30 00:00:00\n", - "Selling PARA on 2010-04-30 00:00:00\n", - "Selling DFS on 2010-04-30 00:00:00\n", - "Selling FCX on 2010-04-30 00:00:00\n", - "Selling INCY on 2010-04-30 00:00:00\n", - "Selling STLD on 2010-04-30 00:00:00\n", - "Selling JBL on 2010-04-30 00:00:00\n", - "Selling ULTA on 2010-04-30 00:00:00\n", - "Selling C on 2010-04-30 00:00:00\n", - "Selling LVS on 2010-04-30 00:00:00\n", - "Buying VRSK on 2010-05-31 00:00:00\n", - "Buying LDOS on 2010-05-31 00:00:00\n", - "Buying DLTR on 2010-05-31 00:00:00\n", - "Buying BMY on 2010-05-31 00:00:00\n", - "Buying CHD on 2010-05-31 00:00:00\n", - "Buying FIS on 2010-05-31 00:00:00\n", - "Buying CLX on 2010-05-31 00:00:00\n", - "Buying SO on 2010-05-31 00:00:00\n", - "Buying SJM on 2010-05-31 00:00:00\n", - "Buying DUK on 2010-05-31 00:00:00\n", - "Buying BDX on 2010-05-31 00:00:00\n", - "Buying LH on 2010-05-31 00:00:00\n", - "Selling DFS on 2010-05-31 00:00:00\n", - "Selling ULTA on 2010-05-31 00:00:00\n", - "Selling NFLX on 2010-05-31 00:00:00\n", - "Selling PARA on 2010-05-31 00:00:00\n", - "Selling BKNG on 2010-05-31 00:00:00\n", - "Selling CE on 2010-05-31 00:00:00\n", - "Selling HBAN on 2010-05-31 00:00:00\n", - "Selling LYV on 2010-05-31 00:00:00\n", - "Selling TXT on 2010-05-31 00:00:00\n", - "Selling JBL on 2010-05-31 00:00:00\n", - "Selling INCY on 2010-05-31 00:00:00\n", - "Selling LVS on 2010-05-31 00:00:00\n", - "Buying BMY on 2010-06-30 00:00:00\n", - "Buying LDOS on 2010-06-30 00:00:00\n", - "Buying DLTR on 2010-06-30 00:00:00\n", - "Buying VRSK on 2010-06-30 00:00:00\n", - "Buying CLX on 2010-06-30 00:00:00\n", - "Buying FIS on 2010-06-30 00:00:00\n", - "Buying SO on 2010-06-30 00:00:00\n", - "Buying CHD on 2010-06-30 00:00:00\n", - "Buying SJM on 2010-06-30 00:00:00\n", - "Buying DG on 2010-06-30 00:00:00\n", - "Buying NEM on 2010-06-30 00:00:00\n", - "Buying GIS on 2010-06-30 00:00:00\n", - "Selling DFS on 2010-06-30 00:00:00\n", - "Selling FCX on 2010-06-30 00:00:00\n", - "Selling CE on 2010-06-30 00:00:00\n", - "Selling HBAN on 2010-06-30 00:00:00\n", - "Selling J on 2010-06-30 00:00:00\n", - "Selling LYV on 2010-06-30 00:00:00\n", - "Selling BWA on 2010-06-30 00:00:00\n", - "Selling PARA on 2010-06-30 00:00:00\n", - "Selling JBL on 2010-06-30 00:00:00\n", - "Selling TXT on 2010-06-30 00:00:00\n", - "Selling INCY on 2010-06-30 00:00:00\n", - "Selling LVS on 2010-06-30 00:00:00\n", - "Buying DLTR on 2010-07-31 00:00:00\n", - "Buying FIS on 2010-07-31 00:00:00\n", - "Buying VRSK on 2010-07-31 00:00:00\n", - "Buying BMY on 2010-07-31 00:00:00\n", - "Buying LDOS on 2010-07-31 00:00:00\n", - "Buying CLX on 2010-07-31 00:00:00\n", - "Buying SO on 2010-07-31 00:00:00\n", - "Buying LH on 2010-07-31 00:00:00\n", - "Buying SJM on 2010-07-31 00:00:00\n", - "Buying DG on 2010-07-31 00:00:00\n", - "Buying GIS on 2010-07-31 00:00:00\n", - "Buying TAP on 2010-07-31 00:00:00\n", - "Selling PHM on 2010-07-31 00:00:00\n", - "Selling CE on 2010-07-31 00:00:00\n", - "Selling FFIV on 2010-07-31 00:00:00\n", - "Selling FCX on 2010-07-31 00:00:00\n", - "Selling BWA on 2010-07-31 00:00:00\n", - "Selling PARA on 2010-07-31 00:00:00\n", - "Selling LYV on 2010-07-31 00:00:00\n", - "Selling HBAN on 2010-07-31 00:00:00\n", - "Selling JBL on 2010-07-31 00:00:00\n", - "Selling TXT on 2010-07-31 00:00:00\n", - "Selling LVS on 2010-07-31 00:00:00\n", - "Selling INCY on 2010-07-31 00:00:00\n", - "Buying DLTR on 2010-08-31 00:00:00\n", - "Buying VRSK on 2010-08-31 00:00:00\n", - "Buying NFLX on 2010-08-31 00:00:00\n", - "Buying EW on 2010-08-31 00:00:00\n", - "Buying SJM on 2010-08-31 00:00:00\n", - "Buying GIS on 2010-08-31 00:00:00\n", - "Buying MNST on 2010-08-31 00:00:00\n", - "Buying CLX on 2010-08-31 00:00:00\n", - "Buying COR on 2010-08-31 00:00:00\n", - "Buying DG on 2010-08-31 00:00:00\n", - "Buying SO on 2010-08-31 00:00:00\n", - "Buying BMY on 2010-08-31 00:00:00\n", - "Selling FFIV on 2010-08-31 00:00:00\n", - "Selling BWA on 2010-08-31 00:00:00\n", - "Selling INCY on 2010-08-31 00:00:00\n", - "Selling DFS on 2010-08-31 00:00:00\n", - "Selling TXT on 2010-08-31 00:00:00\n", - "Selling PHM on 2010-08-31 00:00:00\n", - "Selling CE on 2010-08-31 00:00:00\n", - "Selling FCX on 2010-08-31 00:00:00\n", - "Selling PARA on 2010-08-31 00:00:00\n", - "Selling LVS on 2010-08-31 00:00:00\n", - "Selling HBAN on 2010-08-31 00:00:00\n", - "Selling LYV on 2010-08-31 00:00:00\n", - "Buying NFLX on 2010-09-30 00:00:00\n", - "Buying DLTR on 2010-09-30 00:00:00\n", - "Buying NEM on 2010-09-30 00:00:00\n", - "Buying VRSK on 2010-09-30 00:00:00\n", - "Buying EW on 2010-09-30 00:00:00\n", - "Buying GIS on 2010-09-30 00:00:00\n", - "Buying SJM on 2010-09-30 00:00:00\n", - "Buying SO on 2010-09-30 00:00:00\n", - "Buying CLX on 2010-09-30 00:00:00\n", - "Buying PPL on 2010-09-30 00:00:00\n", - "Buying LH on 2010-09-30 00:00:00\n", - "Buying BMY on 2010-09-30 00:00:00\n", - "Selling A on 2010-09-30 00:00:00\n", - "Selling WFC on 2010-09-30 00:00:00\n", - "Selling BWA on 2010-09-30 00:00:00\n", - "Selling DFS on 2010-09-30 00:00:00\n", - "Selling TXT on 2010-09-30 00:00:00\n", - "Selling MAR on 2010-09-30 00:00:00\n", - "Selling CE on 2010-09-30 00:00:00\n", - "Selling PHM on 2010-09-30 00:00:00\n", - "Selling PARA on 2010-09-30 00:00:00\n", - "Selling HBAN on 2010-09-30 00:00:00\n", - "Selling JBL on 2010-09-30 00:00:00\n", - "Selling LYV on 2010-09-30 00:00:00\n", - "Buying EW on 2010-10-31 00:00:00\n", - "Buying DLTR on 2010-10-31 00:00:00\n", - "Buying NFLX on 2010-10-31 00:00:00\n", - "Buying VRSK on 2010-10-31 00:00:00\n", - "Buying GIS on 2010-10-31 00:00:00\n", - "Buying BF-B on 2010-10-31 00:00:00\n", - "Buying NEM on 2010-10-31 00:00:00\n", - "Buying SO on 2010-10-31 00:00:00\n", - "Buying CMS on 2010-10-31 00:00:00\n", - "Buying PPL on 2010-10-31 00:00:00\n", - "Buying AEP on 2010-10-31 00:00:00\n", - "Buying CLX on 2010-10-31 00:00:00\n", - "Selling MAR on 2010-10-31 00:00:00\n", - "Selling ROK on 2010-10-31 00:00:00\n", - "Selling TDY on 2010-10-31 00:00:00\n", - "Selling WFC on 2010-10-31 00:00:00\n", - "Selling HBAN on 2010-10-31 00:00:00\n", - "Selling PARA on 2010-10-31 00:00:00\n", - "Selling FCX on 2010-10-31 00:00:00\n", - "Selling TXT on 2010-10-31 00:00:00\n", - "Selling CE on 2010-10-31 00:00:00\n", - "Selling JBL on 2010-10-31 00:00:00\n", - "Selling AXON on 2010-10-31 00:00:00\n", - "Selling LYV on 2010-10-31 00:00:00\n", - "Buying NFLX on 2010-11-30 00:00:00\n", - "Buying EW on 2010-11-30 00:00:00\n", - "Buying CLX on 2010-11-30 00:00:00\n", - "Buying DLTR on 2010-11-30 00:00:00\n", - "Buying DG on 2010-11-30 00:00:00\n", - "Buying SJM on 2010-11-30 00:00:00\n", - "Buying PPL on 2010-11-30 00:00:00\n", - "Buying CBOE on 2010-11-30 00:00:00\n", - "Buying AEP on 2010-11-30 00:00:00\n", - "Buying SO on 2010-11-30 00:00:00\n", - "Buying VRSK on 2010-11-30 00:00:00\n", - "Buying DUK on 2010-11-30 00:00:00\n", - "Selling C on 2010-11-30 00:00:00\n", - "Selling EXR on 2010-11-30 00:00:00\n", - "Selling TDY on 2010-11-30 00:00:00\n", - "Selling WFC on 2010-11-30 00:00:00\n", - "Selling HBAN on 2010-11-30 00:00:00\n", - "Selling LVS on 2010-11-30 00:00:00\n", - "Selling TXT on 2010-11-30 00:00:00\n", - "Selling LYV on 2010-11-30 00:00:00\n", - "Selling JBL on 2010-11-30 00:00:00\n", - "Selling CE on 2010-11-30 00:00:00\n", - "Selling AXON on 2010-11-30 00:00:00\n", - "Selling FCX on 2010-11-30 00:00:00\n", - "Buying NFLX on 2010-12-31 00:00:00\n", - "Buying DG on 2010-12-31 00:00:00\n", - "Buying MNST on 2010-12-31 00:00:00\n", - "Buying CLX on 2010-12-31 00:00:00\n", - "Buying VRTX on 2010-12-31 00:00:00\n", - "Buying MPWR on 2010-12-31 00:00:00\n", - "Buying CBOE on 2010-12-31 00:00:00\n", - "Buying CRL on 2010-12-31 00:00:00\n", - "Buying DLTR on 2010-12-31 00:00:00\n", - "Buying SJM on 2010-12-31 00:00:00\n", - "Buying SO on 2010-12-31 00:00:00\n", - "Buying GIS on 2010-12-31 00:00:00\n", - "Selling BWA on 2010-12-31 00:00:00\n", - "Selling HBAN on 2010-12-31 00:00:00\n", - "Selling SWKS on 2010-12-31 00:00:00\n", - "Selling AXON on 2010-12-31 00:00:00\n", - "Selling C on 2010-12-31 00:00:00\n", - "Selling WFC on 2010-12-31 00:00:00\n", - "Selling J on 2010-12-31 00:00:00\n", - "Selling PHM on 2010-12-31 00:00:00\n", - "Selling JBL on 2010-12-31 00:00:00\n", - "Selling LVS on 2010-12-31 00:00:00\n", - "Selling CE on 2010-12-31 00:00:00\n", - "Selling FCX on 2010-12-31 00:00:00\n", - "Buying NFLX on 2011-01-31 00:00:00\n", - "Buying DG on 2011-01-31 00:00:00\n", - "Buying DLTR on 2011-01-31 00:00:00\n", - "Buying CLX on 2011-01-31 00:00:00\n", - "Buying SJM on 2011-01-31 00:00:00\n", - "Buying ERIE on 2011-01-31 00:00:00\n", - "Buying CBOE on 2011-01-31 00:00:00\n", - "Buying GIS on 2011-01-31 00:00:00\n", - "Buying SO on 2011-01-31 00:00:00\n", - "Buying MNST on 2011-01-31 00:00:00\n", - "Buying CRL on 2011-01-31 00:00:00\n", - "Buying HAS on 2011-01-31 00:00:00\n", - "Selling A on 2011-01-31 00:00:00\n", - "Selling C on 2011-01-31 00:00:00\n", - "Selling BWA on 2011-01-31 00:00:00\n", - "Selling WFC on 2011-01-31 00:00:00\n", - "Selling LVS on 2011-01-31 00:00:00\n", - "Selling CE on 2011-01-31 00:00:00\n", - "Selling SWKS on 2011-01-31 00:00:00\n", - "Selling HBAN on 2011-01-31 00:00:00\n", - "Selling J on 2011-01-31 00:00:00\n", - "Selling JBL on 2011-01-31 00:00:00\n", - "Selling FCX on 2011-01-31 00:00:00\n", - "Selling PHM on 2011-01-31 00:00:00\n", - "Buying GIS on 2011-02-28 00:00:00\n", - "Buying ERIE on 2011-02-28 00:00:00\n", - "Buying SYY on 2011-02-28 00:00:00\n", - "Buying SO on 2011-02-28 00:00:00\n", - "Buying D on 2011-02-28 00:00:00\n", - "Buying DUK on 2011-02-28 00:00:00\n", - "Buying SJM on 2011-02-28 00:00:00\n", - "Buying PPL on 2011-02-28 00:00:00\n", - "Buying VRTX on 2011-02-28 00:00:00\n", - "Buying BMY on 2011-02-28 00:00:00\n", - "Buying SRE on 2011-02-28 00:00:00\n", - "Buying LH on 2011-02-28 00:00:00\n", - "Selling BX on 2011-02-28 00:00:00\n", - "Selling MPWR on 2011-02-28 00:00:00\n", - "Selling BWA on 2011-02-28 00:00:00\n", - "Selling LYV on 2011-02-28 00:00:00\n", - "Selling ADBE on 2011-02-28 00:00:00\n", - "Selling A on 2011-02-28 00:00:00\n", - "Selling CE on 2011-02-28 00:00:00\n", - "Selling WFC on 2011-02-28 00:00:00\n", - "Selling PHM on 2011-02-28 00:00:00\n", - "Selling SWKS on 2011-02-28 00:00:00\n", - "Selling J on 2011-02-28 00:00:00\n", - "Selling JBL on 2011-02-28 00:00:00\n", - "Buying NFLX on 2011-03-31 00:00:00\n", - "Buying SYY on 2011-03-31 00:00:00\n", - "Buying GIS on 2011-03-31 00:00:00\n", - "Buying DLTR on 2011-03-31 00:00:00\n", - "Buying ERIE on 2011-03-31 00:00:00\n", - "Buying AMT on 2011-03-31 00:00:00\n", - "Buying DUK on 2011-03-31 00:00:00\n", - "Buying NEM on 2011-03-31 00:00:00\n", - "Buying SO on 2011-03-31 00:00:00\n", - "Buying PPL on 2011-03-31 00:00:00\n", - "Buying DG on 2011-03-31 00:00:00\n", - "Buying TRGP on 2011-03-31 00:00:00\n", - "Selling PTC on 2011-03-31 00:00:00\n", - "Selling A on 2011-03-31 00:00:00\n", - "Selling BX on 2011-03-31 00:00:00\n", - "Selling BLK on 2011-03-31 00:00:00\n", - "Selling STLD on 2011-03-31 00:00:00\n", - "Selling PARA on 2011-03-31 00:00:00\n", - "Selling SWKS on 2011-03-31 00:00:00\n", - "Selling TXT on 2011-03-31 00:00:00\n", - "Selling JBL on 2011-03-31 00:00:00\n", - "Selling J on 2011-03-31 00:00:00\n", - "Selling CE on 2011-03-31 00:00:00\n", - "Selling LVS on 2011-03-31 00:00:00\n", - "Buying NFLX on 2011-04-30 00:00:00\n", - "Buying DG on 2011-04-30 00:00:00\n", - "Buying SYY on 2011-04-30 00:00:00\n", - "Buying IRM on 2011-04-30 00:00:00\n", - "Buying NEM on 2011-04-30 00:00:00\n", - "Buying PPL on 2011-04-30 00:00:00\n", - "Buying GIS on 2011-04-30 00:00:00\n", - "Buying DUK on 2011-04-30 00:00:00\n", - "Buying SO on 2011-04-30 00:00:00\n", - "Buying CLX on 2011-04-30 00:00:00\n", - "Buying WTW on 2011-04-30 00:00:00\n", - "Buying DLTR on 2011-04-30 00:00:00\n", - "Selling A on 2011-04-30 00:00:00\n", - "Selling STLD on 2011-04-30 00:00:00\n", - "Selling BWA on 2011-04-30 00:00:00\n", - "Selling PARA on 2011-04-30 00:00:00\n", - "Selling BX on 2011-04-30 00:00:00\n", - "Selling AXON on 2011-04-30 00:00:00\n", - "Selling CAT on 2011-04-30 00:00:00\n", - "Selling MPWR on 2011-04-30 00:00:00\n", - "Selling TXT on 2011-04-30 00:00:00\n", - "Selling LVS on 2011-04-30 00:00:00\n", - "Selling JBL on 2011-04-30 00:00:00\n", - "Selling CE on 2011-04-30 00:00:00\n", - "Buying NFLX on 2011-05-31 00:00:00\n", - "Buying IRM on 2011-05-31 00:00:00\n", - "Buying AMT on 2011-05-31 00:00:00\n", - "Buying DRI on 2011-05-31 00:00:00\n", - "Buying DG on 2011-05-31 00:00:00\n", - "Buying CLX on 2011-05-31 00:00:00\n", - "Buying PPL on 2011-05-31 00:00:00\n", - "Buying CVS on 2011-05-31 00:00:00\n", - "Buying VRSK on 2011-05-31 00:00:00\n", - "Buying ICE on 2011-05-31 00:00:00\n", - "Buying SO on 2011-05-31 00:00:00\n", - "Buying AEP on 2011-05-31 00:00:00\n", - "Selling ROK on 2011-05-31 00:00:00\n", - "Selling MPWR on 2011-05-31 00:00:00\n", - "Selling PTC on 2011-05-31 00:00:00\n", - "Selling BWA on 2011-05-31 00:00:00\n", - "Selling RJF on 2011-05-31 00:00:00\n", - "Selling MTD on 2011-05-31 00:00:00\n", - "Selling J on 2011-05-31 00:00:00\n", - "Selling CAT on 2011-05-31 00:00:00\n", - "Selling LVS on 2011-05-31 00:00:00\n", - "Selling LYB on 2011-05-31 00:00:00\n", - "Selling BX on 2011-05-31 00:00:00\n", - "Selling CE on 2011-05-31 00:00:00\n", - "Buying DGX on 2011-06-30 00:00:00\n", - "Buying VRSK on 2011-06-30 00:00:00\n", - "Buying AEP on 2011-06-30 00:00:00\n", - "Buying SO on 2011-06-30 00:00:00\n", - "Buying PPL on 2011-06-30 00:00:00\n", - "Buying HII on 2011-06-30 00:00:00\n", - "Buying DUK on 2011-06-30 00:00:00\n", - "Buying ACGL on 2011-06-30 00:00:00\n", - "Buying ORLY on 2011-06-30 00:00:00\n", - "Buying CLX on 2011-06-30 00:00:00\n", - "Buying GILD on 2011-06-30 00:00:00\n", - "Buying D on 2011-06-30 00:00:00\n", - "Selling A on 2011-06-30 00:00:00\n", - "Selling FFIV on 2011-06-30 00:00:00\n", - "Selling RJF on 2011-06-30 00:00:00\n", - "Selling JBL on 2011-06-30 00:00:00\n", - "Selling BWA on 2011-06-30 00:00:00\n", - "Selling SWKS on 2011-06-30 00:00:00\n", - "Selling MTD on 2011-06-30 00:00:00\n", - "Selling J on 2011-06-30 00:00:00\n", - "Selling CE on 2011-06-30 00:00:00\n", - "Selling CAT on 2011-06-30 00:00:00\n", - "Selling FCX on 2011-06-30 00:00:00\n", - "Selling LYB on 2011-06-30 00:00:00\n", - "Buying MTCH on 2011-07-31 00:00:00\n", - "Buying HII on 2011-07-31 00:00:00\n", - "Buying VRSK on 2011-07-31 00:00:00\n", - "Buying SO on 2011-07-31 00:00:00\n", - "Buying AEP on 2011-07-31 00:00:00\n", - "Buying VRTX on 2011-07-31 00:00:00\n", - "Buying DUK on 2011-07-31 00:00:00\n", - "Buying CLX on 2011-07-31 00:00:00\n", - "Buying WTW on 2011-07-31 00:00:00\n", - "Buying PPL on 2011-07-31 00:00:00\n", - "Buying GIS on 2011-07-31 00:00:00\n", - "Buying AJG on 2011-07-31 00:00:00\n", - "Selling MTD on 2011-07-31 00:00:00\n", - "Selling LYV on 2011-07-31 00:00:00\n", - "Selling SWKS on 2011-07-31 00:00:00\n", - "Selling J on 2011-07-31 00:00:00\n", - "Selling RJF on 2011-07-31 00:00:00\n", - "Selling ROK on 2011-07-31 00:00:00\n", - "Selling BLK on 2011-07-31 00:00:00\n", - "Selling FCX on 2011-07-31 00:00:00\n", - "Selling CE on 2011-07-31 00:00:00\n", - "Selling JBL on 2011-07-31 00:00:00\n", - "Selling PHM on 2011-07-31 00:00:00\n", - "Selling LYB on 2011-07-31 00:00:00\n", - "Buying NEM on 2011-08-31 00:00:00\n", - "Buying SO on 2011-08-31 00:00:00\n", - "Buying GIS on 2011-08-31 00:00:00\n", - "Buying SYY on 2011-08-31 00:00:00\n", - "Buying HII on 2011-08-31 00:00:00\n", - "Buying DG on 2011-08-31 00:00:00\n", - "Buying ORLY on 2011-08-31 00:00:00\n", - "Buying DUK on 2011-08-31 00:00:00\n", - "Buying D on 2011-08-31 00:00:00\n", - "Buying T on 2011-08-31 00:00:00\n", - "Buying VRSK on 2011-08-31 00:00:00\n", - "Buying PPL on 2011-08-31 00:00:00\n", - "Selling PHM on 2011-08-31 00:00:00\n", - "Selling RJF on 2011-08-31 00:00:00\n", - "Selling ULTA on 2011-08-31 00:00:00\n", - "Selling TXT on 2011-08-31 00:00:00\n", - "Selling ROK on 2011-08-31 00:00:00\n", - "Selling A on 2011-08-31 00:00:00\n", - "Selling PARA on 2011-08-31 00:00:00\n", - "Selling BX on 2011-08-31 00:00:00\n", - "Selling CE on 2011-08-31 00:00:00\n", - "Selling C on 2011-08-31 00:00:00\n", - "Selling JBL on 2011-08-31 00:00:00\n", - "Selling LYB on 2011-08-31 00:00:00\n", - "Buying NEM on 2011-09-30 00:00:00\n", - "Buying SO on 2011-09-30 00:00:00\n", - "Buying GIS on 2011-09-30 00:00:00\n", - "Buying ORLY on 2011-09-30 00:00:00\n", - "Buying SYY on 2011-09-30 00:00:00\n", - "Buying DUK on 2011-09-30 00:00:00\n", - "Buying PPL on 2011-09-30 00:00:00\n", - "Buying DG on 2011-09-30 00:00:00\n", - "Buying T on 2011-09-30 00:00:00\n", - "Buying D on 2011-09-30 00:00:00\n", - "Buying VRSK on 2011-09-30 00:00:00\n", - "Buying HII on 2011-09-30 00:00:00\n", - "Selling ROK on 2011-09-30 00:00:00\n", - "Selling PHM on 2011-09-30 00:00:00\n", - "Selling RJF on 2011-09-30 00:00:00\n", - "Selling TXT on 2011-09-30 00:00:00\n", - "Selling HBAN on 2011-09-30 00:00:00\n", - "Selling A on 2011-09-30 00:00:00\n", - "Selling PARA on 2011-09-30 00:00:00\n", - "Selling JBL on 2011-09-30 00:00:00\n", - "Selling BX on 2011-09-30 00:00:00\n", - "Selling LYB on 2011-09-30 00:00:00\n", - "Selling C on 2011-09-30 00:00:00\n", - "Selling CE on 2011-09-30 00:00:00\n", - "Buying NEM on 2011-10-31 00:00:00\n", - "Buying SO on 2011-10-31 00:00:00\n", - "Buying GIS on 2011-10-31 00:00:00\n", - "Buying DG on 2011-10-31 00:00:00\n", - "Buying DUK on 2011-10-31 00:00:00\n", - "Buying PPL on 2011-10-31 00:00:00\n", - "Buying SYY on 2011-10-31 00:00:00\n", - "Buying DLTR on 2011-10-31 00:00:00\n", - "Buying D on 2011-10-31 00:00:00\n", - "Buying BMY on 2011-10-31 00:00:00\n", - "Buying ORLY on 2011-10-31 00:00:00\n", - "Buying SJM on 2011-10-31 00:00:00\n", - "Selling ROK on 2011-10-31 00:00:00\n", - "Selling JBL on 2011-10-31 00:00:00\n", - "Selling STLD on 2011-10-31 00:00:00\n", - "Selling PARA on 2011-10-31 00:00:00\n", - "Selling HBAN on 2011-10-31 00:00:00\n", - "Selling RJF on 2011-10-31 00:00:00\n", - "Selling BX on 2011-10-31 00:00:00\n", - "Selling PHM on 2011-10-31 00:00:00\n", - "Selling A on 2011-10-31 00:00:00\n", - "Selling LYB on 2011-10-31 00:00:00\n", - "Selling CE on 2011-10-31 00:00:00\n", - "Selling C on 2011-10-31 00:00:00\n", - "Buying GIS on 2011-11-30 00:00:00\n", - "Buying SO on 2011-11-30 00:00:00\n", - "Buying DLTR on 2011-11-30 00:00:00\n", - "Buying CLX on 2011-11-30 00:00:00\n", - "Buying DUK on 2011-11-30 00:00:00\n", - "Buying DG on 2011-11-30 00:00:00\n", - "Buying PPL on 2011-11-30 00:00:00\n", - "Buying CHD on 2011-11-30 00:00:00\n", - "Buying SJM on 2011-11-30 00:00:00\n", - "Buying D on 2011-11-30 00:00:00\n", - "Buying BMY on 2011-11-30 00:00:00\n", - "Buying ORLY on 2011-11-30 00:00:00\n", - "Selling ROK on 2011-11-30 00:00:00\n", - "Selling LYB on 2011-11-30 00:00:00\n", - "Selling HBAN on 2011-11-30 00:00:00\n", - "Selling PTC on 2011-11-30 00:00:00\n", - "Selling RJF on 2011-11-30 00:00:00\n", - "Selling BX on 2011-11-30 00:00:00\n", - "Selling A on 2011-11-30 00:00:00\n", - "Selling FCX on 2011-11-30 00:00:00\n", - "Selling STLD on 2011-11-30 00:00:00\n", - "Selling CE on 2011-11-30 00:00:00\n", - "Selling PHM on 2011-11-30 00:00:00\n", - "Selling C on 2011-11-30 00:00:00\n", - "Buying CLX on 2011-12-31 00:00:00\n", - "Buying DLTR on 2011-12-31 00:00:00\n", - "Buying DG on 2011-12-31 00:00:00\n", - "Buying SO on 2011-12-31 00:00:00\n", - "Buying GIS on 2011-12-31 00:00:00\n", - "Buying CHD on 2011-12-31 00:00:00\n", - "Buying VRTX on 2011-12-31 00:00:00\n", - "Buying DUK on 2011-12-31 00:00:00\n", - "Buying PPL on 2011-12-31 00:00:00\n", - "Buying SJM on 2011-12-31 00:00:00\n", - "Buying BMY on 2011-12-31 00:00:00\n", - "Buying D on 2011-12-31 00:00:00\n", - "Selling GS on 2011-12-31 00:00:00\n", - "Selling ROK on 2011-12-31 00:00:00\n", - "Selling BLK on 2011-12-31 00:00:00\n", - "Selling BX on 2011-12-31 00:00:00\n", - "Selling RJF on 2011-12-31 00:00:00\n", - "Selling STLD on 2011-12-31 00:00:00\n", - "Selling FCX on 2011-12-31 00:00:00\n", - "Selling A on 2011-12-31 00:00:00\n", - "Selling CE on 2011-12-31 00:00:00\n", - "Selling PTC on 2011-12-31 00:00:00\n", - "Selling C on 2011-12-31 00:00:00\n", - "Selling PHM on 2011-12-31 00:00:00\n", - "Buying CLX on 2012-01-31 00:00:00\n", - "Buying DG on 2012-01-31 00:00:00\n", - "Buying DLTR on 2012-01-31 00:00:00\n", - "Buying SO on 2012-01-31 00:00:00\n", - "Buying CHD on 2012-01-31 00:00:00\n", - "Buying WTW on 2012-01-31 00:00:00\n", - "Buying GIS on 2012-01-31 00:00:00\n", - "Buying DUK on 2012-01-31 00:00:00\n", - "Buying VRTX on 2012-01-31 00:00:00\n", - "Buying ORLY on 2012-01-31 00:00:00\n", - "Buying PPL on 2012-01-31 00:00:00\n", - "Buying VRSK on 2012-01-31 00:00:00\n", - "Selling MPWR on 2012-01-31 00:00:00\n", - "Selling PTC on 2012-01-31 00:00:00\n", - "Selling FFIV on 2012-01-31 00:00:00\n", - "Selling GS on 2012-01-31 00:00:00\n", - "Selling CE on 2012-01-31 00:00:00\n", - "Selling RJF on 2012-01-31 00:00:00\n", - "Selling A on 2012-01-31 00:00:00\n", - "Selling FCX on 2012-01-31 00:00:00\n", - "Selling STLD on 2012-01-31 00:00:00\n", - "Selling SWKS on 2012-01-31 00:00:00\n", - "Selling PHM on 2012-01-31 00:00:00\n", - "Selling C on 2012-01-31 00:00:00\n", - "Buying DG on 2012-02-29 00:00:00\n", - "Buying GIS on 2012-02-29 00:00:00\n", - "Buying PPL on 2012-02-29 00:00:00\n", - "Buying SO on 2012-02-29 00:00:00\n", - "Buying DLTR on 2012-02-29 00:00:00\n", - "Buying CHD on 2012-02-29 00:00:00\n", - "Buying EW on 2012-02-29 00:00:00\n", - "Buying SJM on 2012-02-29 00:00:00\n", - "Buying CBOE on 2012-02-29 00:00:00\n", - "Buying BMY on 2012-02-29 00:00:00\n", - "Buying DUK on 2012-02-29 00:00:00\n", - "Buying CLX on 2012-02-29 00:00:00\n", - "Selling RJF on 2012-02-29 00:00:00\n", - "Selling SWKS on 2012-02-29 00:00:00\n", - "Selling MPWR on 2012-02-29 00:00:00\n", - "Selling GM on 2012-02-29 00:00:00\n", - "Selling TXT on 2012-02-29 00:00:00\n", - "Selling CE on 2012-02-29 00:00:00\n", - "Selling A on 2012-02-29 00:00:00\n", - "Selling GS on 2012-02-29 00:00:00\n", - "Selling FCX on 2012-02-29 00:00:00\n", - "Selling STLD on 2012-02-29 00:00:00\n", - "Selling C on 2012-02-29 00:00:00\n", - "Selling PHM on 2012-02-29 00:00:00\n", - "Buying SO on 2012-03-31 00:00:00\n", - "Buying DG on 2012-03-31 00:00:00\n", - "Buying CBOE on 2012-03-31 00:00:00\n", - "Buying PPL on 2012-03-31 00:00:00\n", - "Buying SJM on 2012-03-31 00:00:00\n", - "Buying EW on 2012-03-31 00:00:00\n", - "Buying HII on 2012-03-31 00:00:00\n", - "Buying CMS on 2012-03-31 00:00:00\n", - "Buying D on 2012-03-31 00:00:00\n", - "Buying NI on 2012-03-31 00:00:00\n", - "Buying GIS on 2012-03-31 00:00:00\n", - "Buying DUK on 2012-03-31 00:00:00\n", - "Selling MPWR on 2012-03-31 00:00:00\n", - "Selling BWA on 2012-03-31 00:00:00\n", - "Selling PHM on 2012-03-31 00:00:00\n", - "Selling SWKS on 2012-03-31 00:00:00\n", - "Selling STLD on 2012-03-31 00:00:00\n", - "Selling TXT on 2012-03-31 00:00:00\n", - "Selling GM on 2012-03-31 00:00:00\n", - "Selling J on 2012-03-31 00:00:00\n", - "Selling C on 2012-03-31 00:00:00\n", - "Selling GS on 2012-03-31 00:00:00\n", - "Selling CE on 2012-03-31 00:00:00\n", - "Selling LYB on 2012-03-31 00:00:00\n", - "Buying SO on 2012-04-30 00:00:00\n", - "Buying SJM on 2012-04-30 00:00:00\n", - "Buying GIS on 2012-04-30 00:00:00\n", - "Buying PPL on 2012-04-30 00:00:00\n", - "Buying D on 2012-04-30 00:00:00\n", - "Buying CLX on 2012-04-30 00:00:00\n", - "Buying AEP on 2012-04-30 00:00:00\n", - "Buying DUK on 2012-04-30 00:00:00\n", - "Buying CMS on 2012-04-30 00:00:00\n", - "Buying AON on 2012-04-30 00:00:00\n", - "Buying ACGL on 2012-04-30 00:00:00\n", - "Buying CBOE on 2012-04-30 00:00:00\n", - "Selling J on 2012-04-30 00:00:00\n", - "Selling TXT on 2012-04-30 00:00:00\n", - "Selling JBL on 2012-04-30 00:00:00\n", - "Selling PTC on 2012-04-30 00:00:00\n", - "Selling STLD on 2012-04-30 00:00:00\n", - "Selling LYB on 2012-04-30 00:00:00\n", - "Selling CE on 2012-04-30 00:00:00\n", - "Selling INCY on 2012-04-30 00:00:00\n", - "Selling GM on 2012-04-30 00:00:00\n", - "Selling PHM on 2012-04-30 00:00:00\n", - "Selling SWKS on 2012-04-30 00:00:00\n", - "Selling C on 2012-04-30 00:00:00\n", - "Buying SO on 2012-05-31 00:00:00\n", - "Buying DUK on 2012-05-31 00:00:00\n", - "Buying D on 2012-05-31 00:00:00\n", - "Buying CLX on 2012-05-31 00:00:00\n", - "Buying GIS on 2012-05-31 00:00:00\n", - "Buying PPL on 2012-05-31 00:00:00\n", - "Buying AEP on 2012-05-31 00:00:00\n", - "Buying SRE on 2012-05-31 00:00:00\n", - "Buying CHD on 2012-05-31 00:00:00\n", - "Buying ACGL on 2012-05-31 00:00:00\n", - "Buying LOW on 2012-05-31 00:00:00\n", - "Buying NEM on 2012-05-31 00:00:00\n", - "Selling STLD on 2012-05-31 00:00:00\n", - "Selling MTD on 2012-05-31 00:00:00\n", - "Selling EQIX on 2012-05-31 00:00:00\n", - "Selling TXT on 2012-05-31 00:00:00\n", - "Selling JBL on 2012-05-31 00:00:00\n", - "Selling CF on 2012-05-31 00:00:00\n", - "Selling LYB on 2012-05-31 00:00:00\n", - "Selling C on 2012-05-31 00:00:00\n", - "Selling INCY on 2012-05-31 00:00:00\n", - "Selling CE on 2012-05-31 00:00:00\n", - "Selling PHM on 2012-05-31 00:00:00\n", - "Selling SWKS on 2012-05-31 00:00:00\n", - "Buying DUK on 2012-06-30 00:00:00\n", - "Buying SO on 2012-06-30 00:00:00\n", - "Buying NEM on 2012-06-30 00:00:00\n", - "Buying PPL on 2012-06-30 00:00:00\n", - "Buying CLX on 2012-06-30 00:00:00\n", - "Buying GIS on 2012-06-30 00:00:00\n", - "Buying AEP on 2012-06-30 00:00:00\n", - "Buying D on 2012-06-30 00:00:00\n", - "Buying PNW on 2012-06-30 00:00:00\n", - "Buying CMS on 2012-06-30 00:00:00\n", - "Buying CHD on 2012-06-30 00:00:00\n", - "Buying SRE on 2012-06-30 00:00:00\n", - "Selling A on 2012-06-30 00:00:00\n", - "Selling EQIX on 2012-06-30 00:00:00\n", - "Selling CF on 2012-06-30 00:00:00\n", - "Selling LYB on 2012-06-30 00:00:00\n", - "Selling TXT on 2012-06-30 00:00:00\n", - "Selling CE on 2012-06-30 00:00:00\n", - "Selling JBL on 2012-06-30 00:00:00\n", - "Selling INCY on 2012-06-30 00:00:00\n", - "Selling C on 2012-06-30 00:00:00\n", - "Selling PTC on 2012-06-30 00:00:00\n", - "Selling SWKS on 2012-06-30 00:00:00\n", - "Selling PHM on 2012-06-30 00:00:00\n", - "Buying DUK on 2012-07-31 00:00:00\n", - "Buying NEM on 2012-07-31 00:00:00\n", - "Buying SO on 2012-07-31 00:00:00\n", - "Buying PPL on 2012-07-31 00:00:00\n", - "Buying CLX on 2012-07-31 00:00:00\n", - "Buying GIS on 2012-07-31 00:00:00\n", - "Buying AEP on 2012-07-31 00:00:00\n", - "Buying DG on 2012-07-31 00:00:00\n", - "Buying PNW on 2012-07-31 00:00:00\n", - "Buying D on 2012-07-31 00:00:00\n", - "Buying CMS on 2012-07-31 00:00:00\n", - "Buying CHD on 2012-07-31 00:00:00\n", - "Selling CE on 2012-07-31 00:00:00\n", - "Selling FCX on 2012-07-31 00:00:00\n", - "Selling BWA on 2012-07-31 00:00:00\n", - "Selling JBL on 2012-07-31 00:00:00\n", - "Selling EQIX on 2012-07-31 00:00:00\n", - "Selling LYB on 2012-07-31 00:00:00\n", - "Selling FFIV on 2012-07-31 00:00:00\n", - "Selling TXT on 2012-07-31 00:00:00\n", - "Selling C on 2012-07-31 00:00:00\n", - "Selling SWKS on 2012-07-31 00:00:00\n", - "Selling PTC on 2012-07-31 00:00:00\n", - "Selling PHM on 2012-07-31 00:00:00\n", - "Buying DG on 2012-08-31 00:00:00\n", - "Buying SO on 2012-08-31 00:00:00\n", - "Buying CLX on 2012-08-31 00:00:00\n", - "Buying APO on 2012-08-31 00:00:00\n", - "Buying PPL on 2012-08-31 00:00:00\n", - "Buying O on 2012-08-31 00:00:00\n", - "Buying CHD on 2012-08-31 00:00:00\n", - "Buying CBOE on 2012-08-31 00:00:00\n", - "Buying ERIE on 2012-08-31 00:00:00\n", - "Buying DUK on 2012-08-31 00:00:00\n", - "Buying WELL on 2012-08-31 00:00:00\n", - "Buying AEP on 2012-08-31 00:00:00\n", - "Selling BWA on 2012-08-31 00:00:00\n", - "Selling MPWR on 2012-08-31 00:00:00\n", - "Selling JBL on 2012-08-31 00:00:00\n", - "Selling SWKS on 2012-08-31 00:00:00\n", - "Selling STLD on 2012-08-31 00:00:00\n", - "Selling TXT on 2012-08-31 00:00:00\n", - "Selling FCX on 2012-08-31 00:00:00\n", - "Selling C on 2012-08-31 00:00:00\n", - "Selling PHM on 2012-08-31 00:00:00\n", - "Selling CRM on 2012-08-31 00:00:00\n", - "Selling FFIV on 2012-08-31 00:00:00\n", - "Selling PTC on 2012-08-31 00:00:00\n", - "Buying ORLY on 2012-09-30 00:00:00\n", - "Buying DG on 2012-09-30 00:00:00\n", - "Buying ERIE on 2012-09-30 00:00:00\n", - "Buying CHD on 2012-09-30 00:00:00\n", - "Buying O on 2012-09-30 00:00:00\n", - "Buying CLX on 2012-09-30 00:00:00\n", - "Buying PPL on 2012-09-30 00:00:00\n", - "Buying APO on 2012-09-30 00:00:00\n", - "Buying CAH on 2012-09-30 00:00:00\n", - "Buying WELL on 2012-09-30 00:00:00\n", - "Buying EXR on 2012-09-30 00:00:00\n", - "Buying SO on 2012-09-30 00:00:00\n", - "Buying GIS on 2012-09-30 00:00:00\n", - "Selling JBL on 2012-09-30 00:00:00\n", - "Selling LYB on 2012-09-30 00:00:00\n", - "Selling GM on 2012-09-30 00:00:00\n", - "Selling TXT on 2012-09-30 00:00:00\n", - "Selling SWKS on 2012-09-30 00:00:00\n", - "Selling PHM on 2012-09-30 00:00:00\n", - "Selling FCX on 2012-09-30 00:00:00\n", - "Selling C on 2012-09-30 00:00:00\n", - "Selling STLD on 2012-09-30 00:00:00\n", - "Selling BWA on 2012-09-30 00:00:00\n", - "Selling CRM on 2012-09-30 00:00:00\n", - "Selling FFIV on 2012-09-30 00:00:00\n", - "Selling PTC on 2012-09-30 00:00:00\n", - "Buying ORLY on 2012-10-31 00:00:00\n", - "Buying MKTX on 2012-10-31 00:00:00\n", - "Buying EPAM on 2012-10-31 00:00:00\n", - "Buying DG on 2012-10-31 00:00:00\n", - "Buying PPL on 2012-10-31 00:00:00\n", - "Buying CLX on 2012-10-31 00:00:00\n", - "Buying DUK on 2012-10-31 00:00:00\n", - "Buying O on 2012-10-31 00:00:00\n", - "Buying GWW on 2012-10-31 00:00:00\n", - "Buying SO on 2012-10-31 00:00:00\n", - "Buying CMS on 2012-10-31 00:00:00\n", - "Buying AXON on 2012-10-31 00:00:00\n", - "Buying JBHT on 2012-10-31 00:00:00\n", - "Selling SWKS on 2012-10-31 00:00:00\n", - "Selling GM on 2012-10-31 00:00:00\n", - "Selling LYB on 2012-10-31 00:00:00\n", - "Selling FFIV on 2012-10-31 00:00:00\n", - "Selling NOW on 2012-10-31 00:00:00\n", - "Selling STLD on 2012-10-31 00:00:00\n", - "Selling MNST on 2012-10-31 00:00:00\n", - "Selling PH on 2012-10-31 00:00:00\n", - "Selling FCX on 2012-10-31 00:00:00\n", - "Selling BWA on 2012-10-31 00:00:00\n", - "Selling C on 2012-10-31 00:00:00\n", - "Selling PHM on 2012-10-31 00:00:00\n", - "Selling NFLX on 2012-10-31 00:00:00\n", - "Buying ORLY on 2012-11-30 00:00:00\n", - "Buying ERIE on 2012-11-30 00:00:00\n", - "Buying MKTX on 2012-11-30 00:00:00\n", - "Buying DG on 2012-11-30 00:00:00\n", - "Buying PPL on 2012-11-30 00:00:00\n", - "Buying SO on 2012-11-30 00:00:00\n", - "Buying AMT on 2012-11-30 00:00:00\n", - "Buying CLX on 2012-11-30 00:00:00\n", - "Buying O on 2012-11-30 00:00:00\n", - "Buying DUK on 2012-11-30 00:00:00\n", - "Buying CMS on 2012-11-30 00:00:00\n", - "Buying AEP on 2012-11-30 00:00:00\n", - "Buying WELL on 2012-11-30 00:00:00\n", - "Selling PH on 2012-11-30 00:00:00\n", - "Selling INCY on 2012-11-30 00:00:00\n", - "Selling GS on 2012-11-30 00:00:00\n", - "Selling PHM on 2012-11-30 00:00:00\n", - "Selling PTC on 2012-11-30 00:00:00\n", - "Selling VRTX on 2012-11-30 00:00:00\n", - "Selling GM on 2012-11-30 00:00:00\n", - "Selling LYB on 2012-11-30 00:00:00\n", - "Selling BWA on 2012-11-30 00:00:00\n", - "Selling FCX on 2012-11-30 00:00:00\n", - "Selling C on 2012-11-30 00:00:00\n", - "Selling STLD on 2012-11-30 00:00:00\n", - "Selling SWKS on 2012-11-30 00:00:00\n", - "Buying ERIE on 2012-12-31 00:00:00\n", - "Buying EXR on 2012-12-31 00:00:00\n", - "Buying AMT on 2012-12-31 00:00:00\n", - "Buying WELL on 2012-12-31 00:00:00\n", - "Buying DG on 2012-12-31 00:00:00\n", - "Buying O on 2012-12-31 00:00:00\n", - "Buying FDS on 2012-12-31 00:00:00\n", - "Buying SO on 2012-12-31 00:00:00\n", - "Buying PPL on 2012-12-31 00:00:00\n", - "Buying EPAM on 2012-12-31 00:00:00\n", - "Buying CVS on 2012-12-31 00:00:00\n", - "Buying ACGL on 2012-12-31 00:00:00\n", - "Buying D on 2012-12-31 00:00:00\n", - "Selling FCX on 2012-12-31 00:00:00\n", - "Selling PH on 2012-12-31 00:00:00\n", - "Selling PHM on 2012-12-31 00:00:00\n", - "Selling GM on 2012-12-31 00:00:00\n", - "Selling LYB on 2012-12-31 00:00:00\n", - "Selling A on 2012-12-31 00:00:00\n", - "Selling GS on 2012-12-31 00:00:00\n", - "Selling VRTX on 2012-12-31 00:00:00\n", - "Selling JBL on 2012-12-31 00:00:00\n", - "Selling C on 2012-12-31 00:00:00\n", - "Selling SWKS on 2012-12-31 00:00:00\n", - "Selling STLD on 2012-12-31 00:00:00\n", - "Selling INCY on 2012-12-31 00:00:00\n", - "Buying DG on 2013-01-31 00:00:00\n", - "Buying ACGL on 2013-01-31 00:00:00\n", - "Buying WELL on 2013-01-31 00:00:00\n", - "Buying ERIE on 2013-01-31 00:00:00\n", - "Buying COR on 2013-01-31 00:00:00\n", - "Buying MNST on 2013-01-31 00:00:00\n", - "Buying NFLX on 2013-01-31 00:00:00\n", - "Buying FDS on 2013-01-31 00:00:00\n", - "Buying EXR on 2013-01-31 00:00:00\n", - "Buying AMT on 2013-01-31 00:00:00\n", - "Buying O on 2013-01-31 00:00:00\n", - "Buying PPL on 2013-01-31 00:00:00\n", - "Buying CLX on 2013-01-31 00:00:00\n", - "Selling MAR on 2013-01-31 00:00:00\n", - "Selling BX on 2013-01-31 00:00:00\n", - "Selling HBAN on 2013-01-31 00:00:00\n", - "Selling PHM on 2013-01-31 00:00:00\n", - "Selling PSX on 2013-01-31 00:00:00\n", - "Selling A on 2013-01-31 00:00:00\n", - "Selling PARA on 2013-01-31 00:00:00\n", - "Selling C on 2013-01-31 00:00:00\n", - "Selling SWKS on 2013-01-31 00:00:00\n", - "Selling NOW on 2013-01-31 00:00:00\n", - "Selling JBL on 2013-01-31 00:00:00\n", - "Selling GS on 2013-01-31 00:00:00\n", - "Selling STLD on 2013-01-31 00:00:00\n", - "Buying EW on 2013-02-28 00:00:00\n", - "Buying WTW on 2013-02-28 00:00:00\n", - "Buying O on 2013-02-28 00:00:00\n", - "Buying WELL on 2013-02-28 00:00:00\n", - "Buying LH on 2013-02-28 00:00:00\n", - "Buying MNST on 2013-02-28 00:00:00\n", - "Buying DG on 2013-02-28 00:00:00\n", - "Buying NFLX on 2013-02-28 00:00:00\n", - "Buying MTCH on 2013-02-28 00:00:00\n", - "Buying ULTA on 2013-02-28 00:00:00\n", - "Buying ACGL on 2013-02-28 00:00:00\n", - "Buying DGX on 2013-02-28 00:00:00\n", - "Buying FDS on 2013-02-28 00:00:00\n", - "Selling FFIV on 2013-02-28 00:00:00\n", - "Selling C on 2013-02-28 00:00:00\n", - "Selling VRTX on 2013-02-28 00:00:00\n", - "Selling PARA on 2013-02-28 00:00:00\n", - "Selling JBL on 2013-02-28 00:00:00\n", - "Selling GS on 2013-02-28 00:00:00\n", - "Selling CE on 2013-02-28 00:00:00\n", - "Selling PSX on 2013-02-28 00:00:00\n", - "Selling NOW on 2013-02-28 00:00:00\n", - "Selling STLD on 2013-02-28 00:00:00\n", - "Selling PHM on 2013-02-28 00:00:00\n", - "Selling AXON on 2013-02-28 00:00:00\n", - "Selling SWKS on 2013-02-28 00:00:00\n", - "Buying NFLX on 2013-03-31 00:00:00\n", - "Buying MNST on 2013-03-31 00:00:00\n", - "Buying ERIE on 2013-03-31 00:00:00\n", - "Buying NEM on 2013-03-31 00:00:00\n", - "Buying EW on 2013-03-31 00:00:00\n", - "Buying ORLY on 2013-03-31 00:00:00\n", - "Buying WTW on 2013-03-31 00:00:00\n", - "Buying WELL on 2013-03-31 00:00:00\n", - "Buying O on 2013-03-31 00:00:00\n", - "Buying DGX on 2013-03-31 00:00:00\n", - "Buying DG on 2013-03-31 00:00:00\n", - "Buying LH on 2013-03-31 00:00:00\n", - "Buying MTCH on 2013-03-31 00:00:00\n", - "Selling STLD on 2013-03-31 00:00:00\n", - "Selling TXT on 2013-03-31 00:00:00\n", - "Selling PTC on 2013-03-31 00:00:00\n", - "Selling NUE on 2013-03-31 00:00:00\n", - "Selling PARA on 2013-03-31 00:00:00\n", - "Selling VRTX on 2013-03-31 00:00:00\n", - "Selling AXON on 2013-03-31 00:00:00\n", - "Selling PSX on 2013-03-31 00:00:00\n", - "Selling GS on 2013-03-31 00:00:00\n", - "Selling C on 2013-03-31 00:00:00\n", - "Selling PHM on 2013-03-31 00:00:00\n", - "Selling CE on 2013-03-31 00:00:00\n", - "Selling SWKS on 2013-03-31 00:00:00\n", - "Buying NCLH on 2013-04-30 00:00:00\n", - "Buying EW on 2013-04-30 00:00:00\n", - "Buying WTW on 2013-04-30 00:00:00\n", - "Buying LH on 2013-04-30 00:00:00\n", - "Buying SO on 2013-04-30 00:00:00\n", - "Buying D on 2013-04-30 00:00:00\n", - "Buying DG on 2013-04-30 00:00:00\n", - "Buying LDOS on 2013-04-30 00:00:00\n", - "Buying PPL on 2013-04-30 00:00:00\n", - "Buying GIS on 2013-04-30 00:00:00\n", - "Buying AJG on 2013-04-30 00:00:00\n", - "Buying CAH on 2013-04-30 00:00:00\n", - "Buying COR on 2013-04-30 00:00:00\n", - "Selling J on 2013-04-30 00:00:00\n", - "Selling PTC on 2013-04-30 00:00:00\n", - "Selling KMX on 2013-04-30 00:00:00\n", - "Selling BLK on 2013-04-30 00:00:00\n", - "Selling APTV on 2013-04-30 00:00:00\n", - "Selling PSX on 2013-04-30 00:00:00\n", - "Selling LYB on 2013-04-30 00:00:00\n", - "Selling AXON on 2013-04-30 00:00:00\n", - "Selling TXT on 2013-04-30 00:00:00\n", - "Selling CE on 2013-04-30 00:00:00\n", - "Selling SWKS on 2013-04-30 00:00:00\n", - "Selling PHM on 2013-04-30 00:00:00\n", - "Selling VRTX on 2013-04-30 00:00:00\n", - "Buying PPL on 2013-05-31 00:00:00\n", - "Buying COR on 2013-05-31 00:00:00\n", - "Buying LH on 2013-05-31 00:00:00\n", - "Buying DG on 2013-05-31 00:00:00\n", - "Buying WTW on 2013-05-31 00:00:00\n", - "Buying NCLH on 2013-05-31 00:00:00\n", - "Buying NEM on 2013-05-31 00:00:00\n", - "Buying ERIE on 2013-05-31 00:00:00\n", - "Buying T on 2013-05-31 00:00:00\n", - "Buying DUK on 2013-05-31 00:00:00\n", - "Buying SO on 2013-05-31 00:00:00\n", - "Buying GIS on 2013-05-31 00:00:00\n", - "Buying D on 2013-05-31 00:00:00\n", - "Selling MPWR on 2013-05-31 00:00:00\n", - "Selling APTV on 2013-05-31 00:00:00\n", - "Selling RJF on 2013-05-31 00:00:00\n", - "Selling SWKS on 2013-05-31 00:00:00\n", - "Selling BX on 2013-05-31 00:00:00\n", - "Selling MTD on 2013-05-31 00:00:00\n", - "Selling CE on 2013-05-31 00:00:00\n", - "Selling BLK on 2013-05-31 00:00:00\n", - "Selling LYB on 2013-05-31 00:00:00\n", - "Selling TXT on 2013-05-31 00:00:00\n", - "Selling APO on 2013-05-31 00:00:00\n", - "Selling PHM on 2013-05-31 00:00:00\n", - "Selling VRTX on 2013-05-31 00:00:00\n", - "Buying COR on 2013-06-30 00:00:00\n", - "Buying WTW on 2013-06-30 00:00:00\n", - "Buying LH on 2013-06-30 00:00:00\n", - "Buying PPL on 2013-06-30 00:00:00\n", - "Buying IRM on 2013-06-30 00:00:00\n", - "Buying ULTA on 2013-06-30 00:00:00\n", - "Buying DG on 2013-06-30 00:00:00\n", - "Buying NCLH on 2013-06-30 00:00:00\n", - "Buying GIS on 2013-06-30 00:00:00\n", - "Buying USB on 2013-06-30 00:00:00\n", - "Buying IDXX on 2013-06-30 00:00:00\n", - "Buying DUK on 2013-06-30 00:00:00\n", - "Buying T on 2013-06-30 00:00:00\n", - "Selling APTV on 2013-06-30 00:00:00\n", - "Selling LYB on 2013-06-30 00:00:00\n", - "Selling PSX on 2013-06-30 00:00:00\n", - "Selling MTD on 2013-06-30 00:00:00\n", - "Selling INCY on 2013-06-30 00:00:00\n", - "Selling CE on 2013-06-30 00:00:00\n", - "Selling KMX on 2013-06-30 00:00:00\n", - "Selling BX on 2013-06-30 00:00:00\n", - "Selling TXT on 2013-06-30 00:00:00\n", - "Selling BLK on 2013-06-30 00:00:00\n", - "Selling APO on 2013-06-30 00:00:00\n", - "Selling VRTX on 2013-06-30 00:00:00\n", - "Selling PHM on 2013-06-30 00:00:00\n", - "Buying ULTA on 2013-07-31 00:00:00\n", - "Buying IRM on 2013-07-31 00:00:00\n", - "Buying LH on 2013-07-31 00:00:00\n", - "Buying RMD on 2013-07-31 00:00:00\n", - "Buying DGX on 2013-07-31 00:00:00\n", - "Buying NEM on 2013-07-31 00:00:00\n", - "Buying USB on 2013-07-31 00:00:00\n", - "Buying COR on 2013-07-31 00:00:00\n", - "Buying PPL on 2013-07-31 00:00:00\n", - "Buying LYV on 2013-07-31 00:00:00\n", - "Buying CBOE on 2013-07-31 00:00:00\n", - "Buying SJM on 2013-07-31 00:00:00\n", - "Buying NCLH on 2013-07-31 00:00:00\n", - "Selling WELL on 2013-07-31 00:00:00\n", - "Selling PSX on 2013-07-31 00:00:00\n", - "Selling GM on 2013-07-31 00:00:00\n", - "Selling LVS on 2013-07-31 00:00:00\n", - "Selling TXT on 2013-07-31 00:00:00\n", - "Selling GS on 2013-07-31 00:00:00\n", - "Selling KMX on 2013-07-31 00:00:00\n", - "Selling INCY on 2013-07-31 00:00:00\n", - "Selling C on 2013-07-31 00:00:00\n", - "Selling BX on 2013-07-31 00:00:00\n", - "Selling APO on 2013-07-31 00:00:00\n", - "Selling BLK on 2013-07-31 00:00:00\n", - "Selling PHM on 2013-07-31 00:00:00\n", - "Buying AXON on 2013-08-31 00:00:00\n", - "Buying IRM on 2013-08-31 00:00:00\n", - "Buying RMD on 2013-08-31 00:00:00\n", - "Buying LH on 2013-08-31 00:00:00\n", - "Buying DGX on 2013-08-31 00:00:00\n", - "Buying ULTA on 2013-08-31 00:00:00\n", - "Buying LYV on 2013-08-31 00:00:00\n", - "Buying USB on 2013-08-31 00:00:00\n", - "Buying PPL on 2013-08-31 00:00:00\n", - "Buying CHD on 2013-08-31 00:00:00\n", - "Buying VRSK on 2013-08-31 00:00:00\n", - "Buying NCLH on 2013-08-31 00:00:00\n", - "Buying BDX on 2013-08-31 00:00:00\n", - "Selling GM on 2013-08-31 00:00:00\n", - "Selling APO on 2013-08-31 00:00:00\n", - "Selling GS on 2013-08-31 00:00:00\n", - "Selling NFLX on 2013-08-31 00:00:00\n", - "Selling C on 2013-08-31 00:00:00\n", - "Selling TXT on 2013-08-31 00:00:00\n", - "Selling LVS on 2013-08-31 00:00:00\n", - "Selling BWA on 2013-08-31 00:00:00\n", - "Selling FFIV on 2013-08-31 00:00:00\n", - "Selling KMX on 2013-08-31 00:00:00\n", - "Selling PHM on 2013-08-31 00:00:00\n", - "Selling BLK on 2013-08-31 00:00:00\n", - "Selling BX on 2013-08-31 00:00:00\n", - "Buying AXON on 2013-09-30 00:00:00\n", - "Buying LDOS on 2013-09-30 00:00:00\n", - "Buying LH on 2013-09-30 00:00:00\n", - "Buying DGX on 2013-09-30 00:00:00\n", - "Buying NWSA on 2013-09-30 00:00:00\n", - "Buying INCY on 2013-09-30 00:00:00\n", - "Buying NCLH on 2013-09-30 00:00:00\n", - "Buying CCI on 2013-09-30 00:00:00\n", - "Buying ERIE on 2013-09-30 00:00:00\n", - "Buying CLX on 2013-09-30 00:00:00\n", - "Buying MPWR on 2013-09-30 00:00:00\n", - "Buying ACGL on 2013-09-30 00:00:00\n", - "Buying USB on 2013-09-30 00:00:00\n", - "Selling PARA on 2013-09-30 00:00:00\n", - "Selling GS on 2013-09-30 00:00:00\n", - "Selling ULTA on 2013-09-30 00:00:00\n", - "Selling NFLX on 2013-09-30 00:00:00\n", - "Selling BLK on 2013-09-30 00:00:00\n", - "Selling C on 2013-09-30 00:00:00\n", - "Selling GM on 2013-09-30 00:00:00\n", - "Selling APO on 2013-09-30 00:00:00\n", - "Selling PKG on 2013-09-30 00:00:00\n", - "Selling BX on 2013-09-30 00:00:00\n", - "Selling PHM on 2013-09-30 00:00:00\n", - "Selling TXT on 2013-09-30 00:00:00\n", - "Selling FFIV on 2013-09-30 00:00:00\n", - "Buying DGX on 2013-10-31 00:00:00\n", - "Buying LH on 2013-10-31 00:00:00\n", - "Buying AXON on 2013-10-31 00:00:00\n", - "Buying LDOS on 2013-10-31 00:00:00\n", - "Buying CCI on 2013-10-31 00:00:00\n", - "Buying NWSA on 2013-10-31 00:00:00\n", - "Buying GEN on 2013-10-31 00:00:00\n", - "Buying ERIE on 2013-10-31 00:00:00\n", - "Buying TRGP on 2013-10-31 00:00:00\n", - "Buying NCLH on 2013-10-31 00:00:00\n", - "Buying NEM on 2013-10-31 00:00:00\n", - "Buying NRG on 2013-10-31 00:00:00\n", - "Buying AEP on 2013-10-31 00:00:00\n", - "Selling TXT on 2013-10-31 00:00:00\n", - "Selling APO on 2013-10-31 00:00:00\n", - "Selling PHM on 2013-10-31 00:00:00\n", - "Selling BLK on 2013-10-31 00:00:00\n", - "Selling AMZN on 2013-10-31 00:00:00\n", - "Selling DFS on 2013-10-31 00:00:00\n", - "Selling PARA on 2013-10-31 00:00:00\n", - "Selling BX on 2013-10-31 00:00:00\n", - "Selling GILD on 2013-10-31 00:00:00\n", - "Selling EPAM on 2013-10-31 00:00:00\n", - "Selling NFLX on 2013-10-31 00:00:00\n", - "Selling FFIV on 2013-10-31 00:00:00\n", - "Selling NOW on 2013-10-31 00:00:00\n", - "Buying DGX on 2013-11-30 00:00:00\n", - "Buying LH on 2013-11-30 00:00:00\n", - "Buying ERIE on 2013-11-30 00:00:00\n", - "Buying LDOS on 2013-11-30 00:00:00\n", - "Buying LYV on 2013-11-30 00:00:00\n", - "Buying CDW on 2013-11-30 00:00:00\n", - "Buying IDXX on 2013-11-30 00:00:00\n", - "Buying MNST on 2013-11-30 00:00:00\n", - "Buying EW on 2013-11-30 00:00:00\n", - "Buying ZBH on 2013-11-30 00:00:00\n", - "Buying GEN on 2013-11-30 00:00:00\n", - "Buying CCI on 2013-11-30 00:00:00\n", - "Buying PAYX on 2013-11-30 00:00:00\n", - "Selling APO on 2013-11-30 00:00:00\n", - "Selling PHM on 2013-11-30 00:00:00\n", - "Selling PKG on 2013-11-30 00:00:00\n", - "Selling GILD on 2013-11-30 00:00:00\n", - "Selling ADBE on 2013-11-30 00:00:00\n", - "Selling AXON on 2013-11-30 00:00:00\n", - "Selling AMZN on 2013-11-30 00:00:00\n", - "Selling EPAM on 2013-11-30 00:00:00\n", - "Selling CRM on 2013-11-30 00:00:00\n", - "Selling BX on 2013-11-30 00:00:00\n", - "Selling NFLX on 2013-11-30 00:00:00\n", - "Selling INCY on 2013-11-30 00:00:00\n", - "Selling NOW on 2013-11-30 00:00:00\n", - "Buying JBL on 2013-12-31 00:00:00\n", - "Buying DGX on 2013-12-31 00:00:00\n", - "Buying ULTA on 2013-12-31 00:00:00\n", - "Buying IDXX on 2013-12-31 00:00:00\n", - "Buying MNST on 2013-12-31 00:00:00\n", - "Buying DLTR on 2013-12-31 00:00:00\n", - "Buying CCI on 2013-12-31 00:00:00\n", - "Buying GEN on 2013-12-31 00:00:00\n", - "Buying AEP on 2013-12-31 00:00:00\n", - "Buying SO on 2013-12-31 00:00:00\n", - "Buying CDW on 2013-12-31 00:00:00\n", - "Buying CSX on 2013-12-31 00:00:00\n", - "Buying ERIE on 2013-12-31 00:00:00\n", - "Selling HBAN on 2013-12-31 00:00:00\n", - "Selling APTV on 2013-12-31 00:00:00\n", - "Selling VRTX on 2013-12-31 00:00:00\n", - "Selling PARA on 2013-12-31 00:00:00\n", - "Selling CRM on 2013-12-31 00:00:00\n", - "Selling AXON on 2013-12-31 00:00:00\n", - "Selling AMZN on 2013-12-31 00:00:00\n", - "Selling BLK on 2013-12-31 00:00:00\n", - "Selling BX on 2013-12-31 00:00:00\n", - "Selling EPAM on 2013-12-31 00:00:00\n", - "Selling GILD on 2013-12-31 00:00:00\n", - "Selling NOW on 2013-12-31 00:00:00\n", - "Selling INCY on 2013-12-31 00:00:00\n", - "Buying NFLX on 2014-01-31 00:00:00\n", - "Buying JBL on 2014-01-31 00:00:00\n", - "Buying ULTA on 2014-01-31 00:00:00\n", - "Buying WELL on 2014-01-31 00:00:00\n", - "Buying NEM on 2014-01-31 00:00:00\n", - "Buying DGX on 2014-01-31 00:00:00\n", - "Buying DG on 2014-01-31 00:00:00\n", - "Buying KMX on 2014-01-31 00:00:00\n", - "Buying IDXX on 2014-01-31 00:00:00\n", - "Buying DLTR on 2014-01-31 00:00:00\n", - "Buying O on 2014-01-31 00:00:00\n", - "Buying DUK on 2014-01-31 00:00:00\n", - "Buying SO on 2014-01-31 00:00:00\n", - "Selling HBAN on 2014-01-31 00:00:00\n", - "Selling VRTX on 2014-01-31 00:00:00\n", - "Selling INCY on 2014-01-31 00:00:00\n", - "Selling MKTX on 2014-01-31 00:00:00\n", - "Selling TXT on 2014-01-31 00:00:00\n", - "Selling GILD on 2014-01-31 00:00:00\n", - "Selling APTV on 2014-01-31 00:00:00\n", - "Selling LVS on 2014-01-31 00:00:00\n", - "Selling BLK on 2014-01-31 00:00:00\n", - "Selling CRM on 2014-01-31 00:00:00\n", - "Selling AMZN on 2014-01-31 00:00:00\n", - "Selling NOW on 2014-01-31 00:00:00\n", - "Selling AXON on 2014-01-31 00:00:00\n", - "Buying NFLX on 2014-02-28 00:00:00\n", - "Buying ULTA on 2014-02-28 00:00:00\n", - "Buying KMX on 2014-02-28 00:00:00\n", - "Buying JBL on 2014-02-28 00:00:00\n", - "Buying WELL on 2014-02-28 00:00:00\n", - "Buying DUK on 2014-02-28 00:00:00\n", - "Buying SO on 2014-02-28 00:00:00\n", - "Buying PPL on 2014-02-28 00:00:00\n", - "Buying DG on 2014-02-28 00:00:00\n", - "Buying D on 2014-02-28 00:00:00\n", - "Buying DLTR on 2014-02-28 00:00:00\n", - "Buying AEP on 2014-02-28 00:00:00\n", - "Buying O on 2014-02-28 00:00:00\n", - "Selling AON on 2014-02-28 00:00:00\n", - "Selling CBOE on 2014-02-28 00:00:00\n", - "Selling VRTX on 2014-02-28 00:00:00\n", - "Selling PH on 2014-02-28 00:00:00\n", - "Selling CRM on 2014-02-28 00:00:00\n", - "Selling EPAM on 2014-02-28 00:00:00\n", - "Selling AXON on 2014-02-28 00:00:00\n", - "Selling MTD on 2014-02-28 00:00:00\n", - "Selling LVS on 2014-02-28 00:00:00\n", - "Selling AMZN on 2014-02-28 00:00:00\n", - "Selling TXT on 2014-02-28 00:00:00\n", - "Selling BLK on 2014-02-28 00:00:00\n", - "Selling NOW on 2014-02-28 00:00:00\n", - "Buying WELL on 2014-03-31 00:00:00\n", - "Buying DGX on 2014-03-31 00:00:00\n", - "Buying DUK on 2014-03-31 00:00:00\n", - "Buying SO on 2014-03-31 00:00:00\n", - "Buying PPL on 2014-03-31 00:00:00\n", - "Buying NFLX on 2014-03-31 00:00:00\n", - "Buying D on 2014-03-31 00:00:00\n", - "Buying CLX on 2014-03-31 00:00:00\n", - "Buying LH on 2014-03-31 00:00:00\n", - "Buying AEP on 2014-03-31 00:00:00\n", - "Buying NI on 2014-03-31 00:00:00\n", - "Buying CMS on 2014-03-31 00:00:00\n", - "Buying KMX on 2014-03-31 00:00:00\n", - "Selling BX on 2014-03-31 00:00:00\n", - "Selling MKTX on 2014-03-31 00:00:00\n", - "Selling AON on 2014-03-31 00:00:00\n", - "Selling BKNG on 2014-03-31 00:00:00\n", - "Selling AMZN on 2014-03-31 00:00:00\n", - "Selling TXT on 2014-03-31 00:00:00\n", - "Selling BLK on 2014-03-31 00:00:00\n", - "Selling MTD on 2014-03-31 00:00:00\n", - "Selling CRM on 2014-03-31 00:00:00\n", - "Selling LVS on 2014-03-31 00:00:00\n", - "Selling INCY on 2014-03-31 00:00:00\n", - "Selling NOW on 2014-03-31 00:00:00\n", - "Selling EPAM on 2014-03-31 00:00:00\n", - "Buying SO on 2014-04-30 00:00:00\n", - "Buying DUK on 2014-04-30 00:00:00\n", - "Buying WELL on 2014-04-30 00:00:00\n", - "Buying PPL on 2014-04-30 00:00:00\n", - "Buying CMS on 2014-04-30 00:00:00\n", - "Buying CLX on 2014-04-30 00:00:00\n", - "Buying O on 2014-04-30 00:00:00\n", - "Buying SRE on 2014-04-30 00:00:00\n", - "Buying PNW on 2014-04-30 00:00:00\n", - "Buying AEP on 2014-04-30 00:00:00\n", - "Buying DGX on 2014-04-30 00:00:00\n", - "Buying D on 2014-04-30 00:00:00\n", - "Buying T on 2014-04-30 00:00:00\n", - "Selling MPWR on 2014-04-30 00:00:00\n", - "Selling MNST on 2014-04-30 00:00:00\n", - "Selling FFIV on 2014-04-30 00:00:00\n", - "Selling AMZN on 2014-04-30 00:00:00\n", - "Selling CRM on 2014-04-30 00:00:00\n", - "Selling TXT on 2014-04-30 00:00:00\n", - "Selling LVS on 2014-04-30 00:00:00\n", - "Selling NFLX on 2014-04-30 00:00:00\n", - "Selling VRTX on 2014-04-30 00:00:00\n", - "Selling BKNG on 2014-04-30 00:00:00\n", - "Selling INCY on 2014-04-30 00:00:00\n", - "Selling NOW on 2014-04-30 00:00:00\n", - "Selling EPAM on 2014-04-30 00:00:00\n", - "Buying SO on 2014-05-31 00:00:00\n", - "Buying CMS on 2014-05-31 00:00:00\n", - "Buying NEM on 2014-05-31 00:00:00\n", - "Buying WELL on 2014-05-31 00:00:00\n", - "Buying PPL on 2014-05-31 00:00:00\n", - "Buying DUK on 2014-05-31 00:00:00\n", - "Buying CLX on 2014-05-31 00:00:00\n", - "Buying PNW on 2014-05-31 00:00:00\n", - "Buying SRE on 2014-05-31 00:00:00\n", - "Buying D on 2014-05-31 00:00:00\n", - "Buying O on 2014-05-31 00:00:00\n", - "Buying T on 2014-05-31 00:00:00\n", - "Buying AEP on 2014-05-31 00:00:00\n", - "Selling GILD on 2014-05-31 00:00:00\n", - "Selling FFIV on 2014-05-31 00:00:00\n", - "Selling TXT on 2014-05-31 00:00:00\n", - "Selling AMZN on 2014-05-31 00:00:00\n", - "Selling LVS on 2014-05-31 00:00:00\n", - "Selling EPAM on 2014-05-31 00:00:00\n", - "Selling CRM on 2014-05-31 00:00:00\n", - "Selling NFLX on 2014-05-31 00:00:00\n", - "Selling BKNG on 2014-05-31 00:00:00\n", - "Selling AXON on 2014-05-31 00:00:00\n", - "Selling VRTX on 2014-05-31 00:00:00\n", - "Selling INCY on 2014-05-31 00:00:00\n", - "Selling NOW on 2014-05-31 00:00:00\n", - "Buying WELL on 2014-06-30 00:00:00\n", - "Buying NEM on 2014-06-30 00:00:00\n", - "Buying SO on 2014-06-30 00:00:00\n", - "Buying DUK on 2014-06-30 00:00:00\n", - "Buying CMS on 2014-06-30 00:00:00\n", - "Buying CLX on 2014-06-30 00:00:00\n", - "Buying PNW on 2014-06-30 00:00:00\n", - "Buying PPL on 2014-06-30 00:00:00\n", - "Buying T on 2014-06-30 00:00:00\n", - "Buying SRE on 2014-06-30 00:00:00\n", - "Buying GEN on 2014-06-30 00:00:00\n", - "Buying O on 2014-06-30 00:00:00\n", - "Buying CHD on 2014-06-30 00:00:00\n", - "Selling MPWR on 2014-06-30 00:00:00\n", - "Selling LVS on 2014-06-30 00:00:00\n", - "Selling ADBE on 2014-06-30 00:00:00\n", - "Selling KMX on 2014-06-30 00:00:00\n", - "Selling LYV on 2014-06-30 00:00:00\n", - "Selling CRM on 2014-06-30 00:00:00\n", - "Selling TXT on 2014-06-30 00:00:00\n", - "Selling BKNG on 2014-06-30 00:00:00\n", - "Selling AMZN on 2014-06-30 00:00:00\n", - "Selling INCY on 2014-06-30 00:00:00\n", - "Selling AXON on 2014-06-30 00:00:00\n", - "Selling NFLX on 2014-06-30 00:00:00\n", - "Selling NOW on 2014-06-30 00:00:00\n", - "Buying WELL on 2014-07-31 00:00:00\n", - "Buying VRTX on 2014-07-31 00:00:00\n", - "Buying ALL on 2014-07-31 00:00:00\n", - "Buying DUK on 2014-07-31 00:00:00\n", - "Buying SO on 2014-07-31 00:00:00\n", - "Buying CMS on 2014-07-31 00:00:00\n", - "Buying PPL on 2014-07-31 00:00:00\n", - "Buying GEN on 2014-07-31 00:00:00\n", - "Buying NEM on 2014-07-31 00:00:00\n", - "Buying IRM on 2014-07-31 00:00:00\n", - "Buying ULTA on 2014-07-31 00:00:00\n", - "Buying T on 2014-07-31 00:00:00\n", - "Buying D on 2014-07-31 00:00:00\n", - "Selling BWA on 2014-07-31 00:00:00\n", - "Selling LYV on 2014-07-31 00:00:00\n", - "Selling PTC on 2014-07-31 00:00:00\n", - "Selling MPWR on 2014-07-31 00:00:00\n", - "Selling NOW on 2014-07-31 00:00:00\n", - "Selling ADBE on 2014-07-31 00:00:00\n", - "Selling KMX on 2014-07-31 00:00:00\n", - "Selling EPAM on 2014-07-31 00:00:00\n", - "Selling NFLX on 2014-07-31 00:00:00\n", - "Selling AMZN on 2014-07-31 00:00:00\n", - "Selling INCY on 2014-07-31 00:00:00\n", - "Selling SWKS on 2014-07-31 00:00:00\n", - "Selling AXON on 2014-07-31 00:00:00\n", - "Buying VRTX on 2014-08-31 00:00:00\n", - "Buying CBOE on 2014-08-31 00:00:00\n", - "Buying ALL on 2014-08-31 00:00:00\n", - "Buying RMD on 2014-08-31 00:00:00\n", - "Buying WELL on 2014-08-31 00:00:00\n", - "Buying O on 2014-08-31 00:00:00\n", - "Buying CLX on 2014-08-31 00:00:00\n", - "Buying NEM on 2014-08-31 00:00:00\n", - "Buying GEN on 2014-08-31 00:00:00\n", - "Buying DUK on 2014-08-31 00:00:00\n", - "Buying WTW on 2014-08-31 00:00:00\n", - "Buying SO on 2014-08-31 00:00:00\n", - "Buying ULTA on 2014-08-31 00:00:00\n", - "Selling TXT on 2014-08-31 00:00:00\n", - "Selling PHM on 2014-08-31 00:00:00\n", - "Selling BWA on 2014-08-31 00:00:00\n", - "Selling BX on 2014-08-31 00:00:00\n", - "Selling CRM on 2014-08-31 00:00:00\n", - "Selling BLK on 2014-08-31 00:00:00\n", - "Selling ADBE on 2014-08-31 00:00:00\n", - "Selling NOW on 2014-08-31 00:00:00\n", - "Selling KMX on 2014-08-31 00:00:00\n", - "Selling SWKS on 2014-08-31 00:00:00\n", - "Selling AMZN on 2014-08-31 00:00:00\n", - "Selling INCY on 2014-08-31 00:00:00\n", - "Selling AXON on 2014-08-31 00:00:00\n", - "Buying CLX on 2014-09-30 00:00:00\n", - "Buying ALL on 2014-09-30 00:00:00\n", - "Buying ULTA on 2014-09-30 00:00:00\n", - "Buying NEM on 2014-09-30 00:00:00\n", - "Buying CBOE on 2014-09-30 00:00:00\n", - "Buying RMD on 2014-09-30 00:00:00\n", - "Buying GEN on 2014-09-30 00:00:00\n", - "Buying WTW on 2014-09-30 00:00:00\n", - "Buying DUK on 2014-09-30 00:00:00\n", - "Buying O on 2014-09-30 00:00:00\n", - "Buying ACGL on 2014-09-30 00:00:00\n", - "Buying PPL on 2014-09-30 00:00:00\n", - "Buying SO on 2014-09-30 00:00:00\n", - "Selling BX on 2014-09-30 00:00:00\n", - "Selling JBL on 2014-09-30 00:00:00\n", - "Selling FFIV on 2014-09-30 00:00:00\n", - "Selling GILD on 2014-09-30 00:00:00\n", - "Selling BLK on 2014-09-30 00:00:00\n", - "Selling CRM on 2014-09-30 00:00:00\n", - "Selling KMX on 2014-09-30 00:00:00\n", - "Selling AMZN on 2014-09-30 00:00:00\n", - "Selling VRTX on 2014-09-30 00:00:00\n", - "Selling NOW on 2014-09-30 00:00:00\n", - "Selling SWKS on 2014-09-30 00:00:00\n", - "Selling INCY on 2014-09-30 00:00:00\n", - "Selling AXON on 2014-09-30 00:00:00\n", - "Buying SO on 2014-10-31 00:00:00\n", - "Buying O on 2014-10-31 00:00:00\n", - "Buying DUK on 2014-10-31 00:00:00\n", - "Buying WELL on 2014-10-31 00:00:00\n", - "Buying NEM on 2014-10-31 00:00:00\n", - "Buying CLX on 2014-10-31 00:00:00\n", - "Buying BDX on 2014-10-31 00:00:00\n", - "Buying EXR on 2014-10-31 00:00:00\n", - "Buying AEP on 2014-10-31 00:00:00\n", - "Buying CBOE on 2014-10-31 00:00:00\n", - "Buying CMS on 2014-10-31 00:00:00\n", - "Buying PPL on 2014-10-31 00:00:00\n", - "Buying ULTA on 2014-10-31 00:00:00\n", - "Selling PSX on 2014-10-31 00:00:00\n", - "Selling INCY on 2014-10-31 00:00:00\n", - "Selling CRM on 2014-10-31 00:00:00\n", - "Selling PH on 2014-10-31 00:00:00\n", - "Selling LYV on 2014-10-31 00:00:00\n", - "Selling KMX on 2014-10-31 00:00:00\n", - "Selling FFIV on 2014-10-31 00:00:00\n", - "Selling VRTX on 2014-10-31 00:00:00\n", - "Selling LYB on 2014-10-31 00:00:00\n", - "Selling MPWR on 2014-10-31 00:00:00\n", - "Selling TXT on 2014-10-31 00:00:00\n", - "Selling NOW on 2014-10-31 00:00:00\n", - "Selling SWKS on 2014-10-31 00:00:00\n", - "Buying O on 2014-11-30 00:00:00\n", - "Buying SO on 2014-11-30 00:00:00\n", - "Buying DUK on 2014-11-30 00:00:00\n", - "Buying WELL on 2014-11-30 00:00:00\n", - "Buying CLX on 2014-11-30 00:00:00\n", - "Buying CBOE on 2014-11-30 00:00:00\n", - "Buying NEM on 2014-11-30 00:00:00\n", - "Buying AEP on 2014-11-30 00:00:00\n", - "Buying CMS on 2014-11-30 00:00:00\n", - "Buying ULTA on 2014-11-30 00:00:00\n", - "Buying BDX on 2014-11-30 00:00:00\n", - "Buying REG on 2014-11-30 00:00:00\n", - "Buying ACGL on 2014-11-30 00:00:00\n", - "Selling FFIV on 2014-11-30 00:00:00\n", - "Selling ABBV on 2014-11-30 00:00:00\n", - "Selling CRM on 2014-11-30 00:00:00\n", - "Selling VRTX on 2014-11-30 00:00:00\n", - "Selling PSX on 2014-11-30 00:00:00\n", - "Selling PH on 2014-11-30 00:00:00\n", - "Selling KMX on 2014-11-30 00:00:00\n", - "Selling LYV on 2014-11-30 00:00:00\n", - "Selling TXT on 2014-11-30 00:00:00\n", - "Selling MPWR on 2014-11-30 00:00:00\n", - "Selling LYB on 2014-11-30 00:00:00\n", - "Selling NOW on 2014-11-30 00:00:00\n", - "Selling SWKS on 2014-11-30 00:00:00\n", - "Buying WELL on 2014-12-31 00:00:00\n", - "Buying O on 2014-12-31 00:00:00\n", - "Buying SO on 2014-12-31 00:00:00\n", - "Buying DUK on 2014-12-31 00:00:00\n", - "Buying ERIE on 2014-12-31 00:00:00\n", - "Buying CBOE on 2014-12-31 00:00:00\n", - "Buying ACGL on 2014-12-31 00:00:00\n", - "Buying CLX on 2014-12-31 00:00:00\n", - "Buying AEP on 2014-12-31 00:00:00\n", - "Buying CHD on 2014-12-31 00:00:00\n", - "Buying EXR on 2014-12-31 00:00:00\n", - "Buying REG on 2014-12-31 00:00:00\n", - "Buying JBHT on 2014-12-31 00:00:00\n", - "Selling APO on 2014-12-31 00:00:00\n", - "Selling CE on 2014-12-31 00:00:00\n", - "Selling JBL on 2014-12-31 00:00:00\n", - "Selling PSX on 2014-12-31 00:00:00\n", - "Selling CRM on 2014-12-31 00:00:00\n", - "Selling PH on 2014-12-31 00:00:00\n", - "Selling NOW on 2014-12-31 00:00:00\n", - "Selling MPWR on 2014-12-31 00:00:00\n", - "Selling ROK on 2014-12-31 00:00:00\n", - "Selling TXT on 2014-12-31 00:00:00\n", - "Selling SWKS on 2014-12-31 00:00:00\n", - "Selling LYB on 2014-12-31 00:00:00\n", - "Selling TRGP on 2014-12-31 00:00:00\n", - "Buying O on 2015-01-31 00:00:00\n", - "Buying WELL on 2015-01-31 00:00:00\n", - "Buying NEM on 2015-01-31 00:00:00\n", - "Buying CBOE on 2015-01-31 00:00:00\n", - "Buying DUK on 2015-01-31 00:00:00\n", - "Buying EXR on 2015-01-31 00:00:00\n", - "Buying ACGL on 2015-01-31 00:00:00\n", - "Buying FFIV on 2015-01-31 00:00:00\n", - "Buying VRSK on 2015-01-31 00:00:00\n", - "Buying SO on 2015-01-31 00:00:00\n", - "Buying HAS on 2015-01-31 00:00:00\n", - "Buying CLX on 2015-01-31 00:00:00\n", - "Buying AMZN on 2015-01-31 00:00:00\n", - "Selling CE on 2015-01-31 00:00:00\n", - "Selling A on 2015-01-31 00:00:00\n", - "Selling CRM on 2015-01-31 00:00:00\n", - "Selling C on 2015-01-31 00:00:00\n", - "Selling BWA on 2015-01-31 00:00:00\n", - "Selling SWKS on 2015-01-31 00:00:00\n", - "Selling PHM on 2015-01-31 00:00:00\n", - "Selling J on 2015-01-31 00:00:00\n", - "Selling PSX on 2015-01-31 00:00:00\n", - "Selling NFLX on 2015-01-31 00:00:00\n", - "Selling FCX on 2015-01-31 00:00:00\n", - "Selling LYB on 2015-01-31 00:00:00\n", - "Selling TRGP on 2015-01-31 00:00:00\n", - "Buying O on 2015-02-28 00:00:00\n", - "Buying WELL on 2015-02-28 00:00:00\n", - "Buying NEM on 2015-02-28 00:00:00\n", - "Buying CBOE on 2015-02-28 00:00:00\n", - "Buying DUK on 2015-02-28 00:00:00\n", - "Buying EXR on 2015-02-28 00:00:00\n", - "Buying SO on 2015-02-28 00:00:00\n", - "Buying HAS on 2015-02-28 00:00:00\n", - "Buying ACGL on 2015-02-28 00:00:00\n", - "Buying CLX on 2015-02-28 00:00:00\n", - "Buying VRSK on 2015-02-28 00:00:00\n", - "Buying AMZN on 2015-02-28 00:00:00\n", - "Buying FFIV on 2015-02-28 00:00:00\n", - "Selling STLD on 2015-02-28 00:00:00\n", - "Selling VRTX on 2015-02-28 00:00:00\n", - "Selling MSFT on 2015-02-28 00:00:00\n", - "Selling C on 2015-02-28 00:00:00\n", - "Selling A on 2015-02-28 00:00:00\n", - "Selling PSX on 2015-02-28 00:00:00\n", - "Selling NFLX on 2015-02-28 00:00:00\n", - "Selling BWA on 2015-02-28 00:00:00\n", - "Selling CRM on 2015-02-28 00:00:00\n", - "Selling J on 2015-02-28 00:00:00\n", - "Selling LYB on 2015-02-28 00:00:00\n", - "Selling TRGP on 2015-02-28 00:00:00\n", - "Selling FCX on 2015-02-28 00:00:00\n", - "Buying NEM on 2015-03-31 00:00:00\n", - "Buying CBOE on 2015-03-31 00:00:00\n", - "Buying O on 2015-03-31 00:00:00\n", - "Buying WELL on 2015-03-31 00:00:00\n", - "Buying FFIV on 2015-03-31 00:00:00\n", - "Buying DUK on 2015-03-31 00:00:00\n", - "Buying SO on 2015-03-31 00:00:00\n", - "Buying BX on 2015-03-31 00:00:00\n", - "Buying INCY on 2015-03-31 00:00:00\n", - "Buying CRL on 2015-03-31 00:00:00\n", - "Buying ACGL on 2015-03-31 00:00:00\n", - "Buying CLX on 2015-03-31 00:00:00\n", - "Buying COR on 2015-03-31 00:00:00\n", - "Selling A on 2015-03-31 00:00:00\n", - "Selling PHM on 2015-03-31 00:00:00\n", - "Selling SWKS on 2015-03-31 00:00:00\n", - "Selling TRGP on 2015-03-31 00:00:00\n", - "Selling GS on 2015-03-31 00:00:00\n", - "Selling GEN on 2015-03-31 00:00:00\n", - "Selling NFLX on 2015-03-31 00:00:00\n", - "Selling PSX on 2015-03-31 00:00:00\n", - "Selling TSCO on 2015-03-31 00:00:00\n", - "Selling LYB on 2015-03-31 00:00:00\n", - "Selling BWA on 2015-03-31 00:00:00\n", - "Selling STLD on 2015-03-31 00:00:00\n", - "Selling FCX on 2015-03-31 00:00:00\n", - "Buying CE on 2015-04-30 00:00:00\n", - "Buying APO on 2015-04-30 00:00:00\n", - "Buying CBOE on 2015-04-30 00:00:00\n", - "Buying SJM on 2015-04-30 00:00:00\n", - "Buying BX on 2015-04-30 00:00:00\n", - "Buying ULTA on 2015-04-30 00:00:00\n", - "Buying SYY on 2015-04-30 00:00:00\n", - "Buying ACGL on 2015-04-30 00:00:00\n", - "Buying WTW on 2015-04-30 00:00:00\n", - "Buying SYF on 2015-04-30 00:00:00\n", - "Buying GIS on 2015-04-30 00:00:00\n", - "Buying CLX on 2015-04-30 00:00:00\n", - "Buying GWW on 2015-04-30 00:00:00\n", - "Selling PPL on 2015-04-30 00:00:00\n", - "Selling BLK on 2015-04-30 00:00:00\n", - "Selling VRTX on 2015-04-30 00:00:00\n", - "Selling ORLY on 2015-04-30 00:00:00\n", - "Selling NUE on 2015-04-30 00:00:00\n", - "Selling ZBH on 2015-04-30 00:00:00\n", - "Selling MAR on 2015-04-30 00:00:00\n", - "Selling GEN on 2015-04-30 00:00:00\n", - "Selling LDOS on 2015-04-30 00:00:00\n", - "Selling BWA on 2015-04-30 00:00:00\n", - "Selling FCX on 2015-04-30 00:00:00\n", - "Selling NOW on 2015-04-30 00:00:00\n", - "Selling STLD on 2015-04-30 00:00:00\n", - "Buying CBOE on 2015-05-31 00:00:00\n", - "Buying CE on 2015-05-31 00:00:00\n", - "Buying APO on 2015-05-31 00:00:00\n", - "Buying BX on 2015-05-31 00:00:00\n", - "Buying CDW on 2015-05-31 00:00:00\n", - "Buying SYF on 2015-05-31 00:00:00\n", - "Buying MNST on 2015-05-31 00:00:00\n", - "Buying ULTA on 2015-05-31 00:00:00\n", - "Buying NFLX on 2015-05-31 00:00:00\n", - "Buying SYY on 2015-05-31 00:00:00\n", - "Buying WTW on 2015-05-31 00:00:00\n", - "Buying SJM on 2015-05-31 00:00:00\n", - "Buying RJF on 2015-05-31 00:00:00\n", - "Selling CMS on 2015-05-31 00:00:00\n", - "Selling PPL on 2015-05-31 00:00:00\n", - "Selling AON on 2015-05-31 00:00:00\n", - "Selling EW on 2015-05-31 00:00:00\n", - "Selling MAR on 2015-05-31 00:00:00\n", - "Selling VRTX on 2015-05-31 00:00:00\n", - "Selling NOW on 2015-05-31 00:00:00\n", - "Selling GEN on 2015-05-31 00:00:00\n", - "Selling STLD on 2015-05-31 00:00:00\n", - "Selling NRG on 2015-05-31 00:00:00\n", - "Selling LDOS on 2015-05-31 00:00:00\n", - "Selling FCX on 2015-05-31 00:00:00\n", - "Selling SWKS on 2015-05-31 00:00:00\n", - "Buying CE on 2015-06-30 00:00:00\n", - "Buying CBOE on 2015-06-30 00:00:00\n", - "Buying NEM on 2015-06-30 00:00:00\n", - "Buying APO on 2015-06-30 00:00:00\n", - "Buying CCI on 2015-06-30 00:00:00\n", - "Buying SYY on 2015-06-30 00:00:00\n", - "Buying MNST on 2015-06-30 00:00:00\n", - "Buying RMD on 2015-06-30 00:00:00\n", - "Buying ERIE on 2015-06-30 00:00:00\n", - "Buying TAP on 2015-06-30 00:00:00\n", - "Buying SO on 2015-06-30 00:00:00\n", - "Buying SYF on 2015-06-30 00:00:00\n", - "Buying NFLX on 2015-06-30 00:00:00\n", - "Selling LDOS on 2015-06-30 00:00:00\n", - "Selling MAR on 2015-06-30 00:00:00\n", - "Selling AMZN on 2015-06-30 00:00:00\n", - "Selling LYV on 2015-06-30 00:00:00\n", - "Selling LVS on 2015-06-30 00:00:00\n", - "Selling MSFT on 2015-06-30 00:00:00\n", - "Selling INCY on 2015-06-30 00:00:00\n", - "Selling CSX on 2015-06-30 00:00:00\n", - "Selling NRG on 2015-06-30 00:00:00\n", - "Selling GILD on 2015-06-30 00:00:00\n", - "Selling VRTX on 2015-06-30 00:00:00\n", - "Selling NOW on 2015-06-30 00:00:00\n", - "Selling SWKS on 2015-06-30 00:00:00\n", - "Buying NEM on 2015-07-31 00:00:00\n", - "Buying CBOE on 2015-07-31 00:00:00\n", - "Buying SO on 2015-07-31 00:00:00\n", - "Buying SYY on 2015-07-31 00:00:00\n", - "Buying WELL on 2015-07-31 00:00:00\n", - "Buying D on 2015-07-31 00:00:00\n", - "Buying NI on 2015-07-31 00:00:00\n", - "Buying CCI on 2015-07-31 00:00:00\n", - "Buying AEP on 2015-07-31 00:00:00\n", - "Buying DUK on 2015-07-31 00:00:00\n", - "Buying MNST on 2015-07-31 00:00:00\n", - "Buying IDXX on 2015-07-31 00:00:00\n", - "Buying SRE on 2015-07-31 00:00:00\n", - "Selling MAR on 2015-07-31 00:00:00\n", - "Selling J on 2015-07-31 00:00:00\n", - "Selling LDOS on 2015-07-31 00:00:00\n", - "Selling NFLX on 2015-07-31 00:00:00\n", - "Selling GILD on 2015-07-31 00:00:00\n", - "Selling TXT on 2015-07-31 00:00:00\n", - "Selling LVS on 2015-07-31 00:00:00\n", - "Selling NRG on 2015-07-31 00:00:00\n", - "Selling INCY on 2015-07-31 00:00:00\n", - "Selling PSX on 2015-07-31 00:00:00\n", - "Selling VRTX on 2015-07-31 00:00:00\n", - "Selling SWKS on 2015-07-31 00:00:00\n", - "Selling FCX on 2015-07-31 00:00:00\n", - "Buying SYF on 2015-08-31 00:00:00\n", - "Buying SYY on 2015-08-31 00:00:00\n", - "Buying PNW on 2015-08-31 00:00:00\n", - "Buying SRE on 2015-08-31 00:00:00\n", - "Buying CBOE on 2015-08-31 00:00:00\n", - "Buying WELL on 2015-08-31 00:00:00\n", - "Buying D on 2015-08-31 00:00:00\n", - "Buying PTC on 2015-08-31 00:00:00\n", - "Buying NEM on 2015-08-31 00:00:00\n", - "Buying SO on 2015-08-31 00:00:00\n", - "Buying BF-B on 2015-08-31 00:00:00\n", - "Buying O on 2015-08-31 00:00:00\n", - "Buying CMS on 2015-08-31 00:00:00\n", - "Selling RJF on 2015-08-31 00:00:00\n", - "Selling AMZN on 2015-08-31 00:00:00\n", - "Selling PSX on 2015-08-31 00:00:00\n", - "Selling TXT on 2015-08-31 00:00:00\n", - "Selling BX on 2015-08-31 00:00:00\n", - "Selling CE on 2015-08-31 00:00:00\n", - "Selling SWKS on 2015-08-31 00:00:00\n", - "Selling AXON on 2015-08-31 00:00:00\n", - "Selling TRGP on 2015-08-31 00:00:00\n", - "Selling INCY on 2015-08-31 00:00:00\n", - "Selling VRTX on 2015-08-31 00:00:00\n", - "Selling NFLX on 2015-08-31 00:00:00\n", - "Selling FCX on 2015-08-31 00:00:00\n", - "Buying SYF on 2015-09-30 00:00:00\n", - "Buying SRE on 2015-09-30 00:00:00\n", - "Buying PNW on 2015-09-30 00:00:00\n", - "Buying WELL on 2015-09-30 00:00:00\n", - "Buying SO on 2015-09-30 00:00:00\n", - "Buying SYY on 2015-09-30 00:00:00\n", - "Buying CMS on 2015-09-30 00:00:00\n", - "Buying ACGL on 2015-09-30 00:00:00\n", - "Buying WTW on 2015-09-30 00:00:00\n", - "Buying D on 2015-09-30 00:00:00\n", - "Buying O on 2015-09-30 00:00:00\n", - "Buying ERIE on 2015-09-30 00:00:00\n", - "Buying CBOE on 2015-09-30 00:00:00\n", - "Selling C on 2015-09-30 00:00:00\n", - "Selling TXT on 2015-09-30 00:00:00\n", - "Selling STLD on 2015-09-30 00:00:00\n", - "Selling LYB on 2015-09-30 00:00:00\n", - "Selling AXON on 2015-09-30 00:00:00\n", - "Selling TRGP on 2015-09-30 00:00:00\n", - "Selling CE on 2015-09-30 00:00:00\n", - "Selling SWKS on 2015-09-30 00:00:00\n", - "Selling BX on 2015-09-30 00:00:00\n", - "Selling NFLX on 2015-09-30 00:00:00\n", - "Selling VRTX on 2015-09-30 00:00:00\n", - "Selling INCY on 2015-09-30 00:00:00\n", - "Selling FCX on 2015-09-30 00:00:00\n", - "Buying SYF on 2015-10-31 00:00:00\n", - "Buying PNW on 2015-10-31 00:00:00\n", - "Buying SRE on 2015-10-31 00:00:00\n", - "Buying D on 2015-10-31 00:00:00\n", - "Buying SO on 2015-10-31 00:00:00\n", - "Buying WELL on 2015-10-31 00:00:00\n", - "Buying CMS on 2015-10-31 00:00:00\n", - "Buying SYY on 2015-10-31 00:00:00\n", - "Buying CBOE on 2015-10-31 00:00:00\n", - "Buying DG on 2015-10-31 00:00:00\n", - "Buying ACGL on 2015-10-31 00:00:00\n", - "Buying AEP on 2015-10-31 00:00:00\n", - "Buying WTW on 2015-10-31 00:00:00\n", - "Selling NWSA on 2015-10-31 00:00:00\n", - "Selling CSX on 2015-10-31 00:00:00\n", - "Selling MSFT on 2015-10-31 00:00:00\n", - "Selling STLD on 2015-10-31 00:00:00\n", - "Selling AXON on 2015-10-31 00:00:00\n", - "Selling AMZN on 2015-10-31 00:00:00\n", - "Selling CE on 2015-10-31 00:00:00\n", - "Selling NFLX on 2015-10-31 00:00:00\n", - "Selling BX on 2015-10-31 00:00:00\n", - "Selling VRTX on 2015-10-31 00:00:00\n", - "Selling TRGP on 2015-10-31 00:00:00\n", - "Selling INCY on 2015-10-31 00:00:00\n", - "Selling FCX on 2015-10-31 00:00:00\n", - "Buying D on 2015-11-30 00:00:00\n", - "Buying SO on 2015-11-30 00:00:00\n", - "Buying TAP on 2015-11-30 00:00:00\n", - "Buying AEP on 2015-11-30 00:00:00\n", - "Buying SYF on 2015-11-30 00:00:00\n", - "Buying PPL on 2015-11-30 00:00:00\n", - "Buying CBOE on 2015-11-30 00:00:00\n", - "Buying ACGL on 2015-11-30 00:00:00\n", - "Buying SRE on 2015-11-30 00:00:00\n", - "Buying CMS on 2015-11-30 00:00:00\n", - "Buying WELL on 2015-11-30 00:00:00\n", - "Buying ERIE on 2015-11-30 00:00:00\n", - "Buying PNW on 2015-11-30 00:00:00\n", - "Selling NOW on 2015-11-30 00:00:00\n", - "Selling CSX on 2015-11-30 00:00:00\n", - "Selling STLD on 2015-11-30 00:00:00\n", - "Selling SWKS on 2015-11-30 00:00:00\n", - "Selling VRTX on 2015-11-30 00:00:00\n", - "Selling NWSA on 2015-11-30 00:00:00\n", - "Selling NUE on 2015-11-30 00:00:00\n", - "Selling LVS on 2015-11-30 00:00:00\n", - "Selling AXON on 2015-11-30 00:00:00\n", - "Selling BX on 2015-11-30 00:00:00\n", - "Selling INCY on 2015-11-30 00:00:00\n", - "Selling TRGP on 2015-11-30 00:00:00\n", - "Selling FCX on 2015-11-30 00:00:00\n", - "Buying NRG on 2015-12-31 00:00:00\n", - "Buying COR on 2015-12-31 00:00:00\n", - "Buying TAP on 2015-12-31 00:00:00\n", - "Buying CF on 2015-12-31 00:00:00\n", - "Buying DG on 2015-12-31 00:00:00\n", - "Buying SO on 2015-12-31 00:00:00\n", - "Buying IDXX on 2015-12-31 00:00:00\n", - "Buying EXR on 2015-12-31 00:00:00\n", - "Buying DRI on 2015-12-31 00:00:00\n", - "Buying D on 2015-12-31 00:00:00\n", - "Buying DUK on 2015-12-31 00:00:00\n", - "Buying AEP on 2015-12-31 00:00:00\n", - "Buying WTW on 2015-12-31 00:00:00\n", - "Selling GILD on 2015-12-31 00:00:00\n", - "Selling LDOS on 2015-12-31 00:00:00\n", - "Selling LVS on 2015-12-31 00:00:00\n", - "Selling BX on 2015-12-31 00:00:00\n", - "Selling BLK on 2015-12-31 00:00:00\n", - "Selling BWA on 2015-12-31 00:00:00\n", - "Selling HBAN on 2015-12-31 00:00:00\n", - "Selling GS on 2015-12-31 00:00:00\n", - "Selling SWKS on 2015-12-31 00:00:00\n", - "Selling C on 2015-12-31 00:00:00\n", - "Selling AXON on 2015-12-31 00:00:00\n", - "Selling NWSA on 2015-12-31 00:00:00\n", - "Selling FCX on 2015-12-31 00:00:00\n", - "Buying NEM on 2016-01-31 00:00:00\n", - "Buying SO on 2016-01-31 00:00:00\n", - "Buying ACGL on 2016-01-31 00:00:00\n", - "Buying D on 2016-01-31 00:00:00\n", - "Buying DG on 2016-01-31 00:00:00\n", - "Buying COR on 2016-01-31 00:00:00\n", - "Buying DRI on 2016-01-31 00:00:00\n", - "Buying DUK on 2016-01-31 00:00:00\n", - "Buying SYY on 2016-01-31 00:00:00\n", - "Buying CBOE on 2016-01-31 00:00:00\n", - "Buying EXR on 2016-01-31 00:00:00\n", - "Buying PNW on 2016-01-31 00:00:00\n", - "Buying NRG on 2016-01-31 00:00:00\n", - "Selling JBL on 2016-01-31 00:00:00\n", - "Selling PHM on 2016-01-31 00:00:00\n", - "Selling PSX on 2016-01-31 00:00:00\n", - "Selling LVS on 2016-01-31 00:00:00\n", - "Selling GS on 2016-01-31 00:00:00\n", - "Selling INCY on 2016-01-31 00:00:00\n", - "Selling BLK on 2016-01-31 00:00:00\n", - "Selling BWA on 2016-01-31 00:00:00\n", - "Selling C on 2016-01-31 00:00:00\n", - "Selling BX on 2016-01-31 00:00:00\n", - "Selling SWKS on 2016-01-31 00:00:00\n", - "Selling FCX on 2016-01-31 00:00:00\n", - "Selling TRGP on 2016-01-31 00:00:00\n", - "Buying NEM on 2016-02-29 00:00:00\n", - "Buying SO on 2016-02-29 00:00:00\n", - "Buying DUK on 2016-02-29 00:00:00\n", - "Buying SYY on 2016-02-29 00:00:00\n", - "Buying ACGL on 2016-02-29 00:00:00\n", - "Buying CMS on 2016-02-29 00:00:00\n", - "Buying CBOE on 2016-02-29 00:00:00\n", - "Buying PNW on 2016-02-29 00:00:00\n", - "Buying D on 2016-02-29 00:00:00\n", - "Buying COR on 2016-02-29 00:00:00\n", - "Buying O on 2016-02-29 00:00:00\n", - "Buying CLX on 2016-02-29 00:00:00\n", - "Buying AEP on 2016-02-29 00:00:00\n", - "Selling VRTX on 2016-02-29 00:00:00\n", - "Selling NOW on 2016-02-29 00:00:00\n", - "Selling BWA on 2016-02-29 00:00:00\n", - "Selling GS on 2016-02-29 00:00:00\n", - "Selling BLK on 2016-02-29 00:00:00\n", - "Selling LVS on 2016-02-29 00:00:00\n", - "Selling CRM on 2016-02-29 00:00:00\n", - "Selling C on 2016-02-29 00:00:00\n", - "Selling INCY on 2016-02-29 00:00:00\n", - "Selling BX on 2016-02-29 00:00:00\n", - "Selling SWKS on 2016-02-29 00:00:00\n", - "Selling FCX on 2016-02-29 00:00:00\n", - "Selling TRGP on 2016-02-29 00:00:00\n", - "Buying NEM on 2016-03-31 00:00:00\n", - "Buying SO on 2016-03-31 00:00:00\n", - "Buying CMS on 2016-03-31 00:00:00\n", - "Buying PNW on 2016-03-31 00:00:00\n", - "Buying DUK on 2016-03-31 00:00:00\n", - "Buying CBOE on 2016-03-31 00:00:00\n", - "Buying O on 2016-03-31 00:00:00\n", - "Buying CLX on 2016-03-31 00:00:00\n", - "Buying D on 2016-03-31 00:00:00\n", - "Buying SYY on 2016-03-31 00:00:00\n", - "Buying AEP on 2016-03-31 00:00:00\n", - "Buying ACGL on 2016-03-31 00:00:00\n", - "Buying T on 2016-03-31 00:00:00\n", - "Selling BWA on 2016-03-31 00:00:00\n", - "Selling STLD on 2016-03-31 00:00:00\n", - "Selling NCLH on 2016-03-31 00:00:00\n", - "Selling NOW on 2016-03-31 00:00:00\n", - "Selling LVS on 2016-03-31 00:00:00\n", - "Selling CRM on 2016-03-31 00:00:00\n", - "Selling INCY on 2016-03-31 00:00:00\n", - "Selling NRG on 2016-03-31 00:00:00\n", - "Selling C on 2016-03-31 00:00:00\n", - "Selling BX on 2016-03-31 00:00:00\n", - "Selling SWKS on 2016-03-31 00:00:00\n", - "Selling FCX on 2016-03-31 00:00:00\n", - "Selling TRGP on 2016-03-31 00:00:00\n", - "Buying NEM on 2016-04-30 00:00:00\n", - "Buying SO on 2016-04-30 00:00:00\n", - "Buying O on 2016-04-30 00:00:00\n", - "Buying CMS on 2016-04-30 00:00:00\n", - "Buying DUK on 2016-04-30 00:00:00\n", - "Buying PNW on 2016-04-30 00:00:00\n", - "Buying CLX on 2016-04-30 00:00:00\n", - "Buying CBOE on 2016-04-30 00:00:00\n", - "Buying PPL on 2016-04-30 00:00:00\n", - "Buying T on 2016-04-30 00:00:00\n", - "Buying AEP on 2016-04-30 00:00:00\n", - "Buying AON on 2016-04-30 00:00:00\n", - "Buying CHD on 2016-04-30 00:00:00\n", - "Selling LVS on 2016-04-30 00:00:00\n", - "Selling ADBE on 2016-04-30 00:00:00\n", - "Selling APTV on 2016-04-30 00:00:00\n", - "Selling INCY on 2016-04-30 00:00:00\n", - "Selling KMX on 2016-04-30 00:00:00\n", - "Selling VRTX on 2016-04-30 00:00:00\n", - "Selling CRM on 2016-04-30 00:00:00\n", - "Selling NRG on 2016-04-30 00:00:00\n", - "Selling SWKS on 2016-04-30 00:00:00\n", - "Selling BX on 2016-04-30 00:00:00\n", - "Selling C on 2016-04-30 00:00:00\n", - "Selling TRGP on 2016-04-30 00:00:00\n", - "Selling FCX on 2016-04-30 00:00:00\n", - "Buying NEM on 2016-05-31 00:00:00\n", - "Buying SO on 2016-05-31 00:00:00\n", - "Buying CHD on 2016-05-31 00:00:00\n", - "Buying DUK on 2016-05-31 00:00:00\n", - "Buying CLX on 2016-05-31 00:00:00\n", - "Buying D on 2016-05-31 00:00:00\n", - "Buying CMS on 2016-05-31 00:00:00\n", - "Buying PNW on 2016-05-31 00:00:00\n", - "Buying O on 2016-05-31 00:00:00\n", - "Buying NI on 2016-05-31 00:00:00\n", - "Buying T on 2016-05-31 00:00:00\n", - "Buying PPL on 2016-05-31 00:00:00\n", - "Buying MNST on 2016-05-31 00:00:00\n", - "Selling NWSA on 2016-05-31 00:00:00\n", - "Selling LVS on 2016-05-31 00:00:00\n", - "Selling BLK on 2016-05-31 00:00:00\n", - "Selling C on 2016-05-31 00:00:00\n", - "Selling LYB on 2016-05-31 00:00:00\n", - "Selling BWA on 2016-05-31 00:00:00\n", - "Selling ULTA on 2016-05-31 00:00:00\n", - "Selling BX on 2016-05-31 00:00:00\n", - "Selling INCY on 2016-05-31 00:00:00\n", - "Selling RJF on 2016-05-31 00:00:00\n", - "Selling VRTX on 2016-05-31 00:00:00\n", - "Selling KMX on 2016-05-31 00:00:00\n", - "Selling FCX on 2016-05-31 00:00:00\n", - "Buying NEM on 2016-06-30 00:00:00\n", - "Buying CMS on 2016-06-30 00:00:00\n", - "Buying SO on 2016-06-30 00:00:00\n", - "Buying DUK on 2016-06-30 00:00:00\n", - "Buying CLX on 2016-06-30 00:00:00\n", - "Buying AEP on 2016-06-30 00:00:00\n", - "Buying PNW on 2016-06-30 00:00:00\n", - "Buying O on 2016-06-30 00:00:00\n", - "Buying D on 2016-06-30 00:00:00\n", - "Buying NI on 2016-06-30 00:00:00\n", - "Buying EXR on 2016-06-30 00:00:00\n", - "Buying DG on 2016-06-30 00:00:00\n", - "Buying WELL on 2016-06-30 00:00:00\n", - "Selling BLK on 2016-06-30 00:00:00\n", - "Selling BX on 2016-06-30 00:00:00\n", - "Selling VRTX on 2016-06-30 00:00:00\n", - "Selling SWKS on 2016-06-30 00:00:00\n", - "Selling EPAM on 2016-06-30 00:00:00\n", - "Selling BKNG on 2016-06-30 00:00:00\n", - "Selling RJF on 2016-06-30 00:00:00\n", - "Selling INCY on 2016-06-30 00:00:00\n", - "Selling HBAN on 2016-06-30 00:00:00\n", - "Selling C on 2016-06-30 00:00:00\n", - "Selling BWA on 2016-06-30 00:00:00\n", - "Selling APTV on 2016-06-30 00:00:00\n", - "Selling FCX on 2016-06-30 00:00:00\n", - "Buying NEM on 2016-07-31 00:00:00\n", - "Buying CMS on 2016-07-31 00:00:00\n", - "Buying DUK on 2016-07-31 00:00:00\n", - "Buying AEP on 2016-07-31 00:00:00\n", - "Buying PNW on 2016-07-31 00:00:00\n", - "Buying CLX on 2016-07-31 00:00:00\n", - "Buying SO on 2016-07-31 00:00:00\n", - "Buying O on 2016-07-31 00:00:00\n", - "Buying D on 2016-07-31 00:00:00\n", - "Buying NI on 2016-07-31 00:00:00\n", - "Buying EXR on 2016-07-31 00:00:00\n", - "Buying DG on 2016-07-31 00:00:00\n", - "Buying SJM on 2016-07-31 00:00:00\n", - "Selling VRTX on 2016-07-31 00:00:00\n", - "Selling INCY on 2016-07-31 00:00:00\n", - "Selling BKNG on 2016-07-31 00:00:00\n", - "Selling NRG on 2016-07-31 00:00:00\n", - "Selling SWKS on 2016-07-31 00:00:00\n", - "Selling RJF on 2016-07-31 00:00:00\n", - "Selling NOW on 2016-07-31 00:00:00\n", - "Selling EPAM on 2016-07-31 00:00:00\n", - "Selling HBAN on 2016-07-31 00:00:00\n", - "Selling C on 2016-07-31 00:00:00\n", - "Selling FCX on 2016-07-31 00:00:00\n", - "Selling BWA on 2016-07-31 00:00:00\n", - "Selling APTV on 2016-07-31 00:00:00\n", - "Buying NEM on 2016-08-31 00:00:00\n", - "Buying CMS on 2016-08-31 00:00:00\n", - "Buying CLX on 2016-08-31 00:00:00\n", - "Buying PNW on 2016-08-31 00:00:00\n", - "Buying DUK on 2016-08-31 00:00:00\n", - "Buying O on 2016-08-31 00:00:00\n", - "Buying AEP on 2016-08-31 00:00:00\n", - "Buying SO on 2016-08-31 00:00:00\n", - "Buying EXR on 2016-08-31 00:00:00\n", - "Buying NI on 2016-08-31 00:00:00\n", - "Buying SJM on 2016-08-31 00:00:00\n", - "Buying CCI on 2016-08-31 00:00:00\n", - "Buying D on 2016-08-31 00:00:00\n", - "Selling TRGP on 2016-08-31 00:00:00\n", - "Selling NRG on 2016-08-31 00:00:00\n", - "Selling BKNG on 2016-08-31 00:00:00\n", - "Selling NCLH on 2016-08-31 00:00:00\n", - "Selling EPAM on 2016-08-31 00:00:00\n", - "Selling CF on 2016-08-31 00:00:00\n", - "Selling NOW on 2016-08-31 00:00:00\n", - "Selling HBAN on 2016-08-31 00:00:00\n", - "Selling SWKS on 2016-08-31 00:00:00\n", - "Selling C on 2016-08-31 00:00:00\n", - "Selling BWA on 2016-08-31 00:00:00\n", - "Selling APTV on 2016-08-31 00:00:00\n", - "Selling FCX on 2016-08-31 00:00:00\n", - "Buying CVS on 2016-09-30 00:00:00\n", - "Buying SJM on 2016-09-30 00:00:00\n", - "Buying BMY on 2016-09-30 00:00:00\n", - "Buying ACGL on 2016-09-30 00:00:00\n", - "Buying MKTX on 2016-09-30 00:00:00\n", - "Buying GILD on 2016-09-30 00:00:00\n", - "Buying ICE on 2016-09-30 00:00:00\n", - "Buying EXR on 2016-09-30 00:00:00\n", - "Buying ERIE on 2016-09-30 00:00:00\n", - "Buying CBOE on 2016-09-30 00:00:00\n", - "Buying ORLY on 2016-09-30 00:00:00\n", - "Buying ALL on 2016-09-30 00:00:00\n", - "Buying VRSK on 2016-09-30 00:00:00\n", - "Selling KEYS on 2016-09-30 00:00:00\n", - "Selling BWA on 2016-09-30 00:00:00\n", - "Selling TDY on 2016-09-30 00:00:00\n", - "Selling VRTX on 2016-09-30 00:00:00\n", - "Selling NEM on 2016-09-30 00:00:00\n", - "Selling TRGP on 2016-09-30 00:00:00\n", - "Selling NUE on 2016-09-30 00:00:00\n", - "Selling SWKS on 2016-09-30 00:00:00\n", - "Selling CF on 2016-09-30 00:00:00\n", - "Selling KMX on 2016-09-30 00:00:00\n", - "Selling NOW on 2016-09-30 00:00:00\n", - "Selling NRG on 2016-09-30 00:00:00\n", - "Selling FCX on 2016-09-30 00:00:00\n", - "Buying ACGL on 2016-10-31 00:00:00\n", - "Buying EXR on 2016-10-31 00:00:00\n", - "Buying BMY on 2016-10-31 00:00:00\n", - "Buying ICE on 2016-10-31 00:00:00\n", - "Buying CBOE on 2016-10-31 00:00:00\n", - "Buying VRSK on 2016-10-31 00:00:00\n", - "Buying MKTX on 2016-10-31 00:00:00\n", - "Buying SJM on 2016-10-31 00:00:00\n", - "Buying CVS on 2016-10-31 00:00:00\n", - "Buying HAS on 2016-10-31 00:00:00\n", - "Buying NCLH on 2016-10-31 00:00:00\n", - "Buying ERIE on 2016-10-31 00:00:00\n", - "Buying ALL on 2016-10-31 00:00:00\n", - "Selling ZBH on 2016-10-31 00:00:00\n", - "Selling TRGP on 2016-10-31 00:00:00\n", - "Selling NUE on 2016-10-31 00:00:00\n", - "Selling CF on 2016-10-31 00:00:00\n", - "Selling CE on 2016-10-31 00:00:00\n", - "Selling NFLX on 2016-10-31 00:00:00\n", - "Selling NOW on 2016-10-31 00:00:00\n", - "Selling KMX on 2016-10-31 00:00:00\n", - "Selling SWKS on 2016-10-31 00:00:00\n", - "Selling VRTX on 2016-10-31 00:00:00\n", - "Selling NEM on 2016-10-31 00:00:00\n", - "Selling NRG on 2016-10-31 00:00:00\n", - "Selling FCX on 2016-10-31 00:00:00\n", - "Buying NCLH on 2016-11-30 00:00:00\n", - "Buying EXR on 2016-11-30 00:00:00\n", - "Buying ACGL on 2016-11-30 00:00:00\n", - "Buying TSCO on 2016-11-30 00:00:00\n", - "Buying SJM on 2016-11-30 00:00:00\n", - "Buying ERIE on 2016-11-30 00:00:00\n", - "Buying ALL on 2016-11-30 00:00:00\n", - "Buying VRSK on 2016-11-30 00:00:00\n", - "Buying LVS on 2016-11-30 00:00:00\n", - "Buying CVS on 2016-11-30 00:00:00\n", - "Buying CBOE on 2016-11-30 00:00:00\n", - "Buying PARA on 2016-11-30 00:00:00\n", - "Buying ORLY on 2016-11-30 00:00:00\n", - "Selling ROK on 2016-11-30 00:00:00\n", - "Selling CRL on 2016-11-30 00:00:00\n", - "Selling KMX on 2016-11-30 00:00:00\n", - "Selling STLD on 2016-11-30 00:00:00\n", - "Selling SYY on 2016-11-30 00:00:00\n", - "Selling TDY on 2016-11-30 00:00:00\n", - "Selling SWKS on 2016-11-30 00:00:00\n", - "Selling NUE on 2016-11-30 00:00:00\n", - "Selling MTCH on 2016-11-30 00:00:00\n", - "Selling INCY on 2016-11-30 00:00:00\n", - "Selling VRTX on 2016-11-30 00:00:00\n", - "Selling NRG on 2016-11-30 00:00:00\n", - "Selling FCX on 2016-11-30 00:00:00\n", - "Buying NEM on 2016-12-31 00:00:00\n", - "Buying REG on 2016-12-31 00:00:00\n", - "Buying ALL on 2016-12-31 00:00:00\n", - "Buying ACGL on 2016-12-31 00:00:00\n", - "Buying SO on 2016-12-31 00:00:00\n", - "Buying LVS on 2016-12-31 00:00:00\n", - "Buying ERIE on 2016-12-31 00:00:00\n", - "Buying PPL on 2016-12-31 00:00:00\n", - "Buying AMT on 2016-12-31 00:00:00\n", - "Buying FFIV on 2016-12-31 00:00:00\n", - "Buying FIS on 2016-12-31 00:00:00\n", - "Buying D on 2016-12-31 00:00:00\n", - "Buying WELL on 2016-12-31 00:00:00\n", - "Selling MPWR on 2016-12-31 00:00:00\n", - "Selling NOW on 2016-12-31 00:00:00\n", - "Selling PTC on 2016-12-31 00:00:00\n", - "Selling TDY on 2016-12-31 00:00:00\n", - "Selling DFS on 2016-12-31 00:00:00\n", - "Selling SYY on 2016-12-31 00:00:00\n", - "Selling BWA on 2016-12-31 00:00:00\n", - "Selling VRTX on 2016-12-31 00:00:00\n", - "Selling NUE on 2016-12-31 00:00:00\n", - "Selling FCX on 2016-12-31 00:00:00\n", - "Selling NRG on 2016-12-31 00:00:00\n", - "Selling INCY on 2016-12-31 00:00:00\n", - "Selling MTCH on 2016-12-31 00:00:00\n", - "Buying REG on 2017-01-31 00:00:00\n", - "Buying NEM on 2017-01-31 00:00:00\n", - "Buying WELL on 2017-01-31 00:00:00\n", - "Buying O on 2017-01-31 00:00:00\n", - "Buying SO on 2017-01-31 00:00:00\n", - "Buying VST on 2017-01-31 00:00:00\n", - "Buying AMT on 2017-01-31 00:00:00\n", - "Buying CVS on 2017-01-31 00:00:00\n", - "Buying BDX on 2017-01-31 00:00:00\n", - "Buying PPL on 2017-01-31 00:00:00\n", - "Buying CCI on 2017-01-31 00:00:00\n", - "Buying CMS on 2017-01-31 00:00:00\n", - "Buying T on 2017-01-31 00:00:00\n", - "Buying ALL on 2017-01-31 00:00:00\n", - "Selling HBAN on 2017-01-31 00:00:00\n", - "Selling PH on 2017-01-31 00:00:00\n", - "Selling BWA on 2017-01-31 00:00:00\n", - "Selling BX on 2017-01-31 00:00:00\n", - "Selling SYY on 2017-01-31 00:00:00\n", - "Selling CF on 2017-01-31 00:00:00\n", - "Selling C on 2017-01-31 00:00:00\n", - "Selling NOW on 2017-01-31 00:00:00\n", - "Selling ROK on 2017-01-31 00:00:00\n", - "Selling INCY on 2017-01-31 00:00:00\n", - "Selling MTCH on 2017-01-31 00:00:00\n", - "Selling NUE on 2017-01-31 00:00:00\n", - "Selling VRTX on 2017-01-31 00:00:00\n", - "Selling FCX on 2017-01-31 00:00:00\n", - "Buying BMY on 2017-02-28 00:00:00\n", - "Buying CSX on 2017-02-28 00:00:00\n", - "Buying AXON on 2017-02-28 00:00:00\n", - "Buying INCY on 2017-02-28 00:00:00\n", - "Buying SO on 2017-02-28 00:00:00\n", - "Buying NEM on 2017-02-28 00:00:00\n", - "Buying ABBV on 2017-02-28 00:00:00\n", - "Buying WELL on 2017-02-28 00:00:00\n", - "Buying T on 2017-02-28 00:00:00\n", - "Buying BDX on 2017-02-28 00:00:00\n", - "Buying ACGL on 2017-02-28 00:00:00\n", - "Buying CMS on 2017-02-28 00:00:00\n", - "Buying CVS on 2017-02-28 00:00:00\n", - "Buying ZBH on 2017-02-28 00:00:00\n", - "Selling HBAN on 2017-02-28 00:00:00\n", - "Selling CF on 2017-02-28 00:00:00\n", - "Selling SYF on 2017-02-28 00:00:00\n", - "Selling NCLH on 2017-02-28 00:00:00\n", - "Selling MKTX on 2017-02-28 00:00:00\n", - "Selling WFC on 2017-02-28 00:00:00\n", - "Selling C on 2017-02-28 00:00:00\n", - "Selling NRG on 2017-02-28 00:00:00\n", - "Selling APTV on 2017-02-28 00:00:00\n", - "Selling HWM on 2017-02-28 00:00:00\n", - "Selling GM on 2017-02-28 00:00:00\n", - "Selling BWA on 2017-02-28 00:00:00\n", - "Selling NOW on 2017-02-28 00:00:00\n", - "Selling BX on 2017-02-28 00:00:00\n", - "Buying SO on 2017-03-31 00:00:00\n", - "Buying DUK on 2017-03-31 00:00:00\n", - "Buying NEM on 2017-03-31 00:00:00\n", - "Buying CMS on 2017-03-31 00:00:00\n", - "Buying WELL on 2017-03-31 00:00:00\n", - "Buying AEP on 2017-03-31 00:00:00\n", - "Buying MNST on 2017-03-31 00:00:00\n", - "Buying D on 2017-03-31 00:00:00\n", - "Buying PPL on 2017-03-31 00:00:00\n", - "Buying CVS on 2017-03-31 00:00:00\n", - "Buying REG on 2017-03-31 00:00:00\n", - "Buying O on 2017-03-31 00:00:00\n", - "Buying PNW on 2017-03-31 00:00:00\n", - "Buying SRE on 2017-03-31 00:00:00\n", - "Selling KEYS on 2017-03-31 00:00:00\n", - "Selling SYF on 2017-03-31 00:00:00\n", - "Selling TDY on 2017-03-31 00:00:00\n", - "Selling NOW on 2017-03-31 00:00:00\n", - "Selling CAT on 2017-03-31 00:00:00\n", - "Selling GS on 2017-03-31 00:00:00\n", - "Selling MKTX on 2017-03-31 00:00:00\n", - "Selling ROK on 2017-03-31 00:00:00\n", - "Selling WFC on 2017-03-31 00:00:00\n", - "Selling RJF on 2017-03-31 00:00:00\n", - "Selling HWM on 2017-03-31 00:00:00\n", - "Selling NUE on 2017-03-31 00:00:00\n", - "Selling STLD on 2017-03-31 00:00:00\n", - "Selling HBAN on 2017-03-31 00:00:00\n", - "Buying SO on 2017-04-30 00:00:00\n", - "Buying DUK on 2017-04-30 00:00:00\n", - "Buying REG on 2017-04-30 00:00:00\n", - "Buying AEP on 2017-04-30 00:00:00\n", - "Buying CMS on 2017-04-30 00:00:00\n", - "Buying D on 2017-04-30 00:00:00\n", - "Buying WELL on 2017-04-30 00:00:00\n", - "Buying MNST on 2017-04-30 00:00:00\n", - "Buying PPL on 2017-04-30 00:00:00\n", - "Buying O on 2017-04-30 00:00:00\n", - "Buying PNW on 2017-04-30 00:00:00\n", - "Buying SRE on 2017-04-30 00:00:00\n", - "Buying NEM on 2017-04-30 00:00:00\n", - "Buying NI on 2017-04-30 00:00:00\n", - "Selling KEYS on 2017-04-30 00:00:00\n", - "Selling C on 2017-04-30 00:00:00\n", - "Selling GS on 2017-04-30 00:00:00\n", - "Selling RJF on 2017-04-30 00:00:00\n", - "Selling LOW on 2017-04-30 00:00:00\n", - "Selling FCX on 2017-04-30 00:00:00\n", - "Selling WFC on 2017-04-30 00:00:00\n", - "Selling TDY on 2017-04-30 00:00:00\n", - "Selling CAT on 2017-04-30 00:00:00\n", - "Selling HWM on 2017-04-30 00:00:00\n", - "Selling SYF on 2017-04-30 00:00:00\n", - "Selling NUE on 2017-04-30 00:00:00\n", - "Selling HBAN on 2017-04-30 00:00:00\n", - "Selling STLD on 2017-04-30 00:00:00\n", - "Buying EXR on 2017-05-31 00:00:00\n", - "Buying NEM on 2017-05-31 00:00:00\n", - "Buying BF-B on 2017-05-31 00:00:00\n", - "Buying SO on 2017-05-31 00:00:00\n", - "Buying O on 2017-05-31 00:00:00\n", - "Buying AMT on 2017-05-31 00:00:00\n", - "Buying REG on 2017-05-31 00:00:00\n", - "Buying DUK on 2017-05-31 00:00:00\n", - "Buying WELL on 2017-05-31 00:00:00\n", - "Buying PPL on 2017-05-31 00:00:00\n", - "Buying CCI on 2017-05-31 00:00:00\n", - "Buying AEP on 2017-05-31 00:00:00\n", - "Buying BDX on 2017-05-31 00:00:00\n", - "Buying CMS on 2017-05-31 00:00:00\n", - "Selling CF on 2017-05-31 00:00:00\n", - "Selling NFLX on 2017-05-31 00:00:00\n", - "Selling SYF on 2017-05-31 00:00:00\n", - "Selling KMX on 2017-05-31 00:00:00\n", - "Selling MPWR on 2017-05-31 00:00:00\n", - "Selling CAT on 2017-05-31 00:00:00\n", - "Selling BWA on 2017-05-31 00:00:00\n", - "Selling TDY on 2017-05-31 00:00:00\n", - "Selling GS on 2017-05-31 00:00:00\n", - "Selling NUE on 2017-05-31 00:00:00\n", - "Selling RJF on 2017-05-31 00:00:00\n", - "Selling FCX on 2017-05-31 00:00:00\n", - "Selling HBAN on 2017-05-31 00:00:00\n", - "Selling STLD on 2017-05-31 00:00:00\n", - "Buying EXR on 2017-06-30 00:00:00\n", - "Buying REG on 2017-06-30 00:00:00\n", - "Buying NEM on 2017-06-30 00:00:00\n", - "Buying CCI on 2017-06-30 00:00:00\n", - "Buying AMT on 2017-06-30 00:00:00\n", - "Buying BF-B on 2017-06-30 00:00:00\n", - "Buying DUK on 2017-06-30 00:00:00\n", - "Buying AEP on 2017-06-30 00:00:00\n", - "Buying CMS on 2017-06-30 00:00:00\n", - "Buying BDX on 2017-06-30 00:00:00\n", - "Buying WELL on 2017-06-30 00:00:00\n", - "Buying O on 2017-06-30 00:00:00\n", - "Buying PPL on 2017-06-30 00:00:00\n", - "Buying SO on 2017-06-30 00:00:00\n", - "Selling BWA on 2017-06-30 00:00:00\n", - "Selling JBL on 2017-06-30 00:00:00\n", - "Selling STLD on 2017-06-30 00:00:00\n", - "Selling GS on 2017-06-30 00:00:00\n", - "Selling CE on 2017-06-30 00:00:00\n", - "Selling RJF on 2017-06-30 00:00:00\n", - "Selling CF on 2017-06-30 00:00:00\n", - "Selling NCLH on 2017-06-30 00:00:00\n", - "Selling TDY on 2017-06-30 00:00:00\n", - "Selling NFLX on 2017-06-30 00:00:00\n", - "Selling PTC on 2017-06-30 00:00:00\n", - "Selling SWKS on 2017-06-30 00:00:00\n", - "Selling MPWR on 2017-06-30 00:00:00\n", - "Selling HWM on 2017-06-30 00:00:00\n", - "Buying BF-B on 2017-07-31 00:00:00\n", - "Buying EXR on 2017-07-31 00:00:00\n", - "Buying AMT on 2017-07-31 00:00:00\n", - "Buying AEP on 2017-07-31 00:00:00\n", - "Buying SO on 2017-07-31 00:00:00\n", - "Buying DUK on 2017-07-31 00:00:00\n", - "Buying PPL on 2017-07-31 00:00:00\n", - "Buying D on 2017-07-31 00:00:00\n", - "Buying DRI on 2017-07-31 00:00:00\n", - "Buying CMS on 2017-07-31 00:00:00\n", - "Buying NEM on 2017-07-31 00:00:00\n", - "Buying SRE on 2017-07-31 00:00:00\n", - "Buying ALL on 2017-07-31 00:00:00\n", - "Buying CCI on 2017-07-31 00:00:00\n", - "Selling MTCH on 2017-07-31 00:00:00\n", - "Selling JBL on 2017-07-31 00:00:00\n", - "Selling BWA on 2017-07-31 00:00:00\n", - "Selling TDY on 2017-07-31 00:00:00\n", - "Selling GEN on 2017-07-31 00:00:00\n", - "Selling NFLX on 2017-07-31 00:00:00\n", - "Selling CF on 2017-07-31 00:00:00\n", - "Selling NCLH on 2017-07-31 00:00:00\n", - "Selling SWKS on 2017-07-31 00:00:00\n", - "Selling HWM on 2017-07-31 00:00:00\n", - "Selling VRTX on 2017-07-31 00:00:00\n", - "Selling PTC on 2017-07-31 00:00:00\n", - "Selling MPWR on 2017-07-31 00:00:00\n", - "Selling NRG on 2017-07-31 00:00:00\n", - "Buying AEP on 2017-08-31 00:00:00\n", - "Buying D on 2017-08-31 00:00:00\n", - "Buying DRI on 2017-08-31 00:00:00\n", - "Buying CMS on 2017-08-31 00:00:00\n", - "Buying DUK on 2017-08-31 00:00:00\n", - "Buying PNW on 2017-08-31 00:00:00\n", - "Buying PPL on 2017-08-31 00:00:00\n", - "Buying SRE on 2017-08-31 00:00:00\n", - "Buying SO on 2017-08-31 00:00:00\n", - "Buying ORLY on 2017-08-31 00:00:00\n", - "Buying LYV on 2017-08-31 00:00:00\n", - "Buying CCI on 2017-08-31 00:00:00\n", - "Buying NI on 2017-08-31 00:00:00\n", - "Buying INVH on 2017-08-31 00:00:00\n", - "Selling MAR on 2017-08-31 00:00:00\n", - "Selling FCX on 2017-08-31 00:00:00\n", - "Selling NOW on 2017-08-31 00:00:00\n", - "Selling CF on 2017-08-31 00:00:00\n", - "Selling PTC on 2017-08-31 00:00:00\n", - "Selling MPWR on 2017-08-31 00:00:00\n", - "Selling NFLX on 2017-08-31 00:00:00\n", - "Selling JBL on 2017-08-31 00:00:00\n", - "Selling MTCH on 2017-08-31 00:00:00\n", - "Selling SWKS on 2017-08-31 00:00:00\n", - "Selling INCY on 2017-08-31 00:00:00\n", - "Selling VRTX on 2017-08-31 00:00:00\n", - "Selling HWM on 2017-08-31 00:00:00\n", - "Selling NRG on 2017-08-31 00:00:00\n", - "Buying NEM on 2017-09-30 00:00:00\n", - "Buying AEP on 2017-09-30 00:00:00\n", - "Buying PPL on 2017-09-30 00:00:00\n", - "Buying EXR on 2017-09-30 00:00:00\n", - "Buying D on 2017-09-30 00:00:00\n", - "Buying DUK on 2017-09-30 00:00:00\n", - "Buying PNW on 2017-09-30 00:00:00\n", - "Buying SO on 2017-09-30 00:00:00\n", - "Buying CMS on 2017-09-30 00:00:00\n", - "Buying GIS on 2017-09-30 00:00:00\n", - "Buying SRE on 2017-09-30 00:00:00\n", - "Buying PARA on 2017-09-30 00:00:00\n", - "Buying LYV on 2017-09-30 00:00:00\n", - "Buying CLX on 2017-09-30 00:00:00\n", - "Selling SYF on 2017-09-30 00:00:00\n", - "Selling RJF on 2017-09-30 00:00:00\n", - "Selling TEL on 2017-09-30 00:00:00\n", - "Selling MPWR on 2017-09-30 00:00:00\n", - "Selling FCX on 2017-09-30 00:00:00\n", - "Selling KEYS on 2017-09-30 00:00:00\n", - "Selling HWM on 2017-09-30 00:00:00\n", - "Selling JBL on 2017-09-30 00:00:00\n", - "Selling MTCH on 2017-09-30 00:00:00\n", - "Selling INCY on 2017-09-30 00:00:00\n", - "Selling NFLX on 2017-09-30 00:00:00\n", - "Selling SWKS on 2017-09-30 00:00:00\n", - "Selling VRTX on 2017-09-30 00:00:00\n", - "Selling NRG on 2017-09-30 00:00:00\n", - "Buying NEM on 2017-10-31 00:00:00\n", - "Buying EXR on 2017-10-31 00:00:00\n", - "Buying AEP on 2017-10-31 00:00:00\n", - "Buying PPL on 2017-10-31 00:00:00\n", - "Buying D on 2017-10-31 00:00:00\n", - "Buying SRE on 2017-10-31 00:00:00\n", - "Buying DUK on 2017-10-31 00:00:00\n", - "Buying SO on 2017-10-31 00:00:00\n", - "Buying CMS on 2017-10-31 00:00:00\n", - "Buying PNW on 2017-10-31 00:00:00\n", - "Buying NI on 2017-10-31 00:00:00\n", - "Buying CCI on 2017-10-31 00:00:00\n", - "Buying PARA on 2017-10-31 00:00:00\n", - "Buying CLX on 2017-10-31 00:00:00\n", - "Selling NCLH on 2017-10-31 00:00:00\n", - "Selling FCX on 2017-10-31 00:00:00\n", - "Selling MPWR on 2017-10-31 00:00:00\n", - "Selling HBAN on 2017-10-31 00:00:00\n", - "Selling GS on 2017-10-31 00:00:00\n", - "Selling INCY on 2017-10-31 00:00:00\n", - "Selling JBL on 2017-10-31 00:00:00\n", - "Selling VRTX on 2017-10-31 00:00:00\n", - "Selling SWKS on 2017-10-31 00:00:00\n", - "Selling SYF on 2017-10-31 00:00:00\n", - "Selling NFLX on 2017-10-31 00:00:00\n", - "Selling HWM on 2017-10-31 00:00:00\n", - "Selling AMZN on 2017-10-31 00:00:00\n", - "Selling MTCH on 2017-10-31 00:00:00\n", - "Buying EXR on 2017-11-30 00:00:00\n", - "Buying NEM on 2017-11-30 00:00:00\n", - "Buying PPL on 2017-11-30 00:00:00\n", - "Buying AON on 2017-11-30 00:00:00\n", - "Buying SRE on 2017-11-30 00:00:00\n", - "Buying PARA on 2017-11-30 00:00:00\n", - "Buying WTW on 2017-11-30 00:00:00\n", - "Buying O on 2017-11-30 00:00:00\n", - "Buying DUK on 2017-11-30 00:00:00\n", - "Buying D on 2017-11-30 00:00:00\n", - "Buying TSCO on 2017-11-30 00:00:00\n", - "Buying SO on 2017-11-30 00:00:00\n", - "Buying REG on 2017-11-30 00:00:00\n", - "Buying LYB on 2017-11-30 00:00:00\n", - "Selling SWKS on 2017-11-30 00:00:00\n", - "Selling ROK on 2017-11-30 00:00:00\n", - "Selling GEN on 2017-11-30 00:00:00\n", - "Selling GS on 2017-11-30 00:00:00\n", - "Selling HWM on 2017-11-30 00:00:00\n", - "Selling CDW on 2017-11-30 00:00:00\n", - "Selling CRL on 2017-11-30 00:00:00\n", - "Selling EW on 2017-11-30 00:00:00\n", - "Selling J on 2017-11-30 00:00:00\n", - "Selling SYF on 2017-11-30 00:00:00\n", - "Selling MTCH on 2017-11-30 00:00:00\n", - "Selling MPWR on 2017-11-30 00:00:00\n", - "Selling AMZN on 2017-11-30 00:00:00\n", - "Selling NFLX on 2017-11-30 00:00:00\n", - "Buying AON on 2017-12-31 00:00:00\n", - "Buying PARA on 2017-12-31 00:00:00\n", - "Buying AMT on 2017-12-31 00:00:00\n", - "Buying NEM on 2017-12-31 00:00:00\n", - "Buying DUK on 2017-12-31 00:00:00\n", - "Buying SO on 2017-12-31 00:00:00\n", - "Buying CCI on 2017-12-31 00:00:00\n", - "Buying ACGL on 2017-12-31 00:00:00\n", - "Buying SRE on 2017-12-31 00:00:00\n", - "Buying CLX on 2017-12-31 00:00:00\n", - "Buying D on 2017-12-31 00:00:00\n", - "Buying L on 2017-12-31 00:00:00\n", - "Buying WTW on 2017-12-31 00:00:00\n", - "Buying BKNG on 2017-12-31 00:00:00\n", - "Selling HII on 2017-12-31 00:00:00\n", - "Selling FCX on 2017-12-31 00:00:00\n", - "Selling GS on 2017-12-31 00:00:00\n", - "Selling APO on 2017-12-31 00:00:00\n", - "Selling SYF on 2017-12-31 00:00:00\n", - "Selling HWM on 2017-12-31 00:00:00\n", - "Selling MSFT on 2017-12-31 00:00:00\n", - "Selling NFLX on 2017-12-31 00:00:00\n", - "Selling CRL on 2017-12-31 00:00:00\n", - "Selling CDW on 2017-12-31 00:00:00\n", - "Selling EW on 2017-12-31 00:00:00\n", - "Selling AMZN on 2017-12-31 00:00:00\n", - "Selling J on 2017-12-31 00:00:00\n", - "Selling MPWR on 2017-12-31 00:00:00\n", - "Buying SO on 2018-01-31 00:00:00\n", - "Buying CLX on 2018-01-31 00:00:00\n", - "Buying D on 2018-01-31 00:00:00\n", - "Buying EQIX on 2018-01-31 00:00:00\n", - "Buying AEP on 2018-01-31 00:00:00\n", - "Buying MKTX on 2018-01-31 00:00:00\n", - "Buying PARA on 2018-01-31 00:00:00\n", - "Buying HAS on 2018-01-31 00:00:00\n", - "Buying DUK on 2018-01-31 00:00:00\n", - "Buying CMS on 2018-01-31 00:00:00\n", - "Buying SRE on 2018-01-31 00:00:00\n", - "Buying AMT on 2018-01-31 00:00:00\n", - "Buying LHX on 2018-01-31 00:00:00\n", - "Buying REG on 2018-01-31 00:00:00\n", - "Selling A on 2018-01-31 00:00:00\n", - "Selling NUE on 2018-01-31 00:00:00\n", - "Selling J on 2018-01-31 00:00:00\n", - "Selling CF on 2018-01-31 00:00:00\n", - "Selling HII on 2018-01-31 00:00:00\n", - "Selling BWA on 2018-01-31 00:00:00\n", - "Selling HWM on 2018-01-31 00:00:00\n", - "Selling CDW on 2018-01-31 00:00:00\n", - "Selling SWKS on 2018-01-31 00:00:00\n", - "Selling CVS on 2018-01-31 00:00:00\n", - "Selling ADBE on 2018-01-31 00:00:00\n", - "Selling PHM on 2018-01-31 00:00:00\n", - "Selling MPWR on 2018-01-31 00:00:00\n", - "Selling ABBV on 2018-01-31 00:00:00\n", - "Buying MKTX on 2018-02-28 00:00:00\n", - "Buying SO on 2018-02-28 00:00:00\n", - "Buying DUK on 2018-02-28 00:00:00\n", - "Buying AEP on 2018-02-28 00:00:00\n", - "Buying D on 2018-02-28 00:00:00\n", - "Buying CHD on 2018-02-28 00:00:00\n", - "Buying SRE on 2018-02-28 00:00:00\n", - "Buying CBOE on 2018-02-28 00:00:00\n", - "Buying AXON on 2018-02-28 00:00:00\n", - "Buying CMS on 2018-02-28 00:00:00\n", - "Buying NI on 2018-02-28 00:00:00\n", - "Buying EQIX on 2018-02-28 00:00:00\n", - "Buying CDW on 2018-02-28 00:00:00\n", - "Buying ULTA on 2018-02-28 00:00:00\n", - "Selling BLK on 2018-02-28 00:00:00\n", - "Selling MTCH on 2018-02-28 00:00:00\n", - "Selling RJF on 2018-02-28 00:00:00\n", - "Selling CAT on 2018-02-28 00:00:00\n", - "Selling CSX on 2018-02-28 00:00:00\n", - "Selling SYF on 2018-02-28 00:00:00\n", - "Selling SWKS on 2018-02-28 00:00:00\n", - "Selling MSFT on 2018-02-28 00:00:00\n", - "Selling NFLX on 2018-02-28 00:00:00\n", - "Selling VRTX on 2018-02-28 00:00:00\n", - "Selling ABBV on 2018-02-28 00:00:00\n", - "Selling FCX on 2018-02-28 00:00:00\n", - "Selling SPGI on 2018-02-28 00:00:00\n", - "Selling MPWR on 2018-02-28 00:00:00\n", - "Buying SO on 2018-03-31 00:00:00\n", - "Buying AEP on 2018-03-31 00:00:00\n", - "Buying DUK on 2018-03-31 00:00:00\n", - "Buying AXON on 2018-03-31 00:00:00\n", - "Buying D on 2018-03-31 00:00:00\n", - "Buying MKTX on 2018-03-31 00:00:00\n", - "Buying SRE on 2018-03-31 00:00:00\n", - "Buying CHD on 2018-03-31 00:00:00\n", - "Buying CMS on 2018-03-31 00:00:00\n", - "Buying NI on 2018-03-31 00:00:00\n", - "Buying PNW on 2018-03-31 00:00:00\n", - "Buying VICI on 2018-03-31 00:00:00\n", - "Buying WELL on 2018-03-31 00:00:00\n", - "Buying REG on 2018-03-31 00:00:00\n", - "Selling CSX on 2018-03-31 00:00:00\n", - "Selling LOW on 2018-03-31 00:00:00\n", - "Selling SPGI on 2018-03-31 00:00:00\n", - "Selling ADBE on 2018-03-31 00:00:00\n", - "Selling SWKS on 2018-03-31 00:00:00\n", - "Selling FCX on 2018-03-31 00:00:00\n", - "Selling RJF on 2018-03-31 00:00:00\n", - "Selling VRTX on 2018-03-31 00:00:00\n", - "Selling CAT on 2018-03-31 00:00:00\n", - "Selling BLK on 2018-03-31 00:00:00\n", - "Selling ABBV on 2018-03-31 00:00:00\n", - "Selling MSFT on 2018-03-31 00:00:00\n", - "Selling NFLX on 2018-03-31 00:00:00\n", - "Selling MPWR on 2018-03-31 00:00:00\n", - "Buying SO on 2018-04-30 00:00:00\n", - "Buying AEP on 2018-04-30 00:00:00\n", - "Buying DUK on 2018-04-30 00:00:00\n", - "Buying VICI on 2018-04-30 00:00:00\n", - "Buying SRE on 2018-04-30 00:00:00\n", - "Buying D on 2018-04-30 00:00:00\n", - "Buying MKTX on 2018-04-30 00:00:00\n", - "Buying WELL on 2018-04-30 00:00:00\n", - "Buying CMS on 2018-04-30 00:00:00\n", - "Buying AXON on 2018-04-30 00:00:00\n", - "Buying NI on 2018-04-30 00:00:00\n", - "Buying PNW on 2018-04-30 00:00:00\n", - "Buying PPL on 2018-04-30 00:00:00\n", - "Buying CCI on 2018-04-30 00:00:00\n", - "Selling J on 2018-04-30 00:00:00\n", - "Selling HWM on 2018-04-30 00:00:00\n", - "Selling MTCH on 2018-04-30 00:00:00\n", - "Selling ADBE on 2018-04-30 00:00:00\n", - "Selling RJF on 2018-04-30 00:00:00\n", - "Selling BLK on 2018-04-30 00:00:00\n", - "Selling SWKS on 2018-04-30 00:00:00\n", - "Selling VRTX on 2018-04-30 00:00:00\n", - "Selling CAT on 2018-04-30 00:00:00\n", - "Selling MSFT on 2018-04-30 00:00:00\n", - "Selling FCX on 2018-04-30 00:00:00\n", - "Selling MPWR on 2018-04-30 00:00:00\n", - "Selling INCY on 2018-04-30 00:00:00\n", - "Selling NFLX on 2018-04-30 00:00:00\n", - "Buying WELL on 2018-05-31 00:00:00\n", - "Buying CCI on 2018-05-31 00:00:00\n", - "Buying AEP on 2018-05-31 00:00:00\n", - "Buying PNW on 2018-05-31 00:00:00\n", - "Buying SRE on 2018-05-31 00:00:00\n", - "Buying NI on 2018-05-31 00:00:00\n", - "Buying CMS on 2018-05-31 00:00:00\n", - "Buying DUK on 2018-05-31 00:00:00\n", - "Buying PPL on 2018-05-31 00:00:00\n", - "Buying D on 2018-05-31 00:00:00\n", - "Buying SO on 2018-05-31 00:00:00\n", - "Buying AMT on 2018-05-31 00:00:00\n", - "Buying HAS on 2018-05-31 00:00:00\n", - "Buying ACGL on 2018-05-31 00:00:00\n", - "Selling IDXX on 2018-05-31 00:00:00\n", - "Selling ABBV on 2018-05-31 00:00:00\n", - "Selling AMZN on 2018-05-31 00:00:00\n", - "Selling STLD on 2018-05-31 00:00:00\n", - "Selling BLK on 2018-05-31 00:00:00\n", - "Selling ADBE on 2018-05-31 00:00:00\n", - "Selling CAT on 2018-05-31 00:00:00\n", - "Selling RJF on 2018-05-31 00:00:00\n", - "Selling HWM on 2018-05-31 00:00:00\n", - "Selling MSFT on 2018-05-31 00:00:00\n", - "Selling MPWR on 2018-05-31 00:00:00\n", - "Selling FCX on 2018-05-31 00:00:00\n", - "Selling NFLX on 2018-05-31 00:00:00\n", - "Selling INCY on 2018-05-31 00:00:00\n", - "Buying CMS on 2018-06-30 00:00:00\n", - "Buying AEP on 2018-06-30 00:00:00\n", - "Buying NI on 2018-06-30 00:00:00\n", - "Buying PNW on 2018-06-30 00:00:00\n", - "Buying DUK on 2018-06-30 00:00:00\n", - "Buying SO on 2018-06-30 00:00:00\n", - "Buying PPL on 2018-06-30 00:00:00\n", - "Buying SRE on 2018-06-30 00:00:00\n", - "Buying D on 2018-06-30 00:00:00\n", - "Buying CCI on 2018-06-30 00:00:00\n", - "Buying WELL on 2018-06-30 00:00:00\n", - "Buying DRI on 2018-06-30 00:00:00\n", - "Buying GEN on 2018-06-30 00:00:00\n", - "Buying AMT on 2018-06-30 00:00:00\n", - "Selling ABBV on 2018-06-30 00:00:00\n", - "Selling MPWR on 2018-06-30 00:00:00\n", - "Selling RJF on 2018-06-30 00:00:00\n", - "Selling NUE on 2018-06-30 00:00:00\n", - "Selling LYB on 2018-06-30 00:00:00\n", - "Selling A on 2018-06-30 00:00:00\n", - "Selling NFLX on 2018-06-30 00:00:00\n", - "Selling STLD on 2018-06-30 00:00:00\n", - "Selling IDXX on 2018-06-30 00:00:00\n", - "Selling HWM on 2018-06-30 00:00:00\n", - "Selling CAT on 2018-06-30 00:00:00\n", - "Selling AXON on 2018-06-30 00:00:00\n", - "Selling FCX on 2018-06-30 00:00:00\n", - "Selling INCY on 2018-06-30 00:00:00\n", - "Buying AEP on 2018-07-31 00:00:00\n", - "Buying NI on 2018-07-31 00:00:00\n", - "Buying PNW on 2018-07-31 00:00:00\n", - "Buying DUK on 2018-07-31 00:00:00\n", - "Buying CMS on 2018-07-31 00:00:00\n", - "Buying D on 2018-07-31 00:00:00\n", - "Buying SO on 2018-07-31 00:00:00\n", - "Buying PPL on 2018-07-31 00:00:00\n", - "Buying SRE on 2018-07-31 00:00:00\n", - "Buying DRI on 2018-07-31 00:00:00\n", - "Buying CHD on 2018-07-31 00:00:00\n", - "Buying CLX on 2018-07-31 00:00:00\n", - "Buying CCI on 2018-07-31 00:00:00\n", - "Buying GIS on 2018-07-31 00:00:00\n", - "Selling NUE on 2018-07-31 00:00:00\n", - "Selling NFLX on 2018-07-31 00:00:00\n", - "Selling EPAM on 2018-07-31 00:00:00\n", - "Selling MTD on 2018-07-31 00:00:00\n", - "Selling STLD on 2018-07-31 00:00:00\n", - "Selling RJF on 2018-07-31 00:00:00\n", - "Selling PTC on 2018-07-31 00:00:00\n", - "Selling LYB on 2018-07-31 00:00:00\n", - "Selling FCX on 2018-07-31 00:00:00\n", - "Selling ABBV on 2018-07-31 00:00:00\n", - "Selling A on 2018-07-31 00:00:00\n", - "Selling CAT on 2018-07-31 00:00:00\n", - "Selling MTCH on 2018-07-31 00:00:00\n", - "Selling AXON on 2018-07-31 00:00:00\n", - "Buying AEP on 2018-08-31 00:00:00\n", - "Buying PNW on 2018-08-31 00:00:00\n", - "Buying DUK on 2018-08-31 00:00:00\n", - "Buying CMS on 2018-08-31 00:00:00\n", - "Buying NI on 2018-08-31 00:00:00\n", - "Buying PPL on 2018-08-31 00:00:00\n", - "Buying CLX on 2018-08-31 00:00:00\n", - "Buying DRI on 2018-08-31 00:00:00\n", - "Buying SO on 2018-08-31 00:00:00\n", - "Buying CHD on 2018-08-31 00:00:00\n", - "Buying D on 2018-08-31 00:00:00\n", - "Buying GIS on 2018-08-31 00:00:00\n", - "Buying SJM on 2018-08-31 00:00:00\n", - "Buying INVH on 2018-08-31 00:00:00\n", - "Selling LYB on 2018-08-31 00:00:00\n", - "Selling MTCH on 2018-08-31 00:00:00\n", - "Selling NOW on 2018-08-31 00:00:00\n", - "Selling MPWR on 2018-08-31 00:00:00\n", - "Selling IDXX on 2018-08-31 00:00:00\n", - "Selling NUE on 2018-08-31 00:00:00\n", - "Selling LVS on 2018-08-31 00:00:00\n", - "Selling PTC on 2018-08-31 00:00:00\n", - "Selling NFLX on 2018-08-31 00:00:00\n", - "Selling STLD on 2018-08-31 00:00:00\n", - "Selling FCX on 2018-08-31 00:00:00\n", - "Selling APTV on 2018-08-31 00:00:00\n", - "Selling CAT on 2018-08-31 00:00:00\n", - "Selling AXON on 2018-08-31 00:00:00\n", - "Buying CLX on 2018-09-30 00:00:00\n", - "Buying GIS on 2018-09-30 00:00:00\n", - "Buying AEP on 2018-09-30 00:00:00\n", - "Buying PNW on 2018-09-30 00:00:00\n", - "Buying NI on 2018-09-30 00:00:00\n", - "Buying DUK on 2018-09-30 00:00:00\n", - "Buying CMS on 2018-09-30 00:00:00\n", - "Buying PPL on 2018-09-30 00:00:00\n", - "Buying CHD on 2018-09-30 00:00:00\n", - "Buying SO on 2018-09-30 00:00:00\n", - "Buying SJM on 2018-09-30 00:00:00\n", - "Buying D on 2018-09-30 00:00:00\n", - "Buying ERIE on 2018-09-30 00:00:00\n", - "Buying T on 2018-09-30 00:00:00\n", - "Selling JBL on 2018-09-30 00:00:00\n", - "Selling BWA on 2018-09-30 00:00:00\n", - "Selling ADBE on 2018-09-30 00:00:00\n", - "Selling GILD on 2018-09-30 00:00:00\n", - "Selling NWSA on 2018-09-30 00:00:00\n", - "Selling IDXX on 2018-09-30 00:00:00\n", - "Selling RJF on 2018-09-30 00:00:00\n", - "Selling LVS on 2018-09-30 00:00:00\n", - "Selling NFLX on 2018-09-30 00:00:00\n", - "Selling AXON on 2018-09-30 00:00:00\n", - "Selling PTC on 2018-09-30 00:00:00\n", - "Selling CAT on 2018-09-30 00:00:00\n", - "Selling FCX on 2018-09-30 00:00:00\n", - "Selling APTV on 2018-09-30 00:00:00\n", - "Buying NEM on 2018-10-31 00:00:00\n", - "Buying SO on 2018-10-31 00:00:00\n", - "Buying NI on 2018-10-31 00:00:00\n", - "Buying MKTX on 2018-10-31 00:00:00\n", - "Buying AEP on 2018-10-31 00:00:00\n", - "Buying DUK on 2018-10-31 00:00:00\n", - "Buying SJM on 2018-10-31 00:00:00\n", - "Buying D on 2018-10-31 00:00:00\n", - "Buying PNW on 2018-10-31 00:00:00\n", - "Buying PPL on 2018-10-31 00:00:00\n", - "Buying CMS on 2018-10-31 00:00:00\n", - "Buying GIS on 2018-10-31 00:00:00\n", - "Buying SRE on 2018-10-31 00:00:00\n", - "Buying EXR on 2018-10-31 00:00:00\n", - "Selling BX on 2018-10-31 00:00:00\n", - "Selling EPAM on 2018-10-31 00:00:00\n", - "Selling INCY on 2018-10-31 00:00:00\n", - "Selling CAT on 2018-10-31 00:00:00\n", - "Selling MSFT on 2018-10-31 00:00:00\n", - "Selling MPWR on 2018-10-31 00:00:00\n", - "Selling PTC on 2018-10-31 00:00:00\n", - "Selling NOW on 2018-10-31 00:00:00\n", - "Selling MTCH on 2018-10-31 00:00:00\n", - "Selling CRM on 2018-10-31 00:00:00\n", - "Selling ADBE on 2018-10-31 00:00:00\n", - "Selling AXON on 2018-10-31 00:00:00\n", - "Selling AMZN on 2018-10-31 00:00:00\n", - "Selling NFLX on 2018-10-31 00:00:00\n", - "Buying NEM on 2018-11-30 00:00:00\n", - "Buying SJM on 2018-11-30 00:00:00\n", - "Buying MKTX on 2018-11-30 00:00:00\n", - "Buying PPL on 2018-11-30 00:00:00\n", - "Buying NI on 2018-11-30 00:00:00\n", - "Buying AEP on 2018-11-30 00:00:00\n", - "Buying D on 2018-11-30 00:00:00\n", - "Buying DUK on 2018-11-30 00:00:00\n", - "Buying GIS on 2018-11-30 00:00:00\n", - "Buying SO on 2018-11-30 00:00:00\n", - "Buying CMS on 2018-11-30 00:00:00\n", - "Buying PNW on 2018-11-30 00:00:00\n", - "Buying EXR on 2018-11-30 00:00:00\n", - "Buying CBOE on 2018-11-30 00:00:00\n", - "Selling EW on 2018-11-30 00:00:00\n", - "Selling LVS on 2018-11-30 00:00:00\n", - "Selling EPAM on 2018-11-30 00:00:00\n", - "Selling CF on 2018-11-30 00:00:00\n", - "Selling MSFT on 2018-11-30 00:00:00\n", - "Selling CRL on 2018-11-30 00:00:00\n", - "Selling MPWR on 2018-11-30 00:00:00\n", - "Selling CAT on 2018-11-30 00:00:00\n", - "Selling PTC on 2018-11-30 00:00:00\n", - "Selling ADBE on 2018-11-30 00:00:00\n", - "Selling NOW on 2018-11-30 00:00:00\n", - "Selling CRM on 2018-11-30 00:00:00\n", - "Selling AMZN on 2018-11-30 00:00:00\n", - "Selling NFLX on 2018-11-30 00:00:00\n", - "Buying NEM on 2018-12-31 00:00:00\n", - "Buying D on 2018-12-31 00:00:00\n", - "Buying PPL on 2018-12-31 00:00:00\n", - "Buying NI on 2018-12-31 00:00:00\n", - "Buying AEP on 2018-12-31 00:00:00\n", - "Buying SJM on 2018-12-31 00:00:00\n", - "Buying DUK on 2018-12-31 00:00:00\n", - "Buying MKTX on 2018-12-31 00:00:00\n", - "Buying SO on 2018-12-31 00:00:00\n", - "Buying CMS on 2018-12-31 00:00:00\n", - "Buying PNW on 2018-12-31 00:00:00\n", - "Buying GIS on 2018-12-31 00:00:00\n", - "Buying SRE on 2018-12-31 00:00:00\n", - "Buying EXR on 2018-12-31 00:00:00\n", - "Selling VRTX on 2018-12-31 00:00:00\n", - "Selling EW on 2018-12-31 00:00:00\n", - "Selling CRL on 2018-12-31 00:00:00\n", - "Selling LVS on 2018-12-31 00:00:00\n", - "Selling EPAM on 2018-12-31 00:00:00\n", - "Selling CAT on 2018-12-31 00:00:00\n", - "Selling MSFT on 2018-12-31 00:00:00\n", - "Selling PTC on 2018-12-31 00:00:00\n", - "Selling MPWR on 2018-12-31 00:00:00\n", - "Selling NOW on 2018-12-31 00:00:00\n", - "Selling CRM on 2018-12-31 00:00:00\n", - "Selling ADBE on 2018-12-31 00:00:00\n", - "Selling NFLX on 2018-12-31 00:00:00\n", - "Selling AMZN on 2018-12-31 00:00:00\n", - "Buying NEM on 2019-01-31 00:00:00\n", - "Buying SJM on 2019-01-31 00:00:00\n", - "Buying DUK on 2019-01-31 00:00:00\n", - "Buying D on 2019-01-31 00:00:00\n", - "Buying AEP on 2019-01-31 00:00:00\n", - "Buying PPL on 2019-01-31 00:00:00\n", - "Buying PNW on 2019-01-31 00:00:00\n", - "Buying CMS on 2019-01-31 00:00:00\n", - "Buying CBOE on 2019-01-31 00:00:00\n", - "Buying NI on 2019-01-31 00:00:00\n", - "Buying GIS on 2019-01-31 00:00:00\n", - "Buying EXR on 2019-01-31 00:00:00\n", - "Buying SO on 2019-01-31 00:00:00\n", - "Buying AMT on 2019-01-31 00:00:00\n", - "Selling PTC on 2019-01-31 00:00:00\n", - "Selling CRL on 2019-01-31 00:00:00\n", - "Selling EW on 2019-01-31 00:00:00\n", - "Selling SWKS on 2019-01-31 00:00:00\n", - "Selling MSFT on 2019-01-31 00:00:00\n", - "Selling LVS on 2019-01-31 00:00:00\n", - "Selling MPWR on 2019-01-31 00:00:00\n", - "Selling CAT on 2019-01-31 00:00:00\n", - "Selling FCX on 2019-01-31 00:00:00\n", - "Selling ADBE on 2019-01-31 00:00:00\n", - "Selling CRM on 2019-01-31 00:00:00\n", - "Selling NFLX on 2019-01-31 00:00:00\n", - "Selling NOW on 2019-01-31 00:00:00\n", - "Selling AMZN on 2019-01-31 00:00:00\n", - "Buying NEM on 2019-02-28 00:00:00\n", - "Buying DUK on 2019-02-28 00:00:00\n", - "Buying AEP on 2019-02-28 00:00:00\n", - "Buying SO on 2019-02-28 00:00:00\n", - "Buying PNW on 2019-02-28 00:00:00\n", - "Buying D on 2019-02-28 00:00:00\n", - "Buying EXR on 2019-02-28 00:00:00\n", - "Buying CMS on 2019-02-28 00:00:00\n", - "Buying NI on 2019-02-28 00:00:00\n", - "Buying SRE on 2019-02-28 00:00:00\n", - "Buying AMT on 2019-02-28 00:00:00\n", - "Buying CCI on 2019-02-28 00:00:00\n", - "Buying PPL on 2019-02-28 00:00:00\n", - "Buying CBOE on 2019-02-28 00:00:00\n", - "Selling MSFT on 2019-02-28 00:00:00\n", - "Selling LVS on 2019-02-28 00:00:00\n", - "Selling ULTA on 2019-02-28 00:00:00\n", - "Selling NCLH on 2019-02-28 00:00:00\n", - "Selling SWKS on 2019-02-28 00:00:00\n", - "Selling RVTY on 2019-02-28 00:00:00\n", - "Selling CAT on 2019-02-28 00:00:00\n", - "Selling MPWR on 2019-02-28 00:00:00\n", - "Selling CRM on 2019-02-28 00:00:00\n", - "Selling FCX on 2019-02-28 00:00:00\n", - "Selling ADBE on 2019-02-28 00:00:00\n", - "Selling NOW on 2019-02-28 00:00:00\n", - "Selling NFLX on 2019-02-28 00:00:00\n", - "Selling AMZN on 2019-02-28 00:00:00\n", - "Buying EXR on 2019-03-31 00:00:00\n", - "Buying WELL on 2019-03-31 00:00:00\n", - "Buying O on 2019-03-31 00:00:00\n", - "Buying VICI on 2019-03-31 00:00:00\n", - "Buying SO on 2019-03-31 00:00:00\n", - "Buying DUK on 2019-03-31 00:00:00\n", - "Buying PNW on 2019-03-31 00:00:00\n", - "Buying CMS on 2019-03-31 00:00:00\n", - "Buying AEP on 2019-03-31 00:00:00\n", - "Buying REG on 2019-03-31 00:00:00\n", - "Buying CCI on 2019-03-31 00:00:00\n", - "Buying DLTR on 2019-03-31 00:00:00\n", - "Buying AMT on 2019-03-31 00:00:00\n", - "Buying INVH on 2019-03-31 00:00:00\n", - "Selling HWM on 2019-03-31 00:00:00\n", - "Selling RVTY on 2019-03-31 00:00:00\n", - "Selling CRM on 2019-03-31 00:00:00\n", - "Selling AMZN on 2019-03-31 00:00:00\n", - "Selling NFLX on 2019-03-31 00:00:00\n", - "Selling BMY on 2019-03-31 00:00:00\n", - "Selling MPWR on 2019-03-31 00:00:00\n", - "Selling CAT on 2019-03-31 00:00:00\n", - "Selling AXON on 2019-03-31 00:00:00\n", - "Selling CF on 2019-03-31 00:00:00\n", - "Selling APO on 2019-03-31 00:00:00\n", - "Selling NOW on 2019-03-31 00:00:00\n", - "Selling SWKS on 2019-03-31 00:00:00\n", - "Selling FCX on 2019-03-31 00:00:00\n", - "Buying DLTR on 2019-04-30 00:00:00\n", - "Buying DUK on 2019-04-30 00:00:00\n", - "Buying AEP on 2019-04-30 00:00:00\n", - "Buying PNW on 2019-04-30 00:00:00\n", - "Buying SO on 2019-04-30 00:00:00\n", - "Buying NI on 2019-04-30 00:00:00\n", - "Buying CMS on 2019-04-30 00:00:00\n", - "Buying PHM on 2019-04-30 00:00:00\n", - "Buying MNST on 2019-04-30 00:00:00\n", - "Buying CHD on 2019-04-30 00:00:00\n", - "Buying VICI on 2019-04-30 00:00:00\n", - "Buying KHC on 2019-04-30 00:00:00\n", - "Buying PPL on 2019-04-30 00:00:00\n", - "Buying D on 2019-04-30 00:00:00\n", - "Selling C on 2019-04-30 00:00:00\n", - "Selling TRGP on 2019-04-30 00:00:00\n", - "Selling CAT on 2019-04-30 00:00:00\n", - "Selling APTV on 2019-04-30 00:00:00\n", - "Selling SWKS on 2019-04-30 00:00:00\n", - "Selling PH on 2019-04-30 00:00:00\n", - "Selling MPWR on 2019-04-30 00:00:00\n", - "Selling CVS on 2019-04-30 00:00:00\n", - "Selling APO on 2019-04-30 00:00:00\n", - "Selling FCX on 2019-04-30 00:00:00\n", - "Selling CE on 2019-04-30 00:00:00\n", - "Selling STLD on 2019-04-30 00:00:00\n", - "Selling AXON on 2019-04-30 00:00:00\n", - "Selling BWA on 2019-04-30 00:00:00\n", - "Buying NEM on 2019-05-31 00:00:00\n", - "Buying AEP on 2019-05-31 00:00:00\n", - "Buying PNW on 2019-05-31 00:00:00\n", - "Buying CMS on 2019-05-31 00:00:00\n", - "Buying SO on 2019-05-31 00:00:00\n", - "Buying D on 2019-05-31 00:00:00\n", - "Buying DUK on 2019-05-31 00:00:00\n", - "Buying NI on 2019-05-31 00:00:00\n", - "Buying EXR on 2019-05-31 00:00:00\n", - "Buying PPL on 2019-05-31 00:00:00\n", - "Buying GIS on 2019-05-31 00:00:00\n", - "Buying SJM on 2019-05-31 00:00:00\n", - "Buying WELL on 2019-05-31 00:00:00\n", - "Buying AMT on 2019-05-31 00:00:00\n", - "Selling ROK on 2019-05-31 00:00:00\n", - "Selling TXT on 2019-05-31 00:00:00\n", - "Selling MPWR on 2019-05-31 00:00:00\n", - "Selling CF on 2019-05-31 00:00:00\n", - "Selling BWA on 2019-05-31 00:00:00\n", - "Selling SWKS on 2019-05-31 00:00:00\n", - "Selling PH on 2019-05-31 00:00:00\n", - "Selling KEYS on 2019-05-31 00:00:00\n", - "Selling EPAM on 2019-05-31 00:00:00\n", - "Selling CE on 2019-05-31 00:00:00\n", - "Selling STLD on 2019-05-31 00:00:00\n", - "Selling JBL on 2019-05-31 00:00:00\n", - "Selling FCX on 2019-05-31 00:00:00\n", - "Selling APO on 2019-05-31 00:00:00\n", - "Buying NEM on 2019-06-30 00:00:00\n", - "Buying AEP on 2019-06-30 00:00:00\n", - "Buying CMS on 2019-06-30 00:00:00\n", - "Buying SO on 2019-06-30 00:00:00\n", - "Buying PNW on 2019-06-30 00:00:00\n", - "Buying SJM on 2019-06-30 00:00:00\n", - "Buying EXR on 2019-06-30 00:00:00\n", - "Buying D on 2019-06-30 00:00:00\n", - "Buying NI on 2019-06-30 00:00:00\n", - "Buying DUK on 2019-06-30 00:00:00\n", - "Buying WELL on 2019-06-30 00:00:00\n", - "Buying CHD on 2019-06-30 00:00:00\n", - "Buying CBOE on 2019-06-30 00:00:00\n", - "Buying GIS on 2019-06-30 00:00:00\n", - "Selling APO on 2019-06-30 00:00:00\n", - "Selling APTV on 2019-06-30 00:00:00\n", - "Selling PH on 2019-06-30 00:00:00\n", - "Selling CRM on 2019-06-30 00:00:00\n", - "Selling MPWR on 2019-06-30 00:00:00\n", - "Selling ADBE on 2019-06-30 00:00:00\n", - "Selling FCX on 2019-06-30 00:00:00\n", - "Selling TXT on 2019-06-30 00:00:00\n", - "Selling JBL on 2019-06-30 00:00:00\n", - "Selling LVS on 2019-06-30 00:00:00\n", - "Selling NOW on 2019-06-30 00:00:00\n", - "Selling HAS on 2019-06-30 00:00:00\n", - "Selling PTC on 2019-06-30 00:00:00\n", - "Selling KEYS on 2019-06-30 00:00:00\n", - "Buying PNW on 2019-07-31 00:00:00\n", - "Buying SO on 2019-07-31 00:00:00\n", - "Buying NEM on 2019-07-31 00:00:00\n", - "Buying AEP on 2019-07-31 00:00:00\n", - "Buying CMS on 2019-07-31 00:00:00\n", - "Buying D on 2019-07-31 00:00:00\n", - "Buying AMT on 2019-07-31 00:00:00\n", - "Buying NI on 2019-07-31 00:00:00\n", - "Buying DUK on 2019-07-31 00:00:00\n", - "Buying EXR on 2019-07-31 00:00:00\n", - "Buying WELL on 2019-07-31 00:00:00\n", - "Buying SJM on 2019-07-31 00:00:00\n", - "Buying LHX on 2019-07-31 00:00:00\n", - "Buying SRE on 2019-07-31 00:00:00\n", - "Selling GE on 2019-07-31 00:00:00\n", - "Selling C on 2019-07-31 00:00:00\n", - "Selling CRM on 2019-07-31 00:00:00\n", - "Selling ADBE on 2019-07-31 00:00:00\n", - "Selling HAS on 2019-07-31 00:00:00\n", - "Selling JBL on 2019-07-31 00:00:00\n", - "Selling APO on 2019-07-31 00:00:00\n", - "Selling LVS on 2019-07-31 00:00:00\n", - "Selling TXT on 2019-07-31 00:00:00\n", - "Selling SWKS on 2019-07-31 00:00:00\n", - "Selling NOW on 2019-07-31 00:00:00\n", - "Selling MPWR on 2019-07-31 00:00:00\n", - "Selling PTC on 2019-07-31 00:00:00\n", - "Selling KEYS on 2019-07-31 00:00:00\n", - "Buying NEM on 2019-08-31 00:00:00\n", - "Buying CBOE on 2019-08-31 00:00:00\n", - "Buying KHC on 2019-08-31 00:00:00\n", - "Buying EXR on 2019-08-31 00:00:00\n", - "Buying AMT on 2019-08-31 00:00:00\n", - "Buying SO on 2019-08-31 00:00:00\n", - "Buying DUK on 2019-08-31 00:00:00\n", - "Buying WELL on 2019-08-31 00:00:00\n", - "Buying CMS on 2019-08-31 00:00:00\n", - "Buying AEP on 2019-08-31 00:00:00\n", - "Buying PNW on 2019-08-31 00:00:00\n", - "Buying D on 2019-08-31 00:00:00\n", - "Buying MKTX on 2019-08-31 00:00:00\n", - "Buying O on 2019-08-31 00:00:00\n", - "Selling C on 2019-08-31 00:00:00\n", - "Selling FFIV on 2019-08-31 00:00:00\n", - "Selling TXT on 2019-08-31 00:00:00\n", - "Selling HAS on 2019-08-31 00:00:00\n", - "Selling AXON on 2019-08-31 00:00:00\n", - "Selling PARA on 2019-08-31 00:00:00\n", - "Selling LVS on 2019-08-31 00:00:00\n", - "Selling JBL on 2019-08-31 00:00:00\n", - "Selling PTC on 2019-08-31 00:00:00\n", - "Selling SWKS on 2019-08-31 00:00:00\n", - "Selling GEN on 2019-08-31 00:00:00\n", - "Selling TRGP on 2019-08-31 00:00:00\n", - "Selling MPWR on 2019-08-31 00:00:00\n", - "Selling KEYS on 2019-08-31 00:00:00\n", - "Buying NEM on 2019-09-30 00:00:00\n", - "Buying AMT on 2019-09-30 00:00:00\n", - "Buying KHC on 2019-09-30 00:00:00\n", - "Buying CBOE on 2019-09-30 00:00:00\n", - "Buying EXR on 2019-09-30 00:00:00\n", - "Buying WELL on 2019-09-30 00:00:00\n", - "Buying SO on 2019-09-30 00:00:00\n", - "Buying CMS on 2019-09-30 00:00:00\n", - "Buying MKTX on 2019-09-30 00:00:00\n", - "Buying AEP on 2019-09-30 00:00:00\n", - "Buying DUK on 2019-09-30 00:00:00\n", - "Buying PNW on 2019-09-30 00:00:00\n", - "Buying CHD on 2019-09-30 00:00:00\n", - "Buying D on 2019-09-30 00:00:00\n", - "Selling PTC on 2019-09-30 00:00:00\n", - "Selling C on 2019-09-30 00:00:00\n", - "Selling TXT on 2019-09-30 00:00:00\n", - "Selling HAS on 2019-09-30 00:00:00\n", - "Selling APTV on 2019-09-30 00:00:00\n", - "Selling STLD on 2019-09-30 00:00:00\n", - "Selling EPAM on 2019-09-30 00:00:00\n", - "Selling JBL on 2019-09-30 00:00:00\n", - "Selling BWA on 2019-09-30 00:00:00\n", - "Selling SWKS on 2019-09-30 00:00:00\n", - "Selling CRWD on 2019-09-30 00:00:00\n", - "Selling TRGP on 2019-09-30 00:00:00\n", - "Selling MPWR on 2019-09-30 00:00:00\n", - "Selling KEYS on 2019-09-30 00:00:00\n", - "Buying NEM on 2019-10-31 00:00:00\n", - "Buying AMT on 2019-10-31 00:00:00\n", - "Buying O on 2019-10-31 00:00:00\n", - "Buying EXR on 2019-10-31 00:00:00\n", - "Buying SO on 2019-10-31 00:00:00\n", - "Buying WELL on 2019-10-31 00:00:00\n", - "Buying CMS on 2019-10-31 00:00:00\n", - "Buying SRE on 2019-10-31 00:00:00\n", - "Buying CBOE on 2019-10-31 00:00:00\n", - "Buying INVH on 2019-10-31 00:00:00\n", - "Buying KHC on 2019-10-31 00:00:00\n", - "Buying CHD on 2019-10-31 00:00:00\n", - "Buying DUK on 2019-10-31 00:00:00\n", - "Buying AEP on 2019-10-31 00:00:00\n", - "Selling LYB on 2019-10-31 00:00:00\n", - "Selling BWA on 2019-10-31 00:00:00\n", - "Selling TXT on 2019-10-31 00:00:00\n", - "Selling PH on 2019-10-31 00:00:00\n", - "Selling SWKS on 2019-10-31 00:00:00\n", - "Selling AXON on 2019-10-31 00:00:00\n", - "Selling FCX on 2019-10-31 00:00:00\n", - "Selling PARA on 2019-10-31 00:00:00\n", - "Selling STLD on 2019-10-31 00:00:00\n", - "Selling TRGP on 2019-10-31 00:00:00\n", - "Selling APTV on 2019-10-31 00:00:00\n", - "Selling MPWR on 2019-10-31 00:00:00\n", - "Selling KEYS on 2019-10-31 00:00:00\n", - "Selling CRWD on 2019-10-31 00:00:00\n", - "Buying NEM on 2019-11-30 00:00:00\n", - "Buying CHD on 2019-11-30 00:00:00\n", - "Buying AMT on 2019-11-30 00:00:00\n", - "Buying ULTA on 2019-11-30 00:00:00\n", - "Buying CMS on 2019-11-30 00:00:00\n", - "Buying CCI on 2019-11-30 00:00:00\n", - "Buying TAP on 2019-11-30 00:00:00\n", - "Buying EXR on 2019-11-30 00:00:00\n", - "Buying WELL on 2019-11-30 00:00:00\n", - "Buying O on 2019-11-30 00:00:00\n", - "Buying LHX on 2019-11-30 00:00:00\n", - "Buying AEP on 2019-11-30 00:00:00\n", - "Buying INVH on 2019-11-30 00:00:00\n", - "Buying TSCO on 2019-11-30 00:00:00\n", - "Selling BWA on 2019-11-30 00:00:00\n", - "Selling GE on 2019-11-30 00:00:00\n", - "Selling MTD on 2019-11-30 00:00:00\n", - "Selling CAT on 2019-11-30 00:00:00\n", - "Selling AXON on 2019-11-30 00:00:00\n", - "Selling MPWR on 2019-11-30 00:00:00\n", - "Selling KEYS on 2019-11-30 00:00:00\n", - "Selling PH on 2019-11-30 00:00:00\n", - "Selling STLD on 2019-11-30 00:00:00\n", - "Selling NOW on 2019-11-30 00:00:00\n", - "Selling APTV on 2019-11-30 00:00:00\n", - "Selling SWKS on 2019-11-30 00:00:00\n", - "Selling CRWD on 2019-11-30 00:00:00\n", - "Selling FCX on 2019-11-30 00:00:00\n", - "Buying NEM on 2019-12-31 00:00:00\n", - "Buying CCI on 2019-12-31 00:00:00\n", - "Buying EXR on 2019-12-31 00:00:00\n", - "Buying CMS on 2019-12-31 00:00:00\n", - "Buying PHM on 2019-12-31 00:00:00\n", - "Buying SRE on 2019-12-31 00:00:00\n", - "Buying LHX on 2019-12-31 00:00:00\n", - "Buying AMT on 2019-12-31 00:00:00\n", - "Buying WELL on 2019-12-31 00:00:00\n", - "Buying KHC on 2019-12-31 00:00:00\n", - "Buying AEP on 2019-12-31 00:00:00\n", - "Buying VST on 2019-12-31 00:00:00\n", - "Buying CBOE on 2019-12-31 00:00:00\n", - "Buying NRG on 2019-12-31 00:00:00\n", - "Selling ULTA on 2019-12-31 00:00:00\n", - "Selling NOW on 2019-12-31 00:00:00\n", - "Selling C on 2019-12-31 00:00:00\n", - "Selling LYB on 2019-12-31 00:00:00\n", - "Selling CAT on 2019-12-31 00:00:00\n", - "Selling PH on 2019-12-31 00:00:00\n", - "Selling SWKS on 2019-12-31 00:00:00\n", - "Selling LVS on 2019-12-31 00:00:00\n", - "Selling GE on 2019-12-31 00:00:00\n", - "Selling APTV on 2019-12-31 00:00:00\n", - "Selling RVTY on 2019-12-31 00:00:00\n", - "Selling MPWR on 2019-12-31 00:00:00\n", - "Selling KEYS on 2019-12-31 00:00:00\n", - "Selling FCX on 2019-12-31 00:00:00\n", - "Buying NEM on 2020-01-31 00:00:00\n", - "Buying CHD on 2020-01-31 00:00:00\n", - "Buying CMS on 2020-01-31 00:00:00\n", - "Buying EXR on 2020-01-31 00:00:00\n", - "Buying CLX on 2020-01-31 00:00:00\n", - "Buying CBOE on 2020-01-31 00:00:00\n", - "Buying PNW on 2020-01-31 00:00:00\n", - "Buying NI on 2020-01-31 00:00:00\n", - "Buying AEP on 2020-01-31 00:00:00\n", - "Buying ICE on 2020-01-31 00:00:00\n", - "Buying O on 2020-01-31 00:00:00\n", - "Buying REG on 2020-01-31 00:00:00\n", - "Buying WELL on 2020-01-31 00:00:00\n", - "Buying IRM on 2020-01-31 00:00:00\n", - "Selling CAT on 2020-01-31 00:00:00\n", - "Selling GE on 2020-01-31 00:00:00\n", - "Selling LYV on 2020-01-31 00:00:00\n", - "Selling MTCH on 2020-01-31 00:00:00\n", - "Selling PH on 2020-01-31 00:00:00\n", - "Selling APTV on 2020-01-31 00:00:00\n", - "Selling GS on 2020-01-31 00:00:00\n", - "Selling LYB on 2020-01-31 00:00:00\n", - "Selling DFS on 2020-01-31 00:00:00\n", - "Selling KEYS on 2020-01-31 00:00:00\n", - "Selling SWKS on 2020-01-31 00:00:00\n", - "Selling MPWR on 2020-01-31 00:00:00\n", - "Selling LVS on 2020-01-31 00:00:00\n", - "Selling FCX on 2020-01-31 00:00:00\n", - "Buying CLX on 2020-02-29 00:00:00\n", - "Buying ICE on 2020-02-29 00:00:00\n", - "Buying DGX on 2020-02-29 00:00:00\n", - "Buying MKTX on 2020-02-29 00:00:00\n", - "Buying GILD on 2020-02-29 00:00:00\n", - "Buying CBOE on 2020-02-29 00:00:00\n", - "Buying NEM on 2020-02-29 00:00:00\n", - "Buying CHD on 2020-02-29 00:00:00\n", - "Buying INVH on 2020-02-29 00:00:00\n", - "Buying ERIE on 2020-02-29 00:00:00\n", - "Buying NI on 2020-02-29 00:00:00\n", - "Buying EXR on 2020-02-29 00:00:00\n", - "Buying LH on 2020-02-29 00:00:00\n", - "Buying DUK on 2020-02-29 00:00:00\n", - "Selling CDW on 2020-02-29 00:00:00\n", - "Selling LVS on 2020-02-29 00:00:00\n", - "Selling GE on 2020-02-29 00:00:00\n", - "Selling CE on 2020-02-29 00:00:00\n", - "Selling MSFT on 2020-02-29 00:00:00\n", - "Selling APTV on 2020-02-29 00:00:00\n", - "Selling BLK on 2020-02-29 00:00:00\n", - "Selling LYB on 2020-02-29 00:00:00\n", - "Selling C on 2020-02-29 00:00:00\n", - "Selling MPWR on 2020-02-29 00:00:00\n", - "Selling SWKS on 2020-02-29 00:00:00\n", - "Selling NCLH on 2020-02-29 00:00:00\n", - "Selling LYV on 2020-02-29 00:00:00\n", - "Selling FCX on 2020-02-29 00:00:00\n", - "Buying CLX on 2020-03-31 00:00:00\n", - "Buying NEM on 2020-03-31 00:00:00\n", - "Buying GILD on 2020-03-31 00:00:00\n", - "Buying GEN on 2020-03-31 00:00:00\n", - "Buying SJM on 2020-03-31 00:00:00\n", - "Buying GIS on 2020-03-31 00:00:00\n", - "Buying DG on 2020-03-31 00:00:00\n", - "Buying CHD on 2020-03-31 00:00:00\n", - "Buying AMZN on 2020-03-31 00:00:00\n", - "Buying BDX on 2020-03-31 00:00:00\n", - "Buying BMY on 2020-03-31 00:00:00\n", - "Buying INCY on 2020-03-31 00:00:00\n", - "Buying RVTY on 2020-03-31 00:00:00\n", - "Buying MAR on 2020-03-31 00:00:00\n", - "Selling HWM on 2020-03-31 00:00:00\n", - "Selling L on 2020-03-31 00:00:00\n", - "Selling TXT on 2020-03-31 00:00:00\n", - "Selling VICI on 2020-03-31 00:00:00\n", - "Selling PH on 2020-03-31 00:00:00\n", - "Selling LYB on 2020-03-31 00:00:00\n", - "Selling FCX on 2020-03-31 00:00:00\n", - "Selling MPWR on 2020-03-31 00:00:00\n", - "Selling C on 2020-03-31 00:00:00\n", - "Selling SYF on 2020-03-31 00:00:00\n", - "Selling TRGP on 2020-03-31 00:00:00\n", - "Selling DRI on 2020-03-31 00:00:00\n", - "Selling DFS on 2020-03-31 00:00:00\n", - "Selling NCLH on 2020-03-31 00:00:00\n", - "Buying CLX on 2020-04-30 00:00:00\n", - "Buying GEN on 2020-04-30 00:00:00\n", - "Buying SJM on 2020-04-30 00:00:00\n", - "Buying GIS on 2020-04-30 00:00:00\n", - "Buying NEM on 2020-04-30 00:00:00\n", - "Buying GILD on 2020-04-30 00:00:00\n", - "Buying DG on 2020-04-30 00:00:00\n", - "Buying CHD on 2020-04-30 00:00:00\n", - "Buying AMZN on 2020-04-30 00:00:00\n", - "Buying BMY on 2020-04-30 00:00:00\n", - "Buying BDX on 2020-04-30 00:00:00\n", - "Buying NFLX on 2020-04-30 00:00:00\n", - "Buying INCY on 2020-04-30 00:00:00\n", - "Buying EXR on 2020-04-30 00:00:00\n", - "Selling WELL on 2020-04-30 00:00:00\n", - "Selling VICI on 2020-04-30 00:00:00\n", - "Selling HWM on 2020-04-30 00:00:00\n", - "Selling APO on 2020-04-30 00:00:00\n", - "Selling LYB on 2020-04-30 00:00:00\n", - "Selling MPWR on 2020-04-30 00:00:00\n", - "Selling PH on 2020-04-30 00:00:00\n", - "Selling FCX on 2020-04-30 00:00:00\n", - "Selling C on 2020-04-30 00:00:00\n", - "Selling SYF on 2020-04-30 00:00:00\n", - "Selling TRGP on 2020-04-30 00:00:00\n", - "Selling DRI on 2020-04-30 00:00:00\n", - "Selling DFS on 2020-04-30 00:00:00\n", - "Selling NCLH on 2020-04-30 00:00:00\n", - "Buying CLX on 2020-05-31 00:00:00\n", - "Buying GIS on 2020-05-31 00:00:00\n", - "Buying SJM on 2020-05-31 00:00:00\n", - "Buying GEN on 2020-05-31 00:00:00\n", - "Buying NEM on 2020-05-31 00:00:00\n", - "Buying GILD on 2020-05-31 00:00:00\n", - "Buying DG on 2020-05-31 00:00:00\n", - "Buying CHD on 2020-05-31 00:00:00\n", - "Buying BMY on 2020-05-31 00:00:00\n", - "Buying AMZN on 2020-05-31 00:00:00\n", - "Buying NFLX on 2020-05-31 00:00:00\n", - "Buying BDX on 2020-05-31 00:00:00\n", - "Buying INCY on 2020-05-31 00:00:00\n", - "Buying EXR on 2020-05-31 00:00:00\n", - "Selling TXT on 2020-05-31 00:00:00\n", - "Selling VICI on 2020-05-31 00:00:00\n", - "Selling WELL on 2020-05-31 00:00:00\n", - "Selling LYB on 2020-05-31 00:00:00\n", - "Selling APO on 2020-05-31 00:00:00\n", - "Selling PH on 2020-05-31 00:00:00\n", - "Selling HWM on 2020-05-31 00:00:00\n", - "Selling FCX on 2020-05-31 00:00:00\n", - "Selling C on 2020-05-31 00:00:00\n", - "Selling SYF on 2020-05-31 00:00:00\n", - "Selling TRGP on 2020-05-31 00:00:00\n", - "Selling DRI on 2020-05-31 00:00:00\n", - "Selling DFS on 2020-05-31 00:00:00\n", - "Selling NCLH on 2020-05-31 00:00:00\n", - "Buying CLX on 2020-06-30 00:00:00\n", - "Buying NFLX on 2020-06-30 00:00:00\n", - "Buying GIS on 2020-06-30 00:00:00\n", - "Buying DG on 2020-06-30 00:00:00\n", - "Buying SJM on 2020-06-30 00:00:00\n", - "Buying CRWD on 2020-06-30 00:00:00\n", - "Buying CHD on 2020-06-30 00:00:00\n", - "Buying NEM on 2020-06-30 00:00:00\n", - "Buying BDX on 2020-06-30 00:00:00\n", - "Buying BMY on 2020-06-30 00:00:00\n", - "Buying VRTX on 2020-06-30 00:00:00\n", - "Buying AMZN on 2020-06-30 00:00:00\n", - "Buying ABBV on 2020-06-30 00:00:00\n", - "Buying RMD on 2020-06-30 00:00:00\n", - "Selling PSX on 2020-06-30 00:00:00\n", - "Selling TXT on 2020-06-30 00:00:00\n", - "Selling LYB on 2020-06-30 00:00:00\n", - "Selling FCX on 2020-06-30 00:00:00\n", - "Selling HBAN on 2020-06-30 00:00:00\n", - "Selling APTV on 2020-06-30 00:00:00\n", - "Selling HWM on 2020-06-30 00:00:00\n", - "Selling C on 2020-06-30 00:00:00\n", - "Selling WELL on 2020-06-30 00:00:00\n", - "Selling TRGP on 2020-06-30 00:00:00\n", - "Selling SYF on 2020-06-30 00:00:00\n", - "Selling MAR on 2020-06-30 00:00:00\n", - "Selling DFS on 2020-06-30 00:00:00\n", - "Selling NCLH on 2020-06-30 00:00:00\n", - "Buying CLX on 2020-07-31 00:00:00\n", - "Buying NEM on 2020-07-31 00:00:00\n", - "Buying DG on 2020-07-31 00:00:00\n", - "Buying CHD on 2020-07-31 00:00:00\n", - "Buying D on 2020-07-31 00:00:00\n", - "Buying BDX on 2020-07-31 00:00:00\n", - "Buying GIS on 2020-07-31 00:00:00\n", - "Buying TSCO on 2020-07-31 00:00:00\n", - "Buying SJM on 2020-07-31 00:00:00\n", - "Buying VRTX on 2020-07-31 00:00:00\n", - "Buying ABBV on 2020-07-31 00:00:00\n", - "Buying GILD on 2020-07-31 00:00:00\n", - "Buying DLTR on 2020-07-31 00:00:00\n", - "Buying BMY on 2020-07-31 00:00:00\n", - "Selling PSX on 2020-07-31 00:00:00\n", - "Selling WFC on 2020-07-31 00:00:00\n", - "Selling LYB on 2020-07-31 00:00:00\n", - "Selling FCX on 2020-07-31 00:00:00\n", - "Selling HBAN on 2020-07-31 00:00:00\n", - "Selling TXT on 2020-07-31 00:00:00\n", - "Selling LYV on 2020-07-31 00:00:00\n", - "Selling MAR on 2020-07-31 00:00:00\n", - "Selling C on 2020-07-31 00:00:00\n", - "Selling SYF on 2020-07-31 00:00:00\n", - "Selling DFS on 2020-07-31 00:00:00\n", - "Selling TRGP on 2020-07-31 00:00:00\n", - "Selling HWM on 2020-07-31 00:00:00\n", - "Selling NCLH on 2020-07-31 00:00:00\n", - "Buying CLX on 2020-08-31 00:00:00\n", - "Buying DG on 2020-08-31 00:00:00\n", - "Buying D on 2020-08-31 00:00:00\n", - "Buying CHD on 2020-08-31 00:00:00\n", - "Buying TSCO on 2020-08-31 00:00:00\n", - "Buying DUK on 2020-08-31 00:00:00\n", - "Buying DLTR on 2020-08-31 00:00:00\n", - "Buying BDX on 2020-08-31 00:00:00\n", - "Buying GILD on 2020-08-31 00:00:00\n", - "Buying CMS on 2020-08-31 00:00:00\n", - "Buying ORLY on 2020-08-31 00:00:00\n", - "Buying SJM on 2020-08-31 00:00:00\n", - "Buying AEP on 2020-08-31 00:00:00\n", - "Buying GIS on 2020-08-31 00:00:00\n", - "Selling GS on 2020-08-31 00:00:00\n", - "Selling HBAN on 2020-08-31 00:00:00\n", - "Selling TXT on 2020-08-31 00:00:00\n", - "Selling STLD on 2020-08-31 00:00:00\n", - "Selling PSX on 2020-08-31 00:00:00\n", - "Selling LYB on 2020-08-31 00:00:00\n", - "Selling MAR on 2020-08-31 00:00:00\n", - "Selling SYF on 2020-08-31 00:00:00\n", - "Selling DFS on 2020-08-31 00:00:00\n", - "Selling C on 2020-08-31 00:00:00\n", - "Selling HWM on 2020-08-31 00:00:00\n", - "Selling FCX on 2020-08-31 00:00:00\n", - "Selling TRGP on 2020-08-31 00:00:00\n", - "Selling NCLH on 2020-08-31 00:00:00\n", - "Buying CBOE on 2020-09-30 00:00:00\n", - "Buying NI on 2020-09-30 00:00:00\n", - "Buying CVS on 2020-09-30 00:00:00\n", - "Buying T on 2020-09-30 00:00:00\n", - "Buying LVS on 2020-09-30 00:00:00\n", - "Buying AEP on 2020-09-30 00:00:00\n", - "Buying BDX on 2020-09-30 00:00:00\n", - "Buying D on 2020-09-30 00:00:00\n", - "Buying SO on 2020-09-30 00:00:00\n", - "Buying PNW on 2020-09-30 00:00:00\n", - "Buying LHX on 2020-09-30 00:00:00\n", - "Buying DGX on 2020-09-30 00:00:00\n", - "Buying PARA on 2020-09-30 00:00:00\n", - "Buying DUK on 2020-09-30 00:00:00\n", - "Selling NFLX on 2020-09-30 00:00:00\n", - "Selling JBL on 2020-09-30 00:00:00\n", - "Selling EPAM on 2020-09-30 00:00:00\n", - "Selling PTC on 2020-09-30 00:00:00\n", - "Selling TRGP on 2020-09-30 00:00:00\n", - "Selling FCX on 2020-09-30 00:00:00\n", - "Selling MTCH on 2020-09-30 00:00:00\n", - "Selling AMZN on 2020-09-30 00:00:00\n", - "Selling NOW on 2020-09-30 00:00:00\n", - "Selling MPWR on 2020-09-30 00:00:00\n", - "Selling ADBE on 2020-09-30 00:00:00\n", - "Selling MSFT on 2020-09-30 00:00:00\n", - "Selling CRM on 2020-09-30 00:00:00\n", - "Selling SWKS on 2020-09-30 00:00:00\n", - "Buying CBOE on 2020-10-31 00:00:00\n", - "Buying DGX on 2020-10-31 00:00:00\n", - "Buying T on 2020-10-31 00:00:00\n", - "Buying BDX on 2020-10-31 00:00:00\n", - "Buying AEP on 2020-10-31 00:00:00\n", - "Buying NI on 2020-10-31 00:00:00\n", - "Buying PARA on 2020-10-31 00:00:00\n", - "Buying PNW on 2020-10-31 00:00:00\n", - "Buying CVS on 2020-10-31 00:00:00\n", - "Buying LH on 2020-10-31 00:00:00\n", - "Buying CLX on 2020-10-31 00:00:00\n", - "Buying ERIE on 2020-10-31 00:00:00\n", - "Buying D on 2020-10-31 00:00:00\n", - "Buying SO on 2020-10-31 00:00:00\n", - "Selling ULTA on 2020-10-31 00:00:00\n", - "Selling EPAM on 2020-10-31 00:00:00\n", - "Selling IDXX on 2020-10-31 00:00:00\n", - "Selling NOW on 2020-10-31 00:00:00\n", - "Selling JBL on 2020-10-31 00:00:00\n", - "Selling TRGP on 2020-10-31 00:00:00\n", - "Selling FCX on 2020-10-31 00:00:00\n", - "Selling PTC on 2020-10-31 00:00:00\n", - "Selling MPWR on 2020-10-31 00:00:00\n", - "Selling MSFT on 2020-10-31 00:00:00\n", - "Selling ADBE on 2020-10-31 00:00:00\n", - "Selling AMZN on 2020-10-31 00:00:00\n", - "Selling CRM on 2020-10-31 00:00:00\n", - "Selling SWKS on 2020-10-31 00:00:00\n", - "Buying CLX on 2020-11-30 00:00:00\n", - "Buying DGX on 2020-11-30 00:00:00\n", - "Buying BDX on 2020-11-30 00:00:00\n", - "Buying AEP on 2020-11-30 00:00:00\n", - "Buying EXR on 2020-11-30 00:00:00\n", - "Buying LH on 2020-11-30 00:00:00\n", - "Buying CHD on 2020-11-30 00:00:00\n", - "Buying CRWD on 2020-11-30 00:00:00\n", - "Buying T on 2020-11-30 00:00:00\n", - "Buying ERIE on 2020-11-30 00:00:00\n", - "Buying CBOE on 2020-11-30 00:00:00\n", - "Buying JBHT on 2020-11-30 00:00:00\n", - "Buying DG on 2020-11-30 00:00:00\n", - "Buying SO on 2020-11-30 00:00:00\n", - "Selling JBL on 2020-11-30 00:00:00\n", - "Selling AMZN on 2020-11-30 00:00:00\n", - "Selling HWM on 2020-11-30 00:00:00\n", - "Selling REG on 2020-11-30 00:00:00\n", - "Selling ULTA on 2020-11-30 00:00:00\n", - "Selling LYV on 2020-11-30 00:00:00\n", - "Selling DFS on 2020-11-30 00:00:00\n", - "Selling SWKS on 2020-11-30 00:00:00\n", - "Selling SYY on 2020-11-30 00:00:00\n", - "Selling BKNG on 2020-11-30 00:00:00\n", - "Selling MAR on 2020-11-30 00:00:00\n", - "Selling TRGP on 2020-11-30 00:00:00\n", - "Selling PSX on 2020-11-30 00:00:00\n", - "Selling NCLH on 2020-11-30 00:00:00\n", - "Buying CLX on 2020-12-31 00:00:00\n", - "Buying CRWD on 2020-12-31 00:00:00\n", - "Buying EXR on 2020-12-31 00:00:00\n", - "Buying CHD on 2020-12-31 00:00:00\n", - "Buying ERIE on 2020-12-31 00:00:00\n", - "Buying CCI on 2020-12-31 00:00:00\n", - "Buying LH on 2020-12-31 00:00:00\n", - "Buying DGX on 2020-12-31 00:00:00\n", - "Buying GEN on 2020-12-31 00:00:00\n", - "Buying GIS on 2020-12-31 00:00:00\n", - "Buying TSCO on 2020-12-31 00:00:00\n", - "Buying DG on 2020-12-31 00:00:00\n", - "Buying SJM on 2020-12-31 00:00:00\n", - "Buying AEP on 2020-12-31 00:00:00\n", - "Selling HWM on 2020-12-31 00:00:00\n", - "Selling WFC on 2020-12-31 00:00:00\n", - "Selling DRI on 2020-12-31 00:00:00\n", - "Selling DFS on 2020-12-31 00:00:00\n", - "Selling SYF on 2020-12-31 00:00:00\n", - "Selling JBL on 2020-12-31 00:00:00\n", - "Selling REG on 2020-12-31 00:00:00\n", - "Selling TRGP on 2020-12-31 00:00:00\n", - "Selling MAR on 2020-12-31 00:00:00\n", - "Selling LYV on 2020-12-31 00:00:00\n", - "Selling SYY on 2020-12-31 00:00:00\n", - "Selling BKNG on 2020-12-31 00:00:00\n", - "Selling PSX on 2020-12-31 00:00:00\n", - "Selling NCLH on 2020-12-31 00:00:00\n", - "Buying CLX on 2021-01-31 00:00:00\n", - "Buying IRM on 2021-01-31 00:00:00\n", - "Buying SJM on 2021-01-31 00:00:00\n", - "Buying GIS on 2021-01-31 00:00:00\n", - "Buying MKTX on 2021-01-31 00:00:00\n", - "Buying DGX on 2021-01-31 00:00:00\n", - "Buying CHD on 2021-01-31 00:00:00\n", - "Buying PARA on 2021-01-31 00:00:00\n", - "Buying LH on 2021-01-31 00:00:00\n", - "Buying CCI on 2021-01-31 00:00:00\n", - "Buying ERIE on 2021-01-31 00:00:00\n", - "Buying TSCO on 2021-01-31 00:00:00\n", - "Buying EXR on 2021-01-31 00:00:00\n", - "Buying GILD on 2021-01-31 00:00:00\n", - "Selling TXT on 2021-01-31 00:00:00\n", - "Selling DFS on 2021-01-31 00:00:00\n", - "Selling TRGP on 2021-01-31 00:00:00\n", - "Selling WFC on 2021-01-31 00:00:00\n", - "Selling LVS on 2021-01-31 00:00:00\n", - "Selling SYF on 2021-01-31 00:00:00\n", - "Selling DRI on 2021-01-31 00:00:00\n", - "Selling SYY on 2021-01-31 00:00:00\n", - "Selling LYV on 2021-01-31 00:00:00\n", - "Selling REG on 2021-01-31 00:00:00\n", - "Selling MAR on 2021-01-31 00:00:00\n", - "Selling PSX on 2021-01-31 00:00:00\n", - "Selling BKNG on 2021-01-31 00:00:00\n", - "Selling NCLH on 2021-01-31 00:00:00\n", - "Buying CLX on 2021-02-28 00:00:00\n", - "Buying IRM on 2021-02-28 00:00:00\n", - "Buying SJM on 2021-02-28 00:00:00\n", - "Buying DGX on 2021-02-28 00:00:00\n", - "Buying MKTX on 2021-02-28 00:00:00\n", - "Buying GIS on 2021-02-28 00:00:00\n", - "Buying TAP on 2021-02-28 00:00:00\n", - "Buying CHD on 2021-02-28 00:00:00\n", - "Buying DUK on 2021-02-28 00:00:00\n", - "Buying PARA on 2021-02-28 00:00:00\n", - "Buying D on 2021-02-28 00:00:00\n", - "Buying TSCO on 2021-02-28 00:00:00\n", - "Buying KHC on 2021-02-28 00:00:00\n", - "Buying ERIE on 2021-02-28 00:00:00\n", - "Selling APTV on 2021-02-28 00:00:00\n", - "Selling KMX on 2021-02-28 00:00:00\n", - "Selling FCX on 2021-02-28 00:00:00\n", - "Selling JBL on 2021-02-28 00:00:00\n", - "Selling DFS on 2021-02-28 00:00:00\n", - "Selling SYF on 2021-02-28 00:00:00\n", - "Selling NCLH on 2021-02-28 00:00:00\n", - "Selling MTCH on 2021-02-28 00:00:00\n", - "Selling TXT on 2021-02-28 00:00:00\n", - "Selling NFLX on 2021-02-28 00:00:00\n", - "Selling BKNG on 2021-02-28 00:00:00\n", - "Selling PTC on 2021-02-28 00:00:00\n", - "Selling SWKS on 2021-02-28 00:00:00\n", - "Selling MPWR on 2021-02-28 00:00:00\n", - "Buying PARA on 2021-03-31 00:00:00\n", - "Buying IRM on 2021-03-31 00:00:00\n", - "Buying CLX on 2021-03-31 00:00:00\n", - "Buying SJM on 2021-03-31 00:00:00\n", - "Buying DGX on 2021-03-31 00:00:00\n", - "Buying TAP on 2021-03-31 00:00:00\n", - "Buying GIS on 2021-03-31 00:00:00\n", - "Buying DUK on 2021-03-31 00:00:00\n", - "Buying NI on 2021-03-31 00:00:00\n", - "Buying CHD on 2021-03-31 00:00:00\n", - "Buying AEP on 2021-03-31 00:00:00\n", - "Buying PPL on 2021-03-31 00:00:00\n", - "Buying EXR on 2021-03-31 00:00:00\n", - "Buying CMS on 2021-03-31 00:00:00\n", - "Selling ADBE on 2021-03-31 00:00:00\n", - "Selling SYF on 2021-03-31 00:00:00\n", - "Selling INCY on 2021-03-31 00:00:00\n", - "Selling BKNG on 2021-03-31 00:00:00\n", - "Selling IDXX on 2021-03-31 00:00:00\n", - "Selling NFLX on 2021-03-31 00:00:00\n", - "Selling JBL on 2021-03-31 00:00:00\n", - "Selling CRWD on 2021-03-31 00:00:00\n", - "Selling NOW on 2021-03-31 00:00:00\n", - "Selling MTCH on 2021-03-31 00:00:00\n", - "Selling FCX on 2021-03-31 00:00:00\n", - "Selling SWKS on 2021-03-31 00:00:00\n", - "Selling PTC on 2021-03-31 00:00:00\n", - "Selling MPWR on 2021-03-31 00:00:00\n", - "Buying PARA on 2021-04-30 00:00:00\n", - "Buying HAS on 2021-04-30 00:00:00\n", - "Buying CLX on 2021-04-30 00:00:00\n", - "Buying EXR on 2021-04-30 00:00:00\n", - "Buying SJM on 2021-04-30 00:00:00\n", - "Buying DGX on 2021-04-30 00:00:00\n", - "Buying CMS on 2021-04-30 00:00:00\n", - "Buying PNW on 2021-04-30 00:00:00\n", - "Buying NI on 2021-04-30 00:00:00\n", - "Buying CHD on 2021-04-30 00:00:00\n", - "Buying PPL on 2021-04-30 00:00:00\n", - "Buying T on 2021-04-30 00:00:00\n", - "Buying DUK on 2021-04-30 00:00:00\n", - "Buying AEP on 2021-04-30 00:00:00\n", - "Selling CTAS on 2021-04-30 00:00:00\n", - "Selling AXON on 2021-04-30 00:00:00\n", - "Selling IDXX on 2021-04-30 00:00:00\n", - "Selling PHM on 2021-04-30 00:00:00\n", - "Selling ADBE on 2021-04-30 00:00:00\n", - "Selling MKTX on 2021-04-30 00:00:00\n", - "Selling JBL on 2021-04-30 00:00:00\n", - "Selling NOW on 2021-04-30 00:00:00\n", - "Selling CRWD on 2021-04-30 00:00:00\n", - "Selling PTC on 2021-04-30 00:00:00\n", - "Selling MTCH on 2021-04-30 00:00:00\n", - "Selling FCX on 2021-04-30 00:00:00\n", - "Selling SWKS on 2021-04-30 00:00:00\n", - "Selling MPWR on 2021-04-30 00:00:00\n", - "Buying PARA on 2021-05-31 00:00:00\n", - "Buying GEN on 2021-05-31 00:00:00\n", - "Buying DGX on 2021-05-31 00:00:00\n", - "Buying NI on 2021-05-31 00:00:00\n", - "Buying CVS on 2021-05-31 00:00:00\n", - "Buying COR on 2021-05-31 00:00:00\n", - "Buying CHD on 2021-05-31 00:00:00\n", - "Buying CMS on 2021-05-31 00:00:00\n", - "Buying PPL on 2021-05-31 00:00:00\n", - "Buying VST on 2021-05-31 00:00:00\n", - "Buying CLX on 2021-05-31 00:00:00\n", - "Buying CBOE on 2021-05-31 00:00:00\n", - "Buying BMY on 2021-05-31 00:00:00\n", - "Buying AEP on 2021-05-31 00:00:00\n", - "Selling ADBE on 2021-05-31 00:00:00\n", - "Selling CTAS on 2021-05-31 00:00:00\n", - "Selling NCLH on 2021-05-31 00:00:00\n", - "Selling IDXX on 2021-05-31 00:00:00\n", - "Selling TEL on 2021-05-31 00:00:00\n", - "Selling BWA on 2021-05-31 00:00:00\n", - "Selling JBL on 2021-05-31 00:00:00\n", - "Selling PTC on 2021-05-31 00:00:00\n", - "Selling PHM on 2021-05-31 00:00:00\n", - "Selling MTCH on 2021-05-31 00:00:00\n", - "Selling AXON on 2021-05-31 00:00:00\n", - "Selling FCX on 2021-05-31 00:00:00\n", - "Selling SWKS on 2021-05-31 00:00:00\n", - "Selling MPWR on 2021-05-31 00:00:00\n", - "Buying GEN on 2021-06-30 00:00:00\n", - "Buying CLX on 2021-06-30 00:00:00\n", - "Buying BDX on 2021-06-30 00:00:00\n", - "Buying BMY on 2021-06-30 00:00:00\n", - "Buying CHD on 2021-06-30 00:00:00\n", - "Buying CVS on 2021-06-30 00:00:00\n", - "Buying DGX on 2021-06-30 00:00:00\n", - "Buying INCY on 2021-06-30 00:00:00\n", - "Buying COR on 2021-06-30 00:00:00\n", - "Buying GILD on 2021-06-30 00:00:00\n", - "Buying GIS on 2021-06-30 00:00:00\n", - "Buying EQIX on 2021-06-30 00:00:00\n", - "Buying T on 2021-06-30 00:00:00\n", - "Buying DG on 2021-06-30 00:00:00\n", - "Selling CTAS on 2021-06-30 00:00:00\n", - "Selling TAP on 2021-06-30 00:00:00\n", - "Selling NWSA on 2021-06-30 00:00:00\n", - "Selling BWA on 2021-06-30 00:00:00\n", - "Selling AXON on 2021-06-30 00:00:00\n", - "Selling STLD on 2021-06-30 00:00:00\n", - "Selling NUE on 2021-06-30 00:00:00\n", - "Selling PHM on 2021-06-30 00:00:00\n", - "Selling JBL on 2021-06-30 00:00:00\n", - "Selling APTV on 2021-06-30 00:00:00\n", - "Selling TEL on 2021-06-30 00:00:00\n", - "Selling NCLH on 2021-06-30 00:00:00\n", - "Selling SWKS on 2021-06-30 00:00:00\n", - "Selling MPWR on 2021-06-30 00:00:00\n", - "Buying GEN on 2021-07-31 00:00:00\n", - "Buying BDX on 2021-07-31 00:00:00\n", - "Buying EQIX on 2021-07-31 00:00:00\n", - "Buying CLX on 2021-07-31 00:00:00\n", - "Buying GIS on 2021-07-31 00:00:00\n", - "Buying CHD on 2021-07-31 00:00:00\n", - "Buying CRWD on 2021-07-31 00:00:00\n", - "Buying SJM on 2021-07-31 00:00:00\n", - "Buying VRTX on 2021-07-31 00:00:00\n", - "Buying GILD on 2021-07-31 00:00:00\n", - "Buying INCY on 2021-07-31 00:00:00\n", - "Buying MKTX on 2021-07-31 00:00:00\n", - "Buying DGX on 2021-07-31 00:00:00\n", - "Buying BMY on 2021-07-31 00:00:00\n", - "Selling LYV on 2021-07-31 00:00:00\n", - "Selling PHM on 2021-07-31 00:00:00\n", - "Selling SYF on 2021-07-31 00:00:00\n", - "Selling FCX on 2021-07-31 00:00:00\n", - "Selling DFS on 2021-07-31 00:00:00\n", - "Selling KMX on 2021-07-31 00:00:00\n", - "Selling NUE on 2021-07-31 00:00:00\n", - "Selling MAR on 2021-07-31 00:00:00\n", - "Selling APTV on 2021-07-31 00:00:00\n", - "Selling STLD on 2021-07-31 00:00:00\n", - "Selling TXT on 2021-07-31 00:00:00\n", - "Selling JBL on 2021-07-31 00:00:00\n", - "Selling DRI on 2021-07-31 00:00:00\n", - "Selling NCLH on 2021-07-31 00:00:00\n", - "Buying CLX on 2021-08-31 00:00:00\n", - "Buying EQIX on 2021-08-31 00:00:00\n", - "Buying BDX on 2021-08-31 00:00:00\n", - "Buying NFLX on 2021-08-31 00:00:00\n", - "Buying MKTX on 2021-08-31 00:00:00\n", - "Buying DGX on 2021-08-31 00:00:00\n", - "Buying CHD on 2021-08-31 00:00:00\n", - "Buying RMD on 2021-08-31 00:00:00\n", - "Buying CRWD on 2021-08-31 00:00:00\n", - "Buying SJM on 2021-08-31 00:00:00\n", - "Buying VRTX on 2021-08-31 00:00:00\n", - "Buying RVTY on 2021-08-31 00:00:00\n", - "Buying GIS on 2021-08-31 00:00:00\n", - "Buying CCI on 2021-08-31 00:00:00\n", - "Selling NUE on 2021-08-31 00:00:00\n", - "Selling MAR on 2021-08-31 00:00:00\n", - "Selling WFC on 2021-08-31 00:00:00\n", - "Selling TXT on 2021-08-31 00:00:00\n", - "Selling TRGP on 2021-08-31 00:00:00\n", - "Selling LYB on 2021-08-31 00:00:00\n", - "Selling SYF on 2021-08-31 00:00:00\n", - "Selling DRI on 2021-08-31 00:00:00\n", - "Selling HBAN on 2021-08-31 00:00:00\n", - "Selling DFS on 2021-08-31 00:00:00\n", - "Selling STLD on 2021-08-31 00:00:00\n", - "Selling PSX on 2021-08-31 00:00:00\n", - "Selling FCX on 2021-08-31 00:00:00\n", - "Selling NCLH on 2021-08-31 00:00:00\n", - "Buying CLX on 2021-09-30 00:00:00\n", - "Buying CHD on 2021-09-30 00:00:00\n", - "Buying SJM on 2021-09-30 00:00:00\n", - "Buying EQIX on 2021-09-30 00:00:00\n", - "Buying BDX on 2021-09-30 00:00:00\n", - "Buying INCY on 2021-09-30 00:00:00\n", - "Buying FDS on 2021-09-30 00:00:00\n", - "Buying MKTX on 2021-09-30 00:00:00\n", - "Buying RMD on 2021-09-30 00:00:00\n", - "Buying CMS on 2021-09-30 00:00:00\n", - "Buying D on 2021-09-30 00:00:00\n", - "Buying PNW on 2021-09-30 00:00:00\n", - "Buying GIS on 2021-09-30 00:00:00\n", - "Buying CCI on 2021-09-30 00:00:00\n", - "Selling WFC on 2021-09-30 00:00:00\n", - "Selling BX on 2021-09-30 00:00:00\n", - "Selling GE on 2021-09-30 00:00:00\n", - "Selling SYF on 2021-09-30 00:00:00\n", - "Selling PSX on 2021-09-30 00:00:00\n", - "Selling DRI on 2021-09-30 00:00:00\n", - "Selling APO on 2021-09-30 00:00:00\n", - "Selling HBAN on 2021-09-30 00:00:00\n", - "Selling DFS on 2021-09-30 00:00:00\n", - "Selling TRGP on 2021-09-30 00:00:00\n", - "Selling STLD on 2021-09-30 00:00:00\n", - "Selling NUE on 2021-09-30 00:00:00\n", - "Selling FCX on 2021-09-30 00:00:00\n", - "Selling NCLH on 2021-09-30 00:00:00\n", - "Buying PNW on 2021-10-31 00:00:00\n", - "Buying CLX on 2021-10-31 00:00:00\n", - "Buying CMS on 2021-10-31 00:00:00\n", - "Buying NEM on 2021-10-31 00:00:00\n", - "Buying SJM on 2021-10-31 00:00:00\n", - "Buying CHD on 2021-10-31 00:00:00\n", - "Buying NI on 2021-10-31 00:00:00\n", - "Buying WELL on 2021-10-31 00:00:00\n", - "Buying FDS on 2021-10-31 00:00:00\n", - "Buying DUK on 2021-10-31 00:00:00\n", - "Buying D on 2021-10-31 00:00:00\n", - "Buying AEP on 2021-10-31 00:00:00\n", - "Buying SO on 2021-10-31 00:00:00\n", - "Buying INCY on 2021-10-31 00:00:00\n", - "Selling KMX on 2021-10-31 00:00:00\n", - "Selling KEYS on 2021-10-31 00:00:00\n", - "Selling BLK on 2021-10-31 00:00:00\n", - "Selling STLD on 2021-10-31 00:00:00\n", - "Selling DFS on 2021-10-31 00:00:00\n", - "Selling NOW on 2021-10-31 00:00:00\n", - "Selling PTC on 2021-10-31 00:00:00\n", - "Selling TEL on 2021-10-31 00:00:00\n", - "Selling CAT on 2021-10-31 00:00:00\n", - "Selling J on 2021-10-31 00:00:00\n", - "Selling NUE on 2021-10-31 00:00:00\n", - "Selling BX on 2021-10-31 00:00:00\n", - "Selling APO on 2021-10-31 00:00:00\n", - "Selling FCX on 2021-10-31 00:00:00\n", - "Buying NEM on 2021-11-30 00:00:00\n", - "Buying CLX on 2021-11-30 00:00:00\n", - "Buying PNW on 2021-11-30 00:00:00\n", - "Buying SJM on 2021-11-30 00:00:00\n", - "Buying MKTX on 2021-11-30 00:00:00\n", - "Buying FDS on 2021-11-30 00:00:00\n", - "Buying CMS on 2021-11-30 00:00:00\n", - "Buying BDX on 2021-11-30 00:00:00\n", - "Buying CHD on 2021-11-30 00:00:00\n", - "Buying GILD on 2021-11-30 00:00:00\n", - "Buying DUK on 2021-11-30 00:00:00\n", - "Buying AEP on 2021-11-30 00:00:00\n", - "Buying NI on 2021-11-30 00:00:00\n", - "Buying KHC on 2021-11-30 00:00:00\n", - "Selling DFS on 2021-11-30 00:00:00\n", - "Selling LYV on 2021-11-30 00:00:00\n", - "Selling NOW on 2021-11-30 00:00:00\n", - "Selling NUE on 2021-11-30 00:00:00\n", - "Selling PTC on 2021-11-30 00:00:00\n", - "Selling TEL on 2021-11-30 00:00:00\n", - "Selling PH on 2021-11-30 00:00:00\n", - "Selling KEYS on 2021-11-30 00:00:00\n", - "Selling MPWR on 2021-11-30 00:00:00\n", - "Selling NCLH on 2021-11-30 00:00:00\n", - "Selling EPAM on 2021-11-30 00:00:00\n", - "Selling FCX on 2021-11-30 00:00:00\n", - "Selling APO on 2021-11-30 00:00:00\n", - "Selling BX on 2021-11-30 00:00:00\n", - "Buying NEM on 2021-12-31 00:00:00\n", - "Buying CLX on 2021-12-31 00:00:00\n", - "Buying BMY on 2021-12-31 00:00:00\n", - "Buying SJM on 2021-12-31 00:00:00\n", - "Buying BDX on 2021-12-31 00:00:00\n", - "Buying GILD on 2021-12-31 00:00:00\n", - "Buying DGX on 2021-12-31 00:00:00\n", - "Buying DG on 2021-12-31 00:00:00\n", - "Buying CHD on 2021-12-31 00:00:00\n", - "Buying GIS on 2021-12-31 00:00:00\n", - "Buying PNW on 2021-12-31 00:00:00\n", - "Buying VRTX on 2021-12-31 00:00:00\n", - "Buying DUK on 2021-12-31 00:00:00\n", - "Buying PKG on 2021-12-31 00:00:00\n", - "Selling MPWR on 2021-12-31 00:00:00\n", - "Selling TXT on 2021-12-31 00:00:00\n", - "Selling ULTA on 2021-12-31 00:00:00\n", - "Selling JBL on 2021-12-31 00:00:00\n", - "Selling BKNG on 2021-12-31 00:00:00\n", - "Selling APTV on 2021-12-31 00:00:00\n", - "Selling LYV on 2021-12-31 00:00:00\n", - "Selling FCX on 2021-12-31 00:00:00\n", - "Selling CRM on 2021-12-31 00:00:00\n", - "Selling EPAM on 2021-12-31 00:00:00\n", - "Selling ADBE on 2021-12-31 00:00:00\n", - "Selling BX on 2021-12-31 00:00:00\n", - "Selling NCLH on 2021-12-31 00:00:00\n", - "Selling NOW on 2021-12-31 00:00:00\n", - "Buying NEM on 2022-01-31 00:00:00\n", - "Buying CLX on 2022-01-31 00:00:00\n", - "Buying SJM on 2022-01-31 00:00:00\n", - "Buying BMY on 2022-01-31 00:00:00\n", - "Buying BDX on 2022-01-31 00:00:00\n", - "Buying GIS on 2022-01-31 00:00:00\n", - "Buying DGX on 2022-01-31 00:00:00\n", - "Buying DUK on 2022-01-31 00:00:00\n", - "Buying CMS on 2022-01-31 00:00:00\n", - "Buying KHC on 2022-01-31 00:00:00\n", - "Buying DG on 2022-01-31 00:00:00\n", - "Buying GILD on 2022-01-31 00:00:00\n", - "Buying AEP on 2022-01-31 00:00:00\n", - "Buying PPL on 2022-01-31 00:00:00\n", - "Selling IDXX on 2022-01-31 00:00:00\n", - "Selling JBL on 2022-01-31 00:00:00\n", - "Selling LVS on 2022-01-31 00:00:00\n", - "Selling ULTA on 2022-01-31 00:00:00\n", - "Selling LYV on 2022-01-31 00:00:00\n", - "Selling NFLX on 2022-01-31 00:00:00\n", - "Selling CRWD on 2022-01-31 00:00:00\n", - "Selling BX on 2022-01-31 00:00:00\n", - "Selling MPWR on 2022-01-31 00:00:00\n", - "Selling NCLH on 2022-01-31 00:00:00\n", - "Selling ADBE on 2022-01-31 00:00:00\n", - "Selling CRM on 2022-01-31 00:00:00\n", - "Selling NOW on 2022-01-31 00:00:00\n", - "Selling EPAM on 2022-01-31 00:00:00\n", - "Buying NEM on 2022-02-28 00:00:00\n", - "Buying CLX on 2022-02-28 00:00:00\n", - "Buying SJM on 2022-02-28 00:00:00\n", - "Buying GIS on 2022-02-28 00:00:00\n", - "Buying KHC on 2022-02-28 00:00:00\n", - "Buying BDX on 2022-02-28 00:00:00\n", - "Buying CMS on 2022-02-28 00:00:00\n", - "Buying BMY on 2022-02-28 00:00:00\n", - "Buying GILD on 2022-02-28 00:00:00\n", - "Buying CHD on 2022-02-28 00:00:00\n", - "Buying ABBV on 2022-02-28 00:00:00\n", - "Buying SO on 2022-02-28 00:00:00\n", - "Buying ALL on 2022-02-28 00:00:00\n", - "Buying DUK on 2022-02-28 00:00:00\n", - "Selling LYV on 2022-02-28 00:00:00\n", - "Selling AMZN on 2022-02-28 00:00:00\n", - "Selling ULTA on 2022-02-28 00:00:00\n", - "Selling PHM on 2022-02-28 00:00:00\n", - "Selling MTCH on 2022-02-28 00:00:00\n", - "Selling BX on 2022-02-28 00:00:00\n", - "Selling NCLH on 2022-02-28 00:00:00\n", - "Selling NFLX on 2022-02-28 00:00:00\n", - "Selling CRM on 2022-02-28 00:00:00\n", - "Selling ADBE on 2022-02-28 00:00:00\n", - "Selling MPWR on 2022-02-28 00:00:00\n", - "Selling CRWD on 2022-02-28 00:00:00\n", - "Selling EPAM on 2022-02-28 00:00:00\n", - "Selling NOW on 2022-02-28 00:00:00\n", - "Buying NEM on 2022-03-31 00:00:00\n", - "Buying CF on 2022-03-31 00:00:00\n", - "Buying LHX on 2022-03-31 00:00:00\n", - "Buying KHC on 2022-03-31 00:00:00\n", - "Buying PSX on 2022-03-31 00:00:00\n", - "Buying SJM on 2022-03-31 00:00:00\n", - "Buying CMS on 2022-03-31 00:00:00\n", - "Buying LDOS on 2022-03-31 00:00:00\n", - "Buying SO on 2022-03-31 00:00:00\n", - "Buying CLX on 2022-03-31 00:00:00\n", - "Buying AEP on 2022-03-31 00:00:00\n", - "Buying GIS on 2022-03-31 00:00:00\n", - "Buying D on 2022-03-31 00:00:00\n", - "Buying DUK on 2022-03-31 00:00:00\n", - "Selling SWKS on 2022-03-31 00:00:00\n", - "Selling APTV on 2022-03-31 00:00:00\n", - "Selling AXON on 2022-03-31 00:00:00\n", - "Selling ADBE on 2022-03-31 00:00:00\n", - "Selling CRM on 2022-03-31 00:00:00\n", - "Selling LVS on 2022-03-31 00:00:00\n", - "Selling NFLX on 2022-03-31 00:00:00\n", - "Selling CRWD on 2022-03-31 00:00:00\n", - "Selling BX on 2022-03-31 00:00:00\n", - "Selling NCLH on 2022-03-31 00:00:00\n", - "Selling NOW on 2022-03-31 00:00:00\n", - "Selling MTCH on 2022-03-31 00:00:00\n", - "Selling MPWR on 2022-03-31 00:00:00\n", - "Selling EPAM on 2022-03-31 00:00:00\n", - "Buying NEM on 2022-04-30 00:00:00\n", - "Buying CF on 2022-04-30 00:00:00\n", - "Buying LHX on 2022-04-30 00:00:00\n", - "Buying LDOS on 2022-04-30 00:00:00\n", - "Buying KHC on 2022-04-30 00:00:00\n", - "Buying CMS on 2022-04-30 00:00:00\n", - "Buying SJM on 2022-04-30 00:00:00\n", - "Buying CLX on 2022-04-30 00:00:00\n", - "Buying CHD on 2022-04-30 00:00:00\n", - "Buying HII on 2022-04-30 00:00:00\n", - "Buying DUK on 2022-04-30 00:00:00\n", - "Buying SO on 2022-04-30 00:00:00\n", - "Buying PSX on 2022-04-30 00:00:00\n", - "Buying D on 2022-04-30 00:00:00\n", - "Selling SWKS on 2022-04-30 00:00:00\n", - "Selling APTV on 2022-04-30 00:00:00\n", - "Selling APO on 2022-04-30 00:00:00\n", - "Selling AXON on 2022-04-30 00:00:00\n", - "Selling CRM on 2022-04-30 00:00:00\n", - "Selling LVS on 2022-04-30 00:00:00\n", - "Selling CRWD on 2022-04-30 00:00:00\n", - "Selling AMZN on 2022-04-30 00:00:00\n", - "Selling BX on 2022-04-30 00:00:00\n", - "Selling NCLH on 2022-04-30 00:00:00\n", - "Selling NOW on 2022-04-30 00:00:00\n", - "Selling MTCH on 2022-04-30 00:00:00\n", - "Selling MPWR on 2022-04-30 00:00:00\n", - "Selling EPAM on 2022-04-30 00:00:00\n", - "Buying DUK on 2022-05-31 00:00:00\n", - "Buying CMS on 2022-05-31 00:00:00\n", - "Buying LHX on 2022-05-31 00:00:00\n", - "Buying SO on 2022-05-31 00:00:00\n", - "Buying PNW on 2022-05-31 00:00:00\n", - "Buying D on 2022-05-31 00:00:00\n", - "Buying NEM on 2022-05-31 00:00:00\n", - "Buying ABBV on 2022-05-31 00:00:00\n", - "Buying BMY on 2022-05-31 00:00:00\n", - "Buying SJM on 2022-05-31 00:00:00\n", - "Buying CHD on 2022-05-31 00:00:00\n", - "Buying AEP on 2022-05-31 00:00:00\n", - "Buying SRE on 2022-05-31 00:00:00\n", - "Buying NRG on 2022-05-31 00:00:00\n", - "Selling CRM on 2022-05-31 00:00:00\n", - "Selling ULTA on 2022-05-31 00:00:00\n", - "Selling APTV on 2022-05-31 00:00:00\n", - "Selling EPAM on 2022-05-31 00:00:00\n", - "Selling NFLX on 2022-05-31 00:00:00\n", - "Selling AXON on 2022-05-31 00:00:00\n", - "Selling LVS on 2022-05-31 00:00:00\n", - "Selling BX on 2022-05-31 00:00:00\n", - "Selling AMZN on 2022-05-31 00:00:00\n", - "Selling NOW on 2022-05-31 00:00:00\n", - "Selling MTCH on 2022-05-31 00:00:00\n", - "Selling CRWD on 2022-05-31 00:00:00\n", - "Selling NCLH on 2022-05-31 00:00:00\n", - "Selling MPWR on 2022-05-31 00:00:00\n", - "Buying DUK on 2022-06-30 00:00:00\n", - "Buying CHD on 2022-06-30 00:00:00\n", - "Buying ABBV on 2022-06-30 00:00:00\n", - "Buying PNW on 2022-06-30 00:00:00\n", - "Buying D on 2022-06-30 00:00:00\n", - "Buying CMS on 2022-06-30 00:00:00\n", - "Buying GIS on 2022-06-30 00:00:00\n", - "Buying BMY on 2022-06-30 00:00:00\n", - "Buying NEM on 2022-06-30 00:00:00\n", - "Buying SO on 2022-06-30 00:00:00\n", - "Buying LHX on 2022-06-30 00:00:00\n", - "Buying SJM on 2022-06-30 00:00:00\n", - "Buying GILD on 2022-06-30 00:00:00\n", - "Buying AEP on 2022-06-30 00:00:00\n", - "Selling PTC on 2022-06-30 00:00:00\n", - "Selling APO on 2022-06-30 00:00:00\n", - "Selling ULTA on 2022-06-30 00:00:00\n", - "Selling CRM on 2022-06-30 00:00:00\n", - "Selling NFLX on 2022-06-30 00:00:00\n", - "Selling APTV on 2022-06-30 00:00:00\n", - "Selling AXON on 2022-06-30 00:00:00\n", - "Selling BX on 2022-06-30 00:00:00\n", - "Selling MTCH on 2022-06-30 00:00:00\n", - "Selling NOW on 2022-06-30 00:00:00\n", - "Selling AMZN on 2022-06-30 00:00:00\n", - "Selling CRWD on 2022-06-30 00:00:00\n", - "Selling MPWR on 2022-06-30 00:00:00\n", - "Selling NCLH on 2022-06-30 00:00:00\n", - "Buying ABBV on 2022-07-31 00:00:00\n", - "Buying DUK on 2022-07-31 00:00:00\n", - "Buying CHD on 2022-07-31 00:00:00\n", - "Buying KHC on 2022-07-31 00:00:00\n", - "Buying NEM on 2022-07-31 00:00:00\n", - "Buying PNW on 2022-07-31 00:00:00\n", - "Buying GIS on 2022-07-31 00:00:00\n", - "Buying BMY on 2022-07-31 00:00:00\n", - "Buying D on 2022-07-31 00:00:00\n", - "Buying GILD on 2022-07-31 00:00:00\n", - "Buying CMS on 2022-07-31 00:00:00\n", - "Buying SO on 2022-07-31 00:00:00\n", - "Buying SJM on 2022-07-31 00:00:00\n", - "Buying AEP on 2022-07-31 00:00:00\n", - "Selling CRL on 2022-07-31 00:00:00\n", - "Selling FCX on 2022-07-31 00:00:00\n", - "Selling CRM on 2022-07-31 00:00:00\n", - "Selling GM on 2022-07-31 00:00:00\n", - "Selling NOW on 2022-07-31 00:00:00\n", - "Selling AXON on 2022-07-31 00:00:00\n", - "Selling AMZN on 2022-07-31 00:00:00\n", - "Selling BX on 2022-07-31 00:00:00\n", - "Selling NFLX on 2022-07-31 00:00:00\n", - "Selling MTCH on 2022-07-31 00:00:00\n", - "Selling APTV on 2022-07-31 00:00:00\n", - "Selling MPWR on 2022-07-31 00:00:00\n", - "Selling CRWD on 2022-07-31 00:00:00\n", - "Selling NCLH on 2022-07-31 00:00:00\n", - "Buying KHC on 2022-08-31 00:00:00\n", - "Buying CHD on 2022-08-31 00:00:00\n", - "Buying GIS on 2022-08-31 00:00:00\n", - "Buying NEM on 2022-08-31 00:00:00\n", - "Buying SJM on 2022-08-31 00:00:00\n", - "Buying BMY on 2022-08-31 00:00:00\n", - "Buying CLX on 2022-08-31 00:00:00\n", - "Buying DUK on 2022-08-31 00:00:00\n", - "Buying ABBV on 2022-08-31 00:00:00\n", - "Buying D on 2022-08-31 00:00:00\n", - "Buying PNW on 2022-08-31 00:00:00\n", - "Buying SO on 2022-08-31 00:00:00\n", - "Buying DG on 2022-08-31 00:00:00\n", - "Buying CMS on 2022-08-31 00:00:00\n", - "Selling APO on 2022-08-31 00:00:00\n", - "Selling SWKS on 2022-08-31 00:00:00\n", - "Selling GM on 2022-08-31 00:00:00\n", - "Selling CRM on 2022-08-31 00:00:00\n", - "Selling MTCH on 2022-08-31 00:00:00\n", - "Selling NOW on 2022-08-31 00:00:00\n", - "Selling AXON on 2022-08-31 00:00:00\n", - "Selling AMZN on 2022-08-31 00:00:00\n", - "Selling CRWD on 2022-08-31 00:00:00\n", - "Selling NFLX on 2022-08-31 00:00:00\n", - "Selling MPWR on 2022-08-31 00:00:00\n", - "Selling BX on 2022-08-31 00:00:00\n", - "Selling APTV on 2022-08-31 00:00:00\n", - "Selling NCLH on 2022-08-31 00:00:00\n", - "Buying KHC on 2022-09-30 00:00:00\n", - "Buying GIS on 2022-09-30 00:00:00\n", - "Buying SJM on 2022-09-30 00:00:00\n", - "Buying BMY on 2022-09-30 00:00:00\n", - "Buying CHD on 2022-09-30 00:00:00\n", - "Buying ERIE on 2022-09-30 00:00:00\n", - "Buying ABBV on 2022-09-30 00:00:00\n", - "Buying CLX on 2022-09-30 00:00:00\n", - "Buying CBOE on 2022-09-30 00:00:00\n", - "Buying NEM on 2022-09-30 00:00:00\n", - "Buying T on 2022-09-30 00:00:00\n", - "Buying O on 2022-09-30 00:00:00\n", - "Buying DG on 2022-09-30 00:00:00\n", - "Buying WELL on 2022-09-30 00:00:00\n", - "Selling BLK on 2022-09-30 00:00:00\n", - "Selling MTCH on 2022-09-30 00:00:00\n", - "Selling GM on 2022-09-30 00:00:00\n", - "Selling ADBE on 2022-09-30 00:00:00\n", - "Selling AXON on 2022-09-30 00:00:00\n", - "Selling NOW on 2022-09-30 00:00:00\n", - "Selling CRWD on 2022-09-30 00:00:00\n", - "Selling MPWR on 2022-09-30 00:00:00\n", - "Selling BX on 2022-09-30 00:00:00\n", - "Selling AMZN on 2022-09-30 00:00:00\n", - "Selling KMX on 2022-09-30 00:00:00\n", - "Selling APTV on 2022-09-30 00:00:00\n", - "Selling NFLX on 2022-09-30 00:00:00\n", - "Selling NCLH on 2022-09-30 00:00:00\n", - "Buying GIS on 2022-10-31 00:00:00\n", - "Buying BMY on 2022-10-31 00:00:00\n", - "Buying SJM on 2022-10-31 00:00:00\n", - "Buying KHC on 2022-10-31 00:00:00\n", - "Buying ERIE on 2022-10-31 00:00:00\n", - "Buying ABBV on 2022-10-31 00:00:00\n", - "Buying EW on 2022-10-31 00:00:00\n", - "Buying CHD on 2022-10-31 00:00:00\n", - "Buying DG on 2022-10-31 00:00:00\n", - "Buying INCY on 2022-10-31 00:00:00\n", - "Buying CBOE on 2022-10-31 00:00:00\n", - "Buying HII on 2022-10-31 00:00:00\n", - "Buying ORLY on 2022-10-31 00:00:00\n", - "Buying TAP on 2022-10-31 00:00:00\n", - "Selling PHM on 2022-10-31 00:00:00\n", - "Selling CE on 2022-10-31 00:00:00\n", - "Selling FCX on 2022-10-31 00:00:00\n", - "Selling APO on 2022-10-31 00:00:00\n", - "Selling NFLX on 2022-10-31 00:00:00\n", - "Selling SYF on 2022-10-31 00:00:00\n", - "Selling BLK on 2022-10-31 00:00:00\n", - "Selling MTCH on 2022-10-31 00:00:00\n", - "Selling SWKS on 2022-10-31 00:00:00\n", - "Selling KMX on 2022-10-31 00:00:00\n", - "Selling BX on 2022-10-31 00:00:00\n", - "Selling MPWR on 2022-10-31 00:00:00\n", - "Selling APTV on 2022-10-31 00:00:00\n", - "Selling NCLH on 2022-10-31 00:00:00\n", - "Buying GIS on 2022-11-30 00:00:00\n", - "Buying SJM on 2022-11-30 00:00:00\n", - "Buying BMY on 2022-11-30 00:00:00\n", - "Buying KHC on 2022-11-30 00:00:00\n", - "Buying ERIE on 2022-11-30 00:00:00\n", - "Buying CBOE on 2022-11-30 00:00:00\n", - "Buying CAH on 2022-11-30 00:00:00\n", - "Buying INCY on 2022-11-30 00:00:00\n", - "Buying GEN on 2022-11-30 00:00:00\n", - "Buying ABBV on 2022-11-30 00:00:00\n", - "Buying COR on 2022-11-30 00:00:00\n", - "Buying LDOS on 2022-11-30 00:00:00\n", - "Buying ORLY on 2022-11-30 00:00:00\n", - "Buying LHX on 2022-11-30 00:00:00\n", - "Selling SYF on 2022-11-30 00:00:00\n", - "Selling KMX on 2022-11-30 00:00:00\n", - "Selling AMZN on 2022-11-30 00:00:00\n", - "Selling PARA on 2022-11-30 00:00:00\n", - "Selling FCX on 2022-11-30 00:00:00\n", - "Selling BLK on 2022-11-30 00:00:00\n", - "Selling SWKS on 2022-11-30 00:00:00\n", - "Selling CE on 2022-11-30 00:00:00\n", - "Selling NCLH on 2022-11-30 00:00:00\n", - "Selling EPAM on 2022-11-30 00:00:00\n", - "Selling MTCH on 2022-11-30 00:00:00\n", - "Selling APTV on 2022-11-30 00:00:00\n", - "Selling BX on 2022-11-30 00:00:00\n", - "Selling MPWR on 2022-11-30 00:00:00\n", - "Buying SJM on 2022-12-31 00:00:00\n", - "Buying GIS on 2022-12-31 00:00:00\n", - "Buying KHC on 2022-12-31 00:00:00\n", - "Buying CAH on 2022-12-31 00:00:00\n", - "Buying BMY on 2022-12-31 00:00:00\n", - "Buying INCY on 2022-12-31 00:00:00\n", - "Buying COR on 2022-12-31 00:00:00\n", - "Buying ABBV on 2022-12-31 00:00:00\n", - "Buying CBOE on 2022-12-31 00:00:00\n", - "Buying LDOS on 2022-12-31 00:00:00\n", - "Buying LHX on 2022-12-31 00:00:00\n", - "Buying GEN on 2022-12-31 00:00:00\n", - "Buying ORLY on 2022-12-31 00:00:00\n", - "Buying VRTX on 2022-12-31 00:00:00\n", - "Selling BLK on 2022-12-31 00:00:00\n", - "Selling NOW on 2022-12-31 00:00:00\n", - "Selling NFLX on 2022-12-31 00:00:00\n", - "Selling FCX on 2022-12-31 00:00:00\n", - "Selling MSFT on 2022-12-31 00:00:00\n", - "Selling CE on 2022-12-31 00:00:00\n", - "Selling APTV on 2022-12-31 00:00:00\n", - "Selling AMZN on 2022-12-31 00:00:00\n", - "Selling PARA on 2022-12-31 00:00:00\n", - "Selling SWKS on 2022-12-31 00:00:00\n", - "Selling BX on 2022-12-31 00:00:00\n", - "Selling MTCH on 2022-12-31 00:00:00\n", - "Selling EPAM on 2022-12-31 00:00:00\n", - "Selling MPWR on 2022-12-31 00:00:00\n", - "Buying SJM on 2023-01-31 00:00:00\n", - "Buying CAH on 2023-01-31 00:00:00\n", - "Buying COR on 2023-01-31 00:00:00\n", - "Buying CBOE on 2023-01-31 00:00:00\n", - "Buying INCY on 2023-01-31 00:00:00\n", - "Buying BMY on 2023-01-31 00:00:00\n", - "Buying VRTX on 2023-01-31 00:00:00\n", - "Buying GIS on 2023-01-31 00:00:00\n", - "Buying ORLY on 2023-01-31 00:00:00\n", - "Buying ACGL on 2023-01-31 00:00:00\n", - "Buying LDOS on 2023-01-31 00:00:00\n", - "Buying KHC on 2023-01-31 00:00:00\n", - "Buying GILD on 2023-01-31 00:00:00\n", - "Buying LHX on 2023-01-31 00:00:00\n", - "Selling ADBE on 2023-01-31 00:00:00\n", - "Selling CRM on 2023-01-31 00:00:00\n", - "Selling NFLX on 2023-01-31 00:00:00\n", - "Selling APTV on 2023-01-31 00:00:00\n", - "Selling CE on 2023-01-31 00:00:00\n", - "Selling KMX on 2023-01-31 00:00:00\n", - "Selling NOW on 2023-01-31 00:00:00\n", - "Selling SWKS on 2023-01-31 00:00:00\n", - "Selling PARA on 2023-01-31 00:00:00\n", - "Selling AMZN on 2023-01-31 00:00:00\n", - "Selling EPAM on 2023-01-31 00:00:00\n", - "Selling MTCH on 2023-01-31 00:00:00\n", - "Selling BX on 2023-01-31 00:00:00\n", - "Selling MPWR on 2023-01-31 00:00:00\n", - "Buying SJM on 2023-02-28 00:00:00\n", - "Buying INCY on 2023-02-28 00:00:00\n", - "Buying GIS on 2023-02-28 00:00:00\n", - "Buying CBOE on 2023-02-28 00:00:00\n", - "Buying COR on 2023-02-28 00:00:00\n", - "Buying ACGL on 2023-02-28 00:00:00\n", - "Buying CF on 2023-02-28 00:00:00\n", - "Buying ABBV on 2023-02-28 00:00:00\n", - "Buying CLX on 2023-02-28 00:00:00\n", - "Buying CAH on 2023-02-28 00:00:00\n", - "Buying ORLY on 2023-02-28 00:00:00\n", - "Buying GILD on 2023-02-28 00:00:00\n", - "Buying DG on 2023-02-28 00:00:00\n", - "Buying CVS on 2023-02-28 00:00:00\n", - "Selling MSFT on 2023-02-28 00:00:00\n", - "Selling NFLX on 2023-02-28 00:00:00\n", - "Selling IDXX on 2023-02-28 00:00:00\n", - "Selling NOW on 2023-02-28 00:00:00\n", - "Selling SWKS on 2023-02-28 00:00:00\n", - "Selling MTCH on 2023-02-28 00:00:00\n", - "Selling NCLH on 2023-02-28 00:00:00\n", - "Selling AMZN on 2023-02-28 00:00:00\n", - "Selling CRWD on 2023-02-28 00:00:00\n", - "Selling KMX on 2023-02-28 00:00:00\n", - "Selling EPAM on 2023-02-28 00:00:00\n", - "Selling BX on 2023-02-28 00:00:00\n", - "Selling PARA on 2023-02-28 00:00:00\n", - "Selling MPWR on 2023-02-28 00:00:00\n", - "Buying GIS on 2023-03-31 00:00:00\n", - "Buying CHD on 2023-03-31 00:00:00\n", - "Buying CLX on 2023-03-31 00:00:00\n", - "Buying ULTA on 2023-03-31 00:00:00\n", - "Buying SJM on 2023-03-31 00:00:00\n", - "Buying DG on 2023-03-31 00:00:00\n", - "Buying ABBV on 2023-03-31 00:00:00\n", - "Buying INCY on 2023-03-31 00:00:00\n", - "Buying COR on 2023-03-31 00:00:00\n", - "Buying BMY on 2023-03-31 00:00:00\n", - "Buying ORLY on 2023-03-31 00:00:00\n", - "Buying NEM on 2023-03-31 00:00:00\n", - "Buying CBOE on 2023-03-31 00:00:00\n", - "Buying PSX on 2023-03-31 00:00:00\n", - "Selling NOW on 2023-03-31 00:00:00\n", - "Selling IDXX on 2023-03-31 00:00:00\n", - "Selling ADBE on 2023-03-31 00:00:00\n", - "Selling SYF on 2023-03-31 00:00:00\n", - "Selling EPAM on 2023-03-31 00:00:00\n", - "Selling USB on 2023-03-31 00:00:00\n", - "Selling AMZN on 2023-03-31 00:00:00\n", - "Selling PARA on 2023-03-31 00:00:00\n", - "Selling APO on 2023-03-31 00:00:00\n", - "Selling KMX on 2023-03-31 00:00:00\n", - "Selling CRWD on 2023-03-31 00:00:00\n", - "Selling MPWR on 2023-03-31 00:00:00\n", - "Selling BX on 2023-03-31 00:00:00\n", - "Selling NCLH on 2023-03-31 00:00:00\n", - "Buying GIS on 2023-04-30 00:00:00\n", - "Buying ABBV on 2023-04-30 00:00:00\n", - "Buying CLX on 2023-04-30 00:00:00\n", - "Buying CHD on 2023-04-30 00:00:00\n", - "Buying DG on 2023-04-30 00:00:00\n", - "Buying NEM on 2023-04-30 00:00:00\n", - "Buying SJM on 2023-04-30 00:00:00\n", - "Buying ULTA on 2023-04-30 00:00:00\n", - "Buying KHC on 2023-04-30 00:00:00\n", - "Buying TAP on 2023-04-30 00:00:00\n", - "Buying GILD on 2023-04-30 00:00:00\n", - "Buying DGX on 2023-04-30 00:00:00\n", - "Buying BMY on 2023-04-30 00:00:00\n", - "Buying INCY on 2023-04-30 00:00:00\n", - "Selling NOW on 2023-04-30 00:00:00\n", - "Selling KMX on 2023-04-30 00:00:00\n", - "Selling ADBE on 2023-04-30 00:00:00\n", - "Selling CE on 2023-04-30 00:00:00\n", - "Selling IDXX on 2023-04-30 00:00:00\n", - "Selling AMZN on 2023-04-30 00:00:00\n", - "Selling CRWD on 2023-04-30 00:00:00\n", - "Selling MTCH on 2023-04-30 00:00:00\n", - "Selling APO on 2023-04-30 00:00:00\n", - "Selling BX on 2023-04-30 00:00:00\n", - "Selling HAS on 2023-04-30 00:00:00\n", - "Selling PARA on 2023-04-30 00:00:00\n", - "Selling USB on 2023-04-30 00:00:00\n", - "Selling NCLH on 2023-04-30 00:00:00\n", - "Buying NEM on 2023-05-31 00:00:00\n", - "Buying ULTA on 2023-05-31 00:00:00\n", - "Buying ABBV on 2023-05-31 00:00:00\n", - "Buying GIS on 2023-05-31 00:00:00\n", - "Buying CLX on 2023-05-31 00:00:00\n", - "Buying TAP on 2023-05-31 00:00:00\n", - "Buying SJM on 2023-05-31 00:00:00\n", - "Buying KHC on 2023-05-31 00:00:00\n", - "Buying AEP on 2023-05-31 00:00:00\n", - "Buying CHD on 2023-05-31 00:00:00\n", - "Buying DG on 2023-05-31 00:00:00\n", - "Buying BMY on 2023-05-31 00:00:00\n", - "Buying SO on 2023-05-31 00:00:00\n", - "Buying CMS on 2023-05-31 00:00:00\n", - "Selling KMX on 2023-05-31 00:00:00\n", - "Selling LYV on 2023-05-31 00:00:00\n", - "Selling RJF on 2023-05-31 00:00:00\n", - "Selling GM on 2023-05-31 00:00:00\n", - "Selling STLD on 2023-05-31 00:00:00\n", - "Selling FCX on 2023-05-31 00:00:00\n", - "Selling NCLH on 2023-05-31 00:00:00\n", - "Selling CE on 2023-05-31 00:00:00\n", - "Selling BX on 2023-05-31 00:00:00\n", - "Selling FIS on 2023-05-31 00:00:00\n", - "Selling HBAN on 2023-05-31 00:00:00\n", - "Selling APO on 2023-05-31 00:00:00\n", - "Selling PARA on 2023-05-31 00:00:00\n", - "Selling USB on 2023-05-31 00:00:00\n", - "Buying ABBV on 2023-06-30 00:00:00\n", - "Buying TAP on 2023-06-30 00:00:00\n", - "Buying GIS on 2023-06-30 00:00:00\n", - "Buying SJM on 2023-06-30 00:00:00\n", - "Buying DGX on 2023-06-30 00:00:00\n", - "Buying CLX on 2023-06-30 00:00:00\n", - "Buying NI on 2023-06-30 00:00:00\n", - "Buying SO on 2023-06-30 00:00:00\n", - "Buying AEP on 2023-06-30 00:00:00\n", - "Buying KHC on 2023-06-30 00:00:00\n", - "Buying BMY on 2023-06-30 00:00:00\n", - "Buying CMS on 2023-06-30 00:00:00\n", - "Buying COR on 2023-06-30 00:00:00\n", - "Buying DUK on 2023-06-30 00:00:00\n", - "Selling MPWR on 2023-06-30 00:00:00\n", - "Selling NOW on 2023-06-30 00:00:00\n", - "Selling GM on 2023-06-30 00:00:00\n", - "Selling BX on 2023-06-30 00:00:00\n", - "Selling APO on 2023-06-30 00:00:00\n", - "Selling MTCH on 2023-06-30 00:00:00\n", - "Selling CE on 2023-06-30 00:00:00\n", - "Selling HBAN on 2023-06-30 00:00:00\n", - "Selling FCX on 2023-06-30 00:00:00\n", - "Selling LYV on 2023-06-30 00:00:00\n", - "Selling USB on 2023-06-30 00:00:00\n", - "Selling ADBE on 2023-06-30 00:00:00\n", - "Selling NCLH on 2023-06-30 00:00:00\n", - "Selling PARA on 2023-06-30 00:00:00\n", - "Buying ABBV on 2023-07-31 00:00:00\n", - "Buying SO on 2023-07-31 00:00:00\n", - "Buying GIS on 2023-07-31 00:00:00\n", - "Buying D on 2023-07-31 00:00:00\n", - "Buying SJM on 2023-07-31 00:00:00\n", - "Buying NI on 2023-07-31 00:00:00\n", - "Buying ALL on 2023-07-31 00:00:00\n", - "Buying COR on 2023-07-31 00:00:00\n", - "Buying DG on 2023-07-31 00:00:00\n", - "Buying CMS on 2023-07-31 00:00:00\n", - "Buying AEP on 2023-07-31 00:00:00\n", - "Buying PNW on 2023-07-31 00:00:00\n", - "Buying VST on 2023-07-31 00:00:00\n", - "Buying DUK on 2023-07-31 00:00:00\n", - "Selling APTV on 2023-07-31 00:00:00\n", - "Selling NOW on 2023-07-31 00:00:00\n", - "Selling APO on 2023-07-31 00:00:00\n", - "Selling DFS on 2023-07-31 00:00:00\n", - "Selling BWA on 2023-07-31 00:00:00\n", - "Selling HBAN on 2023-07-31 00:00:00\n", - "Selling SWKS on 2023-07-31 00:00:00\n", - "Selling LYV on 2023-07-31 00:00:00\n", - "Selling BX on 2023-07-31 00:00:00\n", - "Selling STLD on 2023-07-31 00:00:00\n", - "Selling FCX on 2023-07-31 00:00:00\n", - "Selling ADBE on 2023-07-31 00:00:00\n", - "Selling MPWR on 2023-07-31 00:00:00\n", - "Selling PARA on 2023-07-31 00:00:00\n", - "Buying ERIE on 2023-08-31 00:00:00\n", - "Buying ABBV on 2023-08-31 00:00:00\n", - "Buying GIS on 2023-08-31 00:00:00\n", - "Buying CBOE on 2023-08-31 00:00:00\n", - "Buying INCY on 2023-08-31 00:00:00\n", - "Buying PNW on 2023-08-31 00:00:00\n", - "Buying SO on 2023-08-31 00:00:00\n", - "Buying CLX on 2023-08-31 00:00:00\n", - "Buying DUK on 2023-08-31 00:00:00\n", - "Buying PSX on 2023-08-31 00:00:00\n", - "Buying SJM on 2023-08-31 00:00:00\n", - "Buying L on 2023-08-31 00:00:00\n", - "Buying AON on 2023-08-31 00:00:00\n", - "Buying CMS on 2023-08-31 00:00:00\n", - "Selling JBL on 2023-08-31 00:00:00\n", - "Selling AMZN on 2023-08-31 00:00:00\n", - "Selling IDXX on 2023-08-31 00:00:00\n", - "Selling FCX on 2023-08-31 00:00:00\n", - "Selling SWKS on 2023-08-31 00:00:00\n", - "Selling EPAM on 2023-08-31 00:00:00\n", - "Selling MSFT on 2023-08-31 00:00:00\n", - "Selling BX on 2023-08-31 00:00:00\n", - "Selling ADBE on 2023-08-31 00:00:00\n", - "Selling NOW on 2023-08-31 00:00:00\n", - "Selling NCLH on 2023-08-31 00:00:00\n", - "Selling NFLX on 2023-08-31 00:00:00\n", - "Selling CRWD on 2023-08-31 00:00:00\n", - "Selling MPWR on 2023-08-31 00:00:00\n", - "Buying ERIE on 2023-09-30 00:00:00\n", - "Buying SJM on 2023-09-30 00:00:00\n", - "Buying COR on 2023-09-30 00:00:00\n", - "Buying CBOE on 2023-09-30 00:00:00\n", - "Buying KHC on 2023-09-30 00:00:00\n", - "Buying AON on 2023-09-30 00:00:00\n", - "Buying GIS on 2023-09-30 00:00:00\n", - "Buying PNW on 2023-09-30 00:00:00\n", - "Buying ABBV on 2023-09-30 00:00:00\n", - "Buying LH on 2023-09-30 00:00:00\n", - "Buying CAH on 2023-09-30 00:00:00\n", - "Buying VST on 2023-09-30 00:00:00\n", - "Buying INCY on 2023-09-30 00:00:00\n", - "Buying DUK on 2023-09-30 00:00:00\n", - "Selling NUE on 2023-09-30 00:00:00\n", - "Selling BX on 2023-09-30 00:00:00\n", - "Selling PHM on 2023-09-30 00:00:00\n", - "Selling FCX on 2023-09-30 00:00:00\n", - "Selling IDXX on 2023-09-30 00:00:00\n", - "Selling EPAM on 2023-09-30 00:00:00\n", - "Selling SWKS on 2023-09-30 00:00:00\n", - "Selling AMZN on 2023-09-30 00:00:00\n", - "Selling JBL on 2023-09-30 00:00:00\n", - "Selling NOW on 2023-09-30 00:00:00\n", - "Selling CRWD on 2023-09-30 00:00:00\n", - "Selling NFLX on 2023-09-30 00:00:00\n", - "Selling ADBE on 2023-09-30 00:00:00\n", - "Selling MPWR on 2023-09-30 00:00:00\n", - "Buying SJM on 2023-10-31 00:00:00\n", - "Buying COR on 2023-10-31 00:00:00\n", - "Buying GIS on 2023-10-31 00:00:00\n", - "Buying LH on 2023-10-31 00:00:00\n", - "Buying CHD on 2023-10-31 00:00:00\n", - "Buying DGX on 2023-10-31 00:00:00\n", - "Buying KHC on 2023-10-31 00:00:00\n", - "Buying CBOE on 2023-10-31 00:00:00\n", - "Buying RVTY on 2023-10-31 00:00:00\n", - "Buying INCY on 2023-10-31 00:00:00\n", - "Buying CMS on 2023-10-31 00:00:00\n", - "Buying DG on 2023-10-31 00:00:00\n", - "Buying PSX on 2023-10-31 00:00:00\n", - "Buying WTW on 2023-10-31 00:00:00\n", - "Selling GE on 2023-10-31 00:00:00\n", - "Selling NCLH on 2023-10-31 00:00:00\n", - "Selling FCX on 2023-10-31 00:00:00\n", - "Selling BX on 2023-10-31 00:00:00\n", - "Selling APTV on 2023-10-31 00:00:00\n", - "Selling IDXX on 2023-10-31 00:00:00\n", - "Selling NOW on 2023-10-31 00:00:00\n", - "Selling MKTX on 2023-10-31 00:00:00\n", - "Selling ADBE on 2023-10-31 00:00:00\n", - "Selling JBL on 2023-10-31 00:00:00\n", - "Selling EPAM on 2023-10-31 00:00:00\n", - "Selling CRWD on 2023-10-31 00:00:00\n", - "Selling AMZN on 2023-10-31 00:00:00\n", - "Selling MPWR on 2023-10-31 00:00:00\n", - "Buying COR on 2023-11-30 00:00:00\n", - "Buying CHD on 2023-11-30 00:00:00\n", - "Buying SJM on 2023-11-30 00:00:00\n", - "Buying WTW on 2023-11-30 00:00:00\n", - "Buying GIS on 2023-11-30 00:00:00\n", - "Buying CBOE on 2023-11-30 00:00:00\n", - "Buying DGX on 2023-11-30 00:00:00\n", - "Buying LH on 2023-11-30 00:00:00\n", - "Buying ORLY on 2023-11-30 00:00:00\n", - "Buying CAH on 2023-11-30 00:00:00\n", - "Buying BWA on 2023-11-30 00:00:00\n", - "Buying DG on 2023-11-30 00:00:00\n", - "Buying ABBV on 2023-11-30 00:00:00\n", - "Buying KHC on 2023-11-30 00:00:00\n", - "Selling MKTX on 2023-11-30 00:00:00\n", - "Selling AXON on 2023-11-30 00:00:00\n", - "Selling FCX on 2023-11-30 00:00:00\n", - "Selling ADBE on 2023-11-30 00:00:00\n", - "Selling NCLH on 2023-11-30 00:00:00\n", - "Selling CRWD on 2023-11-30 00:00:00\n", - "Selling AMZN on 2023-11-30 00:00:00\n", - "Selling USB on 2023-11-30 00:00:00\n", - "Selling PHM on 2023-11-30 00:00:00\n", - "Selling IDXX on 2023-11-30 00:00:00\n", - "Selling BX on 2023-11-30 00:00:00\n", - "Selling PARA on 2023-11-30 00:00:00\n", - "Selling EPAM on 2023-11-30 00:00:00\n", - "Selling MPWR on 2023-11-30 00:00:00\n", - "Buying WTW on 2023-12-31 00:00:00\n", - "Buying CHD on 2023-12-31 00:00:00\n", - "Buying ORLY on 2023-12-31 00:00:00\n", - "Buying CBOE on 2023-12-31 00:00:00\n", - "Buying COR on 2023-12-31 00:00:00\n", - "Buying GIS on 2023-12-31 00:00:00\n", - "Buying DG on 2023-12-31 00:00:00\n", - "Buying DGX on 2023-12-31 00:00:00\n", - "Buying ACGL on 2023-12-31 00:00:00\n", - "Buying BWA on 2023-12-31 00:00:00\n", - "Buying LH on 2023-12-31 00:00:00\n", - "Buying SJM on 2023-12-31 00:00:00\n", - "Buying CAH on 2023-12-31 00:00:00\n", - "Buying ABBV on 2023-12-31 00:00:00\n", - "Selling EXR on 2023-12-31 00:00:00\n", - "Selling CRL on 2023-12-31 00:00:00\n", - "Selling IDXX on 2023-12-31 00:00:00\n", - "Selling HBAN on 2023-12-31 00:00:00\n", - "Selling HAS on 2023-12-31 00:00:00\n", - "Selling INVH on 2023-12-31 00:00:00\n", - "Selling NCLH on 2023-12-31 00:00:00\n", - "Selling FCX on 2023-12-31 00:00:00\n", - "Selling EPAM on 2023-12-31 00:00:00\n", - "Selling BX on 2023-12-31 00:00:00\n", - "Selling USB on 2023-12-31 00:00:00\n", - "Selling KMX on 2023-12-31 00:00:00\n", - "Selling PARA on 2023-12-31 00:00:00\n", - "Selling MPWR on 2023-12-31 00:00:00\n", - "Buying COR on 2024-01-31 00:00:00\n", - "Buying ACGL on 2024-01-31 00:00:00\n", - "Buying CHD on 2024-01-31 00:00:00\n", - "Buying MMC on 2024-01-31 00:00:00\n", - "Buying CVS on 2024-01-31 00:00:00\n", - "Buying CBOE on 2024-01-31 00:00:00\n", - "Buying CAH on 2024-01-31 00:00:00\n", - "Buying ALL on 2024-01-31 00:00:00\n", - "Buying ERIE on 2024-01-31 00:00:00\n", - "Buying AJG on 2024-01-31 00:00:00\n", - "Buying T on 2024-01-31 00:00:00\n", - "Buying ABBV on 2024-01-31 00:00:00\n", - "Buying KHC on 2024-01-31 00:00:00\n", - "Buying GIS on 2024-01-31 00:00:00\n", - "Selling HAS on 2024-01-31 00:00:00\n", - "Selling MTD on 2024-01-31 00:00:00\n", - "Selling FCX on 2024-01-31 00:00:00\n", - "Selling RVTY on 2024-01-31 00:00:00\n", - "Selling MKTX on 2024-01-31 00:00:00\n", - "Selling SWKS on 2024-01-31 00:00:00\n", - "Selling BX on 2024-01-31 00:00:00\n", - "Selling USB on 2024-01-31 00:00:00\n", - "Selling CRL on 2024-01-31 00:00:00\n", - "Selling APTV on 2024-01-31 00:00:00\n", - "Selling ROK on 2024-01-31 00:00:00\n", - "Selling NCLH on 2024-01-31 00:00:00\n", - "Selling KMX on 2024-01-31 00:00:00\n", - "Selling MPWR on 2024-01-31 00:00:00\n", - "Buying COR on 2024-02-29 00:00:00\n", - "Buying CAH on 2024-02-29 00:00:00\n", - "Buying CVS on 2024-02-29 00:00:00\n", - "Buying KHC on 2024-02-29 00:00:00\n", - "Buying GILD on 2024-02-29 00:00:00\n", - "Buying GIS on 2024-02-29 00:00:00\n", - "Buying T on 2024-02-29 00:00:00\n", - "Buying LDOS on 2024-02-29 00:00:00\n", - "Buying DGX on 2024-02-29 00:00:00\n", - "Buying ACGL on 2024-02-29 00:00:00\n", - "Buying ERIE on 2024-02-29 00:00:00\n", - "Buying SJM on 2024-02-29 00:00:00\n", - "Buying ALL on 2024-02-29 00:00:00\n", - "Buying DFS on 2024-02-29 00:00:00\n", - "Selling HAS on 2024-02-29 00:00:00\n", - "Selling CRM on 2024-02-29 00:00:00\n", - "Selling USB on 2024-02-29 00:00:00\n", - "Selling KEYS on 2024-02-29 00:00:00\n", - "Selling EPAM on 2024-02-29 00:00:00\n", - "Selling BX on 2024-02-29 00:00:00\n", - "Selling AMZN on 2024-02-29 00:00:00\n", - "Selling APTV on 2024-02-29 00:00:00\n", - "Selling CRWD on 2024-02-29 00:00:00\n", - "Selling CRL on 2024-02-29 00:00:00\n", - "Selling MKTX on 2024-02-29 00:00:00\n", - "Selling MPWR on 2024-02-29 00:00:00\n", - "Selling KMX on 2024-02-29 00:00:00\n", - "Selling ROK on 2024-02-29 00:00:00\n", - "Buying COR on 2024-03-31 00:00:00\n", - "Buying CVS on 2024-03-31 00:00:00\n", - "Buying GIS on 2024-03-31 00:00:00\n", - "Buying CAH on 2024-03-31 00:00:00\n", - "Buying KHC on 2024-03-31 00:00:00\n", - "Buying ALL on 2024-03-31 00:00:00\n", - "Buying T on 2024-03-31 00:00:00\n", - "Buying CBOE on 2024-03-31 00:00:00\n", - "Buying GILD on 2024-03-31 00:00:00\n", - "Buying LDOS on 2024-03-31 00:00:00\n", - "Buying INCY on 2024-03-31 00:00:00\n", - "Buying DGX on 2024-03-31 00:00:00\n", - "Buying ACGL on 2024-03-31 00:00:00\n", - "Buying SJM on 2024-03-31 00:00:00\n", - "Selling KEYS on 2024-03-31 00:00:00\n", - "Selling CRM on 2024-03-31 00:00:00\n", - "Selling SWKS on 2024-03-31 00:00:00\n", - "Selling KMX on 2024-03-31 00:00:00\n", - "Selling EPAM on 2024-03-31 00:00:00\n", - "Selling NOW on 2024-03-31 00:00:00\n", - "Selling MKTX on 2024-03-31 00:00:00\n", - "Selling AMZN on 2024-03-31 00:00:00\n", - "Selling JBL on 2024-03-31 00:00:00\n", - "Selling ADBE on 2024-03-31 00:00:00\n", - "Selling CRL on 2024-03-31 00:00:00\n", - "Selling ROK on 2024-03-31 00:00:00\n", - "Selling CRWD on 2024-03-31 00:00:00\n", - "Selling MPWR on 2024-03-31 00:00:00\n", - "Buying GIS on 2024-04-30 00:00:00\n", - "Buying CBOE on 2024-04-30 00:00:00\n", - "Buying KHC on 2024-04-30 00:00:00\n", - "Buying LDOS on 2024-04-30 00:00:00\n", - "Buying ALL on 2024-04-30 00:00:00\n", - "Buying T on 2024-04-30 00:00:00\n", - "Buying CAH on 2024-04-30 00:00:00\n", - "Buying NEM on 2024-04-30 00:00:00\n", - "Buying CHD on 2024-04-30 00:00:00\n", - "Buying SJM on 2024-04-30 00:00:00\n", - "Buying CMS on 2024-04-30 00:00:00\n", - "Buying DUK on 2024-04-30 00:00:00\n", - "Buying BF-B on 2024-04-30 00:00:00\n", - "Buying ACGL on 2024-04-30 00:00:00\n", - "Selling BX on 2024-04-30 00:00:00\n", - "Selling FFIV on 2024-04-30 00:00:00\n", - "Selling NFLX on 2024-04-30 00:00:00\n", - "Selling AMZN on 2024-04-30 00:00:00\n", - "Selling PHM on 2024-04-30 00:00:00\n", - "Selling CRM on 2024-04-30 00:00:00\n", - "Selling GEHC on 2024-04-30 00:00:00\n", - "Selling RMD on 2024-04-30 00:00:00\n", - "Selling SWKS on 2024-04-30 00:00:00\n", - "Selling NOW on 2024-04-30 00:00:00\n", - "Selling JBL on 2024-04-30 00:00:00\n", - "Selling CRL on 2024-04-30 00:00:00\n", - "Selling MPWR on 2024-04-30 00:00:00\n", - "Selling CRWD on 2024-04-30 00:00:00\n", - "Buying CBOE on 2024-05-31 00:00:00\n", - "Buying CAH on 2024-05-31 00:00:00\n", - "Buying ALL on 2024-05-31 00:00:00\n", - "Buying GIS on 2024-05-31 00:00:00\n", - "Buying HII on 2024-05-31 00:00:00\n", - "Buying KHC on 2024-05-31 00:00:00\n", - "Buying LDOS on 2024-05-31 00:00:00\n", - "Buying ACGL on 2024-05-31 00:00:00\n", - "Buying COR on 2024-05-31 00:00:00\n", - "Buying CHD on 2024-05-31 00:00:00\n", - "Buying T on 2024-05-31 00:00:00\n", - "Buying CMS on 2024-05-31 00:00:00\n", - "Buying SJM on 2024-05-31 00:00:00\n", - "Buying L on 2024-05-31 00:00:00\n", - "Selling GEHC on 2024-05-31 00:00:00\n", - "Selling RMD on 2024-05-31 00:00:00\n", - "Selling SWKS on 2024-05-31 00:00:00\n", - "Selling BX on 2024-05-31 00:00:00\n", - "Selling HWM on 2024-05-31 00:00:00\n", - "Selling JBL on 2024-05-31 00:00:00\n", - "Selling NCLH on 2024-05-31 00:00:00\n", - "Selling PHM on 2024-05-31 00:00:00\n", - "Selling APTV on 2024-05-31 00:00:00\n", - "Selling CRM on 2024-05-31 00:00:00\n", - "Selling VST on 2024-05-31 00:00:00\n", - "Selling MPWR on 2024-05-31 00:00:00\n", - "Selling NOW on 2024-05-31 00:00:00\n", - "Selling CRWD on 2024-05-31 00:00:00\n", - "Buying CAH on 2024-06-30 00:00:00\n", - "Buying GIS on 2024-06-30 00:00:00\n", - "Buying CBOE on 2024-06-30 00:00:00\n", - "Buying ALL on 2024-06-30 00:00:00\n", - "Buying CF on 2024-06-30 00:00:00\n", - "Buying KHC on 2024-06-30 00:00:00\n", - "Buying HII on 2024-06-30 00:00:00\n", - "Buying CMS on 2024-06-30 00:00:00\n", - "Buying LDOS on 2024-06-30 00:00:00\n", - "Buying DUK on 2024-06-30 00:00:00\n", - "Buying SJM on 2024-06-30 00:00:00\n", - "Buying COR on 2024-06-30 00:00:00\n", - "Buying ACGL on 2024-06-30 00:00:00\n", - "Buying CHD on 2024-06-30 00:00:00\n", - "Selling A on 2024-06-30 00:00:00\n", - "Selling NFLX on 2024-06-30 00:00:00\n", - "Selling MTD on 2024-06-30 00:00:00\n", - "Selling SWKS on 2024-06-30 00:00:00\n", - "Selling BX on 2024-06-30 00:00:00\n", - "Selling VST on 2024-06-30 00:00:00\n", - "Selling GEHC on 2024-06-30 00:00:00\n", - "Selling HWM on 2024-06-30 00:00:00\n", - "Selling PHM on 2024-06-30 00:00:00\n", - "Selling NCLH on 2024-06-30 00:00:00\n", - "Selling CRM on 2024-06-30 00:00:00\n", - "Selling NOW on 2024-06-30 00:00:00\n", - "Selling MPWR on 2024-06-30 00:00:00\n", - "Selling CRWD on 2024-06-30 00:00:00\n", - "Buying GILD on 2024-07-31 00:00:00\n", - "Buying INCY on 2024-07-31 00:00:00\n", - "Buying T on 2024-07-31 00:00:00\n", - "Buying GIS on 2024-07-31 00:00:00\n", - "Buying CBOE on 2024-07-31 00:00:00\n", - "Buying EPAM on 2024-07-31 00:00:00\n", - "Buying SJM on 2024-07-31 00:00:00\n", - "Buying BMY on 2024-07-31 00:00:00\n", - "Buying CCI on 2024-07-31 00:00:00\n", - "Buying ABBV on 2024-07-31 00:00:00\n", - "Buying CMS on 2024-07-31 00:00:00\n", - "Buying D on 2024-07-31 00:00:00\n", - "Buying TAP on 2024-07-31 00:00:00\n", - "Buying CVS on 2024-07-31 00:00:00\n", - "Selling NOW on 2024-07-31 00:00:00\n", - "Selling FCX on 2024-07-31 00:00:00\n", - "Selling NRG on 2024-07-31 00:00:00\n", - "Selling KEYS on 2024-07-31 00:00:00\n", - "Selling EW on 2024-07-31 00:00:00\n", - "Selling NCLH on 2024-07-31 00:00:00\n", - "Selling PH on 2024-07-31 00:00:00\n", - "Selling BX on 2024-07-31 00:00:00\n", - "Selling SWKS on 2024-07-31 00:00:00\n", - "Selling CRM on 2024-07-31 00:00:00\n", - "Selling GE on 2024-07-31 00:00:00\n", - "Selling CRWD on 2024-07-31 00:00:00\n", - "Selling VST on 2024-07-31 00:00:00\n", - "Selling MPWR on 2024-07-31 00:00:00\n", - "Buying CBOE on 2024-08-31 00:00:00\n", - "Buying GIS on 2024-08-31 00:00:00\n", - "Buying GILD on 2024-08-31 00:00:00\n", - "Buying AMT on 2024-08-31 00:00:00\n", - "Buying CMS on 2024-08-31 00:00:00\n", - "Buying T on 2024-08-31 00:00:00\n", - "Buying D on 2024-08-31 00:00:00\n", - "Buying MNST on 2024-08-31 00:00:00\n", - "Buying SJM on 2024-08-31 00:00:00\n", - "Buying SO on 2024-08-31 00:00:00\n", - "Buying AEP on 2024-08-31 00:00:00\n", - "Buying O on 2024-08-31 00:00:00\n", - "Buying CCI on 2024-08-31 00:00:00\n", - "Buying DUK on 2024-08-31 00:00:00\n", - "Selling KMX on 2024-08-31 00:00:00\n", - "Selling ROK on 2024-08-31 00:00:00\n", - "Selling NRG on 2024-08-31 00:00:00\n", - "Selling FCX on 2024-08-31 00:00:00\n", - "Selling ULTA on 2024-08-31 00:00:00\n", - "Selling AMZN on 2024-08-31 00:00:00\n", - "Selling PH on 2024-08-31 00:00:00\n", - "Selling KEYS on 2024-08-31 00:00:00\n", - "Selling JBL on 2024-08-31 00:00:00\n", - "Selling APO on 2024-08-31 00:00:00\n", - "Selling NCLH on 2024-08-31 00:00:00\n", - "Selling SWKS on 2024-08-31 00:00:00\n", - "Selling VST on 2024-08-31 00:00:00\n", - "Selling MPWR on 2024-08-31 00:00:00\n", - "Buying CBOE on 2024-09-30 00:00:00\n", - "Buying AMT on 2024-09-30 00:00:00\n", - "Buying GIS on 2024-09-30 00:00:00\n", - "Buying T on 2024-09-30 00:00:00\n", - "Buying SJM on 2024-09-30 00:00:00\n", - "Buying CHD on 2024-09-30 00:00:00\n", - "Buying MNST on 2024-09-30 00:00:00\n", - "Buying SO on 2024-09-30 00:00:00\n", - "Buying O on 2024-09-30 00:00:00\n", - "Buying D on 2024-09-30 00:00:00\n", - "Buying CLX on 2024-09-30 00:00:00\n", - "Buying CMS on 2024-09-30 00:00:00\n", - "Buying CCI on 2024-09-30 00:00:00\n", - "Buying DUK on 2024-09-30 00:00:00\n", - "Selling CE on 2024-09-30 00:00:00\n", - "Selling GE on 2024-09-30 00:00:00\n", - "Selling ROK on 2024-09-30 00:00:00\n", - "Selling NRG on 2024-09-30 00:00:00\n", - "Selling AMZN on 2024-09-30 00:00:00\n", - "Selling PH on 2024-09-30 00:00:00\n", - "Selling JBL on 2024-09-30 00:00:00\n", - "Selling APO on 2024-09-30 00:00:00\n", - "Selling KEYS on 2024-09-30 00:00:00\n", - "Selling FCX on 2024-09-30 00:00:00\n", - "Selling NCLH on 2024-09-30 00:00:00\n", - "Selling SWKS on 2024-09-30 00:00:00\n", - "Selling VST on 2024-09-30 00:00:00\n", - "Selling MPWR on 2024-09-30 00:00:00\n", - "Buying CBOE on 2024-10-31 00:00:00\n", - "Buying AMT on 2024-10-31 00:00:00\n", - "Buying T on 2024-10-31 00:00:00\n", - "Buying MNST on 2024-10-31 00:00:00\n", - "Buying CCI on 2024-10-31 00:00:00\n", - "Buying SO on 2024-10-31 00:00:00\n", - "Buying DUK on 2024-10-31 00:00:00\n", - "Buying COR on 2024-10-31 00:00:00\n", - "Buying D on 2024-10-31 00:00:00\n", - "Buying AEP on 2024-10-31 00:00:00\n", - "Buying GIS on 2024-10-31 00:00:00\n", - "Buying WTW on 2024-10-31 00:00:00\n", - "Buying BMY on 2024-10-31 00:00:00\n", - "Buying PNW on 2024-10-31 00:00:00\n", - "Selling DFS on 2024-10-31 00:00:00\n", - "Selling NOW on 2024-10-31 00:00:00\n", - "Selling JBL on 2024-10-31 00:00:00\n", - "Selling CDW on 2024-10-31 00:00:00\n", - "Selling NCLH on 2024-10-31 00:00:00\n", - "Selling AMZN on 2024-10-31 00:00:00\n", - "Selling FCX on 2024-10-31 00:00:00\n", - "Selling KEYS on 2024-10-31 00:00:00\n", - "Selling CRWD on 2024-10-31 00:00:00\n", - "Selling HII on 2024-10-31 00:00:00\n", - "Selling VST on 2024-10-31 00:00:00\n", - "Selling APTV on 2024-10-31 00:00:00\n", - "Selling SWKS on 2024-10-31 00:00:00\n", - "Selling MPWR on 2024-10-31 00:00:00\n", - "Generated 4680 orders.\n" + "The autoreload extension is already loaded. To reload it, use:\n", + " %reload_ext autoreload\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Generated 16648 orders.\n" ] } ], "source": [ + "%load_ext autoreload\n", + "%autoreload 2\n", + "\n", "import pickle\n", "import pandas as pd\n", "import yfinance as yf\n", @@ -4745,7 +83,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 10, "metadata": {}, "outputs": [ { @@ -4813,3691 +151,3691 @@ "2010-03-29 00:00:00: Portfolio Value - 100000.00\n", "2010-03-30 00:00:00: Portfolio Value - 100000.00\n", "2010-03-31 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-01 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-05 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-06 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-07 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-08 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-09 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-12 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-13 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-14 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-15 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-16 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-19 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-20 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-21 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-22 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-23 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-26 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-27 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-28 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-29 00:00:00: Portfolio Value - 100000.00\n", - "2010-04-30 00:00:00: Portfolio Value - 100000.00\n", - "2010-05-03 00:00:00: Portfolio Value - 98634.81\n", - "2010-05-04 00:00:00: Portfolio Value - 83254.76\n", - "2010-05-05 00:00:00: Portfolio Value - 75156.52\n", - "2010-05-06 00:00:00: Portfolio Value - 56440.60\n", - "2010-05-07 00:00:00: Portfolio Value - 31527.06\n", - "2010-05-10 00:00:00: Portfolio Value - 68563.69\n", - "2010-05-11 00:00:00: Portfolio Value - 68484.71\n", - "2010-05-12 00:00:00: Portfolio Value - 79735.25\n", - "2010-05-13 00:00:00: Portfolio Value - 79931.39\n", - "2010-05-14 00:00:00: Portfolio Value - 71383.19\n", - "2010-05-17 00:00:00: Portfolio Value - 91775.12\n", - "2010-05-18 00:00:00: Portfolio Value - 78102.22\n", - "2010-05-19 00:00:00: Portfolio Value - 62284.86\n", - "2010-05-20 00:00:00: Portfolio Value - 23167.95\n", - "2010-05-21 00:00:00: Portfolio Value - 9552.64\n", - "2010-05-24 00:00:00: Portfolio Value - 13854.47\n", - "2010-05-25 00:00:00: Portfolio Value - 25.06\n", - "2010-05-26 00:00:00: Portfolio Value - -8018.53\n", - "2010-05-27 00:00:00: Portfolio Value - 17000.55\n", - "2010-05-28 00:00:00: Portfolio Value - 10979.47\n", - "2010-06-01 00:00:00: Portfolio Value - 8612.23\n", - "2010-06-02 00:00:00: Portfolio Value - 27575.55\n", - "2010-06-03 00:00:00: Portfolio Value - 55785.96\n", - "2010-06-04 00:00:00: Portfolio Value - 20689.16\n", - "2010-06-07 00:00:00: Portfolio Value - 21791.92\n", - "2010-06-08 00:00:00: Portfolio Value - 32729.53\n", - "2010-06-09 00:00:00: Portfolio Value - 24456.31\n", - "2010-06-10 00:00:00: Portfolio Value - 55782.13\n", - "2010-06-11 00:00:00: Portfolio Value - 49936.77\n", - "2010-06-14 00:00:00: Portfolio Value - 58526.04\n", - "2010-06-15 00:00:00: Portfolio Value - 74188.12\n", - "2010-06-16 00:00:00: Portfolio Value - 82893.46\n", - "2010-06-17 00:00:00: Portfolio Value - 86984.96\n", - "2010-06-18 00:00:00: Portfolio Value - 74848.82\n", - "2010-06-21 00:00:00: Portfolio Value - 72761.51\n", - "2010-06-22 00:00:00: Portfolio Value - 70541.81\n", - "2010-06-23 00:00:00: Portfolio Value - 44591.50\n", - "2010-06-24 00:00:00: Portfolio Value - 38619.95\n", - "2010-06-25 00:00:00: Portfolio Value - 26856.01\n", - "2010-06-28 00:00:00: Portfolio Value - 35209.08\n", - "2010-06-29 00:00:00: Portfolio Value - 10806.59\n", - "2010-06-30 00:00:00: Portfolio Value - 7674.32\n", - "2010-07-01 00:00:00: Portfolio Value - 7958.99\n", - "2010-07-02 00:00:00: Portfolio Value - 14330.37\n", - "2010-07-06 00:00:00: Portfolio Value - 23469.31\n", - "2010-07-07 00:00:00: Portfolio Value - 45620.15\n", - "2010-07-08 00:00:00: Portfolio Value - 52699.32\n", - "2010-07-09 00:00:00: Portfolio Value - 50414.78\n", - "2010-07-12 00:00:00: Portfolio Value - 53694.03\n", - "2010-07-13 00:00:00: Portfolio Value - 63182.05\n", - "2010-07-14 00:00:00: Portfolio Value - 70630.42\n", - "2010-07-15 00:00:00: Portfolio Value - 60264.04\n", - "2010-07-16 00:00:00: Portfolio Value - 38043.42\n", - "2010-07-19 00:00:00: Portfolio Value - 43447.61\n", - "2010-07-20 00:00:00: Portfolio Value - 43643.00\n", - "2010-07-21 00:00:00: Portfolio Value - 21553.98\n", - "2010-07-22 00:00:00: Portfolio Value - 37748.23\n", - "2010-07-23 00:00:00: Portfolio Value - 41658.81\n", - "2010-07-26 00:00:00: Portfolio Value - 54007.04\n", - "2010-07-27 00:00:00: Portfolio Value - 55100.14\n", - "2010-07-28 00:00:00: Portfolio Value - 46726.81\n", - "2010-07-29 00:00:00: Portfolio Value - 5430.11\n", - "2010-07-30 00:00:00: Portfolio Value - 26881.19\n", - "2010-08-02 00:00:00: Portfolio Value - 41747.45\n", - "2010-08-03 00:00:00: Portfolio Value - 33833.06\n", - "2010-08-04 00:00:00: Portfolio Value - 35564.97\n", - "2010-08-05 00:00:00: Portfolio Value - 30758.17\n", - "2010-08-06 00:00:00: Portfolio Value - 28400.40\n", - "2010-08-09 00:00:00: Portfolio Value - 40268.61\n", - "2010-08-10 00:00:00: Portfolio Value - 38422.50\n", - "2010-08-11 00:00:00: Portfolio Value - 16607.67\n", - "2010-08-12 00:00:00: Portfolio Value - 6842.25\n", - "2010-08-13 00:00:00: Portfolio Value - 6867.34\n", - "2010-08-16 00:00:00: Portfolio Value - 2998.41\n", - "2010-08-17 00:00:00: Portfolio Value - 23546.66\n", - "2010-08-18 00:00:00: Portfolio Value - 22551.98\n", - "2010-08-19 00:00:00: Portfolio Value - 10270.82\n", - "2010-08-20 00:00:00: Portfolio Value - 7428.52\n", - "2010-08-23 00:00:00: Portfolio Value - 5627.66\n", - "2010-08-24 00:00:00: Portfolio Value - -4574.86\n", - "2010-08-25 00:00:00: Portfolio Value - -8190.59\n", - "2010-08-26 00:00:00: Portfolio Value - -14724.62\n", - "2010-08-27 00:00:00: Portfolio Value - 3719.88\n", - "2010-08-30 00:00:00: Portfolio Value - -6715.04\n", - "2010-08-31 00:00:00: Portfolio Value - -12598.29\n", - "2010-09-01 00:00:00: Portfolio Value - 14064.99\n", - "2010-09-02 00:00:00: Portfolio Value - 25116.13\n", - "2010-09-03 00:00:00: Portfolio Value - 21188.47\n", - "2010-09-07 00:00:00: Portfolio Value - 16300.13\n", - "2010-09-08 00:00:00: Portfolio Value - 7656.38\n", - "2010-09-09 00:00:00: Portfolio Value - 22246.10\n", - "2010-09-10 00:00:00: Portfolio Value - 25012.04\n", - "2010-09-13 00:00:00: Portfolio Value - 25652.10\n", - "2010-09-14 00:00:00: Portfolio Value - 30610.96\n", - "2010-09-15 00:00:00: Portfolio Value - 44096.52\n", - "2010-09-16 00:00:00: Portfolio Value - 42919.45\n", - "2010-09-17 00:00:00: Portfolio Value - 45951.85\n", - "2010-09-20 00:00:00: Portfolio Value - 56127.99\n", - "2010-09-21 00:00:00: Portfolio Value - 46863.18\n", - "2010-09-22 00:00:00: Portfolio Value - 52781.38\n", - "2010-09-23 00:00:00: Portfolio Value - 41571.72\n", - "2010-09-24 00:00:00: Portfolio Value - 58349.67\n", - "2010-09-27 00:00:00: Portfolio Value - 44950.94\n", - "2010-09-28 00:00:00: Portfolio Value - 50805.65\n", - "2010-09-29 00:00:00: Portfolio Value - 44714.01\n", - "2010-09-30 00:00:00: Portfolio Value - 52964.20\n", - "2010-10-01 00:00:00: Portfolio Value - 50938.75\n", - "2010-10-04 00:00:00: Portfolio Value - 43239.92\n", - "2010-10-05 00:00:00: Portfolio Value - 49419.51\n", - "2010-10-06 00:00:00: Portfolio Value - 51274.03\n", - "2010-10-07 00:00:00: Portfolio Value - 41229.61\n", - "2010-10-08 00:00:00: Portfolio Value - 42925.11\n", - "2010-10-11 00:00:00: Portfolio Value - 48022.23\n", - "2010-10-12 00:00:00: Portfolio Value - 41953.49\n", - "2010-10-13 00:00:00: Portfolio Value - 39595.63\n", - "2010-10-14 00:00:00: Portfolio Value - 49763.71\n", - "2010-10-15 00:00:00: Portfolio Value - 50710.83\n", - "2010-10-18 00:00:00: Portfolio Value - 58953.96\n", - "2010-10-19 00:00:00: Portfolio Value - 48222.40\n", - "2010-10-20 00:00:00: Portfolio Value - 55732.81\n", - "2010-10-21 00:00:00: Portfolio Value - 60340.65\n", - "2010-10-22 00:00:00: Portfolio Value - 63798.11\n", - "2010-10-25 00:00:00: Portfolio Value - 60730.18\n", - "2010-10-26 00:00:00: Portfolio Value - 51020.06\n", - "2010-10-27 00:00:00: Portfolio Value - 60986.93\n", - "2010-10-28 00:00:00: Portfolio Value - 50974.90\n", - "2010-10-29 00:00:00: Portfolio Value - 49302.07\n", - "2010-11-01 00:00:00: Portfolio Value - 42708.07\n", - "2010-11-02 00:00:00: Portfolio Value - 28816.06\n", - "2010-11-03 00:00:00: Portfolio Value - 29016.12\n", - "2010-11-04 00:00:00: Portfolio Value - 51246.97\n", - "2010-11-05 00:00:00: Portfolio Value - 44723.79\n", - "2010-11-08 00:00:00: Portfolio Value - 40960.69\n", - "2010-11-09 00:00:00: Portfolio Value - 43388.46\n", - "2010-11-10 00:00:00: Portfolio Value - 55163.73\n", - "2010-11-11 00:00:00: Portfolio Value - 45593.32\n", - "2010-11-12 00:00:00: Portfolio Value - 52430.31\n", - "2010-11-15 00:00:00: Portfolio Value - 59256.58\n", - "2010-11-16 00:00:00: Portfolio Value - 47977.55\n", - "2010-11-17 00:00:00: Portfolio Value - 54771.18\n", - "2010-11-18 00:00:00: Portfolio Value - 61092.86\n", - "2010-11-19 00:00:00: Portfolio Value - 53905.22\n", - "2010-11-22 00:00:00: Portfolio Value - 55877.61\n", - "2010-11-23 00:00:00: Portfolio Value - 41635.25\n", - "2010-11-24 00:00:00: Portfolio Value - 55438.64\n", - "2010-11-26 00:00:00: Portfolio Value - 52987.45\n", - "2010-11-29 00:00:00: Portfolio Value - 39557.08\n", - "2010-11-30 00:00:00: Portfolio Value - 33000.13\n", - "2010-12-01 00:00:00: Portfolio Value - 61760.94\n", - "2010-12-02 00:00:00: Portfolio Value - 73148.94\n", - "2010-12-03 00:00:00: Portfolio Value - 81360.03\n", - "2010-12-06 00:00:00: Portfolio Value - 74879.56\n", - "2010-12-07 00:00:00: Portfolio Value - 83131.04\n", - "2010-12-08 00:00:00: Portfolio Value - 91624.29\n", - "2010-12-09 00:00:00: Portfolio Value - 82308.60\n", - "2010-12-10 00:00:00: Portfolio Value - 91131.70\n", - "2010-12-13 00:00:00: Portfolio Value - 91839.48\n", - "2010-12-14 00:00:00: Portfolio Value - 117527.04\n", - "2010-12-15 00:00:00: Portfolio Value - 119089.03\n", - "2010-12-16 00:00:00: Portfolio Value - 127300.21\n", - "2010-12-17 00:00:00: Portfolio Value - 141701.12\n", - "2010-12-20 00:00:00: Portfolio Value - 132937.22\n", - "2010-12-21 00:00:00: Portfolio Value - 127195.71\n", - "2010-12-22 00:00:00: Portfolio Value - 134661.65\n", - "2010-12-23 00:00:00: Portfolio Value - 136824.74\n", - "2010-12-27 00:00:00: Portfolio Value - 130880.42\n", - "2010-12-28 00:00:00: Portfolio Value - 141600.08\n", - "2010-12-29 00:00:00: Portfolio Value - 143674.83\n", - "2010-12-30 00:00:00: Portfolio Value - 146025.31\n", - "2010-12-31 00:00:00: Portfolio Value - 128083.93\n", - "2011-01-03 00:00:00: Portfolio Value - 129849.83\n", - "2011-01-04 00:00:00: Portfolio Value - 110709.59\n", - "2011-01-05 00:00:00: Portfolio Value - 111933.50\n", - "2011-01-06 00:00:00: Portfolio Value - 112191.46\n", - "2011-01-07 00:00:00: Portfolio Value - 102917.76\n", - "2011-01-10 00:00:00: Portfolio Value - 100533.25\n", - "2011-01-11 00:00:00: Portfolio Value - 100057.25\n", - "2011-01-12 00:00:00: Portfolio Value - 102564.82\n", - "2011-01-13 00:00:00: Portfolio Value - 102303.69\n", - "2011-01-14 00:00:00: Portfolio Value - 106546.98\n", - "2011-01-18 00:00:00: Portfolio Value - 119578.82\n", - "2011-01-19 00:00:00: Portfolio Value - 121511.96\n", - "2011-01-20 00:00:00: Portfolio Value - 126741.74\n", - "2011-01-21 00:00:00: Portfolio Value - 123626.74\n", - "2011-01-24 00:00:00: Portfolio Value - 142499.22\n", - "2011-01-25 00:00:00: Portfolio Value - 168849.00\n", - "2011-01-26 00:00:00: Portfolio Value - 172968.58\n", - "2011-01-27 00:00:00: Portfolio Value - 186857.69\n", - "2011-01-28 00:00:00: Portfolio Value - 164144.47\n", - "2011-01-31 00:00:00: Portfolio Value - 152763.58\n", - "2011-02-01 00:00:00: Portfolio Value - 150207.71\n", - "2011-02-02 00:00:00: Portfolio Value - 140502.29\n", - "2011-02-03 00:00:00: Portfolio Value - 150586.49\n", - "2011-02-04 00:00:00: Portfolio Value - 171957.33\n", - "2011-02-07 00:00:00: Portfolio Value - 181602.20\n", - "2011-02-08 00:00:00: Portfolio Value - 163618.56\n", - "2011-02-09 00:00:00: Portfolio Value - 174360.45\n", - "2011-02-10 00:00:00: Portfolio Value - 171537.66\n", - "2011-02-11 00:00:00: Portfolio Value - 197574.50\n", - "2011-02-14 00:00:00: Portfolio Value - 167202.42\n", - "2011-02-15 00:00:00: Portfolio Value - 169408.87\n", - "2011-02-16 00:00:00: Portfolio Value - 173718.39\n", - "2011-02-17 00:00:00: Portfolio Value - 179495.42\n", - "2011-02-18 00:00:00: Portfolio Value - 203460.50\n", - "2011-02-22 00:00:00: Portfolio Value - 190468.69\n", - "2011-02-23 00:00:00: Portfolio Value - 167857.71\n", - "2011-02-24 00:00:00: Portfolio Value - 161418.71\n", - "2011-02-25 00:00:00: Portfolio Value - 174577.70\n", - "2011-02-28 00:00:00: Portfolio Value - 182520.50\n", - "2011-03-01 00:00:00: Portfolio Value - 174883.63\n", - "2011-03-02 00:00:00: Portfolio Value - 172061.74\n", - "2011-03-03 00:00:00: Portfolio Value - 194104.40\n", - "2011-03-04 00:00:00: Portfolio Value - 183610.77\n", - "2011-03-07 00:00:00: Portfolio Value - 184451.33\n", - "2011-03-08 00:00:00: Portfolio Value - 197489.95\n", - "2011-03-09 00:00:00: Portfolio Value - 197363.57\n", - "2011-03-10 00:00:00: Portfolio Value - 181659.87\n", - "2011-03-11 00:00:00: Portfolio Value - 194019.73\n", - "2011-03-14 00:00:00: Portfolio Value - 184880.21\n", - "2011-03-15 00:00:00: Portfolio Value - 167598.36\n", - "2011-03-16 00:00:00: Portfolio Value - 164297.75\n", - "2011-03-17 00:00:00: Portfolio Value - 163999.93\n", - "2011-03-18 00:00:00: Portfolio Value - 171344.73\n", - "2011-03-21 00:00:00: Portfolio Value - 191826.33\n", - "2011-03-22 00:00:00: Portfolio Value - 190192.04\n", - "2011-03-23 00:00:00: Portfolio Value - 184779.70\n", - "2011-03-24 00:00:00: Portfolio Value - 182528.78\n", - "2011-03-25 00:00:00: Portfolio Value - 191508.17\n", - "2011-03-28 00:00:00: Portfolio Value - 195248.99\n", - "2011-03-29 00:00:00: Portfolio Value - 205303.68\n", - "2011-03-30 00:00:00: Portfolio Value - 208066.42\n", - "2011-03-31 00:00:00: Portfolio Value - 221109.73\n", - "2011-04-01 00:00:00: Portfolio Value - 243028.45\n", - "2011-04-04 00:00:00: Portfolio Value - 235140.62\n", - "2011-04-05 00:00:00: Portfolio Value - 228635.59\n", - "2011-04-06 00:00:00: Portfolio Value - 247565.42\n", - "2011-04-07 00:00:00: Portfolio Value - 236588.66\n", - "2011-04-08 00:00:00: Portfolio Value - 224153.45\n", - "2011-04-11 00:00:00: Portfolio Value - 232929.77\n", - "2011-04-12 00:00:00: Portfolio Value - 234658.54\n", - "2011-04-13 00:00:00: Portfolio Value - 241479.90\n", - "2011-04-14 00:00:00: Portfolio Value - 252948.06\n", - "2011-04-15 00:00:00: Portfolio Value - 263512.51\n", - "2011-04-18 00:00:00: Portfolio Value - 255669.79\n", - "2011-04-19 00:00:00: Portfolio Value - 251808.30\n", - "2011-04-20 00:00:00: Portfolio Value - 257730.55\n", - "2011-04-21 00:00:00: Portfolio Value - 259701.30\n", - "2011-04-25 00:00:00: Portfolio Value - 257213.14\n", - "2011-04-26 00:00:00: Portfolio Value - 274015.45\n", - "2011-04-27 00:00:00: Portfolio Value - 284499.62\n", - "2011-04-28 00:00:00: Portfolio Value - 303966.90\n", - "2011-04-29 00:00:00: Portfolio Value - 289794.17\n", - "2011-05-02 00:00:00: Portfolio Value - 300439.56\n", - "2011-05-03 00:00:00: Portfolio Value - 297273.60\n", - "2011-05-04 00:00:00: Portfolio Value - 291389.75\n", - "2011-05-05 00:00:00: Portfolio Value - 284090.38\n", - "2011-05-06 00:00:00: Portfolio Value - 288456.21\n", - "2011-05-09 00:00:00: Portfolio Value - 288184.52\n", - "2011-05-10 00:00:00: Portfolio Value - 304049.78\n", - "2011-05-11 00:00:00: Portfolio Value - 314082.07\n", - "2011-05-12 00:00:00: Portfolio Value - 342445.16\n", - "2011-05-13 00:00:00: Portfolio Value - 332777.39\n", - "2011-05-16 00:00:00: Portfolio Value - 331671.11\n", - "2011-05-17 00:00:00: Portfolio Value - 328395.66\n", - "2011-05-18 00:00:00: Portfolio Value - 336482.60\n", - "2011-05-19 00:00:00: Portfolio Value - 343069.22\n", - "2011-05-20 00:00:00: Portfolio Value - 332944.38\n", - "2011-05-23 00:00:00: Portfolio Value - 315539.23\n", - "2011-05-24 00:00:00: Portfolio Value - 308037.51\n", - "2011-05-25 00:00:00: Portfolio Value - 311894.27\n", - "2011-05-26 00:00:00: Portfolio Value - 319608.26\n", - "2011-05-27 00:00:00: Portfolio Value - 318756.10\n", - "2011-05-31 00:00:00: Portfolio Value - 339277.22\n", - "2011-06-01 00:00:00: Portfolio Value - 337738.34\n", - "2011-06-02 00:00:00: Portfolio Value - 342859.79\n", - "2011-06-03 00:00:00: Portfolio Value - 331967.70\n", - "2011-06-06 00:00:00: Portfolio Value - 327775.64\n", - "2011-06-07 00:00:00: Portfolio Value - 325532.19\n", - "2011-06-08 00:00:00: Portfolio Value - 315992.19\n", - "2011-06-09 00:00:00: Portfolio Value - 318386.32\n", - "2011-06-10 00:00:00: Portfolio Value - 288476.69\n", - "2011-06-13 00:00:00: Portfolio Value - 289930.33\n", - "2011-06-14 00:00:00: Portfolio Value - 304465.97\n", - "2011-06-15 00:00:00: Portfolio Value - 282003.34\n", - "2011-06-16 00:00:00: Portfolio Value - 291512.36\n", - "2011-06-17 00:00:00: Portfolio Value - 294989.04\n", - "2011-06-20 00:00:00: Portfolio Value - 301252.60\n", - "2011-06-21 00:00:00: Portfolio Value - 305468.09\n", - "2011-06-22 00:00:00: Portfolio Value - 290807.20\n", - "2011-06-23 00:00:00: Portfolio Value - 275825.80\n", - "2011-06-24 00:00:00: Portfolio Value - 263570.01\n", - "2011-06-27 00:00:00: Portfolio Value - 264155.78\n", - "2011-06-28 00:00:00: Portfolio Value - 271269.69\n", - "2011-06-29 00:00:00: Portfolio Value - 286639.49\n", - "2011-06-30 00:00:00: Portfolio Value - 294737.16\n", - "2011-07-01 00:00:00: Portfolio Value - 317708.92\n", - "2011-07-05 00:00:00: Portfolio Value - 306309.42\n", - "2011-07-06 00:00:00: Portfolio Value - 317230.66\n", - "2011-07-07 00:00:00: Portfolio Value - 323303.48\n", - "2011-07-08 00:00:00: Portfolio Value - 312708.86\n", - "2011-07-11 00:00:00: Portfolio Value - 313030.11\n", - "2011-07-12 00:00:00: Portfolio Value - 323436.56\n", - "2011-07-13 00:00:00: Portfolio Value - 317924.53\n", - "2011-07-14 00:00:00: Portfolio Value - 308400.84\n", - "2011-07-15 00:00:00: Portfolio Value - 322550.61\n", - "2011-07-18 00:00:00: Portfolio Value - 302515.90\n", - "2011-07-19 00:00:00: Portfolio Value - 297095.84\n", - "2011-07-20 00:00:00: Portfolio Value - 297520.75\n", - "2011-07-21 00:00:00: Portfolio Value - 308695.96\n", - "2011-07-22 00:00:00: Portfolio Value - 299084.89\n", - "2011-07-25 00:00:00: Portfolio Value - 287516.20\n", - "2011-07-26 00:00:00: Portfolio Value - 288678.39\n", - "2011-07-27 00:00:00: Portfolio Value - 306177.70\n", - "2011-07-28 00:00:00: Portfolio Value - 288651.95\n", - "2011-07-29 00:00:00: Portfolio Value - 292083.74\n", - "2011-08-01 00:00:00: Portfolio Value - 269319.00\n", - "2011-08-02 00:00:00: Portfolio Value - 244389.53\n", - "2011-08-03 00:00:00: Portfolio Value - 255737.74\n", - "2011-08-04 00:00:00: Portfolio Value - 195769.66\n", - "2011-08-05 00:00:00: Portfolio Value - 216601.44\n", - "2011-08-08 00:00:00: Portfolio Value - 124569.25\n", - "2011-08-09 00:00:00: Portfolio Value - 183773.21\n", - "2011-08-10 00:00:00: Portfolio Value - 151903.60\n", - "2011-08-11 00:00:00: Portfolio Value - 216203.54\n", - "2011-08-12 00:00:00: Portfolio Value - 220088.52\n", - "2011-08-15 00:00:00: Portfolio Value - 259123.64\n", - "2011-08-16 00:00:00: Portfolio Value - 256213.56\n", - "2011-08-17 00:00:00: Portfolio Value - 246528.51\n", - "2011-08-18 00:00:00: Portfolio Value - 201569.12\n", - "2011-08-19 00:00:00: Portfolio Value - 198813.53\n", - "2011-08-22 00:00:00: Portfolio Value - 224865.26\n", - "2011-08-23 00:00:00: Portfolio Value - 266252.61\n", - "2011-08-24 00:00:00: Portfolio Value - 276431.55\n", - "2011-08-25 00:00:00: Portfolio Value - 261233.63\n", - "2011-08-26 00:00:00: Portfolio Value - 285723.22\n", - "2011-08-29 00:00:00: Portfolio Value - 306823.20\n", - "2011-08-30 00:00:00: Portfolio Value - 313091.69\n", - "2011-08-31 00:00:00: Portfolio Value - 327955.01\n", - "2011-09-01 00:00:00: Portfolio Value - 303938.02\n", - "2011-09-02 00:00:00: Portfolio Value - 278621.40\n", - "2011-09-06 00:00:00: Portfolio Value - 270259.92\n", - "2011-09-07 00:00:00: Portfolio Value - 301735.16\n", - "2011-09-08 00:00:00: Portfolio Value - 280697.60\n", - "2011-09-09 00:00:00: Portfolio Value - 226267.88\n", - "2011-09-12 00:00:00: Portfolio Value - 217863.29\n", - "2011-09-13 00:00:00: Portfolio Value - 221689.17\n", - "2011-09-14 00:00:00: Portfolio Value - 235515.54\n", - "2011-09-15 00:00:00: Portfolio Value - 241433.93\n", - "2011-09-16 00:00:00: Portfolio Value - 261211.87\n", - "2011-09-19 00:00:00: Portfolio Value - 238103.39\n", - "2011-09-20 00:00:00: Portfolio Value - 247927.69\n", - "2011-09-21 00:00:00: Portfolio Value - 217490.74\n", - "2011-09-22 00:00:00: Portfolio Value - 206023.77\n", - "2011-09-23 00:00:00: Portfolio Value - 216780.91\n", - "2011-09-26 00:00:00: Portfolio Value - 212436.42\n", - "2011-09-27 00:00:00: Portfolio Value - 244549.19\n", - "2011-09-28 00:00:00: Portfolio Value - 212497.21\n", - "2011-09-29 00:00:00: Portfolio Value - 251189.14\n", - "2011-09-30 00:00:00: Portfolio Value - 253973.33\n", - "2011-10-03 00:00:00: Portfolio Value - 196970.89\n", - "2011-10-04 00:00:00: Portfolio Value - 225482.40\n", - "2011-10-05 00:00:00: Portfolio Value - 226893.23\n", - "2011-10-06 00:00:00: Portfolio Value - 245461.84\n", - "2011-10-07 00:00:00: Portfolio Value - 244462.26\n", - "2011-10-10 00:00:00: Portfolio Value - 274171.17\n", - "2011-10-11 00:00:00: Portfolio Value - 243345.28\n", - "2011-10-12 00:00:00: Portfolio Value - 254531.81\n", - "2011-10-13 00:00:00: Portfolio Value - 268213.56\n", - "2011-10-14 00:00:00: Portfolio Value - 273641.20\n", - "2011-10-17 00:00:00: Portfolio Value - 248507.71\n", - "2011-10-18 00:00:00: Portfolio Value - 261160.04\n", - "2011-10-19 00:00:00: Portfolio Value - 283691.93\n", - "2011-10-20 00:00:00: Portfolio Value - 305098.51\n", - "2011-10-21 00:00:00: Portfolio Value - 358408.72\n", - "2011-10-24 00:00:00: Portfolio Value - 370283.16\n", - "2011-10-25 00:00:00: Portfolio Value - 284949.79\n", - "2011-10-26 00:00:00: Portfolio Value - 282670.12\n", - "2011-10-27 00:00:00: Portfolio Value - 281953.86\n", - "2011-10-28 00:00:00: Portfolio Value - 267885.44\n", - "2011-10-31 00:00:00: Portfolio Value - 274731.91\n", - "2011-11-01 00:00:00: Portfolio Value - 237082.75\n", - "2011-11-02 00:00:00: Portfolio Value - 233695.09\n", - "2011-11-03 00:00:00: Portfolio Value - 244230.84\n", - "2011-11-04 00:00:00: Portfolio Value - 255351.16\n", - "2011-11-07 00:00:00: Portfolio Value - 268828.37\n", - "2011-11-08 00:00:00: Portfolio Value - 279959.29\n", - "2011-11-09 00:00:00: Portfolio Value - 258169.41\n", - "2011-11-10 00:00:00: Portfolio Value - 274284.70\n", - "2011-11-11 00:00:00: Portfolio Value - 287984.78\n", - "2011-11-14 00:00:00: Portfolio Value - 278660.40\n", - "2011-11-15 00:00:00: Portfolio Value - 279200.98\n", - "2011-11-16 00:00:00: Portfolio Value - 269340.40\n", - "2011-11-17 00:00:00: Portfolio Value - 261064.63\n", - "2011-11-18 00:00:00: Portfolio Value - 249759.92\n", - "2011-11-21 00:00:00: Portfolio Value - 232653.39\n", - "2011-11-22 00:00:00: Portfolio Value - 226867.64\n", - "2011-11-23 00:00:00: Portfolio Value - 213922.64\n", - "2011-11-25 00:00:00: Portfolio Value - 231101.89\n", - "2011-11-28 00:00:00: Portfolio Value - 241559.26\n", - "2011-11-29 00:00:00: Portfolio Value - 237443.99\n", - "2011-11-30 00:00:00: Portfolio Value - 267369.30\n", - "2011-12-01 00:00:00: Portfolio Value - 269515.58\n", - "2011-12-02 00:00:00: Portfolio Value - 274910.50\n", - "2011-12-05 00:00:00: Portfolio Value - 290789.88\n", - "2011-12-06 00:00:00: Portfolio Value - 279700.31\n", - "2011-12-07 00:00:00: Portfolio Value - 295417.85\n", - "2011-12-08 00:00:00: Portfolio Value - 287005.39\n", - "2011-12-09 00:00:00: Portfolio Value - 295857.09\n", - "2011-12-12 00:00:00: Portfolio Value - 292785.20\n", - "2011-12-13 00:00:00: Portfolio Value - 294421.58\n", - "2011-12-14 00:00:00: Portfolio Value - 301656.44\n", - "2011-12-15 00:00:00: Portfolio Value - 316385.65\n", - "2011-12-16 00:00:00: Portfolio Value - 320345.46\n", - "2011-12-19 00:00:00: Portfolio Value - 324438.52\n", - "2011-12-20 00:00:00: Portfolio Value - 356237.31\n", - "2011-12-21 00:00:00: Portfolio Value - 371075.08\n", - "2011-12-22 00:00:00: Portfolio Value - 365338.99\n", - "2011-12-23 00:00:00: Portfolio Value - 383187.42\n", - "2011-12-27 00:00:00: Portfolio Value - 395384.13\n", - "2011-12-28 00:00:00: Portfolio Value - 388655.26\n", - "2011-12-29 00:00:00: Portfolio Value - 402147.73\n", - "2011-12-30 00:00:00: Portfolio Value - 398433.74\n", - "2012-01-03 00:00:00: Portfolio Value - 378581.82\n", - "2012-01-04 00:00:00: Portfolio Value - 349255.16\n", - "2012-01-05 00:00:00: Portfolio Value - 354854.02\n", - "2012-01-06 00:00:00: Portfolio Value - 358963.39\n", - "2012-01-09 00:00:00: Portfolio Value - 353347.40\n", - "2012-01-10 00:00:00: Portfolio Value - 364260.37\n", - "2012-01-11 00:00:00: Portfolio Value - 360133.95\n", - "2012-01-12 00:00:00: Portfolio Value - 349556.38\n", - "2012-01-13 00:00:00: Portfolio Value - 351433.78\n", - "2012-01-17 00:00:00: Portfolio Value - 351399.51\n", - "2012-01-18 00:00:00: Portfolio Value - 357172.40\n", - "2012-01-19 00:00:00: Portfolio Value - 361315.63\n", - "2012-01-20 00:00:00: Portfolio Value - 357175.52\n", - "2012-01-23 00:00:00: Portfolio Value - 346731.39\n", - "2012-01-24 00:00:00: Portfolio Value - 352567.77\n", - "2012-01-25 00:00:00: Portfolio Value - 361367.17\n", - "2012-01-26 00:00:00: Portfolio Value - 362262.04\n", - "2012-01-27 00:00:00: Portfolio Value - 360250.25\n", - "2012-01-30 00:00:00: Portfolio Value - 356333.11\n", - "2012-01-31 00:00:00: Portfolio Value - 359572.88\n", - "2012-02-01 00:00:00: Portfolio Value - 383772.96\n", - "2012-02-02 00:00:00: Portfolio Value - 377053.33\n", - "2012-02-03 00:00:00: Portfolio Value - 379300.28\n", - "2012-02-06 00:00:00: Portfolio Value - 376587.84\n", - "2012-02-07 00:00:00: Portfolio Value - 372274.63\n", - "2012-02-08 00:00:00: Portfolio Value - 364137.06\n", - "2012-02-09 00:00:00: Portfolio Value - 366724.56\n", - "2012-02-10 00:00:00: Portfolio Value - 358678.04\n", - "2012-02-13 00:00:00: Portfolio Value - 361748.79\n", - "2012-02-14 00:00:00: Portfolio Value - 353862.04\n", - "2012-02-15 00:00:00: Portfolio Value - 301272.23\n", - "2012-02-16 00:00:00: Portfolio Value - 295722.45\n", - "2012-02-17 00:00:00: Portfolio Value - 289311.35\n", - "2012-02-21 00:00:00: Portfolio Value - 284158.39\n", - "2012-02-22 00:00:00: Portfolio Value - 295906.94\n", - "2012-02-23 00:00:00: Portfolio Value - 301194.93\n", - "2012-02-24 00:00:00: Portfolio Value - 310694.78\n", - "2012-02-27 00:00:00: Portfolio Value - 297271.69\n", - "2012-02-28 00:00:00: Portfolio Value - 301512.48\n", - "2012-02-29 00:00:00: Portfolio Value - 312875.28\n", - "2012-03-01 00:00:00: Portfolio Value - 299267.58\n", - "2012-03-02 00:00:00: Portfolio Value - 294897.04\n", - "2012-03-05 00:00:00: Portfolio Value - 311589.77\n", - "2012-03-06 00:00:00: Portfolio Value - 307438.77\n", - "2012-03-07 00:00:00: Portfolio Value - 305817.65\n", - "2012-03-08 00:00:00: Portfolio Value - 325677.30\n", - "2012-03-09 00:00:00: Portfolio Value - 339141.67\n", - "2012-03-12 00:00:00: Portfolio Value - 343776.00\n", - "2012-03-13 00:00:00: Portfolio Value - 347627.54\n", - "2012-03-14 00:00:00: Portfolio Value - 359200.10\n", - "2012-03-15 00:00:00: Portfolio Value - 361939.49\n", - "2012-03-16 00:00:00: Portfolio Value - 351600.02\n", - "2012-03-19 00:00:00: Portfolio Value - 345195.52\n", - "2012-03-20 00:00:00: Portfolio Value - 331633.98\n", - "2012-03-21 00:00:00: Portfolio Value - 331540.28\n", - "2012-03-22 00:00:00: Portfolio Value - 332180.19\n", - "2012-03-23 00:00:00: Portfolio Value - 324229.87\n", - "2012-03-26 00:00:00: Portfolio Value - 349726.00\n", - "2012-03-27 00:00:00: Portfolio Value - 347344.36\n", - "2012-03-28 00:00:00: Portfolio Value - 347189.69\n", - "2012-03-29 00:00:00: Portfolio Value - 344725.58\n", - "2012-03-30 00:00:00: Portfolio Value - 346778.85\n", - "2012-04-02 00:00:00: Portfolio Value - 348532.91\n", - "2012-04-03 00:00:00: Portfolio Value - 364564.74\n", - "2012-04-04 00:00:00: Portfolio Value - 358660.45\n", - "2012-04-05 00:00:00: Portfolio Value - 354108.02\n", - "2012-04-09 00:00:00: Portfolio Value - 343067.37\n", - "2012-04-10 00:00:00: Portfolio Value - 335010.90\n", - "2012-04-11 00:00:00: Portfolio Value - 352838.89\n", - "2012-04-12 00:00:00: Portfolio Value - 346944.53\n", - "2012-04-13 00:00:00: Portfolio Value - 340121.04\n", - "2012-04-16 00:00:00: Portfolio Value - 342928.89\n", - "2012-04-17 00:00:00: Portfolio Value - 369366.04\n", - "2012-04-18 00:00:00: Portfolio Value - 365488.28\n", - "2012-04-19 00:00:00: Portfolio Value - 370728.21\n", - "2012-04-20 00:00:00: Portfolio Value - 389167.07\n", - "2012-04-23 00:00:00: Portfolio Value - 385800.08\n", - "2012-04-24 00:00:00: Portfolio Value - 402774.33\n", - "2012-04-25 00:00:00: Portfolio Value - 424625.31\n", - "2012-04-26 00:00:00: Portfolio Value - 437694.26\n", - "2012-04-27 00:00:00: Portfolio Value - 448284.32\n", - "2012-04-30 00:00:00: Portfolio Value - 449315.92\n", - "2012-05-01 00:00:00: Portfolio Value - 441003.38\n", - "2012-05-02 00:00:00: Portfolio Value - 441185.12\n", - "2012-05-03 00:00:00: Portfolio Value - 436796.61\n", - "2012-05-04 00:00:00: Portfolio Value - 441255.91\n", - "2012-05-07 00:00:00: Portfolio Value - 443760.29\n", - "2012-05-08 00:00:00: Portfolio Value - 445313.62\n", - "2012-05-09 00:00:00: Portfolio Value - 444763.81\n", - "2012-05-10 00:00:00: Portfolio Value - 454523.62\n", - "2012-05-11 00:00:00: Portfolio Value - 455372.22\n", - "2012-05-14 00:00:00: Portfolio Value - 452735.17\n", - "2012-05-15 00:00:00: Portfolio Value - 461727.91\n", - "2012-05-16 00:00:00: Portfolio Value - 449002.28\n", - "2012-05-17 00:00:00: Portfolio Value - 428707.92\n", - "2012-05-18 00:00:00: Portfolio Value - 403875.81\n", - "2012-05-21 00:00:00: Portfolio Value - 406916.65\n", - "2012-05-22 00:00:00: Portfolio Value - 415227.07\n", - "2012-05-23 00:00:00: Portfolio Value - 417473.23\n", - "2012-05-24 00:00:00: Portfolio Value - 433923.17\n", - "2012-05-25 00:00:00: Portfolio Value - 431743.69\n", - "2012-05-29 00:00:00: Portfolio Value - 433055.86\n", - "2012-05-30 00:00:00: Portfolio Value - 427282.76\n", - "2012-05-31 00:00:00: Portfolio Value - 425180.45\n", - "2012-06-01 00:00:00: Portfolio Value - 421039.82\n", - "2012-06-04 00:00:00: Portfolio Value - 430576.49\n", - "2012-06-05 00:00:00: Portfolio Value - 428182.70\n", - "2012-06-06 00:00:00: Portfolio Value - 447429.98\n", - "2012-06-07 00:00:00: Portfolio Value - 450261.71\n", - "2012-06-08 00:00:00: Portfolio Value - 458375.65\n", - "2012-06-11 00:00:00: Portfolio Value - 448137.26\n", - "2012-06-12 00:00:00: Portfolio Value - 453252.87\n", - "2012-06-13 00:00:00: Portfolio Value - 461726.51\n", - "2012-06-14 00:00:00: Portfolio Value - 467204.03\n", - "2012-06-15 00:00:00: Portfolio Value - 464248.76\n", - "2012-06-18 00:00:00: Portfolio Value - 473020.18\n", - "2012-06-19 00:00:00: Portfolio Value - 472970.34\n", - "2012-06-20 00:00:00: Portfolio Value - 458811.74\n", - "2012-06-21 00:00:00: Portfolio Value - 451079.75\n", - "2012-06-22 00:00:00: Portfolio Value - 464312.32\n", - "2012-06-25 00:00:00: Portfolio Value - 446314.30\n", - "2012-06-26 00:00:00: Portfolio Value - 451324.13\n", - "2012-06-27 00:00:00: Portfolio Value - 465807.97\n", - "2012-06-28 00:00:00: Portfolio Value - 480977.36\n", - "2012-06-29 00:00:00: Portfolio Value - 512449.07\n", - "2012-07-02 00:00:00: Portfolio Value - 530532.22\n", - "2012-07-03 00:00:00: Portfolio Value - 524959.33\n", - "2012-07-05 00:00:00: Portfolio Value - 529681.71\n", - "2012-07-06 00:00:00: Portfolio Value - 513646.52\n", - "2012-07-09 00:00:00: Portfolio Value - 509891.04\n", - "2012-07-10 00:00:00: Portfolio Value - 516599.65\n", - "2012-07-11 00:00:00: Portfolio Value - 525352.56\n", - "2012-07-12 00:00:00: Portfolio Value - 521520.98\n", - "2012-07-13 00:00:00: Portfolio Value - 534454.40\n", - "2012-07-16 00:00:00: Portfolio Value - 525456.66\n", - "2012-07-17 00:00:00: Portfolio Value - 546338.35\n", - "2012-07-18 00:00:00: Portfolio Value - 546914.42\n", - "2012-07-19 00:00:00: Portfolio Value - 537229.84\n", - "2012-07-20 00:00:00: Portfolio Value - 525723.58\n", - "2012-07-23 00:00:00: Portfolio Value - 519716.10\n", - "2012-07-24 00:00:00: Portfolio Value - 500742.51\n", - "2012-07-25 00:00:00: Portfolio Value - 515475.82\n", - "2012-07-26 00:00:00: Portfolio Value - 533187.33\n", - "2012-07-27 00:00:00: Portfolio Value - 559518.12\n", - "2012-07-30 00:00:00: Portfolio Value - 556455.91\n", - "2012-07-31 00:00:00: Portfolio Value - 548422.65\n", - "2012-08-01 00:00:00: Portfolio Value - 523276.35\n", - "2012-08-02 00:00:00: Portfolio Value - 499336.40\n", - "2012-08-03 00:00:00: Portfolio Value - 529257.79\n", - "2012-08-06 00:00:00: Portfolio Value - 506594.83\n", - "2012-08-07 00:00:00: Portfolio Value - 500165.42\n", - "2012-08-08 00:00:00: Portfolio Value - 514335.91\n", - "2012-08-09 00:00:00: Portfolio Value - 506337.25\n", - "2012-08-10 00:00:00: Portfolio Value - 513556.75\n", - "2012-08-13 00:00:00: Portfolio Value - 522278.14\n", - "2012-08-14 00:00:00: Portfolio Value - 541592.71\n", - "2012-08-15 00:00:00: Portfolio Value - 549315.09\n", - "2012-08-16 00:00:00: Portfolio Value - 538452.69\n", - "2012-08-17 00:00:00: Portfolio Value - 545703.34\n", - "2012-08-20 00:00:00: Portfolio Value - 539563.54\n", - "2012-08-21 00:00:00: Portfolio Value - 537429.09\n", - "2012-08-22 00:00:00: Portfolio Value - 522724.53\n", - "2012-08-23 00:00:00: Portfolio Value - 514179.75\n", - "2012-08-24 00:00:00: Portfolio Value - 529441.19\n", - "2012-08-27 00:00:00: Portfolio Value - 528758.54\n", - "2012-08-28 00:00:00: Portfolio Value - 520349.10\n", - "2012-08-29 00:00:00: Portfolio Value - 522180.17\n", - "2012-08-30 00:00:00: Portfolio Value - 521324.73\n", - "2012-08-31 00:00:00: Portfolio Value - 540686.86\n", - "2012-09-04 00:00:00: Portfolio Value - 554659.35\n", - "2012-09-05 00:00:00: Portfolio Value - 542807.74\n", - "2012-09-06 00:00:00: Portfolio Value - 558794.07\n", - "2012-09-07 00:00:00: Portfolio Value - 537457.23\n", - "2012-09-10 00:00:00: Portfolio Value - 530513.53\n", - "2012-09-11 00:00:00: Portfolio Value - 528028.10\n", - "2012-09-12 00:00:00: Portfolio Value - 529726.14\n", - "2012-09-13 00:00:00: Portfolio Value - 542452.06\n", - "2012-09-14 00:00:00: Portfolio Value - 510856.34\n", - "2012-09-17 00:00:00: Portfolio Value - 510507.26\n", - "2012-09-18 00:00:00: Portfolio Value - 504843.74\n", - "2012-09-19 00:00:00: Portfolio Value - 509810.63\n", - "2012-09-20 00:00:00: Portfolio Value - 520931.47\n", - "2012-09-21 00:00:00: Portfolio Value - 517602.79\n", - "2012-09-24 00:00:00: Portfolio Value - 530403.10\n", - "2012-09-25 00:00:00: Portfolio Value - 535399.09\n", - "2012-09-26 00:00:00: Portfolio Value - 539583.74\n", - "2012-09-27 00:00:00: Portfolio Value - 541074.78\n", - "2012-09-28 00:00:00: Portfolio Value - 550971.87\n", - "2012-10-01 00:00:00: Portfolio Value - 554050.68\n", - "2012-10-02 00:00:00: Portfolio Value - 558709.42\n", - "2012-10-03 00:00:00: Portfolio Value - 557707.28\n", - "2012-10-04 00:00:00: Portfolio Value - 563429.35\n", - "2012-10-05 00:00:00: Portfolio Value - 570312.40\n", - "2012-10-08 00:00:00: Portfolio Value - 576919.20\n", - "2012-10-09 00:00:00: Portfolio Value - 548984.87\n", - "2012-10-10 00:00:00: Portfolio Value - 533200.22\n", - "2012-10-11 00:00:00: Portfolio Value - 533794.49\n", - "2012-10-12 00:00:00: Portfolio Value - 532186.99\n", - "2012-10-15 00:00:00: Portfolio Value - 531837.98\n", - "2012-10-16 00:00:00: Portfolio Value - 544811.96\n", - "2012-10-17 00:00:00: Portfolio Value - 538005.78\n", - "2012-10-18 00:00:00: Portfolio Value - 530163.76\n", - "2012-10-19 00:00:00: Portfolio Value - 507334.57\n", - "2012-10-22 00:00:00: Portfolio Value - 504206.99\n", - "2012-10-23 00:00:00: Portfolio Value - 497931.92\n", - "2012-10-24 00:00:00: Portfolio Value - 461973.70\n", - "2012-10-25 00:00:00: Portfolio Value - 467220.76\n", - "2012-10-26 00:00:00: Portfolio Value - 455532.76\n", - "2012-10-31 00:00:00: Portfolio Value - 490317.83\n", - "2012-11-01 00:00:00: Portfolio Value - 499183.13\n", - "2012-11-02 00:00:00: Portfolio Value - 480294.29\n", - "2012-11-05 00:00:00: Portfolio Value - 490390.59\n", - "2012-11-06 00:00:00: Portfolio Value - 511588.04\n", - "2012-11-07 00:00:00: Portfolio Value - 478188.51\n", - "2012-11-08 00:00:00: Portfolio Value - 469542.76\n", - "2012-11-09 00:00:00: Portfolio Value - 470642.62\n", - "2012-11-12 00:00:00: Portfolio Value - 462214.85\n", - "2012-11-13 00:00:00: Portfolio Value - 462447.39\n", - "2012-11-14 00:00:00: Portfolio Value - 453269.18\n", - "2012-11-15 00:00:00: Portfolio Value - 457240.22\n", - "2012-11-16 00:00:00: Portfolio Value - 476939.20\n", - "2012-11-19 00:00:00: Portfolio Value - 478712.06\n", - "2012-11-20 00:00:00: Portfolio Value - 483223.12\n", - "2012-11-21 00:00:00: Portfolio Value - 493219.75\n", - "2012-11-23 00:00:00: Portfolio Value - 499100.79\n", - "2012-11-26 00:00:00: Portfolio Value - 499516.13\n", - "2012-11-27 00:00:00: Portfolio Value - 497733.33\n", - "2012-11-28 00:00:00: Portfolio Value - 508421.97\n", - "2012-11-29 00:00:00: Portfolio Value - 516693.85\n", - "2012-11-30 00:00:00: Portfolio Value - 534948.66\n", - "2012-12-03 00:00:00: Portfolio Value - 521049.14\n", - "2012-12-04 00:00:00: Portfolio Value - 512243.68\n", - "2012-12-05 00:00:00: Portfolio Value - 530952.95\n", - "2012-12-06 00:00:00: Portfolio Value - 534437.07\n", - "2012-12-07 00:00:00: Portfolio Value - 539018.57\n", - "2012-12-10 00:00:00: Portfolio Value - 530798.25\n", - "2012-12-11 00:00:00: Portfolio Value - 538683.59\n", - "2012-12-12 00:00:00: Portfolio Value - 543791.84\n", - "2012-12-13 00:00:00: Portfolio Value - 531559.05\n", - "2012-12-14 00:00:00: Portfolio Value - 518119.35\n", - "2012-12-17 00:00:00: Portfolio Value - 535364.99\n", - "2012-12-18 00:00:00: Portfolio Value - 529422.05\n", - "2012-12-19 00:00:00: Portfolio Value - 521502.14\n", - "2012-12-20 00:00:00: Portfolio Value - 521831.70\n", - "2012-12-21 00:00:00: Portfolio Value - 498148.10\n", - "2012-12-24 00:00:00: Portfolio Value - 493545.92\n", - "2012-12-26 00:00:00: Portfolio Value - 480194.40\n", - "2012-12-27 00:00:00: Portfolio Value - 485454.11\n", - "2012-12-28 00:00:00: Portfolio Value - 474804.02\n", - "2012-12-31 00:00:00: Portfolio Value - 489181.71\n", - "2013-01-02 00:00:00: Portfolio Value - 521271.66\n", - "2013-01-03 00:00:00: Portfolio Value - 535715.22\n", - "2013-01-04 00:00:00: Portfolio Value - 541210.04\n", - "2013-01-07 00:00:00: Portfolio Value - 541068.92\n", - "2013-01-08 00:00:00: Portfolio Value - 553231.09\n", - "2013-01-09 00:00:00: Portfolio Value - 558086.58\n", - "2013-01-10 00:00:00: Portfolio Value - 559176.23\n", - "2013-01-11 00:00:00: Portfolio Value - 561536.42\n", - "2013-01-14 00:00:00: Portfolio Value - 574481.74\n", - "2013-01-15 00:00:00: Portfolio Value - 586156.99\n", - "2013-01-16 00:00:00: Portfolio Value - 569552.34\n", - "2013-01-17 00:00:00: Portfolio Value - 571733.34\n", - "2013-01-18 00:00:00: Portfolio Value - 588520.14\n", - "2013-01-22 00:00:00: Portfolio Value - 584321.26\n", - "2013-01-23 00:00:00: Portfolio Value - 580839.54\n", - "2013-01-24 00:00:00: Portfolio Value - 588304.90\n", - "2013-01-25 00:00:00: Portfolio Value - 614999.67\n", - "2013-01-28 00:00:00: Portfolio Value - 620976.44\n", - "2013-01-29 00:00:00: Portfolio Value - 629397.58\n", - "2013-01-30 00:00:00: Portfolio Value - 634590.41\n", - "2013-01-31 00:00:00: Portfolio Value - 620001.29\n", - "2013-02-01 00:00:00: Portfolio Value - 641875.98\n", - "2013-02-04 00:00:00: Portfolio Value - 636860.92\n", - "2013-02-05 00:00:00: Portfolio Value - 658053.58\n", - "2013-02-06 00:00:00: Portfolio Value - 668644.21\n", - "2013-02-07 00:00:00: Portfolio Value - 668539.84\n", - "2013-02-08 00:00:00: Portfolio Value - 672904.07\n", - "2013-02-11 00:00:00: Portfolio Value - 662163.08\n", - "2013-02-12 00:00:00: Portfolio Value - 653337.56\n", - "2013-02-13 00:00:00: Portfolio Value - 679220.10\n", - "2013-02-14 00:00:00: Portfolio Value - 677208.92\n", - "2013-02-15 00:00:00: Portfolio Value - 681950.15\n", - "2013-02-19 00:00:00: Portfolio Value - 698023.21\n", - "2013-02-20 00:00:00: Portfolio Value - 692932.20\n", - "2013-02-21 00:00:00: Portfolio Value - 691793.21\n", - "2013-02-22 00:00:00: Portfolio Value - 709268.95\n", - "2013-02-25 00:00:00: Portfolio Value - 702682.74\n", - "2013-02-26 00:00:00: Portfolio Value - 724776.42\n", - "2013-02-27 00:00:00: Portfolio Value - 763373.64\n", - "2013-02-28 00:00:00: Portfolio Value - 776112.85\n", - "2013-03-01 00:00:00: Portfolio Value - 777859.94\n", - "2013-03-04 00:00:00: Portfolio Value - 782011.04\n", - "2013-03-05 00:00:00: Portfolio Value - 794851.66\n", - "2013-03-06 00:00:00: Portfolio Value - 773779.29\n", - "2013-03-07 00:00:00: Portfolio Value - 760778.64\n", - "2013-03-08 00:00:00: Portfolio Value - 772261.31\n", - "2013-03-11 00:00:00: Portfolio Value - 780241.56\n", - "2013-03-12 00:00:00: Portfolio Value - 777844.77\n", - "2013-03-13 00:00:00: Portfolio Value - 785585.58\n", - "2013-03-14 00:00:00: Portfolio Value - 797034.26\n", - "2013-03-15 00:00:00: Portfolio Value - 815986.57\n", - "2013-03-18 00:00:00: Portfolio Value - 818225.77\n", - "2013-03-19 00:00:00: Portfolio Value - 843642.21\n", - "2013-03-20 00:00:00: Portfolio Value - 869234.27\n", - "2013-03-21 00:00:00: Portfolio Value - 867351.45\n", - "2013-03-22 00:00:00: Portfolio Value - 885922.46\n", - "2013-03-25 00:00:00: Portfolio Value - 883647.03\n", - "2013-03-26 00:00:00: Portfolio Value - 913604.98\n", - "2013-03-27 00:00:00: Portfolio Value - 926453.87\n", - "2013-03-28 00:00:00: Portfolio Value - 959678.13\n", - "2013-04-01 00:00:00: Portfolio Value - 959822.92\n", - "2013-04-02 00:00:00: Portfolio Value - 971474.96\n", - "2013-04-03 00:00:00: Portfolio Value - 945969.01\n", - "2013-04-04 00:00:00: Portfolio Value - 939355.70\n", - "2013-04-05 00:00:00: Portfolio Value - 931582.87\n", - "2013-04-08 00:00:00: Portfolio Value - 939802.24\n", - "2013-04-09 00:00:00: Portfolio Value - 932387.58\n", - "2013-04-10 00:00:00: Portfolio Value - 949428.77\n", - "2013-04-11 00:00:00: Portfolio Value - 963256.36\n", - "2013-04-12 00:00:00: Portfolio Value - 960748.65\n", - "2013-04-15 00:00:00: Portfolio Value - 935568.43\n", - "2013-04-16 00:00:00: Portfolio Value - 959528.78\n", - "2013-04-17 00:00:00: Portfolio Value - 948475.18\n", - "2013-04-18 00:00:00: Portfolio Value - 938599.55\n", - "2013-04-19 00:00:00: Portfolio Value - 947729.90\n", - "2013-04-22 00:00:00: Portfolio Value - 962434.84\n", - "2013-04-23 00:00:00: Portfolio Value - 973004.64\n", - "2013-04-24 00:00:00: Portfolio Value - 951764.46\n", - "2013-04-25 00:00:00: Portfolio Value - 969900.00\n", - "2013-04-26 00:00:00: Portfolio Value - 957250.54\n", - "2013-04-29 00:00:00: Portfolio Value - 967979.03\n", - "2013-04-30 00:00:00: Portfolio Value - 983799.51\n", - "2013-05-01 00:00:00: Portfolio Value - 979509.34\n", - "2013-05-02 00:00:00: Portfolio Value - 1002278.78\n", - "2013-05-03 00:00:00: Portfolio Value - 1006269.20\n", - "2013-05-06 00:00:00: Portfolio Value - 983737.86\n", - "2013-05-07 00:00:00: Portfolio Value - 996469.12\n", - "2013-05-08 00:00:00: Portfolio Value - 1008886.28\n", - "2013-05-09 00:00:00: Portfolio Value - 1003653.95\n", - "2013-05-10 00:00:00: Portfolio Value - 1015979.58\n", - "2013-05-13 00:00:00: Portfolio Value - 1025813.85\n", - "2013-05-14 00:00:00: Portfolio Value - 1047108.78\n", - "2013-05-15 00:00:00: Portfolio Value - 1054048.44\n", - "2013-05-16 00:00:00: Portfolio Value - 1039029.47\n", - "2013-05-17 00:00:00: Portfolio Value - 1037982.61\n", - "2013-05-20 00:00:00: Portfolio Value - 1013698.32\n", - "2013-05-21 00:00:00: Portfolio Value - 1000016.45\n", - "2013-05-22 00:00:00: Portfolio Value - 972830.49\n", - "2013-05-23 00:00:00: Portfolio Value - 980137.18\n", - "2013-05-24 00:00:00: Portfolio Value - 966854.33\n", - "2013-05-28 00:00:00: Portfolio Value - 969134.62\n", - "2013-05-29 00:00:00: Portfolio Value - 934329.21\n", - "2013-05-30 00:00:00: Portfolio Value - 941333.62\n", - "2013-05-31 00:00:00: Portfolio Value - 886341.18\n", - "2013-06-03 00:00:00: Portfolio Value - 890481.73\n", - "2013-06-04 00:00:00: Portfolio Value - 896043.05\n", - "2013-06-05 00:00:00: Portfolio Value - 878447.46\n", - "2013-06-06 00:00:00: Portfolio Value - 894237.46\n", - "2013-06-07 00:00:00: Portfolio Value - 915236.28\n", - "2013-06-10 00:00:00: Portfolio Value - 907350.73\n", - "2013-06-11 00:00:00: Portfolio Value - 924402.18\n", - "2013-06-12 00:00:00: Portfolio Value - 893597.35\n", - "2013-06-13 00:00:00: Portfolio Value - 921965.39\n", - "2013-06-14 00:00:00: Portfolio Value - 927530.08\n", - "2013-06-17 00:00:00: Portfolio Value - 969449.76\n", - "2013-06-18 00:00:00: Portfolio Value - 983069.69\n", - "2013-06-19 00:00:00: Portfolio Value - 937876.06\n", - "2013-06-20 00:00:00: Portfolio Value - 892755.84\n", - "2013-06-21 00:00:00: Portfolio Value - 912007.51\n", - "2013-06-24 00:00:00: Portfolio Value - 924484.11\n", - "2013-06-25 00:00:00: Portfolio Value - 915490.13\n", - "2013-06-26 00:00:00: Portfolio Value - 934206.30\n", - "2013-06-27 00:00:00: Portfolio Value - 937102.37\n", - "2013-06-28 00:00:00: Portfolio Value - 934617.41\n", - "2013-07-01 00:00:00: Portfolio Value - 944575.58\n", - "2013-07-02 00:00:00: Portfolio Value - 927940.67\n", - "2013-07-03 00:00:00: Portfolio Value - 930359.24\n", - "2013-07-05 00:00:00: Portfolio Value - 943839.29\n", - "2013-07-08 00:00:00: Portfolio Value - 962558.53\n", - "2013-07-09 00:00:00: Portfolio Value - 959501.72\n", - "2013-07-10 00:00:00: Portfolio Value - 968026.15\n", - "2013-07-11 00:00:00: Portfolio Value - 1007177.34\n", - "2013-07-12 00:00:00: Portfolio Value - 1031800.75\n", - "2013-07-15 00:00:00: Portfolio Value - 1041485.23\n", - "2013-07-16 00:00:00: Portfolio Value - 1031066.50\n", - "2013-07-17 00:00:00: Portfolio Value - 1036347.08\n", - "2013-07-18 00:00:00: Portfolio Value - 1042431.62\n", - "2013-07-19 00:00:00: Portfolio Value - 1049835.70\n", - "2013-07-22 00:00:00: Portfolio Value - 1052136.29\n", - "2013-07-23 00:00:00: Portfolio Value - 1044746.35\n", - "2013-07-24 00:00:00: Portfolio Value - 1026425.75\n", - "2013-07-25 00:00:00: Portfolio Value - 1035136.91\n", - "2013-07-26 00:00:00: Portfolio Value - 1030690.98\n", - "2013-07-29 00:00:00: Portfolio Value - 1030640.70\n", - "2013-07-30 00:00:00: Portfolio Value - 1038705.47\n", - "2013-07-31 00:00:00: Portfolio Value - 1061810.16\n", - "2013-08-01 00:00:00: Portfolio Value - 1057390.43\n", - "2013-08-02 00:00:00: Portfolio Value - 1039614.04\n", - "2013-08-05 00:00:00: Portfolio Value - 1021541.81\n", - "2013-08-06 00:00:00: Portfolio Value - 1020324.21\n", - "2013-08-07 00:00:00: Portfolio Value - 1015808.90\n", - "2013-08-08 00:00:00: Portfolio Value - 1021434.57\n", - "2013-08-09 00:00:00: Portfolio Value - 1018045.30\n", - "2013-08-12 00:00:00: Portfolio Value - 1009047.14\n", - "2013-08-13 00:00:00: Portfolio Value - 1011517.65\n", - "2013-08-14 00:00:00: Portfolio Value - 992756.53\n", - "2013-08-15 00:00:00: Portfolio Value - 963171.30\n", - "2013-08-16 00:00:00: Portfolio Value - 962751.48\n", - "2013-08-19 00:00:00: Portfolio Value - 964432.58\n", - "2013-08-20 00:00:00: Portfolio Value - 978131.92\n", - "2013-08-21 00:00:00: Portfolio Value - 944742.52\n", - "2013-08-22 00:00:00: Portfolio Value - 959492.57\n", - "2013-08-23 00:00:00: Portfolio Value - 971939.58\n", - "2013-08-26 00:00:00: Portfolio Value - 953657.42\n", - "2013-08-27 00:00:00: Portfolio Value - 943656.08\n", - "2013-08-28 00:00:00: Portfolio Value - 925114.64\n", - "2013-08-29 00:00:00: Portfolio Value - 928417.42\n", - "2013-08-30 00:00:00: Portfolio Value - 926002.66\n", - "2013-09-03 00:00:00: Portfolio Value - 926136.72\n", - "2013-09-04 00:00:00: Portfolio Value - 933558.41\n", - "2013-09-05 00:00:00: Portfolio Value - 935814.31\n", - "2013-09-06 00:00:00: Portfolio Value - 947602.61\n", - "2013-09-09 00:00:00: Portfolio Value - 962728.30\n", - "2013-09-10 00:00:00: Portfolio Value - 979556.65\n", - "2013-09-11 00:00:00: Portfolio Value - 988420.14\n", - "2013-09-12 00:00:00: Portfolio Value - 996751.71\n", - "2013-09-13 00:00:00: Portfolio Value - 978363.04\n", - "2013-09-16 00:00:00: Portfolio Value - 1006286.68\n", - "2013-09-17 00:00:00: Portfolio Value - 1018803.10\n", - "2013-09-18 00:00:00: Portfolio Value - 1042619.54\n", - "2013-09-19 00:00:00: Portfolio Value - 1043281.66\n", - "2013-09-20 00:00:00: Portfolio Value - 1014800.47\n", - "2013-09-23 00:00:00: Portfolio Value - 1017445.78\n", - "2013-09-24 00:00:00: Portfolio Value - 1017124.39\n", - "2013-09-25 00:00:00: Portfolio Value - 1003943.39\n", - "2013-09-26 00:00:00: Portfolio Value - 1020068.66\n", - "2013-09-27 00:00:00: Portfolio Value - 1005176.98\n", - "2013-09-30 00:00:00: Portfolio Value - 1017751.65\n", - "2013-10-01 00:00:00: Portfolio Value - 1048313.13\n", - "2013-10-02 00:00:00: Portfolio Value - 1042925.74\n", - "2013-10-03 00:00:00: Portfolio Value - 1007704.45\n", - "2013-10-04 00:00:00: Portfolio Value - 1022117.40\n", - "2013-10-07 00:00:00: Portfolio Value - 1010953.28\n", - "2013-10-08 00:00:00: Portfolio Value - 1013059.78\n", - "2013-10-09 00:00:00: Portfolio Value - 1026274.92\n", - "2013-10-10 00:00:00: Portfolio Value - 1075086.22\n", - "2013-10-11 00:00:00: Portfolio Value - 1108892.67\n", - "2013-10-14 00:00:00: Portfolio Value - 1115510.98\n", - "2013-10-15 00:00:00: Portfolio Value - 1086440.74\n", - "2013-10-16 00:00:00: Portfolio Value - 1124343.30\n", - "2013-10-17 00:00:00: Portfolio Value - 1146026.76\n", - "2013-10-18 00:00:00: Portfolio Value - 1152567.18\n", - "2013-10-21 00:00:00: Portfolio Value - 1151142.55\n", - "2013-10-22 00:00:00: Portfolio Value - 1187819.12\n", - "2013-10-23 00:00:00: Portfolio Value - 1204553.34\n", - "2013-10-24 00:00:00: Portfolio Value - 1195643.02\n", - "2013-10-25 00:00:00: Portfolio Value - 1157358.75\n", - "2013-10-28 00:00:00: Portfolio Value - 1174868.04\n", - "2013-10-29 00:00:00: Portfolio Value - 1189229.97\n", - "2013-10-30 00:00:00: Portfolio Value - 1161582.98\n", - "2013-10-31 00:00:00: Portfolio Value - 1167326.12\n", - "2013-11-01 00:00:00: Portfolio Value - 1153565.54\n", - "2013-11-04 00:00:00: Portfolio Value - 1151011.24\n", - "2013-11-05 00:00:00: Portfolio Value - 1143960.23\n", - "2013-11-06 00:00:00: Portfolio Value - 1121074.53\n", - "2013-11-07 00:00:00: Portfolio Value - 1115442.47\n", - "2013-11-08 00:00:00: Portfolio Value - 1127965.90\n", - "2013-11-11 00:00:00: Portfolio Value - 1136245.13\n", - "2013-11-12 00:00:00: Portfolio Value - 1141962.31\n", - "2013-11-13 00:00:00: Portfolio Value - 1155060.93\n", - "2013-11-14 00:00:00: Portfolio Value - 1175173.50\n", - "2013-11-15 00:00:00: Portfolio Value - 1178938.24\n", - "2013-11-18 00:00:00: Portfolio Value - 1147461.01\n", - "2013-11-19 00:00:00: Portfolio Value - 1140319.57\n", - "2013-11-20 00:00:00: Portfolio Value - 1149696.92\n", - "2013-11-21 00:00:00: Portfolio Value - 1163660.78\n", - "2013-11-22 00:00:00: Portfolio Value - 1171510.92\n", - "2013-11-25 00:00:00: Portfolio Value - 1160385.70\n", - "2013-11-26 00:00:00: Portfolio Value - 1145099.14\n", - "2013-11-27 00:00:00: Portfolio Value - 1146527.62\n", - "2013-11-29 00:00:00: Portfolio Value - 1147193.44\n", - "2013-12-02 00:00:00: Portfolio Value - 1146635.75\n", - "2013-12-03 00:00:00: Portfolio Value - 1121689.94\n", - "2013-12-04 00:00:00: Portfolio Value - 1099715.23\n", - "2013-12-05 00:00:00: Portfolio Value - 1105267.40\n", - "2013-12-06 00:00:00: Portfolio Value - 1199012.07\n", - "2013-12-09 00:00:00: Portfolio Value - 1199874.26\n", - "2013-12-10 00:00:00: Portfolio Value - 1167598.95\n", - "2013-12-11 00:00:00: Portfolio Value - 1125450.80\n", - "2013-12-12 00:00:00: Portfolio Value - 1105987.02\n", - "2013-12-13 00:00:00: Portfolio Value - 1128519.37\n", - "2013-12-16 00:00:00: Portfolio Value - 1127112.45\n", - "2013-12-17 00:00:00: Portfolio Value - 1120421.22\n", - "2013-12-18 00:00:00: Portfolio Value - 1160366.69\n", - "2013-12-19 00:00:00: Portfolio Value - 1161796.30\n", - "2013-12-20 00:00:00: Portfolio Value - 1185354.11\n", - "2013-12-23 00:00:00: Portfolio Value - 1183394.44\n", - "2013-12-24 00:00:00: Portfolio Value - 1187427.67\n", - "2013-12-26 00:00:00: Portfolio Value - 1181841.08\n", - "2013-12-27 00:00:00: Portfolio Value - 1193365.51\n", - "2013-12-30 00:00:00: Portfolio Value - 1199239.91\n", - "2013-12-31 00:00:00: Portfolio Value - 1189334.88\n", - "2014-01-02 00:00:00: Portfolio Value - 1139734.98\n", - "2014-01-03 00:00:00: Portfolio Value - 1139888.35\n", - "2014-01-06 00:00:00: Portfolio Value - 1130073.83\n", - "2014-01-07 00:00:00: Portfolio Value - 1157453.89\n", - "2014-01-08 00:00:00: Portfolio Value - 1139661.39\n", - "2014-01-09 00:00:00: Portfolio Value - 1158194.99\n", - "2014-01-10 00:00:00: Portfolio Value - 1153168.66\n", - "2014-01-13 00:00:00: Portfolio Value - 1138941.29\n", - "2014-01-14 00:00:00: Portfolio Value - 1146998.84\n", - "2014-01-15 00:00:00: Portfolio Value - 1159079.41\n", - "2014-01-16 00:00:00: Portfolio Value - 1170075.86\n", - "2014-01-17 00:00:00: Portfolio Value - 1157301.39\n", - "2014-01-21 00:00:00: Portfolio Value - 1188486.69\n", - "2014-01-22 00:00:00: Portfolio Value - 1196574.19\n", - "2014-01-23 00:00:00: Portfolio Value - 1180731.67\n", - "2014-01-24 00:00:00: Portfolio Value - 1127534.22\n", - "2014-01-27 00:00:00: Portfolio Value - 1117385.06\n", - "2014-01-28 00:00:00: Portfolio Value - 1139042.70\n", - "2014-01-29 00:00:00: Portfolio Value - 1118250.06\n", - "2014-01-30 00:00:00: Portfolio Value - 1125332.63\n", - "2014-01-31 00:00:00: Portfolio Value - 1125524.09\n", - "2014-02-03 00:00:00: Portfolio Value - 1064419.87\n", - "2014-02-04 00:00:00: Portfolio Value - 1069111.30\n", - "2014-02-05 00:00:00: Portfolio Value - 1061341.54\n", - "2014-02-06 00:00:00: Portfolio Value - 1046902.16\n", - "2014-02-07 00:00:00: Portfolio Value - 1080154.97\n", - "2014-02-10 00:00:00: Portfolio Value - 1112243.28\n", - "2014-02-11 00:00:00: Portfolio Value - 1136497.66\n", - "2014-02-12 00:00:00: Portfolio Value - 1101642.56\n", - "2014-02-13 00:00:00: Portfolio Value - 1133484.59\n", - "2014-02-14 00:00:00: Portfolio Value - 1145702.20\n", - "2014-02-18 00:00:00: Portfolio Value - 1148123.43\n", - "2014-02-19 00:00:00: Portfolio Value - 1155216.01\n", - "2014-02-20 00:00:00: Portfolio Value - 1189549.63\n", - "2014-02-21 00:00:00: Portfolio Value - 1178093.70\n", - "2014-02-24 00:00:00: Portfolio Value - 1157388.42\n", - "2014-02-25 00:00:00: Portfolio Value - 1146561.16\n", - "2014-02-26 00:00:00: Portfolio Value - 1115893.80\n", - "2014-02-27 00:00:00: Portfolio Value - 1119483.85\n", - "2014-02-28 00:00:00: Portfolio Value - 1132709.04\n", - "2014-03-03 00:00:00: Portfolio Value - 1125153.77\n", - "2014-03-04 00:00:00: Portfolio Value - 1148333.64\n", - "2014-03-05 00:00:00: Portfolio Value - 1134661.49\n", - "2014-03-06 00:00:00: Portfolio Value - 1145632.94\n", - "2014-03-07 00:00:00: Portfolio Value - 1144096.84\n", - "2014-03-10 00:00:00: Portfolio Value - 1156339.40\n", - "2014-03-11 00:00:00: Portfolio Value - 1151673.32\n", - "2014-03-12 00:00:00: Portfolio Value - 1154186.31\n", - "2014-03-13 00:00:00: Portfolio Value - 1147117.07\n", - "2014-03-14 00:00:00: Portfolio Value - 1140381.03\n", - "2014-03-17 00:00:00: Portfolio Value - 1152063.07\n", - "2014-03-18 00:00:00: Portfolio Value - 1164739.38\n", - "2014-03-19 00:00:00: Portfolio Value - 1130494.82\n", - "2014-03-20 00:00:00: Portfolio Value - 1123593.52\n", - "2014-03-21 00:00:00: Portfolio Value - 1123526.92\n", - "2014-03-24 00:00:00: Portfolio Value - 1109640.39\n", - "2014-03-25 00:00:00: Portfolio Value - 1135260.79\n", - "2014-03-26 00:00:00: Portfolio Value - 1136614.05\n", - "2014-03-27 00:00:00: Portfolio Value - 1121270.85\n", - "2014-03-28 00:00:00: Portfolio Value - 1122166.01\n", - "2014-03-31 00:00:00: Portfolio Value - 1158461.67\n", - "2014-04-01 00:00:00: Portfolio Value - 1156368.93\n", - "2014-04-02 00:00:00: Portfolio Value - 1150434.57\n", - "2014-04-03 00:00:00: Portfolio Value - 1159005.26\n", - "2014-04-04 00:00:00: Portfolio Value - 1143663.77\n", - "2014-04-07 00:00:00: Portfolio Value - 1133396.38\n", - "2014-04-08 00:00:00: Portfolio Value - 1129279.82\n", - "2014-04-09 00:00:00: Portfolio Value - 1131577.08\n", - "2014-04-10 00:00:00: Portfolio Value - 1110870.41\n", - "2014-04-11 00:00:00: Portfolio Value - 1094860.73\n", - "2014-04-14 00:00:00: Portfolio Value - 1123486.61\n", - "2014-04-15 00:00:00: Portfolio Value - 1144116.39\n", - "2014-04-16 00:00:00: Portfolio Value - 1149136.42\n", - "2014-04-17 00:00:00: Portfolio Value - 1154598.79\n", - "2014-04-21 00:00:00: Portfolio Value - 1154727.28\n", - "2014-04-22 00:00:00: Portfolio Value - 1148261.37\n", - "2014-04-23 00:00:00: Portfolio Value - 1149917.10\n", - "2014-04-24 00:00:00: Portfolio Value - 1150899.10\n", - "2014-04-25 00:00:00: Portfolio Value - 1160040.18\n", - "2014-04-28 00:00:00: Portfolio Value - 1183129.52\n", - "2014-04-29 00:00:00: Portfolio Value - 1180998.83\n", - "2014-04-30 00:00:00: Portfolio Value - 1159595.79\n", - "2014-05-01 00:00:00: Portfolio Value - 1149854.63\n", - "2014-05-02 00:00:00: Portfolio Value - 1131411.97\n", - "2014-05-05 00:00:00: Portfolio Value - 1134523.86\n", - "2014-05-06 00:00:00: Portfolio Value - 1131048.77\n", - "2014-05-07 00:00:00: Portfolio Value - 1158233.28\n", - "2014-05-08 00:00:00: Portfolio Value - 1166414.12\n", - "2014-05-09 00:00:00: Portfolio Value - 1183211.69\n", - "2014-05-12 00:00:00: Portfolio Value - 1185423.94\n", - "2014-05-13 00:00:00: Portfolio Value - 1182753.90\n", - "2014-05-14 00:00:00: Portfolio Value - 1176558.86\n", - "2014-05-15 00:00:00: Portfolio Value - 1162449.97\n", - "2014-05-16 00:00:00: Portfolio Value - 1185755.83\n", - "2014-05-19 00:00:00: Portfolio Value - 1179971.94\n", - "2014-05-20 00:00:00: Portfolio Value - 1171492.52\n", - "2014-05-21 00:00:00: Portfolio Value - 1171889.75\n", - "2014-05-22 00:00:00: Portfolio Value - 1170997.03\n", - "2014-05-23 00:00:00: Portfolio Value - 1169548.74\n", - "2014-05-27 00:00:00: Portfolio Value - 1173222.83\n", - "2014-05-28 00:00:00: Portfolio Value - 1172526.95\n", - "2014-05-29 00:00:00: Portfolio Value - 1190008.32\n", - "2014-05-30 00:00:00: Portfolio Value - 1191347.47\n", - "2014-06-02 00:00:00: Portfolio Value - 1188733.17\n", - "2014-06-03 00:00:00: Portfolio Value - 1186267.63\n", - "2014-06-04 00:00:00: Portfolio Value - 1222358.12\n", - "2014-06-05 00:00:00: Portfolio Value - 1231327.57\n", - "2014-06-06 00:00:00: Portfolio Value - 1236066.04\n", - "2014-06-09 00:00:00: Portfolio Value - 1264605.25\n", - "2014-06-10 00:00:00: Portfolio Value - 1250405.13\n", - "2014-06-11 00:00:00: Portfolio Value - 1224524.54\n", - "2014-06-12 00:00:00: Portfolio Value - 1225479.93\n", - "2014-06-13 00:00:00: Portfolio Value - 1218304.44\n", - "2014-06-16 00:00:00: Portfolio Value - 1222673.04\n", - "2014-06-17 00:00:00: Portfolio Value - 1214702.29\n", - "2014-06-18 00:00:00: Portfolio Value - 1231238.68\n", - "2014-06-19 00:00:00: Portfolio Value - 1241535.40\n", - "2014-06-20 00:00:00: Portfolio Value - 1232397.00\n", - "2014-06-23 00:00:00: Portfolio Value - 1227856.80\n", - "2014-06-24 00:00:00: Portfolio Value - 1218693.86\n", - "2014-06-25 00:00:00: Portfolio Value - 1222990.17\n", - "2014-06-26 00:00:00: Portfolio Value - 1224541.60\n", - "2014-06-27 00:00:00: Portfolio Value - 1240446.85\n", - "2014-06-30 00:00:00: Portfolio Value - 1229514.04\n", - "2014-07-01 00:00:00: Portfolio Value - 1247970.35\n", - "2014-07-02 00:00:00: Portfolio Value - 1220749.71\n", - "2014-07-03 00:00:00: Portfolio Value - 1211456.71\n", - "2014-07-07 00:00:00: Portfolio Value - 1213535.93\n", - "2014-07-08 00:00:00: Portfolio Value - 1208346.07\n", - "2014-07-09 00:00:00: Portfolio Value - 1211202.46\n", - "2014-07-10 00:00:00: Portfolio Value - 1216951.12\n", - "2014-07-11 00:00:00: Portfolio Value - 1217689.38\n", - "2014-07-14 00:00:00: Portfolio Value - 1215566.28\n", - "2014-07-15 00:00:00: Portfolio Value - 1210745.70\n", - "2014-07-16 00:00:00: Portfolio Value - 1209077.85\n", - "2014-07-17 00:00:00: Portfolio Value - 1193790.06\n", - "2014-07-18 00:00:00: Portfolio Value - 1217435.13\n", - "2014-07-21 00:00:00: Portfolio Value - 1199250.43\n", - "2014-07-22 00:00:00: Portfolio Value - 1201391.05\n", - "2014-07-23 00:00:00: Portfolio Value - 1208721.88\n", - "2014-07-24 00:00:00: Portfolio Value - 1218403.90\n", - "2014-07-25 00:00:00: Portfolio Value - 1185690.04\n", - "2014-07-28 00:00:00: Portfolio Value - 1192740.46\n", - "2014-07-29 00:00:00: Portfolio Value - 1180309.53\n", - "2014-07-30 00:00:00: Portfolio Value - 1158904.30\n", - "2014-07-31 00:00:00: Portfolio Value - 1128389.04\n", - "2014-08-01 00:00:00: Portfolio Value - 1132814.93\n", - "2014-08-04 00:00:00: Portfolio Value - 1103998.07\n", - "2014-08-05 00:00:00: Portfolio Value - 1098011.28\n", - "2014-08-06 00:00:00: Portfolio Value - 1108326.49\n", - "2014-08-07 00:00:00: Portfolio Value - 1115952.94\n", - "2014-08-08 00:00:00: Portfolio Value - 1133422.72\n", - "2014-08-11 00:00:00: Portfolio Value - 1151621.48\n", - "2014-08-12 00:00:00: Portfolio Value - 1151001.68\n", - "2014-08-13 00:00:00: Portfolio Value - 1171116.26\n", - "2014-08-14 00:00:00: Portfolio Value - 1188094.95\n", - "2014-08-15 00:00:00: Portfolio Value - 1183561.16\n", - "2014-08-18 00:00:00: Portfolio Value - 1195718.01\n", - "2014-08-19 00:00:00: Portfolio Value - 1198116.77\n", - "2014-08-20 00:00:00: Portfolio Value - 1196570.02\n", - "2014-08-21 00:00:00: Portfolio Value - 1212481.00\n", - "2014-08-22 00:00:00: Portfolio Value - 1200405.02\n", - "2014-08-25 00:00:00: Portfolio Value - 1192645.93\n", - "2014-08-26 00:00:00: Portfolio Value - 1194152.97\n", - "2014-08-27 00:00:00: Portfolio Value - 1195124.93\n", - "2014-08-28 00:00:00: Portfolio Value - 1200698.10\n", - "2014-08-29 00:00:00: Portfolio Value - 1212886.20\n", - "2014-09-02 00:00:00: Portfolio Value - 1222983.52\n", - "2014-09-03 00:00:00: Portfolio Value - 1224595.25\n", - "2014-09-04 00:00:00: Portfolio Value - 1226127.68\n", - "2014-09-05 00:00:00: Portfolio Value - 1234945.97\n", - "2014-09-08 00:00:00: Portfolio Value - 1226310.95\n", - "2014-09-09 00:00:00: Portfolio Value - 1210523.73\n", - "2014-09-10 00:00:00: Portfolio Value - 1219647.15\n", - "2014-09-11 00:00:00: Portfolio Value - 1225475.04\n", - "2014-09-12 00:00:00: Portfolio Value - 1175102.20\n", - "2014-09-15 00:00:00: Portfolio Value - 1179353.97\n", - "2014-09-16 00:00:00: Portfolio Value - 1180018.63\n", - "2014-09-17 00:00:00: Portfolio Value - 1173258.84\n", - "2014-09-18 00:00:00: Portfolio Value - 1167827.10\n", - "2014-09-19 00:00:00: Portfolio Value - 1157933.45\n", - "2014-09-22 00:00:00: Portfolio Value - 1172240.88\n", - "2014-09-23 00:00:00: Portfolio Value - 1140194.34\n", - "2014-09-24 00:00:00: Portfolio Value - 1151047.64\n", - "2014-09-25 00:00:00: Portfolio Value - 1139359.38\n", - "2014-09-26 00:00:00: Portfolio Value - 1147886.52\n", - "2014-09-29 00:00:00: Portfolio Value - 1158827.67\n", - "2014-09-30 00:00:00: Portfolio Value - 1162321.07\n", - "2014-10-01 00:00:00: Portfolio Value - 1152581.06\n", - "2014-10-02 00:00:00: Portfolio Value - 1156671.69\n", - "2014-10-03 00:00:00: Portfolio Value - 1181303.11\n", - "2014-10-06 00:00:00: Portfolio Value - 1240365.32\n", - "2014-10-07 00:00:00: Portfolio Value - 1254719.08\n", - "2014-10-08 00:00:00: Portfolio Value - 1297866.22\n", - "2014-10-09 00:00:00: Portfolio Value - 1254747.25\n", - "2014-10-10 00:00:00: Portfolio Value - 1251073.28\n", - "2014-10-13 00:00:00: Portfolio Value - 1230075.78\n", - "2014-10-14 00:00:00: Portfolio Value - 1236322.39\n", - "2014-10-15 00:00:00: Portfolio Value - 1219716.06\n", - "2014-10-16 00:00:00: Portfolio Value - 1168236.56\n", - "2014-10-17 00:00:00: Portfolio Value - 1192103.49\n", - "2014-10-20 00:00:00: Portfolio Value - 1212429.80\n", - "2014-10-21 00:00:00: Portfolio Value - 1238450.93\n", - "2014-10-22 00:00:00: Portfolio Value - 1249231.66\n", - "2014-10-23 00:00:00: Portfolio Value - 1247446.09\n", - "2014-10-24 00:00:00: Portfolio Value - 1290293.17\n", - "2014-10-27 00:00:00: Portfolio Value - 1304072.28\n", - "2014-10-28 00:00:00: Portfolio Value - 1317980.66\n", - "2014-10-29 00:00:00: Portfolio Value - 1291983.61\n", - "2014-10-30 00:00:00: Portfolio Value - 1304642.51\n", - "2014-10-31 00:00:00: Portfolio Value - 1319432.86\n", - "2014-11-03 00:00:00: Portfolio Value - 1306020.36\n", - "2014-11-04 00:00:00: Portfolio Value - 1323715.08\n", - "2014-11-05 00:00:00: Portfolio Value - 1344015.12\n", - "2014-11-06 00:00:00: Portfolio Value - 1348720.05\n", - "2014-11-07 00:00:00: Portfolio Value - 1347209.00\n", - "2014-11-10 00:00:00: Portfolio Value - 1369239.88\n", - "2014-11-11 00:00:00: Portfolio Value - 1358817.69\n", - "2014-11-12 00:00:00: Portfolio Value - 1349206.00\n", - "2014-11-13 00:00:00: Portfolio Value - 1355067.81\n", - "2014-11-14 00:00:00: Portfolio Value - 1344406.25\n", - "2014-11-17 00:00:00: Portfolio Value - 1360657.33\n", - "2014-11-18 00:00:00: Portfolio Value - 1369068.61\n", - "2014-11-19 00:00:00: Portfolio Value - 1361917.02\n", - "2014-11-20 00:00:00: Portfolio Value - 1363462.10\n", - "2014-11-21 00:00:00: Portfolio Value - 1358489.23\n", - "2014-11-24 00:00:00: Portfolio Value - 1362774.29\n", - "2014-11-25 00:00:00: Portfolio Value - 1386690.33\n", - "2014-11-26 00:00:00: Portfolio Value - 1430339.76\n", - "2014-11-28 00:00:00: Portfolio Value - 1441692.16\n", - "2014-12-01 00:00:00: Portfolio Value - 1449697.58\n", - "2014-12-02 00:00:00: Portfolio Value - 1459829.79\n", - "2014-12-03 00:00:00: Portfolio Value - 1464048.50\n", - "2014-12-04 00:00:00: Portfolio Value - 1481879.62\n", - "2014-12-05 00:00:00: Portfolio Value - 1464264.47\n", - "2014-12-08 00:00:00: Portfolio Value - 1495506.43\n", - "2014-12-09 00:00:00: Portfolio Value - 1480762.33\n", - "2014-12-10 00:00:00: Portfolio Value - 1460590.45\n", - "2014-12-11 00:00:00: Portfolio Value - 1477878.47\n", - "2014-12-12 00:00:00: Portfolio Value - 1455473.51\n", - "2014-12-15 00:00:00: Portfolio Value - 1462014.89\n", - "2014-12-16 00:00:00: Portfolio Value - 1468384.36\n", - "2014-12-17 00:00:00: Portfolio Value - 1516220.16\n", - "2014-12-18 00:00:00: Portfolio Value - 1561809.14\n", - "2014-12-19 00:00:00: Portfolio Value - 1565693.14\n", - "2014-12-22 00:00:00: Portfolio Value - 1582332.65\n", - "2014-12-23 00:00:00: Portfolio Value - 1598160.61\n", - "2014-12-24 00:00:00: Portfolio Value - 1607887.39\n", - "2014-12-26 00:00:00: Portfolio Value - 1603884.60\n", - "2014-12-29 00:00:00: Portfolio Value - 1601235.57\n", - "2014-12-30 00:00:00: Portfolio Value - 1598716.45\n", - "2014-12-31 00:00:00: Portfolio Value - 1561373.83\n", - "2015-01-02 00:00:00: Portfolio Value - 1566892.43\n", - "2015-01-05 00:00:00: Portfolio Value - 1565620.77\n", - "2015-01-06 00:00:00: Portfolio Value - 1580734.91\n", - "2015-01-07 00:00:00: Portfolio Value - 1611322.22\n", - "2015-01-08 00:00:00: Portfolio Value - 1655574.52\n", - "2015-01-09 00:00:00: Portfolio Value - 1634424.15\n", - "2015-01-12 00:00:00: Portfolio Value - 1625520.18\n", - "2015-01-13 00:00:00: Portfolio Value - 1642258.19\n", - "2015-01-14 00:00:00: Portfolio Value - 1646155.85\n", - "2015-01-15 00:00:00: Portfolio Value - 1662368.07\n", - "2015-01-16 00:00:00: Portfolio Value - 1674182.18\n", - "2015-01-20 00:00:00: Portfolio Value - 1660226.58\n", - "2015-01-21 00:00:00: Portfolio Value - 1669954.38\n", - "2015-01-22 00:00:00: Portfolio Value - 1712082.78\n", - "2015-01-23 00:00:00: Portfolio Value - 1714761.82\n", - "2015-01-26 00:00:00: Portfolio Value - 1725734.12\n", - "2015-01-27 00:00:00: Portfolio Value - 1695684.07\n", - "2015-01-28 00:00:00: Portfolio Value - 1669769.25\n", - "2015-01-29 00:00:00: Portfolio Value - 1696726.15\n", - "2015-01-30 00:00:00: Portfolio Value - 1651403.53\n", - "2015-02-02 00:00:00: Portfolio Value - 1690241.60\n", - "2015-02-03 00:00:00: Portfolio Value - 1711726.11\n", - "2015-02-04 00:00:00: Portfolio Value - 1721645.50\n", - "2015-02-05 00:00:00: Portfolio Value - 1746730.47\n", - "2015-02-06 00:00:00: Portfolio Value - 1696139.08\n", - "2015-02-09 00:00:00: Portfolio Value - 1669072.56\n", - "2015-02-10 00:00:00: Portfolio Value - 1693666.54\n", - "2015-02-11 00:00:00: Portfolio Value - 1749985.58\n", - "2015-02-12 00:00:00: Portfolio Value - 1770904.96\n", - "2015-02-13 00:00:00: Portfolio Value - 1772568.49\n", - "2015-02-17 00:00:00: Portfolio Value - 1767670.54\n", - "2015-02-18 00:00:00: Portfolio Value - 1782843.52\n", - "2015-02-19 00:00:00: Portfolio Value - 1767913.93\n", - "2015-02-20 00:00:00: Portfolio Value - 1779303.71\n", - "2015-02-23 00:00:00: Portfolio Value - 1793380.35\n", - "2015-02-24 00:00:00: Portfolio Value - 1802013.88\n", - "2015-02-25 00:00:00: Portfolio Value - 1806708.54\n", - "2015-02-26 00:00:00: Portfolio Value - 1797313.96\n", - "2015-02-27 00:00:00: Portfolio Value - 1787347.21\n", - "2015-03-02 00:00:00: Portfolio Value - 1798938.81\n", - "2015-03-03 00:00:00: Portfolio Value - 1790948.97\n", - "2015-03-04 00:00:00: Portfolio Value - 1783499.34\n", - "2015-03-05 00:00:00: Portfolio Value - 1802610.24\n", - "2015-03-06 00:00:00: Portfolio Value - 1754336.38\n", - "2015-03-09 00:00:00: Portfolio Value - 1784071.40\n", - "2015-03-10 00:00:00: Portfolio Value - 1730572.85\n", - "2015-03-11 00:00:00: Portfolio Value - 1744524.92\n", - "2015-03-12 00:00:00: Portfolio Value - 1783893.70\n", - "2015-03-13 00:00:00: Portfolio Value - 1759490.04\n", - "2015-03-16 00:00:00: Portfolio Value - 1810578.52\n", - "2015-03-17 00:00:00: Portfolio Value - 1800747.01\n", - "2015-03-18 00:00:00: Portfolio Value - 1835421.86\n", - "2015-03-19 00:00:00: Portfolio Value - 1823783.32\n", - "2015-03-20 00:00:00: Portfolio Value - 1836358.90\n", - "2015-03-23 00:00:00: Portfolio Value - 1846220.63\n", - "2015-03-24 00:00:00: Portfolio Value - 1811532.02\n", - "2015-03-25 00:00:00: Portfolio Value - 1759565.00\n", - "2015-03-26 00:00:00: Portfolio Value - 1759861.48\n", - "2015-03-27 00:00:00: Portfolio Value - 1788896.90\n", - "2015-03-30 00:00:00: Portfolio Value - 1815628.92\n", - "2015-03-31 00:00:00: Portfolio Value - 1803653.71\n", - "2015-04-01 00:00:00: Portfolio Value - 1793582.62\n", - "2015-04-02 00:00:00: Portfolio Value - 1804792.65\n", - "2015-04-06 00:00:00: Portfolio Value - 1832667.80\n", - "2015-04-07 00:00:00: Portfolio Value - 1811328.70\n", - "2015-04-08 00:00:00: Portfolio Value - 1824685.31\n", - "2015-04-09 00:00:00: Portfolio Value - 1834764.32\n", - "2015-04-10 00:00:00: Portfolio Value - 1848625.08\n", - "2015-04-13 00:00:00: Portfolio Value - 1833287.49\n", - "2015-04-14 00:00:00: Portfolio Value - 1828757.61\n", - "2015-04-15 00:00:00: Portfolio Value - 1800940.19\n", - "2015-04-16 00:00:00: Portfolio Value - 1795748.48\n", - "2015-04-17 00:00:00: Portfolio Value - 1761605.55\n", - "2015-04-20 00:00:00: Portfolio Value - 1789666.97\n", - "2015-04-21 00:00:00: Portfolio Value - 1795344.87\n", - "2015-04-22 00:00:00: Portfolio Value - 1783760.62\n", - "2015-04-23 00:00:00: Portfolio Value - 1786996.64\n", - "2015-04-24 00:00:00: Portfolio Value - 1758553.34\n", - "2015-04-27 00:00:00: Portfolio Value - 1730175.54\n", - "2015-04-28 00:00:00: Portfolio Value - 1746122.78\n", - "2015-04-29 00:00:00: Portfolio Value - 1745769.02\n", - "2015-04-30 00:00:00: Portfolio Value - 1706188.49\n", - "2015-05-01 00:00:00: Portfolio Value - 1723683.00\n", - "2015-05-04 00:00:00: Portfolio Value - 1728895.43\n", - "2015-05-05 00:00:00: Portfolio Value - 1689826.68\n", - "2015-05-06 00:00:00: Portfolio Value - 1679177.95\n", - "2015-05-07 00:00:00: Portfolio Value - 1703661.18\n", - "2015-05-08 00:00:00: Portfolio Value - 1710984.89\n", - "2015-05-11 00:00:00: Portfolio Value - 1701495.57\n", - "2015-05-12 00:00:00: Portfolio Value - 1671368.41\n", - "2015-05-13 00:00:00: Portfolio Value - 1602306.79\n", - "2015-05-14 00:00:00: Portfolio Value - 1648421.38\n", - "2015-05-15 00:00:00: Portfolio Value - 1654504.65\n", - "2015-05-18 00:00:00: Portfolio Value - 1678480.39\n", - "2015-05-19 00:00:00: Portfolio Value - 1692757.77\n", - "2015-05-20 00:00:00: Portfolio Value - 1702469.34\n", - "2015-05-21 00:00:00: Portfolio Value - 1695930.63\n", - "2015-05-22 00:00:00: Portfolio Value - 1692610.72\n", - "2015-05-26 00:00:00: Portfolio Value - 1669710.23\n", - "2015-05-27 00:00:00: Portfolio Value - 1682526.24\n", - "2015-05-28 00:00:00: Portfolio Value - 1672970.68\n", - "2015-05-29 00:00:00: Portfolio Value - 1653792.04\n", - "2015-06-01 00:00:00: Portfolio Value - 1675519.65\n", - "2015-06-02 00:00:00: Portfolio Value - 1654550.93\n", - "2015-06-03 00:00:00: Portfolio Value - 1658880.78\n", - "2015-06-04 00:00:00: Portfolio Value - 1635874.96\n", - "2015-06-05 00:00:00: Portfolio Value - 1624246.62\n", - "2015-06-08 00:00:00: Portfolio Value - 1615821.25\n", - "2015-06-09 00:00:00: Portfolio Value - 1606515.10\n", - "2015-06-10 00:00:00: Portfolio Value - 1636479.88\n", - "2015-06-11 00:00:00: Portfolio Value - 1657601.91\n", - "2015-06-12 00:00:00: Portfolio Value - 1629410.25\n", - "2015-06-15 00:00:00: Portfolio Value - 1618808.58\n", - "2015-06-16 00:00:00: Portfolio Value - 1631043.80\n", - "2015-06-17 00:00:00: Portfolio Value - 1640756.25\n", - "2015-06-18 00:00:00: Portfolio Value - 1662854.22\n", - "2015-06-19 00:00:00: Portfolio Value - 1662931.30\n", - "2015-06-22 00:00:00: Portfolio Value - 1671121.60\n", - "2015-06-23 00:00:00: Portfolio Value - 1647254.54\n", - "2015-06-24 00:00:00: Portfolio Value - 1621341.11\n", - "2015-06-25 00:00:00: Portfolio Value - 1631642.06\n", - "2015-06-26 00:00:00: Portfolio Value - 1630103.78\n", - "2015-06-29 00:00:00: Portfolio Value - 1587751.46\n", - "2015-06-30 00:00:00: Portfolio Value - 1608936.49\n", - "2015-07-01 00:00:00: Portfolio Value - 1636841.92\n", - "2015-07-02 00:00:00: Portfolio Value - 1634355.02\n", - "2015-07-06 00:00:00: Portfolio Value - 1638852.06\n", - "2015-07-07 00:00:00: Portfolio Value - 1666824.18\n", - "2015-07-08 00:00:00: Portfolio Value - 1648649.33\n", - "2015-07-09 00:00:00: Portfolio Value - 1650442.28\n", - "2015-07-10 00:00:00: Portfolio Value - 1678830.21\n", - "2015-07-13 00:00:00: Portfolio Value - 1687357.19\n", - "2015-07-14 00:00:00: Portfolio Value - 1691422.81\n", - "2015-07-15 00:00:00: Portfolio Value - 1695078.88\n", - "2015-07-16 00:00:00: Portfolio Value - 1725463.85\n", - "2015-07-17 00:00:00: Portfolio Value - 1717562.50\n", - "2015-07-20 00:00:00: Portfolio Value - 1723736.71\n", - "2015-07-21 00:00:00: Portfolio Value - 1693444.97\n", - "2015-07-22 00:00:00: Portfolio Value - 1697425.19\n", - "2015-07-23 00:00:00: Portfolio Value - 1693371.17\n", - "2015-07-24 00:00:00: Portfolio Value - 1694435.18\n", - "2015-07-27 00:00:00: Portfolio Value - 1690808.26\n", - "2015-07-28 00:00:00: Portfolio Value - 1725017.85\n", - "2015-07-29 00:00:00: Portfolio Value - 1788103.11\n", - "2015-07-30 00:00:00: Portfolio Value - 1787775.08\n", - "2015-07-31 00:00:00: Portfolio Value - 1798874.37\n", - "2015-08-03 00:00:00: Portfolio Value - 1821118.02\n", - "2015-08-04 00:00:00: Portfolio Value - 1820408.44\n", - "2015-08-05 00:00:00: Portfolio Value - 1859746.78\n", - "2015-08-06 00:00:00: Portfolio Value - 1815652.27\n", - "2015-08-07 00:00:00: Portfolio Value - 1828945.56\n", - "2015-08-10 00:00:00: Portfolio Value - 1823788.11\n", - "2015-08-11 00:00:00: Portfolio Value - 1815380.90\n", - "2015-08-12 00:00:00: Portfolio Value - 1809040.77\n", - "2015-08-13 00:00:00: Portfolio Value - 1802296.66\n", - "2015-08-14 00:00:00: Portfolio Value - 1831664.75\n", - "2015-08-17 00:00:00: Portfolio Value - 1823452.73\n", - "2015-08-18 00:00:00: Portfolio Value - 1814228.76\n", - "2015-08-19 00:00:00: Portfolio Value - 1802850.12\n", - "2015-08-20 00:00:00: Portfolio Value - 1761585.03\n", - "2015-08-21 00:00:00: Portfolio Value - 1726538.84\n", - "2015-08-24 00:00:00: Portfolio Value - 1609179.02\n", - "2015-08-25 00:00:00: Portfolio Value - 1576084.68\n", - "2015-08-26 00:00:00: Portfolio Value - 1624400.81\n", - "2015-08-27 00:00:00: Portfolio Value - 1662635.19\n", - "2015-08-28 00:00:00: Portfolio Value - 1647559.68\n", - "2015-08-31 00:00:00: Portfolio Value - 1613881.78\n", - "2015-09-01 00:00:00: Portfolio Value - 1534569.70\n", - "2015-09-02 00:00:00: Portfolio Value - 1564972.04\n", - "2015-09-03 00:00:00: Portfolio Value - 1579452.02\n", - "2015-09-04 00:00:00: Portfolio Value - 1540597.96\n", - "2015-09-08 00:00:00: Portfolio Value - 1603715.27\n", - "2015-09-09 00:00:00: Portfolio Value - 1554316.45\n", - "2015-09-10 00:00:00: Portfolio Value - 1535108.10\n", - "2015-09-11 00:00:00: Portfolio Value - 1529870.04\n", - "2015-09-14 00:00:00: Portfolio Value - 1527359.84\n", - "2015-09-15 00:00:00: Portfolio Value - 1546561.39\n", - "2015-09-16 00:00:00: Portfolio Value - 1575425.65\n", - "2015-09-17 00:00:00: Portfolio Value - 1588204.39\n", - "2015-09-18 00:00:00: Portfolio Value - 1568302.27\n", - "2015-09-21 00:00:00: Portfolio Value - 1604046.48\n", - "2015-09-22 00:00:00: Portfolio Value - 1587653.01\n", - "2015-09-23 00:00:00: Portfolio Value - 1602883.57\n", - "2015-09-24 00:00:00: Portfolio Value - 1606924.40\n", - "2015-09-25 00:00:00: Portfolio Value - 1609688.43\n", - "2015-09-28 00:00:00: Portfolio Value - 1565555.99\n", - "2015-09-29 00:00:00: Portfolio Value - 1581795.11\n", - "2015-09-30 00:00:00: Portfolio Value - 1597326.84\n", - "2015-10-01 00:00:00: Portfolio Value - 1600421.56\n", - "2015-10-02 00:00:00: Portfolio Value - 1649448.20\n", - "2015-10-05 00:00:00: Portfolio Value - 1698344.30\n", - "2015-10-06 00:00:00: Portfolio Value - 1694002.88\n", - "2015-10-07 00:00:00: Portfolio Value - 1730679.14\n", - "2015-10-08 00:00:00: Portfolio Value - 1755947.11\n", - "2015-10-09 00:00:00: Portfolio Value - 1757216.93\n", - "2015-10-12 00:00:00: Portfolio Value - 1776092.58\n", - "2015-10-13 00:00:00: Portfolio Value - 1764863.13\n", - "2015-10-14 00:00:00: Portfolio Value - 1731835.68\n", - "2015-10-15 00:00:00: Portfolio Value - 1744022.03\n", - "2015-10-16 00:00:00: Portfolio Value - 1778059.33\n", - "2015-10-19 00:00:00: Portfolio Value - 1783073.94\n", - "2015-10-20 00:00:00: Portfolio Value - 1789833.34\n", - "2015-10-21 00:00:00: Portfolio Value - 1790511.26\n", - "2015-10-22 00:00:00: Portfolio Value - 1796696.50\n", - "2015-10-23 00:00:00: Portfolio Value - 1819432.78\n", - "2015-10-26 00:00:00: Portfolio Value - 1804088.87\n", - "2015-10-27 00:00:00: Portfolio Value - 1798323.20\n", - "2015-10-28 00:00:00: Portfolio Value - 1757844.56\n", - "2015-10-29 00:00:00: Portfolio Value - 1769146.38\n", - "2015-10-30 00:00:00: Portfolio Value - 1761156.23\n", - "2015-11-02 00:00:00: Portfolio Value - 1796789.32\n", - "2015-11-03 00:00:00: Portfolio Value - 1789442.68\n", - "2015-11-04 00:00:00: Portfolio Value - 1820727.36\n", - "2015-11-05 00:00:00: Portfolio Value - 1819087.38\n", - "2015-11-06 00:00:00: Portfolio Value - 1794178.25\n", - "2015-11-09 00:00:00: Portfolio Value - 1786067.03\n", - "2015-11-10 00:00:00: Portfolio Value - 1795299.88\n", - "2015-11-11 00:00:00: Portfolio Value - 1822045.19\n", - "2015-11-12 00:00:00: Portfolio Value - 1783482.50\n", - "2015-11-13 00:00:00: Portfolio Value - 1784088.89\n", - "2015-11-16 00:00:00: Portfolio Value - 1821733.88\n", - "2015-11-17 00:00:00: Portfolio Value - 1799039.81\n", - "2015-11-18 00:00:00: Portfolio Value - 1830973.74\n", - "2015-11-19 00:00:00: Portfolio Value - 1826180.57\n", - "2015-11-20 00:00:00: Portfolio Value - 1860718.99\n", - "2015-11-23 00:00:00: Portfolio Value - 1871571.29\n", - "2015-11-24 00:00:00: Portfolio Value - 1871178.05\n", - "2015-11-25 00:00:00: Portfolio Value - 1871241.55\n", - "2015-11-27 00:00:00: Portfolio Value - 1881508.81\n", - "2015-11-30 00:00:00: Portfolio Value - 1869788.60\n", - "2015-12-01 00:00:00: Portfolio Value - 1914597.99\n", - "2015-12-02 00:00:00: Portfolio Value - 1897446.07\n", - "2015-12-03 00:00:00: Portfolio Value - 1863187.76\n", - "2015-12-04 00:00:00: Portfolio Value - 1910711.09\n", - "2015-12-07 00:00:00: Portfolio Value - 1914392.60\n", - "2015-12-08 00:00:00: Portfolio Value - 1913865.11\n", - "2015-12-09 00:00:00: Portfolio Value - 1873447.23\n", - "2015-12-10 00:00:00: Portfolio Value - 1874059.31\n", - "2015-12-11 00:00:00: Portfolio Value - 1884141.53\n", - "2015-12-14 00:00:00: Portfolio Value - 1879548.80\n", - "2015-12-15 00:00:00: Portfolio Value - 1905593.06\n", - "2015-12-16 00:00:00: Portfolio Value - 1944095.60\n", - "2015-12-17 00:00:00: Portfolio Value - 1930120.88\n", - "2015-12-18 00:00:00: Portfolio Value - 1864513.81\n", - "2015-12-21 00:00:00: Portfolio Value - 1863089.66\n", - "2015-12-22 00:00:00: Portfolio Value - 1886045.75\n", - "2015-12-23 00:00:00: Portfolio Value - 1918347.73\n", - "2015-12-24 00:00:00: Portfolio Value - 1923261.20\n", - "2015-12-28 00:00:00: Portfolio Value - 1927525.93\n", - "2015-12-29 00:00:00: Portfolio Value - 1981769.51\n", - "2015-12-30 00:00:00: Portfolio Value - 1964341.53\n", - "2015-12-31 00:00:00: Portfolio Value - 1922557.50\n", - "2016-01-04 00:00:00: Portfolio Value - 1833100.72\n", - "2016-01-05 00:00:00: Portfolio Value - 1859652.03\n", - "2016-01-06 00:00:00: Portfolio Value - 1849963.93\n", - "2016-01-07 00:00:00: Portfolio Value - 1767233.76\n", - "2016-01-08 00:00:00: Portfolio Value - 1772585.72\n", - "2016-01-11 00:00:00: Portfolio Value - 1775425.39\n", - "2016-01-12 00:00:00: Portfolio Value - 1809658.10\n", - "2016-01-13 00:00:00: Portfolio Value - 1779787.07\n", - "2016-01-14 00:00:00: Portfolio Value - 1821262.03\n", - "2016-01-15 00:00:00: Portfolio Value - 1807956.72\n", - "2016-01-19 00:00:00: Portfolio Value - 1803804.06\n", - "2016-01-20 00:00:00: Portfolio Value - 1756902.20\n", - "2016-01-21 00:00:00: Portfolio Value - 1757665.22\n", - "2016-01-22 00:00:00: Portfolio Value - 1822668.08\n", - "2016-01-25 00:00:00: Portfolio Value - 1805534.43\n", - "2016-01-26 00:00:00: Portfolio Value - 1798942.80\n", - "2016-01-27 00:00:00: Portfolio Value - 1780971.79\n", - "2016-01-28 00:00:00: Portfolio Value - 1786475.31\n", - "2016-01-29 00:00:00: Portfolio Value - 1844355.45\n", - "2016-02-01 00:00:00: Portfolio Value - 1876579.34\n", - "2016-02-02 00:00:00: Portfolio Value - 1840486.27\n", - "2016-02-03 00:00:00: Portfolio Value - 1842499.67\n", - "2016-02-04 00:00:00: Portfolio Value - 1789503.60\n", - "2016-02-05 00:00:00: Portfolio Value - 1762694.61\n", - "2016-02-08 00:00:00: Portfolio Value - 1757863.03\n", - "2016-02-09 00:00:00: Portfolio Value - 1795924.43\n", - "2016-02-10 00:00:00: Portfolio Value - 1783032.48\n", - "2016-02-11 00:00:00: Portfolio Value - 1771252.89\n", - "2016-02-12 00:00:00: Portfolio Value - 1805481.60\n", - "2016-02-16 00:00:00: Portfolio Value - 1842828.21\n", - "2016-02-17 00:00:00: Portfolio Value - 1854997.48\n", - "2016-02-18 00:00:00: Portfolio Value - 1860417.04\n", - "2016-02-19 00:00:00: Portfolio Value - 1859246.68\n", - "2016-02-22 00:00:00: Portfolio Value - 1871644.63\n", - "2016-02-23 00:00:00: Portfolio Value - 1869373.97\n", - "2016-02-24 00:00:00: Portfolio Value - 1901829.46\n", - "2016-02-25 00:00:00: Portfolio Value - 1939102.39\n", - "2016-02-26 00:00:00: Portfolio Value - 1903916.91\n", - "2016-02-29 00:00:00: Portfolio Value - 1875578.97\n", - "2016-03-01 00:00:00: Portfolio Value - 1897136.33\n", - "2016-03-02 00:00:00: Portfolio Value - 1919077.72\n", - "2016-03-03 00:00:00: Portfolio Value - 1924885.72\n", - "2016-03-04 00:00:00: Portfolio Value - 1936108.55\n", - "2016-03-07 00:00:00: Portfolio Value - 1927820.85\n", - "2016-03-08 00:00:00: Portfolio Value - 1946510.29\n", - "2016-03-09 00:00:00: Portfolio Value - 1954945.79\n", - "2016-03-10 00:00:00: Portfolio Value - 1961282.78\n", - "2016-03-11 00:00:00: Portfolio Value - 1973512.29\n", - "2016-03-14 00:00:00: Portfolio Value - 1971128.08\n", - "2016-03-15 00:00:00: Portfolio Value - 1982167.26\n", - "2016-03-16 00:00:00: Portfolio Value - 1987994.17\n", - "2016-03-17 00:00:00: Portfolio Value - 2000066.60\n", - "2016-03-18 00:00:00: Portfolio Value - 1982100.34\n", - "2016-03-21 00:00:00: Portfolio Value - 1981615.92\n", - "2016-03-22 00:00:00: Portfolio Value - 1976275.01\n", - "2016-03-23 00:00:00: Portfolio Value - 1971465.40\n", - "2016-03-24 00:00:00: Portfolio Value - 1960071.21\n", - "2016-03-28 00:00:00: Portfolio Value - 1969551.38\n", - "2016-03-29 00:00:00: Portfolio Value - 1998028.79\n", - "2016-03-30 00:00:00: Portfolio Value - 2009265.77\n", - "2016-03-31 00:00:00: Portfolio Value - 2007565.22\n", - "2016-04-01 00:00:00: Portfolio Value - 2050981.20\n", - "2016-04-04 00:00:00: Portfolio Value - 2044192.46\n", - "2016-04-05 00:00:00: Portfolio Value - 1995297.27\n", - "2016-04-06 00:00:00: Portfolio Value - 2025972.55\n", - "2016-04-07 00:00:00: Portfolio Value - 2003686.83\n", - "2016-04-08 00:00:00: Portfolio Value - 1984010.26\n", - "2016-04-11 00:00:00: Portfolio Value - 1971852.25\n", - "2016-04-12 00:00:00: Portfolio Value - 2007103.83\n", - "2016-04-13 00:00:00: Portfolio Value - 2012509.70\n", - "2016-04-14 00:00:00: Portfolio Value - 1996606.50\n", - "2016-04-15 00:00:00: Portfolio Value - 2030244.34\n", - "2016-04-18 00:00:00: Portfolio Value - 2056825.34\n", - "2016-04-19 00:00:00: Portfolio Value - 2040459.56\n", - "2016-04-20 00:00:00: Portfolio Value - 2014718.65\n", - "2016-04-21 00:00:00: Portfolio Value - 1982685.11\n", - "2016-04-22 00:00:00: Portfolio Value - 2014019.01\n", - "2016-04-25 00:00:00: Portfolio Value - 2026201.48\n", - "2016-04-26 00:00:00: Portfolio Value - 2032210.20\n", - "2016-04-27 00:00:00: Portfolio Value - 2014841.68\n", - "2016-04-28 00:00:00: Portfolio Value - 2021484.54\n", - "2016-04-29 00:00:00: Portfolio Value - 2021824.65\n", - "2016-05-02 00:00:00: Portfolio Value - 2035222.04\n", - "2016-05-03 00:00:00: Portfolio Value - 2050510.79\n", - "2016-05-04 00:00:00: Portfolio Value - 2092683.93\n", - "2016-05-05 00:00:00: Portfolio Value - 2130822.57\n", - "2016-05-06 00:00:00: Portfolio Value - 2098164.52\n", - "2016-05-09 00:00:00: Portfolio Value - 2142146.06\n", - "2016-05-10 00:00:00: Portfolio Value - 2187330.82\n", - "2016-05-11 00:00:00: Portfolio Value - 2174812.69\n", - "2016-05-12 00:00:00: Portfolio Value - 2189984.61\n", - "2016-05-13 00:00:00: Portfolio Value - 2166914.48\n", - "2016-05-16 00:00:00: Portfolio Value - 2187042.65\n", - "2016-05-17 00:00:00: Portfolio Value - 2133606.49\n", - "2016-05-18 00:00:00: Portfolio Value - 2119702.03\n", - "2016-05-19 00:00:00: Portfolio Value - 2128957.12\n", - "2016-05-20 00:00:00: Portfolio Value - 2136293.66\n", - "2016-05-23 00:00:00: Portfolio Value - 2126173.68\n", - "2016-05-24 00:00:00: Portfolio Value - 2170016.10\n", - "2016-05-25 00:00:00: Portfolio Value - 2145471.98\n", - "2016-05-26 00:00:00: Portfolio Value - 2158602.68\n", - "2016-05-27 00:00:00: Portfolio Value - 2138596.11\n", - "2016-05-31 00:00:00: Portfolio Value - 2136551.68\n", - "2016-06-01 00:00:00: Portfolio Value - 2143392.19\n", - "2016-06-02 00:00:00: Portfolio Value - 2163023.85\n", - "2016-06-03 00:00:00: Portfolio Value - 2163819.15\n", - "2016-06-06 00:00:00: Portfolio Value - 2161925.69\n", - "2016-06-07 00:00:00: Portfolio Value - 2172617.20\n", - "2016-06-08 00:00:00: Portfolio Value - 2189939.39\n", - "2016-06-09 00:00:00: Portfolio Value - 2219868.40\n", - "2016-06-10 00:00:00: Portfolio Value - 2195568.80\n", - "2016-06-13 00:00:00: Portfolio Value - 2177264.85\n", - "2016-06-14 00:00:00: Portfolio Value - 2205395.59\n", - "2016-06-15 00:00:00: Portfolio Value - 2156750.13\n", - "2016-06-16 00:00:00: Portfolio Value - 2169022.08\n", - "2016-06-17 00:00:00: Portfolio Value - 2155391.34\n", - "2016-06-20 00:00:00: Portfolio Value - 2184974.47\n", - "2016-06-21 00:00:00: Portfolio Value - 2236154.78\n", - "2016-06-22 00:00:00: Portfolio Value - 2234020.98\n", - "2016-06-23 00:00:00: Portfolio Value - 2263407.77\n", - "2016-06-24 00:00:00: Portfolio Value - 2145266.64\n", - "2016-06-27 00:00:00: Portfolio Value - 2116054.08\n", - "2016-06-28 00:00:00: Portfolio Value - 2162230.75\n", - "2016-06-29 00:00:00: Portfolio Value - 2216851.62\n", - "2016-06-30 00:00:00: Portfolio Value - 2303525.06\n", - "2016-07-01 00:00:00: Portfolio Value - 2296809.25\n", - "2016-07-05 00:00:00: Portfolio Value - 2336701.20\n", - "2016-07-06 00:00:00: Portfolio Value - 2330154.73\n", - "2016-07-07 00:00:00: Portfolio Value - 2309028.83\n", - "2016-07-08 00:00:00: Portfolio Value - 2343195.11\n", - "2016-07-11 00:00:00: Portfolio Value - 2327406.57\n", - "2016-07-12 00:00:00: Portfolio Value - 2303897.64\n", - "2016-07-13 00:00:00: Portfolio Value - 2323411.20\n", - "2016-07-14 00:00:00: Portfolio Value - 2317264.14\n", - "2016-07-15 00:00:00: Portfolio Value - 2295439.31\n", - "2016-07-18 00:00:00: Portfolio Value - 2282600.78\n", - "2016-07-19 00:00:00: Portfolio Value - 2299294.07\n", - "2016-07-20 00:00:00: Portfolio Value - 2306364.61\n", - "2016-07-21 00:00:00: Portfolio Value - 2294706.61\n", - "2016-07-22 00:00:00: Portfolio Value - 2312923.86\n", - "2016-07-25 00:00:00: Portfolio Value - 2309321.57\n", - "2016-07-26 00:00:00: Portfolio Value - 2316894.40\n", - "2016-07-27 00:00:00: Portfolio Value - 2282666.64\n", - "2016-07-28 00:00:00: Portfolio Value - 2286230.03\n", - "2016-07-29 00:00:00: Portfolio Value - 2310486.18\n", - "2016-08-01 00:00:00: Portfolio Value - 2337577.71\n", - "2016-08-02 00:00:00: Portfolio Value - 2307757.88\n", - "2016-08-03 00:00:00: Portfolio Value - 2267430.73\n", - "2016-08-04 00:00:00: Portfolio Value - 2276459.45\n", - "2016-08-05 00:00:00: Portfolio Value - 2253719.08\n", - "2016-08-08 00:00:00: Portfolio Value - 2260763.16\n", - "2016-08-09 00:00:00: Portfolio Value - 2279306.19\n", - "2016-08-10 00:00:00: Portfolio Value - 2301849.86\n", - "2016-08-11 00:00:00: Portfolio Value - 2310312.78\n", - "2016-08-12 00:00:00: Portfolio Value - 2289121.66\n", - "2016-08-15 00:00:00: Portfolio Value - 2274043.23\n", - "2016-08-16 00:00:00: Portfolio Value - 2266388.57\n", - "2016-08-17 00:00:00: Portfolio Value - 2281672.56\n", - "2016-08-18 00:00:00: Portfolio Value - 2292609.85\n", - "2016-08-19 00:00:00: Portfolio Value - 2294504.89\n", - "2016-08-22 00:00:00: Portfolio Value - 2306558.56\n", - "2016-08-23 00:00:00: Portfolio Value - 2276532.02\n", - "2016-08-24 00:00:00: Portfolio Value - 2274681.09\n", - "2016-08-25 00:00:00: Portfolio Value - 2301324.93\n", - "2016-08-26 00:00:00: Portfolio Value - 2325232.29\n", - "2016-08-29 00:00:00: Portfolio Value - 2350097.27\n", - "2016-08-30 00:00:00: Portfolio Value - 2353884.00\n", - "2016-08-31 00:00:00: Portfolio Value - 2357987.41\n", - "2016-09-01 00:00:00: Portfolio Value - 2365523.50\n", - "2016-09-02 00:00:00: Portfolio Value - 2394445.94\n", - "2016-09-06 00:00:00: Portfolio Value - 2411337.86\n", - "2016-09-07 00:00:00: Portfolio Value - 2403912.15\n", - "2016-09-08 00:00:00: Portfolio Value - 2350490.12\n", - "2016-09-09 00:00:00: Portfolio Value - 2241868.36\n", - "2016-09-12 00:00:00: Portfolio Value - 2291598.19\n", - "2016-09-13 00:00:00: Portfolio Value - 2257492.67\n", - "2016-09-14 00:00:00: Portfolio Value - 2250229.09\n", - "2016-09-15 00:00:00: Portfolio Value - 2302855.76\n", - "2016-09-16 00:00:00: Portfolio Value - 2279838.49\n", - "2016-09-19 00:00:00: Portfolio Value - 2288698.54\n", - "2016-09-20 00:00:00: Portfolio Value - 2304773.95\n", - "2016-09-21 00:00:00: Portfolio Value - 2355119.63\n", - "2016-09-22 00:00:00: Portfolio Value - 2406548.40\n", - "2016-09-23 00:00:00: Portfolio Value - 2378706.44\n", - "2016-09-26 00:00:00: Portfolio Value - 2359984.30\n", - "2016-09-27 00:00:00: Portfolio Value - 2373336.67\n", - "2016-09-28 00:00:00: Portfolio Value - 2373992.04\n", - "2016-09-29 00:00:00: Portfolio Value - 2346953.85\n", - "2016-09-30 00:00:00: Portfolio Value - 2383975.65\n", - "2016-10-03 00:00:00: Portfolio Value - 2347117.31\n", - "2016-10-04 00:00:00: Portfolio Value - 2294395.14\n", - "2016-10-05 00:00:00: Portfolio Value - 2280495.76\n", - "2016-10-06 00:00:00: Portfolio Value - 2288404.47\n", - "2016-10-07 00:00:00: Portfolio Value - 2275020.53\n", - "2016-10-10 00:00:00: Portfolio Value - 2292776.70\n", - "2016-10-11 00:00:00: Portfolio Value - 2230456.98\n", - "2016-10-12 00:00:00: Portfolio Value - 2262436.55\n", - "2016-10-13 00:00:00: Portfolio Value - 2218505.37\n", - "2016-10-14 00:00:00: Portfolio Value - 2224011.99\n", - "2016-10-17 00:00:00: Portfolio Value - 2221011.16\n", - "2016-10-18 00:00:00: Portfolio Value - 2236233.69\n", - "2016-10-19 00:00:00: Portfolio Value - 2222191.56\n", - "2016-10-20 00:00:00: Portfolio Value - 2195245.50\n", - "2016-10-21 00:00:00: Portfolio Value - 2199660.03\n", - "2016-10-24 00:00:00: Portfolio Value - 2203839.70\n", - "2016-10-25 00:00:00: Portfolio Value - 2207061.49\n", - "2016-10-26 00:00:00: Portfolio Value - 2151748.95\n", - "2016-10-27 00:00:00: Portfolio Value - 2129138.00\n", - "2016-10-28 00:00:00: Portfolio Value - 2146001.06\n", - "2016-10-31 00:00:00: Portfolio Value - 2152347.84\n", - "2016-11-01 00:00:00: Portfolio Value - 2098290.61\n", - "2016-11-02 00:00:00: Portfolio Value - 2067067.62\n", - "2016-11-03 00:00:00: Portfolio Value - 2120740.58\n", - "2016-11-04 00:00:00: Portfolio Value - 2059693.40\n", - "2016-11-07 00:00:00: Portfolio Value - 2105067.39\n", - "2016-11-08 00:00:00: Portfolio Value - 2132413.06\n", - "2016-11-09 00:00:00: Portfolio Value - 2059938.32\n", - "2016-11-10 00:00:00: Portfolio Value - 2050292.45\n", - "2016-11-11 00:00:00: Portfolio Value - 2028870.81\n", - "2016-11-14 00:00:00: Portfolio Value - 1967861.16\n", - "2016-11-15 00:00:00: Portfolio Value - 1996386.28\n", - "2016-11-16 00:00:00: Portfolio Value - 2002475.27\n", - "2016-11-17 00:00:00: Portfolio Value - 2032173.76\n", - "2016-11-18 00:00:00: Portfolio Value - 2043137.91\n", - "2016-11-21 00:00:00: Portfolio Value - 2039384.12\n", - "2016-11-22 00:00:00: Portfolio Value - 2006659.77\n", - "2016-11-23 00:00:00: Portfolio Value - 1998601.94\n", - "2016-11-25 00:00:00: Portfolio Value - 2038744.13\n", - "2016-11-28 00:00:00: Portfolio Value - 2062128.96\n", - "2016-11-29 00:00:00: Portfolio Value - 2100457.43\n", - "2016-11-30 00:00:00: Portfolio Value - 2019804.82\n", - "2016-12-01 00:00:00: Portfolio Value - 1927335.24\n", - "2016-12-02 00:00:00: Portfolio Value - 1940869.13\n", - "2016-12-05 00:00:00: Portfolio Value - 1937963.33\n", - "2016-12-06 00:00:00: Portfolio Value - 1966694.72\n", - "2016-12-07 00:00:00: Portfolio Value - 1985470.15\n", - "2016-12-08 00:00:00: Portfolio Value - 1969112.22\n", - "2016-12-09 00:00:00: Portfolio Value - 2011953.26\n", - "2016-12-12 00:00:00: Portfolio Value - 2029777.08\n", - "2016-12-13 00:00:00: Portfolio Value - 2053122.16\n", - "2016-12-14 00:00:00: Portfolio Value - 2005058.08\n", - "2016-12-15 00:00:00: Portfolio Value - 2014272.21\n", - "2016-12-16 00:00:00: Portfolio Value - 2023631.82\n", - "2016-12-19 00:00:00: Portfolio Value - 2038346.62\n", - "2016-12-20 00:00:00: Portfolio Value - 2028423.92\n", - "2016-12-21 00:00:00: Portfolio Value - 2017345.89\n", - "2016-12-22 00:00:00: Portfolio Value - 2033637.22\n", - "2016-12-23 00:00:00: Portfolio Value - 2043144.66\n", - "2016-12-27 00:00:00: Portfolio Value - 2048163.06\n", - "2016-12-28 00:00:00: Portfolio Value - 2017465.66\n", - "2016-12-29 00:00:00: Portfolio Value - 2044205.85\n", - "2016-12-30 00:00:00: Portfolio Value - 2029431.01\n", - "2017-01-03 00:00:00: Portfolio Value - 2028100.80\n", - "2017-01-04 00:00:00: Portfolio Value - 2036374.51\n", - "2017-01-05 00:00:00: Portfolio Value - 2040635.34\n", - "2017-01-06 00:00:00: Portfolio Value - 2066059.41\n", - "2017-01-09 00:00:00: Portfolio Value - 2038823.15\n", - "2017-01-10 00:00:00: Portfolio Value - 2041177.93\n", - "2017-01-11 00:00:00: Portfolio Value - 2058231.45\n", - "2017-01-12 00:00:00: Portfolio Value - 2063410.56\n", - "2017-01-13 00:00:00: Portfolio Value - 2068785.20\n", - "2017-01-17 00:00:00: Portfolio Value - 2085462.67\n", - "2017-01-18 00:00:00: Portfolio Value - 2082591.05\n", - "2017-01-19 00:00:00: Portfolio Value - 2073089.75\n", - "2017-01-20 00:00:00: Portfolio Value - 2082752.98\n", - "2017-01-23 00:00:00: Portfolio Value - 2070449.79\n", - "2017-01-24 00:00:00: Portfolio Value - 2115228.00\n", - "2017-01-25 00:00:00: Portfolio Value - 2131890.46\n", - "2017-01-26 00:00:00: Portfolio Value - 2115069.31\n", - "2017-01-27 00:00:00: Portfolio Value - 2125837.71\n", - "2017-01-30 00:00:00: Portfolio Value - 2117760.48\n", - "2017-01-31 00:00:00: Portfolio Value - 2132560.81\n", - "2017-02-01 00:00:00: Portfolio Value - 2116652.09\n", - "2017-02-02 00:00:00: Portfolio Value - 2135144.48\n", - "2017-02-03 00:00:00: Portfolio Value - 2183006.64\n", - "2017-02-06 00:00:00: Portfolio Value - 2158767.41\n", - "2017-02-07 00:00:00: Portfolio Value - 2190189.07\n", - "2017-02-08 00:00:00: Portfolio Value - 2204273.85\n", - "2017-02-09 00:00:00: Portfolio Value - 2200719.47\n", - "2017-02-10 00:00:00: Portfolio Value - 2223279.04\n", - "2017-02-13 00:00:00: Portfolio Value - 2237810.12\n", - "2017-02-14 00:00:00: Portfolio Value - 2225975.88\n", - "2017-02-15 00:00:00: Portfolio Value - 2239383.55\n", - "2017-02-16 00:00:00: Portfolio Value - 2288793.68\n", - "2017-02-17 00:00:00: Portfolio Value - 2325790.33\n", - "2017-02-21 00:00:00: Portfolio Value - 2329308.67\n", - "2017-02-22 00:00:00: Portfolio Value - 2322054.68\n", - "2017-02-23 00:00:00: Portfolio Value - 2335653.40\n", - "2017-02-24 00:00:00: Portfolio Value - 2365901.02\n", - "2017-02-27 00:00:00: Portfolio Value - 2351360.31\n", - "2017-02-28 00:00:00: Portfolio Value - 2355785.66\n", - "2017-03-01 00:00:00: Portfolio Value - 2402370.90\n", - "2017-03-02 00:00:00: Portfolio Value - 2376040.24\n", - "2017-03-03 00:00:00: Portfolio Value - 2361552.70\n", - "2017-03-06 00:00:00: Portfolio Value - 2341994.58\n", - "2017-03-07 00:00:00: Portfolio Value - 2339347.06\n", - "2017-03-08 00:00:00: Portfolio Value - 2302763.53\n", - "2017-03-09 00:00:00: Portfolio Value - 2312259.75\n", - "2017-03-10 00:00:00: Portfolio Value - 2305086.53\n", - "2017-03-13 00:00:00: Portfolio Value - 2313991.90\n", - "2017-03-14 00:00:00: Portfolio Value - 2289397.08\n", - "2017-03-15 00:00:00: Portfolio Value - 2327196.37\n", - "2017-03-16 00:00:00: Portfolio Value - 2293464.76\n", - "2017-03-17 00:00:00: Portfolio Value - 2328001.50\n", - "2017-03-20 00:00:00: Portfolio Value - 2319851.36\n", - "2017-03-21 00:00:00: Portfolio Value - 2332127.55\n", - "2017-03-22 00:00:00: Portfolio Value - 2343309.57\n", - "2017-03-23 00:00:00: Portfolio Value - 2357198.36\n", - "2017-03-24 00:00:00: Portfolio Value - 2369068.12\n", - "2017-03-27 00:00:00: Portfolio Value - 2365192.47\n", - "2017-03-28 00:00:00: Portfolio Value - 2372344.46\n", - "2017-03-29 00:00:00: Portfolio Value - 2373776.88\n", - "2017-03-30 00:00:00: Portfolio Value - 2351769.41\n", - "2017-03-31 00:00:00: Portfolio Value - 2354693.98\n", - "2017-04-03 00:00:00: Portfolio Value - 2331590.89\n", - "2017-04-04 00:00:00: Portfolio Value - 2323511.80\n", - "2017-04-05 00:00:00: Portfolio Value - 2310406.12\n", - "2017-04-06 00:00:00: Portfolio Value - 2298533.11\n", - "2017-04-07 00:00:00: Portfolio Value - 2288538.95\n", - "2017-04-10 00:00:00: Portfolio Value - 2297127.88\n", - "2017-04-11 00:00:00: Portfolio Value - 2304927.91\n", - "2017-04-12 00:00:00: Portfolio Value - 2298574.61\n", - "2017-04-13 00:00:00: Portfolio Value - 2289531.24\n", - "2017-04-17 00:00:00: Portfolio Value - 2366195.19\n", - "2017-04-18 00:00:00: Portfolio Value - 2378660.81\n", - "2017-04-19 00:00:00: Portfolio Value - 2401205.30\n", - "2017-04-20 00:00:00: Portfolio Value - 2419854.66\n", - "2017-04-21 00:00:00: Portfolio Value - 2401920.13\n", - "2017-04-24 00:00:00: Portfolio Value - 2381502.12\n", - "2017-04-25 00:00:00: Portfolio Value - 2412764.90\n", - "2017-04-26 00:00:00: Portfolio Value - 2413559.41\n", - "2017-04-27 00:00:00: Portfolio Value - 2446772.59\n", - "2017-04-28 00:00:00: Portfolio Value - 2425407.07\n", - "2017-05-01 00:00:00: Portfolio Value - 2429065.23\n", - "2017-05-02 00:00:00: Portfolio Value - 2394591.58\n", - "2017-05-03 00:00:00: Portfolio Value - 2350993.42\n", - "2017-05-04 00:00:00: Portfolio Value - 2448577.14\n", - "2017-05-05 00:00:00: Portfolio Value - 2482916.22\n", - "2017-05-08 00:00:00: Portfolio Value - 2447470.31\n", - "2017-05-09 00:00:00: Portfolio Value - 2403472.19\n", - "2017-05-10 00:00:00: Portfolio Value - 2411606.24\n", - "2017-05-11 00:00:00: Portfolio Value - 2450263.35\n", - "2017-05-12 00:00:00: Portfolio Value - 2447647.51\n", - "2017-05-15 00:00:00: Portfolio Value - 2465746.73\n", - "2017-05-16 00:00:00: Portfolio Value - 2435442.08\n", - "2017-05-17 00:00:00: Portfolio Value - 2421818.16\n", - "2017-05-18 00:00:00: Portfolio Value - 2404521.96\n", - "2017-05-19 00:00:00: Portfolio Value - 2435667.63\n", - "2017-05-22 00:00:00: Portfolio Value - 2466449.81\n", - "2017-05-23 00:00:00: Portfolio Value - 2481831.03\n", - "2017-05-24 00:00:00: Portfolio Value - 2524536.42\n", - "2017-05-25 00:00:00: Portfolio Value - 2548429.76\n", - "2017-05-26 00:00:00: Portfolio Value - 2531597.21\n", - "2017-05-30 00:00:00: Portfolio Value - 2558239.43\n", - "2017-05-31 00:00:00: Portfolio Value - 2605839.49\n", - "2017-06-01 00:00:00: Portfolio Value - 2637086.41\n", - "2017-06-02 00:00:00: Portfolio Value - 2644834.50\n", - "2017-06-05 00:00:00: Portfolio Value - 2646738.14\n", - "2017-06-06 00:00:00: Portfolio Value - 2627118.91\n", - "2017-06-07 00:00:00: Portfolio Value - 2645139.39\n", - "2017-06-08 00:00:00: Portfolio Value - 2615798.47\n", - "2017-06-09 00:00:00: Portfolio Value - 2606080.27\n", - "2017-06-12 00:00:00: Portfolio Value - 2623911.84\n", - "2017-06-13 00:00:00: Portfolio Value - 2654158.13\n", - "2017-06-14 00:00:00: Portfolio Value - 2676502.59\n", - "2017-06-15 00:00:00: Portfolio Value - 2712400.61\n", - "2017-06-16 00:00:00: Portfolio Value - 2724910.16\n", - "2017-06-19 00:00:00: Portfolio Value - 2751039.01\n", - "2017-06-20 00:00:00: Portfolio Value - 2740028.64\n", - "2017-06-21 00:00:00: Portfolio Value - 2714182.71\n", - "2017-06-22 00:00:00: Portfolio Value - 2686749.01\n", - "2017-06-23 00:00:00: Portfolio Value - 2683804.66\n", - "2017-06-26 00:00:00: Portfolio Value - 2676837.54\n", - "2017-06-27 00:00:00: Portfolio Value - 2652195.24\n", - "2017-06-28 00:00:00: Portfolio Value - 2653668.50\n", - "2017-06-29 00:00:00: Portfolio Value - 2608435.05\n", - "2017-06-30 00:00:00: Portfolio Value - 2626979.33\n", - "2017-07-03 00:00:00: Portfolio Value - 2630988.05\n", - "2017-07-05 00:00:00: Portfolio Value - 2644708.31\n", - "2017-07-06 00:00:00: Portfolio Value - 2621227.37\n", - "2017-07-07 00:00:00: Portfolio Value - 2659237.00\n", - "2017-07-10 00:00:00: Portfolio Value - 2663617.42\n", - "2017-07-11 00:00:00: Portfolio Value - 2647750.35\n", - "2017-07-12 00:00:00: Portfolio Value - 2670532.95\n", - "2017-07-13 00:00:00: Portfolio Value - 2662697.80\n", - "2017-07-14 00:00:00: Portfolio Value - 2704391.37\n", - "2017-07-17 00:00:00: Portfolio Value - 2726696.27\n", - "2017-07-18 00:00:00: Portfolio Value - 2737376.78\n", - "2017-07-19 00:00:00: Portfolio Value - 2745554.86\n", - "2017-07-20 00:00:00: Portfolio Value - 2766739.26\n", - "2017-07-21 00:00:00: Portfolio Value - 2808492.82\n", - "2017-07-24 00:00:00: Portfolio Value - 2812035.03\n", - "2017-07-25 00:00:00: Portfolio Value - 2815376.44\n", - "2017-07-26 00:00:00: Portfolio Value - 2816276.24\n", - "2017-07-27 00:00:00: Portfolio Value - 2798944.05\n", - "2017-07-28 00:00:00: Portfolio Value - 2819471.65\n", - "2017-07-31 00:00:00: Portfolio Value - 2801269.51\n", - "2017-08-01 00:00:00: Portfolio Value - 2805302.17\n", - "2017-08-02 00:00:00: Portfolio Value - 2755080.28\n", - "2017-08-03 00:00:00: Portfolio Value - 2762861.11\n", - "2017-08-04 00:00:00: Portfolio Value - 2759457.74\n", - "2017-08-07 00:00:00: Portfolio Value - 2750797.36\n", - "2017-08-08 00:00:00: Portfolio Value - 2729081.34\n", - "2017-08-09 00:00:00: Portfolio Value - 2725729.49\n", - "2017-08-10 00:00:00: Portfolio Value - 2728797.95\n", - "2017-08-11 00:00:00: Portfolio Value - 2747183.49\n", - "2017-08-14 00:00:00: Portfolio Value - 2797915.73\n", - "2017-08-15 00:00:00: Portfolio Value - 2806049.62\n", - "2017-08-16 00:00:00: Portfolio Value - 2805052.11\n", - "2017-08-17 00:00:00: Portfolio Value - 2777588.28\n", - "2017-08-18 00:00:00: Portfolio Value - 2775916.48\n", - "2017-08-21 00:00:00: Portfolio Value - 2821576.17\n", - "2017-08-22 00:00:00: Portfolio Value - 2846460.88\n", - "2017-08-23 00:00:00: Portfolio Value - 2808208.64\n", - "2017-08-24 00:00:00: Portfolio Value - 2782125.77\n", - "2017-08-25 00:00:00: Portfolio Value - 2834792.91\n", - "2017-08-28 00:00:00: Portfolio Value - 2847059.73\n", - "2017-08-29 00:00:00: Portfolio Value - 2839233.96\n", - "2017-08-30 00:00:00: Portfolio Value - 2830766.33\n", - "2017-08-31 00:00:00: Portfolio Value - 2870841.84\n", - "2017-09-01 00:00:00: Portfolio Value - 2859304.23\n", - "2017-09-05 00:00:00: Portfolio Value - 2869037.87\n", - "2017-09-06 00:00:00: Portfolio Value - 2851949.03\n", - "2017-09-07 00:00:00: Portfolio Value - 2864945.59\n", - "2017-09-08 00:00:00: Portfolio Value - 2937060.92\n", - "2017-09-11 00:00:00: Portfolio Value - 2966606.04\n", - "2017-09-12 00:00:00: Portfolio Value - 2968265.41\n", - "2017-09-13 00:00:00: Portfolio Value - 2893394.74\n", - "2017-09-14 00:00:00: Portfolio Value - 2910140.32\n", - "2017-09-15 00:00:00: Portfolio Value - 2917466.16\n", - "2017-09-18 00:00:00: Portfolio Value - 2912546.48\n", - "2017-09-19 00:00:00: Portfolio Value - 2898048.95\n", - "2017-09-20 00:00:00: Portfolio Value - 2898422.26\n", - "2017-09-21 00:00:00: Portfolio Value - 2845642.50\n", - "2017-09-22 00:00:00: Portfolio Value - 2866133.98\n", - "2017-09-25 00:00:00: Portfolio Value - 2876426.25\n", - "2017-09-26 00:00:00: Portfolio Value - 2895738.15\n", - "2017-09-27 00:00:00: Portfolio Value - 2869554.26\n", - "2017-09-28 00:00:00: Portfolio Value - 2862278.73\n", - "2017-09-29 00:00:00: Portfolio Value - 2885179.93\n", - "2017-10-02 00:00:00: Portfolio Value - 2897288.19\n", - "2017-10-03 00:00:00: Portfolio Value - 2869606.71\n", - "2017-10-04 00:00:00: Portfolio Value - 2899596.33\n", - "2017-10-05 00:00:00: Portfolio Value - 2909536.21\n", - "2017-10-06 00:00:00: Portfolio Value - 2916246.67\n", - "2017-10-09 00:00:00: Portfolio Value - 2904677.76\n", - "2017-10-10 00:00:00: Portfolio Value - 2936239.74\n", - "2017-10-11 00:00:00: Portfolio Value - 2969076.28\n", - "2017-10-12 00:00:00: Portfolio Value - 3031654.54\n", - "2017-10-13 00:00:00: Portfolio Value - 3046044.31\n", - "2017-10-16 00:00:00: Portfolio Value - 3049494.23\n", - "2017-10-17 00:00:00: Portfolio Value - 3073144.24\n", - "2017-10-18 00:00:00: Portfolio Value - 3097397.53\n", - "2017-10-19 00:00:00: Portfolio Value - 3109948.67\n", - "2017-10-20 00:00:00: Portfolio Value - 3113322.37\n", - "2017-10-23 00:00:00: Portfolio Value - 3126370.21\n", - "2017-10-24 00:00:00: Portfolio Value - 3101033.47\n", - "2017-10-25 00:00:00: Portfolio Value - 3106079.62\n", - "2017-10-26 00:00:00: Portfolio Value - 3098902.42\n", - "2017-10-27 00:00:00: Portfolio Value - 3134443.60\n", - "2017-10-30 00:00:00: Portfolio Value - 3101514.88\n", - "2017-10-31 00:00:00: Portfolio Value - 3130633.80\n", - "2017-11-01 00:00:00: Portfolio Value - 3171976.27\n", - "2017-11-02 00:00:00: Portfolio Value - 3245689.82\n", - "2017-11-03 00:00:00: Portfolio Value - 3252261.04\n", - "2017-11-06 00:00:00: Portfolio Value - 3243375.01\n", - "2017-11-07 00:00:00: Portfolio Value - 3261590.89\n", - "2017-11-08 00:00:00: Portfolio Value - 3293955.67\n", - "2017-11-09 00:00:00: Portfolio Value - 3295394.78\n", - "2017-11-10 00:00:00: Portfolio Value - 3272411.81\n", - "2017-11-13 00:00:00: Portfolio Value - 3311766.97\n", - "2017-11-14 00:00:00: Portfolio Value - 3358246.54\n", - "2017-11-15 00:00:00: Portfolio Value - 3332028.70\n", - "2017-11-16 00:00:00: Portfolio Value - 3330553.36\n", - "2017-11-17 00:00:00: Portfolio Value - 3301962.45\n", - "2017-11-20 00:00:00: Portfolio Value - 3334471.67\n", - "2017-11-21 00:00:00: Portfolio Value - 3390084.56\n", - "2017-11-22 00:00:00: Portfolio Value - 3358929.83\n", - "2017-11-24 00:00:00: Portfolio Value - 3382614.69\n", - "2017-11-27 00:00:00: Portfolio Value - 3387851.72\n", - "2017-11-28 00:00:00: Portfolio Value - 3420504.78\n", - "2017-11-29 00:00:00: Portfolio Value - 3406619.88\n", - "2017-11-30 00:00:00: Portfolio Value - 3432806.15\n", - "2017-12-01 00:00:00: Portfolio Value - 3417422.78\n", - "2017-12-04 00:00:00: Portfolio Value - 3359444.64\n", - "2017-12-05 00:00:00: Portfolio Value - 3361467.66\n", - "2017-12-06 00:00:00: Portfolio Value - 3370693.11\n", - "2017-12-07 00:00:00: Portfolio Value - 3356016.03\n", - "2017-12-08 00:00:00: Portfolio Value - 3375034.23\n", - "2017-12-11 00:00:00: Portfolio Value - 3357211.51\n", - "2017-12-12 00:00:00: Portfolio Value - 3336018.61\n", - "2017-12-13 00:00:00: Portfolio Value - 3315610.91\n", - "2017-12-14 00:00:00: Portfolio Value - 3319245.24\n", - "2017-12-15 00:00:00: Portfolio Value - 3381622.59\n", - "2017-12-18 00:00:00: Portfolio Value - 3376511.48\n", - "2017-12-19 00:00:00: Portfolio Value - 3360443.04\n", - "2017-12-20 00:00:00: Portfolio Value - 3344492.06\n", - "2017-12-21 00:00:00: Portfolio Value - 3303693.34\n", - "2017-12-22 00:00:00: Portfolio Value - 3304961.07\n", - "2017-12-26 00:00:00: Portfolio Value - 3306475.87\n", - "2017-12-27 00:00:00: Portfolio Value - 3312121.36\n", - "2017-12-28 00:00:00: Portfolio Value - 3304257.64\n", - "2017-12-29 00:00:00: Portfolio Value - 3291096.47\n", - "2018-01-02 00:00:00: Portfolio Value - 3231891.83\n", - "2018-01-03 00:00:00: Portfolio Value - 3233435.74\n", - "2018-01-04 00:00:00: Portfolio Value - 3280083.40\n", - "2018-01-05 00:00:00: Portfolio Value - 3313038.83\n", - "2018-01-08 00:00:00: Portfolio Value - 3342831.44\n", - "2018-01-09 00:00:00: Portfolio Value - 3365363.15\n", - "2018-01-10 00:00:00: Portfolio Value - 3331329.12\n", - "2018-01-11 00:00:00: Portfolio Value - 3330049.86\n", - "2018-01-12 00:00:00: Portfolio Value - 3338362.53\n", - "2018-01-16 00:00:00: Portfolio Value - 3323777.79\n", - "2018-01-17 00:00:00: Portfolio Value - 3388250.75\n", - "2018-01-18 00:00:00: Portfolio Value - 3362677.32\n", - "2018-01-19 00:00:00: Portfolio Value - 3394610.12\n", - "2018-01-22 00:00:00: Portfolio Value - 3433326.42\n", - "2018-01-23 00:00:00: Portfolio Value - 3538514.07\n", - "2018-01-24 00:00:00: Portfolio Value - 3538312.06\n", - "2018-01-25 00:00:00: Portfolio Value - 3604930.48\n", - "2018-01-26 00:00:00: Portfolio Value - 3669298.74\n", - "2018-01-29 00:00:00: Portfolio Value - 3625311.97\n", - "2018-01-30 00:00:00: Portfolio Value - 3615978.10\n", - "2018-01-31 00:00:00: Portfolio Value - 3637518.28\n", - "2018-02-01 00:00:00: Portfolio Value - 3634408.72\n", - "2018-02-02 00:00:00: Portfolio Value - 3518839.77\n", - "2018-02-05 00:00:00: Portfolio Value - 3346261.30\n", - "2018-02-06 00:00:00: Portfolio Value - 3340598.76\n", - "2018-02-07 00:00:00: Portfolio Value - 3314050.43\n", - "2018-02-08 00:00:00: Portfolio Value - 3186191.17\n", - "2018-02-09 00:00:00: Portfolio Value - 3250128.17\n", - "2018-02-12 00:00:00: Portfolio Value - 3315786.46\n", - "2018-02-13 00:00:00: Portfolio Value - 3323250.48\n", - "2018-02-14 00:00:00: Portfolio Value - 3418547.62\n", - "2018-02-15 00:00:00: Portfolio Value - 3481135.44\n", - "2018-02-16 00:00:00: Portfolio Value - 3487443.98\n", - "2018-02-20 00:00:00: Portfolio Value - 3433473.03\n", - "2018-02-21 00:00:00: Portfolio Value - 3408881.17\n", - "2018-02-22 00:00:00: Portfolio Value - 3407443.31\n", - "2018-02-23 00:00:00: Portfolio Value - 3483888.21\n", - "2018-02-26 00:00:00: Portfolio Value - 3571368.66\n", - "2018-02-27 00:00:00: Portfolio Value - 3536107.90\n", - "2018-02-28 00:00:00: Portfolio Value - 3476827.73\n", - "2018-03-01 00:00:00: Portfolio Value - 3431507.94\n", - "2018-03-02 00:00:00: Portfolio Value - 3464323.82\n", - "2018-03-05 00:00:00: Portfolio Value - 3518255.93\n", - "2018-03-06 00:00:00: Portfolio Value - 3520153.29\n", - "2018-03-07 00:00:00: Portfolio Value - 3535897.39\n", - "2018-03-08 00:00:00: Portfolio Value - 3603491.40\n", - "2018-03-09 00:00:00: Portfolio Value - 3682727.75\n", - "2018-03-12 00:00:00: Portfolio Value - 3644434.04\n", - "2018-03-13 00:00:00: Portfolio Value - 3634907.19\n", - "2018-03-14 00:00:00: Portfolio Value - 3628316.07\n", - "2018-03-15 00:00:00: Portfolio Value - 3617223.56\n", - "2018-03-16 00:00:00: Portfolio Value - 3598856.14\n", - "2018-03-19 00:00:00: Portfolio Value - 3560803.14\n", - "2018-03-20 00:00:00: Portfolio Value - 3585771.99\n", - "2018-03-21 00:00:00: Portfolio Value - 3532094.58\n", - "2018-03-22 00:00:00: Portfolio Value - 3466034.69\n", - "2018-03-23 00:00:00: Portfolio Value - 3420618.16\n", - "2018-03-26 00:00:00: Portfolio Value - 3488338.98\n", - "2018-03-27 00:00:00: Portfolio Value - 3453295.28\n", - "2018-03-28 00:00:00: Portfolio Value - 3474977.06\n", - "2018-03-29 00:00:00: Portfolio Value - 3570794.57\n", - "2018-04-02 00:00:00: Portfolio Value - 3455811.98\n", - "2018-04-03 00:00:00: Portfolio Value - 3487996.04\n", - "2018-04-04 00:00:00: Portfolio Value - 3517780.42\n", - "2018-04-05 00:00:00: Portfolio Value - 3521069.80\n", - "2018-04-06 00:00:00: Portfolio Value - 3464200.98\n", - "2018-04-09 00:00:00: Portfolio Value - 3470215.11\n", - "2018-04-10 00:00:00: Portfolio Value - 3513143.46\n", - "2018-04-11 00:00:00: Portfolio Value - 3510239.22\n", - "2018-04-12 00:00:00: Portfolio Value - 3509345.04\n", - "2018-04-13 00:00:00: Portfolio Value - 3537621.98\n", - "2018-04-16 00:00:00: Portfolio Value - 3617907.57\n", - "2018-04-17 00:00:00: Portfolio Value - 3665667.53\n", - "2018-04-18 00:00:00: Portfolio Value - 3664804.40\n", - "2018-04-19 00:00:00: Portfolio Value - 3606833.47\n", - "2018-04-20 00:00:00: Portfolio Value - 3529089.44\n", - "2018-04-23 00:00:00: Portfolio Value - 3528283.55\n", - "2018-04-24 00:00:00: Portfolio Value - 3512190.88\n", - "2018-04-25 00:00:00: Portfolio Value - 3512422.10\n", - "2018-04-26 00:00:00: Portfolio Value - 3549189.96\n", - "2018-04-27 00:00:00: Portfolio Value - 3568804.30\n", - "2018-04-30 00:00:00: Portfolio Value - 3515147.35\n", - "2018-05-01 00:00:00: Portfolio Value - 3468847.43\n", - "2018-05-02 00:00:00: Portfolio Value - 3355156.76\n", - "2018-05-03 00:00:00: Portfolio Value - 3380219.33\n", - "2018-05-04 00:00:00: Portfolio Value - 3369154.12\n", - "2018-05-07 00:00:00: Portfolio Value - 3404478.17\n", - "2018-05-08 00:00:00: Portfolio Value - 3389033.62\n", - "2018-05-09 00:00:00: Portfolio Value - 3411663.76\n", - "2018-05-10 00:00:00: Portfolio Value - 3489955.02\n", - "2018-05-11 00:00:00: Portfolio Value - 3499324.21\n", - "2018-05-14 00:00:00: Portfolio Value - 3462090.57\n", - "2018-05-15 00:00:00: Portfolio Value - 3410195.14\n", - "2018-05-16 00:00:00: Portfolio Value - 3402744.36\n", - "2018-05-17 00:00:00: Portfolio Value - 3387209.38\n", - "2018-05-18 00:00:00: Portfolio Value - 3412228.90\n", - "2018-05-21 00:00:00: Portfolio Value - 3473578.19\n", - "2018-05-22 00:00:00: Portfolio Value - 3430654.59\n", - "2018-05-23 00:00:00: Portfolio Value - 3463593.25\n", - "2018-05-24 00:00:00: Portfolio Value - 3478107.00\n", - "2018-05-25 00:00:00: Portfolio Value - 3478983.76\n", - "2018-05-29 00:00:00: Portfolio Value - 3420554.91\n", - "2018-05-30 00:00:00: Portfolio Value - 3502271.55\n", - "2018-05-31 00:00:00: Portfolio Value - 3445289.29\n", - "2018-06-01 00:00:00: Portfolio Value - 3488685.33\n", - "2018-06-04 00:00:00: Portfolio Value - 3519169.98\n", - "2018-06-05 00:00:00: Portfolio Value - 3539364.69\n", - "2018-06-06 00:00:00: Portfolio Value - 3564369.46\n", - "2018-06-07 00:00:00: Portfolio Value - 3560517.83\n", - "2018-06-08 00:00:00: Portfolio Value - 3629027.68\n", - "2018-06-11 00:00:00: Portfolio Value - 3631751.17\n", - "2018-06-12 00:00:00: Portfolio Value - 3660233.84\n", - "2018-06-13 00:00:00: Portfolio Value - 3641474.35\n", - "2018-06-14 00:00:00: Portfolio Value - 3640346.46\n", - "2018-06-15 00:00:00: Portfolio Value - 3630444.81\n", - "2018-06-18 00:00:00: Portfolio Value - 3627195.14\n", - "2018-06-19 00:00:00: Portfolio Value - 3639031.88\n", - "2018-06-20 00:00:00: Portfolio Value - 3603960.70\n", - "2018-06-21 00:00:00: Portfolio Value - 3620674.65\n", - "2018-06-22 00:00:00: Portfolio Value - 3674257.02\n", - "2018-06-25 00:00:00: Portfolio Value - 3687247.92\n", - "2018-06-26 00:00:00: Portfolio Value - 3714338.60\n", - "2018-06-27 00:00:00: Portfolio Value - 3657351.78\n", - "2018-06-28 00:00:00: Portfolio Value - 3707883.37\n", - "2018-06-29 00:00:00: Portfolio Value - 3728720.07\n", - "2018-07-02 00:00:00: Portfolio Value - 3738333.46\n", - "2018-07-03 00:00:00: Portfolio Value - 3743470.51\n", - "2018-07-05 00:00:00: Portfolio Value - 3806686.49\n", - "2018-07-06 00:00:00: Portfolio Value - 3856254.19\n", - "2018-07-09 00:00:00: Portfolio Value - 3839877.37\n", - "2018-07-10 00:00:00: Portfolio Value - 3841783.00\n", - "2018-07-11 00:00:00: Portfolio Value - 3856788.16\n", - "2018-07-12 00:00:00: Portfolio Value - 3911285.23\n", - "2018-07-13 00:00:00: Portfolio Value - 3924543.00\n", - "2018-07-16 00:00:00: Portfolio Value - 3898280.21\n", - "2018-07-17 00:00:00: Portfolio Value - 3934917.08\n", - "2018-07-18 00:00:00: Portfolio Value - 3889297.02\n", - "2018-07-19 00:00:00: Portfolio Value - 3909555.44\n", - "2018-07-20 00:00:00: Portfolio Value - 3940227.00\n", - "2018-07-23 00:00:00: Portfolio Value - 3943836.63\n", - "2018-07-24 00:00:00: Portfolio Value - 3932287.40\n", - "2018-07-25 00:00:00: Portfolio Value - 3990934.23\n", - "2018-07-26 00:00:00: Portfolio Value - 4021665.22\n", - "2018-07-27 00:00:00: Portfolio Value - 3977029.30\n", - "2018-07-30 00:00:00: Portfolio Value - 3932497.52\n", - "2018-07-31 00:00:00: Portfolio Value - 3996330.00\n", - "2018-08-01 00:00:00: Portfolio Value - 4041759.40\n", - "2018-08-02 00:00:00: Portfolio Value - 4019006.48\n", - "2018-08-03 00:00:00: Portfolio Value - 4033597.62\n", - "2018-08-06 00:00:00: Portfolio Value - 4069273.23\n", - "2018-08-07 00:00:00: Portfolio Value - 4068308.33\n", - "2018-08-08 00:00:00: Portfolio Value - 4140629.07\n", - "2018-08-09 00:00:00: Portfolio Value - 4166446.00\n", - "2018-08-10 00:00:00: Portfolio Value - 4161040.95\n", - "2018-08-13 00:00:00: Portfolio Value - 4138555.32\n", - "2018-08-14 00:00:00: Portfolio Value - 4153984.99\n", - "2018-08-15 00:00:00: Portfolio Value - 4190499.69\n", - "2018-08-16 00:00:00: Portfolio Value - 4215154.10\n", - "2018-08-17 00:00:00: Portfolio Value - 4237071.90\n", - "2018-08-20 00:00:00: Portfolio Value - 4221094.24\n", - "2018-08-21 00:00:00: Portfolio Value - 4185694.84\n", - "2018-08-22 00:00:00: Portfolio Value - 4182755.59\n", - "2018-08-23 00:00:00: Portfolio Value - 4199343.50\n", - "2018-08-24 00:00:00: Portfolio Value - 4225096.85\n", - "2018-08-27 00:00:00: Portfolio Value - 4222488.81\n", - "2018-08-28 00:00:00: Portfolio Value - 4234824.89\n", - "2018-08-29 00:00:00: Portfolio Value - 4264105.11\n", - "2018-08-30 00:00:00: Portfolio Value - 4252800.31\n", - "2018-08-31 00:00:00: Portfolio Value - 4246066.37\n", - "2018-09-04 00:00:00: Portfolio Value - 4278011.84\n", - "2018-09-05 00:00:00: Portfolio Value - 4263926.79\n", - "2018-09-06 00:00:00: Portfolio Value - 4295571.69\n", - "2018-09-07 00:00:00: Portfolio Value - 4279076.75\n", - "2018-09-10 00:00:00: Portfolio Value - 4292493.65\n", - "2018-09-11 00:00:00: Portfolio Value - 4301827.87\n", - "2018-09-12 00:00:00: Portfolio Value - 4327895.21\n", - "2018-09-13 00:00:00: Portfolio Value - 4416645.34\n", - "2018-09-14 00:00:00: Portfolio Value - 4415593.76\n", - "2018-09-17 00:00:00: Portfolio Value - 4365895.80\n", - "2018-09-18 00:00:00: Portfolio Value - 4399851.12\n", - "2018-09-19 00:00:00: Portfolio Value - 4333986.71\n", - "2018-09-20 00:00:00: Portfolio Value - 4360604.93\n", - "2018-09-21 00:00:00: Portfolio Value - 4361512.62\n", - "2018-09-24 00:00:00: Portfolio Value - 4316093.26\n", - "2018-09-25 00:00:00: Portfolio Value - 4332063.92\n", - "2018-09-26 00:00:00: Portfolio Value - 4307753.40\n", - "2018-09-27 00:00:00: Portfolio Value - 4296117.09\n", - "2018-09-28 00:00:00: Portfolio Value - 4320117.77\n", - "2018-10-01 00:00:00: Portfolio Value - 4324800.24\n", - "2018-10-02 00:00:00: Portfolio Value - 4340713.56\n", - "2018-10-03 00:00:00: Portfolio Value - 4251048.41\n", - "2018-10-04 00:00:00: Portfolio Value - 4198290.88\n", - "2018-10-05 00:00:00: Portfolio Value - 4240236.94\n", - "2018-10-08 00:00:00: Portfolio Value - 4212920.78\n", - "2018-10-09 00:00:00: Portfolio Value - 4225389.03\n", - "2018-10-10 00:00:00: Portfolio Value - 4033910.65\n", - "2018-10-11 00:00:00: Portfolio Value - 3913112.36\n", - "2018-10-12 00:00:00: Portfolio Value - 3991888.61\n", - "2018-10-15 00:00:00: Portfolio Value - 3968605.12\n", - "2018-10-16 00:00:00: Portfolio Value - 4108954.75\n", - "2018-10-17 00:00:00: Portfolio Value - 4116367.80\n", - "2018-10-18 00:00:00: Portfolio Value - 4048896.56\n", - "2018-10-19 00:00:00: Portfolio Value - 4052835.50\n", - "2018-10-22 00:00:00: Portfolio Value - 4038856.76\n", - "2018-10-23 00:00:00: Portfolio Value - 3969078.23\n", - "2018-10-24 00:00:00: Portfolio Value - 3920317.95\n", - "2018-10-25 00:00:00: Portfolio Value - 3942284.68\n", - "2018-10-26 00:00:00: Portfolio Value - 3932098.53\n", - "2018-10-29 00:00:00: Portfolio Value - 3954093.86\n", - "2018-10-30 00:00:00: Portfolio Value - 4073944.47\n", - "2018-10-31 00:00:00: Portfolio Value - 4071448.80\n", - "2018-11-01 00:00:00: Portfolio Value - 4108059.56\n", - "2018-11-02 00:00:00: Portfolio Value - 4154951.77\n", - "2018-11-05 00:00:00: Portfolio Value - 4195101.52\n", - "2018-11-06 00:00:00: Portfolio Value - 4245104.42\n", - "2018-11-07 00:00:00: Portfolio Value - 4227215.15\n", - "2018-11-08 00:00:00: Portfolio Value - 4289177.20\n", - "2018-11-09 00:00:00: Portfolio Value - 4304720.14\n", - "2018-11-12 00:00:00: Portfolio Value - 4254276.82\n", - "2018-11-13 00:00:00: Portfolio Value - 4218467.56\n", - "2018-11-14 00:00:00: Portfolio Value - 4205157.97\n", - "2018-11-15 00:00:00: Portfolio Value - 4298927.36\n", - "2018-11-16 00:00:00: Portfolio Value - 4332288.06\n", - "2018-11-19 00:00:00: Portfolio Value - 4296161.80\n", - "2018-11-20 00:00:00: Portfolio Value - 4237124.44\n", - "2018-11-21 00:00:00: Portfolio Value - 4255530.17\n", - "2018-11-23 00:00:00: Portfolio Value - 4290272.08\n", - "2018-11-26 00:00:00: Portfolio Value - 4311153.00\n", - "2018-11-27 00:00:00: Portfolio Value - 4358396.47\n", - "2018-11-28 00:00:00: Portfolio Value - 4459986.85\n", - "2018-11-29 00:00:00: Portfolio Value - 4468842.66\n", - "2018-11-30 00:00:00: Portfolio Value - 4503117.64\n", - "2018-12-03 00:00:00: Portfolio Value - 4518895.45\n", - "2018-12-04 00:00:00: Portfolio Value - 4414655.26\n", - "2018-12-06 00:00:00: Portfolio Value - 4395367.82\n", - "2018-12-07 00:00:00: Portfolio Value - 4366513.07\n", - "2018-12-10 00:00:00: Portfolio Value - 4401143.66\n", - "2018-12-11 00:00:00: Portfolio Value - 4455604.29\n", - "2018-12-12 00:00:00: Portfolio Value - 4461196.53\n", - "2018-12-13 00:00:00: Portfolio Value - 4491327.21\n", - "2018-12-14 00:00:00: Portfolio Value - 4413902.68\n", - "2018-12-17 00:00:00: Portfolio Value - 4237118.82\n", - "2018-12-18 00:00:00: Portfolio Value - 4229702.11\n", - "2018-12-19 00:00:00: Portfolio Value - 4191391.90\n", - "2018-12-20 00:00:00: Portfolio Value - 4106609.15\n", - "2018-12-21 00:00:00: Portfolio Value - 4052510.49\n", - "2018-12-24 00:00:00: Portfolio Value - 3887843.39\n", - "2018-12-26 00:00:00: Portfolio Value - 4077923.57\n", - "2018-12-27 00:00:00: Portfolio Value - 4177119.75\n", - "2018-12-28 00:00:00: Portfolio Value - 4182993.29\n", - "2018-12-31 00:00:00: Portfolio Value - 4233332.17\n", - "2019-01-02 00:00:00: Portfolio Value - 4093352.24\n", - "2019-01-03 00:00:00: Portfolio Value - 3955560.47\n", - "2019-01-04 00:00:00: Portfolio Value - 4082860.25\n", - "2019-01-07 00:00:00: Portfolio Value - 4091799.46\n", - "2019-01-08 00:00:00: Portfolio Value - 4130219.81\n", - "2019-01-09 00:00:00: Portfolio Value - 4159399.84\n", - "2019-01-10 00:00:00: Portfolio Value - 4229206.84\n", - "2019-01-11 00:00:00: Portfolio Value - 4199667.67\n", - "2019-01-14 00:00:00: Portfolio Value - 4156801.66\n", - "2019-01-15 00:00:00: Portfolio Value - 4239624.39\n", - "2019-01-16 00:00:00: Portfolio Value - 4238569.48\n", - "2019-01-17 00:00:00: Portfolio Value - 4279704.62\n", - "2019-01-18 00:00:00: Portfolio Value - 4364184.77\n", - "2019-01-22 00:00:00: Portfolio Value - 4326820.08\n", - "2019-01-23 00:00:00: Portfolio Value - 4344662.57\n", - "2019-01-24 00:00:00: Portfolio Value - 4333566.90\n", - "2019-01-25 00:00:00: Portfolio Value - 4195865.68\n", - "2019-01-28 00:00:00: Portfolio Value - 4148005.14\n", - "2019-01-29 00:00:00: Portfolio Value - 4151486.62\n", - "2019-01-30 00:00:00: Portfolio Value - 4207884.34\n", - "2019-01-31 00:00:00: Portfolio Value - 4306743.83\n", - "2019-02-01 00:00:00: Portfolio Value - 4348057.18\n", - "2019-02-04 00:00:00: Portfolio Value - 4419047.05\n", - "2019-02-05 00:00:00: Portfolio Value - 4364110.75\n", - "2019-02-06 00:00:00: Portfolio Value - 4375352.81\n", - "2019-02-07 00:00:00: Portfolio Value - 4390218.44\n", - "2019-02-08 00:00:00: Portfolio Value - 4477282.63\n", - "2019-02-11 00:00:00: Portfolio Value - 4519272.85\n", - "2019-02-12 00:00:00: Portfolio Value - 4543385.83\n", - "2019-02-13 00:00:00: Portfolio Value - 4554757.88\n", - "2019-02-14 00:00:00: Portfolio Value - 4525158.91\n", - "2019-02-15 00:00:00: Portfolio Value - 4567619.28\n", - "2019-02-19 00:00:00: Portfolio Value - 4560971.41\n", - "2019-02-20 00:00:00: Portfolio Value - 4542154.89\n", - "2019-02-21 00:00:00: Portfolio Value - 4589791.05\n", - "2019-02-22 00:00:00: Portfolio Value - 4628114.30\n", - "2019-02-25 00:00:00: Portfolio Value - 4606231.72\n", - "2019-02-26 00:00:00: Portfolio Value - 4576992.57\n", - "2019-02-27 00:00:00: Portfolio Value - 4605703.34\n", - "2019-02-28 00:00:00: Portfolio Value - 4628195.83\n", - "2019-03-01 00:00:00: Portfolio Value - 4666187.36\n", - "2019-03-04 00:00:00: Portfolio Value - 4647178.20\n", - "2019-03-05 00:00:00: Portfolio Value - 4699787.30\n", - "2019-03-06 00:00:00: Portfolio Value - 4582712.94\n", - "2019-03-07 00:00:00: Portfolio Value - 4580159.66\n", - "2019-03-08 00:00:00: Portfolio Value - 4573300.56\n", - "2019-03-11 00:00:00: Portfolio Value - 4629772.56\n", - "2019-03-12 00:00:00: Portfolio Value - 4647936.99\n", - "2019-03-13 00:00:00: Portfolio Value - 4675756.15\n", - "2019-03-14 00:00:00: Portfolio Value - 4670693.15\n", - "2019-03-15 00:00:00: Portfolio Value - 4668124.40\n", - "2019-03-18 00:00:00: Portfolio Value - 4574981.15\n", - "2019-03-19 00:00:00: Portfolio Value - 4582190.72\n", - "2019-03-20 00:00:00: Portfolio Value - 4560240.35\n", - "2019-03-21 00:00:00: Portfolio Value - 4640509.43\n", - "2019-03-22 00:00:00: Portfolio Value - 4605330.30\n", - "2019-03-25 00:00:00: Portfolio Value - 4628235.79\n", - "2019-03-26 00:00:00: Portfolio Value - 4701287.09\n", - "2019-03-27 00:00:00: Portfolio Value - 4667178.47\n", - "2019-03-28 00:00:00: Portfolio Value - 4695653.86\n", - "2019-03-29 00:00:00: Portfolio Value - 4726274.00\n", - "2019-04-01 00:00:00: Portfolio Value - 4727167.48\n", - "2019-04-02 00:00:00: Portfolio Value - 4726317.62\n", - "2019-04-03 00:00:00: Portfolio Value - 4708426.70\n", - "2019-04-04 00:00:00: Portfolio Value - 4697141.06\n", - "2019-04-05 00:00:00: Portfolio Value - 4675208.07\n", - "2019-04-08 00:00:00: Portfolio Value - 4669842.01\n", - "2019-04-09 00:00:00: Portfolio Value - 4677748.91\n", - "2019-04-10 00:00:00: Portfolio Value - 4705632.91\n", - "2019-04-11 00:00:00: Portfolio Value - 4746018.87\n", - "2019-04-12 00:00:00: Portfolio Value - 4740098.46\n", - "2019-04-15 00:00:00: Portfolio Value - 4760557.00\n", - "2019-04-16 00:00:00: Portfolio Value - 4665757.97\n", - "2019-04-17 00:00:00: Portfolio Value - 4525356.42\n", - "2019-04-18 00:00:00: Portfolio Value - 4583687.24\n", - "2019-04-22 00:00:00: Portfolio Value - 4594403.21\n", - "2019-04-23 00:00:00: Portfolio Value - 4657867.64\n", - "2019-04-24 00:00:00: Portfolio Value - 4700413.28\n", - "2019-04-25 00:00:00: Portfolio Value - 4759329.38\n", - "2019-04-26 00:00:00: Portfolio Value - 4796737.78\n", - "2019-04-29 00:00:00: Portfolio Value - 4775907.26\n", - "2019-04-30 00:00:00: Portfolio Value - 4913684.73\n", - "2019-05-01 00:00:00: Portfolio Value - 4749010.51\n", - "2019-05-02 00:00:00: Portfolio Value - 4787908.68\n", - "2019-05-03 00:00:00: Portfolio Value - 4874937.16\n", - "2019-05-06 00:00:00: Portfolio Value - 4869792.31\n", - "2019-05-07 00:00:00: Portfolio Value - 4770994.07\n", - "2019-05-08 00:00:00: Portfolio Value - 4823478.66\n", - "2019-05-09 00:00:00: Portfolio Value - 4792998.05\n", - "2019-05-10 00:00:00: Portfolio Value - 4819516.48\n", - "2019-05-13 00:00:00: Portfolio Value - 4820127.16\n", - "2019-05-14 00:00:00: Portfolio Value - 4803717.45\n", - "2019-05-15 00:00:00: Portfolio Value - 4867673.94\n", - "2019-05-16 00:00:00: Portfolio Value - 4936883.62\n", - "2019-05-17 00:00:00: Portfolio Value - 4925354.24\n", - "2019-05-20 00:00:00: Portfolio Value - 4911412.64\n", - "2019-05-21 00:00:00: Portfolio Value - 4973046.83\n", - "2019-05-22 00:00:00: Portfolio Value - 5043723.52\n", - "2019-05-23 00:00:00: Portfolio Value - 5028523.73\n", - "2019-05-24 00:00:00: Portfolio Value - 5029758.32\n", - "2019-05-28 00:00:00: Portfolio Value - 4973470.99\n", - "2019-05-29 00:00:00: Portfolio Value - 4966709.68\n", - "2019-05-30 00:00:00: Portfolio Value - 5036636.80\n", - "2019-05-31 00:00:00: Portfolio Value - 4999089.43\n", - "2019-06-03 00:00:00: Portfolio Value - 5032914.93\n", - "2019-06-04 00:00:00: Portfolio Value - 5068754.18\n", - "2019-06-05 00:00:00: Portfolio Value - 5217446.79\n", - "2019-06-06 00:00:00: Portfolio Value - 5249290.63\n", - "2019-06-07 00:00:00: Portfolio Value - 5290191.41\n", - "2019-06-10 00:00:00: Portfolio Value - 5301952.15\n", - "2019-06-11 00:00:00: Portfolio Value - 5237813.83\n", - "2019-06-12 00:00:00: Portfolio Value - 5287493.09\n", - "2019-06-13 00:00:00: Portfolio Value - 5266262.00\n", - "2019-06-14 00:00:00: Portfolio Value - 5266746.85\n", - "2019-06-17 00:00:00: Portfolio Value - 5231085.44\n", - "2019-06-18 00:00:00: Portfolio Value - 5206316.90\n", - "2019-06-19 00:00:00: Portfolio Value - 5215843.44\n", - "2019-06-20 00:00:00: Portfolio Value - 5300995.50\n", - "2019-06-21 00:00:00: Portfolio Value - 5266137.74\n", - "2019-06-24 00:00:00: Portfolio Value - 5348816.05\n", - "2019-06-25 00:00:00: Portfolio Value - 5288047.02\n", - "2019-06-26 00:00:00: Portfolio Value - 5169377.98\n", - "2019-06-27 00:00:00: Portfolio Value - 5254512.58\n", - "2019-06-28 00:00:00: Portfolio Value - 5309196.60\n", - "2019-07-01 00:00:00: Portfolio Value - 5386499.52\n", - "2019-07-02 00:00:00: Portfolio Value - 5422140.29\n", - "2019-07-03 00:00:00: Portfolio Value - 5501061.57\n", - "2019-07-05 00:00:00: Portfolio Value - 5477693.72\n", - "2019-07-08 00:00:00: Portfolio Value - 5432041.36\n", - "2019-07-09 00:00:00: Portfolio Value - 5451566.37\n", - "2019-07-10 00:00:00: Portfolio Value - 5484169.46\n", - "2019-07-11 00:00:00: Portfolio Value - 5519658.13\n", - "2019-07-12 00:00:00: Portfolio Value - 5507284.26\n", - "2019-07-15 00:00:00: Portfolio Value - 5527364.49\n", - "2019-07-16 00:00:00: Portfolio Value - 5490445.66\n", - "2019-07-17 00:00:00: Portfolio Value - 5502524.71\n", - "2019-07-18 00:00:00: Portfolio Value - 5594818.69\n", - "2019-07-19 00:00:00: Portfolio Value - 5522249.71\n", - "2019-07-22 00:00:00: Portfolio Value - 5529588.90\n", - "2019-07-23 00:00:00: Portfolio Value - 5569278.29\n", - "2019-07-24 00:00:00: Portfolio Value - 5573794.27\n", - "2019-07-25 00:00:00: Portfolio Value - 5540526.18\n", - "2019-07-26 00:00:00: Portfolio Value - 5622454.03\n", - "2019-07-29 00:00:00: Portfolio Value - 5657072.10\n", - "2019-07-30 00:00:00: Portfolio Value - 5669726.95\n", - "2019-07-31 00:00:00: Portfolio Value - 5564594.34\n", - "2019-08-01 00:00:00: Portfolio Value - 5592598.01\n", - "2019-08-02 00:00:00: Portfolio Value - 5583481.99\n", - "2019-08-05 00:00:00: Portfolio Value - 5362212.19\n", - "2019-08-06 00:00:00: Portfolio Value - 5502006.13\n", - "2019-08-07 00:00:00: Portfolio Value - 5674290.06\n", - "2019-08-08 00:00:00: Portfolio Value - 5778844.96\n", - "2019-08-09 00:00:00: Portfolio Value - 5789309.44\n", - "2019-08-12 00:00:00: Portfolio Value - 5725003.91\n", - "2019-08-13 00:00:00: Portfolio Value - 5791376.30\n", - "2019-08-14 00:00:00: Portfolio Value - 5667187.87\n", - "2019-08-15 00:00:00: Portfolio Value - 5765973.29\n", - "2019-08-16 00:00:00: Portfolio Value - 5863415.51\n", - "2019-08-19 00:00:00: Portfolio Value - 5920266.07\n", - "2019-08-20 00:00:00: Portfolio Value - 5852503.41\n", - "2019-08-21 00:00:00: Portfolio Value - 5904189.13\n", - "2019-08-22 00:00:00: Portfolio Value - 5914317.71\n", - "2019-08-23 00:00:00: Portfolio Value - 5764468.26\n", - "2019-08-26 00:00:00: Portfolio Value - 5833812.43\n", - "2019-08-27 00:00:00: Portfolio Value - 5889806.94\n", - "2019-08-28 00:00:00: Portfolio Value - 5921513.24\n", - "2019-08-29 00:00:00: Portfolio Value - 5958395.04\n", - "2019-08-30 00:00:00: Portfolio Value - 6121428.37\n", - "2019-09-03 00:00:00: Portfolio Value - 6090340.97\n", - "2019-09-04 00:00:00: Portfolio Value - 6196368.81\n", - "2019-09-05 00:00:00: Portfolio Value - 6164358.74\n", - "2019-09-06 00:00:00: Portfolio Value - 6191569.90\n", - "2019-09-09 00:00:00: Portfolio Value - 5975038.49\n", - "2019-09-10 00:00:00: Portfolio Value - 5833926.32\n", - "2019-09-11 00:00:00: Portfolio Value - 5850437.26\n", - "2019-09-12 00:00:00: Portfolio Value - 5927277.94\n", - "2019-09-13 00:00:00: Portfolio Value - 5858916.64\n", - "2019-09-16 00:00:00: Portfolio Value - 5838176.47\n", - "2019-09-17 00:00:00: Portfolio Value - 5943996.49\n", - "2019-09-18 00:00:00: Portfolio Value - 5950135.22\n", - "2019-09-19 00:00:00: Portfolio Value - 5939039.43\n", - "2019-09-20 00:00:00: Portfolio Value - 5898569.65\n", - "2019-09-23 00:00:00: Portfolio Value - 5881764.27\n", - "2019-09-24 00:00:00: Portfolio Value - 5861285.05\n", - "2019-09-25 00:00:00: Portfolio Value - 5892987.01\n", - "2019-09-26 00:00:00: Portfolio Value - 5911163.93\n", - "2019-09-27 00:00:00: Portfolio Value - 5820110.46\n", - "2019-09-30 00:00:00: Portfolio Value - 5863966.50\n", - "2019-10-01 00:00:00: Portfolio Value - 5772390.94\n", - "2019-10-02 00:00:00: Portfolio Value - 5648049.62\n", - "2019-10-03 00:00:00: Portfolio Value - 5708212.87\n", - "2019-10-04 00:00:00: Portfolio Value - 5843932.78\n", - "2019-10-07 00:00:00: Portfolio Value - 5842293.67\n", - "2019-10-08 00:00:00: Portfolio Value - 5728787.31\n", - "2019-10-09 00:00:00: Portfolio Value - 5802493.08\n", - "2019-10-10 00:00:00: Portfolio Value - 5804205.96\n", - "2019-10-11 00:00:00: Portfolio Value - 5768493.60\n", - "2019-10-14 00:00:00: Portfolio Value - 5720030.54\n", - "2019-10-15 00:00:00: Portfolio Value - 5748356.57\n", - "2019-10-16 00:00:00: Portfolio Value - 5764546.54\n", - "2019-10-17 00:00:00: Portfolio Value - 5792653.12\n", - "2019-10-18 00:00:00: Portfolio Value - 5787985.83\n", - "2019-10-21 00:00:00: Portfolio Value - 5767999.15\n", - "2019-10-22 00:00:00: Portfolio Value - 5648479.79\n", - "2019-10-23 00:00:00: Portfolio Value - 5650691.86\n", - "2019-10-24 00:00:00: Portfolio Value - 5671320.16\n", - "2019-10-25 00:00:00: Portfolio Value - 5712565.54\n", - "2019-10-28 00:00:00: Portfolio Value - 5701318.44\n", - "2019-10-29 00:00:00: Portfolio Value - 5802859.84\n", - "2019-10-30 00:00:00: Portfolio Value - 5886040.67\n", - "2019-10-31 00:00:00: Portfolio Value - 5795641.89\n", - "2019-11-01 00:00:00: Portfolio Value - 5790682.40\n", - "2019-11-04 00:00:00: Portfolio Value - 5702698.87\n", - "2019-11-05 00:00:00: Portfolio Value - 5524336.60\n", - "2019-11-06 00:00:00: Portfolio Value - 5595402.64\n", - "2019-11-07 00:00:00: Portfolio Value - 5528381.73\n", - "2019-11-08 00:00:00: Portfolio Value - 5517652.98\n", - "2019-11-11 00:00:00: Portfolio Value - 5503570.15\n", - "2019-11-12 00:00:00: Portfolio Value - 5500745.00\n", - "2019-11-13 00:00:00: Portfolio Value - 5586402.33\n", - "2019-11-14 00:00:00: Portfolio Value - 5637781.29\n", - "2019-11-15 00:00:00: Portfolio Value - 5623441.78\n", - "2019-11-18 00:00:00: Portfolio Value - 5620895.31\n", - "2019-11-19 00:00:00: Portfolio Value - 5695411.99\n", - "2019-11-20 00:00:00: Portfolio Value - 5721285.12\n", - "2019-11-21 00:00:00: Portfolio Value - 5674597.07\n", - "2019-11-22 00:00:00: Portfolio Value - 5668460.49\n", - "2019-11-25 00:00:00: Portfolio Value - 5691855.54\n", - "2019-11-26 00:00:00: Portfolio Value - 5795611.94\n", - "2019-11-27 00:00:00: Portfolio Value - 5874669.15\n", - "2019-11-29 00:00:00: Portfolio Value - 5842308.12\n", - "2019-12-02 00:00:00: Portfolio Value - 5793278.49\n", - "2019-12-03 00:00:00: Portfolio Value - 5747170.57\n", - "2019-12-04 00:00:00: Portfolio Value - 5787198.66\n", - "2019-12-05 00:00:00: Portfolio Value - 5817490.88\n", - "2019-12-06 00:00:00: Portfolio Value - 5810300.73\n", - "2019-12-09 00:00:00: Portfolio Value - 5811144.51\n", - "2019-12-10 00:00:00: Portfolio Value - 5797277.79\n", - "2019-12-11 00:00:00: Portfolio Value - 5844340.67\n", - "2019-12-12 00:00:00: Portfolio Value - 5895044.59\n", - "2019-12-13 00:00:00: Portfolio Value - 5992945.64\n", - "2019-12-16 00:00:00: Portfolio Value - 6026989.66\n", - "2019-12-17 00:00:00: Portfolio Value - 6001355.98\n", - "2019-12-18 00:00:00: Portfolio Value - 6013926.57\n", - "2019-12-19 00:00:00: Portfolio Value - 6091128.82\n", - "2019-12-20 00:00:00: Portfolio Value - 6188203.02\n", - "2019-12-23 00:00:00: Portfolio Value - 6151690.00\n", - "2019-12-24 00:00:00: Portfolio Value - 6161196.15\n", - "2019-12-26 00:00:00: Portfolio Value - 6158785.24\n", - "2019-12-27 00:00:00: Portfolio Value - 6193239.71\n", - "2019-12-30 00:00:00: Portfolio Value - 6157360.85\n", - "2019-12-31 00:00:00: Portfolio Value - 6182807.66\n", - "2020-01-02 00:00:00: Portfolio Value - 6227131.12\n", - "2020-01-03 00:00:00: Portfolio Value - 6251926.88\n", - "2020-01-06 00:00:00: Portfolio Value - 6303955.54\n", - "2020-01-07 00:00:00: Portfolio Value - 6262514.02\n", - "2020-01-08 00:00:00: Portfolio Value - 6286934.55\n", - "2020-01-09 00:00:00: Portfolio Value - 6330795.60\n", - "2020-01-10 00:00:00: Portfolio Value - 6348962.99\n", - "2020-01-13 00:00:00: Portfolio Value - 6394499.49\n", - "2020-01-14 00:00:00: Portfolio Value - 6355114.93\n", - "2020-01-15 00:00:00: Portfolio Value - 6437750.83\n", - "2020-01-16 00:00:00: Portfolio Value - 6476264.67\n", - "2020-01-17 00:00:00: Portfolio Value - 6495828.01\n", - "2020-01-21 00:00:00: Portfolio Value - 6538311.98\n", - "2020-01-22 00:00:00: Portfolio Value - 6565924.34\n", - "2020-01-23 00:00:00: Portfolio Value - 6578352.65\n", - "2020-01-24 00:00:00: Portfolio Value - 6593368.69\n", - "2020-01-27 00:00:00: Portfolio Value - 6586757.11\n", - "2020-01-28 00:00:00: Portfolio Value - 6650224.34\n", - "2020-01-29 00:00:00: Portfolio Value - 6651513.59\n", - "2020-01-30 00:00:00: Portfolio Value - 6684157.35\n", - "2020-01-31 00:00:00: Portfolio Value - 6597759.80\n", - "2020-02-03 00:00:00: Portfolio Value - 6721423.59\n", - "2020-02-04 00:00:00: Portfolio Value - 6885948.10\n", - "2020-02-05 00:00:00: Portfolio Value - 6877304.90\n", - "2020-02-06 00:00:00: Portfolio Value - 6646764.82\n", - "2020-02-07 00:00:00: Portfolio Value - 6635153.77\n", - "2020-02-10 00:00:00: Portfolio Value - 6737757.29\n", - "2020-02-11 00:00:00: Portfolio Value - 6735141.73\n", - "2020-02-12 00:00:00: Portfolio Value - 6691867.08\n", - "2020-02-13 00:00:00: Portfolio Value - 6786149.71\n", - "2020-02-14 00:00:00: Portfolio Value - 6882054.65\n", - "2020-02-18 00:00:00: Portfolio Value - 6912569.37\n", - "2020-02-19 00:00:00: Portfolio Value - 6870794.61\n", - "2020-02-20 00:00:00: Portfolio Value - 6813039.25\n", - "2020-02-21 00:00:00: Portfolio Value - 6800358.61\n", - "2020-02-24 00:00:00: Portfolio Value - 6696790.80\n", - "2020-02-25 00:00:00: Portfolio Value - 6539554.46\n", - "2020-02-26 00:00:00: Portfolio Value - 6577320.38\n", - "2020-02-27 00:00:00: Portfolio Value - 6331059.61\n", - "2020-02-28 00:00:00: Portfolio Value - 6125117.81\n", - "2020-03-02 00:00:00: Portfolio Value - 6593239.08\n", - "2020-03-03 00:00:00: Portfolio Value - 6437072.84\n", - "2020-03-04 00:00:00: Portfolio Value - 6803218.51\n", - "2020-03-05 00:00:00: Portfolio Value - 6666709.57\n", - "2020-03-06 00:00:00: Portfolio Value - 6548240.39\n", - "2020-03-09 00:00:00: Portfolio Value - 6154211.10\n", - "2020-03-10 00:00:00: Portfolio Value - 6378432.31\n", - "2020-03-11 00:00:00: Portfolio Value - 6155541.71\n", - "2020-03-12 00:00:00: Portfolio Value - 5518139.34\n", - "2020-03-13 00:00:00: Portfolio Value - 5891843.84\n", - "2020-03-16 00:00:00: Portfolio Value - 5393966.59\n", - "2020-03-17 00:00:00: Portfolio Value - 6213632.30\n", - "2020-03-18 00:00:00: Portfolio Value - 5735144.43\n", - "2020-03-19 00:00:00: Portfolio Value - 5385677.95\n", - "2020-03-20 00:00:00: Portfolio Value - 4999383.46\n", - "2020-03-23 00:00:00: Portfolio Value - 4730841.69\n", - "2020-03-24 00:00:00: Portfolio Value - 5211686.26\n", - "2020-03-25 00:00:00: Portfolio Value - 5233816.58\n", - "2020-03-26 00:00:00: Portfolio Value - 5603810.94\n", - "2020-03-27 00:00:00: Portfolio Value - 5566190.71\n", - "2020-03-30 00:00:00: Portfolio Value - 5860949.48\n", - "2020-03-31 00:00:00: Portfolio Value - 5727196.92\n", - "2020-04-01 00:00:00: Portfolio Value - 5513878.72\n", - "2020-04-02 00:00:00: Portfolio Value - 5719776.73\n", - "2020-04-03 00:00:00: Portfolio Value - 5655847.84\n", - "2020-04-06 00:00:00: Portfolio Value - 6025830.08\n", - "2020-04-07 00:00:00: Portfolio Value - 5985109.77\n", - "2020-04-08 00:00:00: Portfolio Value - 6175152.51\n", - "2020-04-09 00:00:00: Portfolio Value - 6273375.91\n", - "2020-04-13 00:00:00: Portfolio Value - 6140805.57\n", - "2020-04-14 00:00:00: Portfolio Value - 6454325.32\n", - "2020-04-15 00:00:00: Portfolio Value - 6315741.43\n", - "2020-04-16 00:00:00: Portfolio Value - 6431619.83\n", - "2020-04-17 00:00:00: Portfolio Value - 6567132.92\n", - "2020-04-20 00:00:00: Portfolio Value - 6459132.54\n", - "2020-04-21 00:00:00: Portfolio Value - 6231407.98\n", - "2020-04-22 00:00:00: Portfolio Value - 6428278.61\n", - "2020-04-23 00:00:00: Portfolio Value - 6267444.27\n", - "2020-04-24 00:00:00: Portfolio Value - 6339129.73\n", - "2020-04-27 00:00:00: Portfolio Value - 6369048.68\n", - "2020-04-28 00:00:00: Portfolio Value - 6227613.61\n", - "2020-04-29 00:00:00: Portfolio Value - 6200423.54\n", - "2020-04-30 00:00:00: Portfolio Value - 6155313.05\n", - "2020-05-01 00:00:00: Portfolio Value - 6229670.95\n", - "2020-05-04 00:00:00: Portfolio Value - 6314164.91\n", - "2020-05-05 00:00:00: Portfolio Value - 6518354.25\n", - "2020-05-06 00:00:00: Portfolio Value - 6433756.55\n", - "2020-05-07 00:00:00: Portfolio Value - 6527211.43\n", - "2020-05-08 00:00:00: Portfolio Value - 6574154.68\n", - "2020-05-11 00:00:00: Portfolio Value - 6706679.71\n", - "2020-05-12 00:00:00: Portfolio Value - 6669600.62\n", - "2020-05-13 00:00:00: Portfolio Value - 6596410.54\n", - "2020-05-14 00:00:00: Portfolio Value - 6648349.30\n", - "2020-05-15 00:00:00: Portfolio Value - 6687134.94\n", - "2020-05-18 00:00:00: Portfolio Value - 6805834.80\n", - "2020-05-19 00:00:00: Portfolio Value - 6750675.13\n", - "2020-05-20 00:00:00: Portfolio Value - 6636359.62\n", - "2020-05-21 00:00:00: Portfolio Value - 6531011.44\n", - "2020-05-22 00:00:00: Portfolio Value - 6565397.75\n", - "2020-05-26 00:00:00: Portfolio Value - 6509952.69\n", - "2020-05-27 00:00:00: Portfolio Value - 6508650.54\n", - "2020-05-28 00:00:00: Portfolio Value - 6732746.59\n", - "2020-05-29 00:00:00: Portfolio Value - 6813751.96\n", - "2020-06-01 00:00:00: Portfolio Value - 6805186.34\n", - "2020-06-02 00:00:00: Portfolio Value - 6827665.08\n", - "2020-06-03 00:00:00: Portfolio Value - 6875103.84\n", - "2020-06-04 00:00:00: Portfolio Value - 6780333.77\n", - "2020-06-05 00:00:00: Portfolio Value - 6783518.58\n", - "2020-06-08 00:00:00: Portfolio Value - 6863295.02\n", - "2020-06-09 00:00:00: Portfolio Value - 6790219.95\n", - "2020-06-10 00:00:00: Portfolio Value - 6856929.28\n", - "2020-06-11 00:00:00: Portfolio Value - 6550908.81\n", - "2020-06-12 00:00:00: Portfolio Value - 6552066.18\n", - "2020-06-15 00:00:00: Portfolio Value - 6643805.37\n", - "2020-06-16 00:00:00: Portfolio Value - 6756760.70\n", - "2020-06-17 00:00:00: Portfolio Value - 6887861.53\n", - "2020-06-18 00:00:00: Portfolio Value - 6950191.36\n", - "2020-06-19 00:00:00: Portfolio Value - 6809607.66\n", - "2020-06-22 00:00:00: Portfolio Value - 6903850.19\n", - "2020-06-23 00:00:00: Portfolio Value - 6933890.79\n", - "2020-06-24 00:00:00: Portfolio Value - 6820279.33\n", - "2020-06-25 00:00:00: Portfolio Value - 6919371.79\n", - "2020-06-26 00:00:00: Portfolio Value - 6918367.56\n", - "2020-06-29 00:00:00: Portfolio Value - 6984945.74\n", - "2020-06-30 00:00:00: Portfolio Value - 7138944.62\n", - "2020-07-01 00:00:00: Portfolio Value - 7162753.64\n", - "2020-07-02 00:00:00: Portfolio Value - 7171517.11\n", - "2020-07-06 00:00:00: Portfolio Value - 7111633.33\n", - "2020-07-07 00:00:00: Portfolio Value - 7124933.26\n", - "2020-07-08 00:00:00: Portfolio Value - 7204876.37\n", - "2020-07-09 00:00:00: Portfolio Value - 7293285.56\n", - "2020-07-10 00:00:00: Portfolio Value - 7346515.43\n", - "2020-07-13 00:00:00: Portfolio Value - 7232231.62\n", - "2020-07-14 00:00:00: Portfolio Value - 7419617.69\n", - "2020-07-15 00:00:00: Portfolio Value - 7424024.04\n", - "2020-07-16 00:00:00: Portfolio Value - 7421974.59\n", - "2020-07-17 00:00:00: Portfolio Value - 7505227.38\n", - "2020-07-20 00:00:00: Portfolio Value - 7575123.85\n", - "2020-07-21 00:00:00: Portfolio Value - 7605179.52\n", - "2020-07-22 00:00:00: Portfolio Value - 7683445.08\n", - "2020-07-23 00:00:00: Portfolio Value - 7680330.46\n", - "2020-07-24 00:00:00: Portfolio Value - 7649594.30\n", - "2020-07-27 00:00:00: Portfolio Value - 7710814.52\n", - "2020-07-28 00:00:00: Portfolio Value - 7742610.60\n", - "2020-07-29 00:00:00: Portfolio Value - 7888067.59\n", - "2020-07-30 00:00:00: Portfolio Value - 7886926.49\n", - "2020-07-31 00:00:00: Portfolio Value - 8049803.13\n", - "2020-08-03 00:00:00: Portfolio Value - 8017152.91\n", - "2020-08-04 00:00:00: Portfolio Value - 8006448.52\n", - "2020-08-05 00:00:00: Portfolio Value - 8039265.66\n", - "2020-08-06 00:00:00: Portfolio Value - 7671194.21\n", - "2020-08-07 00:00:00: Portfolio Value - 7708484.96\n", - "2020-08-10 00:00:00: Portfolio Value - 7645700.77\n", - "2020-08-11 00:00:00: Portfolio Value - 7524305.09\n", - "2020-08-12 00:00:00: Portfolio Value - 7605855.93\n", - "2020-08-13 00:00:00: Portfolio Value - 7666015.86\n", - "2020-08-14 00:00:00: Portfolio Value - 7632145.66\n", - "2020-08-17 00:00:00: Portfolio Value - 7677907.82\n", - "2020-08-18 00:00:00: Portfolio Value - 7730957.95\n", - "2020-08-19 00:00:00: Portfolio Value - 7716369.46\n", - "2020-08-20 00:00:00: Portfolio Value - 7667147.26\n", - "2020-08-21 00:00:00: Portfolio Value - 7562703.03\n", - "2020-08-24 00:00:00: Portfolio Value - 7472192.86\n", - "2020-08-25 00:00:00: Portfolio Value - 7492142.05\n", - "2020-08-26 00:00:00: Portfolio Value - 7519228.63\n", - "2020-08-27 00:00:00: Portfolio Value - 7513401.64\n", - "2020-08-28 00:00:00: Portfolio Value - 7438934.52\n", - "2020-08-31 00:00:00: Portfolio Value - 7494515.33\n", - "2020-09-01 00:00:00: Portfolio Value - 7473689.77\n", - "2020-09-02 00:00:00: Portfolio Value - 7709920.85\n", - "2020-09-03 00:00:00: Portfolio Value - 7376918.22\n", - "2020-09-04 00:00:00: Portfolio Value - 7214897.56\n", - "2020-09-08 00:00:00: Portfolio Value - 7090304.63\n", - "2020-09-09 00:00:00: Portfolio Value - 7306173.97\n", - "2020-09-10 00:00:00: Portfolio Value - 7200738.21\n", - "2020-09-11 00:00:00: Portfolio Value - 7200834.13\n", - "2020-09-14 00:00:00: Portfolio Value - 7302100.83\n", - "2020-09-15 00:00:00: Portfolio Value - 7242791.10\n", - "2020-09-16 00:00:00: Portfolio Value - 7192682.19\n", - "2020-09-17 00:00:00: Portfolio Value - 7179985.28\n", - "2020-09-18 00:00:00: Portfolio Value - 7151668.10\n", - "2020-09-21 00:00:00: Portfolio Value - 7110401.64\n", - "2020-09-22 00:00:00: Portfolio Value - 7177568.08\n", - "2020-09-23 00:00:00: Portfolio Value - 7104819.01\n", - "2020-09-24 00:00:00: Portfolio Value - 7037408.05\n", - "2020-09-25 00:00:00: Portfolio Value - 7137663.14\n", - "2020-09-28 00:00:00: Portfolio Value - 7255177.22\n", - "2020-09-29 00:00:00: Portfolio Value - 7265952.35\n", - "2020-09-30 00:00:00: Portfolio Value - 7350709.82\n", - "2020-10-01 00:00:00: Portfolio Value - 7403229.35\n", - "2020-10-02 00:00:00: Portfolio Value - 7317611.73\n", - "2020-10-05 00:00:00: Portfolio Value - 7367566.76\n", - "2020-10-06 00:00:00: Portfolio Value - 7309560.48\n", - "2020-10-07 00:00:00: Portfolio Value - 7380473.08\n", - "2020-10-08 00:00:00: Portfolio Value - 7392043.89\n", - "2020-10-09 00:00:00: Portfolio Value - 7482129.90\n", - "2020-10-12 00:00:00: Portfolio Value - 7557118.61\n", - "2020-10-13 00:00:00: Portfolio Value - 7576838.79\n", - "2020-10-14 00:00:00: Portfolio Value - 7507818.95\n", - "2020-10-15 00:00:00: Portfolio Value - 7561802.11\n", - "2020-10-16 00:00:00: Portfolio Value - 7564081.31\n", - "2020-10-19 00:00:00: Portfolio Value - 7474278.84\n", - "2020-10-20 00:00:00: Portfolio Value - 7465656.95\n", - "2020-10-21 00:00:00: Portfolio Value - 7485854.36\n", - "2020-10-22 00:00:00: Portfolio Value - 7501566.48\n", - "2020-10-23 00:00:00: Portfolio Value - 7529337.44\n", - "2020-10-26 00:00:00: Portfolio Value - 7457676.31\n", - "2020-10-27 00:00:00: Portfolio Value - 7541078.80\n", - "2020-10-28 00:00:00: Portfolio Value - 7269740.61\n", - "2020-10-29 00:00:00: Portfolio Value - 7202734.89\n", - "2020-10-30 00:00:00: Portfolio Value - 7211307.77\n", - "2020-11-02 00:00:00: Portfolio Value - 7380989.17\n", - "2020-11-03 00:00:00: Portfolio Value - 7510479.31\n", - "2020-11-04 00:00:00: Portfolio Value - 7747719.99\n", - "2020-11-05 00:00:00: Portfolio Value - 7798801.39\n", - "2020-11-06 00:00:00: Portfolio Value - 7894225.20\n", - "2020-11-09 00:00:00: Portfolio Value - 7817588.17\n", - "2020-11-10 00:00:00: Portfolio Value - 7782920.75\n", - "2020-11-11 00:00:00: Portfolio Value - 7928170.47\n", - "2020-11-12 00:00:00: Portfolio Value - 7880107.94\n", - "2020-11-13 00:00:00: Portfolio Value - 7981951.50\n", - "2020-11-16 00:00:00: Portfolio Value - 8052553.42\n", - "2020-11-17 00:00:00: Portfolio Value - 7992529.93\n", - "2020-11-18 00:00:00: Portfolio Value - 7824858.97\n", - "2020-11-19 00:00:00: Portfolio Value - 7838663.26\n", - "2020-11-20 00:00:00: Portfolio Value - 7775111.14\n", - "2020-11-23 00:00:00: Portfolio Value - 7748694.29\n", - "2020-11-24 00:00:00: Portfolio Value - 7713284.66\n", - "2020-11-25 00:00:00: Portfolio Value - 7742220.90\n", - "2020-11-27 00:00:00: Portfolio Value - 7796352.22\n", - "2020-11-30 00:00:00: Portfolio Value - 7823651.16\n", - "2020-12-01 00:00:00: Portfolio Value - 7944879.42\n", - "2020-12-02 00:00:00: Portfolio Value - 7862740.41\n", - "2020-12-03 00:00:00: Portfolio Value - 7799418.41\n", - "2020-12-04 00:00:00: Portfolio Value - 7905071.78\n", - "2020-12-07 00:00:00: Portfolio Value - 7825438.39\n", - "2020-12-08 00:00:00: Portfolio Value - 7910498.00\n", - "2020-12-09 00:00:00: Portfolio Value - 7838141.53\n", - "2020-12-10 00:00:00: Portfolio Value - 7849529.56\n", - "2020-12-11 00:00:00: Portfolio Value - 7863786.17\n", - "2020-12-14 00:00:00: Portfolio Value - 7851404.61\n", - "2020-12-15 00:00:00: Portfolio Value - 8000430.85\n", - "2020-12-16 00:00:00: Portfolio Value - 8068977.11\n", - "2020-12-17 00:00:00: Portfolio Value - 8109832.22\n", - "2020-12-18 00:00:00: Portfolio Value - 8186171.03\n", - "2020-12-21 00:00:00: Portfolio Value - 8053473.02\n", - "2020-12-22 00:00:00: Portfolio Value - 8055976.80\n", - "2020-12-23 00:00:00: Portfolio Value - 7982188.90\n", - "2020-12-24 00:00:00: Portfolio Value - 8057507.71\n", - "2020-12-28 00:00:00: Portfolio Value - 8061551.05\n", - "2020-12-29 00:00:00: Portfolio Value - 8017165.04\n", - "2020-12-30 00:00:00: Portfolio Value - 7987488.76\n", - "2020-12-31 00:00:00: Portfolio Value - 8090549.87\n", - "2021-01-04 00:00:00: Portfolio Value - 7937026.30\n", - "2021-01-05 00:00:00: Portfolio Value - 7912541.38\n", - "2021-01-06 00:00:00: Portfolio Value - 7873609.40\n", - "2021-01-07 00:00:00: Portfolio Value - 7893304.58\n", - "2021-01-08 00:00:00: Portfolio Value - 7909593.26\n", - "2021-01-11 00:00:00: Portfolio Value - 7815494.61\n", - "2021-01-12 00:00:00: Portfolio Value - 7815074.40\n", - "2021-01-13 00:00:00: Portfolio Value - 7860703.11\n", - "2021-01-14 00:00:00: Portfolio Value - 7711372.90\n", - "2021-01-15 00:00:00: Portfolio Value - 7773878.65\n", - "2021-01-19 00:00:00: Portfolio Value - 7787669.31\n", - "2021-01-20 00:00:00: Portfolio Value - 7903819.05\n", - "2021-01-21 00:00:00: Portfolio Value - 7859561.54\n", - "2021-01-22 00:00:00: Portfolio Value - 7800465.98\n", - "2021-01-25 00:00:00: Portfolio Value - 7954994.41\n", - "2021-01-26 00:00:00: Portfolio Value - 7955257.07\n", - "2021-01-27 00:00:00: Portfolio Value - 7808203.97\n", - "2021-01-28 00:00:00: Portfolio Value - 7855613.19\n", - "2021-01-29 00:00:00: Portfolio Value - 7749606.20\n", - "2021-02-01 00:00:00: Portfolio Value - 7823460.00\n", - "2021-02-02 00:00:00: Portfolio Value - 7853066.33\n", - "2021-02-03 00:00:00: Portfolio Value - 7682744.09\n", - "2021-02-04 00:00:00: Portfolio Value - 7701661.04\n", - "2021-02-05 00:00:00: Portfolio Value - 7843215.99\n", - "2021-02-08 00:00:00: Portfolio Value - 7816028.29\n", - "2021-02-09 00:00:00: Portfolio Value - 7820614.72\n", - "2021-02-10 00:00:00: Portfolio Value - 7885438.07\n", - "2021-02-11 00:00:00: Portfolio Value - 7860438.04\n", - "2021-02-12 00:00:00: Portfolio Value - 7841617.65\n", - "2021-02-16 00:00:00: Portfolio Value - 7702272.12\n", - "2021-02-17 00:00:00: Portfolio Value - 7756908.89\n", - "2021-02-18 00:00:00: Portfolio Value - 7782356.83\n", - "2021-02-19 00:00:00: Portfolio Value - 7670444.32\n", - "2021-02-22 00:00:00: Portfolio Value - 7565647.88\n", - "2021-02-23 00:00:00: Portfolio Value - 7551098.49\n", - "2021-02-24 00:00:00: Portfolio Value - 7322943.62\n", - "2021-02-25 00:00:00: Portfolio Value - 7182364.91\n", - "2021-02-26 00:00:00: Portfolio Value - 7102254.86\n", - "2021-03-01 00:00:00: Portfolio Value - 7244726.25\n", - "2021-03-02 00:00:00: Portfolio Value - 7170742.45\n", - "2021-03-03 00:00:00: Portfolio Value - 7045023.19\n", - "2021-03-04 00:00:00: Portfolio Value - 6928484.97\n", - "2021-03-05 00:00:00: Portfolio Value - 7155663.98\n", - "2021-03-08 00:00:00: Portfolio Value - 7126247.08\n", - "2021-03-09 00:00:00: Portfolio Value - 7227717.56\n", - "2021-03-10 00:00:00: Portfolio Value - 7181131.10\n", - "2021-03-11 00:00:00: Portfolio Value - 7193492.52\n", - "2021-03-12 00:00:00: Portfolio Value - 7225119.18\n", - "2021-03-15 00:00:00: Portfolio Value - 7266732.67\n", - "2021-03-16 00:00:00: Portfolio Value - 7325276.38\n", - "2021-03-17 00:00:00: Portfolio Value - 7291496.01\n", - "2021-03-18 00:00:00: Portfolio Value - 7134020.54\n", - "2021-03-19 00:00:00: Portfolio Value - 7136773.38\n", - "2021-03-22 00:00:00: Portfolio Value - 7279356.78\n", - "2021-03-23 00:00:00: Portfolio Value - 7326611.13\n", - "2021-03-24 00:00:00: Portfolio Value - 7351614.18\n", - "2021-03-25 00:00:00: Portfolio Value - 7290571.60\n", - "2021-03-26 00:00:00: Portfolio Value - 7451958.75\n", - "2021-03-29 00:00:00: Portfolio Value - 7551287.36\n", - "2021-03-30 00:00:00: Portfolio Value - 7411083.86\n", - "2021-03-31 00:00:00: Portfolio Value - 7445893.68\n", - "2021-04-01 00:00:00: Portfolio Value - 7530660.05\n", - "2021-04-05 00:00:00: Portfolio Value - 7643581.23\n", - "2021-04-06 00:00:00: Portfolio Value - 7656181.54\n", - "2021-04-07 00:00:00: Portfolio Value - 7655105.33\n", - "2021-04-08 00:00:00: Portfolio Value - 7675579.92\n", - "2021-04-09 00:00:00: Portfolio Value - 7726538.16\n", - "2021-04-12 00:00:00: Portfolio Value - 7768789.58\n", - "2021-04-13 00:00:00: Portfolio Value - 7819323.51\n", - "2021-04-14 00:00:00: Portfolio Value - 7743080.88\n", - "2021-04-15 00:00:00: Portfolio Value - 7860807.00\n", - "2021-04-16 00:00:00: Portfolio Value - 7908605.18\n", - "2021-04-19 00:00:00: Portfolio Value - 7849065.30\n", - "2021-04-20 00:00:00: Portfolio Value - 7882103.94\n", - "2021-04-21 00:00:00: Portfolio Value - 7915596.59\n", - "2021-04-22 00:00:00: Portfolio Value - 7923723.46\n", - "2021-04-23 00:00:00: Portfolio Value - 7888558.57\n", - "2021-04-26 00:00:00: Portfolio Value - 7840982.13\n", - "2021-04-27 00:00:00: Portfolio Value - 7911949.63\n", - "2021-04-28 00:00:00: Portfolio Value - 7948615.02\n", - "2021-04-29 00:00:00: Portfolio Value - 7935780.13\n", - "2021-04-30 00:00:00: Portfolio Value - 7865704.53\n", - "2021-05-03 00:00:00: Portfolio Value - 7924167.54\n", - "2021-05-04 00:00:00: Portfolio Value - 7876085.40\n", - "2021-05-05 00:00:00: Portfolio Value - 7769544.81\n", - "2021-05-06 00:00:00: Portfolio Value - 7732236.97\n", - "2021-05-07 00:00:00: Portfolio Value - 7818521.37\n", - "2021-05-10 00:00:00: Portfolio Value - 7883264.27\n", - "2021-05-11 00:00:00: Portfolio Value - 7811482.10\n", - "2021-05-12 00:00:00: Portfolio Value - 7666538.77\n", - "2021-05-13 00:00:00: Portfolio Value - 7737645.75\n", - "2021-05-14 00:00:00: Portfolio Value - 7742537.50\n", - "2021-05-17 00:00:00: Portfolio Value - 7667227.06\n", - "2021-05-18 00:00:00: Portfolio Value - 7642592.41\n", - "2021-05-19 00:00:00: Portfolio Value - 7646769.20\n", - "2021-05-20 00:00:00: Portfolio Value - 7761440.55\n", - "2021-05-21 00:00:00: Portfolio Value - 7742077.48\n", - "2021-05-24 00:00:00: Portfolio Value - 7798547.58\n", - "2021-05-25 00:00:00: Portfolio Value - 7750623.12\n", - "2021-05-26 00:00:00: Portfolio Value - 7699469.41\n", - "2021-05-27 00:00:00: Portfolio Value - 7663591.10\n", - "2021-05-28 00:00:00: Portfolio Value - 7655721.18\n", - "2021-06-01 00:00:00: Portfolio Value - 7570068.66\n", - "2021-06-02 00:00:00: Portfolio Value - 7565697.05\n", - "2021-06-03 00:00:00: Portfolio Value - 7560039.09\n", - "2021-06-04 00:00:00: Portfolio Value - 7601147.30\n", - "2021-06-07 00:00:00: Portfolio Value - 7569393.23\n", - "2021-06-08 00:00:00: Portfolio Value - 7531136.86\n", - "2021-06-09 00:00:00: Portfolio Value - 7610510.84\n", - "2021-06-10 00:00:00: Portfolio Value - 7747921.07\n", - "2021-06-11 00:00:00: Portfolio Value - 7720289.20\n", - "2021-06-14 00:00:00: Portfolio Value - 7845793.80\n", - "2021-06-15 00:00:00: Portfolio Value - 7880362.99\n", - "2021-06-16 00:00:00: Portfolio Value - 7724440.46\n", - "2021-06-17 00:00:00: Portfolio Value - 7833791.64\n", - "2021-06-18 00:00:00: Portfolio Value - 7726404.59\n", - "2021-06-21 00:00:00: Portfolio Value - 7822535.61\n", - "2021-06-22 00:00:00: Portfolio Value - 7880780.91\n", - "2021-06-23 00:00:00: Portfolio Value - 7839435.73\n", - "2021-06-24 00:00:00: Portfolio Value - 7860718.17\n", - "2021-06-25 00:00:00: Portfolio Value - 7923593.95\n", - "2021-06-28 00:00:00: Portfolio Value - 7951573.36\n", - "2021-06-29 00:00:00: Portfolio Value - 7971054.24\n", - "2021-06-30 00:00:00: Portfolio Value - 7905955.34\n", - "2021-07-01 00:00:00: Portfolio Value - 7956160.98\n", - "2021-07-02 00:00:00: Portfolio Value - 8005367.74\n", - "2021-07-06 00:00:00: Portfolio Value - 8023705.31\n", - "2021-07-07 00:00:00: Portfolio Value - 8160095.76\n", - "2021-07-08 00:00:00: Portfolio Value - 8083441.81\n", - "2021-07-09 00:00:00: Portfolio Value - 8076638.54\n", - "2021-07-12 00:00:00: Portfolio Value - 8037961.51\n", - "2021-07-13 00:00:00: Portfolio Value - 8023307.26\n", - "2021-07-14 00:00:00: Portfolio Value - 8008937.61\n", - "2021-07-15 00:00:00: Portfolio Value - 8050310.78\n", - "2021-07-16 00:00:00: Portfolio Value - 8213647.00\n", - "2021-07-19 00:00:00: Portfolio Value - 8092470.72\n", - "2021-07-20 00:00:00: Portfolio Value - 8112452.54\n", - "2021-07-21 00:00:00: Portfolio Value - 8123249.80\n", - "2021-07-22 00:00:00: Portfolio Value - 8201873.32\n", - "2021-07-23 00:00:00: Portfolio Value - 8328067.15\n", - "2021-07-26 00:00:00: Portfolio Value - 8120996.06\n", - "2021-07-27 00:00:00: Portfolio Value - 8191221.71\n", - "2021-07-28 00:00:00: Portfolio Value - 8130375.39\n", - "2021-07-29 00:00:00: Portfolio Value - 8205941.26\n", - "2021-07-30 00:00:00: Portfolio Value - 8212888.36\n", - "2021-08-02 00:00:00: Portfolio Value - 8198461.11\n", - "2021-08-03 00:00:00: Portfolio Value - 8041618.76\n", - "2021-08-04 00:00:00: Portfolio Value - 7969804.66\n", - "2021-08-05 00:00:00: Portfolio Value - 7875545.21\n", - "2021-08-06 00:00:00: Portfolio Value - 7841472.02\n", - "2021-08-09 00:00:00: Portfolio Value - 7836101.02\n", - "2021-08-10 00:00:00: Portfolio Value - 7761349.11\n", - "2021-08-11 00:00:00: Portfolio Value - 7813889.20\n", - "2021-08-12 00:00:00: Portfolio Value - 7828699.61\n", - "2021-08-13 00:00:00: Portfolio Value - 7824384.35\n", - "2021-08-16 00:00:00: Portfolio Value - 7949918.50\n", - "2021-08-17 00:00:00: Portfolio Value - 7993732.26\n", - "2021-08-18 00:00:00: Portfolio Value - 7897557.75\n", - "2021-08-19 00:00:00: Portfolio Value - 8013853.68\n", - "2021-08-20 00:00:00: Portfolio Value - 8056838.52\n", - "2021-08-23 00:00:00: Portfolio Value - 8031815.13\n", - "2021-08-24 00:00:00: Portfolio Value - 7950608.74\n", - "2021-08-25 00:00:00: Portfolio Value - 7905183.10\n", - "2021-08-26 00:00:00: Portfolio Value - 7899040.39\n", - "2021-08-27 00:00:00: Portfolio Value - 7973225.91\n", - "2021-08-30 00:00:00: Portfolio Value - 8014914.33\n", - "2021-08-31 00:00:00: Portfolio Value - 8065926.01\n", - "2021-09-01 00:00:00: Portfolio Value - 8131538.44\n", - "2021-09-02 00:00:00: Portfolio Value - 8323655.90\n", - "2021-09-03 00:00:00: Portfolio Value - 8350283.26\n", - "2021-09-07 00:00:00: Portfolio Value - 8356793.33\n", - "2021-09-08 00:00:00: Portfolio Value - 8497210.92\n", - "2021-09-09 00:00:00: Portfolio Value - 8498364.46\n", - "2021-09-10 00:00:00: Portfolio Value - 8530031.29\n", - "2021-09-13 00:00:00: Portfolio Value - 8490866.64\n", - "2021-09-14 00:00:00: Portfolio Value - 8481409.89\n", - "2021-09-15 00:00:00: Portfolio Value - 8489844.66\n", - "2021-09-16 00:00:00: Portfolio Value - 8407319.38\n", - "2021-09-17 00:00:00: Portfolio Value - 8344521.58\n", - "2021-09-20 00:00:00: Portfolio Value - 8305948.68\n", - "2021-09-21 00:00:00: Portfolio Value - 8359539.71\n", - "2021-09-22 00:00:00: Portfolio Value - 8382486.19\n", - "2021-09-23 00:00:00: Portfolio Value - 8353449.94\n", - "2021-09-24 00:00:00: Portfolio Value - 8390008.03\n", - "2021-09-27 00:00:00: Portfolio Value - 8259581.61\n", - "2021-09-28 00:00:00: Portfolio Value - 8123702.39\n", - "2021-09-29 00:00:00: Portfolio Value - 8197483.30\n", - "2021-09-30 00:00:00: Portfolio Value - 8161660.83\n", - "2021-10-01 00:00:00: Portfolio Value - 8224090.57\n", - "2021-10-04 00:00:00: Portfolio Value - 8077591.57\n", - "2021-10-05 00:00:00: Portfolio Value - 8154088.54\n", - "2021-10-06 00:00:00: Portfolio Value - 8248024.45\n", - "2021-10-07 00:00:00: Portfolio Value - 8242706.04\n", - "2021-10-08 00:00:00: Portfolio Value - 8222832.97\n", - "2021-10-11 00:00:00: Portfolio Value - 8155507.60\n", - "2021-10-12 00:00:00: Portfolio Value - 8204437.24\n", - "2021-10-13 00:00:00: Portfolio Value - 8238897.71\n", - "2021-10-14 00:00:00: Portfolio Value - 8345599.23\n", - "2021-10-15 00:00:00: Portfolio Value - 8317735.05\n", - "2021-10-18 00:00:00: Portfolio Value - 8243658.74\n", - "2021-10-19 00:00:00: Portfolio Value - 8406918.50\n", - "2021-10-20 00:00:00: Portfolio Value - 8442276.30\n", - "2021-10-21 00:00:00: Portfolio Value - 8606174.88\n", - "2021-10-22 00:00:00: Portfolio Value - 8637794.71\n", - "2021-10-25 00:00:00: Portfolio Value - 8557557.85\n", - "2021-10-26 00:00:00: Portfolio Value - 8526545.46\n", - "2021-10-27 00:00:00: Portfolio Value - 8420055.92\n", - "2021-10-28 00:00:00: Portfolio Value - 8449611.84\n", - "2021-10-29 00:00:00: Portfolio Value - 8419366.64\n", - "2021-11-01 00:00:00: Portfolio Value - 8409227.44\n", - "2021-11-02 00:00:00: Portfolio Value - 8359528.22\n", - "2021-11-03 00:00:00: Portfolio Value - 8422491.90\n", - "2021-11-04 00:00:00: Portfolio Value - 8384661.73\n", - "2021-11-05 00:00:00: Portfolio Value - 8350991.58\n", - "2021-11-08 00:00:00: Portfolio Value - 8355852.90\n", - "2021-11-09 00:00:00: Portfolio Value - 8358853.88\n", - "2021-11-10 00:00:00: Portfolio Value - 8340795.90\n", - "2021-11-11 00:00:00: Portfolio Value - 8217916.06\n", - "2021-11-12 00:00:00: Portfolio Value - 8260860.46\n", - "2021-11-15 00:00:00: Portfolio Value - 8363326.98\n", - "2021-11-16 00:00:00: Portfolio Value - 8412717.82\n", - "2021-11-17 00:00:00: Portfolio Value - 8469035.91\n", - "2021-11-18 00:00:00: Portfolio Value - 8369583.96\n", - "2021-11-19 00:00:00: Portfolio Value - 8429971.74\n", - "2021-11-22 00:00:00: Portfolio Value - 8363930.35\n", - "2021-11-23 00:00:00: Portfolio Value - 8347558.40\n", - "2021-11-24 00:00:00: Portfolio Value - 8369118.11\n", - "2021-11-26 00:00:00: Portfolio Value - 8279507.15\n", - "2021-11-29 00:00:00: Portfolio Value - 8342315.20\n", - "2021-11-30 00:00:00: Portfolio Value - 8132853.05\n", - "2021-12-01 00:00:00: Portfolio Value - 8163302.95\n", - "2021-12-02 00:00:00: Portfolio Value - 8292036.75\n", - "2021-12-03 00:00:00: Portfolio Value - 8275619.53\n", - "2021-12-06 00:00:00: Portfolio Value - 8385434.63\n", - "2021-12-07 00:00:00: Portfolio Value - 8436853.37\n", - "2021-12-08 00:00:00: Portfolio Value - 8514834.45\n", - "2021-12-09 00:00:00: Portfolio Value - 8404485.43\n", - "2021-12-10 00:00:00: Portfolio Value - 8438912.14\n", - "2021-12-13 00:00:00: Portfolio Value - 8566023.15\n", - "2021-12-14 00:00:00: Portfolio Value - 8391635.80\n", - "2021-12-15 00:00:00: Portfolio Value - 8510205.87\n", - "2021-12-16 00:00:00: Portfolio Value - 8550597.28\n", - "2021-12-17 00:00:00: Portfolio Value - 8423502.82\n", - "2021-12-20 00:00:00: Portfolio Value - 8402192.92\n", - "2021-12-21 00:00:00: Portfolio Value - 8458274.88\n", - "2021-12-22 00:00:00: Portfolio Value - 8456803.59\n", - "2021-12-23 00:00:00: Portfolio Value - 8461947.60\n", - "2021-12-27 00:00:00: Portfolio Value - 8557018.46\n", - "2021-12-28 00:00:00: Portfolio Value - 8562300.48\n", - "2021-12-29 00:00:00: Portfolio Value - 8565798.41\n", - "2021-12-30 00:00:00: Portfolio Value - 8583903.01\n", - "2021-12-31 00:00:00: Portfolio Value - 8587703.67\n", - "2022-01-03 00:00:00: Portfolio Value - 8466441.56\n", - "2022-01-04 00:00:00: Portfolio Value - 8409368.33\n", - "2022-01-05 00:00:00: Portfolio Value - 8242658.24\n", - "2022-01-06 00:00:00: Portfolio Value - 8198826.04\n", - "2022-01-07 00:00:00: Portfolio Value - 8143115.50\n", - "2022-01-10 00:00:00: Portfolio Value - 8192260.17\n", - "2022-01-11 00:00:00: Portfolio Value - 8225556.38\n", - "2022-01-12 00:00:00: Portfolio Value - 8279227.03\n", - "2022-01-13 00:00:00: Portfolio Value - 8308005.27\n", - "2022-01-14 00:00:00: Portfolio Value - 8257547.83\n", - "2022-01-18 00:00:00: Portfolio Value - 8094016.78\n", - "2022-01-19 00:00:00: Portfolio Value - 8147267.02\n", - "2022-01-20 00:00:00: Portfolio Value - 8130242.76\n", - "2022-01-21 00:00:00: Portfolio Value - 8132544.81\n", - "2022-01-24 00:00:00: Portfolio Value - 8162633.91\n", - "2022-01-25 00:00:00: Portfolio Value - 7976158.37\n", - "2022-01-26 00:00:00: Portfolio Value - 7834166.43\n", - "2022-01-27 00:00:00: Portfolio Value - 7694562.22\n", - "2022-01-28 00:00:00: Portfolio Value - 7834510.74\n", - "2022-01-31 00:00:00: Portfolio Value - 7993857.93\n", - "2022-02-01 00:00:00: Portfolio Value - 7952927.99\n", - "2022-02-02 00:00:00: Portfolio Value - 8104750.50\n", - "2022-02-03 00:00:00: Portfolio Value - 8094265.57\n", - "2022-02-04 00:00:00: Portfolio Value - 7972465.09\n", - "2022-02-07 00:00:00: Portfolio Value - 7954022.84\n", - "2022-02-08 00:00:00: Portfolio Value - 7909381.60\n", - "2022-02-09 00:00:00: Portfolio Value - 8014664.82\n", - "2022-02-10 00:00:00: Portfolio Value - 7830098.52\n", - "2022-02-11 00:00:00: Portfolio Value - 7785437.99\n", - "2022-02-14 00:00:00: Portfolio Value - 7666910.42\n", - "2022-02-15 00:00:00: Portfolio Value - 7705537.90\n", - "2022-02-16 00:00:00: Portfolio Value - 7770418.76\n", - "2022-02-17 00:00:00: Portfolio Value - 7713249.26\n", - "2022-02-18 00:00:00: Portfolio Value - 7726990.06\n", - "2022-02-22 00:00:00: Portfolio Value - 7679006.40\n", - "2022-02-23 00:00:00: Portfolio Value - 7582976.65\n", - "2022-02-24 00:00:00: Portfolio Value - 7685716.51\n", - "2022-02-25 00:00:00: Portfolio Value - 7868051.19\n", - "2022-02-28 00:00:00: Portfolio Value - 7857042.93\n", - "2022-03-01 00:00:00: Portfolio Value - 7891847.49\n", - "2022-03-02 00:00:00: Portfolio Value - 7896653.80\n", - "2022-03-03 00:00:00: Portfolio Value - 7918937.10\n", - "2022-03-04 00:00:00: Portfolio Value - 8015791.36\n", - "2022-03-07 00:00:00: Portfolio Value - 7934151.30\n", - "2022-03-08 00:00:00: Portfolio Value - 7615470.56\n", - "2022-03-09 00:00:00: Portfolio Value - 7802746.14\n", - "2022-03-10 00:00:00: Portfolio Value - 7644704.83\n", - "2022-03-11 00:00:00: Portfolio Value - 7491007.36\n", - "2022-03-14 00:00:00: Portfolio Value - 7543608.31\n", - "2022-03-15 00:00:00: Portfolio Value - 7761038.52\n", - "2022-03-16 00:00:00: Portfolio Value - 7866445.01\n", - "2022-03-17 00:00:00: Portfolio Value - 8013392.56\n", - "2022-03-18 00:00:00: Portfolio Value - 8139099.30\n", - "2022-03-21 00:00:00: Portfolio Value - 8125454.85\n", - "2022-03-22 00:00:00: Portfolio Value - 8154573.91\n", - "2022-03-23 00:00:00: Portfolio Value - 7940612.19\n", - "2022-03-24 00:00:00: Portfolio Value - 8051645.28\n", - "2022-03-25 00:00:00: Portfolio Value - 8123451.83\n", - "2022-03-28 00:00:00: Portfolio Value - 8285715.20\n", - "2022-03-29 00:00:00: Portfolio Value - 8403539.59\n", - "2022-03-30 00:00:00: Portfolio Value - 8442035.34\n", - "2022-03-31 00:00:00: Portfolio Value - 8337083.00\n", - "2022-04-01 00:00:00: Portfolio Value - 8454988.91\n", - "2022-04-04 00:00:00: Portfolio Value - 8440877.42\n", - "2022-04-05 00:00:00: Portfolio Value - 8490917.23\n", - "2022-04-06 00:00:00: Portfolio Value - 8620347.62\n", - "2022-04-07 00:00:00: Portfolio Value - 8695703.83\n", - "2022-04-08 00:00:00: Portfolio Value - 8665510.38\n", - "2022-04-11 00:00:00: Portfolio Value - 8503892.91\n", - "2022-04-12 00:00:00: Portfolio Value - 8365149.36\n", - "2022-04-13 00:00:00: Portfolio Value - 8348116.45\n", - "2022-04-14 00:00:00: Portfolio Value - 8300279.33\n", - "2022-04-18 00:00:00: Portfolio Value - 8117910.45\n", - "2022-04-19 00:00:00: Portfolio Value - 8242125.53\n", - "2022-04-20 00:00:00: Portfolio Value - 8342382.91\n", - "2022-04-21 00:00:00: Portfolio Value - 8275067.29\n", - "2022-04-22 00:00:00: Portfolio Value - 8083029.80\n", - "2022-04-25 00:00:00: Portfolio Value - 8174827.50\n", - "2022-04-26 00:00:00: Portfolio Value - 7948107.83\n", - "2022-04-27 00:00:00: Portfolio Value - 7932957.82\n", - "2022-04-28 00:00:00: Portfolio Value - 7911880.23\n", - "2022-04-29 00:00:00: Portfolio Value - 7500951.75\n", - "2022-05-02 00:00:00: Portfolio Value - 7405147.89\n", - "2022-05-03 00:00:00: Portfolio Value - 7389838.01\n", - "2022-05-04 00:00:00: Portfolio Value - 7551049.16\n", - "2022-05-05 00:00:00: Portfolio Value - 7468731.89\n", - "2022-05-06 00:00:00: Portfolio Value - 7462230.01\n", - "2022-05-09 00:00:00: Portfolio Value - 7276270.97\n", - "2022-05-10 00:00:00: Portfolio Value - 7267476.09\n", - "2022-05-11 00:00:00: Portfolio Value - 7182056.13\n", - "2022-05-12 00:00:00: Portfolio Value - 7220903.13\n", - "2022-05-13 00:00:00: Portfolio Value - 7337774.81\n", - "2022-05-16 00:00:00: Portfolio Value - 7341028.56\n", - "2022-05-17 00:00:00: Portfolio Value - 7356100.21\n", - "2022-05-18 00:00:00: Portfolio Value - 7052729.67\n", - "2022-05-19 00:00:00: Portfolio Value - 7030726.91\n", - "2022-05-20 00:00:00: Portfolio Value - 7067193.48\n", - "2022-05-23 00:00:00: Portfolio Value - 7160977.15\n", - "2022-05-24 00:00:00: Portfolio Value - 7176498.68\n", - "2022-05-25 00:00:00: Portfolio Value - 7096406.59\n", - "2022-05-26 00:00:00: Portfolio Value - 7245992.05\n", - "2022-05-27 00:00:00: Portfolio Value - 7392824.75\n", - "2022-05-31 00:00:00: Portfolio Value - 7254028.38\n", - "2022-06-01 00:00:00: Portfolio Value - 7157097.21\n", - "2022-06-02 00:00:00: Portfolio Value - 7359463.09\n", - "2022-06-03 00:00:00: Portfolio Value - 7256680.06\n", - "2022-06-06 00:00:00: Portfolio Value - 7299897.80\n", - "2022-06-07 00:00:00: Portfolio Value - 7331725.19\n", - "2022-06-08 00:00:00: Portfolio Value - 7209726.84\n", - "2022-06-09 00:00:00: Portfolio Value - 7024022.43\n", - "2022-06-10 00:00:00: Portfolio Value - 6983401.09\n", - "2022-06-13 00:00:00: Portfolio Value - 6805496.56\n", - "2022-06-14 00:00:00: Portfolio Value - 6683794.71\n", - "2022-06-15 00:00:00: Portfolio Value - 6675664.97\n", - "2022-06-16 00:00:00: Portfolio Value - 6556621.28\n", - "2022-06-17 00:00:00: Portfolio Value - 6556898.05\n", - "2022-06-21 00:00:00: Portfolio Value - 6745843.27\n", - "2022-06-22 00:00:00: Portfolio Value - 6877482.58\n", - "2022-06-23 00:00:00: Portfolio Value - 7131843.31\n", - "2022-06-24 00:00:00: Portfolio Value - 7326663.73\n", - "2022-06-27 00:00:00: Portfolio Value - 7339374.05\n", - "2022-06-28 00:00:00: Portfolio Value - 7171262.13\n", - "2022-06-29 00:00:00: Portfolio Value - 7263670.74\n", - "2022-06-30 00:00:00: Portfolio Value - 7273105.35\n", - "2022-07-01 00:00:00: Portfolio Value - 7453892.77\n", - "2022-07-05 00:00:00: Portfolio Value - 7448776.25\n", - "2022-07-06 00:00:00: Portfolio Value - 7521859.89\n", - "2022-07-07 00:00:00: Portfolio Value - 7502973.08\n", - "2022-07-08 00:00:00: Portfolio Value - 7451898.00\n", - "2022-07-11 00:00:00: Portfolio Value - 7408347.24\n", - "2022-07-12 00:00:00: Portfolio Value - 7298839.01\n", - "2022-07-13 00:00:00: Portfolio Value - 7296334.70\n", - "2022-07-14 00:00:00: Portfolio Value - 7296686.34\n", - "2022-07-15 00:00:00: Portfolio Value - 7370191.75\n", - "2022-07-18 00:00:00: Portfolio Value - 7145945.83\n", - "2022-07-19 00:00:00: Portfolio Value - 7350423.97\n", - "2022-07-20 00:00:00: Portfolio Value - 7347003.80\n", - "2022-07-21 00:00:00: Portfolio Value - 7476125.52\n", - "2022-07-22 00:00:00: Portfolio Value - 7503349.16\n", - "2022-07-25 00:00:00: Portfolio Value - 7536325.13\n", - "2022-07-26 00:00:00: Portfolio Value - 7582403.34\n", - "2022-07-27 00:00:00: Portfolio Value - 7616698.94\n", - "2022-07-28 00:00:00: Portfolio Value - 7740845.24\n", - "2022-07-29 00:00:00: Portfolio Value - 7734617.59\n", - "2022-08-01 00:00:00: Portfolio Value - 7664261.68\n", - "2022-08-02 00:00:00: Portfolio Value - 7658606.00\n", - "2022-08-03 00:00:00: Portfolio Value - 7724135.19\n", - "2022-08-04 00:00:00: Portfolio Value - 7751159.70\n", - "2022-08-05 00:00:00: Portfolio Value - 7781694.72\n", - "2022-08-08 00:00:00: Portfolio Value - 7808200.15\n", - "2022-08-09 00:00:00: Portfolio Value - 7803676.55\n", - "2022-08-10 00:00:00: Portfolio Value - 7932501.45\n", - "2022-08-11 00:00:00: Portfolio Value - 7879616.25\n", - "2022-08-12 00:00:00: Portfolio Value - 8014867.40\n", - "2022-08-15 00:00:00: Portfolio Value - 8071864.56\n", - "2022-08-16 00:00:00: Portfolio Value - 8062645.50\n", - "2022-08-17 00:00:00: Portfolio Value - 8035135.89\n", - "2022-08-18 00:00:00: Portfolio Value - 8042013.76\n", - "2022-08-19 00:00:00: Portfolio Value - 7988288.51\n", - "2022-08-22 00:00:00: Portfolio Value - 7860955.80\n", - "2022-08-23 00:00:00: Portfolio Value - 7694724.89\n", - "2022-08-24 00:00:00: Portfolio Value - 7687709.62\n", - "2022-08-25 00:00:00: Portfolio Value - 7760021.48\n", - "2022-08-26 00:00:00: Portfolio Value - 7524214.56\n", - "2022-08-29 00:00:00: Portfolio Value - 7494133.41\n", - "2022-08-30 00:00:00: Portfolio Value - 7434942.62\n", - "2022-08-31 00:00:00: Portfolio Value - 7395114.30\n", - "2022-09-01 00:00:00: Portfolio Value - 7456689.81\n", - "2022-09-02 00:00:00: Portfolio Value - 7329798.76\n", - "2022-09-06 00:00:00: Portfolio Value - 7345621.89\n", - "2022-09-07 00:00:00: Portfolio Value - 7638551.28\n", - "2022-09-08 00:00:00: Portfolio Value - 7640325.02\n", - "2022-09-09 00:00:00: Portfolio Value - 7735204.15\n", - "2022-09-12 00:00:00: Portfolio Value - 7779531.92\n", - "2022-09-13 00:00:00: Portfolio Value - 7528550.37\n", - "2022-09-14 00:00:00: Portfolio Value - 7552041.04\n", - "2022-09-15 00:00:00: Portfolio Value - 7422597.00\n", - "2022-09-16 00:00:00: Portfolio Value - 7375187.92\n", - "2022-09-19 00:00:00: Portfolio Value - 7388507.13\n", - "2022-09-20 00:00:00: Portfolio Value - 7265011.22\n", - "2022-09-21 00:00:00: Portfolio Value - 7125964.07\n", - "2022-09-22 00:00:00: Portfolio Value - 7039873.09\n", - "2022-09-23 00:00:00: Portfolio Value - 7020471.96\n", - "2022-09-26 00:00:00: Portfolio Value - 6980205.77\n", - "2022-09-27 00:00:00: Portfolio Value - 6863674.77\n", - "2022-09-28 00:00:00: Portfolio Value - 6969255.64\n", - "2022-09-29 00:00:00: Portfolio Value - 6883890.19\n", - "2022-09-30 00:00:00: Portfolio Value - 6779231.54\n", - "2022-10-03 00:00:00: Portfolio Value - 7017979.97\n", - "2022-10-04 00:00:00: Portfolio Value - 7218618.28\n", - "2022-10-05 00:00:00: Portfolio Value - 7237975.83\n", - "2022-10-06 00:00:00: Portfolio Value - 7083839.95\n", - "2022-10-07 00:00:00: Portfolio Value - 6825655.21\n", - "2022-10-10 00:00:00: Portfolio Value - 6810308.60\n", - "2022-10-11 00:00:00: Portfolio Value - 6782635.56\n", - "2022-10-12 00:00:00: Portfolio Value - 6662139.18\n", - "2022-10-13 00:00:00: Portfolio Value - 6811986.79\n", - "2022-10-14 00:00:00: Portfolio Value - 6646200.12\n", - "2022-10-17 00:00:00: Portfolio Value - 6847847.11\n", - "2022-10-18 00:00:00: Portfolio Value - 6966642.70\n", - "2022-10-19 00:00:00: Portfolio Value - 6913590.54\n", - "2022-10-20 00:00:00: Portfolio Value - 6752347.80\n", - "2022-10-21 00:00:00: Portfolio Value - 6843284.92\n", - "2022-10-24 00:00:00: Portfolio Value - 6962536.85\n", - "2022-10-25 00:00:00: Portfolio Value - 7026908.14\n", - "2022-10-26 00:00:00: Portfolio Value - 7088957.81\n", - "2022-10-27 00:00:00: Portfolio Value - 7149720.53\n", - "2022-10-28 00:00:00: Portfolio Value - 7336684.48\n", - "2022-10-31 00:00:00: Portfolio Value - 7322852.77\n", - "2022-11-01 00:00:00: Portfolio Value - 7281881.65\n", - "2022-11-02 00:00:00: Portfolio Value - 7109376.37\n", - "2022-11-03 00:00:00: Portfolio Value - 6958922.72\n", - "2022-11-04 00:00:00: Portfolio Value - 6982882.34\n", - "2022-11-07 00:00:00: Portfolio Value - 7114527.10\n", - "2022-11-08 00:00:00: Portfolio Value - 7135740.95\n", - "2022-11-09 00:00:00: Portfolio Value - 7059554.48\n", - "2022-11-10 00:00:00: Portfolio Value - 7435375.00\n", - "2022-11-11 00:00:00: Portfolio Value - 7266280.99\n", - "2022-11-14 00:00:00: Portfolio Value - 7207488.78\n", - "2022-11-15 00:00:00: Portfolio Value - 7288995.57\n", - "2022-11-16 00:00:00: Portfolio Value - 7287407.85\n", - "2022-11-17 00:00:00: Portfolio Value - 7183699.03\n", - "2022-11-18 00:00:00: Portfolio Value - 7345255.96\n", - "2022-11-21 00:00:00: Portfolio Value - 7512323.35\n", - "2022-11-22 00:00:00: Portfolio Value - 7555905.84\n", - "2022-11-23 00:00:00: Portfolio Value - 7603303.82\n", - "2022-11-25 00:00:00: Portfolio Value - 7676350.37\n", - "2022-11-28 00:00:00: Portfolio Value - 7554345.42\n", - "2022-11-29 00:00:00: Portfolio Value - 7528017.17\n", - "2022-11-30 00:00:00: Portfolio Value - 7787821.19\n", - "2022-12-01 00:00:00: Portfolio Value - 7821783.88\n", - "2022-12-02 00:00:00: Portfolio Value - 7863897.68\n", - "2022-12-05 00:00:00: Portfolio Value - 7639099.30\n", - "2022-12-06 00:00:00: Portfolio Value - 7608550.48\n", - "2022-12-07 00:00:00: Portfolio Value - 7619279.19\n", - "2022-12-08 00:00:00: Portfolio Value - 7671827.83\n", - "2022-12-09 00:00:00: Portfolio Value - 7605932.94\n", - "2022-12-12 00:00:00: Portfolio Value - 7687405.92\n", - "2022-12-13 00:00:00: Portfolio Value - 7745741.90\n", - "2022-12-14 00:00:00: Portfolio Value - 7723738.89\n", - "2022-12-15 00:00:00: Portfolio Value - 7586198.80\n", - "2022-12-16 00:00:00: Portfolio Value - 7479489.09\n", - "2022-12-19 00:00:00: Portfolio Value - 7450053.86\n", - "2022-12-20 00:00:00: Portfolio Value - 7449842.47\n", - "2022-12-21 00:00:00: Portfolio Value - 7590461.13\n", - "2022-12-22 00:00:00: Portfolio Value - 7547680.50\n", - "2022-12-23 00:00:00: Portfolio Value - 7589588.34\n", - "2022-12-27 00:00:00: Portfolio Value - 7587189.94\n", - "2022-12-28 00:00:00: Portfolio Value - 7498670.15\n", - "2022-12-29 00:00:00: Portfolio Value - 7642822.20\n", - "2022-12-30 00:00:00: Portfolio Value - 7554994.76\n", - "2023-01-03 00:00:00: Portfolio Value - 7587289.75\n", - "2023-01-04 00:00:00: Portfolio Value - 7622329.03\n", - "2023-01-05 00:00:00: Portfolio Value - 7478243.90\n", - "2023-01-06 00:00:00: Portfolio Value - 7673206.67\n", - "2023-01-09 00:00:00: Portfolio Value - 7580986.45\n", - "2023-01-10 00:00:00: Portfolio Value - 7576716.93\n", - "2023-01-11 00:00:00: Portfolio Value - 7651929.94\n", - "2023-01-12 00:00:00: Portfolio Value - 7564273.19\n", - "2023-01-13 00:00:00: Portfolio Value - 7631871.82\n", - "2023-01-17 00:00:00: Portfolio Value - 7705522.78\n", - "2023-01-18 00:00:00: Portfolio Value - 7573957.12\n", - "2023-01-19 00:00:00: Portfolio Value - 7544340.69\n", - "2023-01-20 00:00:00: Portfolio Value - 7685297.59\n", - "2023-01-23 00:00:00: Portfolio Value - 7692135.31\n", - "2023-01-24 00:00:00: Portfolio Value - 7636543.51\n", - "2023-01-25 00:00:00: Portfolio Value - 7594218.31\n", - "2023-01-26 00:00:00: Portfolio Value - 7582011.73\n", - "2023-01-27 00:00:00: Portfolio Value - 7484176.98\n", - "2023-01-30 00:00:00: Portfolio Value - 7473627.03\n", - "2023-01-31 00:00:00: Portfolio Value - 7593430.62\n", - "2023-02-01 00:00:00: Portfolio Value - 7569352.51\n", - "2023-02-02 00:00:00: Portfolio Value - 7478337.71\n", - "2023-02-03 00:00:00: Portfolio Value - 7443443.86\n", - "2023-02-06 00:00:00: Portfolio Value - 7463319.66\n", - "2023-02-07 00:00:00: Portfolio Value - 7548622.67\n", - "2023-02-08 00:00:00: Portfolio Value - 7498418.18\n", - "2023-02-09 00:00:00: Portfolio Value - 7262649.78\n", - "2023-02-10 00:00:00: Portfolio Value - 7357749.17\n", - "2023-02-13 00:00:00: Portfolio Value - 7419130.78\n", - "2023-02-14 00:00:00: Portfolio Value - 7220504.54\n", - "2023-02-15 00:00:00: Portfolio Value - 7292364.18\n", - "2023-02-16 00:00:00: Portfolio Value - 7238890.96\n", - "2023-02-17 00:00:00: Portfolio Value - 7321257.13\n", - "2023-02-21 00:00:00: Portfolio Value - 7233775.68\n", - "2023-02-22 00:00:00: Portfolio Value - 7229328.68\n", - "2023-02-23 00:00:00: Portfolio Value - 7209643.98\n", - "2023-02-24 00:00:00: Portfolio Value - 7140072.35\n", - "2023-02-27 00:00:00: Portfolio Value - 7132470.72\n", - "2023-02-28 00:00:00: Portfolio Value - 7130481.40\n", - "2023-03-01 00:00:00: Portfolio Value - 7099107.45\n", - "2023-03-02 00:00:00: Portfolio Value - 7201792.69\n", - "2023-03-03 00:00:00: Portfolio Value - 7310388.61\n", - "2023-03-06 00:00:00: Portfolio Value - 7293556.27\n", - "2023-03-07 00:00:00: Portfolio Value - 7214250.22\n", - "2023-03-08 00:00:00: Portfolio Value - 7193474.44\n", - "2023-03-09 00:00:00: Portfolio Value - 7099955.14\n", - "2023-03-10 00:00:00: Portfolio Value - 7006769.73\n", - "2023-03-13 00:00:00: Portfolio Value - 7048195.21\n", - "2023-03-14 00:00:00: Portfolio Value - 7143782.07\n", - "2023-03-15 00:00:00: Portfolio Value - 7108119.24\n", - "2023-03-16 00:00:00: Portfolio Value - 7281013.73\n", - "2023-03-17 00:00:00: Portfolio Value - 7162061.42\n", - "2023-03-20 00:00:00: Portfolio Value - 7319282.93\n", - "2023-03-21 00:00:00: Portfolio Value - 7340504.79\n", - "2023-03-22 00:00:00: Portfolio Value - 7234012.36\n", - "2023-03-23 00:00:00: Portfolio Value - 7209121.93\n", - "2023-03-24 00:00:00: Portfolio Value - 7363559.42\n", - "2023-03-27 00:00:00: Portfolio Value - 7382604.90\n", - "2023-03-28 00:00:00: Portfolio Value - 7370417.71\n", - "2023-03-29 00:00:00: Portfolio Value - 7458132.81\n", - "2023-03-30 00:00:00: Portfolio Value - 7456151.57\n", - "2023-03-31 00:00:00: Portfolio Value - 7525965.35\n", - "2023-04-03 00:00:00: Portfolio Value - 7527091.04\n", - "2023-04-04 00:00:00: Portfolio Value - 7567300.84\n", - "2023-04-05 00:00:00: Portfolio Value - 7672273.71\n", - "2023-04-06 00:00:00: Portfolio Value - 7736159.17\n", - "2023-04-10 00:00:00: Portfolio Value - 7677552.25\n", - "2023-04-11 00:00:00: Portfolio Value - 7711562.71\n", - "2023-04-12 00:00:00: Portfolio Value - 7722736.33\n", - "2023-04-13 00:00:00: Portfolio Value - 7802717.44\n", - "2023-04-14 00:00:00: Portfolio Value - 7724188.41\n", - "2023-04-17 00:00:00: Portfolio Value - 7786600.21\n", - "2023-04-18 00:00:00: Portfolio Value - 7776468.87\n", - "2023-04-19 00:00:00: Portfolio Value - 7781138.14\n", - "2023-04-20 00:00:00: Portfolio Value - 7881734.31\n", - "2023-04-21 00:00:00: Portfolio Value - 7943654.71\n", - "2023-04-24 00:00:00: Portfolio Value - 7928431.85\n", - "2023-04-25 00:00:00: Portfolio Value - 7921657.36\n", - "2023-04-26 00:00:00: Portfolio Value - 7803268.84\n", - "2023-04-27 00:00:00: Portfolio Value - 7895037.35\n", - "2023-04-28 00:00:00: Portfolio Value - 8061108.83\n", - "2023-05-01 00:00:00: Portfolio Value - 8100288.93\n", - "2023-05-02 00:00:00: Portfolio Value - 7967653.67\n", - "2023-05-03 00:00:00: Portfolio Value - 8130539.42\n", - "2023-05-04 00:00:00: Portfolio Value - 8047481.38\n", - "2023-05-05 00:00:00: Portfolio Value - 8119653.20\n", - "2023-05-08 00:00:00: Portfolio Value - 8089148.57\n", - "2023-05-09 00:00:00: Portfolio Value - 8103141.30\n", - "2023-05-10 00:00:00: Portfolio Value - 8212462.28\n", - "2023-05-11 00:00:00: Portfolio Value - 8219845.80\n", - "2023-05-12 00:00:00: Portfolio Value - 8226758.20\n", - "2023-05-15 00:00:00: Portfolio Value - 8144463.89\n", - "2023-05-16 00:00:00: Portfolio Value - 8131769.51\n", - "2023-05-17 00:00:00: Portfolio Value - 8028737.53\n", - "2023-05-18 00:00:00: Portfolio Value - 8043988.35\n", - "2023-05-19 00:00:00: Portfolio Value - 8126795.67\n", - "2023-05-22 00:00:00: Portfolio Value - 8088803.01\n", - "2023-05-23 00:00:00: Portfolio Value - 7884583.99\n", - "2023-05-24 00:00:00: Portfolio Value - 7852702.90\n", - "2023-05-25 00:00:00: Portfolio Value - 7768559.71\n", - "2023-05-26 00:00:00: Portfolio Value - 7831935.29\n", - "2023-05-30 00:00:00: Portfolio Value - 7780730.02\n", - "2023-05-31 00:00:00: Portfolio Value - 7799194.81\n", - "2023-06-01 00:00:00: Portfolio Value - 7963309.06\n", - "2023-06-02 00:00:00: Portfolio Value - 8052269.15\n", - "2023-06-05 00:00:00: Portfolio Value - 8111793.35\n", - "2023-06-06 00:00:00: Portfolio Value - 8024632.02\n", - "2023-06-07 00:00:00: Portfolio Value - 7928364.49\n", - "2023-06-08 00:00:00: Portfolio Value - 7964139.15\n", - "2023-06-09 00:00:00: Portfolio Value - 7984373.95\n", - "2023-06-12 00:00:00: Portfolio Value - 7966208.34\n", - "2023-06-13 00:00:00: Portfolio Value - 7920141.15\n", - "2023-06-14 00:00:00: Portfolio Value - 8001301.93\n", - "2023-06-15 00:00:00: Portfolio Value - 8130850.54\n", - "2023-06-16 00:00:00: Portfolio Value - 8199249.63\n", - "2023-06-20 00:00:00: Portfolio Value - 8133030.55\n", - "2023-06-21 00:00:00: Portfolio Value - 8186245.14\n", - "2023-06-22 00:00:00: Portfolio Value - 8226863.68\n", - "2023-06-23 00:00:00: Portfolio Value - 8140929.90\n", - "2023-06-26 00:00:00: Portfolio Value - 8110570.35\n", - "2023-06-27 00:00:00: Portfolio Value - 8167932.31\n", - "2023-06-28 00:00:00: Portfolio Value - 8130807.64\n", - "2023-06-29 00:00:00: Portfolio Value - 8174851.07\n", - "2023-06-30 00:00:00: Portfolio Value - 8323053.88\n", - "2023-07-03 00:00:00: Portfolio Value - 8190262.72\n", - "2023-07-05 00:00:00: Portfolio Value - 8227194.66\n", - "2023-07-06 00:00:00: Portfolio Value - 8242997.98\n", - "2023-07-07 00:00:00: Portfolio Value - 8156766.37\n", - "2023-07-10 00:00:00: Portfolio Value - 8187616.83\n", - "2023-07-11 00:00:00: Portfolio Value - 8217746.93\n", - "2023-07-12 00:00:00: Portfolio Value - 8189334.60\n", - "2023-07-13 00:00:00: Portfolio Value - 8224684.54\n", - "2023-07-14 00:00:00: Portfolio Value - 8280186.02\n", - "2023-07-17 00:00:00: Portfolio Value - 8300374.53\n", - "2023-07-18 00:00:00: Portfolio Value - 8230662.23\n", - "2023-07-19 00:00:00: Portfolio Value - 8179570.99\n", - "2023-07-20 00:00:00: Portfolio Value - 8382402.32\n", - "2023-07-21 00:00:00: Portfolio Value - 8462869.18\n", - "2023-07-24 00:00:00: Portfolio Value - 8534040.19\n", - "2023-07-25 00:00:00: Portfolio Value - 8584030.11\n", - "2023-07-26 00:00:00: Portfolio Value - 8614290.35\n", - "2023-07-27 00:00:00: Portfolio Value - 8357130.48\n", - "2023-07-28 00:00:00: Portfolio Value - 8344963.12\n", - "2023-07-31 00:00:00: Portfolio Value - 8275442.03\n", - "2023-08-01 00:00:00: Portfolio Value - 8378112.90\n", - "2023-08-02 00:00:00: Portfolio Value - 8405700.90\n", - "2023-08-03 00:00:00: Portfolio Value - 8393420.44\n", - "2023-08-04 00:00:00: Portfolio Value - 8057370.48\n", - "2023-08-07 00:00:00: Portfolio Value - 8187148.85\n", - "2023-08-08 00:00:00: Portfolio Value - 8101037.84\n", - "2023-08-09 00:00:00: Portfolio Value - 8147159.32\n", - "2023-08-10 00:00:00: Portfolio Value - 8073807.45\n", - "2023-08-11 00:00:00: Portfolio Value - 8184297.22\n", - "2023-08-14 00:00:00: Portfolio Value - 8181140.74\n", - "2023-08-15 00:00:00: Portfolio Value - 8120481.81\n", - "2023-08-16 00:00:00: Portfolio Value - 8050390.98\n", - "2023-08-17 00:00:00: Portfolio Value - 7876935.25\n", - "2023-08-18 00:00:00: Portfolio Value - 7897833.92\n", - "2023-08-21 00:00:00: Portfolio Value - 7918864.98\n", - "2023-08-22 00:00:00: Portfolio Value - 7923605.95\n", - "2023-08-23 00:00:00: Portfolio Value - 8001621.81\n", - "2023-08-24 00:00:00: Portfolio Value - 8046770.78\n", - "2023-08-25 00:00:00: Portfolio Value - 8143812.90\n", - "2023-08-28 00:00:00: Portfolio Value - 8162927.05\n", - "2023-08-29 00:00:00: Portfolio Value - 8202431.66\n", - "2023-08-30 00:00:00: Portfolio Value - 8241636.20\n", - "2023-08-31 00:00:00: Portfolio Value - 8200363.33\n", - "2023-09-01 00:00:00: Portfolio Value - 8187035.81\n", - "2023-09-05 00:00:00: Portfolio Value - 8009817.10\n", - "2023-09-06 00:00:00: Portfolio Value - 8004226.32\n", - "2023-09-07 00:00:00: Portfolio Value - 8064527.53\n", - "2023-09-08 00:00:00: Portfolio Value - 8015937.24\n", - "2023-09-11 00:00:00: Portfolio Value - 8062347.96\n", - "2023-09-12 00:00:00: Portfolio Value - 8020314.81\n", - "2023-09-13 00:00:00: Portfolio Value - 8002090.15\n", - "2023-09-14 00:00:00: Portfolio Value - 8073889.00\n", - "2023-09-15 00:00:00: Portfolio Value - 8011213.13\n", - "2023-09-18 00:00:00: Portfolio Value - 8053717.38\n", - "2023-09-19 00:00:00: Portfolio Value - 8056086.80\n", - "2023-09-20 00:00:00: Portfolio Value - 8053271.38\n", - "2023-09-21 00:00:00: Portfolio Value - 7924969.14\n", - "2023-09-22 00:00:00: Portfolio Value - 7932275.58\n", - "2023-09-25 00:00:00: Portfolio Value - 7952715.23\n", - "2023-09-26 00:00:00: Portfolio Value - 7876976.18\n", - "2023-09-27 00:00:00: Portfolio Value - 7836312.76\n", - "2023-09-28 00:00:00: Portfolio Value - 7828135.45\n", - "2023-09-29 00:00:00: Portfolio Value - 7709686.64\n", - "2023-10-02 00:00:00: Portfolio Value - 7650959.36\n", - "2023-10-03 00:00:00: Portfolio Value - 7648326.71\n", - "2023-10-04 00:00:00: Portfolio Value - 7773706.52\n", - "2023-10-05 00:00:00: Portfolio Value - 7700242.60\n", - "2023-10-06 00:00:00: Portfolio Value - 7743192.54\n", - "2023-10-09 00:00:00: Portfolio Value - 7833066.77\n", - "2023-10-10 00:00:00: Portfolio Value - 7876923.51\n", - "2023-10-11 00:00:00: Portfolio Value - 7848180.97\n", - "2023-10-12 00:00:00: Portfolio Value - 7752960.65\n", - "2023-10-13 00:00:00: Portfolio Value - 7863355.68\n", - "2023-10-16 00:00:00: Portfolio Value - 7902583.13\n", - "2023-10-17 00:00:00: Portfolio Value - 7880392.66\n", - "2023-10-18 00:00:00: Portfolio Value - 7861061.27\n", - "2023-10-19 00:00:00: Portfolio Value - 7774955.20\n", - "2023-10-20 00:00:00: Portfolio Value - 7751146.43\n", - "2023-10-23 00:00:00: Portfolio Value - 7701370.32\n", - "2023-10-24 00:00:00: Portfolio Value - 7757454.37\n", - "2023-10-25 00:00:00: Portfolio Value - 7721066.03\n", - "2023-10-26 00:00:00: Portfolio Value - 7801299.79\n", - "2023-10-27 00:00:00: Portfolio Value - 7666605.66\n", - "2023-10-30 00:00:00: Portfolio Value - 7759154.46\n", - "2023-10-31 00:00:00: Portfolio Value - 7933075.79\n", - "2023-11-01 00:00:00: Portfolio Value - 7939907.29\n", - "2023-11-02 00:00:00: Portfolio Value - 8068928.94\n", - "2023-11-03 00:00:00: Portfolio Value - 8070622.29\n", - "2023-11-06 00:00:00: Portfolio Value - 8098289.16\n", - "2023-11-07 00:00:00: Portfolio Value - 8136703.94\n", - "2023-11-08 00:00:00: Portfolio Value - 8129737.64\n", - "2023-11-09 00:00:00: Portfolio Value - 7989475.07\n", - "2023-11-10 00:00:00: Portfolio Value - 8070579.32\n", - "2023-11-13 00:00:00: Portfolio Value - 8105751.26\n", - "2023-11-14 00:00:00: Portfolio Value - 8097747.49\n", - "2023-11-15 00:00:00: Portfolio Value - 8066497.32\n", - "2023-11-16 00:00:00: Portfolio Value - 8157864.39\n", - "2023-11-17 00:00:00: Portfolio Value - 8112042.03\n", - "2023-11-20 00:00:00: Portfolio Value - 8139476.58\n", - "2023-11-21 00:00:00: Portfolio Value - 8237468.40\n", - "2023-11-22 00:00:00: Portfolio Value - 8281796.22\n", - "2023-11-24 00:00:00: Portfolio Value - 8321957.43\n", - "2023-11-27 00:00:00: Portfolio Value - 8324512.35\n", - "2023-11-28 00:00:00: Portfolio Value - 8265750.02\n", - "2023-11-29 00:00:00: Portfolio Value - 8205948.78\n", - "2023-11-30 00:00:00: Portfolio Value - 8307732.10\n", - "2023-12-01 00:00:00: Portfolio Value - 8250975.97\n", - "2023-12-04 00:00:00: Portfolio Value - 8212421.64\n", - "2023-12-05 00:00:00: Portfolio Value - 8129455.66\n", - "2023-12-06 00:00:00: Portfolio Value - 8087969.94\n", - "2023-12-07 00:00:00: Portfolio Value - 8074640.90\n", - "2023-12-08 00:00:00: Portfolio Value - 8030215.58\n", - "2023-12-11 00:00:00: Portfolio Value - 8129063.80\n", - "2023-12-12 00:00:00: Portfolio Value - 8252609.38\n", - "2023-12-13 00:00:00: Portfolio Value - 8350432.70\n", - "2023-12-14 00:00:00: Portfolio Value - 7899347.54\n", - "2023-12-15 00:00:00: Portfolio Value - 7800222.69\n", - "2023-12-18 00:00:00: Portfolio Value - 7922774.21\n", - "2023-12-19 00:00:00: Portfolio Value - 7892672.07\n", - "2023-12-20 00:00:00: Portfolio Value - 7815476.97\n", - "2023-12-21 00:00:00: Portfolio Value - 7958445.76\n", - "2023-12-22 00:00:00: Portfolio Value - 7979316.78\n", - "2023-12-26 00:00:00: Portfolio Value - 7989813.81\n", - "2023-12-27 00:00:00: Portfolio Value - 7985349.80\n", - "2023-12-28 00:00:00: Portfolio Value - 8012319.58\n", - "2023-12-29 00:00:00: Portfolio Value - 8058876.81\n", - "2024-01-02 00:00:00: Portfolio Value - 8051293.99\n", - "2024-01-03 00:00:00: Portfolio Value - 7975744.03\n", - "2024-01-04 00:00:00: Portfolio Value - 8049535.62\n", - "2024-01-05 00:00:00: Portfolio Value - 7974552.85\n", - "2024-01-08 00:00:00: Portfolio Value - 8108255.36\n", - "2024-01-09 00:00:00: Portfolio Value - 8090943.27\n", - "2024-01-10 00:00:00: Portfolio Value - 8166029.69\n", - "2024-01-11 00:00:00: Portfolio Value - 8174066.38\n", - "2024-01-12 00:00:00: Portfolio Value - 8233655.37\n", - "2024-01-16 00:00:00: Portfolio Value - 8181625.18\n", - "2024-01-17 00:00:00: Portfolio Value - 8209959.89\n", - "2024-01-18 00:00:00: Portfolio Value - 8270412.31\n", - "2024-01-19 00:00:00: Portfolio Value - 8325084.98\n", - "2024-01-22 00:00:00: Portfolio Value - 8348998.03\n", - "2024-01-23 00:00:00: Portfolio Value - 8409351.93\n", - "2024-01-24 00:00:00: Portfolio Value - 8307408.52\n", - "2024-01-25 00:00:00: Portfolio Value - 8416175.44\n", - "2024-01-26 00:00:00: Portfolio Value - 8426050.13\n", - "2024-01-29 00:00:00: Portfolio Value - 8373290.71\n", - "2024-01-30 00:00:00: Portfolio Value - 8370334.80\n", - "2024-01-31 00:00:00: Portfolio Value - 8380282.23\n", - "2024-02-01 00:00:00: Portfolio Value - 8518739.39\n", - "2024-02-02 00:00:00: Portfolio Value - 8537109.89\n", - "2024-02-05 00:00:00: Portfolio Value - 8514713.86\n", - "2024-02-06 00:00:00: Portfolio Value - 8671011.56\n", - "2024-02-07 00:00:00: Portfolio Value - 8693637.31\n", - "2024-02-08 00:00:00: Portfolio Value - 8603630.47\n", - "2024-02-09 00:00:00: Portfolio Value - 8644031.31\n", - "2024-02-12 00:00:00: Portfolio Value - 8577038.95\n", - "2024-02-13 00:00:00: Portfolio Value - 8565166.12\n", - "2024-02-14 00:00:00: Portfolio Value - 8631466.97\n", - "2024-02-15 00:00:00: Portfolio Value - 8708417.21\n", - "2024-02-16 00:00:00: Portfolio Value - 8661975.68\n", - "2024-02-20 00:00:00: Portfolio Value - 8663497.87\n", - "2024-02-21 00:00:00: Portfolio Value - 8620919.07\n", - "2024-02-22 00:00:00: Portfolio Value - 8696381.42\n", - "2024-02-23 00:00:00: Portfolio Value - 8781511.58\n", - "2024-02-26 00:00:00: Portfolio Value - 8666870.05\n", - "2024-02-27 00:00:00: Portfolio Value - 8629518.86\n", - "2024-02-28 00:00:00: Portfolio Value - 8589906.97\n", - "2024-02-29 00:00:00: Portfolio Value - 8563770.98\n", - "2024-03-01 00:00:00: Portfolio Value - 8532155.89\n", - "2024-03-04 00:00:00: Portfolio Value - 8585876.18\n", - "2024-03-05 00:00:00: Portfolio Value - 8549359.58\n", - "2024-03-06 00:00:00: Portfolio Value - 8661245.11\n", - "2024-03-07 00:00:00: Portfolio Value - 8759602.59\n", - "2024-03-08 00:00:00: Portfolio Value - 8780472.68\n", - "2024-03-11 00:00:00: Portfolio Value - 8788130.69\n", - "2024-03-12 00:00:00: Portfolio Value - 8839409.66\n", - "2024-03-13 00:00:00: Portfolio Value - 8797109.89\n", - "2024-03-14 00:00:00: Portfolio Value - 8742719.91\n", - "2024-03-15 00:00:00: Portfolio Value - 8770706.36\n", - "2024-03-18 00:00:00: Portfolio Value - 8793750.89\n", - "2024-03-19 00:00:00: Portfolio Value - 8879632.61\n", - "2024-03-20 00:00:00: Portfolio Value - 8835549.41\n", - "2024-03-21 00:00:00: Portfolio Value - 8780380.78\n", - "2024-03-22 00:00:00: Portfolio Value - 8802431.37\n", - "2024-03-25 00:00:00: Portfolio Value - 8751439.34\n", - "2024-03-26 00:00:00: Portfolio Value - 8737052.28\n", - "2024-03-27 00:00:00: Portfolio Value - 8937282.15\n", - "2024-03-28 00:00:00: Portfolio Value - 8973076.98\n", - "2024-04-01 00:00:00: Portfolio Value - 8803877.22\n", - "2024-04-02 00:00:00: Portfolio Value - 8678086.47\n", - "2024-04-03 00:00:00: Portfolio Value - 8796991.89\n", - "2024-04-04 00:00:00: Portfolio Value - 8670313.25\n", - "2024-04-05 00:00:00: Portfolio Value - 8805415.67\n", - "2024-04-08 00:00:00: Portfolio Value - 8721317.82\n", - "2024-04-09 00:00:00: Portfolio Value - 8775540.87\n", - "2024-04-10 00:00:00: Portfolio Value - 8694433.70\n", - "2024-04-11 00:00:00: Portfolio Value - 8611365.09\n", - "2024-04-12 00:00:00: Portfolio Value - 8519089.75\n", - "2024-04-15 00:00:00: Portfolio Value - 8450341.41\n", - "2024-04-16 00:00:00: Portfolio Value - 8465025.37\n", - "2024-04-17 00:00:00: Portfolio Value - 8413824.16\n", - "2024-04-18 00:00:00: Portfolio Value - 8511646.09\n", - "2024-04-19 00:00:00: Portfolio Value - 8617305.36\n", - "2024-04-22 00:00:00: Portfolio Value - 8647509.34\n", - "2024-04-23 00:00:00: Portfolio Value - 8709839.45\n", - "2024-04-24 00:00:00: Portfolio Value - 8744145.64\n", - "2024-04-25 00:00:00: Portfolio Value - 8686133.09\n", - "2024-04-26 00:00:00: Portfolio Value - 8811047.57\n", - "2024-04-29 00:00:00: Portfolio Value - 8840635.59\n", - "2024-04-30 00:00:00: Portfolio Value - 8902677.83\n", - "2024-05-01 00:00:00: Portfolio Value - 9049466.29\n", - "2024-05-02 00:00:00: Portfolio Value - 9082421.85\n", - "2024-05-03 00:00:00: Portfolio Value - 9041097.30\n", - "2024-05-06 00:00:00: Portfolio Value - 9164609.54\n", - "2024-05-07 00:00:00: Portfolio Value - 9275624.70\n", - "2024-05-08 00:00:00: Portfolio Value - 9215271.48\n", - "2024-05-09 00:00:00: Portfolio Value - 9292877.94\n", - "2024-05-10 00:00:00: Portfolio Value - 9358525.56\n", - "2024-05-13 00:00:00: Portfolio Value - 9284085.02\n", - "2024-05-14 00:00:00: Portfolio Value - 9262083.03\n", - "2024-05-15 00:00:00: Portfolio Value - 9330675.49\n", - "2024-05-16 00:00:00: Portfolio Value - 9395743.96\n", - "2024-05-17 00:00:00: Portfolio Value - 9419503.51\n", - "2024-05-20 00:00:00: Portfolio Value - 9414381.21\n", - "2024-05-21 00:00:00: Portfolio Value - 9424511.81\n", - "2024-05-22 00:00:00: Portfolio Value - 9478323.63\n", - "2024-05-23 00:00:00: Portfolio Value - 9266971.10\n", - "2024-05-24 00:00:00: Portfolio Value - 9278886.93\n", - "2024-05-28 00:00:00: Portfolio Value - 9079699.28\n", - "2024-05-29 00:00:00: Portfolio Value - 9001798.13\n", - "2024-05-30 00:00:00: Portfolio Value - 9103432.29\n", - "2024-05-31 00:00:00: Portfolio Value - 9253041.76\n", - "2024-06-03 00:00:00: Portfolio Value - 9309448.80\n", - "2024-06-04 00:00:00: Portfolio Value - 9438973.56\n", - "2024-06-05 00:00:00: Portfolio Value - 9409926.65\n", - "2024-06-06 00:00:00: Portfolio Value - 9415771.47\n", - "2024-06-07 00:00:00: Portfolio Value - 9480526.68\n", - "2024-06-10 00:00:00: Portfolio Value - 9493640.31\n", - "2024-06-11 00:00:00: Portfolio Value - 9495498.86\n", - "2024-06-12 00:00:00: Portfolio Value - 9460283.48\n", - "2024-06-13 00:00:00: Portfolio Value - 9468906.49\n", - "2024-06-14 00:00:00: Portfolio Value - 9508829.15\n", - "2024-06-17 00:00:00: Portfolio Value - 9569361.57\n", - "2024-06-18 00:00:00: Portfolio Value - 9614748.65\n", - "2024-06-20 00:00:00: Portfolio Value - 9708048.32\n", - "2024-06-21 00:00:00: Portfolio Value - 9697753.77\n", - "2024-06-24 00:00:00: Portfolio Value - 9553065.54\n", - "2024-06-25 00:00:00: Portfolio Value - 9483757.01\n", - "2024-06-26 00:00:00: Portfolio Value - 9391322.93\n", - "2024-06-27 00:00:00: Portfolio Value - 9536923.50\n", - "2024-06-28 00:00:00: Portfolio Value - 9463636.60\n", - "2024-07-01 00:00:00: Portfolio Value - 9332018.72\n", - "2024-07-02 00:00:00: Portfolio Value - 9417070.23\n", - "2024-07-03 00:00:00: Portfolio Value - 9392952.41\n", - "2024-07-05 00:00:00: Portfolio Value - 9502443.87\n", - "2024-07-08 00:00:00: Portfolio Value - 9438135.72\n", - "2024-07-09 00:00:00: Portfolio Value - 9363130.85\n", - "2024-07-10 00:00:00: Portfolio Value - 9473580.40\n", - "2024-07-11 00:00:00: Portfolio Value - 9531467.20\n", - "2024-07-12 00:00:00: Portfolio Value - 9642763.73\n", - "2024-07-15 00:00:00: Portfolio Value - 9553548.35\n", - "2024-07-16 00:00:00: Portfolio Value - 9626254.63\n", - "2024-07-17 00:00:00: Portfolio Value - 9727726.15\n", - "2024-07-18 00:00:00: Portfolio Value - 9792035.77\n", - "2024-07-19 00:00:00: Portfolio Value - 9720052.20\n", - "2024-07-22 00:00:00: Portfolio Value - 9804648.43\n", - "2024-07-23 00:00:00: Portfolio Value - 9833313.15\n", - "2024-07-24 00:00:00: Portfolio Value - 9859087.26\n", - "2024-07-25 00:00:00: Portfolio Value - 9893117.28\n", - "2024-07-26 00:00:00: Portfolio Value - 9976380.25\n", - "2024-07-29 00:00:00: Portfolio Value - 10073524.70\n", - "2024-07-30 00:00:00: Portfolio Value - 10110117.72\n", - "2024-07-31 00:00:00: Portfolio Value - 9921644.32\n", - "2024-08-01 00:00:00: Portfolio Value - 10072696.00\n", - "2024-08-02 00:00:00: Portfolio Value - 10379680.37\n", - "2024-08-05 00:00:00: Portfolio Value - 10110599.29\n", - "2024-08-06 00:00:00: Portfolio Value - 10159911.84\n", - "2024-08-07 00:00:00: Portfolio Value - 10116680.65\n", - "2024-08-08 00:00:00: Portfolio Value - 10193460.15\n", - "2024-08-09 00:00:00: Portfolio Value - 10213774.42\n", - "2024-08-12 00:00:00: Portfolio Value - 10172849.30\n", - "2024-08-13 00:00:00: Portfolio Value - 10208088.29\n", - "2024-08-14 00:00:00: Portfolio Value - 10343499.59\n", - "2024-08-15 00:00:00: Portfolio Value - 10309339.77\n", - "2024-08-16 00:00:00: Portfolio Value - 10308956.23\n", - "2024-08-19 00:00:00: Portfolio Value - 10432249.35\n", - "2024-08-20 00:00:00: Portfolio Value - 10423010.08\n", - "2024-08-21 00:00:00: Portfolio Value - 10469218.23\n", - "2024-08-22 00:00:00: Portfolio Value - 10541149.25\n", - "2024-08-23 00:00:00: Portfolio Value - 10515260.50\n", - "2024-08-26 00:00:00: Portfolio Value - 10555632.72\n", - "2024-08-27 00:00:00: Portfolio Value - 10758399.53\n", - "2024-08-28 00:00:00: Portfolio Value - 10824071.61\n", - "2024-08-29 00:00:00: Portfolio Value - 10877195.86\n", - "2024-08-30 00:00:00: Portfolio Value - 10963401.20\n", - "2024-09-03 00:00:00: Portfolio Value - 11076927.07\n", - "2024-09-04 00:00:00: Portfolio Value - 11121778.64\n", - "2024-09-05 00:00:00: Portfolio Value - 11072653.50\n", - "2024-09-06 00:00:00: Portfolio Value - 10990109.28\n", - "2024-09-09 00:00:00: Portfolio Value - 11137936.00\n", - "2024-09-10 00:00:00: Portfolio Value - 11226773.72\n", - "2024-09-11 00:00:00: Portfolio Value - 11079613.31\n", - "2024-09-12 00:00:00: Portfolio Value - 11096641.60\n", - "2024-09-13 00:00:00: Portfolio Value - 11106678.50\n", - "2024-09-16 00:00:00: Portfolio Value - 11134313.28\n", - "2024-09-17 00:00:00: Portfolio Value - 11000036.30\n", - "2024-09-18 00:00:00: Portfolio Value - 10808431.05\n", - "2024-09-19 00:00:00: Portfolio Value - 10711157.89\n", - "2024-09-20 00:00:00: Portfolio Value - 10731675.13\n", - "2024-09-23 00:00:00: Portfolio Value - 10864228.17\n", - "2024-09-24 00:00:00: Portfolio Value - 10806826.76\n", - "2024-09-25 00:00:00: Portfolio Value - 10790506.71\n", - "2024-09-26 00:00:00: Portfolio Value - 10714918.08\n", - "2024-09-27 00:00:00: Portfolio Value - 10750375.60\n", - "2024-09-30 00:00:00: Portfolio Value - 10903364.80\n", - "2024-10-01 00:00:00: Portfolio Value - 10996801.72\n", - "2024-10-02 00:00:00: Portfolio Value - 10953132.55\n", - "2024-10-03 00:00:00: Portfolio Value - 10881709.75\n", - "2024-10-04 00:00:00: Portfolio Value - 10810053.06\n", - "2024-10-07 00:00:00: Portfolio Value - 10681577.16\n", - "2024-10-08 00:00:00: Portfolio Value - 10892925.31\n", - "2024-10-09 00:00:00: Portfolio Value - 11003837.22\n", - "2024-10-10 00:00:00: Portfolio Value - 10785160.04\n", - "2024-10-11 00:00:00: Portfolio Value - 10841308.22\n", - "2024-10-14 00:00:00: Portfolio Value - 10930896.48\n", - "2024-10-15 00:00:00: Portfolio Value - 10935700.93\n", - "2024-10-16 00:00:00: Portfolio Value - 10941296.48\n", - "2024-10-17 00:00:00: Portfolio Value - 10935024.64\n", - "2024-10-18 00:00:00: Portfolio Value - 10956064.92\n", - "2024-10-21 00:00:00: Portfolio Value - 10941772.39\n", - "2024-10-22 00:00:00: Portfolio Value - 10910470.31\n", - "2024-10-23 00:00:00: Portfolio Value - 10920516.09\n", - "2024-10-24 00:00:00: Portfolio Value - 10862000.71\n", - "2024-10-25 00:00:00: Portfolio Value - 10880556.70\n", - "2024-10-28 00:00:00: Portfolio Value - 10808053.55\n", - "2024-10-29 00:00:00: Portfolio Value - 10859497.07\n", - "2024-10-30 00:00:00: Portfolio Value - 10928478.77\n", - "2024-10-31 00:00:00: Portfolio Value - 10911993.40\n", - "2024-11-01 00:00:00: Portfolio Value - 10906106.25\n", - "2024-11-04 00:00:00: Portfolio Value - 10966328.23\n", - "2024-11-05 00:00:00: Portfolio Value - 11141554.72\n", - "2024-11-06 00:00:00: Portfolio Value - 11142996.85\n", - "2024-11-07 00:00:00: Portfolio Value - 11054031.72\n", - "2024-11-08 00:00:00: Portfolio Value - 11330503.87\n", - "2024-11-11 00:00:00: Portfolio Value - 11307673.66\n", - "2024-11-12 00:00:00: Portfolio Value - 11372013.78\n", - "2024-11-13 00:00:00: Portfolio Value - 11272164.78\n", - "2024-11-14 00:00:00: Portfolio Value - 10958974.45\n", - "2024-11-15 00:00:00: Portfolio Value - 10921182.57\n", - "2024-11-18 00:00:00: Portfolio Value - 10982787.23\n", - "2024-11-19 00:00:00: Portfolio Value - 10969940.83\n" + "2010-04-01 00:00:00: Portfolio Value - 98063.33\n", + "2010-04-05 00:00:00: Portfolio Value - 103872.31\n", + "2010-04-06 00:00:00: Portfolio Value - 115993.13\n", + "2010-04-07 00:00:00: Portfolio Value - 108658.60\n", + "2010-04-08 00:00:00: Portfolio Value - 108960.73\n", + "2010-04-09 00:00:00: Portfolio Value - 110450.61\n", + "2010-04-12 00:00:00: Portfolio Value - 107787.39\n", + "2010-04-13 00:00:00: Portfolio Value - 110811.18\n", + "2010-04-14 00:00:00: Portfolio Value - 101059.38\n", + "2010-04-15 00:00:00: Portfolio Value - 94409.98\n", + "2010-04-16 00:00:00: Portfolio Value - 101372.49\n", + "2010-04-19 00:00:00: Portfolio Value - 99070.22\n", + "2010-04-20 00:00:00: Portfolio Value - 96659.03\n", + "2010-04-21 00:00:00: Portfolio Value - 103370.21\n", + "2010-04-22 00:00:00: Portfolio Value - 109860.68\n", + "2010-04-23 00:00:00: Portfolio Value - 109720.73\n", + "2010-04-26 00:00:00: Portfolio Value - 123724.68\n", + "2010-04-27 00:00:00: Portfolio Value - 123548.45\n", + "2010-04-28 00:00:00: Portfolio Value - 123690.87\n", + "2010-04-29 00:00:00: Portfolio Value - 104286.84\n", + "2010-04-30 00:00:00: Portfolio Value - 107540.00\n", + "2010-05-03 00:00:00: Portfolio Value - 131601.46\n", + "2010-05-04 00:00:00: Portfolio Value - 123989.14\n", + "2010-05-05 00:00:00: Portfolio Value - 122139.23\n", + "2010-05-06 00:00:00: Portfolio Value - 109376.84\n", + "2010-05-07 00:00:00: Portfolio Value - 81879.03\n", + "2010-05-10 00:00:00: Portfolio Value - 139359.79\n", + "2010-05-11 00:00:00: Portfolio Value - 167882.84\n", + "2010-05-12 00:00:00: Portfolio Value - 178347.75\n", + "2010-05-13 00:00:00: Portfolio Value - 167507.11\n", + "2010-05-14 00:00:00: Portfolio Value - 151144.26\n", + "2010-05-17 00:00:00: Portfolio Value - 158748.55\n", + "2010-05-18 00:00:00: Portfolio Value - 148906.38\n", + "2010-05-19 00:00:00: Portfolio Value - 130145.37\n", + "2010-05-20 00:00:00: Portfolio Value - 112341.84\n", + "2010-05-21 00:00:00: Portfolio Value - 126457.27\n", + "2010-05-24 00:00:00: Portfolio Value - 134124.45\n", + "2010-05-25 00:00:00: Portfolio Value - 137023.38\n", + "2010-05-26 00:00:00: Portfolio Value - 141024.68\n", + "2010-05-27 00:00:00: Portfolio Value - 155429.53\n", + "2010-05-28 00:00:00: Portfolio Value - 151463.13\n", + "2010-06-01 00:00:00: Portfolio Value - 160015.48\n", + "2010-06-02 00:00:00: Portfolio Value - 156276.49\n", + "2010-06-03 00:00:00: Portfolio Value - 159406.50\n", + "2010-06-04 00:00:00: Portfolio Value - 136131.80\n", + "2010-06-07 00:00:00: Portfolio Value - 119335.33\n", + "2010-06-08 00:00:00: Portfolio Value - 134492.56\n", + "2010-06-09 00:00:00: Portfolio Value - 155549.43\n", + "2010-06-10 00:00:00: Portfolio Value - 173027.54\n", + "2010-06-11 00:00:00: Portfolio Value - 185263.81\n", + "2010-06-14 00:00:00: Portfolio Value - 203783.42\n", + "2010-06-15 00:00:00: Portfolio Value - 192041.16\n", + "2010-06-16 00:00:00: Portfolio Value - 187137.48\n", + "2010-06-17 00:00:00: Portfolio Value - 179681.80\n", + "2010-06-18 00:00:00: Portfolio Value - 174250.01\n", + "2010-06-21 00:00:00: Portfolio Value - 175550.69\n", + "2010-06-22 00:00:00: Portfolio Value - 166726.29\n", + "2010-06-23 00:00:00: Portfolio Value - 172382.51\n", + "2010-06-24 00:00:00: Portfolio Value - 176262.15\n", + "2010-06-25 00:00:00: Portfolio Value - 182010.12\n", + "2010-06-28 00:00:00: Portfolio Value - 170518.54\n", + "2010-06-29 00:00:00: Portfolio Value - 154337.27\n", + "2010-06-30 00:00:00: Portfolio Value - 156485.85\n", + "2010-07-01 00:00:00: Portfolio Value - 163643.19\n", + "2010-07-02 00:00:00: Portfolio Value - 131884.26\n", + "2010-07-06 00:00:00: Portfolio Value - 112882.54\n", + "2010-07-07 00:00:00: Portfolio Value - 133765.47\n", + "2010-07-08 00:00:00: Portfolio Value - 122762.02\n", + "2010-07-09 00:00:00: Portfolio Value - 121267.76\n", + "2010-07-12 00:00:00: Portfolio Value - 124652.50\n", + "2010-07-13 00:00:00: Portfolio Value - 141157.59\n", + "2010-07-14 00:00:00: Portfolio Value - 143494.72\n", + "2010-07-15 00:00:00: Portfolio Value - 126907.41\n", + "2010-07-16 00:00:00: Portfolio Value - 116218.31\n", + "2010-07-19 00:00:00: Portfolio Value - 107471.67\n", + "2010-07-20 00:00:00: Portfolio Value - 103546.15\n", + "2010-07-21 00:00:00: Portfolio Value - 107738.10\n", + "2010-07-22 00:00:00: Portfolio Value - 131591.08\n", + "2010-07-23 00:00:00: Portfolio Value - 150417.42\n", + "2010-07-26 00:00:00: Portfolio Value - 156580.11\n", + "2010-07-27 00:00:00: Portfolio Value - 155750.86\n", + "2010-07-28 00:00:00: Portfolio Value - 173178.35\n", + "2010-07-29 00:00:00: Portfolio Value - 171063.02\n", + "2010-07-30 00:00:00: Portfolio Value - 189874.75\n", + "2010-08-02 00:00:00: Portfolio Value - 181977.01\n", + "2010-08-03 00:00:00: Portfolio Value - 179963.71\n", + "2010-08-04 00:00:00: Portfolio Value - 168460.81\n", + "2010-08-05 00:00:00: Portfolio Value - 149847.43\n", + "2010-08-06 00:00:00: Portfolio Value - 154106.25\n", + "2010-08-09 00:00:00: Portfolio Value - 162759.84\n", + "2010-08-10 00:00:00: Portfolio Value - 154262.56\n", + "2010-08-11 00:00:00: Portfolio Value - 148162.02\n", + "2010-08-12 00:00:00: Portfolio Value - 139677.46\n", + "2010-08-13 00:00:00: Portfolio Value - 141375.47\n", + "2010-08-16 00:00:00: Portfolio Value - 144920.96\n", + "2010-08-17 00:00:00: Portfolio Value - 150848.36\n", + "2010-08-18 00:00:00: Portfolio Value - 162835.96\n", + "2010-08-19 00:00:00: Portfolio Value - 164964.97\n", + "2010-08-20 00:00:00: Portfolio Value - 172828.20\n", + "2010-08-23 00:00:00: Portfolio Value - 155066.35\n", + "2010-08-24 00:00:00: Portfolio Value - 146882.15\n", + "2010-08-25 00:00:00: Portfolio Value - 149075.46\n", + "2010-08-26 00:00:00: Portfolio Value - 153285.72\n", + "2010-08-27 00:00:00: Portfolio Value - 164302.15\n", + "2010-08-30 00:00:00: Portfolio Value - 153041.55\n", + "2010-08-31 00:00:00: Portfolio Value - 155529.72\n", + "2010-09-01 00:00:00: Portfolio Value - 171717.40\n", + "2010-09-02 00:00:00: Portfolio Value - 175279.08\n", + "2010-09-03 00:00:00: Portfolio Value - 180576.42\n", + "2010-09-07 00:00:00: Portfolio Value - 175816.61\n", + "2010-09-08 00:00:00: Portfolio Value - 181523.45\n", + "2010-09-09 00:00:00: Portfolio Value - 169102.73\n", + "2010-09-10 00:00:00: Portfolio Value - 169962.45\n", + "2010-09-13 00:00:00: Portfolio Value - 196617.93\n", + "2010-09-14 00:00:00: Portfolio Value - 185605.38\n", + "2010-09-15 00:00:00: Portfolio Value - 176805.37\n", + "2010-09-16 00:00:00: Portfolio Value - 171730.55\n", + "2010-09-17 00:00:00: Portfolio Value - 174353.88\n", + "2010-09-20 00:00:00: Portfolio Value - 189604.67\n", + "2010-09-21 00:00:00: Portfolio Value - 186559.47\n", + "2010-09-22 00:00:00: Portfolio Value - 164172.89\n", + "2010-09-23 00:00:00: Portfolio Value - 159062.95\n", + "2010-09-24 00:00:00: Portfolio Value - 164332.42\n", + "2010-09-27 00:00:00: Portfolio Value - 163249.37\n", + "2010-09-28 00:00:00: Portfolio Value - 169191.21\n", + "2010-09-29 00:00:00: Portfolio Value - 166604.55\n", + "2010-09-30 00:00:00: Portfolio Value - 171893.70\n", + "2010-10-01 00:00:00: Portfolio Value - 167131.91\n", + "2010-10-04 00:00:00: Portfolio Value - 183544.07\n", + "2010-10-05 00:00:00: Portfolio Value - 198214.36\n", + "2010-10-06 00:00:00: Portfolio Value - 203221.37\n", + "2010-10-07 00:00:00: Portfolio Value - 199658.06\n", + "2010-10-08 00:00:00: Portfolio Value - 200178.06\n", + "2010-10-11 00:00:00: Portfolio Value - 194970.53\n", + "2010-10-12 00:00:00: Portfolio Value - 221224.78\n", + "2010-10-13 00:00:00: Portfolio Value - 219119.93\n", + "2010-10-14 00:00:00: Portfolio Value - 213240.45\n", + "2010-10-15 00:00:00: Portfolio Value - 196086.20\n", + "2010-10-18 00:00:00: Portfolio Value - 178975.81\n", + "2010-10-19 00:00:00: Portfolio Value - 173720.53\n", + "2010-10-20 00:00:00: Portfolio Value - 198817.68\n", + "2010-10-21 00:00:00: Portfolio Value - 217526.06\n", + "2010-10-22 00:00:00: Portfolio Value - 237125.84\n", + "2010-10-25 00:00:00: Portfolio Value - 237013.98\n", + "2010-10-26 00:00:00: Portfolio Value - 251030.06\n", + "2010-10-27 00:00:00: Portfolio Value - 260612.30\n", + "2010-10-28 00:00:00: Portfolio Value - 255830.48\n", + "2010-10-29 00:00:00: Portfolio Value - 267846.41\n", + "2010-11-01 00:00:00: Portfolio Value - 266677.54\n", + "2010-11-02 00:00:00: Portfolio Value - 270843.85\n", + "2010-11-03 00:00:00: Portfolio Value - 306915.92\n", + "2010-11-04 00:00:00: Portfolio Value - 313663.61\n", + "2010-11-05 00:00:00: Portfolio Value - 309635.16\n", + "2010-11-08 00:00:00: Portfolio Value - 308432.58\n", + "2010-11-09 00:00:00: Portfolio Value - 283668.56\n", + "2010-11-10 00:00:00: Portfolio Value - 289358.05\n", + "2010-11-11 00:00:00: Portfolio Value - 279157.33\n", + "2010-11-12 00:00:00: Portfolio Value - 277597.67\n", + "2010-11-15 00:00:00: Portfolio Value - 276029.86\n", + "2010-11-16 00:00:00: Portfolio Value - 277428.78\n", + "2010-11-17 00:00:00: Portfolio Value - 281500.56\n", + "2010-11-18 00:00:00: Portfolio Value - 298666.65\n", + "2010-11-19 00:00:00: Portfolio Value - 316165.02\n", + "2010-11-22 00:00:00: Portfolio Value - 357602.41\n", + "2010-11-23 00:00:00: Portfolio Value - 363358.71\n", + "2010-11-24 00:00:00: Portfolio Value - 384750.30\n", + "2010-11-26 00:00:00: Portfolio Value - 397840.55\n", + "2010-11-29 00:00:00: Portfolio Value - 407019.99\n", + "2010-11-30 00:00:00: Portfolio Value - 411225.66\n", + "2010-12-01 00:00:00: Portfolio Value - 417475.30\n", + "2010-12-02 00:00:00: Portfolio Value - 397297.22\n", + "2010-12-03 00:00:00: Portfolio Value - 396755.23\n", + "2010-12-06 00:00:00: Portfolio Value - 406139.56\n", + "2010-12-07 00:00:00: Portfolio Value - 405404.30\n", + "2010-12-08 00:00:00: Portfolio Value - 383165.64\n", + "2010-12-09 00:00:00: Portfolio Value - 392575.87\n", + "2010-12-10 00:00:00: Portfolio Value - 393181.27\n", + "2010-12-13 00:00:00: Portfolio Value - 372632.15\n", + "2010-12-14 00:00:00: Portfolio Value - 353795.81\n", + "2010-12-15 00:00:00: Portfolio Value - 358203.12\n", + "2010-12-16 00:00:00: Portfolio Value - 372134.56\n", + "2010-12-17 00:00:00: Portfolio Value - 380005.21\n", + "2010-12-20 00:00:00: Portfolio Value - 382154.51\n", + "2010-12-21 00:00:00: Portfolio Value - 397455.47\n", + "2010-12-22 00:00:00: Portfolio Value - 388505.52\n", + "2010-12-23 00:00:00: Portfolio Value - 375818.59\n", + "2010-12-27 00:00:00: Portfolio Value - 382699.08\n", + "2010-12-28 00:00:00: Portfolio Value - 375894.17\n", + "2010-12-29 00:00:00: Portfolio Value - 367068.43\n", + "2010-12-30 00:00:00: Portfolio Value - 366996.26\n", + "2010-12-31 00:00:00: Portfolio Value - 357743.79\n", + "2011-01-03 00:00:00: Portfolio Value - 379789.79\n", + "2011-01-04 00:00:00: Portfolio Value - 375663.98\n", + "2011-01-05 00:00:00: Portfolio Value - 397685.71\n", + "2011-01-06 00:00:00: Portfolio Value - 380567.88\n", + "2011-01-07 00:00:00: Portfolio Value - 393495.78\n", + "2011-01-10 00:00:00: Portfolio Value - 391600.99\n", + "2011-01-11 00:00:00: Portfolio Value - 372424.18\n", + "2011-01-12 00:00:00: Portfolio Value - 372764.36\n", + "2011-01-13 00:00:00: Portfolio Value - 364333.05\n", + "2011-01-14 00:00:00: Portfolio Value - 356329.85\n", + "2011-01-18 00:00:00: Portfolio Value - 338595.42\n", + "2011-01-19 00:00:00: Portfolio Value - 344603.02\n", + "2011-01-20 00:00:00: Portfolio Value - 283379.15\n", + "2011-01-21 00:00:00: Portfolio Value - 273946.18\n", + "2011-01-24 00:00:00: Portfolio Value - 249606.23\n", + "2011-01-25 00:00:00: Portfolio Value - 253346.83\n", + "2011-01-26 00:00:00: Portfolio Value - 273445.03\n", + "2011-01-27 00:00:00: Portfolio Value - 289256.74\n", + "2011-01-28 00:00:00: Portfolio Value - 278775.08\n", + "2011-01-31 00:00:00: Portfolio Value - 263098.90\n", + "2011-02-01 00:00:00: Portfolio Value - 261333.70\n", + "2011-02-02 00:00:00: Portfolio Value - 254763.84\n", + "2011-02-03 00:00:00: Portfolio Value - 278668.69\n", + "2011-02-04 00:00:00: Portfolio Value - 302479.27\n", + "2011-02-07 00:00:00: Portfolio Value - 317399.63\n", + "2011-02-08 00:00:00: Portfolio Value - 321595.51\n", + "2011-02-09 00:00:00: Portfolio Value - 336462.25\n", + "2011-02-10 00:00:00: Portfolio Value - 330767.39\n", + "2011-02-11 00:00:00: Portfolio Value - 339735.92\n", + "2011-02-14 00:00:00: Portfolio Value - 334078.52\n", + "2011-02-15 00:00:00: Portfolio Value - 324829.18\n", + "2011-02-16 00:00:00: Portfolio Value - 315547.53\n", + "2011-02-17 00:00:00: Portfolio Value - 307046.27\n", + "2011-02-18 00:00:00: Portfolio Value - 296385.14\n", + "2011-02-22 00:00:00: Portfolio Value - 272757.47\n", + "2011-02-23 00:00:00: Portfolio Value - 242631.71\n", + "2011-02-24 00:00:00: Portfolio Value - 238289.87\n", + "2011-02-25 00:00:00: Portfolio Value - 254135.17\n", + "2011-02-28 00:00:00: Portfolio Value - 239347.98\n", + "2011-03-01 00:00:00: Portfolio Value - 214703.86\n", + "2011-03-02 00:00:00: Portfolio Value - 219328.62\n", + "2011-03-03 00:00:00: Portfolio Value - 213828.45\n", + "2011-03-04 00:00:00: Portfolio Value - 213448.98\n", + "2011-03-07 00:00:00: Portfolio Value - 205317.60\n", + "2011-03-08 00:00:00: Portfolio Value - 222384.53\n", + "2011-03-09 00:00:00: Portfolio Value - 221517.15\n", + "2011-03-10 00:00:00: Portfolio Value - 255835.74\n", + "2011-03-11 00:00:00: Portfolio Value - 269948.92\n", + "2011-03-14 00:00:00: Portfolio Value - 262335.37\n", + "2011-03-15 00:00:00: Portfolio Value - 261535.32\n", + "2011-03-16 00:00:00: Portfolio Value - 276012.73\n", + "2011-03-17 00:00:00: Portfolio Value - 256264.01\n", + "2011-03-18 00:00:00: Portfolio Value - 245979.14\n", + "2011-03-21 00:00:00: Portfolio Value - 264167.07\n", + "2011-03-22 00:00:00: Portfolio Value - 247843.18\n", + "2011-03-23 00:00:00: Portfolio Value - 255185.45\n", + "2011-03-24 00:00:00: Portfolio Value - 257469.55\n", + "2011-03-25 00:00:00: Portfolio Value - 262613.61\n", + "2011-03-28 00:00:00: Portfolio Value - 264881.01\n", + "2011-03-29 00:00:00: Portfolio Value - 265425.55\n", + "2011-03-30 00:00:00: Portfolio Value - 248228.35\n", + "2011-03-31 00:00:00: Portfolio Value - 229459.11\n", + "2011-04-01 00:00:00: Portfolio Value - 215210.13\n", + "2011-04-04 00:00:00: Portfolio Value - 220063.74\n", + "2011-04-05 00:00:00: Portfolio Value - 234191.86\n", + "2011-04-06 00:00:00: Portfolio Value - 227059.22\n", + "2011-04-07 00:00:00: Portfolio Value - 226435.65\n", + "2011-04-08 00:00:00: Portfolio Value - 216912.55\n", + "2011-04-11 00:00:00: Portfolio Value - 213829.13\n", + "2011-04-12 00:00:00: Portfolio Value - 226676.24\n", + "2011-04-13 00:00:00: Portfolio Value - 233799.29\n", + "2011-04-14 00:00:00: Portfolio Value - 232650.49\n", + "2011-04-15 00:00:00: Portfolio Value - 249295.66\n", + "2011-04-18 00:00:00: Portfolio Value - 269692.03\n", + "2011-04-19 00:00:00: Portfolio Value - 281312.77\n", + "2011-04-20 00:00:00: Portfolio Value - 289715.76\n", + "2011-04-21 00:00:00: Portfolio Value - 267917.77\n", + "2011-04-25 00:00:00: Portfolio Value - 269745.39\n", + "2011-04-26 00:00:00: Portfolio Value - 255740.29\n", + "2011-04-27 00:00:00: Portfolio Value - 246802.13\n", + "2011-04-28 00:00:00: Portfolio Value - 230560.25\n", + "2011-04-29 00:00:00: Portfolio Value - 218267.30\n", + "2011-05-02 00:00:00: Portfolio Value - 214998.85\n", + "2011-05-03 00:00:00: Portfolio Value - 213450.14\n", + "2011-05-04 00:00:00: Portfolio Value - 223243.54\n", + "2011-05-05 00:00:00: Portfolio Value - 268408.18\n", + "2011-05-06 00:00:00: Portfolio Value - 261301.22\n", + "2011-05-09 00:00:00: Portfolio Value - 245556.89\n", + "2011-05-10 00:00:00: Portfolio Value - 258853.49\n", + "2011-05-11 00:00:00: Portfolio Value - 266454.17\n", + "2011-05-12 00:00:00: Portfolio Value - 259322.73\n", + "2011-05-13 00:00:00: Portfolio Value - 258238.21\n", + "2011-05-16 00:00:00: Portfolio Value - 236652.62\n", + "2011-05-17 00:00:00: Portfolio Value - 221648.06\n", + "2011-05-18 00:00:00: Portfolio Value - 236552.69\n", + "2011-05-19 00:00:00: Portfolio Value - 248473.52\n", + "2011-05-20 00:00:00: Portfolio Value - 236113.63\n", + "2011-05-23 00:00:00: Portfolio Value - 232828.66\n", + "2011-05-24 00:00:00: Portfolio Value - 232013.24\n", + "2011-05-25 00:00:00: Portfolio Value - 250700.76\n", + "2011-05-26 00:00:00: Portfolio Value - 257463.52\n", + "2011-05-27 00:00:00: Portfolio Value - 245298.01\n", + "2011-05-31 00:00:00: Portfolio Value - 230584.80\n", + "2011-06-01 00:00:00: Portfolio Value - 216504.22\n", + "2011-06-02 00:00:00: Portfolio Value - 212697.11\n", + "2011-06-03 00:00:00: Portfolio Value - 227750.52\n", + "2011-06-06 00:00:00: Portfolio Value - 219361.11\n", + "2011-06-07 00:00:00: Portfolio Value - 216828.85\n", + "2011-06-08 00:00:00: Portfolio Value - 207772.98\n", + "2011-06-09 00:00:00: Portfolio Value - 197141.82\n", + "2011-06-10 00:00:00: Portfolio Value - 196813.31\n", + "2011-06-13 00:00:00: Portfolio Value - 196384.30\n", + "2011-06-14 00:00:00: Portfolio Value - 203337.76\n", + "2011-06-15 00:00:00: Portfolio Value - 211250.73\n", + "2011-06-16 00:00:00: Portfolio Value - 203990.04\n", + "2011-06-17 00:00:00: Portfolio Value - 214674.34\n", + "2011-06-20 00:00:00: Portfolio Value - 210785.86\n", + "2011-06-21 00:00:00: Portfolio Value - 241229.50\n", + "2011-06-22 00:00:00: Portfolio Value - 229677.59\n", + "2011-06-23 00:00:00: Portfolio Value - 258272.55\n", + "2011-06-24 00:00:00: Portfolio Value - 258885.14\n", + "2011-06-27 00:00:00: Portfolio Value - 263797.53\n", + "2011-06-28 00:00:00: Portfolio Value - 266238.29\n", + "2011-06-29 00:00:00: Portfolio Value - 246954.86\n", + "2011-06-30 00:00:00: Portfolio Value - 262103.54\n", + "2011-07-01 00:00:00: Portfolio Value - 281220.84\n", + "2011-07-05 00:00:00: Portfolio Value - 303923.69\n", + "2011-07-06 00:00:00: Portfolio Value - 307014.73\n", + "2011-07-07 00:00:00: Portfolio Value - 322025.60\n", + "2011-07-08 00:00:00: Portfolio Value - 321696.81\n", + "2011-07-11 00:00:00: Portfolio Value - 323515.28\n", + "2011-07-12 00:00:00: Portfolio Value - 324459.51\n", + "2011-07-13 00:00:00: Portfolio Value - 330155.35\n", + "2011-07-14 00:00:00: Portfolio Value - 321086.61\n", + "2011-07-15 00:00:00: Portfolio Value - 316179.54\n", + "2011-07-18 00:00:00: Portfolio Value - 316561.87\n", + "2011-07-19 00:00:00: Portfolio Value - 330618.29\n", + "2011-07-20 00:00:00: Portfolio Value - 318845.24\n", + "2011-07-21 00:00:00: Portfolio Value - 279697.84\n", + "2011-07-22 00:00:00: Portfolio Value - 285526.84\n", + "2011-07-25 00:00:00: Portfolio Value - 278305.96\n", + "2011-07-26 00:00:00: Portfolio Value - 285215.94\n", + "2011-07-27 00:00:00: Portfolio Value - 288053.94\n", + "2011-07-28 00:00:00: Portfolio Value - 238682.38\n", + "2011-07-29 00:00:00: Portfolio Value - 245614.67\n", + "2011-08-01 00:00:00: Portfolio Value - 256205.62\n", + "2011-08-02 00:00:00: Portfolio Value - 241952.31\n", + "2011-08-03 00:00:00: Portfolio Value - 258172.48\n", + "2011-08-04 00:00:00: Portfolio Value - 243375.36\n", + "2011-08-05 00:00:00: Portfolio Value - 223531.58\n", + "2011-08-08 00:00:00: Portfolio Value - 226799.66\n", + "2011-08-09 00:00:00: Portfolio Value - 244437.83\n", + "2011-08-10 00:00:00: Portfolio Value - 266743.25\n", + "2011-08-11 00:00:00: Portfolio Value - 251902.64\n", + "2011-08-12 00:00:00: Portfolio Value - 290737.67\n", + "2011-08-15 00:00:00: Portfolio Value - 270110.83\n", + "2011-08-16 00:00:00: Portfolio Value - 256980.00\n", + "2011-08-17 00:00:00: Portfolio Value - 231800.49\n", + "2011-08-18 00:00:00: Portfolio Value - 199461.45\n", + "2011-08-19 00:00:00: Portfolio Value - 173589.39\n", + "2011-08-22 00:00:00: Portfolio Value - 173324.17\n", + "2011-08-23 00:00:00: Portfolio Value - 183447.63\n", + "2011-08-24 00:00:00: Portfolio Value - 181077.41\n", + "2011-08-25 00:00:00: Portfolio Value - 176918.86\n", + "2011-08-26 00:00:00: Portfolio Value - 196596.21\n", + "2011-08-29 00:00:00: Portfolio Value - 212040.75\n", + "2011-08-30 00:00:00: Portfolio Value - 219420.81\n", + "2011-08-31 00:00:00: Portfolio Value - 233436.70\n", + "2011-09-01 00:00:00: Portfolio Value - 228174.49\n", + "2011-09-02 00:00:00: Portfolio Value - 226610.48\n", + "2011-09-06 00:00:00: Portfolio Value - 226580.53\n", + "2011-09-07 00:00:00: Portfolio Value - 233945.41\n", + "2011-09-08 00:00:00: Portfolio Value - 242778.48\n", + "2011-09-09 00:00:00: Portfolio Value - 258692.64\n", + "2011-09-12 00:00:00: Portfolio Value - 259940.65\n", + "2011-09-13 00:00:00: Portfolio Value - 258340.82\n", + "2011-09-14 00:00:00: Portfolio Value - 253996.51\n", + "2011-09-15 00:00:00: Portfolio Value - 229187.81\n", + "2011-09-16 00:00:00: Portfolio Value - 223271.42\n", + "2011-09-19 00:00:00: Portfolio Value - 248921.60\n", + "2011-09-20 00:00:00: Portfolio Value - 215062.00\n", + "2011-09-21 00:00:00: Portfolio Value - 219816.99\n", + "2011-09-22 00:00:00: Portfolio Value - 221093.91\n", + "2011-09-23 00:00:00: Portfolio Value - 239366.58\n", + "2011-09-26 00:00:00: Portfolio Value - 244511.15\n", + "2011-09-27 00:00:00: Portfolio Value - 236284.30\n", + "2011-09-28 00:00:00: Portfolio Value - 240911.01\n", + "2011-09-29 00:00:00: Portfolio Value - 214077.79\n", + "2011-09-30 00:00:00: Portfolio Value - 188415.65\n", + "2011-10-03 00:00:00: Portfolio Value - 199406.64\n", + "2011-10-04 00:00:00: Portfolio Value - 238545.73\n", + "2011-10-05 00:00:00: Portfolio Value - 236813.92\n", + "2011-10-06 00:00:00: Portfolio Value - 264999.21\n", + "2011-10-07 00:00:00: Portfolio Value - 266636.21\n", + "2011-10-10 00:00:00: Portfolio Value - 292157.42\n", + "2011-10-11 00:00:00: Portfolio Value - 302281.18\n", + "2011-10-12 00:00:00: Portfolio Value - 310251.65\n", + "2011-10-13 00:00:00: Portfolio Value - 296700.65\n", + "2011-10-14 00:00:00: Portfolio Value - 302429.41\n", + "2011-10-17 00:00:00: Portfolio Value - 294945.64\n", + "2011-10-18 00:00:00: Portfolio Value - 302512.35\n", + "2011-10-19 00:00:00: Portfolio Value - 299946.05\n", + "2011-10-20 00:00:00: Portfolio Value - 289135.55\n", + "2011-10-21 00:00:00: Portfolio Value - 284559.45\n", + "2011-10-24 00:00:00: Portfolio Value - 322148.04\n", + "2011-10-25 00:00:00: Portfolio Value - 309885.77\n", + "2011-10-26 00:00:00: Portfolio Value - 305347.45\n", + "2011-10-27 00:00:00: Portfolio Value - 300865.07\n", + "2011-10-28 00:00:00: Portfolio Value - 307315.64\n", + "2011-10-31 00:00:00: Portfolio Value - 322248.47\n", + "2011-11-01 00:00:00: Portfolio Value - 329583.26\n", + "2011-11-02 00:00:00: Portfolio Value - 339579.62\n", + "2011-11-03 00:00:00: Portfolio Value - 345520.14\n", + "2011-11-04 00:00:00: Portfolio Value - 356177.04\n", + "2011-11-07 00:00:00: Portfolio Value - 331824.44\n", + "2011-11-08 00:00:00: Portfolio Value - 333070.23\n", + "2011-11-09 00:00:00: Portfolio Value - 321948.29\n", + "2011-11-10 00:00:00: Portfolio Value - 299863.99\n", + "2011-11-11 00:00:00: Portfolio Value - 297533.96\n", + "2011-11-14 00:00:00: Portfolio Value - 309560.00\n", + "2011-11-15 00:00:00: Portfolio Value - 314503.59\n", + "2011-11-16 00:00:00: Portfolio Value - 317440.28\n", + "2011-11-17 00:00:00: Portfolio Value - 302554.36\n", + "2011-11-18 00:00:00: Portfolio Value - 298468.78\n", + "2011-11-21 00:00:00: Portfolio Value - 279428.30\n", + "2011-11-22 00:00:00: Portfolio Value - 277886.89\n", + "2011-11-23 00:00:00: Portfolio Value - 278548.74\n", + "2011-11-25 00:00:00: Portfolio Value - 274076.31\n", + "2011-11-28 00:00:00: Portfolio Value - 296513.16\n", + "2011-11-29 00:00:00: Portfolio Value - 280862.09\n", + "2011-11-30 00:00:00: Portfolio Value - 288947.97\n", + "2011-12-01 00:00:00: Portfolio Value - 285375.66\n", + "2011-12-02 00:00:00: Portfolio Value - 306566.42\n", + "2011-12-05 00:00:00: Portfolio Value - 304390.30\n", + "2011-12-06 00:00:00: Portfolio Value - 279897.18\n", + "2011-12-07 00:00:00: Portfolio Value - 277320.21\n", + "2011-12-08 00:00:00: Portfolio Value - 289867.80\n", + "2011-12-09 00:00:00: Portfolio Value - 299870.69\n", + "2011-12-12 00:00:00: Portfolio Value - 298266.53\n", + "2011-12-13 00:00:00: Portfolio Value - 274843.98\n", + "2011-12-14 00:00:00: Portfolio Value - 272194.56\n", + "2011-12-15 00:00:00: Portfolio Value - 278925.99\n", + "2011-12-16 00:00:00: Portfolio Value - 283856.34\n", + "2011-12-19 00:00:00: Portfolio Value - 280982.76\n", + "2011-12-20 00:00:00: Portfolio Value - 283042.73\n", + "2011-12-21 00:00:00: Portfolio Value - 262880.15\n", + "2011-12-22 00:00:00: Portfolio Value - 259676.16\n", + "2011-12-23 00:00:00: Portfolio Value - 260768.70\n", + "2011-12-27 00:00:00: Portfolio Value - 267127.74\n", + "2011-12-28 00:00:00: Portfolio Value - 265834.14\n", + "2011-12-29 00:00:00: Portfolio Value - 257947.90\n", + "2011-12-30 00:00:00: Portfolio Value - 253381.28\n", + "2012-01-03 00:00:00: Portfolio Value - 247945.15\n", + "2012-01-04 00:00:00: Portfolio Value - 260569.17\n", + "2012-01-05 00:00:00: Portfolio Value - 271164.23\n", + "2012-01-06 00:00:00: Portfolio Value - 270611.50\n", + "2012-01-09 00:00:00: Portfolio Value - 281056.59\n", + "2012-01-10 00:00:00: Portfolio Value - 296857.87\n", + "2012-01-11 00:00:00: Portfolio Value - 319233.58\n", + "2012-01-12 00:00:00: Portfolio Value - 314663.78\n", + "2012-01-13 00:00:00: Portfolio Value - 312468.16\n", + "2012-01-17 00:00:00: Portfolio Value - 307758.51\n", + "2012-01-18 00:00:00: Portfolio Value - 320467.97\n", + "2012-01-19 00:00:00: Portfolio Value - 354406.90\n", + "2012-01-20 00:00:00: Portfolio Value - 346417.52\n", + "2012-01-23 00:00:00: Portfolio Value - 357950.81\n", + "2012-01-24 00:00:00: Portfolio Value - 376495.27\n", + "2012-01-25 00:00:00: Portfolio Value - 389535.19\n", + "2012-01-26 00:00:00: Portfolio Value - 396851.24\n", + "2012-01-27 00:00:00: Portfolio Value - 396803.80\n", + "2012-01-30 00:00:00: Portfolio Value - 401074.55\n", + "2012-01-31 00:00:00: Portfolio Value - 395796.17\n", + "2012-02-01 00:00:00: Portfolio Value - 402519.42\n", + "2012-02-02 00:00:00: Portfolio Value - 417806.30\n", + "2012-02-03 00:00:00: Portfolio Value - 450365.33\n", + "2012-02-06 00:00:00: Portfolio Value - 438261.88\n", + "2012-02-07 00:00:00: Portfolio Value - 433627.83\n", + "2012-02-08 00:00:00: Portfolio Value - 433797.12\n", + "2012-02-09 00:00:00: Portfolio Value - 431460.58\n", + "2012-02-10 00:00:00: Portfolio Value - 431599.98\n", + "2012-02-13 00:00:00: Portfolio Value - 434651.23\n", + "2012-02-14 00:00:00: Portfolio Value - 417664.38\n", + "2012-02-15 00:00:00: Portfolio Value - 410264.03\n", + "2012-02-16 00:00:00: Portfolio Value - 408908.69\n", + "2012-02-17 00:00:00: Portfolio Value - 392073.03\n", + "2012-02-21 00:00:00: Portfolio Value - 381847.34\n", + "2012-02-22 00:00:00: Portfolio Value - 384898.99\n", + "2012-02-23 00:00:00: Portfolio Value - 378447.81\n", + "2012-02-24 00:00:00: Portfolio Value - 374484.48\n", + "2012-02-27 00:00:00: Portfolio Value - 374606.92\n", + "2012-02-28 00:00:00: Portfolio Value - 385874.17\n", + "2012-02-29 00:00:00: Portfolio Value - 392424.92\n", + "2012-03-01 00:00:00: Portfolio Value - 403880.77\n", + "2012-03-02 00:00:00: Portfolio Value - 413028.02\n", + "2012-03-05 00:00:00: Portfolio Value - 413748.17\n", + "2012-03-06 00:00:00: Portfolio Value - 392564.96\n", + "2012-03-07 00:00:00: Portfolio Value - 408451.20\n", + "2012-03-08 00:00:00: Portfolio Value - 415372.69\n", + "2012-03-09 00:00:00: Portfolio Value - 415079.92\n", + "2012-03-12 00:00:00: Portfolio Value - 423047.52\n", + "2012-03-13 00:00:00: Portfolio Value - 444345.75\n", + "2012-03-14 00:00:00: Portfolio Value - 448381.66\n", + "2012-03-15 00:00:00: Portfolio Value - 458481.85\n", + "2012-03-16 00:00:00: Portfolio Value - 446613.95\n", + "2012-03-19 00:00:00: Portfolio Value - 467540.31\n", + "2012-03-20 00:00:00: Portfolio Value - 455105.97\n", + "2012-03-21 00:00:00: Portfolio Value - 464457.49\n", + "2012-03-22 00:00:00: Portfolio Value - 462771.90\n", + "2012-03-23 00:00:00: Portfolio Value - 452442.21\n", + "2012-03-26 00:00:00: Portfolio Value - 450320.40\n", + "2012-03-27 00:00:00: Portfolio Value - 446004.56\n", + "2012-03-28 00:00:00: Portfolio Value - 432207.27\n", + "2012-03-29 00:00:00: Portfolio Value - 438814.64\n", + "2012-03-30 00:00:00: Portfolio Value - 426932.12\n", + "2012-04-02 00:00:00: Portfolio Value - 427880.87\n", + "2012-04-03 00:00:00: Portfolio Value - 441143.46\n", + "2012-04-04 00:00:00: Portfolio Value - 432006.89\n", + "2012-04-05 00:00:00: Portfolio Value - 443499.24\n", + "2012-04-09 00:00:00: Portfolio Value - 437457.77\n", + "2012-04-10 00:00:00: Portfolio Value - 402415.51\n", + "2012-04-11 00:00:00: Portfolio Value - 417895.10\n", + "2012-04-12 00:00:00: Portfolio Value - 428308.84\n", + "2012-04-13 00:00:00: Portfolio Value - 453020.10\n", + "2012-04-16 00:00:00: Portfolio Value - 455757.07\n", + "2012-04-17 00:00:00: Portfolio Value - 451238.41\n", + "2012-04-18 00:00:00: Portfolio Value - 486583.12\n", + "2012-04-19 00:00:00: Portfolio Value - 495360.91\n", + "2012-04-20 00:00:00: Portfolio Value - 497258.92\n", + "2012-04-23 00:00:00: Portfolio Value - 486820.23\n", + "2012-04-24 00:00:00: Portfolio Value - 472068.17\n", + "2012-04-25 00:00:00: Portfolio Value - 479368.66\n", + "2012-04-26 00:00:00: Portfolio Value - 475225.21\n", + "2012-04-27 00:00:00: Portfolio Value - 498333.68\n", + "2012-04-30 00:00:00: Portfolio Value - 481834.08\n", + "2012-05-01 00:00:00: Portfolio Value - 477968.00\n", + "2012-05-02 00:00:00: Portfolio Value - 507363.59\n", + "2012-05-03 00:00:00: Portfolio Value - 507303.08\n", + "2012-05-04 00:00:00: Portfolio Value - 492132.37\n", + "2012-05-07 00:00:00: Portfolio Value - 467584.71\n", + "2012-05-08 00:00:00: Portfolio Value - 437021.79\n", + "2012-05-09 00:00:00: Portfolio Value - 443147.90\n", + "2012-05-10 00:00:00: Portfolio Value - 435026.32\n", + "2012-05-11 00:00:00: Portfolio Value - 443938.76\n", + "2012-05-14 00:00:00: Portfolio Value - 418527.33\n", + "2012-05-15 00:00:00: Portfolio Value - 418068.91\n", + "2012-05-16 00:00:00: Portfolio Value - 426978.85\n", + "2012-05-17 00:00:00: Portfolio Value - 372352.31\n", + "2012-05-18 00:00:00: Portfolio Value - 376245.48\n", + "2012-05-21 00:00:00: Portfolio Value - 410597.21\n", + "2012-05-22 00:00:00: Portfolio Value - 437404.24\n", + "2012-05-23 00:00:00: Portfolio Value - 450173.17\n", + "2012-05-24 00:00:00: Portfolio Value - 425733.39\n", + "2012-05-25 00:00:00: Portfolio Value - 414334.85\n", + "2012-05-29 00:00:00: Portfolio Value - 428581.80\n", + "2012-05-30 00:00:00: Portfolio Value - 417243.21\n", + "2012-05-31 00:00:00: Portfolio Value - 402330.01\n", + "2012-06-01 00:00:00: Portfolio Value - 359301.15\n", + "2012-06-04 00:00:00: Portfolio Value - 335133.18\n", + "2012-06-05 00:00:00: Portfolio Value - 357261.37\n", + "2012-06-06 00:00:00: Portfolio Value - 367805.17\n", + "2012-06-07 00:00:00: Portfolio Value - 345894.42\n", + "2012-06-08 00:00:00: Portfolio Value - 353778.87\n", + "2012-06-11 00:00:00: Portfolio Value - 321340.47\n", + "2012-06-12 00:00:00: Portfolio Value - 332016.87\n", + "2012-06-13 00:00:00: Portfolio Value - 319235.59\n", + "2012-06-14 00:00:00: Portfolio Value - 310406.04\n", + "2012-06-15 00:00:00: Portfolio Value - 309960.34\n", + "2012-06-18 00:00:00: Portfolio Value - 316397.23\n", + "2012-06-19 00:00:00: Portfolio Value - 325865.26\n", + "2012-06-20 00:00:00: Portfolio Value - 322801.79\n", + "2012-06-21 00:00:00: Portfolio Value - 309453.57\n", + "2012-06-22 00:00:00: Portfolio Value - 298672.62\n", + "2012-06-25 00:00:00: Portfolio Value - 294064.92\n", + "2012-06-26 00:00:00: Portfolio Value - 277544.90\n", + "2012-06-27 00:00:00: Portfolio Value - 247205.84\n", + "2012-06-28 00:00:00: Portfolio Value - 246281.36\n", + "2012-06-29 00:00:00: Portfolio Value - 270620.47\n", + "2012-07-02 00:00:00: Portfolio Value - 259918.59\n", + "2012-07-03 00:00:00: Portfolio Value - 259741.54\n", + "2012-07-05 00:00:00: Portfolio Value - 288017.77\n", + "2012-07-06 00:00:00: Portfolio Value - 279754.22\n", + "2012-07-09 00:00:00: Portfolio Value - 271060.13\n", + "2012-07-10 00:00:00: Portfolio Value - 238607.41\n", + "2012-07-11 00:00:00: Portfolio Value - 214584.61\n", + "2012-07-12 00:00:00: Portfolio Value - 222821.22\n", + "2012-07-13 00:00:00: Portfolio Value - 219228.04\n", + "2012-07-16 00:00:00: Portfolio Value - 206290.60\n", + "2012-07-17 00:00:00: Portfolio Value - 202745.96\n", + "2012-07-18 00:00:00: Portfolio Value - 214769.12\n", + "2012-07-19 00:00:00: Portfolio Value - 237401.83\n", + "2012-07-20 00:00:00: Portfolio Value - 198750.26\n", + "2012-07-23 00:00:00: Portfolio Value - 215016.98\n", + "2012-07-24 00:00:00: Portfolio Value - 212659.67\n", + "2012-07-25 00:00:00: Portfolio Value - 201808.16\n", + "2012-07-26 00:00:00: Portfolio Value - 190868.04\n", + "2012-07-27 00:00:00: Portfolio Value - 177470.25\n", + "2012-07-30 00:00:00: Portfolio Value - 162299.44\n", + "2012-07-31 00:00:00: Portfolio Value - 182198.81\n", + "2012-08-01 00:00:00: Portfolio Value - 176445.44\n", + "2012-08-02 00:00:00: Portfolio Value - 173073.10\n", + "2012-08-03 00:00:00: Portfolio Value - 195467.64\n", + "2012-08-06 00:00:00: Portfolio Value - 201178.60\n", + "2012-08-07 00:00:00: Portfolio Value - 223539.96\n", + "2012-08-08 00:00:00: Portfolio Value - 207211.91\n", + "2012-08-09 00:00:00: Portfolio Value - 202190.83\n", + "2012-08-10 00:00:00: Portfolio Value - 197870.81\n", + "2012-08-13 00:00:00: Portfolio Value - 198843.92\n", + "2012-08-14 00:00:00: Portfolio Value - 196366.69\n", + "2012-08-15 00:00:00: Portfolio Value - 196922.47\n", + "2012-08-16 00:00:00: Portfolio Value - 223084.94\n", + "2012-08-17 00:00:00: Portfolio Value - 241985.52\n", + "2012-08-20 00:00:00: Portfolio Value - 227769.49\n", + "2012-08-21 00:00:00: Portfolio Value - 232712.64\n", + "2012-08-22 00:00:00: Portfolio Value - 231403.55\n", + "2012-08-23 00:00:00: Portfolio Value - 238840.15\n", + "2012-08-24 00:00:00: Portfolio Value - 221570.38\n", + "2012-08-27 00:00:00: Portfolio Value - 224576.48\n", + "2012-08-28 00:00:00: Portfolio Value - 226121.94\n", + "2012-08-29 00:00:00: Portfolio Value - 225713.09\n", + "2012-08-30 00:00:00: Portfolio Value - 219953.28\n", + "2012-08-31 00:00:00: Portfolio Value - 218355.43\n", + "2012-09-04 00:00:00: Portfolio Value - 214198.15\n", + "2012-09-05 00:00:00: Portfolio Value - 207059.23\n", + "2012-09-06 00:00:00: Portfolio Value - 199974.66\n", + "2012-09-07 00:00:00: Portfolio Value - 234740.62\n", + "2012-09-10 00:00:00: Portfolio Value - 224614.67\n", + "2012-09-11 00:00:00: Portfolio Value - 219520.13\n", + "2012-09-12 00:00:00: Portfolio Value - 218318.25\n", + "2012-09-13 00:00:00: Portfolio Value - 211389.48\n", + "2012-09-14 00:00:00: Portfolio Value - 234188.47\n", + "2012-09-17 00:00:00: Portfolio Value - 223829.89\n", + "2012-09-18 00:00:00: Portfolio Value - 207821.25\n", + "2012-09-19 00:00:00: Portfolio Value - 237178.72\n", + "2012-09-20 00:00:00: Portfolio Value - 223740.33\n", + "2012-09-21 00:00:00: Portfolio Value - 213831.05\n", + "2012-09-24 00:00:00: Portfolio Value - 206040.47\n", + "2012-09-25 00:00:00: Portfolio Value - 197179.91\n", + "2012-09-26 00:00:00: Portfolio Value - 201051.21\n", + "2012-09-27 00:00:00: Portfolio Value - 188011.52\n", + "2012-09-28 00:00:00: Portfolio Value - 190980.12\n", + "2012-10-01 00:00:00: Portfolio Value - 179342.24\n", + "2012-10-02 00:00:00: Portfolio Value - 182409.84\n", + "2012-10-03 00:00:00: Portfolio Value - 182090.28\n", + "2012-10-04 00:00:00: Portfolio Value - 166030.75\n", + "2012-10-05 00:00:00: Portfolio Value - 174046.00\n", + "2012-10-08 00:00:00: Portfolio Value - 167843.60\n", + "2012-10-09 00:00:00: Portfolio Value - 144120.45\n", + "2012-10-10 00:00:00: Portfolio Value - 144698.99\n", + "2012-10-11 00:00:00: Portfolio Value - 138269.57\n", + "2012-10-12 00:00:00: Portfolio Value - 147536.58\n", + "2012-10-15 00:00:00: Portfolio Value - 148957.37\n", + "2012-10-16 00:00:00: Portfolio Value - 153057.71\n", + "2012-10-17 00:00:00: Portfolio Value - 164617.75\n", + "2012-10-18 00:00:00: Portfolio Value - 192373.04\n", + "2012-10-19 00:00:00: Portfolio Value - 185064.38\n", + "2012-10-22 00:00:00: Portfolio Value - 185337.50\n", + "2012-10-23 00:00:00: Portfolio Value - 193513.33\n", + "2012-10-24 00:00:00: Portfolio Value - 188350.78\n", + "2012-10-25 00:00:00: Portfolio Value - 168075.36\n", + "2012-10-26 00:00:00: Portfolio Value - 153721.23\n", + "2012-10-31 00:00:00: Portfolio Value - 174860.44\n", + "2012-11-01 00:00:00: Portfolio Value - 194490.24\n", + "2012-11-02 00:00:00: Portfolio Value - 202277.81\n", + "2012-11-05 00:00:00: Portfolio Value - 217573.97\n", + "2012-11-06 00:00:00: Portfolio Value - 209237.18\n", + "2012-11-07 00:00:00: Portfolio Value - 234097.99\n", + "2012-11-08 00:00:00: Portfolio Value - 229099.48\n", + "2012-11-09 00:00:00: Portfolio Value - 227637.88\n", + "2012-11-12 00:00:00: Portfolio Value - 212158.70\n", + "2012-11-13 00:00:00: Portfolio Value - 217650.40\n", + "2012-11-14 00:00:00: Portfolio Value - 202815.53\n", + "2012-11-15 00:00:00: Portfolio Value - 205622.50\n", + "2012-11-16 00:00:00: Portfolio Value - 206390.44\n", + "2012-11-19 00:00:00: Portfolio Value - 217216.13\n", + "2012-11-20 00:00:00: Portfolio Value - 212387.94\n", + "2012-11-21 00:00:00: Portfolio Value - 219365.15\n", + "2012-11-23 00:00:00: Portfolio Value - 222019.94\n", + "2012-11-26 00:00:00: Portfolio Value - 225587.56\n", + "2012-11-27 00:00:00: Portfolio Value - 240259.29\n", + "2012-11-28 00:00:00: Portfolio Value - 236340.95\n", + "2012-11-29 00:00:00: Portfolio Value - 225433.17\n", + "2012-11-30 00:00:00: Portfolio Value - 215497.55\n", + "2012-12-03 00:00:00: Portfolio Value - 216794.20\n", + "2012-12-04 00:00:00: Portfolio Value - 220101.37\n", + "2012-12-05 00:00:00: Portfolio Value - 207621.20\n", + "2012-12-06 00:00:00: Portfolio Value - 227416.11\n", + "2012-12-07 00:00:00: Portfolio Value - 218666.56\n", + "2012-12-10 00:00:00: Portfolio Value - 207775.52\n", + "2012-12-11 00:00:00: Portfolio Value - 197729.80\n", + "2012-12-12 00:00:00: Portfolio Value - 209352.15\n", + "2012-12-13 00:00:00: Portfolio Value - 214772.95\n", + "2012-12-14 00:00:00: Portfolio Value - 213860.00\n", + "2012-12-17 00:00:00: Portfolio Value - 205352.87\n", + "2012-12-18 00:00:00: Portfolio Value - 218124.91\n", + "2012-12-19 00:00:00: Portfolio Value - 212440.05\n", + "2012-12-20 00:00:00: Portfolio Value - 207752.92\n", + "2012-12-21 00:00:00: Portfolio Value - 223102.18\n", + "2012-12-24 00:00:00: Portfolio Value - 218298.69\n", + "2012-12-26 00:00:00: Portfolio Value - 217075.56\n", + "2012-12-27 00:00:00: Portfolio Value - 225317.92\n", + "2012-12-28 00:00:00: Portfolio Value - 228569.01\n", + "2012-12-31 00:00:00: Portfolio Value - 239435.75\n", + "2013-01-02 00:00:00: Portfolio Value - 237898.34\n", + "2013-01-03 00:00:00: Portfolio Value - 253386.76\n", + "2013-01-04 00:00:00: Portfolio Value - 228443.57\n", + "2013-01-07 00:00:00: Portfolio Value - 226319.76\n", + "2013-01-08 00:00:00: Portfolio Value - 243060.23\n", + "2013-01-09 00:00:00: Portfolio Value - 232695.39\n", + "2013-01-10 00:00:00: Portfolio Value - 218171.93\n", + "2013-01-11 00:00:00: Portfolio Value - 201630.52\n", + "2013-01-14 00:00:00: Portfolio Value - 212427.30\n", + "2013-01-15 00:00:00: Portfolio Value - 210345.97\n", + "2013-01-16 00:00:00: Portfolio Value - 207196.34\n", + "2013-01-17 00:00:00: Portfolio Value - 200923.98\n", + "2013-01-18 00:00:00: Portfolio Value - 184703.60\n", + "2013-01-22 00:00:00: Portfolio Value - 160987.15\n", + "2013-01-23 00:00:00: Portfolio Value - 176305.18\n", + "2013-01-24 00:00:00: Portfolio Value - 187569.56\n", + "2013-01-25 00:00:00: Portfolio Value - 213938.98\n", + "2013-01-28 00:00:00: Portfolio Value - 210685.92\n", + "2013-01-29 00:00:00: Portfolio Value - 185299.86\n", + "2013-01-30 00:00:00: Portfolio Value - 175453.28\n", + "2013-01-31 00:00:00: Portfolio Value - 166449.98\n", + "2013-02-01 00:00:00: Portfolio Value - 161572.12\n", + "2013-02-04 00:00:00: Portfolio Value - 177852.70\n", + "2013-02-05 00:00:00: Portfolio Value - 171931.33\n", + "2013-02-06 00:00:00: Portfolio Value - 177719.61\n", + "2013-02-07 00:00:00: Portfolio Value - 179759.35\n", + "2013-02-08 00:00:00: Portfolio Value - 178777.09\n", + "2013-02-11 00:00:00: Portfolio Value - 171028.97\n", + "2013-02-12 00:00:00: Portfolio Value - 181269.66\n", + "2013-02-13 00:00:00: Portfolio Value - 178376.07\n", + "2013-02-14 00:00:00: Portfolio Value - 151987.42\n", + "2013-02-15 00:00:00: Portfolio Value - 152029.49\n", + "2013-02-19 00:00:00: Portfolio Value - 145149.91\n", + "2013-02-20 00:00:00: Portfolio Value - 145254.04\n", + "2013-02-21 00:00:00: Portfolio Value - 139605.71\n", + "2013-02-22 00:00:00: Portfolio Value - 136139.09\n", + "2013-02-25 00:00:00: Portfolio Value - 133607.39\n", + "2013-02-26 00:00:00: Portfolio Value - 135647.47\n", + "2013-02-27 00:00:00: Portfolio Value - 133300.80\n", + "2013-02-28 00:00:00: Portfolio Value - 148612.87\n", + "2013-03-01 00:00:00: Portfolio Value - 152549.17\n", + "2013-03-04 00:00:00: Portfolio Value - 139249.33\n", + "2013-03-05 00:00:00: Portfolio Value - 133304.15\n", + "2013-03-06 00:00:00: Portfolio Value - 127701.86\n", + "2013-03-07 00:00:00: Portfolio Value - 120860.76\n", + "2013-03-08 00:00:00: Portfolio Value - 126584.40\n", + "2013-03-11 00:00:00: Portfolio Value - 122364.22\n", + "2013-03-12 00:00:00: Portfolio Value - 98681.10\n", + "2013-03-13 00:00:00: Portfolio Value - 97533.93\n", + "2013-03-14 00:00:00: Portfolio Value - 97534.88\n", + "2013-03-15 00:00:00: Portfolio Value - 74898.54\n", + "2013-03-18 00:00:00: Portfolio Value - 78763.25\n", + "2013-03-19 00:00:00: Portfolio Value - 68394.45\n", + "2013-03-20 00:00:00: Portfolio Value - 66516.25\n", + "2013-03-21 00:00:00: Portfolio Value - 71159.11\n", + "2013-03-22 00:00:00: Portfolio Value - 54251.79\n", + "2013-03-25 00:00:00: Portfolio Value - 49862.55\n", + "2013-03-26 00:00:00: Portfolio Value - 52890.46\n", + "2013-03-27 00:00:00: Portfolio Value - 40464.19\n", + "2013-03-28 00:00:00: Portfolio Value - 27524.86\n", + "2013-04-01 00:00:00: Portfolio Value - -645.85\n", + "2013-04-02 00:00:00: Portfolio Value - -30996.54\n", + "2013-04-03 00:00:00: Portfolio Value - -2157.73\n", + "2013-04-04 00:00:00: Portfolio Value - 7975.45\n", + "2013-04-05 00:00:00: Portfolio Value - 488.51\n", + "2013-04-08 00:00:00: Portfolio Value - 3323.42\n", + "2013-04-09 00:00:00: Portfolio Value - -11187.57\n", + "2013-04-10 00:00:00: Portfolio Value - -30783.80\n", + "2013-04-11 00:00:00: Portfolio Value - -19875.59\n", + "2013-04-12 00:00:00: Portfolio Value - -18231.24\n", + "2013-04-15 00:00:00: Portfolio Value - -11404.95\n", + "2013-04-16 00:00:00: Portfolio Value - -16014.48\n", + "2013-04-17 00:00:00: Portfolio Value - -19946.96\n", + "2013-04-18 00:00:00: Portfolio Value - -11868.94\n", + "2013-04-19 00:00:00: Portfolio Value - -63122.37\n", + "2013-04-22 00:00:00: Portfolio Value - -61022.33\n", + "2013-04-23 00:00:00: Portfolio Value - -47996.82\n", + "2013-04-24 00:00:00: Portfolio Value - -17743.76\n", + "2013-04-25 00:00:00: Portfolio Value - -30449.06\n", + "2013-04-26 00:00:00: Portfolio Value - -25019.49\n", + "2013-04-29 00:00:00: Portfolio Value - -58259.89\n", + "2013-04-30 00:00:00: Portfolio Value - -47909.36\n", + "2013-05-01 00:00:00: Portfolio Value - -55040.22\n", + "2013-05-02 00:00:00: Portfolio Value - -45335.45\n", + "2013-05-03 00:00:00: Portfolio Value - -29274.50\n", + "2013-05-06 00:00:00: Portfolio Value - -26785.29\n", + "2013-05-07 00:00:00: Portfolio Value - -16933.08\n", + "2013-05-08 00:00:00: Portfolio Value - -15072.17\n", + "2013-05-09 00:00:00: Portfolio Value - 5715.98\n", + "2013-05-10 00:00:00: Portfolio Value - 8095.66\n", + "2013-05-13 00:00:00: Portfolio Value - -962.75\n", + "2013-05-14 00:00:00: Portfolio Value - -6602.48\n", + "2013-05-15 00:00:00: Portfolio Value - -26500.74\n", + "2013-05-16 00:00:00: Portfolio Value - -18800.37\n", + "2013-05-17 00:00:00: Portfolio Value - -31906.25\n", + "2013-05-20 00:00:00: Portfolio Value - -18473.52\n", + "2013-05-21 00:00:00: Portfolio Value - -41836.80\n", + "2013-05-22 00:00:00: Portfolio Value - -37477.54\n", + "2013-05-23 00:00:00: Portfolio Value - -19290.01\n", + "2013-05-24 00:00:00: Portfolio Value - -24505.23\n", + "2013-05-28 00:00:00: Portfolio Value - -34863.40\n", + "2013-05-29 00:00:00: Portfolio Value - -39234.33\n", + "2013-05-30 00:00:00: Portfolio Value - -58440.50\n", + "2013-05-31 00:00:00: Portfolio Value - -30313.12\n", + "2013-06-03 00:00:00: Portfolio Value - -29995.09\n", + "2013-06-04 00:00:00: Portfolio Value - -24941.48\n", + "2013-06-05 00:00:00: Portfolio Value - -12671.02\n", + "2013-06-06 00:00:00: Portfolio Value - -35979.70\n", + "2013-06-07 00:00:00: Portfolio Value - -45355.67\n", + "2013-06-10 00:00:00: Portfolio Value - -63573.22\n", + "2013-06-11 00:00:00: Portfolio Value - -102303.38\n", + "2013-06-12 00:00:00: Portfolio Value - -47903.34\n", + "2013-06-13 00:00:00: Portfolio Value - -35328.65\n", + "2013-06-14 00:00:00: Portfolio Value - -36376.18\n", + "2013-06-17 00:00:00: Portfolio Value - -52186.06\n", + "2013-06-18 00:00:00: Portfolio Value - -51253.57\n", + "2013-06-19 00:00:00: Portfolio Value - -30633.62\n", + "2013-06-20 00:00:00: Portfolio Value - -11490.35\n", + "2013-06-21 00:00:00: Portfolio Value - -13560.89\n", + "2013-06-24 00:00:00: Portfolio Value - -33899.27\n", + "2013-06-25 00:00:00: Portfolio Value - -26609.17\n", + "2013-06-26 00:00:00: Portfolio Value - -51501.34\n", + "2013-06-27 00:00:00: Portfolio Value - -35830.09\n", + "2013-06-28 00:00:00: Portfolio Value - -30486.83\n", + "2013-07-01 00:00:00: Portfolio Value - -10433.76\n", + "2013-07-02 00:00:00: Portfolio Value - -2553.40\n", + "2013-07-03 00:00:00: Portfolio Value - -6311.23\n", + "2013-07-05 00:00:00: Portfolio Value - -4691.45\n", + "2013-07-08 00:00:00: Portfolio Value - -14261.66\n", + "2013-07-09 00:00:00: Portfolio Value - -27201.48\n", + "2013-07-10 00:00:00: Portfolio Value - -48987.64\n", + "2013-07-11 00:00:00: Portfolio Value - -61889.96\n", + "2013-07-12 00:00:00: Portfolio Value - -71800.85\n", + "2013-07-15 00:00:00: Portfolio Value - -62864.13\n", + "2013-07-16 00:00:00: Portfolio Value - -49747.18\n", + "2013-07-17 00:00:00: Portfolio Value - -50278.39\n", + "2013-07-18 00:00:00: Portfolio Value - -62764.38\n", + "2013-07-19 00:00:00: Portfolio Value - -85273.32\n", + "2013-07-22 00:00:00: Portfolio Value - -96807.10\n", + "2013-07-23 00:00:00: Portfolio Value - -98253.45\n", + "2013-07-24 00:00:00: Portfolio Value - -108846.07\n", + "2013-07-25 00:00:00: Portfolio Value - -107675.27\n", + "2013-07-26 00:00:00: Portfolio Value - -72724.51\n", + "2013-07-29 00:00:00: Portfolio Value - -64227.68\n", + "2013-07-30 00:00:00: Portfolio Value - -39299.38\n", + "2013-07-31 00:00:00: Portfolio Value - -35118.61\n", + "2013-08-01 00:00:00: Portfolio Value - -16664.89\n", + "2013-08-02 00:00:00: Portfolio Value - 680.69\n", + "2013-08-05 00:00:00: Portfolio Value - 781.46\n", + "2013-08-06 00:00:00: Portfolio Value - 1224.80\n", + "2013-08-07 00:00:00: Portfolio Value - 876.31\n", + "2013-08-08 00:00:00: Portfolio Value - 19204.53\n", + "2013-08-09 00:00:00: Portfolio Value - 21264.42\n", + "2013-08-12 00:00:00: Portfolio Value - 46151.18\n", + "2013-08-13 00:00:00: Portfolio Value - 40826.36\n", + "2013-08-14 00:00:00: Portfolio Value - 40464.88\n", + "2013-08-15 00:00:00: Portfolio Value - 52678.35\n", + "2013-08-16 00:00:00: Portfolio Value - 43909.95\n", + "2013-08-19 00:00:00: Portfolio Value - 48857.43\n", + "2013-08-20 00:00:00: Portfolio Value - 56123.82\n", + "2013-08-21 00:00:00: Portfolio Value - 87859.03\n", + "2013-08-22 00:00:00: Portfolio Value - 82836.96\n", + "2013-08-23 00:00:00: Portfolio Value - 79525.44\n", + "2013-08-26 00:00:00: Portfolio Value - 81188.08\n", + "2013-08-27 00:00:00: Portfolio Value - 62318.95\n", + "2013-08-28 00:00:00: Portfolio Value - 58080.43\n", + "2013-08-29 00:00:00: Portfolio Value - 61582.39\n", + "2013-08-30 00:00:00: Portfolio Value - 52521.24\n", + "2013-09-03 00:00:00: Portfolio Value - 25676.68\n", + "2013-09-04 00:00:00: Portfolio Value - 26919.77\n", + "2013-09-05 00:00:00: Portfolio Value - 43143.85\n", + "2013-09-06 00:00:00: Portfolio Value - 55640.14\n", + "2013-09-09 00:00:00: Portfolio Value - 80253.47\n", + "2013-09-10 00:00:00: Portfolio Value - 88807.54\n", + "2013-09-11 00:00:00: Portfolio Value - 83062.91\n", + "2013-09-12 00:00:00: Portfolio Value - 79412.08\n", + "2013-09-13 00:00:00: Portfolio Value - 118204.56\n", + "2013-09-16 00:00:00: Portfolio Value - 104443.66\n", + "2013-09-17 00:00:00: Portfolio Value - 107659.08\n", + "2013-09-18 00:00:00: Portfolio Value - 136286.72\n", + "2013-09-19 00:00:00: Portfolio Value - 141429.27\n", + "2013-09-20 00:00:00: Portfolio Value - 129212.43\n", + "2013-09-23 00:00:00: Portfolio Value - 118047.47\n", + "2013-09-24 00:00:00: Portfolio Value - 127843.68\n", + "2013-09-25 00:00:00: Portfolio Value - 143940.69\n", + "2013-09-26 00:00:00: Portfolio Value - 146314.45\n", + "2013-09-27 00:00:00: Portfolio Value - 141980.48\n", + "2013-09-30 00:00:00: Portfolio Value - 139534.99\n", + "2013-10-01 00:00:00: Portfolio Value - 153320.04\n", + "2013-10-02 00:00:00: Portfolio Value - 163444.75\n", + "2013-10-03 00:00:00: Portfolio Value - 183399.48\n", + "2013-10-04 00:00:00: Portfolio Value - 175875.09\n", + "2013-10-07 00:00:00: Portfolio Value - 174861.89\n", + "2013-10-08 00:00:00: Portfolio Value - 166090.81\n", + "2013-10-09 00:00:00: Portfolio Value - 156002.82\n", + "2013-10-10 00:00:00: Portfolio Value - 146780.28\n", + "2013-10-11 00:00:00: Portfolio Value - 140418.97\n", + "2013-10-14 00:00:00: Portfolio Value - 130962.76\n", + "2013-10-15 00:00:00: Portfolio Value - 121303.57\n", + "2013-10-16 00:00:00: Portfolio Value - 94475.58\n", + "2013-10-17 00:00:00: Portfolio Value - 78273.51\n", + "2013-10-18 00:00:00: Portfolio Value - 75886.44\n", + "2013-10-21 00:00:00: Portfolio Value - 84618.12\n", + "2013-10-22 00:00:00: Portfolio Value - 57645.05\n", + "2013-10-23 00:00:00: Portfolio Value - 70099.33\n", + "2013-10-24 00:00:00: Portfolio Value - 68799.98\n", + "2013-10-25 00:00:00: Portfolio Value - 42094.42\n", + "2013-10-28 00:00:00: Portfolio Value - 23385.89\n", + "2013-10-29 00:00:00: Portfolio Value - 21567.49\n", + "2013-10-30 00:00:00: Portfolio Value - 17622.03\n", + "2013-10-31 00:00:00: Portfolio Value - 29185.06\n", + "2013-11-01 00:00:00: Portfolio Value - 23479.20\n", + "2013-11-04 00:00:00: Portfolio Value - 23290.55\n", + "2013-11-05 00:00:00: Portfolio Value - 40832.45\n", + "2013-11-06 00:00:00: Portfolio Value - 30376.16\n", + "2013-11-07 00:00:00: Portfolio Value - 38221.85\n", + "2013-11-08 00:00:00: Portfolio Value - 32927.87\n", + "2013-11-11 00:00:00: Portfolio Value - 48976.34\n", + "2013-11-12 00:00:00: Portfolio Value - 63088.58\n", + "2013-11-13 00:00:00: Portfolio Value - 79804.65\n", + "2013-11-14 00:00:00: Portfolio Value - 66966.67\n", + "2013-11-15 00:00:00: Portfolio Value - 48582.64\n", + "2013-11-18 00:00:00: Portfolio Value - 47165.50\n", + "2013-11-19 00:00:00: Portfolio Value - 11357.10\n", + "2013-11-20 00:00:00: Portfolio Value - 10812.19\n", + "2013-11-21 00:00:00: Portfolio Value - 19687.10\n", + "2013-11-22 00:00:00: Portfolio Value - -8240.87\n", + "2013-11-25 00:00:00: Portfolio Value - -26525.82\n", + "2013-11-26 00:00:00: Portfolio Value - -14180.30\n", + "2013-11-27 00:00:00: Portfolio Value - -14265.28\n", + "2013-11-29 00:00:00: Portfolio Value - -10268.26\n", + "2013-12-02 00:00:00: Portfolio Value - -24164.97\n", + "2013-12-03 00:00:00: Portfolio Value - -7476.67\n", + "2013-12-04 00:00:00: Portfolio Value - -10604.68\n", + "2013-12-05 00:00:00: Portfolio Value - 9232.75\n", + "2013-12-06 00:00:00: Portfolio Value - -34776.01\n", + "2013-12-09 00:00:00: Portfolio Value - -12044.22\n", + "2013-12-10 00:00:00: Portfolio Value - 12883.49\n", + "2013-12-11 00:00:00: Portfolio Value - 28863.77\n", + "2013-12-12 00:00:00: Portfolio Value - 15755.14\n", + "2013-12-13 00:00:00: Portfolio Value - 19057.42\n", + "2013-12-16 00:00:00: Portfolio Value - 10512.94\n", + "2013-12-17 00:00:00: Portfolio Value - 12256.98\n", + "2013-12-18 00:00:00: Portfolio Value - -2440.69\n", + "2013-12-19 00:00:00: Portfolio Value - -9345.12\n", + "2013-12-20 00:00:00: Portfolio Value - -29213.07\n", + "2013-12-23 00:00:00: Portfolio Value - -25472.99\n", + "2013-12-24 00:00:00: Portfolio Value - -14969.48\n", + "2013-12-26 00:00:00: Portfolio Value - -11474.46\n", + "2013-12-27 00:00:00: Portfolio Value - -24787.07\n", + "2013-12-30 00:00:00: Portfolio Value - -12129.12\n", + "2013-12-31 00:00:00: Portfolio Value - -11560.32\n", + "2014-01-02 00:00:00: Portfolio Value - 1087.68\n", + "2014-01-03 00:00:00: Portfolio Value - 20338.20\n", + "2014-01-06 00:00:00: Portfolio Value - 12188.20\n", + "2014-01-07 00:00:00: Portfolio Value - -2492.17\n", + "2014-01-08 00:00:00: Portfolio Value - 11699.84\n", + "2014-01-09 00:00:00: Portfolio Value - 13970.68\n", + "2014-01-10 00:00:00: Portfolio Value - 30671.52\n", + "2014-01-13 00:00:00: Portfolio Value - 44061.25\n", + "2014-01-14 00:00:00: Portfolio Value - 20371.95\n", + "2014-01-15 00:00:00: Portfolio Value - 21073.29\n", + "2014-01-16 00:00:00: Portfolio Value - 11471.30\n", + "2014-01-17 00:00:00: Portfolio Value - 5823.82\n", + "2014-01-21 00:00:00: Portfolio Value - -25592.40\n", + "2014-01-22 00:00:00: Portfolio Value - -38235.06\n", + "2014-01-23 00:00:00: Portfolio Value - -20317.58\n", + "2014-01-24 00:00:00: Portfolio Value - -11827.80\n", + "2014-01-27 00:00:00: Portfolio Value - -6489.43\n", + "2014-01-28 00:00:00: Portfolio Value - -641.45\n", + "2014-01-29 00:00:00: Portfolio Value - -16830.88\n", + "2014-01-30 00:00:00: Portfolio Value - -33065.84\n", + "2014-01-31 00:00:00: Portfolio Value - -4167.21\n", + "2014-02-03 00:00:00: Portfolio Value - 8571.61\n", + "2014-02-04 00:00:00: Portfolio Value - 3368.17\n", + "2014-02-05 00:00:00: Portfolio Value - 17593.30\n", + "2014-02-06 00:00:00: Portfolio Value - 74445.55\n", + "2014-02-07 00:00:00: Portfolio Value - 96133.12\n", + "2014-02-10 00:00:00: Portfolio Value - 81961.25\n", + "2014-02-11 00:00:00: Portfolio Value - 69511.80\n", + "2014-02-12 00:00:00: Portfolio Value - 88572.71\n", + "2014-02-13 00:00:00: Portfolio Value - 60859.46\n", + "2014-02-14 00:00:00: Portfolio Value - 64165.99\n", + "2014-02-18 00:00:00: Portfolio Value - 49437.45\n", + "2014-02-19 00:00:00: Portfolio Value - 51165.80\n", + "2014-02-20 00:00:00: Portfolio Value - 63413.69\n", + "2014-02-21 00:00:00: Portfolio Value - 64866.97\n", + "2014-02-24 00:00:00: Portfolio Value - 80486.66\n", + "2014-02-25 00:00:00: Portfolio Value - 113908.31\n", + "2014-02-26 00:00:00: Portfolio Value - 140309.82\n", + "2014-02-27 00:00:00: Portfolio Value - 136917.95\n", + "2014-02-28 00:00:00: Portfolio Value - 114357.08\n", + "2014-03-03 00:00:00: Portfolio Value - 115761.18\n", + "2014-03-04 00:00:00: Portfolio Value - 124613.60\n", + "2014-03-05 00:00:00: Portfolio Value - 125513.95\n", + "2014-03-06 00:00:00: Portfolio Value - 126835.62\n", + "2014-03-07 00:00:00: Portfolio Value - 143131.17\n", + "2014-03-10 00:00:00: Portfolio Value - 96605.91\n", + "2014-03-11 00:00:00: Portfolio Value - 119242.39\n", + "2014-03-12 00:00:00: Portfolio Value - 105526.21\n", + "2014-03-13 00:00:00: Portfolio Value - 99185.48\n", + "2014-03-14 00:00:00: Portfolio Value - 100956.81\n", + "2014-03-17 00:00:00: Portfolio Value - 97752.66\n", + "2014-03-18 00:00:00: Portfolio Value - 83400.24\n", + "2014-03-19 00:00:00: Portfolio Value - 71915.19\n", + "2014-03-20 00:00:00: Portfolio Value - 70190.59\n", + "2014-03-21 00:00:00: Portfolio Value - 81050.55\n", + "2014-03-24 00:00:00: Portfolio Value - 70222.47\n", + "2014-03-25 00:00:00: Portfolio Value - 56063.38\n", + "2014-03-26 00:00:00: Portfolio Value - 48746.72\n", + "2014-03-27 00:00:00: Portfolio Value - 52036.16\n", + "2014-03-28 00:00:00: Portfolio Value - 81300.14\n", + "2014-03-31 00:00:00: Portfolio Value - 77227.28\n", + "2014-04-01 00:00:00: Portfolio Value - 105506.76\n", + "2014-04-02 00:00:00: Portfolio Value - 109234.30\n", + "2014-04-03 00:00:00: Portfolio Value - 94285.39\n", + "2014-04-04 00:00:00: Portfolio Value - 104128.96\n", + "2014-04-07 00:00:00: Portfolio Value - 81286.85\n", + "2014-04-08 00:00:00: Portfolio Value - 94447.03\n", + "2014-04-09 00:00:00: Portfolio Value - 95854.02\n", + "2014-04-10 00:00:00: Portfolio Value - 101298.26\n", + "2014-04-11 00:00:00: Portfolio Value - 113950.75\n", + "2014-04-14 00:00:00: Portfolio Value - 94635.33\n", + "2014-04-15 00:00:00: Portfolio Value - 73206.07\n", + "2014-04-16 00:00:00: Portfolio Value - 63566.99\n", + "2014-04-17 00:00:00: Portfolio Value - 82740.69\n", + "2014-04-21 00:00:00: Portfolio Value - 76665.54\n", + "2014-04-22 00:00:00: Portfolio Value - 96530.59\n", + "2014-04-23 00:00:00: Portfolio Value - 75138.02\n", + "2014-04-24 00:00:00: Portfolio Value - 95819.20\n", + "2014-04-25 00:00:00: Portfolio Value - 69304.31\n", + "2014-04-28 00:00:00: Portfolio Value - 60641.10\n", + "2014-04-29 00:00:00: Portfolio Value - 74939.55\n", + "2014-04-30 00:00:00: Portfolio Value - 79874.99\n", + "2014-05-01 00:00:00: Portfolio Value - 89888.80\n", + "2014-05-02 00:00:00: Portfolio Value - 147376.28\n", + "2014-05-05 00:00:00: Portfolio Value - 116645.01\n", + "2014-05-06 00:00:00: Portfolio Value - 101526.98\n", + "2014-05-07 00:00:00: Portfolio Value - 69156.66\n", + "2014-05-08 00:00:00: Portfolio Value - 66114.07\n", + "2014-05-09 00:00:00: Portfolio Value - 67624.28\n", + "2014-05-12 00:00:00: Portfolio Value - 86160.51\n", + "2014-05-13 00:00:00: Portfolio Value - 93143.46\n", + "2014-05-14 00:00:00: Portfolio Value - 78208.55\n", + "2014-05-15 00:00:00: Portfolio Value - 85735.92\n", + "2014-05-16 00:00:00: Portfolio Value - 81922.61\n", + "2014-05-19 00:00:00: Portfolio Value - 93599.95\n", + "2014-05-20 00:00:00: Portfolio Value - 83653.02\n", + "2014-05-21 00:00:00: Portfolio Value - 72041.49\n", + "2014-05-22 00:00:00: Portfolio Value - 79133.95\n", + "2014-05-23 00:00:00: Portfolio Value - 87983.63\n", + "2014-05-27 00:00:00: Portfolio Value - 75878.10\n", + "2014-05-28 00:00:00: Portfolio Value - 78524.53\n", + "2014-05-29 00:00:00: Portfolio Value - 70179.85\n", + "2014-05-30 00:00:00: Portfolio Value - 70338.53\n", + "2014-06-02 00:00:00: Portfolio Value - 91715.69\n", + "2014-06-03 00:00:00: Portfolio Value - 81951.99\n", + "2014-06-04 00:00:00: Portfolio Value - 73831.02\n", + "2014-06-05 00:00:00: Portfolio Value - 80077.71\n", + "2014-06-06 00:00:00: Portfolio Value - 78298.82\n", + "2014-06-09 00:00:00: Portfolio Value - 71053.71\n", + "2014-06-10 00:00:00: Portfolio Value - 71893.62\n", + "2014-06-11 00:00:00: Portfolio Value - 87747.87\n", + "2014-06-12 00:00:00: Portfolio Value - 39549.39\n", + "2014-06-13 00:00:00: Portfolio Value - 35005.33\n", + "2014-06-16 00:00:00: Portfolio Value - 44352.19\n", + "2014-06-17 00:00:00: Portfolio Value - 52829.99\n", + "2014-06-18 00:00:00: Portfolio Value - 21956.70\n", + "2014-06-19 00:00:00: Portfolio Value - 7227.48\n", + "2014-06-20 00:00:00: Portfolio Value - -12689.05\n", + "2014-06-23 00:00:00: Portfolio Value - -3953.21\n", + "2014-06-24 00:00:00: Portfolio Value - -30846.97\n", + "2014-06-25 00:00:00: Portfolio Value - -34164.98\n", + "2014-06-26 00:00:00: Portfolio Value - -38035.25\n", + "2014-06-27 00:00:00: Portfolio Value - -44216.39\n", + "2014-06-30 00:00:00: Portfolio Value - -58165.05\n", + "2014-07-01 00:00:00: Portfolio Value - -57936.56\n", + "2014-07-02 00:00:00: Portfolio Value - -72780.26\n", + "2014-07-03 00:00:00: Portfolio Value - -55405.16\n", + "2014-07-07 00:00:00: Portfolio Value - -56633.00\n", + "2014-07-08 00:00:00: Portfolio Value - -69798.94\n", + "2014-07-09 00:00:00: Portfolio Value - -78707.36\n", + "2014-07-10 00:00:00: Portfolio Value - -76609.67\n", + "2014-07-11 00:00:00: Portfolio Value - -85750.03\n", + "2014-07-14 00:00:00: Portfolio Value - -84789.50\n", + "2014-07-15 00:00:00: Portfolio Value - -83898.53\n", + "2014-07-16 00:00:00: Portfolio Value - -88523.48\n", + "2014-07-17 00:00:00: Portfolio Value - -77204.57\n", + "2014-07-18 00:00:00: Portfolio Value - -90068.92\n", + "2014-07-21 00:00:00: Portfolio Value - -81202.49\n", + "2014-07-22 00:00:00: Portfolio Value - -77353.61\n", + "2014-07-23 00:00:00: Portfolio Value - -136752.61\n", + "2014-07-24 00:00:00: Portfolio Value - -148774.97\n", + "2014-07-25 00:00:00: Portfolio Value - -120903.74\n", + "2014-07-28 00:00:00: Portfolio Value - -131102.31\n", + "2014-07-29 00:00:00: Portfolio Value - -132971.53\n", + "2014-07-30 00:00:00: Portfolio Value - -110655.43\n", + "2014-07-31 00:00:00: Portfolio Value - -100452.53\n", + "2014-08-01 00:00:00: Portfolio Value - -117315.42\n", + "2014-08-04 00:00:00: Portfolio Value - -100806.65\n", + "2014-08-05 00:00:00: Portfolio Value - -92599.64\n", + "2014-08-06 00:00:00: Portfolio Value - -115644.64\n", + "2014-08-07 00:00:00: Portfolio Value - -108142.76\n", + "2014-08-08 00:00:00: Portfolio Value - -114322.28\n", + "2014-08-11 00:00:00: Portfolio Value - -94099.85\n", + "2014-08-12 00:00:00: Portfolio Value - -116524.53\n", + "2014-08-13 00:00:00: Portfolio Value - -117521.60\n", + "2014-08-14 00:00:00: Portfolio Value - -120459.12\n", + "2014-08-15 00:00:00: Portfolio Value - -142556.20\n", + "2014-08-18 00:00:00: Portfolio Value - -127117.32\n", + "2014-08-19 00:00:00: Portfolio Value - -121448.30\n", + "2014-08-20 00:00:00: Portfolio Value - -87303.16\n", + "2014-08-21 00:00:00: Portfolio Value - -107726.03\n", + "2014-08-22 00:00:00: Portfolio Value - -97498.39\n", + "2014-08-25 00:00:00: Portfolio Value - -120627.36\n", + "2014-08-26 00:00:00: Portfolio Value - -131234.90\n", + "2014-08-27 00:00:00: Portfolio Value - -136992.16\n", + "2014-08-28 00:00:00: Portfolio Value - -140770.74\n", + "2014-08-29 00:00:00: Portfolio Value - -155557.91\n", + "2014-09-02 00:00:00: Portfolio Value - -148425.13\n", + "2014-09-03 00:00:00: Portfolio Value - -178700.23\n", + "2014-09-04 00:00:00: Portfolio Value - -169204.36\n", + "2014-09-05 00:00:00: Portfolio Value - -171511.46\n", + "2014-09-08 00:00:00: Portfolio Value - -175882.16\n", + "2014-09-09 00:00:00: Portfolio Value - -159025.18\n", + "2014-09-10 00:00:00: Portfolio Value - -172285.57\n", + "2014-09-11 00:00:00: Portfolio Value - -146448.92\n", + "2014-09-12 00:00:00: Portfolio Value - -140180.30\n", + "2014-09-15 00:00:00: Portfolio Value - -148870.10\n", + "2014-09-16 00:00:00: Portfolio Value - -185490.38\n", + "2014-09-17 00:00:00: Portfolio Value - -182099.49\n", + "2014-09-18 00:00:00: Portfolio Value - -184387.11\n", + "2014-09-19 00:00:00: Portfolio Value - -207798.72\n", + "2014-09-22 00:00:00: Portfolio Value - -242271.73\n", + "2014-09-23 00:00:00: Portfolio Value - -232287.44\n", + "2014-09-24 00:00:00: Portfolio Value - -270649.78\n", + "2014-09-25 00:00:00: Portfolio Value - -233734.46\n", + "2014-09-26 00:00:00: Portfolio Value - -240609.11\n", + "2014-09-29 00:00:00: Portfolio Value - -245575.65\n", + "2014-09-30 00:00:00: Portfolio Value - -235640.29\n", + "2014-10-01 00:00:00: Portfolio Value - -219599.01\n", + "2014-10-02 00:00:00: Portfolio Value - -201152.68\n", + "2014-10-03 00:00:00: Portfolio Value - -202897.93\n", + "2014-10-06 00:00:00: Portfolio Value - -179206.63\n", + "2014-10-07 00:00:00: Portfolio Value - -197070.86\n", + "2014-10-08 00:00:00: Portfolio Value - -218023.87\n", + "2014-10-09 00:00:00: Portfolio Value - -198903.60\n", + "2014-10-10 00:00:00: Portfolio Value - -193490.07\n", + "2014-10-13 00:00:00: Portfolio Value - -169014.90\n", + "2014-10-14 00:00:00: Portfolio Value - -111224.56\n", + "2014-10-15 00:00:00: Portfolio Value - -118411.26\n", + "2014-10-16 00:00:00: Portfolio Value - -104839.01\n", + "2014-10-17 00:00:00: Portfolio Value - -142173.27\n", + "2014-10-20 00:00:00: Portfolio Value - -122453.39\n", + "2014-10-21 00:00:00: Portfolio Value - -139585.37\n", + "2014-10-22 00:00:00: Portfolio Value - -122190.68\n", + "2014-10-23 00:00:00: Portfolio Value - -155510.83\n", + "2014-10-24 00:00:00: Portfolio Value - -187254.66\n", + "2014-10-27 00:00:00: Portfolio Value - -158950.38\n", + "2014-10-28 00:00:00: Portfolio Value - -135826.60\n", + "2014-10-29 00:00:00: Portfolio Value - -141934.48\n", + "2014-10-30 00:00:00: Portfolio Value - -165184.58\n", + "2014-10-31 00:00:00: Portfolio Value - -170884.66\n", + "2014-11-03 00:00:00: Portfolio Value - -145976.74\n", + "2014-11-04 00:00:00: Portfolio Value - -181757.86\n", + "2014-11-05 00:00:00: Portfolio Value - -213478.65\n", + "2014-11-06 00:00:00: Portfolio Value - -207619.60\n", + "2014-11-07 00:00:00: Portfolio Value - -187387.19\n", + "2014-11-10 00:00:00: Portfolio Value - -187600.23\n", + "2014-11-11 00:00:00: Portfolio Value - -196178.22\n", + "2014-11-12 00:00:00: Portfolio Value - -170647.16\n", + "2014-11-13 00:00:00: Portfolio Value - -144930.64\n", + "2014-11-14 00:00:00: Portfolio Value - -118496.36\n", + "2014-11-17 00:00:00: Portfolio Value - -133662.69\n", + "2014-11-18 00:00:00: Portfolio Value - -139300.54\n", + "2014-11-19 00:00:00: Portfolio Value - -136809.41\n", + "2014-11-20 00:00:00: Portfolio Value - -126198.79\n", + "2014-11-21 00:00:00: Portfolio Value - -124661.40\n", + "2014-11-24 00:00:00: Portfolio Value - -116733.54\n", + "2014-11-25 00:00:00: Portfolio Value - -112005.89\n", + "2014-11-26 00:00:00: Portfolio Value - -105579.27\n", + "2014-11-28 00:00:00: Portfolio Value - -93504.64\n", + "2014-12-01 00:00:00: Portfolio Value - -119320.74\n", + "2014-12-02 00:00:00: Portfolio Value - -149851.03\n", + "2014-12-03 00:00:00: Portfolio Value - -162135.69\n", + "2014-12-04 00:00:00: Portfolio Value - -151942.30\n", + "2014-12-05 00:00:00: Portfolio Value - -161334.76\n", + "2014-12-08 00:00:00: Portfolio Value - -168006.53\n", + "2014-12-09 00:00:00: Portfolio Value - -168015.85\n", + "2014-12-10 00:00:00: Portfolio Value - -164695.01\n", + "2014-12-11 00:00:00: Portfolio Value - -136942.80\n", + "2014-12-12 00:00:00: Portfolio Value - -112883.08\n", + "2014-12-15 00:00:00: Portfolio Value - -70702.22\n", + "2014-12-16 00:00:00: Portfolio Value - -75877.07\n", + "2014-12-17 00:00:00: Portfolio Value - -104481.41\n", + "2014-12-18 00:00:00: Portfolio Value - -177737.07\n", + "2014-12-19 00:00:00: Portfolio Value - -184298.77\n", + "2014-12-22 00:00:00: Portfolio Value - -146639.98\n", + "2014-12-23 00:00:00: Portfolio Value - -112724.34\n", + "2014-12-24 00:00:00: Portfolio Value - -121177.15\n", + "2014-12-26 00:00:00: Portfolio Value - -125391.52\n", + "2014-12-29 00:00:00: Portfolio Value - -112010.06\n", + "2014-12-30 00:00:00: Portfolio Value - -103811.72\n", + "2014-12-31 00:00:00: Portfolio Value - -81839.16\n", + "2015-01-02 00:00:00: Portfolio Value - -86279.73\n", + "2015-01-05 00:00:00: Portfolio Value - -59327.42\n", + "2015-01-06 00:00:00: Portfolio Value - -62069.42\n", + "2015-01-07 00:00:00: Portfolio Value - -85382.04\n", + "2015-01-08 00:00:00: Portfolio Value - -102952.97\n", + "2015-01-09 00:00:00: Portfolio Value - -90700.77\n", + "2015-01-12 00:00:00: Portfolio Value - -67283.61\n", + "2015-01-13 00:00:00: Portfolio Value - -73470.54\n", + "2015-01-14 00:00:00: Portfolio Value - -77210.97\n", + "2015-01-15 00:00:00: Portfolio Value - -76823.32\n", + "2015-01-16 00:00:00: Portfolio Value - -111318.66\n", + "2015-01-20 00:00:00: Portfolio Value - -127150.61\n", + "2015-01-21 00:00:00: Portfolio Value - -117820.66\n", + "2015-01-22 00:00:00: Portfolio Value - -118657.49\n", + "2015-01-23 00:00:00: Portfolio Value - -79809.83\n", + "2015-01-26 00:00:00: Portfolio Value - -47723.38\n", + "2015-01-27 00:00:00: Portfolio Value - -29005.91\n", + "2015-01-28 00:00:00: Portfolio Value - -2249.09\n", + "2015-01-29 00:00:00: Portfolio Value - -2138.45\n", + "2015-01-30 00:00:00: Portfolio Value - -67965.18\n", + "2015-02-02 00:00:00: Portfolio Value - -108870.81\n", + "2015-02-03 00:00:00: Portfolio Value - -108931.83\n", + "2015-02-04 00:00:00: Portfolio Value - -111379.49\n", + "2015-02-05 00:00:00: Portfolio Value - -180087.94\n", + "2015-02-06 00:00:00: Portfolio Value - -184389.51\n", + "2015-02-09 00:00:00: Portfolio Value - -174859.44\n", + "2015-02-10 00:00:00: Portfolio Value - -188583.91\n", + "2015-02-11 00:00:00: Portfolio Value - -192126.08\n", + "2015-02-12 00:00:00: Portfolio Value - -167457.58\n", + "2015-02-13 00:00:00: Portfolio Value - -147558.79\n", + "2015-02-17 00:00:00: Portfolio Value - -161769.90\n", + "2015-02-18 00:00:00: Portfolio Value - -150933.89\n", + "2015-02-19 00:00:00: Portfolio Value - -158112.64\n", + "2015-02-20 00:00:00: Portfolio Value - -142440.99\n", + "2015-02-23 00:00:00: Portfolio Value - -166716.48\n", + "2015-02-24 00:00:00: Portfolio Value - -198836.66\n", + "2015-02-25 00:00:00: Portfolio Value - -203226.51\n", + "2015-02-26 00:00:00: Portfolio Value - -198921.50\n", + "2015-02-27 00:00:00: Portfolio Value - -198640.64\n", + "2015-03-02 00:00:00: Portfolio Value - -176591.67\n", + "2015-03-03 00:00:00: Portfolio Value - -169682.70\n", + "2015-03-04 00:00:00: Portfolio Value - -178919.43\n", + "2015-03-05 00:00:00: Portfolio Value - -207142.59\n", + "2015-03-06 00:00:00: Portfolio Value - -207201.25\n", + "2015-03-09 00:00:00: Portfolio Value - -211145.68\n", + "2015-03-10 00:00:00: Portfolio Value - -195868.44\n", + "2015-03-11 00:00:00: Portfolio Value - -205464.40\n", + "2015-03-12 00:00:00: Portfolio Value - -213889.87\n", + "2015-03-13 00:00:00: Portfolio Value - -224673.65\n", + "2015-03-16 00:00:00: Portfolio Value - -253464.31\n", + "2015-03-17 00:00:00: Portfolio Value - -262307.15\n", + "2015-03-18 00:00:00: Portfolio Value - -279339.33\n", + "2015-03-19 00:00:00: Portfolio Value - -250807.39\n", + "2015-03-20 00:00:00: Portfolio Value - -313871.03\n", + "2015-03-23 00:00:00: Portfolio Value - -297063.26\n", + "2015-03-24 00:00:00: Portfolio Value - -268778.26\n", + "2015-03-25 00:00:00: Portfolio Value - -242016.19\n", + "2015-03-26 00:00:00: Portfolio Value - -233502.49\n", + "2015-03-27 00:00:00: Portfolio Value - -211867.04\n", + "2015-03-30 00:00:00: Portfolio Value - -241651.24\n", + "2015-03-31 00:00:00: Portfolio Value - -205959.06\n", + "2015-04-01 00:00:00: Portfolio Value - -228423.21\n", + "2015-04-02 00:00:00: Portfolio Value - -224587.72\n", + "2015-04-06 00:00:00: Portfolio Value - -226278.92\n", + "2015-04-07 00:00:00: Portfolio Value - -251519.18\n", + "2015-04-08 00:00:00: Portfolio Value - -242805.17\n", + "2015-04-09 00:00:00: Portfolio Value - -250786.19\n", + "2015-04-10 00:00:00: Portfolio Value - -252039.10\n", + "2015-04-13 00:00:00: Portfolio Value - -236575.75\n", + "2015-04-14 00:00:00: Portfolio Value - -268728.19\n", + "2015-04-15 00:00:00: Portfolio Value - -295052.10\n", + "2015-04-16 00:00:00: Portfolio Value - -253616.10\n", + "2015-04-17 00:00:00: Portfolio Value - -227429.01\n", + "2015-04-20 00:00:00: Portfolio Value - -237815.72\n", + "2015-04-21 00:00:00: Portfolio Value - -220173.64\n", + "2015-04-22 00:00:00: Portfolio Value - -232343.28\n", + "2015-04-23 00:00:00: Portfolio Value - -247415.83\n", + "2015-04-24 00:00:00: Portfolio Value - -230957.88\n", + "2015-04-27 00:00:00: Portfolio Value - -208175.89\n", + "2015-04-28 00:00:00: Portfolio Value - -224323.51\n", + "2015-04-29 00:00:00: Portfolio Value - -229854.66\n", + "2015-04-30 00:00:00: Portfolio Value - -229681.60\n", + "2015-05-01 00:00:00: Portfolio Value - -227699.93\n", + "2015-05-04 00:00:00: Portfolio Value - -239704.46\n", + "2015-05-05 00:00:00: Portfolio Value - -223260.45\n", + "2015-05-06 00:00:00: Portfolio Value - -212808.92\n", + "2015-05-07 00:00:00: Portfolio Value - -192410.56\n", + "2015-05-08 00:00:00: Portfolio Value - -206120.16\n", + "2015-05-11 00:00:00: Portfolio Value - -187733.35\n", + "2015-05-12 00:00:00: Portfolio Value - -187261.90\n", + "2015-05-13 00:00:00: Portfolio Value - -217691.11\n", + "2015-05-14 00:00:00: Portfolio Value - -225165.78\n", + "2015-05-15 00:00:00: Portfolio Value - -227364.43\n", + "2015-05-18 00:00:00: Portfolio Value - -232756.45\n", + "2015-05-19 00:00:00: Portfolio Value - -239962.61\n", + "2015-05-20 00:00:00: Portfolio Value - -268485.73\n", + "2015-05-21 00:00:00: Portfolio Value - -265092.89\n", + "2015-05-22 00:00:00: Portfolio Value - -276526.04\n", + "2015-05-26 00:00:00: Portfolio Value - -261158.07\n", + "2015-05-27 00:00:00: Portfolio Value - -285337.11\n", + "2015-05-28 00:00:00: Portfolio Value - -302798.59\n", + "2015-05-29 00:00:00: Portfolio Value - -351459.39\n", + "2015-06-01 00:00:00: Portfolio Value - -334909.03\n", + "2015-06-02 00:00:00: Portfolio Value - -309945.21\n", + "2015-06-03 00:00:00: Portfolio Value - -296407.65\n", + "2015-06-04 00:00:00: Portfolio Value - -265523.32\n", + "2015-06-05 00:00:00: Portfolio Value - -251555.90\n", + "2015-06-08 00:00:00: Portfolio Value - -269602.79\n", + "2015-06-09 00:00:00: Portfolio Value - -233243.28\n", + "2015-06-10 00:00:00: Portfolio Value - -257481.37\n", + "2015-06-11 00:00:00: Portfolio Value - -274014.31\n", + "2015-06-12 00:00:00: Portfolio Value - -237944.64\n", + "2015-06-15 00:00:00: Portfolio Value - -261219.32\n", + "2015-06-16 00:00:00: Portfolio Value - -269362.58\n", + "2015-06-17 00:00:00: Portfolio Value - -263078.08\n", + "2015-06-18 00:00:00: Portfolio Value - -274432.32\n", + "2015-06-19 00:00:00: Portfolio Value - -293674.12\n", + "2015-06-22 00:00:00: Portfolio Value - -286678.45\n", + "2015-06-23 00:00:00: Portfolio Value - -291084.19\n", + "2015-06-24 00:00:00: Portfolio Value - -255335.76\n", + "2015-06-25 00:00:00: Portfolio Value - -274698.60\n", + "2015-06-26 00:00:00: Portfolio Value - -263969.92\n", + "2015-06-29 00:00:00: Portfolio Value - -244889.20\n", + "2015-06-30 00:00:00: Portfolio Value - -224878.48\n", + "2015-07-01 00:00:00: Portfolio Value - -228217.70\n", + "2015-07-02 00:00:00: Portfolio Value - -216110.76\n", + "2015-07-06 00:00:00: Portfolio Value - -194773.90\n", + "2015-07-07 00:00:00: Portfolio Value - -163850.81\n", + "2015-07-08 00:00:00: Portfolio Value - -162385.77\n", + "2015-07-09 00:00:00: Portfolio Value - -167627.27\n", + "2015-07-10 00:00:00: Portfolio Value - -150721.39\n", + "2015-07-13 00:00:00: Portfolio Value - -105242.86\n", + "2015-07-14 00:00:00: Portfolio Value - -133690.40\n", + "2015-07-15 00:00:00: Portfolio Value - -166132.33\n", + "2015-07-16 00:00:00: Portfolio Value - -160495.58\n", + "2015-07-17 00:00:00: Portfolio Value - -224985.75\n", + "2015-07-20 00:00:00: Portfolio Value - -226537.08\n", + "2015-07-21 00:00:00: Portfolio Value - -215914.75\n", + "2015-07-22 00:00:00: Portfolio Value - -161403.54\n", + "2015-07-23 00:00:00: Portfolio Value - -160211.92\n", + "2015-07-24 00:00:00: Portfolio Value - -27940.39\n", + "2015-07-27 00:00:00: Portfolio Value - -64181.52\n", + "2015-07-28 00:00:00: Portfolio Value - -77308.50\n", + "2015-07-29 00:00:00: Portfolio Value - -85196.29\n", + "2015-07-30 00:00:00: Portfolio Value - -92510.96\n", + "2015-07-31 00:00:00: Portfolio Value - -45675.19\n", + "2015-08-03 00:00:00: Portfolio Value - -82934.87\n", + "2015-08-04 00:00:00: Portfolio Value - -66949.42\n", + "2015-08-05 00:00:00: Portfolio Value - -112712.83\n", + "2015-08-06 00:00:00: Portfolio Value - -92763.51\n", + "2015-08-07 00:00:00: Portfolio Value - -74764.89\n", + "2015-08-10 00:00:00: Portfolio Value - -69842.84\n", + "2015-08-11 00:00:00: Portfolio Value - -60324.98\n", + "2015-08-12 00:00:00: Portfolio Value - -93781.79\n", + "2015-08-13 00:00:00: Portfolio Value - -52073.76\n", + "2015-08-14 00:00:00: Portfolio Value - -64895.87\n", + "2015-08-17 00:00:00: Portfolio Value - -54879.35\n", + "2015-08-18 00:00:00: Portfolio Value - -59536.80\n", + "2015-08-19 00:00:00: Portfolio Value - -66911.76\n", + "2015-08-20 00:00:00: Portfolio Value - -77947.16\n", + "2015-08-21 00:00:00: Portfolio Value - -67701.44\n", + "2015-08-24 00:00:00: Portfolio Value - -38692.40\n", + "2015-08-25 00:00:00: Portfolio Value - -11332.57\n", + "2015-08-26 00:00:00: Portfolio Value - -29464.07\n", + "2015-08-27 00:00:00: Portfolio Value - -35265.09\n", + "2015-08-28 00:00:00: Portfolio Value - -6483.97\n", + "2015-08-31 00:00:00: Portfolio Value - -15112.46\n", + "2015-09-01 00:00:00: Portfolio Value - -5052.30\n", + "2015-09-02 00:00:00: Portfolio Value - -8388.40\n", + "2015-09-03 00:00:00: Portfolio Value - -34333.36\n", + "2015-09-04 00:00:00: Portfolio Value - -18745.83\n", + "2015-09-08 00:00:00: Portfolio Value - -60713.94\n", + "2015-09-09 00:00:00: Portfolio Value - -43822.09\n", + "2015-09-10 00:00:00: Portfolio Value - -102011.55\n", + "2015-09-11 00:00:00: Portfolio Value - -83712.44\n", + "2015-09-14 00:00:00: Portfolio Value - -96212.61\n", + "2015-09-15 00:00:00: Portfolio Value - -98135.17\n", + "2015-09-16 00:00:00: Portfolio Value - -100752.21\n", + "2015-09-17 00:00:00: Portfolio Value - -123381.28\n", + "2015-09-18 00:00:00: Portfolio Value - -102740.25\n", + "2015-09-21 00:00:00: Portfolio Value - -107659.44\n", + "2015-09-22 00:00:00: Portfolio Value - -108159.28\n", + "2015-09-23 00:00:00: Portfolio Value - -111561.67\n", + "2015-09-24 00:00:00: Portfolio Value - -79014.27\n", + "2015-09-25 00:00:00: Portfolio Value - -56980.69\n", + "2015-09-28 00:00:00: Portfolio Value - -50731.67\n", + "2015-09-29 00:00:00: Portfolio Value - -78822.57\n", + "2015-09-30 00:00:00: Portfolio Value - -84692.07\n", + "2015-10-01 00:00:00: Portfolio Value - -109748.40\n", + "2015-10-02 00:00:00: Portfolio Value - -134339.13\n", + "2015-10-05 00:00:00: Portfolio Value - -123174.32\n", + "2015-10-06 00:00:00: Portfolio Value - -122948.07\n", + "2015-10-07 00:00:00: Portfolio Value - -144368.26\n", + "2015-10-08 00:00:00: Portfolio Value - -122721.73\n", + "2015-10-09 00:00:00: Portfolio Value - -121742.85\n", + "2015-10-12 00:00:00: Portfolio Value - -114172.79\n", + "2015-10-13 00:00:00: Portfolio Value - -133130.01\n", + "2015-10-14 00:00:00: Portfolio Value - -184345.62\n", + "2015-10-15 00:00:00: Portfolio Value - -225440.45\n", + "2015-10-16 00:00:00: Portfolio Value - -243462.69\n", + "2015-10-19 00:00:00: Portfolio Value - -223394.66\n", + "2015-10-20 00:00:00: Portfolio Value - -207289.23\n", + "2015-10-21 00:00:00: Portfolio Value - -207671.15\n", + "2015-10-22 00:00:00: Portfolio Value - -207969.11\n", + "2015-10-23 00:00:00: Portfolio Value - -230499.00\n", + "2015-10-26 00:00:00: Portfolio Value - -199602.12\n", + "2015-10-27 00:00:00: Portfolio Value - -243820.19\n", + "2015-10-28 00:00:00: Portfolio Value - -251117.00\n", + "2015-10-29 00:00:00: Portfolio Value - -261651.47\n", + "2015-10-30 00:00:00: Portfolio Value - -247816.24\n", + "2015-11-02 00:00:00: Portfolio Value - -237900.61\n", + "2015-11-03 00:00:00: Portfolio Value - -215746.78\n", + "2015-11-04 00:00:00: Portfolio Value - -220591.96\n", + "2015-11-05 00:00:00: Portfolio Value - -210080.55\n", + "2015-11-06 00:00:00: Portfolio Value - -266152.32\n", + "2015-11-09 00:00:00: Portfolio Value - -282915.33\n", + "2015-11-10 00:00:00: Portfolio Value - -269624.32\n", + "2015-11-11 00:00:00: Portfolio Value - -296370.41\n", + "2015-11-12 00:00:00: Portfolio Value - -293887.45\n", + "2015-11-13 00:00:00: Portfolio Value - -333404.93\n", + "2015-11-16 00:00:00: Portfolio Value - -349469.99\n", + "2015-11-17 00:00:00: Portfolio Value - -331018.62\n", + "2015-11-18 00:00:00: Portfolio Value - -327754.14\n", + "2015-11-19 00:00:00: Portfolio Value - -270487.07\n", + "2015-11-20 00:00:00: Portfolio Value - -287802.48\n", + "2015-11-23 00:00:00: Portfolio Value - -259056.93\n", + "2015-11-24 00:00:00: Portfolio Value - -256443.94\n", + "2015-11-25 00:00:00: Portfolio Value - -233569.29\n", + "2015-11-27 00:00:00: Portfolio Value - -231998.60\n", + "2015-11-30 00:00:00: Portfolio Value - -263658.27\n", + "2015-12-01 00:00:00: Portfolio Value - -284606.06\n", + "2015-12-02 00:00:00: Portfolio Value - -262336.31\n", + "2015-12-03 00:00:00: Portfolio Value - -249063.69\n", + "2015-12-04 00:00:00: Portfolio Value - -238701.32\n", + "2015-12-07 00:00:00: Portfolio Value - -206587.92\n", + "2015-12-08 00:00:00: Portfolio Value - -220318.88\n", + "2015-12-09 00:00:00: Portfolio Value - -202141.81\n", + "2015-12-10 00:00:00: Portfolio Value - -208129.34\n", + "2015-12-11 00:00:00: Portfolio Value - -180253.00\n", + "2015-12-14 00:00:00: Portfolio Value - -164286.34\n", + "2015-12-15 00:00:00: Portfolio Value - -174147.67\n", + "2015-12-16 00:00:00: Portfolio Value - -149333.80\n", + "2015-12-17 00:00:00: Portfolio Value - -191942.65\n", + "2015-12-18 00:00:00: Portfolio Value - -172076.17\n", + "2015-12-21 00:00:00: Portfolio Value - -186860.61\n", + "2015-12-22 00:00:00: Portfolio Value - -210072.95\n", + "2015-12-23 00:00:00: Portfolio Value - -219511.22\n", + "2015-12-24 00:00:00: Portfolio Value - -233285.91\n", + "2015-12-28 00:00:00: Portfolio Value - -242610.26\n", + "2015-12-29 00:00:00: Portfolio Value - -246817.91\n", + "2015-12-30 00:00:00: Portfolio Value - -242264.31\n", + "2015-12-31 00:00:00: Portfolio Value - -241374.08\n", + "2016-01-04 00:00:00: Portfolio Value - -207997.84\n", + "2016-01-05 00:00:00: Portfolio Value - -225233.74\n", + "2016-01-06 00:00:00: Portfolio Value - -186933.83\n", + "2016-01-07 00:00:00: Portfolio Value - -192709.13\n", + "2016-01-08 00:00:00: Portfolio Value - -177563.66\n", + "2016-01-11 00:00:00: Portfolio Value - -142121.09\n", + "2016-01-12 00:00:00: Portfolio Value - -155636.98\n", + "2016-01-13 00:00:00: Portfolio Value - -157663.03\n", + "2016-01-14 00:00:00: Portfolio Value - -238932.79\n", + "2016-01-15 00:00:00: Portfolio Value - -217808.45\n", + "2016-01-19 00:00:00: Portfolio Value - -196054.17\n", + "2016-01-20 00:00:00: Portfolio Value - -211850.58\n", + "2016-01-21 00:00:00: Portfolio Value - -183082.09\n", + "2016-01-22 00:00:00: Portfolio Value - -211437.52\n", + "2016-01-25 00:00:00: Portfolio Value - -159105.09\n", + "2016-01-26 00:00:00: Portfolio Value - -145185.42\n", + "2016-01-27 00:00:00: Portfolio Value - -201192.00\n", + "2016-01-28 00:00:00: Portfolio Value - -220571.52\n", + "2016-01-29 00:00:00: Portfolio Value - -269797.89\n", + "2016-02-01 00:00:00: Portfolio Value - -263278.76\n", + "2016-02-02 00:00:00: Portfolio Value - -290059.60\n", + "2016-02-03 00:00:00: Portfolio Value - -288841.53\n", + "2016-02-04 00:00:00: Portfolio Value - -281536.83\n", + "2016-02-05 00:00:00: Portfolio Value - -256140.70\n", + "2016-02-08 00:00:00: Portfolio Value - -171434.68\n", + "2016-02-09 00:00:00: Portfolio Value - -195322.56\n", + "2016-02-10 00:00:00: Portfolio Value - -212895.44\n", + "2016-02-11 00:00:00: Portfolio Value - -202601.66\n", + "2016-02-12 00:00:00: Portfolio Value - -202605.81\n", + "2016-02-16 00:00:00: Portfolio Value - -212781.87\n", + "2016-02-17 00:00:00: Portfolio Value - -197609.72\n", + "2016-02-18 00:00:00: Portfolio Value - -145136.26\n", + "2016-02-19 00:00:00: Portfolio Value - -128029.41\n", + "2016-02-22 00:00:00: Portfolio Value - -110590.98\n", + "2016-02-23 00:00:00: Portfolio Value - -69526.83\n", + "2016-02-24 00:00:00: Portfolio Value - -102965.79\n", + "2016-02-25 00:00:00: Portfolio Value - -89506.67\n", + "2016-02-26 00:00:00: Portfolio Value - -51770.20\n", + "2016-02-29 00:00:00: Portfolio Value - -41767.94\n", + "2016-03-01 00:00:00: Portfolio Value - -46196.08\n", + "2016-03-02 00:00:00: Portfolio Value - -80362.93\n", + "2016-03-03 00:00:00: Portfolio Value - -76973.36\n", + "2016-03-04 00:00:00: Portfolio Value - -77121.68\n", + "2016-03-07 00:00:00: Portfolio Value - -95612.59\n", + "2016-03-08 00:00:00: Portfolio Value - -95412.22\n", + "2016-03-09 00:00:00: Portfolio Value - -100576.73\n", + "2016-03-10 00:00:00: Portfolio Value - -97604.52\n", + "2016-03-11 00:00:00: Portfolio Value - -105459.39\n", + "2016-03-14 00:00:00: Portfolio Value - -96976.12\n", + "2016-03-15 00:00:00: Portfolio Value - -83277.55\n", + "2016-03-16 00:00:00: Portfolio Value - -77851.86\n", + "2016-03-17 00:00:00: Portfolio Value - -63094.53\n", + "2016-03-18 00:00:00: Portfolio Value - -53326.47\n", + "2016-03-21 00:00:00: Portfolio Value - -48401.24\n", + "2016-03-22 00:00:00: Portfolio Value - -71862.19\n", + "2016-03-23 00:00:00: Portfolio Value - -74436.53\n", + "2016-03-24 00:00:00: Portfolio Value - -73521.81\n", + "2016-03-28 00:00:00: Portfolio Value - -58743.07\n", + "2016-03-29 00:00:00: Portfolio Value - -85725.52\n", + "2016-03-30 00:00:00: Portfolio Value - -59106.09\n", + "2016-03-31 00:00:00: Portfolio Value - -60542.54\n", + "2016-04-01 00:00:00: Portfolio Value - -88551.89\n", + "2016-04-04 00:00:00: Portfolio Value - -126063.11\n", + "2016-04-05 00:00:00: Portfolio Value - -104398.70\n", + "2016-04-06 00:00:00: Portfolio Value - -136147.03\n", + "2016-04-07 00:00:00: Portfolio Value - -100961.81\n", + "2016-04-08 00:00:00: Portfolio Value - -100264.13\n", + "2016-04-11 00:00:00: Portfolio Value - -99825.55\n", + "2016-04-12 00:00:00: Portfolio Value - -105495.15\n", + "2016-04-13 00:00:00: Portfolio Value - -99197.60\n", + "2016-04-14 00:00:00: Portfolio Value - -116409.71\n", + "2016-04-15 00:00:00: Portfolio Value - -119873.44\n", + "2016-04-18 00:00:00: Portfolio Value - -146329.30\n", + "2016-04-19 00:00:00: Portfolio Value - -210759.01\n", + "2016-04-20 00:00:00: Portfolio Value - -216418.61\n", + "2016-04-21 00:00:00: Portfolio Value - -240468.57\n", + "2016-04-22 00:00:00: Portfolio Value - -269115.18\n", + "2016-04-25 00:00:00: Portfolio Value - -280002.84\n", + "2016-04-26 00:00:00: Portfolio Value - -270291.30\n", + "2016-04-27 00:00:00: Portfolio Value - -301798.95\n", + "2016-04-28 00:00:00: Portfolio Value - -332378.28\n", + "2016-04-29 00:00:00: Portfolio Value - -325741.26\n", + "2016-05-02 00:00:00: Portfolio Value - -309480.63\n", + "2016-05-03 00:00:00: Portfolio Value - -317222.22\n", + "2016-05-04 00:00:00: Portfolio Value - -314806.97\n", + "2016-05-05 00:00:00: Portfolio Value - -325208.88\n", + "2016-05-06 00:00:00: Portfolio Value - -296049.24\n", + "2016-05-09 00:00:00: Portfolio Value - -307535.09\n", + "2016-05-10 00:00:00: Portfolio Value - -317029.41\n", + "2016-05-11 00:00:00: Portfolio Value - -335237.06\n", + "2016-05-12 00:00:00: Portfolio Value - -324077.24\n", + "2016-05-13 00:00:00: Portfolio Value - -321151.48\n", + "2016-05-16 00:00:00: Portfolio Value - -322507.76\n", + "2016-05-17 00:00:00: Portfolio Value - -302708.80\n", + "2016-05-18 00:00:00: Portfolio Value - -320837.05\n", + "2016-05-19 00:00:00: Portfolio Value - -317227.93\n", + "2016-05-20 00:00:00: Portfolio Value - -337514.94\n", + "2016-05-23 00:00:00: Portfolio Value - -333548.41\n", + "2016-05-24 00:00:00: Portfolio Value - -366245.19\n", + "2016-05-25 00:00:00: Portfolio Value - -368902.00\n", + "2016-05-26 00:00:00: Portfolio Value - -365267.24\n", + "2016-05-27 00:00:00: Portfolio Value - -336156.07\n", + "2016-05-31 00:00:00: Portfolio Value - -355802.90\n", + "2016-06-01 00:00:00: Portfolio Value - -378474.49\n", + "2016-06-02 00:00:00: Portfolio Value - -376164.07\n", + "2016-06-03 00:00:00: Portfolio Value - -399948.17\n", + "2016-06-06 00:00:00: Portfolio Value - -417615.26\n", + "2016-06-07 00:00:00: Portfolio Value - -339468.72\n", + "2016-06-08 00:00:00: Portfolio Value - -357101.28\n", + "2016-06-09 00:00:00: Portfolio Value - -345977.83\n", + "2016-06-10 00:00:00: Portfolio Value - -330838.87\n", + "2016-06-13 00:00:00: Portfolio Value - -326130.79\n", + "2016-06-14 00:00:00: Portfolio Value - -318999.18\n", + "2016-06-15 00:00:00: Portfolio Value - -284508.09\n", + "2016-06-16 00:00:00: Portfolio Value - -298479.18\n", + "2016-06-17 00:00:00: Portfolio Value - -271686.27\n", + "2016-06-20 00:00:00: Portfolio Value - -278727.83\n", + "2016-06-21 00:00:00: Portfolio Value - -278971.96\n", + "2016-06-22 00:00:00: Portfolio Value - -279092.97\n", + "2016-06-23 00:00:00: Portfolio Value - -294451.90\n", + "2016-06-24 00:00:00: Portfolio Value - -318151.30\n", + "2016-06-27 00:00:00: Portfolio Value - -330985.06\n", + "2016-06-28 00:00:00: Portfolio Value - -355848.74\n", + "2016-06-29 00:00:00: Portfolio Value - -377240.31\n", + "2016-06-30 00:00:00: Portfolio Value - -382493.68\n", + "2016-07-01 00:00:00: Portfolio Value - -351216.52\n", + "2016-07-05 00:00:00: Portfolio Value - -359941.49\n", + "2016-07-06 00:00:00: Portfolio Value - -397958.58\n", + "2016-07-07 00:00:00: Portfolio Value - -356291.09\n", + "2016-07-08 00:00:00: Portfolio Value - -349175.90\n", + "2016-07-11 00:00:00: Portfolio Value - -327399.15\n", + "2016-07-12 00:00:00: Portfolio Value - -325458.06\n", + "2016-07-13 00:00:00: Portfolio Value - -346397.49\n", + "2016-07-14 00:00:00: Portfolio Value - -330590.72\n", + "2016-07-15 00:00:00: Portfolio Value - -343822.91\n", + "2016-07-18 00:00:00: Portfolio Value - -349590.61\n", + "2016-07-19 00:00:00: Portfolio Value - -355685.33\n", + "2016-07-20 00:00:00: Portfolio Value - -360585.91\n", + "2016-07-21 00:00:00: Portfolio Value - -388437.25\n", + "2016-07-22 00:00:00: Portfolio Value - -416337.71\n", + "2016-07-25 00:00:00: Portfolio Value - -376451.19\n", + "2016-07-26 00:00:00: Portfolio Value - -358991.26\n", + "2016-07-27 00:00:00: Portfolio Value - -356364.95\n", + "2016-07-28 00:00:00: Portfolio Value - -368677.04\n", + "2016-07-29 00:00:00: Portfolio Value - -328657.31\n", + "2016-08-01 00:00:00: Portfolio Value - -316248.21\n", + "2016-08-02 00:00:00: Portfolio Value - -383612.22\n", + "2016-08-03 00:00:00: Portfolio Value - -353933.81\n", + "2016-08-04 00:00:00: Portfolio Value - -320145.30\n", + "2016-08-05 00:00:00: Portfolio Value - -297410.43\n", + "2016-08-08 00:00:00: Portfolio Value - -277446.24\n", + "2016-08-09 00:00:00: Portfolio Value - -295438.94\n", + "2016-08-10 00:00:00: Portfolio Value - -280030.67\n", + "2016-08-11 00:00:00: Portfolio Value - -272995.71\n", + "2016-08-12 00:00:00: Portfolio Value - -292075.13\n", + "2016-08-15 00:00:00: Portfolio Value - -289413.62\n", + "2016-08-16 00:00:00: Portfolio Value - -289574.85\n", + "2016-08-17 00:00:00: Portfolio Value - -311399.38\n", + "2016-08-18 00:00:00: Portfolio Value - -304447.87\n", + "2016-08-19 00:00:00: Portfolio Value - -313100.17\n", + "2016-08-22 00:00:00: Portfolio Value - -326146.66\n", + "2016-08-23 00:00:00: Portfolio Value - -317061.33\n", + "2016-08-24 00:00:00: Portfolio Value - -304917.78\n", + "2016-08-25 00:00:00: Portfolio Value - -286877.38\n", + "2016-08-26 00:00:00: Portfolio Value - -314186.46\n", + "2016-08-29 00:00:00: Portfolio Value - -323094.87\n", + "2016-08-30 00:00:00: Portfolio Value - -344711.35\n", + "2016-08-31 00:00:00: Portfolio Value - -332518.01\n", + "2016-09-01 00:00:00: Portfolio Value - -317754.28\n", + "2016-09-02 00:00:00: Portfolio Value - -374395.78\n", + "2016-09-06 00:00:00: Portfolio Value - -386739.57\n", + "2016-09-07 00:00:00: Portfolio Value - -395321.31\n", + "2016-09-08 00:00:00: Portfolio Value - -432832.56\n", + "2016-09-09 00:00:00: Portfolio Value - -396153.97\n", + "2016-09-12 00:00:00: Portfolio Value - -399909.83\n", + "2016-09-13 00:00:00: Portfolio Value - -380547.45\n", + "2016-09-14 00:00:00: Portfolio Value - -347111.64\n", + "2016-09-15 00:00:00: Portfolio Value - -396389.94\n", + "2016-09-16 00:00:00: Portfolio Value - -404276.97\n", + "2016-09-19 00:00:00: Portfolio Value - -402696.02\n", + "2016-09-20 00:00:00: Portfolio Value - -386247.53\n", + "2016-09-21 00:00:00: Portfolio Value - -425990.32\n", + "2016-09-22 00:00:00: Portfolio Value - -420967.06\n", + "2016-09-23 00:00:00: Portfolio Value - -386120.67\n", + "2016-09-26 00:00:00: Portfolio Value - -389759.25\n", + "2016-09-27 00:00:00: Portfolio Value - -373540.55\n", + "2016-09-28 00:00:00: Portfolio Value - -358962.20\n", + "2016-09-29 00:00:00: Portfolio Value - -339958.82\n", + "2016-09-30 00:00:00: Portfolio Value - -345669.47\n", + "2016-10-03 00:00:00: Portfolio Value - -304664.59\n", + "2016-10-04 00:00:00: Portfolio Value - -285302.11\n", + "2016-10-05 00:00:00: Portfolio Value - -271280.84\n", + "2016-10-06 00:00:00: Portfolio Value - -261359.36\n", + "2016-10-07 00:00:00: Portfolio Value - -279023.28\n", + "2016-10-10 00:00:00: Portfolio Value - -291195.17\n", + "2016-10-11 00:00:00: Portfolio Value - -274971.71\n", + "2016-10-12 00:00:00: Portfolio Value - -269481.62\n", + "2016-10-13 00:00:00: Portfolio Value - -266430.75\n", + "2016-10-14 00:00:00: Portfolio Value - -286277.34\n", + "2016-10-17 00:00:00: Portfolio Value - -290351.33\n", + "2016-10-18 00:00:00: Portfolio Value - -277152.64\n", + "2016-10-19 00:00:00: Portfolio Value - -224655.51\n", + "2016-10-20 00:00:00: Portfolio Value - -225601.69\n", + "2016-10-21 00:00:00: Portfolio Value - -200997.29\n", + "2016-10-24 00:00:00: Portfolio Value - -224768.04\n", + "2016-10-25 00:00:00: Portfolio Value - -251577.87\n", + "2016-10-26 00:00:00: Portfolio Value - -223860.48\n", + "2016-10-27 00:00:00: Portfolio Value - -191435.57\n", + "2016-10-28 00:00:00: Portfolio Value - -123546.68\n", + "2016-10-31 00:00:00: Portfolio Value - -90526.64\n", + "2016-11-01 00:00:00: Portfolio Value - -118435.56\n", + "2016-11-02 00:00:00: Portfolio Value - -127114.81\n", + "2016-11-03 00:00:00: Portfolio Value - -156565.59\n", + "2016-11-04 00:00:00: Portfolio Value - -127721.32\n", + "2016-11-07 00:00:00: Portfolio Value - -165773.35\n", + "2016-11-08 00:00:00: Portfolio Value - -165858.18\n", + "2016-11-09 00:00:00: Portfolio Value - -218315.85\n", + "2016-11-10 00:00:00: Portfolio Value - -251649.29\n", + "2016-11-11 00:00:00: Portfolio Value - -194643.43\n", + "2016-11-14 00:00:00: Portfolio Value - -180792.54\n", + "2016-11-15 00:00:00: Portfolio Value - -202534.87\n", + "2016-11-16 00:00:00: Portfolio Value - -185966.16\n", + "2016-11-17 00:00:00: Portfolio Value - -171889.79\n", + "2016-11-18 00:00:00: Portfolio Value - -164453.26\n", + "2016-11-21 00:00:00: Portfolio Value - -176247.79\n", + "2016-11-22 00:00:00: Portfolio Value - -128955.11\n", + "2016-11-23 00:00:00: Portfolio Value - -104562.49\n", + "2016-11-25 00:00:00: Portfolio Value - -98622.32\n", + "2016-11-28 00:00:00: Portfolio Value - -109398.29\n", + "2016-11-29 00:00:00: Portfolio Value - -112350.65\n", + "2016-11-30 00:00:00: Portfolio Value - -94150.06\n", + "2016-12-01 00:00:00: Portfolio Value - -92647.75\n", + "2016-12-02 00:00:00: Portfolio Value - -90084.66\n", + "2016-12-05 00:00:00: Portfolio Value - -73138.79\n", + "2016-12-06 00:00:00: Portfolio Value - -34293.73\n", + "2016-12-07 00:00:00: Portfolio Value - -29964.23\n", + "2016-12-08 00:00:00: Portfolio Value - -88977.74\n", + "2016-12-09 00:00:00: Portfolio Value - -100657.15\n", + "2016-12-12 00:00:00: Portfolio Value - -116760.51\n", + "2016-12-13 00:00:00: Portfolio Value - -140365.03\n", + "2016-12-14 00:00:00: Portfolio Value - -127270.61\n", + "2016-12-15 00:00:00: Portfolio Value - -111131.01\n", + "2016-12-16 00:00:00: Portfolio Value - -119138.53\n", + "2016-12-19 00:00:00: Portfolio Value - -112537.08\n", + "2016-12-20 00:00:00: Portfolio Value - -124205.98\n", + "2016-12-21 00:00:00: Portfolio Value - -83576.38\n", + "2016-12-22 00:00:00: Portfolio Value - -98118.94\n", + "2016-12-23 00:00:00: Portfolio Value - -104167.34\n", + "2016-12-27 00:00:00: Portfolio Value - -127830.27\n", + "2016-12-28 00:00:00: Portfolio Value - -121321.29\n", + "2016-12-29 00:00:00: Portfolio Value - -110923.78\n", + "2016-12-30 00:00:00: Portfolio Value - -113153.11\n", + "2017-01-03 00:00:00: Portfolio Value - -107875.94\n", + "2017-01-04 00:00:00: Portfolio Value - -99737.71\n", + "2017-01-05 00:00:00: Portfolio Value - -113758.24\n", + "2017-01-06 00:00:00: Portfolio Value - -109801.14\n", + "2017-01-09 00:00:00: Portfolio Value - -112052.65\n", + "2017-01-10 00:00:00: Portfolio Value - -64535.85\n", + "2017-01-11 00:00:00: Portfolio Value - -67440.51\n", + "2017-01-12 00:00:00: Portfolio Value - -87024.03\n", + "2017-01-13 00:00:00: Portfolio Value - -72033.06\n", + "2017-01-17 00:00:00: Portfolio Value - -78588.49\n", + "2017-01-18 00:00:00: Portfolio Value - -84972.19\n", + "2017-01-19 00:00:00: Portfolio Value - -59712.16\n", + "2017-01-20 00:00:00: Portfolio Value - -58562.89\n", + "2017-01-23 00:00:00: Portfolio Value - -58944.94\n", + "2017-01-24 00:00:00: Portfolio Value - -11283.49\n", + "2017-01-25 00:00:00: Portfolio Value - -6123.30\n", + "2017-01-26 00:00:00: Portfolio Value - 18000.56\n", + "2017-01-27 00:00:00: Portfolio Value - 37999.77\n", + "2017-01-30 00:00:00: Portfolio Value - 48339.21\n", + "2017-01-31 00:00:00: Portfolio Value - 54653.43\n", + "2017-02-01 00:00:00: Portfolio Value - 29769.52\n", + "2017-02-02 00:00:00: Portfolio Value - 56802.37\n", + "2017-02-03 00:00:00: Portfolio Value - 19828.34\n", + "2017-02-06 00:00:00: Portfolio Value - 44983.28\n", + "2017-02-07 00:00:00: Portfolio Value - 61022.69\n", + "2017-02-08 00:00:00: Portfolio Value - 83038.20\n", + "2017-02-09 00:00:00: Portfolio Value - 57170.62\n", + "2017-02-10 00:00:00: Portfolio Value - 57310.62\n", + "2017-02-13 00:00:00: Portfolio Value - 39973.85\n", + "2017-02-14 00:00:00: Portfolio Value - 39606.25\n", + "2017-02-15 00:00:00: Portfolio Value - 3992.55\n", + "2017-02-16 00:00:00: Portfolio Value - -2699.49\n", + "2017-02-17 00:00:00: Portfolio Value - 21408.77\n", + "2017-02-21 00:00:00: Portfolio Value - 29451.04\n", + "2017-02-22 00:00:00: Portfolio Value - 26289.65\n", + "2017-02-23 00:00:00: Portfolio Value - 10031.54\n", + "2017-02-24 00:00:00: Portfolio Value - 13703.12\n", + "2017-02-27 00:00:00: Portfolio Value - 14751.79\n", + "2017-02-28 00:00:00: Portfolio Value - 3605.36\n", + "2017-03-01 00:00:00: Portfolio Value - 12714.63\n", + "2017-03-02 00:00:00: Portfolio Value - 9417.74\n", + "2017-03-03 00:00:00: Portfolio Value - 4460.18\n", + "2017-03-06 00:00:00: Portfolio Value - 5408.00\n", + "2017-03-07 00:00:00: Portfolio Value - 10325.47\n", + "2017-03-08 00:00:00: Portfolio Value - 45184.59\n", + "2017-03-09 00:00:00: Portfolio Value - 473.89\n", + "2017-03-10 00:00:00: Portfolio Value - 46131.93\n", + "2017-03-13 00:00:00: Portfolio Value - 42281.80\n", + "2017-03-14 00:00:00: Portfolio Value - 29471.98\n", + "2017-03-15 00:00:00: Portfolio Value - 44207.36\n", + "2017-03-16 00:00:00: Portfolio Value - 69561.01\n", + "2017-03-17 00:00:00: Portfolio Value - 108761.10\n", + "2017-03-20 00:00:00: Portfolio Value - 121838.01\n", + "2017-03-21 00:00:00: Portfolio Value - 91484.48\n", + "2017-03-22 00:00:00: Portfolio Value - 91625.10\n", + "2017-03-23 00:00:00: Portfolio Value - 111712.33\n", + "2017-03-24 00:00:00: Portfolio Value - 124053.97\n", + "2017-03-27 00:00:00: Portfolio Value - 144249.44\n", + "2017-03-28 00:00:00: Portfolio Value - 155447.81\n", + "2017-03-29 00:00:00: Portfolio Value - 116292.90\n", + "2017-03-30 00:00:00: Portfolio Value - 87646.66\n", + "2017-03-31 00:00:00: Portfolio Value - 48992.32\n", + "2017-04-03 00:00:00: Portfolio Value - 59104.28\n", + "2017-04-04 00:00:00: Portfolio Value - 47177.71\n", + "2017-04-05 00:00:00: Portfolio Value - 39673.52\n", + "2017-04-06 00:00:00: Portfolio Value - 27048.61\n", + "2017-04-07 00:00:00: Portfolio Value - -2824.79\n", + "2017-04-10 00:00:00: Portfolio Value - 5762.11\n", + "2017-04-11 00:00:00: Portfolio Value - 14033.72\n", + "2017-04-12 00:00:00: Portfolio Value - -5828.39\n", + "2017-04-13 00:00:00: Portfolio Value - -10345.78\n", + "2017-04-17 00:00:00: Portfolio Value - -35671.96\n", + "2017-04-18 00:00:00: Portfolio Value - -43440.71\n", + "2017-04-19 00:00:00: Portfolio Value - -50251.75\n", + "2017-04-20 00:00:00: Portfolio Value - -66295.15\n", + "2017-04-21 00:00:00: Portfolio Value - -55677.09\n", + "2017-04-24 00:00:00: Portfolio Value - -88540.94\n", + "2017-04-25 00:00:00: Portfolio Value - -89205.41\n", + "2017-04-26 00:00:00: Portfolio Value - -77925.11\n", + "2017-04-27 00:00:00: Portfolio Value - -91369.53\n", + "2017-04-28 00:00:00: Portfolio Value - -110756.93\n", + "2017-05-01 00:00:00: Portfolio Value - -100122.24\n", + "2017-05-02 00:00:00: Portfolio Value - -62826.38\n", + "2017-05-03 00:00:00: Portfolio Value - -39180.05\n", + "2017-05-04 00:00:00: Portfolio Value - -58539.33\n", + "2017-05-05 00:00:00: Portfolio Value - -32281.82\n", + "2017-05-08 00:00:00: Portfolio Value - -44757.14\n", + "2017-05-09 00:00:00: Portfolio Value - 15651.95\n", + "2017-05-10 00:00:00: Portfolio Value - 22359.65\n", + "2017-05-11 00:00:00: Portfolio Value - 3894.90\n", + "2017-05-12 00:00:00: Portfolio Value - -11243.97\n", + "2017-05-15 00:00:00: Portfolio Value - -40331.13\n", + "2017-05-16 00:00:00: Portfolio Value - -33336.40\n", + "2017-05-17 00:00:00: Portfolio Value - -31011.34\n", + "2017-05-18 00:00:00: Portfolio Value - -27303.39\n", + "2017-05-19 00:00:00: Portfolio Value - 8798.32\n", + "2017-05-22 00:00:00: Portfolio Value - 15242.54\n", + "2017-05-23 00:00:00: Portfolio Value - -28192.81\n", + "2017-05-24 00:00:00: Portfolio Value - -44392.18\n", + "2017-05-25 00:00:00: Portfolio Value - -30793.67\n", + "2017-05-26 00:00:00: Portfolio Value - -23851.60\n", + "2017-05-30 00:00:00: Portfolio Value - -25162.96\n", + "2017-05-31 00:00:00: Portfolio Value - -22691.87\n", + "2017-06-01 00:00:00: Portfolio Value - -18842.63\n", + "2017-06-02 00:00:00: Portfolio Value - 9456.75\n", + "2017-06-05 00:00:00: Portfolio Value - -17696.89\n", + "2017-06-06 00:00:00: Portfolio Value - -40979.22\n", + "2017-06-07 00:00:00: Portfolio Value - -44340.63\n", + "2017-06-08 00:00:00: Portfolio Value - -29574.97\n", + "2017-06-09 00:00:00: Portfolio Value - -65460.48\n", + "2017-06-12 00:00:00: Portfolio Value - -80428.36\n", + "2017-06-13 00:00:00: Portfolio Value - -74835.51\n", + "2017-06-14 00:00:00: Portfolio Value - -58588.00\n", + "2017-06-15 00:00:00: Portfolio Value - -51540.49\n", + "2017-06-16 00:00:00: Portfolio Value - -37430.19\n", + "2017-06-19 00:00:00: Portfolio Value - -34583.30\n", + "2017-06-20 00:00:00: Portfolio Value - -45137.95\n", + "2017-06-21 00:00:00: Portfolio Value - -62443.69\n", + "2017-06-22 00:00:00: Portfolio Value - -97293.86\n", + "2017-06-23 00:00:00: Portfolio Value - -73161.24\n", + "2017-06-26 00:00:00: Portfolio Value - -80065.54\n", + "2017-06-27 00:00:00: Portfolio Value - -103979.91\n", + "2017-06-28 00:00:00: Portfolio Value - -95659.04\n", + "2017-06-29 00:00:00: Portfolio Value - -73607.36\n", + "2017-06-30 00:00:00: Portfolio Value - -74816.69\n", + "2017-07-03 00:00:00: Portfolio Value - -78953.23\n", + "2017-07-05 00:00:00: Portfolio Value - -95827.31\n", + "2017-07-06 00:00:00: Portfolio Value - -91438.15\n", + "2017-07-07 00:00:00: Portfolio Value - -83935.66\n", + "2017-07-10 00:00:00: Portfolio Value - -101481.60\n", + "2017-07-11 00:00:00: Portfolio Value - -107807.59\n", + "2017-07-12 00:00:00: Portfolio Value - -120175.00\n", + "2017-07-13 00:00:00: Portfolio Value - -150511.55\n", + "2017-07-14 00:00:00: Portfolio Value - -167233.37\n", + "2017-07-17 00:00:00: Portfolio Value - -137314.75\n", + "2017-07-18 00:00:00: Portfolio Value - -79621.92\n", + "2017-07-19 00:00:00: Portfolio Value - -134492.14\n", + "2017-07-20 00:00:00: Portfolio Value - -160486.78\n", + "2017-07-21 00:00:00: Portfolio Value - -168033.76\n", + "2017-07-24 00:00:00: Portfolio Value - -190269.19\n", + "2017-07-25 00:00:00: Portfolio Value - -220635.79\n", + "2017-07-26 00:00:00: Portfolio Value - -227220.53\n", + "2017-07-27 00:00:00: Portfolio Value - -202452.28\n", + "2017-07-28 00:00:00: Portfolio Value - -200479.58\n", + "2017-07-31 00:00:00: Portfolio Value - -200381.57\n", + "2017-08-01 00:00:00: Portfolio Value - -241873.69\n", + "2017-08-02 00:00:00: Portfolio Value - -275874.24\n", + "2017-08-03 00:00:00: Portfolio Value - -262643.66\n", + "2017-08-04 00:00:00: Portfolio Value - -252848.41\n", + "2017-08-07 00:00:00: Portfolio Value - -257409.77\n", + "2017-08-08 00:00:00: Portfolio Value - -253753.34\n", + "2017-08-09 00:00:00: Portfolio Value - -298149.24\n", + "2017-08-10 00:00:00: Portfolio Value - -320350.17\n", + "2017-08-11 00:00:00: Portfolio Value - -318760.84\n", + "2017-08-14 00:00:00: Portfolio Value - -345592.51\n", + "2017-08-15 00:00:00: Portfolio Value - -366222.83\n", + "2017-08-16 00:00:00: Portfolio Value - -384070.87\n", + "2017-08-17 00:00:00: Portfolio Value - -350387.77\n", + "2017-08-18 00:00:00: Portfolio Value - -332089.57\n", + "2017-08-21 00:00:00: Portfolio Value - -336819.26\n", + "2017-08-22 00:00:00: Portfolio Value - -377979.29\n", + "2017-08-23 00:00:00: Portfolio Value - -402703.66\n", + "2017-08-24 00:00:00: Portfolio Value - -402743.85\n", + "2017-08-25 00:00:00: Portfolio Value - -429766.95\n", + "2017-08-28 00:00:00: Portfolio Value - -439353.79\n", + "2017-08-29 00:00:00: Portfolio Value - -442207.66\n", + "2017-08-30 00:00:00: Portfolio Value - -421085.18\n", + "2017-08-31 00:00:00: Portfolio Value - -444120.41\n", + "2017-09-01 00:00:00: Portfolio Value - -424013.99\n", + "2017-09-05 00:00:00: Portfolio Value - -397960.37\n", + "2017-09-06 00:00:00: Portfolio Value - -370950.01\n", + "2017-09-07 00:00:00: Portfolio Value - -395883.46\n", + "2017-09-08 00:00:00: Portfolio Value - -381606.38\n", + "2017-09-11 00:00:00: Portfolio Value - -382624.27\n", + "2017-09-12 00:00:00: Portfolio Value - -377151.38\n", + "2017-09-13 00:00:00: Portfolio Value - -336004.01\n", + "2017-09-14 00:00:00: Portfolio Value - -326548.52\n", + "2017-09-15 00:00:00: Portfolio Value - -338916.31\n", + "2017-09-18 00:00:00: Portfolio Value - -325617.43\n", + "2017-09-19 00:00:00: Portfolio Value - -309113.63\n", + "2017-09-20 00:00:00: Portfolio Value - -318048.05\n", + "2017-09-21 00:00:00: Portfolio Value - -308420.41\n", + "2017-09-22 00:00:00: Portfolio Value - -331123.21\n", + "2017-09-25 00:00:00: Portfolio Value - -343752.28\n", + "2017-09-26 00:00:00: Portfolio Value - -312147.53\n", + "2017-09-27 00:00:00: Portfolio Value - -314034.50\n", + "2017-09-28 00:00:00: Portfolio Value - -325787.13\n", + "2017-09-29 00:00:00: Portfolio Value - -318866.60\n", + "2017-10-02 00:00:00: Portfolio Value - -344943.89\n", + "2017-10-03 00:00:00: Portfolio Value - -326352.26\n", + "2017-10-04 00:00:00: Portfolio Value - -297730.51\n", + "2017-10-05 00:00:00: Portfolio Value - -299310.69\n", + "2017-10-06 00:00:00: Portfolio Value - -287393.75\n", + "2017-10-09 00:00:00: Portfolio Value - -286439.22\n", + "2017-10-10 00:00:00: Portfolio Value - -289385.99\n", + "2017-10-11 00:00:00: Portfolio Value - -330322.15\n", + "2017-10-12 00:00:00: Portfolio Value - -406174.40\n", + "2017-10-13 00:00:00: Portfolio Value - -400111.74\n", + "2017-10-16 00:00:00: Portfolio Value - -381258.86\n", + "2017-10-17 00:00:00: Portfolio Value - -384819.30\n", + "2017-10-18 00:00:00: Portfolio Value - -420507.40\n", + "2017-10-19 00:00:00: Portfolio Value - -440273.67\n", + "2017-10-20 00:00:00: Portfolio Value - -434655.59\n", + "2017-10-23 00:00:00: Portfolio Value - -429462.12\n", + "2017-10-24 00:00:00: Portfolio Value - -396379.63\n", + "2017-10-25 00:00:00: Portfolio Value - -385314.80\n", + "2017-10-26 00:00:00: Portfolio Value - -401937.20\n", + "2017-10-27 00:00:00: Portfolio Value - -456936.02\n", + "2017-10-30 00:00:00: Portfolio Value - -461055.13\n", + "2017-10-31 00:00:00: Portfolio Value - -443195.38\n", + "2017-11-01 00:00:00: Portfolio Value - -453753.74\n", + "2017-11-02 00:00:00: Portfolio Value - -484183.71\n", + "2017-11-03 00:00:00: Portfolio Value - -536173.89\n", + "2017-11-06 00:00:00: Portfolio Value - -514334.94\n", + "2017-11-07 00:00:00: Portfolio Value - -516482.08\n", + "2017-11-08 00:00:00: Portfolio Value - -520499.91\n", + "2017-11-09 00:00:00: Portfolio Value - -474324.71\n", + "2017-11-10 00:00:00: Portfolio Value - -457347.38\n", + "2017-11-13 00:00:00: Portfolio Value - -435910.58\n", + "2017-11-14 00:00:00: Portfolio Value - -436552.54\n", + "2017-11-15 00:00:00: Portfolio Value - -426387.59\n", + "2017-11-16 00:00:00: Portfolio Value - -414156.09\n", + "2017-11-17 00:00:00: Portfolio Value - -398474.41\n", + "2017-11-20 00:00:00: Portfolio Value - -403347.38\n", + "2017-11-21 00:00:00: Portfolio Value - -418022.07\n", + "2017-11-22 00:00:00: Portfolio Value - -401714.56\n", + "2017-11-24 00:00:00: Portfolio Value - -413569.84\n", + "2017-11-27 00:00:00: Portfolio Value - -462923.02\n", + "2017-11-28 00:00:00: Portfolio Value - -460478.70\n", + "2017-11-29 00:00:00: Portfolio Value - -468067.13\n", + "2017-11-30 00:00:00: Portfolio Value - -485433.14\n", + "2017-12-01 00:00:00: Portfolio Value - -487735.43\n", + "2017-12-04 00:00:00: Portfolio Value - -382101.35\n", + "2017-12-05 00:00:00: Portfolio Value - -411779.91\n", + "2017-12-06 00:00:00: Portfolio Value - -415841.10\n", + "2017-12-07 00:00:00: Portfolio Value - -425919.97\n", + "2017-12-08 00:00:00: Portfolio Value - -414956.93\n", + "2017-12-11 00:00:00: Portfolio Value - -427946.65\n", + "2017-12-12 00:00:00: Portfolio Value - -451431.24\n", + "2017-12-13 00:00:00: Portfolio Value - -437570.41\n", + "2017-12-14 00:00:00: Portfolio Value - -396071.48\n", + "2017-12-15 00:00:00: Portfolio Value - -393506.17\n", + "2017-12-18 00:00:00: Portfolio Value - -363353.85\n", + "2017-12-19 00:00:00: Portfolio Value - -322665.37\n", + "2017-12-20 00:00:00: Portfolio Value - -310224.84\n", + "2017-12-21 00:00:00: Portfolio Value - -265791.64\n", + "2017-12-22 00:00:00: Portfolio Value - -263837.19\n", + "2017-12-26 00:00:00: Portfolio Value - -283627.56\n", + "2017-12-27 00:00:00: Portfolio Value - -294575.09\n", + "2017-12-28 00:00:00: Portfolio Value - -291814.60\n", + "2017-12-29 00:00:00: Portfolio Value - -298379.00\n", + "2018-01-02 00:00:00: Portfolio Value - -283160.68\n", + "2018-01-03 00:00:00: Portfolio Value - -285107.38\n", + "2018-01-04 00:00:00: Portfolio Value - -321126.18\n", + "2018-01-05 00:00:00: Portfolio Value - -341817.70\n", + "2018-01-08 00:00:00: Portfolio Value - -338537.66\n", + "2018-01-09 00:00:00: Portfolio Value - -351286.05\n", + "2018-01-10 00:00:00: Portfolio Value - -317678.75\n", + "2018-01-11 00:00:00: Portfolio Value - -292189.47\n", + "2018-01-12 00:00:00: Portfolio Value - -286181.15\n", + "2018-01-16 00:00:00: Portfolio Value - -358249.69\n", + "2018-01-17 00:00:00: Portfolio Value - -402641.16\n", + "2018-01-18 00:00:00: Portfolio Value - -408451.24\n", + "2018-01-19 00:00:00: Portfolio Value - -416966.18\n", + "2018-01-22 00:00:00: Portfolio Value - -429945.05\n", + "2018-01-23 00:00:00: Portfolio Value - -351528.67\n", + "2018-01-24 00:00:00: Portfolio Value - -354915.48\n", + "2018-01-25 00:00:00: Portfolio Value - -362317.70\n", + "2018-01-26 00:00:00: Portfolio Value - -448173.42\n", + "2018-01-29 00:00:00: Portfolio Value - -400037.94\n", + "2018-01-30 00:00:00: Portfolio Value - -323447.45\n", + "2018-01-31 00:00:00: Portfolio Value - -329975.30\n", + "2018-02-01 00:00:00: Portfolio Value - -323123.13\n", + "2018-02-02 00:00:00: Portfolio Value - -305785.57\n", + "2018-02-05 00:00:00: Portfolio Value - -232243.00\n", + "2018-02-06 00:00:00: Portfolio Value - -240622.43\n", + "2018-02-07 00:00:00: Portfolio Value - -199616.48\n", + "2018-02-08 00:00:00: Portfolio Value - -205483.53\n", + "2018-02-09 00:00:00: Portfolio Value - -264257.39\n", + "2018-02-12 00:00:00: Portfolio Value - -235057.14\n", + "2018-02-13 00:00:00: Portfolio Value - -278278.68\n", + "2018-02-14 00:00:00: Portfolio Value - -277219.87\n", + "2018-02-15 00:00:00: Portfolio Value - -254034.57\n", + "2018-02-16 00:00:00: Portfolio Value - -256548.36\n", + "2018-02-20 00:00:00: Portfolio Value - -255552.20\n", + "2018-02-21 00:00:00: Portfolio Value - -179035.46\n", + "2018-02-22 00:00:00: Portfolio Value - -186983.50\n", + "2018-02-23 00:00:00: Portfolio Value - -240668.93\n", + "2018-02-26 00:00:00: Portfolio Value - -258903.72\n", + "2018-02-27 00:00:00: Portfolio Value - -259454.66\n", + "2018-02-28 00:00:00: Portfolio Value - -255535.49\n", + "2018-03-01 00:00:00: Portfolio Value - -229922.80\n", + "2018-03-02 00:00:00: Portfolio Value - -248513.34\n", + "2018-03-05 00:00:00: Portfolio Value - -277504.42\n", + "2018-03-06 00:00:00: Portfolio Value - -228975.95\n", + "2018-03-07 00:00:00: Portfolio Value - -250365.86\n", + "2018-03-08 00:00:00: Portfolio Value - -214299.18\n", + "2018-03-09 00:00:00: Portfolio Value - -191596.50\n", + "2018-03-12 00:00:00: Portfolio Value - -232348.46\n", + "2018-03-13 00:00:00: Portfolio Value - -241641.24\n", + "2018-03-14 00:00:00: Portfolio Value - -258314.85\n", + "2018-03-15 00:00:00: Portfolio Value - -273336.30\n", + "2018-03-16 00:00:00: Portfolio Value - -246875.82\n", + "2018-03-19 00:00:00: Portfolio Value - -194259.75\n", + "2018-03-20 00:00:00: Portfolio Value - -191197.75\n", + "2018-03-21 00:00:00: Portfolio Value - -204274.19\n", + "2018-03-22 00:00:00: Portfolio Value - -204714.96\n", + "2018-03-23 00:00:00: Portfolio Value - -164788.68\n", + "2018-03-26 00:00:00: Portfolio Value - -161957.45\n", + "2018-03-27 00:00:00: Portfolio Value - -160923.90\n", + "2018-03-28 00:00:00: Portfolio Value - -178885.35\n", + "2018-03-29 00:00:00: Portfolio Value - -183911.56\n", + "2018-04-02 00:00:00: Portfolio Value - -195916.86\n", + "2018-04-03 00:00:00: Portfolio Value - -195568.99\n", + "2018-04-04 00:00:00: Portfolio Value - -213795.31\n", + "2018-04-05 00:00:00: Portfolio Value - -174153.03\n", + "2018-04-06 00:00:00: Portfolio Value - -185826.28\n", + "2018-04-09 00:00:00: Portfolio Value - -211456.88\n", + "2018-04-10 00:00:00: Portfolio Value - -212152.02\n", + "2018-04-11 00:00:00: Portfolio Value - -215960.18\n", + "2018-04-12 00:00:00: Portfolio Value - -175561.38\n", + "2018-04-13 00:00:00: Portfolio Value - -165083.37\n", + "2018-04-16 00:00:00: Portfolio Value - -167717.87\n", + "2018-04-17 00:00:00: Portfolio Value - -117418.96\n", + "2018-04-18 00:00:00: Portfolio Value - -95303.44\n", + "2018-04-19 00:00:00: Portfolio Value - -66928.40\n", + "2018-04-20 00:00:00: Portfolio Value - -66250.92\n", + "2018-04-23 00:00:00: Portfolio Value - -69618.66\n", + "2018-04-24 00:00:00: Portfolio Value - -150321.55\n", + "2018-04-25 00:00:00: Portfolio Value - -168925.89\n", + "2018-04-26 00:00:00: Portfolio Value - -185900.28\n", + "2018-04-27 00:00:00: Portfolio Value - -202060.83\n", + "2018-04-30 00:00:00: Portfolio Value - -191219.39\n", + "2018-05-01 00:00:00: Portfolio Value - -169613.23\n", + "2018-05-02 00:00:00: Portfolio Value - -170493.82\n", + "2018-05-03 00:00:00: Portfolio Value - -129442.99\n", + "2018-05-04 00:00:00: Portfolio Value - -123719.11\n", + "2018-05-07 00:00:00: Portfolio Value - -91953.51\n", + "2018-05-08 00:00:00: Portfolio Value - -66563.87\n", + "2018-05-09 00:00:00: Portfolio Value - -61660.18\n", + "2018-05-10 00:00:00: Portfolio Value - -125111.98\n", + "2018-05-11 00:00:00: Portfolio Value - -180312.93\n", + "2018-05-14 00:00:00: Portfolio Value - -209820.69\n", + "2018-05-15 00:00:00: Portfolio Value - -158603.08\n", + "2018-05-16 00:00:00: Portfolio Value - -154077.17\n", + "2018-05-17 00:00:00: Portfolio Value - -161362.77\n", + "2018-05-18 00:00:00: Portfolio Value - -173645.12\n", + "2018-05-21 00:00:00: Portfolio Value - -139173.75\n", + "2018-05-22 00:00:00: Portfolio Value - -160752.51\n", + "2018-05-23 00:00:00: Portfolio Value - -128403.28\n", + "2018-05-24 00:00:00: Portfolio Value - -124707.42\n", + "2018-05-25 00:00:00: Portfolio Value - -126117.95\n", + "2018-05-29 00:00:00: Portfolio Value - -151865.61\n", + "2018-05-30 00:00:00: Portfolio Value - -185258.73\n", + "2018-05-31 00:00:00: Portfolio Value - -233006.75\n", + "2018-06-01 00:00:00: Portfolio Value - -191029.24\n", + "2018-06-04 00:00:00: Portfolio Value - -196214.70\n", + "2018-06-05 00:00:00: Portfolio Value - -160745.49\n", + "2018-06-06 00:00:00: Portfolio Value - -162068.61\n", + "2018-06-07 00:00:00: Portfolio Value - -164447.94\n", + "2018-06-08 00:00:00: Portfolio Value - -187018.65\n", + "2018-06-11 00:00:00: Portfolio Value - -200201.12\n", + "2018-06-12 00:00:00: Portfolio Value - -185950.61\n", + "2018-06-13 00:00:00: Portfolio Value - -142275.11\n", + "2018-06-14 00:00:00: Portfolio Value - -82939.49\n", + "2018-06-15 00:00:00: Portfolio Value - -73832.23\n", + "2018-06-18 00:00:00: Portfolio Value - -67158.62\n", + "2018-06-19 00:00:00: Portfolio Value - -78443.19\n", + "2018-06-20 00:00:00: Portfolio Value - -45428.96\n", + "2018-06-21 00:00:00: Portfolio Value - -51803.82\n", + "2018-06-22 00:00:00: Portfolio Value - -63386.99\n", + "2018-06-25 00:00:00: Portfolio Value - -184775.88\n", + "2018-06-26 00:00:00: Portfolio Value - -120361.53\n", + "2018-06-27 00:00:00: Portfolio Value - -137289.15\n", + "2018-06-28 00:00:00: Portfolio Value - -111706.10\n", + "2018-06-29 00:00:00: Portfolio Value - -147963.13\n", + "2018-07-02 00:00:00: Portfolio Value - -165584.40\n", + "2018-07-03 00:00:00: Portfolio Value - -164667.02\n", + "2018-07-05 00:00:00: Portfolio Value - -185242.07\n", + "2018-07-06 00:00:00: Portfolio Value - -240601.90\n", + "2018-07-09 00:00:00: Portfolio Value - -205283.99\n", + "2018-07-10 00:00:00: Portfolio Value - -215858.45\n", + "2018-07-11 00:00:00: Portfolio Value - -246392.51\n", + "2018-07-12 00:00:00: Portfolio Value - -295515.73\n", + "2018-07-13 00:00:00: Portfolio Value - -314021.72\n", + "2018-07-16 00:00:00: Portfolio Value - -299344.11\n", + "2018-07-17 00:00:00: Portfolio Value - -353731.04\n", + "2018-07-18 00:00:00: Portfolio Value - -339040.31\n", + "2018-07-19 00:00:00: Portfolio Value - -360222.36\n", + "2018-07-20 00:00:00: Portfolio Value - -393646.38\n", + "2018-07-23 00:00:00: Portfolio Value - -421148.83\n", + "2018-07-24 00:00:00: Portfolio Value - -479942.85\n", + "2018-07-25 00:00:00: Portfolio Value - -490500.68\n", + "2018-07-26 00:00:00: Portfolio Value - -439676.64\n", + "2018-07-27 00:00:00: Portfolio Value - -412420.00\n", + "2018-07-30 00:00:00: Portfolio Value - -447253.69\n", + "2018-07-31 00:00:00: Portfolio Value - -416302.86\n", + "2018-08-01 00:00:00: Portfolio Value - -424359.36\n", + "2018-08-02 00:00:00: Portfolio Value - -440836.64\n", + "2018-08-03 00:00:00: Portfolio Value - -455022.89\n", + "2018-08-06 00:00:00: Portfolio Value - -422179.01\n", + "2018-08-07 00:00:00: Portfolio Value - -444481.85\n", + "2018-08-08 00:00:00: Portfolio Value - -437134.57\n", + "2018-08-09 00:00:00: Portfolio Value - -387494.95\n", + "2018-08-10 00:00:00: Portfolio Value - -367863.75\n", + "2018-08-13 00:00:00: Portfolio Value - -392762.36\n", + "2018-08-14 00:00:00: Portfolio Value - -416793.18\n", + "2018-08-15 00:00:00: Portfolio Value - -432209.79\n", + "2018-08-16 00:00:00: Portfolio Value - -436514.92\n", + "2018-08-17 00:00:00: Portfolio Value - -429861.69\n", + "2018-08-20 00:00:00: Portfolio Value - -347847.78\n", + "2018-08-21 00:00:00: Portfolio Value - -288441.39\n", + "2018-08-22 00:00:00: Portfolio Value - -306151.39\n", + "2018-08-23 00:00:00: Portfolio Value - -317165.84\n", + "2018-08-24 00:00:00: Portfolio Value - -266325.22\n", + "2018-08-27 00:00:00: Portfolio Value - -278468.14\n", + "2018-08-28 00:00:00: Portfolio Value - -238099.38\n", + "2018-08-29 00:00:00: Portfolio Value - -262961.97\n", + "2018-08-30 00:00:00: Portfolio Value - -282285.78\n", + "2018-08-31 00:00:00: Portfolio Value - -243995.15\n", + "2018-09-04 00:00:00: Portfolio Value - -223625.51\n", + "2018-09-05 00:00:00: Portfolio Value - -268895.24\n", + "2018-09-06 00:00:00: Portfolio Value - -240720.67\n", + "2018-09-07 00:00:00: Portfolio Value - -201612.34\n", + "2018-09-10 00:00:00: Portfolio Value - -155041.71\n", + "2018-09-11 00:00:00: Portfolio Value - -166352.47\n", + "2018-09-12 00:00:00: Portfolio Value - -137013.61\n", + "2018-09-13 00:00:00: Portfolio Value - -155109.03\n", + "2018-09-14 00:00:00: Portfolio Value - -169646.83\n", + "2018-09-17 00:00:00: Portfolio Value - -166028.70\n", + "2018-09-18 00:00:00: Portfolio Value - -117560.19\n", + "2018-09-19 00:00:00: Portfolio Value - -128148.12\n", + "2018-09-20 00:00:00: Portfolio Value - -147138.58\n", + "2018-09-21 00:00:00: Portfolio Value - -144467.25\n", + "2018-09-24 00:00:00: Portfolio Value - -166589.32\n", + "2018-09-25 00:00:00: Portfolio Value - -133284.96\n", + "2018-09-26 00:00:00: Portfolio Value - -114297.30\n", + "2018-09-27 00:00:00: Portfolio Value - -143307.28\n", + "2018-09-28 00:00:00: Portfolio Value - -145426.25\n", + "2018-10-01 00:00:00: Portfolio Value - -168214.96\n", + "2018-10-02 00:00:00: Portfolio Value - -214863.65\n", + "2018-10-03 00:00:00: Portfolio Value - -171383.31\n", + "2018-10-04 00:00:00: Portfolio Value - -204502.91\n", + "2018-10-05 00:00:00: Portfolio Value - -239632.96\n", + "2018-10-08 00:00:00: Portfolio Value - -235481.61\n", + "2018-10-09 00:00:00: Portfolio Value - -220701.10\n", + "2018-10-10 00:00:00: Portfolio Value - -230634.55\n", + "2018-10-11 00:00:00: Portfolio Value - -199511.24\n", + "2018-10-12 00:00:00: Portfolio Value - -199403.26\n", + "2018-10-15 00:00:00: Portfolio Value - -184708.18\n", + "2018-10-16 00:00:00: Portfolio Value - -232293.48\n", + "2018-10-17 00:00:00: Portfolio Value - -188898.70\n", + "2018-10-18 00:00:00: Portfolio Value - -248911.87\n", + "2018-10-19 00:00:00: Portfolio Value - -326118.98\n", + "2018-10-22 00:00:00: Portfolio Value - -269870.64\n", + "2018-10-23 00:00:00: Portfolio Value - -292601.57\n", + "2018-10-24 00:00:00: Portfolio Value - -309102.42\n", + "2018-10-25 00:00:00: Portfolio Value - -158449.05\n", + "2018-10-26 00:00:00: Portfolio Value - -135804.11\n", + "2018-10-29 00:00:00: Portfolio Value - -170588.48\n", + "2018-10-30 00:00:00: Portfolio Value - -210202.06\n", + "2018-10-31 00:00:00: Portfolio Value - -187455.80\n", + "2018-11-01 00:00:00: Portfolio Value - 8838.21\n", + "2018-11-02 00:00:00: Portfolio Value - -25093.42\n", + "2018-11-05 00:00:00: Portfolio Value - -1802.85\n", + "2018-11-06 00:00:00: Portfolio Value - -37954.86\n", + "2018-11-07 00:00:00: Portfolio Value - -93155.45\n", + "2018-11-08 00:00:00: Portfolio Value - -57653.86\n", + "2018-11-09 00:00:00: Portfolio Value - -91828.30\n", + "2018-11-12 00:00:00: Portfolio Value - -58241.51\n", + "2018-11-13 00:00:00: Portfolio Value - -17040.84\n", + "2018-11-14 00:00:00: Portfolio Value - 18657.66\n", + "2018-11-15 00:00:00: Portfolio Value - -16885.46\n", + "2018-11-16 00:00:00: Portfolio Value - -78064.27\n", + "2018-11-19 00:00:00: Portfolio Value - -119947.76\n", + "2018-11-20 00:00:00: Portfolio Value - -119518.81\n", + "2018-11-21 00:00:00: Portfolio Value - -96408.65\n", + "2018-11-23 00:00:00: Portfolio Value - -99087.20\n", + "2018-11-26 00:00:00: Portfolio Value - -120534.77\n", + "2018-11-27 00:00:00: Portfolio Value - -139287.92\n", + "2018-11-28 00:00:00: Portfolio Value - -135443.67\n", + "2018-11-29 00:00:00: Portfolio Value - -82656.64\n", + "2018-11-30 00:00:00: Portfolio Value - -107206.78\n", + "2018-12-03 00:00:00: Portfolio Value - -76828.31\n", + "2018-12-04 00:00:00: Portfolio Value - -122009.12\n", + "2018-12-06 00:00:00: Portfolio Value - -106271.78\n", + "2018-12-07 00:00:00: Portfolio Value - -244923.92\n", + "2018-12-10 00:00:00: Portfolio Value - -267002.63\n", + "2018-12-11 00:00:00: Portfolio Value - -268992.18\n", + "2018-12-12 00:00:00: Portfolio Value - -232343.74\n", + "2018-12-13 00:00:00: Portfolio Value - -240487.55\n", + "2018-12-14 00:00:00: Portfolio Value - -205961.26\n", + "2018-12-17 00:00:00: Portfolio Value - -185233.58\n", + "2018-12-18 00:00:00: Portfolio Value - -84703.81\n", + "2018-12-19 00:00:00: Portfolio Value - -102542.33\n", + "2018-12-20 00:00:00: Portfolio Value - -101781.09\n", + "2018-12-21 00:00:00: Portfolio Value - -115512.63\n", + "2018-12-24 00:00:00: Portfolio Value - -118807.09\n", + "2018-12-26 00:00:00: Portfolio Value - -97349.31\n", + "2018-12-27 00:00:00: Portfolio Value - -136023.53\n", + "2018-12-28 00:00:00: Portfolio Value - -146586.62\n", + "2018-12-31 00:00:00: Portfolio Value - -135474.31\n", + "2019-01-02 00:00:00: Portfolio Value - -95867.84\n", + "2019-01-03 00:00:00: Portfolio Value - -74136.66\n", + "2019-01-04 00:00:00: Portfolio Value - -27607.46\n", + "2019-01-07 00:00:00: Portfolio Value - 89804.61\n", + "2019-01-08 00:00:00: Portfolio Value - 118571.26\n", + "2019-01-09 00:00:00: Portfolio Value - 153456.38\n", + "2019-01-10 00:00:00: Portfolio Value - 103953.95\n", + "2019-01-11 00:00:00: Portfolio Value - 155038.57\n", + "2019-01-14 00:00:00: Portfolio Value - 164343.13\n", + "2019-01-15 00:00:00: Portfolio Value - 172028.06\n", + "2019-01-16 00:00:00: Portfolio Value - 135729.59\n", + "2019-01-17 00:00:00: Portfolio Value - 181424.90\n", + "2019-01-18 00:00:00: Portfolio Value - 176577.33\n", + "2019-01-22 00:00:00: Portfolio Value - 132616.54\n", + "2019-01-23 00:00:00: Portfolio Value - 141764.78\n", + "2019-01-24 00:00:00: Portfolio Value - 172352.65\n", + "2019-01-25 00:00:00: Portfolio Value - 188279.39\n", + "2019-01-28 00:00:00: Portfolio Value - 185956.64\n", + "2019-01-29 00:00:00: Portfolio Value - 161939.64\n", + "2019-01-30 00:00:00: Portfolio Value - 196372.94\n", + "2019-01-31 00:00:00: Portfolio Value - 125320.17\n", + "2019-02-01 00:00:00: Portfolio Value - 109642.88\n", + "2019-02-04 00:00:00: Portfolio Value - 152453.91\n", + "2019-02-05 00:00:00: Portfolio Value - 239412.85\n", + "2019-02-06 00:00:00: Portfolio Value - 249935.48\n", + "2019-02-07 00:00:00: Portfolio Value - 271268.13\n", + "2019-02-08 00:00:00: Portfolio Value - 274456.03\n", + "2019-02-11 00:00:00: Portfolio Value - 310635.50\n", + "2019-02-12 00:00:00: Portfolio Value - 303984.72\n", + "2019-02-13 00:00:00: Portfolio Value - 273088.47\n", + "2019-02-14 00:00:00: Portfolio Value - 202677.89\n", + "2019-02-15 00:00:00: Portfolio Value - 135820.12\n", + "2019-02-19 00:00:00: Portfolio Value - 131783.01\n", + "2019-02-20 00:00:00: Portfolio Value - 119790.51\n", + "2019-02-21 00:00:00: Portfolio Value - 113218.21\n", + "2019-02-22 00:00:00: Portfolio Value - 145338.42\n", + "2019-02-25 00:00:00: Portfolio Value - 136804.65\n", + "2019-02-26 00:00:00: Portfolio Value - 127157.93\n", + "2019-02-27 00:00:00: Portfolio Value - 147981.00\n", + "2019-02-28 00:00:00: Portfolio Value - 135123.46\n", + "2019-03-01 00:00:00: Portfolio Value - 66324.56\n", + "2019-03-04 00:00:00: Portfolio Value - 97539.76\n", + "2019-03-05 00:00:00: Portfolio Value - 141116.39\n", + "2019-03-06 00:00:00: Portfolio Value - 203851.43\n", + "2019-03-07 00:00:00: Portfolio Value - 178516.19\n", + "2019-03-08 00:00:00: Portfolio Value - 160628.20\n", + "2019-03-11 00:00:00: Portfolio Value - 95013.91\n", + "2019-03-12 00:00:00: Portfolio Value - 14735.34\n", + "2019-03-13 00:00:00: Portfolio Value - -10895.34\n", + "2019-03-14 00:00:00: Portfolio Value - -37531.75\n", + "2019-03-15 00:00:00: Portfolio Value - -44128.03\n", + "2019-03-18 00:00:00: Portfolio Value - -52912.22\n", + "2019-03-19 00:00:00: Portfolio Value - -87557.56\n", + "2019-03-20 00:00:00: Portfolio Value - -51510.79\n", + "2019-03-21 00:00:00: Portfolio Value - 57463.47\n", + "2019-03-22 00:00:00: Portfolio Value - 48674.21\n", + "2019-03-25 00:00:00: Portfolio Value - 93647.09\n", + "2019-03-26 00:00:00: Portfolio Value - 37303.48\n", + "2019-03-27 00:00:00: Portfolio Value - 86541.45\n", + "2019-03-28 00:00:00: Portfolio Value - 159474.15\n", + "2019-03-29 00:00:00: Portfolio Value - 135616.47\n", + "2019-04-01 00:00:00: Portfolio Value - 176024.96\n", + "2019-04-02 00:00:00: Portfolio Value - 184983.56\n", + "2019-04-03 00:00:00: Portfolio Value - 214975.87\n", + "2019-04-04 00:00:00: Portfolio Value - 224379.83\n", + "2019-04-05 00:00:00: Portfolio Value - 162389.82\n", + "2019-04-08 00:00:00: Portfolio Value - 137394.45\n", + "2019-04-09 00:00:00: Portfolio Value - 86878.57\n", + "2019-04-10 00:00:00: Portfolio Value - 98495.89\n", + "2019-04-11 00:00:00: Portfolio Value - 194191.07\n", + "2019-04-12 00:00:00: Portfolio Value - 173732.43\n", + "2019-04-15 00:00:00: Portfolio Value - 172778.33\n", + "2019-04-16 00:00:00: Portfolio Value - 244385.58\n", + "2019-04-17 00:00:00: Portfolio Value - 282579.05\n", + "2019-04-18 00:00:00: Portfolio Value - 310846.77\n", + "2019-04-22 00:00:00: Portfolio Value - 294463.43\n", + "2019-04-23 00:00:00: Portfolio Value - 288281.94\n", + "2019-04-24 00:00:00: Portfolio Value - 291154.55\n", + "2019-04-25 00:00:00: Portfolio Value - 222874.84\n", + "2019-04-26 00:00:00: Portfolio Value - 205269.48\n", + "2019-04-29 00:00:00: Portfolio Value - 194332.61\n", + "2019-04-30 00:00:00: Portfolio Value - 148103.50\n", + "2019-05-01 00:00:00: Portfolio Value - 239895.20\n", + "2019-05-02 00:00:00: Portfolio Value - 251810.90\n", + "2019-05-03 00:00:00: Portfolio Value - 283775.36\n", + "2019-05-06 00:00:00: Portfolio Value - 217929.34\n", + "2019-05-07 00:00:00: Portfolio Value - 193320.88\n", + "2019-05-08 00:00:00: Portfolio Value - 194499.04\n", + "2019-05-09 00:00:00: Portfolio Value - 180269.15\n", + "2019-05-10 00:00:00: Portfolio Value - 131163.87\n", + "2019-05-13 00:00:00: Portfolio Value - 56356.76\n", + "2019-05-14 00:00:00: Portfolio Value - 58563.75\n", + "2019-05-15 00:00:00: Portfolio Value - 72434.51\n", + "2019-05-16 00:00:00: Portfolio Value - 70788.31\n", + "2019-05-17 00:00:00: Portfolio Value - 43168.84\n", + "2019-05-20 00:00:00: Portfolio Value - 68686.93\n", + "2019-05-21 00:00:00: Portfolio Value - 60262.86\n", + "2019-05-22 00:00:00: Portfolio Value - 32070.47\n", + "2019-05-23 00:00:00: Portfolio Value - 16825.17\n", + "2019-05-24 00:00:00: Portfolio Value - 21632.18\n", + "2019-05-28 00:00:00: Portfolio Value - 64321.30\n", + "2019-05-29 00:00:00: Portfolio Value - -2572.43\n", + "2019-05-30 00:00:00: Portfolio Value - 19590.67\n", + "2019-05-31 00:00:00: Portfolio Value - 28417.15\n", + "2019-06-03 00:00:00: Portfolio Value - -7282.65\n", + "2019-06-04 00:00:00: Portfolio Value - 50626.69\n", + "2019-06-05 00:00:00: Portfolio Value - 24542.80\n", + "2019-06-06 00:00:00: Portfolio Value - 21263.21\n", + "2019-06-07 00:00:00: Portfolio Value - 12806.23\n", + "2019-06-10 00:00:00: Portfolio Value - -35099.61\n", + "2019-06-11 00:00:00: Portfolio Value - 28112.68\n", + "2019-06-12 00:00:00: Portfolio Value - -3743.71\n", + "2019-06-13 00:00:00: Portfolio Value - 15788.06\n", + "2019-06-14 00:00:00: Portfolio Value - -6558.70\n", + "2019-06-17 00:00:00: Portfolio Value - 42010.82\n", + "2019-06-18 00:00:00: Portfolio Value - 89624.89\n", + "2019-06-19 00:00:00: Portfolio Value - 35692.91\n", + "2019-06-20 00:00:00: Portfolio Value - 40664.26\n", + "2019-06-21 00:00:00: Portfolio Value - -6912.54\n", + "2019-06-24 00:00:00: Portfolio Value - -3808.85\n", + "2019-06-25 00:00:00: Portfolio Value - -15429.78\n", + "2019-06-26 00:00:00: Portfolio Value - 46225.68\n", + "2019-06-27 00:00:00: Portfolio Value - 46518.52\n", + "2019-06-28 00:00:00: Portfolio Value - 30549.33\n", + "2019-07-01 00:00:00: Portfolio Value - 1810.81\n", + "2019-07-02 00:00:00: Portfolio Value - -3.63\n", + "2019-07-03 00:00:00: Portfolio Value - -2176.11\n", + "2019-07-05 00:00:00: Portfolio Value - -23521.12\n", + "2019-07-08 00:00:00: Portfolio Value - 2350.81\n", + "2019-07-09 00:00:00: Portfolio Value - -27203.48\n", + "2019-07-10 00:00:00: Portfolio Value - -112283.86\n", + "2019-07-11 00:00:00: Portfolio Value - -158463.56\n", + "2019-07-12 00:00:00: Portfolio Value - -117147.09\n", + "2019-07-15 00:00:00: Portfolio Value - -142250.69\n", + "2019-07-16 00:00:00: Portfolio Value - -126596.40\n", + "2019-07-17 00:00:00: Portfolio Value - -138180.92\n", + "2019-07-18 00:00:00: Portfolio Value - -272368.81\n", + "2019-07-19 00:00:00: Portfolio Value - -224330.49\n", + "2019-07-22 00:00:00: Portfolio Value - -263302.76\n", + "2019-07-23 00:00:00: Portfolio Value - -239812.81\n", + "2019-07-24 00:00:00: Portfolio Value - -145024.03\n", + "2019-07-25 00:00:00: Portfolio Value - -38744.99\n", + "2019-07-26 00:00:00: Portfolio Value - -109852.76\n", + "2019-07-29 00:00:00: Portfolio Value - -148568.33\n", + "2019-07-30 00:00:00: Portfolio Value - -227863.07\n", + "2019-07-31 00:00:00: Portfolio Value - -293219.55\n", + "2019-08-01 00:00:00: Portfolio Value - -424253.30\n", + "2019-08-02 00:00:00: Portfolio Value - -475644.42\n", + "2019-08-05 00:00:00: Portfolio Value - -433621.67\n", + "2019-08-06 00:00:00: Portfolio Value - -445793.93\n", + "2019-08-07 00:00:00: Portfolio Value - -464881.23\n", + "2019-08-08 00:00:00: Portfolio Value - -467206.04\n", + "2019-08-09 00:00:00: Portfolio Value - -513317.23\n", + "2019-08-12 00:00:00: Portfolio Value - -500203.86\n", + "2019-08-13 00:00:00: Portfolio Value - -522064.66\n", + "2019-08-14 00:00:00: Portfolio Value - -554235.53\n", + "2019-08-15 00:00:00: Portfolio Value - -611510.33\n", + "2019-08-16 00:00:00: Portfolio Value - -619360.30\n", + "2019-08-19 00:00:00: Portfolio Value - -581161.67\n", + "2019-08-20 00:00:00: Portfolio Value - -553902.00\n", + "2019-08-21 00:00:00: Portfolio Value - -563869.64\n", + "2019-08-22 00:00:00: Portfolio Value - -506041.34\n", + "2019-08-23 00:00:00: Portfolio Value - -514632.72\n", + "2019-08-26 00:00:00: Portfolio Value - -501582.79\n", + "2019-08-27 00:00:00: Portfolio Value - -538333.96\n", + "2019-08-28 00:00:00: Portfolio Value - -525992.43\n", + "2019-08-29 00:00:00: Portfolio Value - -502543.77\n", + "2019-08-30 00:00:00: Portfolio Value - -628822.92\n", + "2019-09-03 00:00:00: Portfolio Value - -722644.30\n", + "2019-09-04 00:00:00: Portfolio Value - -678684.72\n", + "2019-09-05 00:00:00: Portfolio Value - -589610.49\n", + "2019-09-06 00:00:00: Portfolio Value - -565716.21\n", + "2019-09-09 00:00:00: Portfolio Value - -483503.25\n", + "2019-09-10 00:00:00: Portfolio Value - -385999.68\n", + "2019-09-11 00:00:00: Portfolio Value - -354555.55\n", + "2019-09-12 00:00:00: Portfolio Value - -382248.88\n", + "2019-09-13 00:00:00: Portfolio Value - -425987.69\n", + "2019-09-16 00:00:00: Portfolio Value - -493618.70\n", + "2019-09-17 00:00:00: Portfolio Value - -487182.22\n", + "2019-09-18 00:00:00: Portfolio Value - -532884.98\n", + "2019-09-19 00:00:00: Portfolio Value - -583021.52\n", + "2019-09-20 00:00:00: Portfolio Value - -638911.61\n", + "2019-09-23 00:00:00: Portfolio Value - -643275.93\n", + "2019-09-24 00:00:00: Portfolio Value - -648791.23\n", + "2019-09-25 00:00:00: Portfolio Value - -628966.55\n", + "2019-09-26 00:00:00: Portfolio Value - -646994.16\n", + "2019-09-27 00:00:00: Portfolio Value - -533993.55\n", + "2019-09-30 00:00:00: Portfolio Value - -515287.96\n", + "2019-10-01 00:00:00: Portfolio Value - -465055.00\n", + "2019-10-02 00:00:00: Portfolio Value - -442291.15\n", + "2019-10-03 00:00:00: Portfolio Value - -472883.76\n", + "2019-10-04 00:00:00: Portfolio Value - -515040.18\n", + "2019-10-07 00:00:00: Portfolio Value - -532012.72\n", + "2019-10-08 00:00:00: Portfolio Value - -498610.62\n", + "2019-10-09 00:00:00: Portfolio Value - -551877.83\n", + "2019-10-10 00:00:00: Portfolio Value - -512355.83\n", + "2019-10-11 00:00:00: Portfolio Value - -446564.25\n", + "2019-10-14 00:00:00: Portfolio Value - -457388.80\n", + "2019-10-15 00:00:00: Portfolio Value - -527867.27\n", + "2019-10-16 00:00:00: Portfolio Value - -507774.31\n", + "2019-10-17 00:00:00: Portfolio Value - -524824.89\n", + "2019-10-18 00:00:00: Portfolio Value - -543927.92\n", + "2019-10-21 00:00:00: Portfolio Value - -578704.03\n", + "2019-10-22 00:00:00: Portfolio Value - -653534.13\n", + "2019-10-23 00:00:00: Portfolio Value - -649970.83\n", + "2019-10-24 00:00:00: Portfolio Value - -664725.93\n", + "2019-10-25 00:00:00: Portfolio Value - -547391.01\n", + "2019-10-28 00:00:00: Portfolio Value - -576648.12\n", + "2019-10-29 00:00:00: Portfolio Value - -655082.74\n", + "2019-10-30 00:00:00: Portfolio Value - -609869.44\n", + "2019-10-31 00:00:00: Portfolio Value - -655426.05\n", + "2019-11-01 00:00:00: Portfolio Value - -683863.04\n", + "2019-11-04 00:00:00: Portfolio Value - -599975.63\n", + "2019-11-05 00:00:00: Portfolio Value - -529998.29\n", + "2019-11-06 00:00:00: Portfolio Value - -572166.83\n", + "2019-11-07 00:00:00: Portfolio Value - -574610.92\n", + "2019-11-08 00:00:00: Portfolio Value - -613034.87\n", + "2019-11-11 00:00:00: Portfolio Value - -578191.04\n", + "2019-11-12 00:00:00: Portfolio Value - -599638.58\n", + "2019-11-13 00:00:00: Portfolio Value - -648592.38\n", + "2019-11-14 00:00:00: Portfolio Value - -635695.67\n", + "2019-11-15 00:00:00: Portfolio Value - -690749.35\n", + "2019-11-18 00:00:00: Portfolio Value - -658295.53\n", + "2019-11-19 00:00:00: Portfolio Value - -718036.03\n", + "2019-11-20 00:00:00: Portfolio Value - -735097.18\n", + "2019-11-21 00:00:00: Portfolio Value - -725144.60\n", + "2019-11-22 00:00:00: Portfolio Value - -697245.83\n", + "2019-11-25 00:00:00: Portfolio Value - -668793.55\n", + "2019-11-26 00:00:00: Portfolio Value - -670639.81\n", + "2019-11-27 00:00:00: Portfolio Value - -650919.42\n", + "2019-11-29 00:00:00: Portfolio Value - -678255.18\n", + "2019-12-02 00:00:00: Portfolio Value - -642306.95\n", + "2019-12-03 00:00:00: Portfolio Value - -702860.24\n", + "2019-12-04 00:00:00: Portfolio Value - -739679.07\n", + "2019-12-05 00:00:00: Portfolio Value - -743296.11\n", + "2019-12-06 00:00:00: Portfolio Value - -695608.81\n", + "2019-12-09 00:00:00: Portfolio Value - -694051.38\n", + "2019-12-10 00:00:00: Portfolio Value - -732455.29\n", + "2019-12-11 00:00:00: Portfolio Value - -685848.34\n", + "2019-12-12 00:00:00: Portfolio Value - -681059.68\n", + "2019-12-13 00:00:00: Portfolio Value - -747442.69\n", + "2019-12-16 00:00:00: Portfolio Value - -843588.73\n", + "2019-12-17 00:00:00: Portfolio Value - -825012.40\n", + "2019-12-18 00:00:00: Portfolio Value - -847547.21\n", + "2019-12-19 00:00:00: Portfolio Value - -843539.72\n", + "2019-12-20 00:00:00: Portfolio Value - -861027.31\n", + "2019-12-23 00:00:00: Portfolio Value - -856825.37\n", + "2019-12-24 00:00:00: Portfolio Value - -869735.83\n", + "2019-12-26 00:00:00: Portfolio Value - -889887.59\n", + "2019-12-27 00:00:00: Portfolio Value - -907276.55\n", + "2019-12-30 00:00:00: Portfolio Value - -889082.16\n", + "2019-12-31 00:00:00: Portfolio Value - -905489.41\n", + "2020-01-02 00:00:00: Portfolio Value - -879833.04\n", + "2020-01-03 00:00:00: Portfolio Value - -925419.83\n", + "2020-01-06 00:00:00: Portfolio Value - -951957.53\n", + "2020-01-07 00:00:00: Portfolio Value - -991705.79\n", + "2020-01-08 00:00:00: Portfolio Value - -1014264.86\n", + "2020-01-09 00:00:00: Portfolio Value - -1048050.30\n", + "2020-01-10 00:00:00: Portfolio Value - -1069599.38\n", + "2020-01-13 00:00:00: Portfolio Value - -1000227.02\n", + "2020-01-14 00:00:00: Portfolio Value - -946776.07\n", + "2020-01-15 00:00:00: Portfolio Value - -1010564.43\n", + "2020-01-16 00:00:00: Portfolio Value - -1028744.98\n", + "2020-01-17 00:00:00: Portfolio Value - -1056458.75\n", + "2020-01-21 00:00:00: Portfolio Value - -1131588.52\n", + "2020-01-22 00:00:00: Portfolio Value - -1210460.72\n", + "2020-01-23 00:00:00: Portfolio Value - -1132282.23\n", + "2020-01-24 00:00:00: Portfolio Value - -1099214.95\n", + "2020-01-27 00:00:00: Portfolio Value - -1125809.50\n", + "2020-01-28 00:00:00: Portfolio Value - -1181444.00\n", + "2020-01-29 00:00:00: Portfolio Value - -1154020.51\n", + "2020-01-30 00:00:00: Portfolio Value - -1163770.27\n", + "2020-01-31 00:00:00: Portfolio Value - -1162460.48\n", + "2020-02-03 00:00:00: Portfolio Value - -1179137.63\n", + "2020-02-04 00:00:00: Portfolio Value - -1190585.39\n", + "2020-02-05 00:00:00: Portfolio Value - -1270124.60\n", + "2020-02-06 00:00:00: Portfolio Value - -1271626.56\n", + "2020-02-07 00:00:00: Portfolio Value - -1309149.15\n", + "2020-02-10 00:00:00: Portfolio Value - -1303213.78\n", + "2020-02-11 00:00:00: Portfolio Value - -1306834.02\n", + "2020-02-12 00:00:00: Portfolio Value - -1284493.55\n", + "2020-02-13 00:00:00: Portfolio Value - -1321966.90\n", + "2020-02-14 00:00:00: Portfolio Value - -1346863.05\n", + "2020-02-18 00:00:00: Portfolio Value - -1305627.23\n", + "2020-02-19 00:00:00: Portfolio Value - -1320645.54\n", + "2020-02-20 00:00:00: Portfolio Value - -1066557.72\n", + "2020-02-21 00:00:00: Portfolio Value - -1059198.89\n", + "2020-02-24 00:00:00: Portfolio Value - -1051831.50\n", + "2020-02-25 00:00:00: Portfolio Value - -1005118.16\n", + "2020-02-26 00:00:00: Portfolio Value - -1032852.30\n", + "2020-02-27 00:00:00: Portfolio Value - -926529.71\n", + "2020-02-28 00:00:00: Portfolio Value - -916248.48\n", + "2020-03-02 00:00:00: Portfolio Value - -1223229.77\n", + "2020-03-03 00:00:00: Portfolio Value - -1235689.06\n", + "2020-03-04 00:00:00: Portfolio Value - -1508801.68\n", + "2020-03-05 00:00:00: Portfolio Value - -1533671.20\n", + "2020-03-06 00:00:00: Portfolio Value - -1446134.04\n", + "2020-03-09 00:00:00: Portfolio Value - -1313898.85\n", + "2020-03-10 00:00:00: Portfolio Value - -1410312.86\n", + "2020-03-11 00:00:00: Portfolio Value - -1399723.88\n", + "2020-03-12 00:00:00: Portfolio Value - -1327558.95\n", + "2020-03-13 00:00:00: Portfolio Value - -1599802.58\n", + "2020-03-16 00:00:00: Portfolio Value - -1406563.58\n", + "2020-03-17 00:00:00: Portfolio Value - -1780928.47\n", + "2020-03-18 00:00:00: Portfolio Value - -1701754.84\n", + "2020-03-19 00:00:00: Portfolio Value - -1524435.51\n", + "2020-03-20 00:00:00: Portfolio Value - -1274478.34\n", + "2020-03-23 00:00:00: Portfolio Value - -843107.34\n", + "2020-03-24 00:00:00: Portfolio Value - -1004578.70\n", + "2020-03-25 00:00:00: Portfolio Value - -1075944.21\n", + "2020-03-26 00:00:00: Portfolio Value - -1420666.07\n", + "2020-03-27 00:00:00: Portfolio Value - -1416856.82\n", + "2020-03-30 00:00:00: Portfolio Value - -1654580.29\n", + "2020-03-31 00:00:00: Portfolio Value - -1613744.64\n", + "2020-04-01 00:00:00: Portfolio Value - -1524008.67\n", + "2020-04-02 00:00:00: Portfolio Value - -1722327.41\n", + "2020-04-03 00:00:00: Portfolio Value - -1697095.56\n", + "2020-04-06 00:00:00: Portfolio Value - -1797826.64\n", + "2020-04-07 00:00:00: Portfolio Value - -1664358.48\n", + "2020-04-08 00:00:00: Portfolio Value - -1793262.72\n", + "2020-04-09 00:00:00: Portfolio Value - -1883467.97\n", + "2020-04-13 00:00:00: Portfolio Value - -1733146.83\n", + "2020-04-14 00:00:00: Portfolio Value - -1840745.10\n", + "2020-04-15 00:00:00: Portfolio Value - -1737834.63\n", + "2020-04-16 00:00:00: Portfolio Value - -1895704.22\n", + "2020-04-17 00:00:00: Portfolio Value - -1892203.25\n", + "2020-04-20 00:00:00: Portfolio Value - -1832513.64\n", + "2020-04-21 00:00:00: Portfolio Value - -1713392.47\n", + "2020-04-22 00:00:00: Portfolio Value - -1809962.25\n", + "2020-04-23 00:00:00: Portfolio Value - -1746434.83\n", + "2020-04-24 00:00:00: Portfolio Value - -1796482.34\n", + "2020-04-27 00:00:00: Portfolio Value - -1849297.97\n", + "2020-04-28 00:00:00: Portfolio Value - -1740437.05\n", + "2020-04-29 00:00:00: Portfolio Value - -1749185.80\n", + "2020-04-30 00:00:00: Portfolio Value - -1714705.79\n", + "2020-05-01 00:00:00: Portfolio Value - -1645153.34\n", + "2020-05-04 00:00:00: Portfolio Value - -1687871.31\n", + "2020-05-05 00:00:00: Portfolio Value - -1816611.91\n", + "2020-05-06 00:00:00: Portfolio Value - -1732443.77\n", + "2020-05-07 00:00:00: Portfolio Value - -1754253.53\n", + "2020-05-08 00:00:00: Portfolio Value - -1670738.41\n", + "2020-05-11 00:00:00: Portfolio Value - -1692604.08\n", + "2020-05-12 00:00:00: Portfolio Value - -1691648.36\n", + "2020-05-13 00:00:00: Portfolio Value - -1775818.45\n", + "2020-05-14 00:00:00: Portfolio Value - -1817342.26\n", + "2020-05-15 00:00:00: Portfolio Value - -1848989.84\n", + "2020-05-18 00:00:00: Portfolio Value - -1770886.69\n", + "2020-05-19 00:00:00: Portfolio Value - -1732509.80\n", + "2020-05-20 00:00:00: Portfolio Value - -1749426.56\n", + "2020-05-21 00:00:00: Portfolio Value - -1655718.06\n", + "2020-05-22 00:00:00: Portfolio Value - -1763177.85\n", + "2020-05-26 00:00:00: Portfolio Value - -1615497.01\n", + "2020-05-27 00:00:00: Portfolio Value - -1622260.18\n", + "2020-05-28 00:00:00: Portfolio Value - -1764851.19\n", + "2020-05-29 00:00:00: Portfolio Value - -1730847.34\n", + "2020-06-01 00:00:00: Portfolio Value - -1669369.09\n", + "2020-06-02 00:00:00: Portfolio Value - -1721419.18\n", + "2020-06-03 00:00:00: Portfolio Value - -1604944.70\n", + "2020-06-04 00:00:00: Portfolio Value - -1517018.47\n", + "2020-06-05 00:00:00: Portfolio Value - -1503111.46\n", + "2020-06-08 00:00:00: Portfolio Value - -1441495.05\n", + "2020-06-09 00:00:00: Portfolio Value - -1412862.60\n", + "2020-06-10 00:00:00: Portfolio Value - -1482866.07\n", + "2020-06-11 00:00:00: Portfolio Value - -1369333.38\n", + "2020-06-12 00:00:00: Portfolio Value - -1400589.73\n", + "2020-06-15 00:00:00: Portfolio Value - -1417331.20\n", + "2020-06-16 00:00:00: Portfolio Value - -1414829.88\n", + "2020-06-17 00:00:00: Portfolio Value - -1431320.57\n", + "2020-06-18 00:00:00: Portfolio Value - -1415057.83\n", + "2020-06-19 00:00:00: Portfolio Value - -1456922.04\n", + "2020-06-22 00:00:00: Portfolio Value - -1362983.57\n", + "2020-06-23 00:00:00: Portfolio Value - -1397207.53\n", + "2020-06-24 00:00:00: Portfolio Value - -1401884.70\n", + "2020-06-25 00:00:00: Portfolio Value - -1445746.20\n", + "2020-06-26 00:00:00: Portfolio Value - -1433741.37\n", + "2020-06-29 00:00:00: Portfolio Value - -1337734.49\n", + "2020-06-30 00:00:00: Portfolio Value - -1401186.06\n", + "2020-07-01 00:00:00: Portfolio Value - -1431335.51\n", + "2020-07-02 00:00:00: Portfolio Value - -1480285.38\n", + "2020-07-06 00:00:00: Portfolio Value - -1406104.80\n", + "2020-07-07 00:00:00: Portfolio Value - -1484847.92\n", + "2020-07-08 00:00:00: Portfolio Value - -1504798.65\n", + "2020-07-09 00:00:00: Portfolio Value - -1497760.31\n", + "2020-07-10 00:00:00: Portfolio Value - -1354125.28\n", + "2020-07-13 00:00:00: Portfolio Value - -1360589.07\n", + "2020-07-14 00:00:00: Portfolio Value - -1489760.35\n", + "2020-07-15 00:00:00: Portfolio Value - -1374690.59\n", + "2020-07-16 00:00:00: Portfolio Value - -1402122.40\n", + "2020-07-17 00:00:00: Portfolio Value - -1665552.93\n", + "2020-07-20 00:00:00: Portfolio Value - -1654799.05\n", + "2020-07-21 00:00:00: Portfolio Value - -1647605.23\n", + "2020-07-22 00:00:00: Portfolio Value - -1649870.63\n", + "2020-07-23 00:00:00: Portfolio Value - -1665829.00\n", + "2020-07-24 00:00:00: Portfolio Value - -1590004.15\n", + "2020-07-27 00:00:00: Portfolio Value - -1603014.53\n", + "2020-07-28 00:00:00: Portfolio Value - -1546199.78\n", + "2020-07-29 00:00:00: Portfolio Value - -1635269.93\n", + "2020-07-30 00:00:00: Portfolio Value - -1622117.87\n", + "2020-07-31 00:00:00: Portfolio Value - -1618577.14\n", + "2020-08-03 00:00:00: Portfolio Value - -1597781.42\n", + "2020-08-04 00:00:00: Portfolio Value - -1526125.59\n", + "2020-08-05 00:00:00: Portfolio Value - -1529450.12\n", + "2020-08-06 00:00:00: Portfolio Value - -1577962.24\n", + "2020-08-07 00:00:00: Portfolio Value - -1708302.25\n", + "2020-08-10 00:00:00: Portfolio Value - -1506690.43\n", + "2020-08-11 00:00:00: Portfolio Value - -1457004.49\n", + "2020-08-12 00:00:00: Portfolio Value - -1519509.30\n", + "2020-08-13 00:00:00: Portfolio Value - -1505467.16\n", + "2020-08-14 00:00:00: Portfolio Value - -1460228.91\n", + "2020-08-17 00:00:00: Portfolio Value - -1458110.79\n", + "2020-08-18 00:00:00: Portfolio Value - -1432936.10\n", + "2020-08-19 00:00:00: Portfolio Value - -1400095.46\n", + "2020-08-20 00:00:00: Portfolio Value - -1338829.06\n", + "2020-08-21 00:00:00: Portfolio Value - -1315617.42\n", + "2020-08-24 00:00:00: Portfolio Value - -1206129.85\n", + "2020-08-25 00:00:00: Portfolio Value - -1232206.98\n", + "2020-08-26 00:00:00: Portfolio Value - -1073024.62\n", + "2020-08-27 00:00:00: Portfolio Value - -1141018.42\n", + "2020-08-28 00:00:00: Portfolio Value - -1103532.20\n", + "2020-08-31 00:00:00: Portfolio Value - -1175513.72\n", + "2020-09-01 00:00:00: Portfolio Value - -1049919.38\n", + "2020-09-02 00:00:00: Portfolio Value - -1216659.96\n", + "2020-09-03 00:00:00: Portfolio Value - -1165879.81\n", + "2020-09-04 00:00:00: Portfolio Value - -1144499.04\n", + "2020-09-08 00:00:00: Portfolio Value - -1078511.77\n", + "2020-09-09 00:00:00: Portfolio Value - -1237571.81\n", + "2020-09-10 00:00:00: Portfolio Value - -1177036.19\n", + "2020-09-11 00:00:00: Portfolio Value - -1187664.44\n", + "2020-09-14 00:00:00: Portfolio Value - -1241132.68\n", + "2020-09-15 00:00:00: Portfolio Value - -1261521.77\n", + "2020-09-16 00:00:00: Portfolio Value - -1307266.41\n", + "2020-09-17 00:00:00: Portfolio Value - -1305435.92\n", + "2020-09-18 00:00:00: Portfolio Value - -1356749.68\n", + "2020-09-21 00:00:00: Portfolio Value - -1364316.71\n", + "2020-09-22 00:00:00: Portfolio Value - -1320656.96\n", + "2020-09-23 00:00:00: Portfolio Value - -1286387.44\n", + "2020-09-24 00:00:00: Portfolio Value - -1297773.98\n", + "2020-09-25 00:00:00: Portfolio Value - -1347739.88\n", + "2020-09-28 00:00:00: Portfolio Value - -1303481.42\n", + "2020-09-29 00:00:00: Portfolio Value - -1300726.58\n", + "2020-09-30 00:00:00: Portfolio Value - -1339324.95\n", + "2020-10-01 00:00:00: Portfolio Value - -1275699.86\n", + "2020-10-02 00:00:00: Portfolio Value - -1247430.34\n", + "2020-10-05 00:00:00: Portfolio Value - -1286650.61\n", + "2020-10-06 00:00:00: Portfolio Value - -1358673.08\n", + "2020-10-07 00:00:00: Portfolio Value - -1355208.90\n", + "2020-10-08 00:00:00: Portfolio Value - -1474781.30\n", + "2020-10-09 00:00:00: Portfolio Value - -1524956.79\n", + "2020-10-12 00:00:00: Portfolio Value - -1587901.04\n", + "2020-10-13 00:00:00: Portfolio Value - -1592558.38\n", + "2020-10-14 00:00:00: Portfolio Value - -1592451.87\n", + "2020-10-15 00:00:00: Portfolio Value - -1514923.69\n", + "2020-10-16 00:00:00: Portfolio Value - -1588024.21\n", + "2020-10-19 00:00:00: Portfolio Value - -1525509.61\n", + "2020-10-20 00:00:00: Portfolio Value - -1563832.46\n", + "2020-10-21 00:00:00: Portfolio Value - -1646769.04\n", + "2020-10-22 00:00:00: Portfolio Value - -1740293.49\n", + "2020-10-23 00:00:00: Portfolio Value - -1736447.99\n", + "2020-10-26 00:00:00: Portfolio Value - -1701763.62\n", + "2020-10-27 00:00:00: Portfolio Value - -1668909.98\n", + "2020-10-28 00:00:00: Portfolio Value - -1613617.15\n", + "2020-10-29 00:00:00: Portfolio Value - -1496174.48\n", + "2020-10-30 00:00:00: Portfolio Value - -1535744.76\n", + "2020-11-02 00:00:00: Portfolio Value - -1591231.82\n", + "2020-11-03 00:00:00: Portfolio Value - -1615936.76\n", + "2020-11-04 00:00:00: Portfolio Value - -1987109.48\n", + "2020-11-05 00:00:00: Portfolio Value - -1887941.80\n", + "2020-11-06 00:00:00: Portfolio Value - -1843622.14\n", + "2020-11-09 00:00:00: Portfolio Value - -1687963.93\n", + "2020-11-10 00:00:00: Portfolio Value - -1559698.22\n", + "2020-11-11 00:00:00: Portfolio Value - -1643444.14\n", + "2020-11-12 00:00:00: Portfolio Value - -1668499.60\n", + "2020-11-13 00:00:00: Portfolio Value - -1653471.81\n", + "2020-11-16 00:00:00: Portfolio Value - -1562317.29\n", + "2020-11-17 00:00:00: Portfolio Value - -1472152.77\n", + "2020-11-18 00:00:00: Portfolio Value - -1420554.30\n", + "2020-11-19 00:00:00: Portfolio Value - -1334493.50\n", + "2020-11-20 00:00:00: Portfolio Value - -1332744.01\n", + "2020-11-23 00:00:00: Portfolio Value - -1353275.30\n", + "2020-11-24 00:00:00: Portfolio Value - -1295314.69\n", + "2020-11-25 00:00:00: Portfolio Value - -1315580.02\n", + "2020-11-27 00:00:00: Portfolio Value - -1363562.57\n", + "2020-11-30 00:00:00: Portfolio Value - -1345798.47\n", + "2020-12-01 00:00:00: Portfolio Value - -1381317.47\n", + "2020-12-02 00:00:00: Portfolio Value - -1400105.06\n", + "2020-12-03 00:00:00: Portfolio Value - -1344876.10\n", + "2020-12-04 00:00:00: Portfolio Value - -1418747.98\n", + "2020-12-07 00:00:00: Portfolio Value - -1397371.26\n", + "2020-12-08 00:00:00: Portfolio Value - -1442813.22\n", + "2020-12-09 00:00:00: Portfolio Value - -1410416.68\n", + "2020-12-10 00:00:00: Portfolio Value - -1377742.65\n", + "2020-12-11 00:00:00: Portfolio Value - -1457702.32\n", + "2020-12-14 00:00:00: Portfolio Value - -1329204.64\n", + "2020-12-15 00:00:00: Portfolio Value - -1374226.12\n", + "2020-12-16 00:00:00: Portfolio Value - -1360648.25\n", + "2020-12-17 00:00:00: Portfolio Value - -1305817.16\n", + "2020-12-18 00:00:00: Portfolio Value - -1304866.16\n", + "2020-12-21 00:00:00: Portfolio Value - -1290279.49\n", + "2020-12-22 00:00:00: Portfolio Value - -1304610.62\n", + "2020-12-23 00:00:00: Portfolio Value - -1333127.40\n", + "2020-12-24 00:00:00: Portfolio Value - -1402972.42\n", + "2020-12-28 00:00:00: Portfolio Value - -1404071.51\n", + "2020-12-29 00:00:00: Portfolio Value - -1416917.71\n", + "2020-12-30 00:00:00: Portfolio Value - -1438339.33\n", + "2020-12-31 00:00:00: Portfolio Value - -1544305.39\n", + "2021-01-04 00:00:00: Portfolio Value - -1616384.97\n", + "2021-01-05 00:00:00: Portfolio Value - -1573838.10\n", + "2021-01-06 00:00:00: Portfolio Value - -1640218.21\n", + "2021-01-07 00:00:00: Portfolio Value - -1680510.22\n", + "2021-01-08 00:00:00: Portfolio Value - -1704288.10\n", + "2021-01-11 00:00:00: Portfolio Value - -1733900.64\n", + "2021-01-12 00:00:00: Portfolio Value - -1707156.66\n", + "2021-01-13 00:00:00: Portfolio Value - -1737938.47\n", + "2021-01-14 00:00:00: Portfolio Value - -1673284.67\n", + "2021-01-15 00:00:00: Portfolio Value - -1774061.21\n", + "2021-01-19 00:00:00: Portfolio Value - -1773279.26\n", + "2021-01-20 00:00:00: Portfolio Value - -1599723.04\n", + "2021-01-21 00:00:00: Portfolio Value - -1533547.32\n", + "2021-01-22 00:00:00: Portfolio Value - -1536103.79\n", + "2021-01-25 00:00:00: Portfolio Value - -1600843.62\n", + "2021-01-26 00:00:00: Portfolio Value - -1602562.63\n", + "2021-01-27 00:00:00: Portfolio Value - -1536930.53\n", + "2021-01-28 00:00:00: Portfolio Value - -1619929.36\n", + "2021-01-29 00:00:00: Portfolio Value - -1681981.69\n", + "2021-02-01 00:00:00: Portfolio Value - -1749414.02\n", + "2021-02-02 00:00:00: Portfolio Value - -1763962.95\n", + "2021-02-03 00:00:00: Portfolio Value - -1740204.44\n", + "2021-02-04 00:00:00: Portfolio Value - -1717939.52\n", + "2021-02-05 00:00:00: Portfolio Value - -1621504.42\n", + "2021-02-08 00:00:00: Portfolio Value - -1565223.24\n", + "2021-02-09 00:00:00: Portfolio Value - -1600325.92\n", + "2021-02-10 00:00:00: Portfolio Value - -1667075.35\n", + "2021-02-11 00:00:00: Portfolio Value - -1705329.36\n", + "2021-02-12 00:00:00: Portfolio Value - -1724977.32\n", + "2021-02-16 00:00:00: Portfolio Value - -1678009.22\n", + "2021-02-17 00:00:00: Portfolio Value - -1703476.90\n", + "2021-02-18 00:00:00: Portfolio Value - -1679887.28\n", + "2021-02-19 00:00:00: Portfolio Value - -1614973.94\n", + "2021-02-22 00:00:00: Portfolio Value - -1498455.28\n", + "2021-02-23 00:00:00: Portfolio Value - -1374587.24\n", + "2021-02-24 00:00:00: Portfolio Value - -1328322.75\n", + "2021-02-25 00:00:00: Portfolio Value - -1411573.21\n", + "2021-02-26 00:00:00: Portfolio Value - -1423546.13\n", + "2021-03-01 00:00:00: Portfolio Value - -1459677.05\n", + "2021-03-02 00:00:00: Portfolio Value - -1398114.70\n", + "2021-03-03 00:00:00: Portfolio Value - -1326480.78\n", + "2021-03-04 00:00:00: Portfolio Value - -1254609.51\n", + "2021-03-05 00:00:00: Portfolio Value - -1391596.27\n", + "2021-03-08 00:00:00: Portfolio Value - -1376003.55\n", + "2021-03-09 00:00:00: Portfolio Value - -1451365.79\n", + "2021-03-10 00:00:00: Portfolio Value - -1404167.90\n", + "2021-03-11 00:00:00: Portfolio Value - -1439353.33\n", + "2021-03-12 00:00:00: Portfolio Value - -1453607.57\n", + "2021-03-15 00:00:00: Portfolio Value - -1469659.99\n", + "2021-03-16 00:00:00: Portfolio Value - -1567328.30\n", + "2021-03-17 00:00:00: Portfolio Value - -1530299.26\n", + "2021-03-18 00:00:00: Portfolio Value - -1503798.63\n", + "2021-03-19 00:00:00: Portfolio Value - -1622707.73\n", + "2021-03-22 00:00:00: Portfolio Value - -1595231.13\n", + "2021-03-23 00:00:00: Portfolio Value - -1547601.61\n", + "2021-03-24 00:00:00: Portfolio Value - -1657165.89\n", + "2021-03-25 00:00:00: Portfolio Value - -1724220.70\n", + "2021-03-26 00:00:00: Portfolio Value - -1872277.75\n", + "2021-03-29 00:00:00: Portfolio Value - -1865111.14\n", + "2021-03-30 00:00:00: Portfolio Value - -1755280.56\n", + "2021-03-31 00:00:00: Portfolio Value - -1845817.58\n", + "2021-04-01 00:00:00: Portfolio Value - -1839701.84\n", + "2021-04-05 00:00:00: Portfolio Value - -1916635.62\n", + "2021-04-06 00:00:00: Portfolio Value - -1826219.35\n", + "2021-04-07 00:00:00: Portfolio Value - -1835531.27\n", + "2021-04-08 00:00:00: Portfolio Value - -1873943.77\n", + "2021-04-09 00:00:00: Portfolio Value - -1903460.63\n", + "2021-04-12 00:00:00: Portfolio Value - -1859869.17\n", + "2021-04-13 00:00:00: Portfolio Value - -1868343.21\n", + "2021-04-14 00:00:00: Portfolio Value - -1942586.14\n", + "2021-04-15 00:00:00: Portfolio Value - -2107249.75\n", + "2021-04-16 00:00:00: Portfolio Value - -2071224.37\n", + "2021-04-19 00:00:00: Portfolio Value - -2074781.27\n", + "2021-04-20 00:00:00: Portfolio Value - -2179921.20\n", + "2021-04-21 00:00:00: Portfolio Value - -2256169.04\n", + "2021-04-22 00:00:00: Portfolio Value - -2142049.48\n", + "2021-04-23 00:00:00: Portfolio Value - -2173177.88\n", + "2021-04-26 00:00:00: Portfolio Value - -2200201.78\n", + "2021-04-27 00:00:00: Portfolio Value - -2182797.47\n", + "2021-04-28 00:00:00: Portfolio Value - -2168995.51\n", + "2021-04-29 00:00:00: Portfolio Value - -2143899.39\n", + "2021-04-30 00:00:00: Portfolio Value - -2139990.63\n", + "2021-05-03 00:00:00: Portfolio Value - -2215196.77\n", + "2021-05-04 00:00:00: Portfolio Value - -2299778.25\n", + "2021-05-05 00:00:00: Portfolio Value - -2288444.82\n", + "2021-05-06 00:00:00: Portfolio Value - -2325052.81\n", + "2021-05-07 00:00:00: Portfolio Value - -2352000.24\n", + "2021-05-10 00:00:00: Portfolio Value - -2300050.14\n", + "2021-05-11 00:00:00: Portfolio Value - -2312217.72\n", + "2021-05-12 00:00:00: Portfolio Value - -2341976.08\n", + "2021-05-13 00:00:00: Portfolio Value - -2346470.24\n", + "2021-05-14 00:00:00: Portfolio Value - -2343995.23\n", + "2021-05-17 00:00:00: Portfolio Value - -2266491.30\n", + "2021-05-18 00:00:00: Portfolio Value - -2266055.26\n", + "2021-05-19 00:00:00: Portfolio Value - -2277962.93\n", + "2021-05-20 00:00:00: Portfolio Value - -2341642.70\n", + "2021-05-21 00:00:00: Portfolio Value - -2382831.28\n", + "2021-05-24 00:00:00: Portfolio Value - -2364121.88\n", + "2021-05-25 00:00:00: Portfolio Value - -2302625.46\n", + "2021-05-26 00:00:00: Portfolio Value - -2221569.44\n", + "2021-05-27 00:00:00: Portfolio Value - -2203084.33\n", + "2021-05-28 00:00:00: Portfolio Value - -2162926.26\n", + "2021-06-01 00:00:00: Portfolio Value - -2140440.81\n", + "2021-06-02 00:00:00: Portfolio Value - -2178641.12\n", + "2021-06-03 00:00:00: Portfolio Value - -2276839.87\n", + "2021-06-04 00:00:00: Portfolio Value - -2315949.26\n", + "2021-06-07 00:00:00: Portfolio Value - -2418111.08\n", + "2021-06-08 00:00:00: Portfolio Value - -2445680.08\n", + "2021-06-09 00:00:00: Portfolio Value - -2545191.64\n", + "2021-06-10 00:00:00: Portfolio Value - -2611857.23\n", + "2021-06-11 00:00:00: Portfolio Value - -2571455.27\n", + "2021-06-14 00:00:00: Portfolio Value - -2578018.09\n", + "2021-06-15 00:00:00: Portfolio Value - -2571692.46\n", + "2021-06-16 00:00:00: Portfolio Value - -2516819.29\n", + "2021-06-17 00:00:00: Portfolio Value - -2571969.83\n", + "2021-06-18 00:00:00: Portfolio Value - -2415614.34\n", + "2021-06-21 00:00:00: Portfolio Value - -2488964.51\n", + "2021-06-22 00:00:00: Portfolio Value - -2424683.93\n", + "2021-06-23 00:00:00: Portfolio Value - -2346582.28\n", + "2021-06-24 00:00:00: Portfolio Value - -2297917.11\n", + "2021-06-25 00:00:00: Portfolio Value - -2300533.28\n", + "2021-06-28 00:00:00: Portfolio Value - -2364092.46\n", + "2021-06-29 00:00:00: Portfolio Value - -2331273.52\n", + "2021-06-30 00:00:00: Portfolio Value - -2327832.48\n", + "2021-07-01 00:00:00: Portfolio Value - -2340667.24\n", + "2021-07-02 00:00:00: Portfolio Value - -2374760.52\n", + "2021-07-06 00:00:00: Portfolio Value - -2384183.51\n", + "2021-07-07 00:00:00: Portfolio Value - -2457825.17\n", + "2021-07-08 00:00:00: Portfolio Value - -2452797.55\n", + "2021-07-09 00:00:00: Portfolio Value - -2437340.12\n", + "2021-07-12 00:00:00: Portfolio Value - -2523051.58\n", + "2021-07-13 00:00:00: Portfolio Value - -2548800.61\n", + "2021-07-14 00:00:00: Portfolio Value - -2442862.91\n", + "2021-07-15 00:00:00: Portfolio Value - -2447938.61\n", + "2021-07-16 00:00:00: Portfolio Value - -2532265.74\n", + "2021-07-19 00:00:00: Portfolio Value - -2474902.33\n", + "2021-07-20 00:00:00: Portfolio Value - -2495505.02\n", + "2021-07-21 00:00:00: Portfolio Value - -2476416.74\n", + "2021-07-22 00:00:00: Portfolio Value - -2331857.14\n", + "2021-07-23 00:00:00: Portfolio Value - -2393641.73\n", + "2021-07-26 00:00:00: Portfolio Value - -2286452.92\n", + "2021-07-27 00:00:00: Portfolio Value - -2280457.51\n", + "2021-07-28 00:00:00: Portfolio Value - -2315962.55\n", + "2021-07-29 00:00:00: Portfolio Value - -2273567.21\n", + "2021-07-30 00:00:00: Portfolio Value - -2361762.64\n", + "2021-08-02 00:00:00: Portfolio Value - -2379819.03\n", + "2021-08-03 00:00:00: Portfolio Value - -2319662.69\n", + "2021-08-04 00:00:00: Portfolio Value - -2350803.88\n", + "2021-08-05 00:00:00: Portfolio Value - -2265269.10\n", + "2021-08-06 00:00:00: Portfolio Value - -2302696.21\n", + "2021-08-09 00:00:00: Portfolio Value - -2302291.92\n", + "2021-08-10 00:00:00: Portfolio Value - -2271835.42\n", + "2021-08-11 00:00:00: Portfolio Value - -2264164.26\n", + "2021-08-12 00:00:00: Portfolio Value - -2305361.88\n", + "2021-08-13 00:00:00: Portfolio Value - -2340145.25\n", + "2021-08-16 00:00:00: Portfolio Value - -2378634.89\n", + "2021-08-17 00:00:00: Portfolio Value - -2431770.40\n", + "2021-08-18 00:00:00: Portfolio Value - -2274479.36\n", + "2021-08-19 00:00:00: Portfolio Value - -2276299.06\n", + "2021-08-20 00:00:00: Portfolio Value - -2311054.52\n", + "2021-08-23 00:00:00: Portfolio Value - -2317046.76\n", + "2021-08-24 00:00:00: Portfolio Value - -2264848.97\n", + "2021-08-25 00:00:00: Portfolio Value - -2209054.19\n", + "2021-08-26 00:00:00: Portfolio Value - -2248884.17\n", + "2021-08-27 00:00:00: Portfolio Value - -2254876.77\n", + "2021-08-30 00:00:00: Portfolio Value - -2236780.58\n", + "2021-08-31 00:00:00: Portfolio Value - -2264025.77\n", + "2021-09-01 00:00:00: Portfolio Value - -2319565.66\n", + "2021-09-02 00:00:00: Portfolio Value - -2385033.74\n", + "2021-09-03 00:00:00: Portfolio Value - -2378340.61\n", + "2021-09-07 00:00:00: Portfolio Value - -2282258.43\n", + "2021-09-08 00:00:00: Portfolio Value - -2358703.00\n", + "2021-09-09 00:00:00: Portfolio Value - -2238955.69\n", + "2021-09-10 00:00:00: Portfolio Value - -2176987.15\n", + "2021-09-13 00:00:00: Portfolio Value - -2192708.32\n", + "2021-09-14 00:00:00: Portfolio Value - -2221482.16\n", + "2021-09-15 00:00:00: Portfolio Value - -2285667.74\n", + "2021-09-16 00:00:00: Portfolio Value - -2195111.33\n", + "2021-09-17 00:00:00: Portfolio Value - -2196824.64\n", + "2021-09-20 00:00:00: Portfolio Value - -2125517.98\n", + "2021-09-21 00:00:00: Portfolio Value - -2134599.84\n", + "2021-09-22 00:00:00: Portfolio Value - -2089388.59\n", + "2021-09-23 00:00:00: Portfolio Value - -2128434.98\n", + "2021-09-24 00:00:00: Portfolio Value - -2120737.17\n", + "2021-09-27 00:00:00: Portfolio Value - -2044346.65\n", + "2021-09-28 00:00:00: Portfolio Value - -1928731.84\n", + "2021-09-29 00:00:00: Portfolio Value - -1831665.95\n", + "2021-09-30 00:00:00: Portfolio Value - -1820938.36\n", + "2021-10-01 00:00:00: Portfolio Value - -1763942.19\n", + "2021-10-04 00:00:00: Portfolio Value - -1679511.67\n", + "2021-10-05 00:00:00: Portfolio Value - -1619231.57\n", + "2021-10-06 00:00:00: Portfolio Value - -1668861.13\n", + "2021-10-07 00:00:00: Portfolio Value - -1767906.00\n", + "2021-10-08 00:00:00: Portfolio Value - -1812033.31\n", + "2021-10-11 00:00:00: Portfolio Value - -1781091.33\n", + "2021-10-12 00:00:00: Portfolio Value - -1750909.51\n", + "2021-10-13 00:00:00: Portfolio Value - -1763413.90\n", + "2021-10-14 00:00:00: Portfolio Value - -1883141.93\n", + "2021-10-15 00:00:00: Portfolio Value - -2030092.57\n", + "2021-10-18 00:00:00: Portfolio Value - -1935764.56\n", + "2021-10-19 00:00:00: Portfolio Value - -2079784.11\n", + "2021-10-20 00:00:00: Portfolio Value - -2234289.29\n", + "2021-10-21 00:00:00: Portfolio Value - -2082542.12\n", + "2021-10-22 00:00:00: Portfolio Value - -2133020.68\n", + "2021-10-25 00:00:00: Portfolio Value - -2164404.34\n", + "2021-10-26 00:00:00: Portfolio Value - -2269114.21\n", + "2021-10-27 00:00:00: Portfolio Value - -2174726.76\n", + "2021-10-28 00:00:00: Portfolio Value - -2216327.15\n", + "2021-10-29 00:00:00: Portfolio Value - -2204301.68\n", + "2021-11-01 00:00:00: Portfolio Value - -2143169.22\n", + "2021-11-02 00:00:00: Portfolio Value - -2147313.03\n", + "2021-11-03 00:00:00: Portfolio Value - -2090941.90\n", + "2021-11-04 00:00:00: Portfolio Value - -2037005.91\n", + "2021-11-05 00:00:00: Portfolio Value - -2012421.70\n", + "2021-11-08 00:00:00: Portfolio Value - -2100040.60\n", + "2021-11-09 00:00:00: Portfolio Value - -2107798.76\n", + "2021-11-10 00:00:00: Portfolio Value - -2045556.87\n", + "2021-11-11 00:00:00: Portfolio Value - -2021772.01\n", + "2021-11-12 00:00:00: Portfolio Value - -1975543.98\n", + "2021-11-15 00:00:00: Portfolio Value - -1850414.00\n", + "2021-11-16 00:00:00: Portfolio Value - -1807503.66\n", + "2021-11-17 00:00:00: Portfolio Value - -1720932.08\n", + "2021-11-18 00:00:00: Portfolio Value - -1712534.81\n", + "2021-11-19 00:00:00: Portfolio Value - -1703243.10\n", + "2021-11-22 00:00:00: Portfolio Value - -1748808.20\n", + "2021-11-23 00:00:00: Portfolio Value - -1806276.91\n", + "2021-11-24 00:00:00: Portfolio Value - -1858983.01\n", + "2021-11-26 00:00:00: Portfolio Value - -1818522.65\n", + "2021-11-29 00:00:00: Portfolio Value - -1964408.40\n", + "2021-11-30 00:00:00: Portfolio Value - -1929363.89\n", + "2021-12-01 00:00:00: Portfolio Value - -2107544.86\n", + "2021-12-02 00:00:00: Portfolio Value - -2038390.65\n", + "2021-12-03 00:00:00: Portfolio Value - -2054210.31\n", + "2021-12-06 00:00:00: Portfolio Value - -2062772.11\n", + "2021-12-07 00:00:00: Portfolio Value - -2156458.03\n", + "2021-12-08 00:00:00: Portfolio Value - -2153855.30\n", + "2021-12-09 00:00:00: Portfolio Value - -2172034.73\n", + "2021-12-10 00:00:00: Portfolio Value - -2268945.00\n", + "2021-12-13 00:00:00: Portfolio Value - -2334969.63\n", + "2021-12-14 00:00:00: Portfolio Value - -2316707.78\n", + "2021-12-15 00:00:00: Portfolio Value - -2404285.60\n", + "2021-12-16 00:00:00: Portfolio Value - -2510913.62\n", + "2021-12-17 00:00:00: Portfolio Value - -2524999.58\n", + "2021-12-20 00:00:00: Portfolio Value - -2488830.70\n", + "2021-12-21 00:00:00: Portfolio Value - -2461159.68\n", + "2021-12-22 00:00:00: Portfolio Value - -2491183.11\n", + "2021-12-23 00:00:00: Portfolio Value - -2452861.90\n", + "2021-12-27 00:00:00: Portfolio Value - -2480244.52\n", + "2021-12-28 00:00:00: Portfolio Value - -2489036.57\n", + "2021-12-29 00:00:00: Portfolio Value - -2483641.29\n", + "2021-12-30 00:00:00: Portfolio Value - -2483388.33\n", + "2021-12-31 00:00:00: Portfolio Value - -2486930.03\n", + "2022-01-03 00:00:00: Portfolio Value - -2452836.09\n", + "2022-01-04 00:00:00: Portfolio Value - -2392152.04\n", + "2022-01-05 00:00:00: Portfolio Value - -2392903.26\n", + "2022-01-06 00:00:00: Portfolio Value - -2228098.96\n", + "2022-01-07 00:00:00: Portfolio Value - -2248085.21\n", + "2022-01-10 00:00:00: Portfolio Value - -2294734.89\n", + "2022-01-11 00:00:00: Portfolio Value - -2440910.01\n", + "2022-01-12 00:00:00: Portfolio Value - -2372830.56\n", + "2022-01-13 00:00:00: Portfolio Value - -2208404.86\n", + "2022-01-14 00:00:00: Portfolio Value - -2218472.98\n", + "2022-01-18 00:00:00: Portfolio Value - -2075393.41\n", + "2022-01-19 00:00:00: Portfolio Value - -2059381.83\n", + "2022-01-20 00:00:00: Portfolio Value - -2159253.19\n", + "2022-01-21 00:00:00: Portfolio Value - -2370251.98\n", + "2022-01-24 00:00:00: Portfolio Value - -2335170.16\n", + "2022-01-25 00:00:00: Portfolio Value - -2357821.90\n", + "2022-01-26 00:00:00: Portfolio Value - -2424115.56\n", + "2022-01-27 00:00:00: Portfolio Value - -2394202.50\n", + "2022-01-28 00:00:00: Portfolio Value - -2581158.13\n", + "2022-01-31 00:00:00: Portfolio Value - -2533896.71\n", + "2022-02-01 00:00:00: Portfolio Value - -2417480.39\n", + "2022-02-02 00:00:00: Portfolio Value - -2585426.90\n", + "2022-02-03 00:00:00: Portfolio Value - -2657181.25\n", + "2022-02-04 00:00:00: Portfolio Value - -2670778.45\n", + "2022-02-07 00:00:00: Portfolio Value - -2626288.16\n", + "2022-02-08 00:00:00: Portfolio Value - -2607386.74\n", + "2022-02-09 00:00:00: Portfolio Value - -2627322.18\n", + "2022-02-10 00:00:00: Portfolio Value - -2487968.44\n", + "2022-02-11 00:00:00: Portfolio Value - -2504546.68\n", + "2022-02-14 00:00:00: Portfolio Value - -2411077.05\n", + "2022-02-15 00:00:00: Portfolio Value - -2370537.80\n", + "2022-02-16 00:00:00: Portfolio Value - -2374028.45\n", + "2022-02-17 00:00:00: Portfolio Value - -2297270.13\n", + "2022-02-18 00:00:00: Portfolio Value - -2183072.44\n", + "2022-02-22 00:00:00: Portfolio Value - -2267917.73\n", + "2022-02-23 00:00:00: Portfolio Value - -2344863.74\n", + "2022-02-24 00:00:00: Portfolio Value - -2365681.12\n", + "2022-02-25 00:00:00: Portfolio Value - -2380908.92\n", + "2022-02-28 00:00:00: Portfolio Value - -2403777.01\n", + "2022-03-01 00:00:00: Portfolio Value - -2455154.72\n", + "2022-03-02 00:00:00: Portfolio Value - -2467634.67\n", + "2022-03-03 00:00:00: Portfolio Value - -2610296.92\n", + "2022-03-04 00:00:00: Portfolio Value - -2697089.38\n", + "2022-03-07 00:00:00: Portfolio Value - -2809058.80\n", + "2022-03-08 00:00:00: Portfolio Value - -2669960.98\n", + "2022-03-09 00:00:00: Portfolio Value - -2719107.45\n", + "2022-03-10 00:00:00: Portfolio Value - -2724678.49\n", + "2022-03-11 00:00:00: Portfolio Value - -2744703.63\n", + "2022-03-14 00:00:00: Portfolio Value - -2758303.73\n", + "2022-03-15 00:00:00: Portfolio Value - -2799916.72\n", + "2022-03-16 00:00:00: Portfolio Value - -2668175.78\n", + "2022-03-17 00:00:00: Portfolio Value - -2767793.01\n", + "2022-03-18 00:00:00: Portfolio Value - -2768693.91\n", + "2022-03-21 00:00:00: Portfolio Value - -2901755.39\n", + "2022-03-22 00:00:00: Portfolio Value - -2920811.13\n", + "2022-03-23 00:00:00: Portfolio Value - -2930042.72\n", + "2022-03-24 00:00:00: Portfolio Value - -2985942.50\n", + "2022-03-25 00:00:00: Portfolio Value - -3057464.82\n", + "2022-03-28 00:00:00: Portfolio Value - -3066896.82\n", + "2022-03-29 00:00:00: Portfolio Value - -2989637.70\n", + "2022-03-30 00:00:00: Portfolio Value - -3021636.38\n", + "2022-03-31 00:00:00: Portfolio Value - -3043308.38\n", + "2022-04-01 00:00:00: Portfolio Value - -3183080.27\n", + "2022-04-04 00:00:00: Portfolio Value - -3106067.77\n", + "2022-04-05 00:00:00: Portfolio Value - -3164078.51\n", + "2022-04-06 00:00:00: Portfolio Value - -3290620.04\n", + "2022-04-07 00:00:00: Portfolio Value - -3413917.19\n", + "2022-04-08 00:00:00: Portfolio Value - -3456289.19\n", + "2022-04-11 00:00:00: Portfolio Value - -3319297.12\n", + "2022-04-12 00:00:00: Portfolio Value - -3218866.85\n", + "2022-04-13 00:00:00: Portfolio Value - -3187312.60\n", + "2022-04-14 00:00:00: Portfolio Value - -3098459.77\n", + "2022-04-18 00:00:00: Portfolio Value - -3107100.09\n", + "2022-04-19 00:00:00: Portfolio Value - -3009038.52\n", + "2022-04-20 00:00:00: Portfolio Value - -3382870.64\n", + "2022-04-21 00:00:00: Portfolio Value - -3208879.86\n", + "2022-04-22 00:00:00: Portfolio Value - -3059653.00\n", + "2022-04-25 00:00:00: Portfolio Value - -3067920.90\n", + "2022-04-26 00:00:00: Portfolio Value - -3030372.14\n", + "2022-04-27 00:00:00: Portfolio Value - -3099758.43\n", + "2022-04-28 00:00:00: Portfolio Value - -3223506.12\n", + "2022-04-29 00:00:00: Portfolio Value - -3105059.32\n", + "2022-05-02 00:00:00: Portfolio Value - -2958669.44\n", + "2022-05-03 00:00:00: Portfolio Value - -3146680.90\n", + "2022-05-04 00:00:00: Portfolio Value - -3255607.91\n", + "2022-05-05 00:00:00: Portfolio Value - -3185723.98\n", + "2022-05-06 00:00:00: Portfolio Value - -3267590.30\n", + "2022-05-09 00:00:00: Portfolio Value - -3094734.85\n", + "2022-05-10 00:00:00: Portfolio Value - -3100411.07\n", + "2022-05-11 00:00:00: Portfolio Value - -3152894.93\n", + "2022-05-12 00:00:00: Portfolio Value - -3111670.37\n", + "2022-05-13 00:00:00: Portfolio Value - -3177932.82\n", + "2022-05-16 00:00:00: Portfolio Value - -3188983.92\n", + "2022-05-17 00:00:00: Portfolio Value - -3278803.73\n", + "2022-05-18 00:00:00: Portfolio Value - -3254731.76\n", + "2022-05-19 00:00:00: Portfolio Value - -3263013.70\n", + "2022-05-20 00:00:00: Portfolio Value - -3397753.42\n", + "2022-05-23 00:00:00: Portfolio Value - -3542271.60\n", + "2022-05-24 00:00:00: Portfolio Value - -3734383.78\n", + "2022-05-25 00:00:00: Portfolio Value - -3696210.48\n", + "2022-05-26 00:00:00: Portfolio Value - -3620064.18\n", + "2022-05-27 00:00:00: Portfolio Value - -3646165.30\n", + "2022-05-31 00:00:00: Portfolio Value - -3580866.28\n", + "2022-06-01 00:00:00: Portfolio Value - -3463151.80\n", + "2022-06-02 00:00:00: Portfolio Value - -3533791.30\n", + "2022-06-03 00:00:00: Portfolio Value - -3518299.74\n", + "2022-06-06 00:00:00: Portfolio Value - -3508005.42\n", + "2022-06-07 00:00:00: Portfolio Value - -3530335.30\n", + "2022-06-08 00:00:00: Portfolio Value - -3395362.32\n", + "2022-06-09 00:00:00: Portfolio Value - -3357223.72\n", + "2022-06-10 00:00:00: Portfolio Value - -3331474.64\n", + "2022-06-13 00:00:00: Portfolio Value - -3244321.08\n", + "2022-06-14 00:00:00: Portfolio Value - -3219524.42\n", + "2022-06-15 00:00:00: Portfolio Value - -3215772.43\n", + "2022-06-16 00:00:00: Portfolio Value - -3204490.33\n", + "2022-06-17 00:00:00: Portfolio Value - -3120700.20\n", + "2022-06-21 00:00:00: Portfolio Value - -3399113.37\n", + "2022-06-22 00:00:00: Portfolio Value - -3382891.94\n", + "2022-06-23 00:00:00: Portfolio Value - -3479576.24\n", + "2022-06-24 00:00:00: Portfolio Value - -3550964.94\n", + "2022-06-27 00:00:00: Portfolio Value - -3592621.48\n", + "2022-06-28 00:00:00: Portfolio Value - -3570122.52\n", + "2022-06-29 00:00:00: Portfolio Value - -3534922.10\n", + "2022-06-30 00:00:00: Portfolio Value - -3572366.75\n", + "2022-07-01 00:00:00: Portfolio Value - -3597724.49\n", + "2022-07-05 00:00:00: Portfolio Value - -3453669.55\n", + "2022-07-06 00:00:00: Portfolio Value - -3523128.93\n", + "2022-07-07 00:00:00: Portfolio Value - -3546393.52\n", + "2022-07-08 00:00:00: Portfolio Value - -3629260.99\n", + "2022-07-11 00:00:00: Portfolio Value - -3665613.89\n", + "2022-07-12 00:00:00: Portfolio Value - -3520940.19\n", + "2022-07-13 00:00:00: Portfolio Value - -3446275.23\n", + "2022-07-14 00:00:00: Portfolio Value - -3460179.69\n", + "2022-07-15 00:00:00: Portfolio Value - -3524931.42\n", + "2022-07-18 00:00:00: Portfolio Value - -3419030.41\n", + "2022-07-19 00:00:00: Portfolio Value - -3536606.70\n", + "2022-07-20 00:00:00: Portfolio Value - -3396967.90\n", + "2022-07-21 00:00:00: Portfolio Value - -3458589.63\n", + "2022-07-22 00:00:00: Portfolio Value - -3423766.78\n", + "2022-07-25 00:00:00: Portfolio Value - -3529577.69\n", + "2022-07-26 00:00:00: Portfolio Value - -3615261.63\n", + "2022-07-27 00:00:00: Portfolio Value - -3586466.78\n", + "2022-07-28 00:00:00: Portfolio Value - -3741892.09\n", + "2022-07-29 00:00:00: Portfolio Value - -3760264.45\n", + "2022-08-01 00:00:00: Portfolio Value - -3742684.19\n", + "2022-08-02 00:00:00: Portfolio Value - -3763322.84\n", + "2022-08-03 00:00:00: Portfolio Value - -3834967.93\n", + "2022-08-04 00:00:00: Portfolio Value - -3818046.08\n", + "2022-08-05 00:00:00: Portfolio Value - -3852155.21\n", + "2022-08-08 00:00:00: Portfolio Value - -3818056.55\n", + "2022-08-09 00:00:00: Portfolio Value - -3870927.00\n", + "2022-08-10 00:00:00: Portfolio Value - -3880495.99\n", + "2022-08-11 00:00:00: Portfolio Value - -3806015.52\n", + "2022-08-12 00:00:00: Portfolio Value - -3873508.00\n", + "2022-08-15 00:00:00: Portfolio Value - -3915194.92\n", + "2022-08-16 00:00:00: Portfolio Value - -3855238.72\n", + "2022-08-17 00:00:00: Portfolio Value - -3860621.24\n", + "2022-08-18 00:00:00: Portfolio Value - -3893303.89\n", + "2022-08-19 00:00:00: Portfolio Value - -3895972.45\n", + "2022-08-22 00:00:00: Portfolio Value - -3911071.67\n", + "2022-08-23 00:00:00: Portfolio Value - -3890484.62\n", + "2022-08-24 00:00:00: Portfolio Value - -3883448.45\n", + "2022-08-25 00:00:00: Portfolio Value - -3914168.64\n", + "2022-08-26 00:00:00: Portfolio Value - -3851612.58\n", + "2022-08-29 00:00:00: Portfolio Value - -3894878.41\n", + "2022-08-30 00:00:00: Portfolio Value - -3794284.51\n", + "2022-08-31 00:00:00: Portfolio Value - -3862831.29\n", + "2022-09-01 00:00:00: Portfolio Value - -3881476.11\n", + "2022-09-02 00:00:00: Portfolio Value - -3792318.29\n", + "2022-09-06 00:00:00: Portfolio Value - -3746073.79\n", + "2022-09-07 00:00:00: Portfolio Value - -3779122.91\n", + "2022-09-08 00:00:00: Portfolio Value - -3862096.16\n", + "2022-09-09 00:00:00: Portfolio Value - -3834815.44\n", + "2022-09-12 00:00:00: Portfolio Value - -3814019.47\n", + "2022-09-13 00:00:00: Portfolio Value - -3605701.38\n", + "2022-09-14 00:00:00: Portfolio Value - -3624794.44\n", + "2022-09-15 00:00:00: Portfolio Value - -3571157.12\n", + "2022-09-16 00:00:00: Portfolio Value - -3641646.34\n", + "2022-09-19 00:00:00: Portfolio Value - -3639496.22\n", + "2022-09-20 00:00:00: Portfolio Value - -3570922.47\n", + "2022-09-21 00:00:00: Portfolio Value - -3544008.17\n", + "2022-09-22 00:00:00: Portfolio Value - -3597618.06\n", + "2022-09-23 00:00:00: Portfolio Value - -3464128.76\n", + "2022-09-26 00:00:00: Portfolio Value - -3387638.20\n", + "2022-09-27 00:00:00: Portfolio Value - -3362238.60\n", + "2022-09-28 00:00:00: Portfolio Value - -3425659.57\n", + "2022-09-29 00:00:00: Portfolio Value - -3425966.14\n", + "2022-09-30 00:00:00: Portfolio Value - -3446720.30\n", + "2022-10-03 00:00:00: Portfolio Value - -3559643.04\n", + "2022-10-04 00:00:00: Portfolio Value - -3655007.88\n", + "2022-10-05 00:00:00: Portfolio Value - -3612133.32\n", + "2022-10-06 00:00:00: Portfolio Value - -3517209.43\n", + "2022-10-07 00:00:00: Portfolio Value - -3466325.40\n", + "2022-10-10 00:00:00: Portfolio Value - -3430666.70\n", + "2022-10-11 00:00:00: Portfolio Value - -3401795.53\n", + "2022-10-12 00:00:00: Portfolio Value - -3304974.63\n", + "2022-10-13 00:00:00: Portfolio Value - -3375255.76\n", + "2022-10-14 00:00:00: Portfolio Value - -3222975.10\n", + "2022-10-17 00:00:00: Portfolio Value - -3289576.94\n", + "2022-10-18 00:00:00: Portfolio Value - -3363934.65\n", + "2022-10-19 00:00:00: Portfolio Value - -3353316.48\n", + "2022-10-20 00:00:00: Portfolio Value - -3364493.21\n", + "2022-10-21 00:00:00: Portfolio Value - -3440336.60\n", + "2022-10-24 00:00:00: Portfolio Value - -3600514.60\n", + "2022-10-25 00:00:00: Portfolio Value - -3586470.25\n", + "2022-10-26 00:00:00: Portfolio Value - -3679707.53\n", + "2022-10-27 00:00:00: Portfolio Value - -3661716.09\n", + "2022-10-28 00:00:00: Portfolio Value - -3864695.78\n", + "2022-10-31 00:00:00: Portfolio Value - -3783552.37\n", + "2022-11-01 00:00:00: Portfolio Value - -3719043.87\n", + "2022-11-02 00:00:00: Portfolio Value - -3774109.24\n", + "2022-11-03 00:00:00: Portfolio Value - -3843144.81\n", + "2022-11-04 00:00:00: Portfolio Value - -3980936.02\n", + "2022-11-07 00:00:00: Portfolio Value - -4187677.88\n", + "2022-11-08 00:00:00: Portfolio Value - -4260553.35\n", + "2022-11-09 00:00:00: Portfolio Value - -4182891.26\n", + "2022-11-10 00:00:00: Portfolio Value - -4319240.41\n", + "2022-11-11 00:00:00: Portfolio Value - -4129261.72\n", + "2022-11-14 00:00:00: Portfolio Value - -4048078.93\n", + "2022-11-15 00:00:00: Portfolio Value - -4053548.93\n", + "2022-11-16 00:00:00: Portfolio Value - -4062695.00\n", + "2022-11-17 00:00:00: Portfolio Value - -4080865.94\n", + "2022-11-18 00:00:00: Portfolio Value - -4170962.07\n", + "2022-11-21 00:00:00: Portfolio Value - -4116320.96\n", + "2022-11-22 00:00:00: Portfolio Value - -4248902.46\n", + "2022-11-23 00:00:00: Portfolio Value - -4251540.46\n", + "2022-11-25 00:00:00: Portfolio Value - -4318699.05\n", + "2022-11-28 00:00:00: Portfolio Value - -4203833.60\n", + "2022-11-29 00:00:00: Portfolio Value - -4165888.65\n", + "2022-11-30 00:00:00: Portfolio Value - -4225517.16\n", + "2022-12-01 00:00:00: Portfolio Value - -4143613.46\n", + "2022-12-02 00:00:00: Portfolio Value - -4058902.88\n", + "2022-12-05 00:00:00: Portfolio Value - -4024237.04\n", + "2022-12-06 00:00:00: Portfolio Value - -4066864.24\n", + "2022-12-07 00:00:00: Portfolio Value - -4017119.89\n", + "2022-12-08 00:00:00: Portfolio Value - -3964446.58\n", + "2022-12-09 00:00:00: Portfolio Value - -4029069.98\n", + "2022-12-12 00:00:00: Portfolio Value - -4072695.57\n", + "2022-12-13 00:00:00: Portfolio Value - -4184366.13\n", + "2022-12-14 00:00:00: Portfolio Value - -4140887.85\n", + "2022-12-15 00:00:00: Portfolio Value - -4167826.14\n", + "2022-12-16 00:00:00: Portfolio Value - -4106209.79\n", + "2022-12-19 00:00:00: Portfolio Value - -4109383.10\n", + "2022-12-20 00:00:00: Portfolio Value - -4134268.85\n", + "2022-12-21 00:00:00: Portfolio Value - -4209867.38\n", + "2022-12-22 00:00:00: Portfolio Value - -4083891.75\n", + "2022-12-23 00:00:00: Portfolio Value - -4133649.44\n", + "2022-12-27 00:00:00: Portfolio Value - -4073754.62\n", + "2022-12-28 00:00:00: Portfolio Value - -4050076.66\n", + "2022-12-29 00:00:00: Portfolio Value - -4054503.93\n", + "2022-12-30 00:00:00: Portfolio Value - -3986120.46\n", + "2023-01-03 00:00:00: Portfolio Value - -3807832.44\n", + "2023-01-04 00:00:00: Portfolio Value - -3683956.65\n", + "2023-01-05 00:00:00: Portfolio Value - -3485044.31\n", + "2023-01-06 00:00:00: Portfolio Value - -3651113.32\n", + "2023-01-09 00:00:00: Portfolio Value - -3775844.97\n", + "2023-01-10 00:00:00: Portfolio Value - -3744766.55\n", + "2023-01-11 00:00:00: Portfolio Value - -3739911.02\n", + "2023-01-12 00:00:00: Portfolio Value - -3743224.29\n", + "2023-01-13 00:00:00: Portfolio Value - -3732883.17\n", + "2023-01-17 00:00:00: Portfolio Value - -3680557.44\n", + "2023-01-18 00:00:00: Portfolio Value - -3584646.09\n", + "2023-01-19 00:00:00: Portfolio Value - -3626330.49\n", + "2023-01-20 00:00:00: Portfolio Value - -3603831.02\n", + "2023-01-23 00:00:00: Portfolio Value - -3551043.95\n", + "2023-01-24 00:00:00: Portfolio Value - -3525306.91\n", + "2023-01-25 00:00:00: Portfolio Value - -3508103.44\n", + "2023-01-26 00:00:00: Portfolio Value - -3534153.98\n", + "2023-01-27 00:00:00: Portfolio Value - -3425043.82\n", + "2023-01-30 00:00:00: Portfolio Value - -3398270.31\n", + "2023-01-31 00:00:00: Portfolio Value - -3478416.50\n", + "2023-02-01 00:00:00: Portfolio Value - -3410779.12\n", + "2023-02-02 00:00:00: Portfolio Value - -3329320.87\n", + "2023-02-03 00:00:00: Portfolio Value - -3192000.85\n", + "2023-02-06 00:00:00: Portfolio Value - -3202564.97\n", + "2023-02-07 00:00:00: Portfolio Value - -3242860.95\n", + "2023-02-08 00:00:00: Portfolio Value - -3142619.34\n", + "2023-02-09 00:00:00: Portfolio Value - -3102099.89\n", + "2023-02-10 00:00:00: Portfolio Value - -3334707.53\n", + "2023-02-13 00:00:00: Portfolio Value - -3297753.73\n", + "2023-02-14 00:00:00: Portfolio Value - -3244400.34\n", + "2023-02-15 00:00:00: Portfolio Value - -3231648.50\n", + "2023-02-16 00:00:00: Portfolio Value - -3176924.11\n", + "2023-02-17 00:00:00: Portfolio Value - -3218704.72\n", + "2023-02-21 00:00:00: Portfolio Value - -3165610.17\n", + "2023-02-22 00:00:00: Portfolio Value - -3087334.03\n", + "2023-02-23 00:00:00: Portfolio Value - -3251251.63\n", + "2023-02-24 00:00:00: Portfolio Value - -3294957.11\n", + "2023-02-27 00:00:00: Portfolio Value - -3233291.99\n", + "2023-02-28 00:00:00: Portfolio Value - -3160613.97\n", + "2023-03-01 00:00:00: Portfolio Value - -3142191.87\n", + "2023-03-02 00:00:00: Portfolio Value - -3139184.56\n", + "2023-03-03 00:00:00: Portfolio Value - -3171036.85\n", + "2023-03-06 00:00:00: Portfolio Value - -3192910.07\n", + "2023-03-07 00:00:00: Portfolio Value - -3110730.87\n", + "2023-03-08 00:00:00: Portfolio Value - -3122207.13\n", + "2023-03-09 00:00:00: Portfolio Value - -3091837.57\n", + "2023-03-10 00:00:00: Portfolio Value - -3042747.08\n", + "2023-03-13 00:00:00: Portfolio Value - -3136840.73\n", + "2023-03-14 00:00:00: Portfolio Value - -3255425.80\n", + "2023-03-15 00:00:00: Portfolio Value - -3265952.17\n", + "2023-03-16 00:00:00: Portfolio Value - -3393435.04\n", + "2023-03-17 00:00:00: Portfolio Value - -3396904.85\n", + "2023-03-20 00:00:00: Portfolio Value - -3414129.39\n", + "2023-03-21 00:00:00: Portfolio Value - -3429881.14\n", + "2023-03-22 00:00:00: Portfolio Value - -3364645.55\n", + "2023-03-23 00:00:00: Portfolio Value - -3293327.80\n", + "2023-03-24 00:00:00: Portfolio Value - -3388127.48\n", + "2023-03-27 00:00:00: Portfolio Value - -3355296.64\n", + "2023-03-28 00:00:00: Portfolio Value - -3272610.07\n", + "2023-03-29 00:00:00: Portfolio Value - -3216004.47\n", + "2023-03-30 00:00:00: Portfolio Value - -3232778.90\n", + "2023-03-31 00:00:00: Portfolio Value - -3254333.83\n", + "2023-04-03 00:00:00: Portfolio Value - -3334302.37\n", + "2023-04-04 00:00:00: Portfolio Value - -3389676.62\n", + "2023-04-05 00:00:00: Portfolio Value - -3533303.49\n", + "2023-04-06 00:00:00: Portfolio Value - -3540776.43\n", + "2023-04-10 00:00:00: Portfolio Value - -3543961.96\n", + "2023-04-11 00:00:00: Portfolio Value - -3597083.77\n", + "2023-04-12 00:00:00: Portfolio Value - -3601280.13\n", + "2023-04-13 00:00:00: Portfolio Value - -3616604.78\n", + "2023-04-14 00:00:00: Portfolio Value - -3623531.16\n", + "2023-04-17 00:00:00: Portfolio Value - -3609983.30\n", + "2023-04-18 00:00:00: Portfolio Value - -3571561.32\n", + "2023-04-19 00:00:00: Portfolio Value - -3554221.37\n", + "2023-04-20 00:00:00: Portfolio Value - -3550954.46\n", + "2023-04-21 00:00:00: Portfolio Value - -3478174.70\n", + "2023-04-24 00:00:00: Portfolio Value - -3461816.90\n", + "2023-04-25 00:00:00: Portfolio Value - -3417006.93\n", + "2023-04-26 00:00:00: Portfolio Value - -3308480.38\n", + "2023-04-27 00:00:00: Portfolio Value - -3456890.55\n", + "2023-04-28 00:00:00: Portfolio Value - -3373541.37\n", + "2023-05-01 00:00:00: Portfolio Value - -3380996.07\n", + "2023-05-02 00:00:00: Portfolio Value - -3306172.26\n", + "2023-05-03 00:00:00: Portfolio Value - -3322947.94\n", + "2023-05-04 00:00:00: Portfolio Value - -3399647.28\n", + "2023-05-05 00:00:00: Portfolio Value - -3445635.38\n", + "2023-05-08 00:00:00: Portfolio Value - -3439374.47\n", + "2023-05-09 00:00:00: Portfolio Value - -3389271.77\n", + "2023-05-10 00:00:00: Portfolio Value - -3531720.62\n", + "2023-05-11 00:00:00: Portfolio Value - -3487195.82\n", + "2023-05-12 00:00:00: Portfolio Value - -3594012.58\n", + "2023-05-15 00:00:00: Portfolio Value - -3568001.80\n", + "2023-05-16 00:00:00: Portfolio Value - -3521257.12\n", + "2023-05-17 00:00:00: Portfolio Value - -3511276.73\n", + "2023-05-18 00:00:00: Portfolio Value - -3388476.77\n", + "2023-05-19 00:00:00: Portfolio Value - -3459610.11\n", + "2023-05-22 00:00:00: Portfolio Value - -3536214.48\n", + "2023-05-23 00:00:00: Portfolio Value - -3483750.79\n", + "2023-05-24 00:00:00: Portfolio Value - -3426492.11\n", + "2023-05-25 00:00:00: Portfolio Value - -3502076.71\n", + "2023-05-26 00:00:00: Portfolio Value - -3595170.17\n", + "2023-05-30 00:00:00: Portfolio Value - -3629998.66\n", + "2023-05-31 00:00:00: Portfolio Value - -3685965.38\n", + "2023-06-01 00:00:00: Portfolio Value - -3765387.46\n", + "2023-06-02 00:00:00: Portfolio Value - -3604394.45\n", + "2023-06-05 00:00:00: Portfolio Value - -3666007.35\n", + "2023-06-06 00:00:00: Portfolio Value - -3570364.12\n", + "2023-06-07 00:00:00: Portfolio Value - -3501978.44\n", + "2023-06-08 00:00:00: Portfolio Value - -3565926.31\n", + "2023-06-09 00:00:00: Portfolio Value - -3520472.84\n", + "2023-06-12 00:00:00: Portfolio Value - -3462597.20\n", + "2023-06-13 00:00:00: Portfolio Value - -3376400.26\n", + "2023-06-14 00:00:00: Portfolio Value - -3222506.26\n", + "2023-06-15 00:00:00: Portfolio Value - -3232996.66\n", + "2023-06-16 00:00:00: Portfolio Value - -3203098.59\n", + "2023-06-20 00:00:00: Portfolio Value - -3168572.96\n", + "2023-06-21 00:00:00: Portfolio Value - -3176320.32\n", + "2023-06-22 00:00:00: Portfolio Value - -3271125.48\n", + "2023-06-23 00:00:00: Portfolio Value - -3231620.57\n", + "2023-06-26 00:00:00: Portfolio Value - -3165540.69\n", + "2023-06-27 00:00:00: Portfolio Value - -3125136.40\n", + "2023-06-28 00:00:00: Portfolio Value - -3085679.62\n", + "2023-06-29 00:00:00: Portfolio Value - -3119715.15\n", + "2023-06-30 00:00:00: Portfolio Value - -3107889.40\n", + "2023-07-03 00:00:00: Portfolio Value - -3082724.40\n", + "2023-07-05 00:00:00: Portfolio Value - -3087373.86\n", + "2023-07-06 00:00:00: Portfolio Value - -3044891.53\n", + "2023-07-07 00:00:00: Portfolio Value - -2942493.55\n", + "2023-07-10 00:00:00: Portfolio Value - -2884540.90\n", + "2023-07-11 00:00:00: Portfolio Value - -2872849.71\n", + "2023-07-12 00:00:00: Portfolio Value - -2809999.60\n", + "2023-07-13 00:00:00: Portfolio Value - -2968118.49\n", + "2023-07-14 00:00:00: Portfolio Value - -3060271.42\n", + "2023-07-17 00:00:00: Portfolio Value - -3100888.27\n", + "2023-07-18 00:00:00: Portfolio Value - -3036605.05\n", + "2023-07-19 00:00:00: Portfolio Value - -3050346.80\n", + "2023-07-20 00:00:00: Portfolio Value - -3210443.20\n", + "2023-07-21 00:00:00: Portfolio Value - -3335545.04\n", + "2023-07-24 00:00:00: Portfolio Value - -3404181.12\n", + "2023-07-25 00:00:00: Portfolio Value - -3404587.77\n", + "2023-07-26 00:00:00: Portfolio Value - -3382430.77\n", + "2023-07-27 00:00:00: Portfolio Value - -3333193.57\n", + "2023-07-28 00:00:00: Portfolio Value - -3397119.37\n", + "2023-07-31 00:00:00: Portfolio Value - -3343434.47\n", + "2023-08-01 00:00:00: Portfolio Value - -3328075.45\n", + "2023-08-02 00:00:00: Portfolio Value - -3348252.37\n", + "2023-08-03 00:00:00: Portfolio Value - -3280784.51\n", + "2023-08-04 00:00:00: Portfolio Value - -3454373.69\n", + "2023-08-07 00:00:00: Portfolio Value - -3423164.83\n", + "2023-08-08 00:00:00: Portfolio Value - -3376397.98\n", + "2023-08-09 00:00:00: Portfolio Value - -3445787.53\n", + "2023-08-10 00:00:00: Portfolio Value - -3479564.54\n", + "2023-08-11 00:00:00: Portfolio Value - -3559422.28\n", + "2023-08-14 00:00:00: Portfolio Value - -3574088.82\n", + "2023-08-15 00:00:00: Portfolio Value - -3481291.95\n", + "2023-08-16 00:00:00: Portfolio Value - -3500553.92\n", + "2023-08-17 00:00:00: Portfolio Value - -3555460.91\n", + "2023-08-18 00:00:00: Portfolio Value - -3522420.83\n", + "2023-08-21 00:00:00: Portfolio Value - -3526949.56\n", + "2023-08-22 00:00:00: Portfolio Value - -3522416.48\n", + "2023-08-23 00:00:00: Portfolio Value - -3534821.27\n", + "2023-08-24 00:00:00: Portfolio Value - -3615321.61\n", + "2023-08-25 00:00:00: Portfolio Value - -3610932.37\n", + "2023-08-28 00:00:00: Portfolio Value - -3618109.76\n", + "2023-08-29 00:00:00: Portfolio Value - -3661236.68\n", + "2023-08-30 00:00:00: Portfolio Value - -3640373.66\n", + "2023-08-31 00:00:00: Portfolio Value - -3614153.39\n", + "2023-09-01 00:00:00: Portfolio Value - -3560876.69\n", + "2023-09-05 00:00:00: Portfolio Value - -3545479.51\n", + "2023-09-06 00:00:00: Portfolio Value - -3543069.83\n", + "2023-09-07 00:00:00: Portfolio Value - -3605540.60\n", + "2023-09-08 00:00:00: Portfolio Value - -3650553.82\n", + "2023-09-11 00:00:00: Portfolio Value - -3598130.15\n", + "2023-09-12 00:00:00: Portfolio Value - -3659267.17\n", + "2023-09-13 00:00:00: Portfolio Value - -3761893.84\n", + "2023-09-14 00:00:00: Portfolio Value - -3872972.88\n", + "2023-09-15 00:00:00: Portfolio Value - -3774960.08\n", + "2023-09-18 00:00:00: Portfolio Value - -3881188.47\n", + "2023-09-19 00:00:00: Portfolio Value - -3854578.73\n", + "2023-09-20 00:00:00: Portfolio Value - -3886140.94\n", + "2023-09-21 00:00:00: Portfolio Value - -3853926.12\n", + "2023-09-22 00:00:00: Portfolio Value - -3822105.26\n", + "2023-09-25 00:00:00: Portfolio Value - -3821974.38\n", + "2023-09-26 00:00:00: Portfolio Value - -3741739.67\n", + "2023-09-27 00:00:00: Portfolio Value - -3711727.23\n", + "2023-09-28 00:00:00: Portfolio Value - -3746698.59\n", + "2023-09-29 00:00:00: Portfolio Value - -3639049.08\n", + "2023-10-02 00:00:00: Portfolio Value - -3595993.74\n", + "2023-10-03 00:00:00: Portfolio Value - -3613047.20\n", + "2023-10-04 00:00:00: Portfolio Value - -3692812.26\n", + "2023-10-05 00:00:00: Portfolio Value - -3783570.16\n", + "2023-10-06 00:00:00: Portfolio Value - -3862285.84\n", + "2023-10-09 00:00:00: Portfolio Value - -3883993.77\n", + "2023-10-10 00:00:00: Portfolio Value - -3889205.37\n", + "2023-10-11 00:00:00: Portfolio Value - -3966292.78\n", + "2023-10-12 00:00:00: Portfolio Value - -4003401.14\n", + "2023-10-13 00:00:00: Portfolio Value - -4079579.89\n", + "2023-10-16 00:00:00: Portfolio Value - -4070271.74\n", + "2023-10-17 00:00:00: Portfolio Value - -4071189.31\n", + "2023-10-18 00:00:00: Portfolio Value - -4123241.23\n", + "2023-10-19 00:00:00: Portfolio Value - -3970505.21\n", + "2023-10-20 00:00:00: Portfolio Value - -3904411.21\n", + "2023-10-23 00:00:00: Portfolio Value - -3803310.03\n", + "2023-10-24 00:00:00: Portfolio Value - -3813365.30\n", + "2023-10-25 00:00:00: Portfolio Value - -3754869.03\n", + "2023-10-26 00:00:00: Portfolio Value - -3735884.96\n", + "2023-10-27 00:00:00: Portfolio Value - -3628016.62\n", + "2023-10-30 00:00:00: Portfolio Value - -3614397.53\n", + "2023-10-31 00:00:00: Portfolio Value - -3681883.97\n", + "2023-11-01 00:00:00: Portfolio Value - -3703006.04\n", + "2023-11-02 00:00:00: Portfolio Value - -3847223.74\n", + "2023-11-03 00:00:00: Portfolio Value - -3821745.42\n", + "2023-11-06 00:00:00: Portfolio Value - -3808852.96\n", + "2023-11-07 00:00:00: Portfolio Value - -3668243.00\n", + "2023-11-08 00:00:00: Portfolio Value - -3651854.59\n", + "2023-11-09 00:00:00: Portfolio Value - -3624519.86\n", + "2023-11-10 00:00:00: Portfolio Value - -3642770.55\n", + "2023-11-13 00:00:00: Portfolio Value - -3638971.56\n", + "2023-11-14 00:00:00: Portfolio Value - -3668829.73\n", + "2023-11-15 00:00:00: Portfolio Value - -3598265.34\n", + "2023-11-16 00:00:00: Portfolio Value - -3694477.98\n", + "2023-11-17 00:00:00: Portfolio Value - -3640701.78\n", + "2023-11-20 00:00:00: Portfolio Value - -3688455.61\n", + "2023-11-21 00:00:00: Portfolio Value - -3734354.18\n", + "2023-11-22 00:00:00: Portfolio Value - -3800209.51\n", + "2023-11-24 00:00:00: Portfolio Value - -3773931.99\n", + "2023-11-27 00:00:00: Portfolio Value - -3735640.72\n", + "2023-11-28 00:00:00: Portfolio Value - -3723113.84\n", + "2023-11-29 00:00:00: Portfolio Value - -3651599.09\n", + "2023-11-30 00:00:00: Portfolio Value - -3647192.69\n", + "2023-12-01 00:00:00: Portfolio Value - -3545336.54\n", + "2023-12-04 00:00:00: Portfolio Value - -3431611.07\n", + "2023-12-05 00:00:00: Portfolio Value - -3454094.46\n", + "2023-12-06 00:00:00: Portfolio Value - -3305717.69\n", + "2023-12-07 00:00:00: Portfolio Value - -3297584.31\n", + "2023-12-08 00:00:00: Portfolio Value - -3231374.78\n", + "2023-12-11 00:00:00: Portfolio Value - -3279930.61\n", + "2023-12-12 00:00:00: Portfolio Value - -3270275.03\n", + "2023-12-13 00:00:00: Portfolio Value - -3343651.27\n", + "2023-12-14 00:00:00: Portfolio Value - -3237338.87\n", + "2023-12-15 00:00:00: Portfolio Value - -3269714.46\n", + "2023-12-18 00:00:00: Portfolio Value - -3194987.82\n", + "2023-12-19 00:00:00: Portfolio Value - -3158688.40\n", + "2023-12-20 00:00:00: Portfolio Value - -3084589.94\n", + "2023-12-21 00:00:00: Portfolio Value - -3109710.23\n", + "2023-12-22 00:00:00: Portfolio Value - -3207611.74\n", + "2023-12-26 00:00:00: Portfolio Value - -3205007.23\n", + "2023-12-27 00:00:00: Portfolio Value - -3214322.00\n", + "2023-12-28 00:00:00: Portfolio Value - -3227394.78\n", + "2023-12-29 00:00:00: Portfolio Value - -3224591.47\n", + "2024-01-02 00:00:00: Portfolio Value - -3323388.13\n", + "2024-01-03 00:00:00: Portfolio Value - -3382670.81\n", + "2024-01-04 00:00:00: Portfolio Value - -3345957.29\n", + "2024-01-05 00:00:00: Portfolio Value - -3309162.44\n", + "2024-01-08 00:00:00: Portfolio Value - -3364664.05\n", + "2024-01-09 00:00:00: Portfolio Value - -3325632.50\n", + "2024-01-10 00:00:00: Portfolio Value - -3321529.71\n", + "2024-01-11 00:00:00: Portfolio Value - -3269413.99\n", + "2024-01-12 00:00:00: Portfolio Value - -3355433.33\n", + "2024-01-16 00:00:00: Portfolio Value - -3325008.19\n", + "2024-01-17 00:00:00: Portfolio Value - -3352449.29\n", + "2024-01-18 00:00:00: Portfolio Value - -3258848.65\n", + "2024-01-19 00:00:00: Portfolio Value - -3312661.72\n", + "2024-01-22 00:00:00: Portfolio Value - -3263720.88\n", + "2024-01-23 00:00:00: Portfolio Value - -3261843.82\n", + "2024-01-24 00:00:00: Portfolio Value - -3096303.21\n", + "2024-01-25 00:00:00: Portfolio Value - -2904336.41\n", + "2024-01-26 00:00:00: Portfolio Value - -2840564.37\n", + "2024-01-29 00:00:00: Portfolio Value - -2839537.04\n", + "2024-01-30 00:00:00: Portfolio Value - -2902357.67\n", + "2024-01-31 00:00:00: Portfolio Value - -2955894.28\n", + "2024-02-01 00:00:00: Portfolio Value - -2894773.49\n", + "2024-02-02 00:00:00: Portfolio Value - -2880627.37\n", + "2024-02-05 00:00:00: Portfolio Value - -2836475.50\n", + "2024-02-06 00:00:00: Portfolio Value - -2835684.69\n", + "2024-02-07 00:00:00: Portfolio Value - -2907637.17\n", + "2024-02-08 00:00:00: Portfolio Value - -2770514.44\n", + "2024-02-09 00:00:00: Portfolio Value - -2833362.79\n", + "2024-02-12 00:00:00: Portfolio Value - -2826100.13\n", + "2024-02-13 00:00:00: Portfolio Value - -2742383.42\n", + "2024-02-14 00:00:00: Portfolio Value - -2724371.77\n", + "2024-02-15 00:00:00: Portfolio Value - -2738021.72\n", + "2024-02-16 00:00:00: Portfolio Value - -2812659.88\n", + "2024-02-20 00:00:00: Portfolio Value - -2857800.78\n", + "2024-02-21 00:00:00: Portfolio Value - -2892288.67\n", + "2024-02-22 00:00:00: Portfolio Value - -2912931.33\n", + "2024-02-23 00:00:00: Portfolio Value - -2896707.43\n", + "2024-02-26 00:00:00: Portfolio Value - -2771152.08\n", + "2024-02-27 00:00:00: Portfolio Value - -2710357.63\n", + "2024-02-28 00:00:00: Portfolio Value - -2696003.06\n", + "2024-02-29 00:00:00: Portfolio Value - -2645099.07\n", + "2024-03-01 00:00:00: Portfolio Value - -2727686.77\n", + "2024-03-04 00:00:00: Portfolio Value - -2730823.37\n", + "2024-03-05 00:00:00: Portfolio Value - -2704137.68\n", + "2024-03-06 00:00:00: Portfolio Value - -2765967.01\n", + "2024-03-07 00:00:00: Portfolio Value - -2769244.51\n", + "2024-03-08 00:00:00: Portfolio Value - -2673726.95\n", + "2024-03-11 00:00:00: Portfolio Value - -2719663.98\n", + "2024-03-12 00:00:00: Portfolio Value - -2699236.77\n", + "2024-03-13 00:00:00: Portfolio Value - -2668279.65\n", + "2024-03-14 00:00:00: Portfolio Value - -2695875.87\n", + "2024-03-15 00:00:00: Portfolio Value - -2691067.58\n", + "2024-03-18 00:00:00: Portfolio Value - -2688351.89\n", + "2024-03-19 00:00:00: Portfolio Value - -2679176.53\n", + "2024-03-20 00:00:00: Portfolio Value - -2589172.71\n", + "2024-03-21 00:00:00: Portfolio Value - -2598913.96\n", + "2024-03-22 00:00:00: Portfolio Value - -2710439.19\n", + "2024-03-25 00:00:00: Portfolio Value - -2772560.16\n", + "2024-03-26 00:00:00: Portfolio Value - -2715692.86\n", + "2024-03-27 00:00:00: Portfolio Value - -2789405.78\n", + "2024-03-28 00:00:00: Portfolio Value - -2833448.32\n", + "2024-04-01 00:00:00: Portfolio Value - -2823599.40\n", + "2024-04-02 00:00:00: Portfolio Value - -2723163.59\n", + "2024-04-03 00:00:00: Portfolio Value - -2763933.35\n", + "2024-04-04 00:00:00: Portfolio Value - -2816299.04\n", + "2024-04-05 00:00:00: Portfolio Value - -2769570.04\n", + "2024-04-08 00:00:00: Portfolio Value - -2771766.71\n", + "2024-04-09 00:00:00: Portfolio Value - -2898103.00\n", + "2024-04-10 00:00:00: Portfolio Value - -2835702.37\n", + "2024-04-11 00:00:00: Portfolio Value - -2799272.62\n", + "2024-04-12 00:00:00: Portfolio Value - -2797837.28\n", + "2024-04-15 00:00:00: Portfolio Value - -2835382.06\n", + "2024-04-16 00:00:00: Portfolio Value - -2848942.15\n", + "2024-04-17 00:00:00: Portfolio Value - -2932315.50\n", + "2024-04-18 00:00:00: Portfolio Value - -2963474.35\n", + "2024-04-19 00:00:00: Portfolio Value - -3169116.83\n", + "2024-04-22 00:00:00: Portfolio Value - -3223993.00\n", + "2024-04-23 00:00:00: Portfolio Value - -3153152.38\n", + "2024-04-24 00:00:00: Portfolio Value - -3189012.80\n", + "2024-04-25 00:00:00: Portfolio Value - -3220334.15\n", + "2024-04-26 00:00:00: Portfolio Value - -3245797.38\n", + "2024-04-29 00:00:00: Portfolio Value - -3134123.51\n", + "2024-04-30 00:00:00: Portfolio Value - -3167038.30\n", + "2024-05-01 00:00:00: Portfolio Value - -3231064.47\n", + "2024-05-02 00:00:00: Portfolio Value - -3286677.16\n", + "2024-05-03 00:00:00: Portfolio Value - -3350321.11\n", + "2024-05-06 00:00:00: Portfolio Value - -3340951.64\n", + "2024-05-07 00:00:00: Portfolio Value - -3439844.15\n", + "2024-05-08 00:00:00: Portfolio Value - -3427788.80\n", + "2024-05-09 00:00:00: Portfolio Value - -3586435.69\n", + "2024-05-10 00:00:00: Portfolio Value - -3604441.26\n", + "2024-05-13 00:00:00: Portfolio Value - -3597565.54\n", + "2024-05-14 00:00:00: Portfolio Value - -3662903.44\n", + "2024-05-15 00:00:00: Portfolio Value - -3770908.37\n", + "2024-05-16 00:00:00: Portfolio Value - -3883709.35\n", + "2024-05-17 00:00:00: Portfolio Value - -3913435.91\n", + "2024-05-20 00:00:00: Portfolio Value - -3871599.41\n", + "2024-05-21 00:00:00: Portfolio Value - -3939953.69\n", + "2024-05-22 00:00:00: Portfolio Value - -4117519.58\n", + "2024-05-23 00:00:00: Portfolio Value - -4131190.40\n", + "2024-05-24 00:00:00: Portfolio Value - -4078336.37\n", + "2024-05-28 00:00:00: Portfolio Value - -4075273.78\n", + "2024-05-29 00:00:00: Portfolio Value - -3951904.14\n", + "2024-05-30 00:00:00: Portfolio Value - -3995107.26\n", + "2024-05-31 00:00:00: Portfolio Value - -4056611.18\n", + "2024-06-03 00:00:00: Portfolio Value - -4090446.84\n", + "2024-06-04 00:00:00: Portfolio Value - -4185271.91\n", + "2024-06-05 00:00:00: Portfolio Value - -4185058.26\n", + "2024-06-06 00:00:00: Portfolio Value - -4181721.47\n", + "2024-06-07 00:00:00: Portfolio Value - -4131066.60\n", + "2024-06-10 00:00:00: Portfolio Value - -4289214.61\n", + "2024-06-11 00:00:00: Portfolio Value - -4363700.11\n", + "2024-06-12 00:00:00: Portfolio Value - -4418852.81\n", + "2024-06-13 00:00:00: Portfolio Value - -4409288.12\n", + "2024-06-14 00:00:00: Portfolio Value - -4420350.43\n", + "2024-06-17 00:00:00: Portfolio Value - -4316382.13\n", + "2024-06-18 00:00:00: Portfolio Value - -4288901.20\n", + "2024-06-20 00:00:00: Portfolio Value - -4308896.04\n", + "2024-06-21 00:00:00: Portfolio Value - -4280226.88\n", + "2024-06-24 00:00:00: Portfolio Value - -4364982.58\n", + "2024-06-25 00:00:00: Portfolio Value - -4420883.66\n", + "2024-06-26 00:00:00: Portfolio Value - -4370989.95\n", + "2024-06-27 00:00:00: Portfolio Value - -4331848.59\n", + "2024-06-28 00:00:00: Portfolio Value - -4364686.85\n", + "2024-07-01 00:00:00: Portfolio Value - -4408487.03\n", + "2024-07-02 00:00:00: Portfolio Value - -4518486.13\n", + "2024-07-03 00:00:00: Portfolio Value - -4514160.84\n", + "2024-07-05 00:00:00: Portfolio Value - -4600502.14\n", + "2024-07-08 00:00:00: Portfolio Value - -4613098.02\n", + "2024-07-09 00:00:00: Portfolio Value - -4834151.79\n", + "2024-07-10 00:00:00: Portfolio Value - -5006193.45\n", + "2024-07-11 00:00:00: Portfolio Value - -4974993.45\n", + "2024-07-12 00:00:00: Portfolio Value - -4882940.73\n", + "2024-07-15 00:00:00: Portfolio Value - -4855085.16\n", + "2024-07-16 00:00:00: Portfolio Value - -4846599.55\n", + "2024-07-17 00:00:00: Portfolio Value - -4846503.37\n", + "2024-07-18 00:00:00: Portfolio Value - -5012206.44\n", + "2024-07-19 00:00:00: Portfolio Value - -4992096.16\n", + "2024-07-22 00:00:00: Portfolio Value - -5036776.38\n", + "2024-07-23 00:00:00: Portfolio Value - -5016751.80\n", + "2024-07-24 00:00:00: Portfolio Value - -5009533.61\n", + "2024-07-25 00:00:00: Portfolio Value - -4997346.72\n", + "2024-07-26 00:00:00: Portfolio Value - -5164308.02\n", + "2024-07-29 00:00:00: Portfolio Value - -5135098.03\n", + "2024-07-30 00:00:00: Portfolio Value - -5146624.30\n", + "2024-07-31 00:00:00: Portfolio Value - -5169098.61\n", + "2024-08-01 00:00:00: Portfolio Value - -5247012.09\n", + "2024-08-02 00:00:00: Portfolio Value - -5282508.61\n", + "2024-08-05 00:00:00: Portfolio Value - -5073490.45\n", + "2024-08-06 00:00:00: Portfolio Value - -5030008.39\n", + "2024-08-07 00:00:00: Portfolio Value - -5048290.26\n", + "2024-08-08 00:00:00: Portfolio Value - -5149451.20\n", + "2024-08-09 00:00:00: Portfolio Value - -5116570.48\n", + "2024-08-12 00:00:00: Portfolio Value - -5120411.06\n", + "2024-08-13 00:00:00: Portfolio Value - -5176646.39\n", + "2024-08-14 00:00:00: Portfolio Value - -5189016.93\n", + "2024-08-15 00:00:00: Portfolio Value - -5097142.37\n", + "2024-08-16 00:00:00: Portfolio Value - -5048751.46\n", + "2024-08-19 00:00:00: Portfolio Value - -5068063.63\n", + "2024-08-20 00:00:00: Portfolio Value - -5025054.50\n", + "2024-08-21 00:00:00: Portfolio Value - -4999618.95\n", + "2024-08-22 00:00:00: Portfolio Value - -5008029.52\n", + "2024-08-23 00:00:00: Portfolio Value - -5057076.50\n", + "2024-08-26 00:00:00: Portfolio Value - -5060219.39\n", + "2024-08-27 00:00:00: Portfolio Value - -5062504.40\n", + "2024-08-28 00:00:00: Portfolio Value - -5138001.93\n", + "2024-08-29 00:00:00: Portfolio Value - -5159967.86\n", + "2024-08-30 00:00:00: Portfolio Value - -5221985.81\n", + "2024-09-03 00:00:00: Portfolio Value - -5097883.48\n", + "2024-09-04 00:00:00: Portfolio Value - -5177459.63\n", + "2024-09-05 00:00:00: Portfolio Value - -5086358.89\n", + "2024-09-06 00:00:00: Portfolio Value - -5010415.39\n", + "2024-09-09 00:00:00: Portfolio Value - -4974772.49\n", + "2024-09-10 00:00:00: Portfolio Value - -5055132.73\n", + "2024-09-11 00:00:00: Portfolio Value - -5048780.57\n", + "2024-09-12 00:00:00: Portfolio Value - -5030946.10\n", + "2024-09-13 00:00:00: Portfolio Value - -5041019.20\n", + "2024-09-16 00:00:00: Portfolio Value - -5096350.60\n", + "2024-09-17 00:00:00: Portfolio Value - -4970646.68\n", + "2024-09-18 00:00:00: Portfolio Value - -5020279.86\n", + "2024-09-19 00:00:00: Portfolio Value - -5075490.16\n", + "2024-09-20 00:00:00: Portfolio Value - -5141107.95\n", + "2024-09-23 00:00:00: Portfolio Value - -5124824.06\n", + "2024-09-24 00:00:00: Portfolio Value - -4916605.78\n", + "2024-09-25 00:00:00: Portfolio Value - -4892125.24\n", + "2024-09-26 00:00:00: Portfolio Value - -4769627.22\n", + "2024-09-27 00:00:00: Portfolio Value - -4793265.02\n", + "2024-09-30 00:00:00: Portfolio Value - -4839217.02\n", + "2024-10-01 00:00:00: Portfolio Value - -4823002.39\n", + "2024-10-02 00:00:00: Portfolio Value - -4869870.63\n", + "2024-10-03 00:00:00: Portfolio Value - -4895342.44\n", + "2024-10-04 00:00:00: Portfolio Value - -4780605.46\n", + "2024-10-07 00:00:00: Portfolio Value - -4788184.20\n", + "2024-10-08 00:00:00: Portfolio Value - -4833005.98\n", + "2024-10-09 00:00:00: Portfolio Value - -4902692.04\n", + "2024-10-10 00:00:00: Portfolio Value - -4899329.52\n", + "2024-10-11 00:00:00: Portfolio Value - -5013266.99\n", + "2024-10-14 00:00:00: Portfolio Value - -5112361.30\n", + "2024-10-15 00:00:00: Portfolio Value - -4940562.72\n", + "2024-10-16 00:00:00: Portfolio Value - -4919555.36\n", + "2024-10-17 00:00:00: Portfolio Value - -4924030.79\n", + "2024-10-18 00:00:00: Portfolio Value - -4689845.44\n", + "2024-10-21 00:00:00: Portfolio Value - -4609899.52\n", + "2024-10-22 00:00:00: Portfolio Value - -4625031.37\n", + "2024-10-23 00:00:00: Portfolio Value - -4669001.42\n", + "2024-10-24 00:00:00: Portfolio Value - -4650568.75\n", + "2024-10-25 00:00:00: Portfolio Value - -4606958.93\n", + "2024-10-28 00:00:00: Portfolio Value - -4602575.40\n", + "2024-10-29 00:00:00: Portfolio Value - -4564402.72\n", + "2024-10-30 00:00:00: Portfolio Value - -4706624.81\n", + "2024-10-31 00:00:00: Portfolio Value - -4691310.12\n", + "2024-11-01 00:00:00: Portfolio Value - -4620040.82\n", + "2024-11-04 00:00:00: Portfolio Value - -4689701.06\n", + "2024-11-05 00:00:00: Portfolio Value - -4770790.15\n", + "2024-11-06 00:00:00: Portfolio Value - -4744110.09\n", + "2024-11-07 00:00:00: Portfolio Value - -4874228.76\n", + "2024-11-08 00:00:00: Portfolio Value - -5059353.43\n", + "2024-11-11 00:00:00: Portfolio Value - -5005006.59\n", + "2024-11-12 00:00:00: Portfolio Value - -4869613.28\n", + "2024-11-13 00:00:00: Portfolio Value - -4692932.38\n", + "2024-11-14 00:00:00: Portfolio Value - -4609283.67\n", + "2024-11-15 00:00:00: Portfolio Value - -4543527.84\n", + "2024-11-18 00:00:00: Portfolio Value - -4620404.90\n", + "2024-11-19 00:00:00: Portfolio Value - -4589926.66\n" ] } ], @@ -8517,7 +3855,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 11, "metadata": {}, "outputs": [ { @@ -8526,26 +3864,26 @@ "text": [ "\n", "Performance Metrics:\n", - "Daily Return: -0.08207647451220856\n", - "Cumulative Return: 108.69940830764796\n", - "Log Return: -0.0002514022663968894\n", - "Volatility: 83.32539912798578\n", - "Sharpe Ratio: -0.24827689748357096\n", - "Max Drawdown: -1.1472462334251403\n", - "VaR 5%: -0.03783174253972108\n" + "Daily Return: 0.2194212832201503\n", + "Cumulative Return: -46.89926661332383\n", + "Log Return: 0.00532185738442588\n", + "Volatility: 158.35425466338964\n", + "Sharpe Ratio: 0.3491517388592179\n", + "Max Drawdown: -11.41168251095958\n", + "VaR 5%: -0.2893622042606572\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "/opt/anaconda3/envs/data-qualitys/lib/python3.13/site-packages/pandas/core/arraylike.py:399: RuntimeWarning: invalid value encountered in log\n", + "/Users/wangzhongxuan/cds/millennium-data-quality/venv/lib/python3.12/site-packages/pandas/core/arraylike.py:399: RuntimeWarning: invalid value encountered in log\n", " result = getattr(ufunc, method)(*inputs, **kwargs)\n" ] }, { "data": { - "image/png": "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J070L7d582bp1KmT+Q909tlny5w5c6RRo0YyefJkqVy5ssV3UHRRe3uovR3U3R5qbw+1t4fa20HdowfBKwzOO+88GTRokPTv398/U4/+p1m9erUsWLBA5s2bJ2eeeaZ5HOFF7e2h9nZQd3uovT3U3h5qbwd1j0wEr3xau3attG/fXj799FN/925aWpokJCTYblrEo/b2UHs7qLs91N4eam8PtbeDukcujvE6RW5e/e6776RkyZL+/xijRo0y503QMbfwBrW3h9rbQd3tofb2UHt7qL0d1D3yxdluQFE/qd2PP/4ol19+ucycOVNuuukmOXDggLzxxhucGNND1N4eam8HdbeH2ttD7e2h9nZQ9yhge1rFouzgwYNOvXr1HJ/P5yQmJjpPPvmk7SZFDWpvD7W3g7rbQ+3tofb2UHs7qHtk4xivfOrSpYvUr19fxo8fL0lJSbabE1WovT3U3g7qbg+1t4fa20Pt7aDukYvglU+ZmZkSGxtruxlRidrbQ+3toO72UHt7qL091N4O6h65CF4AAAAA4DFmNQQAAAAAjxG8AAAAAMBjBC8AAAAA8BjBCwAAAAA8RvACAAAAAI8RvAAAAADAYwQvAAAAAPAYwQsAELUGDBggPp/PXOLj46Vy5crSpUsXmTRpkmRlZeV5Pf/+97+lTJkynrYVAFC0EbwAAFGte/fusnXrVlm/fr189tlncsEFF8hdd90ll1xyiWRkZNhuHgAgQhC8AABRLTExUapUqSLVqlWTs846Sx544AH56KOPTAjTniw1fvx4adasmZQoUUJq1Kght912m+zbt8889tVXX8nAgQNlz549/t6zRx55xDx2+PBhueeee8y69blt2rQxywMAog/BCwCAHC688EI588wzZerUqeZ2TEyM/P3vf5dly5bJ66+/Ll9++aXce++95rH27dvLc889J8nJyabnTC8attQdd9whc+fOlSlTpsjixYulT58+poftt99+s/r+AAAFz+c4jmPhdQEAKBTHeP3555/y4Ycf5nrs6quvNmFp+fLluR5777335JZbbpGdO3ea29ozdvfdd5t1uTZs2CB169Y116eddpr//s6dO8s555wjTzzxhGfvCwBQ+MTZbgAAAIWR7pfUYYPqiy++kDFjxsjKlSslNTXVHPt16NAhOXDggBQvXvyYz1+yZIlkZmZKgwYNgu7X4Yfly5cvkPcAACg8CF4AABzDihUrpE6dOmbSDZ1o49Zbb5XHH39cypUrJ999953ccMMNkpaWdtzgpceAxcbGyoIFC8x1oJIlSxbQuwAAFBYELwAActBjuLTHavDgwSY46dTy48aNM8d6qXfeeSdo+YSEBNO7Fahly5bmvu3bt8v5559foO0HABQ+BC8AQFTToX8pKSkmJG3btk2mT59uhhVqL1e/fv1k6dKlkp6eLv/4xz/k0ksvle+//14mTJgQtI7atWubHq5Zs2aZSTm0F0yHGF577bVmHRraNIjt2LHDLNO8eXPp2bOntfcMACh4zGoIAIhqGrSqVq1qwpPOODh79mwzg6FOKa9DBDVI6XTyY8eOlaZNm8pbb71lglkgndlQJ9u46qqrpGLFivLUU0+Z+1977TUTvIYOHSoNGzaU3r17y08//SQ1a9a09G4BALYwqyEAAAAAeIweLwAAAADwGMELAAAAADxG8AIAAAAAjxG8AAAAAMBjBC8AAAAA8BjBCwAAAAA8RvACAAAAAI8RvAAAAADAYwQvAAAAAPAYwQsAAAAAPEbwAgAAAACPEbwAAAAAQLz1/+xrEPW/odPGAAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1IAAAH9CAYAAAAQ800VAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvc2/+5QAAAAlwSFlzAAAPYQAAD2EBqD+naQAAWh5JREFUeJzt3Ql8U1Xax/EnSTfa0rKXfVFBZFFQEEEERlZxY0RcxlFA3AdHwBVHQHDfkNFxxH33ddwdUREEkUEREGUXXAABWQoUKLS0TZP7fp5Tbmxa0Aaa3iy/73wySW5ubk6exnD/Oeee67IsyxIAAAAAQIW5K74qAAAAAEARpAAAAAAgRAQpAAAAAAgRQQoAAAAAQkSQAgAAAIAQEaQAAAAAIEQEKQAAAAAIEUEKAAAAAEJEkAIAAACAEBGkAACOW7RokXTr1k3S0tLE5XLJkiVLKvzcF1980Txn/fr1gWW9evUyFwAAwoUgBQBxzA4h9iUlJUVatWolI0eOlG3btlXqa917773y/vvvl1vu9XplyJAhkpOTI48++qi88sor0qxZM4kkGspK16latWpy/PHHy5QpU8Tv9x/WNl9//XXzfABAdEpwugEAAOdNmjRJWrRoIQUFBTJv3jx58skn5eOPP5YVK1ZIampqpQWp888/XwYNGhS0/Oeff5ZffvlFnnnmGbniiisq5bVmzJghla1x48Zy3333mds7duwwQWj06NGyfft2ueeee0Lenj5f6ztq1KhKbysAIPwIUgAAOeOMM6RTp07mtoaZ2rVry+TJk+WDDz6Qiy+++LC3a1mWCWfag3Mo2dnZ5rpGjRpSWZKSkqSyZWZmyl//+tfA/WuuuUZat24tjz/+uAmiHo9HIkF+fn6lhV8AwKExtA8AUM7pp59urtetW2eui4uL5a677pKjjz5akpOTpXnz5nL77bdLYWFh0PN0+VlnnSWffvqpCWYaoJ566ikzHC4vL09eeumlwPC4YcOGmUvPnj3Nc3V4ny4vfWzT7Nmz5bTTTjPHTmnQOvfcc+X777//w/Yf7BgpDWwjRoyQrKwsM4TxhBNOMO05XLqNzp07y969ewNh0Pbqq6/KSSedZN5/rVq15KKLLpKNGzcGte+jjz4yPXF2PbR2hzrmS82ZM8cs1+vS22nXrp0sXrxYevToYQKU/l30ubruww8/LE8//XTg76bt1ePRStu6dasMHz7c9LjpOg0aNDB1Lvv6AIBg9EgBAMrR4XZKe6bsXioNHTo078Ybb5QFCxaYYW4aat57772g565Zs8b0Yl199dVy5ZVXyrHHHmuOe9JtnHzyyXLVVVeZ9XTnXjVq1MgM+/v73/9udvQ16KjPPvvM9JQdddRRcuedd8r+/ftN78+pp54q3377bSB4VIQ+V0PHTz/9ZI7/0mGMb731lglyu3fvlhtuuOGw6mQHltK9aTrMb9y4cXLBBReY96xD/7TdGnS+++47s+4//vEP2bNnj2zatMkcF6bS09MPqw07d+40ddKwpj1mdv3s4YMa9PRvoe188MEH5bzzzpO1a9dKYmKiWWfw4MGycuVKuf76601NNRTOnDlTNmzYEFKNASDuWACAuPXCCy9Y+k/BZ599Zm3fvt3auHGj9cYbb1i1a9e2qlWrZm3atMlasmSJWeeKK64Ieu5NN91kls+ePTuwrFmzZmbZ9OnTy71WWlqaNXTo0HLLP//8c/Oct956K2h5hw4drHr16lk7d+4MLFu6dKnldrutyy67rNx7WLduXWBZz549zcU2ZcoUs86rr74aWFZUVGR17drVSk9Pt3Jzc3+3Trqt1q1bmxrpZfXq1dbNN99stnnmmWcG1lu/fr3l8Xise+65J+j5y5cvtxISEoKW6/O0XmUd7P2UrpNel26XLps6dWrQuvpcXa5/x5ycnMDyDz74wCz/8MMPzf1du3aZ+w899NDvvn8AQHkM7QMASJ8+faRu3brSpEkT07OhvSPa06S9RTrphBozZkzQc7RnSukQtdK0t6d///5H1J4tW7aYKdC1x0iHxtl0pry+ffsG2lRRun79+vWDjvfSHhntBdu3b5988cUXf7iN1atXmxrpRY+Neuihh+Scc84xQ/Fs7777rpnFT3ujdEIK+6Kv3bJlS/n888+lsulwPB2adzAXXnih1KxZM3Bfh0kq7ZFSOvRQjyfT4YK7du2q9LYBQCxjaB8AQJ544gkz7XlCQoIZGqbD8dzukt/a9DgevX3MMccEPUfDgQ5T08fLBqkjZW9T21HWcccdZ47B0mOu9Nipim5Pg4z9nkpvq/Tr/R4d5qYzC2pQ0qGPOoRPh+3psVK2H3/80Uywoa91MPZwusqkYfdQk2s0bdo06L4dquzQpCHsgQceMKFY/+6nnHKKOcbtsssuM39fAMChEaQAAObYJXvWvkPRY2wq4vdm6ItmGtq0586mx2qdeOKJZnKHxx57zCzTkKV1+uSTTw46i19FjoM6VJ19Pl/I9T7UTIIa9mw6/frZZ59tzvGlAVWP79Lj33Sij44dO/5hewEgXhGkAAC/S0+OqwFBe1vsHhylJ+zViRoqevLcigYx+zXtiSsONsSuTp06Fe6Nsre3bNky8z5K90rptkq/Xih0mKFO7qCzEt50002m90cn0NCQor1y2sN3OPWwe420tqVVpNfscGm7tVdKL/p37tChgzzyyCNm9kEAwMFxjBQA4HcNHDjQXE+ZMiVouZ5nSp155pkV2o4Gn7Lh4FB0Cm7dmdeZAks/R09gqyfbtdtUUbq+TvP9n//8J7BMp3TX2fS0l8iegj1Ut9xyi3i93kAtdEY87QWaOHFiUK+P0vs6w17peujMfWXZsxnOnTs3qDdKpzEPxzmn9DxfZV+/evXq5aa2BwAEo0cKAPC79HxLQ4cONTvyGmo0dCxcuNCEnEGDBsmf/vSnCm1Hz6ukU5pr6GjYsKHptenSpcsh19fJHHRa765du5rzP9nTn+uJcXU69FDolOvac6STV+g5l/R4p7ffflu+/PJLExA1OByONm3amJD27LPPmiFxGkLuvvtuGTt2rJkaXeuj29bzcenkHdoO7b2y66HBTifx0GnfNdDpELu2bduaY5V0Gzk5OWayjTfeeMMEv8r2ww8/SO/evc3kGPpe9Bg5baf2NuqkIwCA33GQmfwAAHHCnmp70aJFv7ue1+u1Jk6caLVo0cJKTEy0mjRpYo0dO9YqKCgIWk+n8y49HXhpOmV4jx49zLTq+pr2VOiHmv5c6bTsp556qnlORkaGdfbZZ1urVq066Hv4venP1bZt26zhw4dbderUsZKSkqz27dub51aEbqtt27YHfWzOnDnm9SdMmBBY9s4771jdu3c3U77rRadO/9vf/matWbMmsM6+ffusv/zlL1aNGjXM80tPhf7zzz9bffr0sZKTk62srCzr9ttvt2bOnHnQ6c8P1i57+vODTWteuq07duww7dL2aTszMzOtLl26WG+++WaF6gIA8cyl//d7QQsAAAAAEIxjpAAAAAAgRAQpAAAAAAgRQQoAAAAAQkSQAgAAAIAQEaQAAAAAIEQEKQAAAAAIESfkFRG/3y+bN282J010uVxONwcAAACAQ/TsUHv37jUnj3e7D93vRJASMSGqSZMmTjcDAAAAQITYuHGjNG7c+JCPE6RETE+UXayMjAzH2uH1emXGjBnSr18/SUxMdKwd8YjaO4faO4faO4O6O4faO4faO4fahy43N9d0stgZ4VAIUiKB4XwaopwOUqmpqaYNfNCrFrV3DrV3DrV3BnV3DrV3DrV3DrU/fH90yA+TTQAAAABAiAhSAAAAABAighQAAAAAhIggBQAAAAAhIkgBAAAAQIgIUgAAAAAQIoIUAAAAAISIIAUAAAAAISJIAQAAAECICFIAAAAAECKCFAAAAACEiCAFAAAAACEiSAEAAABAiAhSAAAAABAighQAAIgIxT6/vPL1L7JuR57TTQGAP5Twx6sAAACE36zV2TLu/RXm9g93nyFJCfzeC0Q7y7LE57fEZ1liWRK4rdwul7hdIi79n0skwe2SBE/0/HdPkAIAABFh8+79gdtb9xRI09qpYX9Nv9+SIp/f7MTpvp2+brHfb27vLSyWLbtL7vsty+zslVay4+eWBI/L7AB63C7R3cPkBHdgx1Cf4Tqws5iS6JECr0+K/ZZ5Xb3eW1AshcU+s3NpdirdJTuVug3dltfnN9vVx/KLfJJfVCyFXn/Ja3rckuh2SaLHbZ7nLbbE6/dLsc8yz/P6LNPL5/WX3C+2l5n3U/J+8wqLA+/FbmvJ7d/ar69tbpu3X/Je9P269T27XCXvxyppv7ZV22bqV1As+wqLzev6/X7ZutUtn+QuNc9T+n5K2lGyU33gSiz934H22bdLlpf8X9ll+vyS6wPrHNjYb8t+2769jv2ageX2awaWHXjWQZaVbmdQu3/bZNBnxF5u39bPm5ZA/25Jeklwm9taR/37lv6sBf1dAhsNXlbyd/ntb1byvAPPP9DS3FyPPPPL16X+viVPtLdZum7mv4sDgUfbYl/by/RiwpGltyV4nQMhyW8vPxCeKuqWAcfKdb2OkWhBkAIAABFBd6xtGgg25uTLzFXbZFd+kRQVl4QZ3TlvkFlN8oqKZU++V6olecz6GkZ25XkDO6kFXr/ZYdfgsr/IZ3bovcU+2ZvnkTuXfm62V3QgWKCquGVpzjanGxGnXLIpL1cinavMjxWRjiAFAAAiQm6BN3D7oelrZPrKrWF4FZeI97fXKUt7WrQ3aL/XJ7XSkqRFnTTTW6A9LTb7F3YNdtqLoD0u+ou8hjK7F6lsj4auq4FOg5/nQE+OXqcnJwSW6Tbs7WsA1B6exASX6WHSZbpeWrLH9GKUvG5J75K+rm5f26nt1+tEu8fK9Ja5Sy0redzeYdXtaS+FaW+Znpmg+4HHS96L3aOmPQ4lvXHuwDKth/Z6VE9JlLTkBNPj4isulhUrV0rbtm3F4/GUvJ9Ejwm7ptfLHdyjIr/T41J6mVlaqofmwF+4VA/agZ3zQ61TuhfnwP+VXWb34pR+nt3XE+jdKdNrZPc+md6lA0/W2/p3t3vsTJAvLvn7eQM1SwisX/I5K/P3sHvvSve2BfWalf0bWlJcXCyLFn0jnTp3CtS+bO9buVq7Snoi7c+q/p1K7v+23B10Hbzc7q3Uv6v9WQ9s48DyQHsP1Mn+DEcTghQAAIgI2ttkKx2i/tKlqdnp1mFPGSmJsjvfK6nJHklO0ABSso7erpmaaHbaNY+kJOqOvUhiglvSkjxmp14snyz6+iv5U88ekpaSZNa1h1YVFvsl0e02O7K6w2fvsNo7tTgyXq9XPt65QgZ2aSqJiYlONyfuap/3kyW9WtWl9pWMIAUAACKC/jpf1isjTpbTWtatnO17vbJluUjLeunldiirl1mXAAXgjxCkAABAxPnbn46WCzo1kWa105xuCgAcFEEKAABEnNF9WkXVNMgA4o+j31A+n0/GjRsnLVq0kGrVqsnRRx8td911V5kpKS0ZP368NGjQwKzTp08f+fHHH4O2k5OTI5dccolkZGRIjRo1ZMSIEbJv3z4H3hEAADhSOgUyIQpApHP0W+qBBx6QJ598Uv71r3/J999/b+4/+OCD8vjjjwfW0fuPPfaYTJ06VRYsWCBpaWnSv39/KSgoCKyjIWrlypUyc+ZMmTZtmsydO1euuuoqh94VAAAAgFjn6NC+r776Ss4991w588wzzf3mzZvL//3f/8nChQsDvVFTpkyRO+64w6ynXn75ZcnKypL3339fLrroIhPApk+fLosWLZJOnTqZdTSIDRw4UB5++GFp2LChg+8QAAAAQCxyNEh169ZNnn76afnhhx+kVatWsnTpUpk3b55MnjzZPL5u3TrZunWrGc5ny8zMlC5dusj8+fNNkNJrHc5nhyil67vdbtOD9ec//7nc6xYWFpqLLTc3NzCbj16cYr+2k22IV9TeOdTeOdTeGdT90PxWyax9fj2/ThjqQ+2dQ+2dQ+1DV9FaORqkbrvtNhNiWrdubU4QpsdM3XPPPWaontIQpbQHqjS9bz+m1/Xq1Qt6PCEhQWrVqhVYp6z77rtPJk6cWG75jBkzJDU1VZymQxThDGrvHGrvHGrvDOpe3qaNesSBW1avWS0f7/s+bK9D7Z1D7Z1D7SsuPz8/8oPUm2++Ka+99pq8/vrr5kzXS5YskVGjRpnheEOHDg3b644dO1bGjBkTuK9hrkmTJtKvXz8zYYWT6Vc/5H379uWEaVWM2juH2juH2juDuh/aF++uENm+WVof21oG9mhR6dun9s6h9s6h9qGzR6tFdJC6+eabTa+UDtFT7du3l19++cX0GGmQql+/vlm+bds2M2ufTe936NDB3NZ1srOzg7ZbXFxsZvKzn19WcnKyuZSlH65I+IBFSjviEbV3DrV3DrV3BnUvT4flKx2lEs7aUHvnUHvnUPuKq2id3E53m9lfmjb98vT7S8ZI67ToGoZmzZoVlBD12KeuXbua+3q9e/duWbx4cWCd2bNnm23osVQAAAAAUNkc7ZE6++yzzTFRTZs2NUP7vvvuOzPRxOWXX24ed7lcZqjf3XffLS1btjTBSs87pUP/Bg0aZNY57rjjZMCAAXLllVeaKdK1+3LkyJGml4sZ+wAAAADEXJDSaco1GF133XVmeJ4Gn6uvvtqcgNd2yy23SF5enjkvlPY8de/e3Ux3npKSElhHj7PS8NS7d2/TwzV48GBz7ikAAAAAiLkgVb16dXOeKL0civZKTZo0yVwORWfo0wkrAAAAAKAqOHqMFAAAAABEI4IUAAAAAISIIAUAACKCZTndAgCoOIIUAACIKC6X0y0AgD9GkAIAAACAEBGkAAAAACBEBCkAAAAACBFBCgAAAABCRJACAAAAgBARpAAAAAAgRAQpAAAQESzhRFIAogdBCgAARBROIwUgGhCkAAAAACBEBCkAAAAACBFBCgAAAABCRJACAAAAgBARpAAAAAAgRAQpAAAAAAgRQQoAAEQGTiMFIIoQpAAAQERxcSIpAFGAIAUAAAAAISJIAQAAAECICFIAAAAAECKCFAAAAACEiCAFAAAAACEiSAEAAABAiAhSAAAgInAaKQDRhCAFAAAiiks4kRSAyEeQAgAAAIAQEaQAAAAAIEQEKQAAAAAIEUEKAAAAAEJEkAIAAACAEBGkAAAAACBEBCkAABARLIszSQGIHgQpAAAQUVycRgpAFCBIAQAAAECICFIAAAAAECKCFAAAAACEiCAFAAAAACEiSAEAAABAiAhSAAAAABAighQAAIgInEUKQDQhSAEAAABAiAhSAAAAABAighQAAAAAhIggBQAAAAAhIkgBAAAAQIgIUgAAAAAQIoIUAAAAAISIIAUAACKCxYmkAEQRghQAAAAAhIggBQAAIorL5XK6CQDwhwhSAAAAABAighQAAAAAhIggBQAAAAAhIkgBAAAAQIgIUgAAAAAQIoIUAAAAAISIIAUAACIC5+MFEE0IUgAAIKJwFikA0YAgBQAAAAAhIkgBAAAAQIgIUgAAAAAQIoIUAAAAAISIIAUAAAAAISJIAQAAAECICFIAACAiWBZnkgIQPQhSAAAgorg4kRSAKECQAgAAAIAQEaQAAAAAIEQEKQAAAAAIEUEKAAAAAEJEkAIAAACAEBGkAAAAACBEBCkAABAROIsUgGhCkAIAABGF00gBiAYEKQAAAACItiD166+/yl//+lepXbu2VKtWTdq3by/ffPNN4HHLsmT8+PHSoEED83ifPn3kxx9/DNpGTk6OXHLJJZKRkSE1atSQESNGyL59+xx4NwAAAADigaNBateuXXLqqadKYmKifPLJJ7Jq1Sp55JFHpGbNmoF1HnzwQXnsscdk6tSpsmDBAklLS5P+/ftLQUFBYB0NUStXrpSZM2fKtGnTZO7cuXLVVVc59K4AAAAAxLoEJ1/8gQcekCZNmsgLL7wQWNaiRYug3qgpU6bIHXfcIeeee65Z9vLLL0tWVpa8//77ctFFF8n3338v06dPl0WLFkmnTp3MOo8//rgMHDhQHn74YWnYsKED7wwAAABALHO0R+q///2vCT9DhgyRevXqSceOHeWZZ54JPL5u3TrZunWrGc5ny8zMlC5dusj8+fPNfb3W4Xx2iFK6vtvtNj1YAAAAABBTPVJr166VJ598UsaMGSO333676VX6+9//LklJSTJ06FATopT2QJWm9+3H9FpDWGkJCQlSq1atwDplFRYWmostNzfXXHu9XnNxiv3aTrYhXlF751B751B7Z1D3Q7P8fnPt8/vDUh9q7xxq7xxqH7qK1srRIOX3+01P0r333mvua4/UihUrzPFQGqTC5b777pOJEyeWWz5jxgxJTU0Vp+mxXnAGtXcOtXcOtXcGdS9v8xYdKOOWVStXysc5K8L2OtTeOdTeOdS+4vLz8yM/SOlMfG3atAladtxxx8k777xjbtevX99cb9u2zaxr0/sdOnQIrJOdnR20jeLiYjOTn/38ssaOHWt6wUr3SOmxWv369TMz/zmZfvVD3rdvXzMBB6oOtXcOtXcOtXcGdT+06blLZcnObdK2bVsZeErTSt8+tXcOtXcOtQ+dPVotooOUzti3Zs2aoGU//PCDNGvWLDDxhIahWbNmBYKTvjE99unaa68197t27Sq7d++WxYsXy0knnWSWzZ492/R26bFUB5OcnGwuZemHKxI+YJHSjnhE7Z1D7Z1D7Z1B3cvT45uVx+MJa22ovXOovXOofcVVtE6OBqnRo0dLt27dzNC+Cy64QBYuXChPP/20uSiXyyWjRo2Su+++W1q2bGmC1bhx48xMfIMGDQr0YA0YMECuvPJKMyRQU/fIkSPNjH7M2AcAAAAgHBwNUp07d5b33nvPDLWbNGmSCUo63bmeF8p2yy23SF5enjkvlPY8de/e3Ux3npKSEljntddeM+Gpd+/e5teswYMHm3NPAQAAAEDMBSl11llnmcuhaK+Uhiy9HIrO0Pf666+HqYUAAAAAEEHnkQIAAACAaESQAgAAAIAQEaQAAEBEsMRyugkAUGEEKQAAEFFcLqdbAAB/jCAFAAAAACEiSAEAAABAiAhSAAAAABAighQAAAAAhIggBQAAAAAhIkgBAAAAQIgIUgAAICJYnEYKQDwFKZ/PJ0uWLJFdu3ZVTosAAEBc4zRSAGIySI0aNUqee+65QIjq2bOnnHjiidKkSROZM2dOONoIAAAAANEdpN5++2054YQTzO0PP/xQ1q1bJ6tXr5bRo0fLP/7xj3C0EQAAAACiO0jt2LFD6tevb25//PHHMmTIEGnVqpVcfvnlsnz58nC0EQAAAACiO0hlZWXJqlWrzLC+6dOnS9++fc3y/Px88Xg84WgjAAAAAESUhFCfMHz4cLngggukQYMG4nK5pE+fPmb5ggULpHXr1uFoIwAAAABEd5C68847pV27drJx40YzrC85Odks196o2267LRxtBAAAAIDoDlLq/PPPL7ds6NChldEeAAAQpziPFICYD1KzZs0yl+zsbPH7/UGPPf/885XVNgAAEI9cnEkKQAwGqYkTJ8qkSZOkU6dOgeOkAAAAACCehBykpk6dKi+++KJceuml4WkRAAAAAMTa9OdFRUXSrVu38LQGAAAAAGIxSF1xxRXy+uuvh6c1AAAAABCLQ/sKCgrk6aefls8++0yOP/54SUxMDHp88uTJldk+AAAAAIg4IQepZcuWSYcOHcztFStWBD3GxBMAAAAA4kFIQcrn85lZ+9q3by81a9YMX6sAAAAAIFaOkfJ4PNKvXz/ZvXt3+FoEAADikiWckRdADE820a5dO1m7dm14WgMAAOIeBwoAiMkgdffdd8tNN90k06ZNky1btkhubm7QBQAAAABiXciTTQwcONBcn3POOUGTS1iWZe7rcVQAAAAAEMtCDlKff/55eFoCAAAAALEapHr27BmelgAAAABArAapuXPn/u7jPXr0OJL2AAAAAEDsBalevXqVW1b6WCmOkQIAAAAQ60KetW/Xrl1Bl+zsbJk+fbp07txZZsyYEZ5WAgCAmGdxGikAsdwjlZmZWW5Z3759JSkpScaMGSOLFy+urLYBAIA4VGqgCwDETo/UoWRlZcmaNWsqa3MAAAAAEDs9UsuWLQu6r+eP0hPz3n///dKhQ4fKbBsAAAAAxEaQ0rCkk0togCrtlFNOkeeff74y2wYAAAAAsRGk1q1bF3Tf7XZL3bp1JSUlpTLbBQAAAACxc4zUF198IfXr15dmzZqZS5MmTUyIKioqkpdffjk8rQQAAACAaA5Sw4cPlz179pRbvnfvXvMYAAAAAMS6kIOUHhtV+gS8tk2bNh10anQAAICK4DRSAGLyGKmOHTuaAKWX3r17S0LCb0/1+Xzm2KkBAwaEq50AACBOuIQTSQGIoSA1aNAgc71kyRLp37+/pKenBx7Tk/E2b95cBg8eHJ5WAgAAAEA0BqkJEyaYaw1MF154IbP0AQAAAIhbIR8jNXToUCkoKJBnn31Wxo4dKzk5OWb5t99+K7/++ms42ggAAAAA0X0eqWXLlkmfPn3MxBLr16+XK6+8UmrVqiXvvvuubNiwgSnQAQAAAMS8kHukRo8eLcOGDZMff/wxaHjfwIEDZe7cuZXdPgAAAACI/h6pb775Rp5++ulyyxs1aiRbt26trHYBAAAAQOz0SCUnJ0tubm655T/88IPUrVu3stoFAADijMWJpADEcpA655xzZNKkSeL1es19Pa+UHht16623Mv05AAA4Yi5OIwUgFoPUI488Ivv27ZN69erJ/v37pWfPnnLMMceY80rdc8894WklAAAAAETzMVI6W9/MmTNl3rx5ZgY/DVUnnniimckPAAAAAOJByEHK1r17d3Ox6Xmkxo8fL9OmTaustgEAAABA9A/t+/TTT+Wmm26S22+/XdauXWuWrV69WgYNGiSdO3cWv98frnYCAAAAQPT1SD333HOBk+/u2rVLnn32WZk8ebJcf/31cuGFF8qKFSvkuOOOC29rAQAAACCaeqT++c9/ygMPPCA7duyQN99801z/+9//luXLl8vUqVMJUQAAAADiRoWD1M8//yxDhgwxt8877zxJSEiQhx56SBo3bhzO9gEAgLjBiaQAxGCQ0qnOU1NTA+eO0hPzNmjQIJxtAwAAcYjTSAGIuVn79LgoPV+UKi4ulhdffFHq1KkTtM7f//73ym0hAAAAAERrkGratKk888wzgfv169eXV155JWgd7akiSAEAAACIdRUOUuvXrw9vSwAAAAAgFs8jBQAAAAAgSAEAAABAyAhSAAAAABAighQAAIgIFqeRAhBFCFIAACCiuDiRFIBYDVI///yz3HHHHXLxxRdLdna2WfbJJ5/IypUrK7t9AAAAABD9QeqLL76Q9u3by4IFC+Tdd9+Vffv2meVLly6VCRMmhKONAAAAABDdQeq2226Tu+++W2bOnClJSUmB5aeffrp8/fXXld0+AAAAAIj+ILV8+XL585//XG55vXr1ZMeOHZXVLgAAAACInSBVo0YN2bJlS7nl3333nTRq1Kiy2gUAAAAAsROkLrroIrn11ltl69at4nK5xO/3y5dffik33XSTXHbZZeFpJQAAAABEc5C69957pXXr1tKkSRMz0USbNm2kR48e0q1bNzOTHwAAwOHgNFIAoklCqE/QCSaeeeYZGTdunKxYscKEqY4dO0rLli3D00IAABBXXMKJpADEYJCaN2+edO/eXZo2bWouAAAAABBvQh7ap9Oct2jRQm6//XZZtWpVeFoFAAAAALEUpDZv3iw33nijOTFvu3btpEOHDvLQQw/Jpk2bjqgh999/v5m8YtSoUYFlBQUF8re//U1q164t6enpMnjwYNm2bVvQ8zZs2CBnnnmmpKamminYb775ZikuLj6itgAAAABApQapOnXqyMiRI81MfT///LMMGTJEXnrpJWnevLnprTocixYtkqeeekqOP/74oOWjR4+WDz/8UN566y0T3DTEnXfe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5r7H43G6SXGHb/gw2r17t5x++umyYsUKuf76682X/bhx48yXDcLr/fffl2OOOUaWLFkivXr1Mtdjx46Vd955x+mmxQ3tCenRo4fZkX/mmWfMMn61DL/JkyfL0qVL5YsvvpDnnntOunfvbpazYxk+v/76q/msay/g66+/LjfccINs3LhRbrvtNqebFhc9gF26dJFly5aZAKvX11xzjTz00EPmcXoEw+ett94yO/HffPONNG7c2PxQrLX/6quvnG5a3Fi4cKH5/Ov3jb1/Q69U1SJIhZHuzGzbtk2eeuopueiii8zO/e233y5TpkyR6dOnO928mKVDyV599VW5/PLL5fPPPzchdtasWZKUlGR2dBBe9g67Djdo1aqVjBgxQiZNmmR+udReKXbow0PrmpeXJ++9954MGzbM/OM6f/58efrpp2XevHnmMYSH9nbrsDINUdojpb0iGmCrV6/udNNi3pdffmm+W95880257rrrzA8If/7zn2XChAmycuVK0yPId07l0x8nX3jhBfPvq44+0O/4BQsWyE8//STr1693unkxz/6BYM+ePdK5c2fp2LGj/POf/zQ/2GuvFJ/5qkOQCqOdO3eacavt2rUz95OTk2Xo0KFmqNnNN9/MsTuVzP7i0H9Ujz/+eFNr+9eZunXrmi8X+3gdhI89bFV7os4880wZMmSIJCYmmh0blZ+f73ALY7fuemyODq3RocQ33nijDB48WF566SVzrTuXubm5TjczZkcf6I809evXN/e3bNliekZq1aplQizCtyOp3zO7du2SRo0amfuZmZlmiKUGWb1WDKWvfPrvbJs2bcyPBkp34LVXqmbNmmZIMcLL/oFAg+tf//pX8/2u+5xPPvlk4O+BqkGQqsTu1bLDCDIyMqRJkyaB7lb90OsXuu5Q6offXs7Qg8qt/XHHHSfjx483Qw6UBij90tcdeP21GOH93NuBVncutRdEe6V0WKV+weuPCHpbv/BR+bXXHZnatWvLHXfcYXoEtSf2v//9r7levHix3H333fxSGYa66/eK7sBrL6AeE9i0aVNz/6OPPpKBAweaX+vZsTlyb7/9tnz22WcmqNrHnun3uwbY0sfA6n0dVrlo0SKZOXOmWcbnvnJqrz/WqJNPPtlMZtOwYUNzX38s094R/c4/9dRTHW5t7H7ubfoDse5P6ue/sLBQTjnlFBOmdDi3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", "text/plain": [ "
" ] @@ -8576,7 +3914,7 @@ ], "metadata": { "kernelspec": { - "display_name": "data-qualitys", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -8590,9 +3928,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.13.0" + "version": "3.12.4" } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } From c00fbc4ddb4f4424eedd70998aeb37e2b3bf0aa9 Mon Sep 17 00:00:00 2001 From: Daniel Wang Date: Tue, 8 Apr 2025 14:54:30 -0400 Subject: [PATCH 4/4] smr implementation --- backtester/order_generator.py | 191 +++++++++++++++++++++++----------- 1 file changed, 129 insertions(+), 62 deletions(-) diff --git a/backtester/order_generator.py b/backtester/order_generator.py index fe903ec..2195708 100644 --- a/backtester/order_generator.py +++ b/backtester/order_generator.py @@ -134,83 +134,150 @@ def generate_orders(self, data: Dict[str, pd.DataFrame]) -> List[Dict[str, Any]] return all_orders -class StableMinusRiskyOrderGenerator: - def __init__(self, lookback_period = 60, rebalance_frequency = 'ME', starting_portfolio_value = 100000): + +class StableMinusRiskyOrderGenerator(OrderGenerator): + """Strategy that goes long on low volatility stocks and short on high volatility stocks.""" + + def __init__(self, lookback_period: int = 60, rebalance_frequency: str = 'ME', starting_portfolio_value: float = 100000): self.lookback_period = lookback_period self.rebalance_frequency = rebalance_frequency self.starting_portfolio_value = starting_portfolio_value + + def calculate_volatility(self, returns: pd.Series) -> float: + """ + Calculate volatility (standard deviation) of returns. + """ + return returns.std() - def calculate_predicted_returns(self, data, date): - predicted_returns = {} + def calculate_volatilities(self, data, date): + """ + Calculate volatility for each stock up to the given date. + """ + volatility_values = {} for ticker, df in data.items(): - if len(df) < self.lookback_period: + if ticker == 'SPY': continue - if df.index[-1] < date: + + if 'Adj Close' not in df.columns: continue - df_up_to_date = df.loc[:date] - if len(df_up_to_date) < self.lookback_period: + + stock_returns = df['Adj Close'].pct_change(fill_method=None).dropna() + + # Filter returns up to the current date + if date not in stock_returns.index: continue - recent = df_up_to_date.iloc[-self.lookback_period:] - daily_returns = recent['Adj Close'].pct_change(fill_method=None).dropna() - if len(daily_returns) > 0: - avg_daily_return = daily_returns.mean() - if isinstance(avg_daily_return, pd.Series): - avg_daily_return = avg_daily_return.iloc[0] - - ann_return = avg_daily_return * 252 - predicted_returns[ticker] = ann_return - return predicted_returns - - def generate_orders_for_date(self, predicted_returns, date): - pr_series = pd.Series(predicted_returns).dropna().astype(float) - if pr_series.empty: + + mask = stock_returns.index <= date + recent_returns = stock_returns.loc[mask] + + if len(recent_returns) < self.lookback_period: + continue + + recent_returns = recent_returns.iloc[-self.lookback_period:] + volatility = self.calculate_volatility(recent_returns) + + # Only add non-NA volatility values + if not pd.isna(volatility): + volatility_values[ticker] = volatility + + return volatility_values + + def generate_orders_for_date(self, volatility_values, date): + """ + Generate orders for a specific date based on volatility values. + """ + if not volatility_values: + return [] + + volatility_series = pd.Series(volatility_values) + volatility_series = volatility_series.dropna() + + if len(volatility_series) == 0: return [] - sorted_by_pr = pr_series.sort_values() - num_stocks = len(sorted_by_pr) + + sorted_volatility = volatility_series.sort_values() + + num_stocks = len(sorted_volatility) decile_size = max(int(num_stocks * 0.1), 1) - risky_tickers = sorted_by_pr.head(decile_size).index.tolist() - stable_tickers = sorted_by_pr.tail(decile_size).index.tolist() - half_capital = self.starting_portfolio_value / 2.0 - stable_allocation_per_ticker = half_capital / decile_size - risky_allocation_per_ticker = half_capital / decile_size + + low_vol_tickers = sorted_volatility.head(decile_size).index.tolist() + high_vol_tickers = sorted_volatility.tail(decile_size).index.tolist() + + if not low_vol_tickers or not high_vol_tickers: + return [] + + avg_low_vol = float(volatility_series[low_vol_tickers].mean()) + avg_high_vol = float(volatility_series[high_vol_tickers].mean()) + + if avg_low_vol == 0 or avg_high_vol == 0 or (avg_low_vol + avg_high_vol) == 0: + return [] + + # find weights to make it beta neutral + low_vol_weight = avg_high_vol / (avg_low_vol + avg_high_vol) + high_vol_weight = avg_low_vol / (avg_low_vol + avg_high_vol) + orders = [] - for ticker in stable_tickers: - quantity = int(stable_allocation_per_ticker) - if quantity > 0: - orders.append({ - "date": date, - "type": "BUY", - "ticker": ticker, - "quantity": quantity - }) - print(f"Buying {ticker} on {date}") - for ticker in risky_tickers: - quantity = int(risky_allocation_per_ticker) - if quantity > 0: - orders.append({ - "date": date, - "type": "SELL", - "ticker": ticker, - "quantity": quantity - }) - print(f"Selling {ticker} on {date}") + + # Long bottom decile (stable stocks) + for ticker in low_vol_tickers: + quantity = int(self.starting_portfolio_value * low_vol_weight / len(low_vol_tickers)) + orders.append({ + "date": date, + "type": "BUY", + "ticker": ticker, + "quantity": quantity + }) + print(f"Buying {ticker} on {date}") + + # Short top decile (risky stocks) + for ticker in high_vol_tickers: + quantity = int(self.starting_portfolio_value * high_vol_weight / len(high_vol_tickers)) + orders.append({ + "date": date, + "type": "SELL", + "ticker": ticker, + "quantity": quantity + }) + print(f"Selling {ticker} on {date}") + return orders def generate_orders(self, data: Dict[str, pd.DataFrame]) -> List[Dict[str, Any]]: - if 'SPY' not in data: - raise ValueError("SPY data is required.") - spy_data = data['SPY'] - spy_dates = spy_data.index - if len(spy_dates) <= self.lookback_period: - raise ValueError("Not enough SPY data.") - start_date = spy_dates[self.lookback_period] - end_date = spy_dates[-1] + """ + Generate orders based on the stable-minus-risky strategy. + """ + # Choose a reference ticker to determine date range + reference_ticker = next(iter(data)) + while reference_ticker == 'SPY' and len(data) > 1: + reference_ticker = next(iter([t for t in data.keys() if t != 'SPY'])) + + reference_data = data[reference_ticker]['Adj Close'] + + # Calculate returns for date range determination + returns = reference_data.pct_change().dropna() + + if len(returns) <= self.lookback_period: + return [] + + start_date = returns.index[self.lookback_period] + end_date = returns.index[-1] + + # Define rebalance dates rebalance_dates = pd.date_range(start=start_date, end=end_date, freq=self.rebalance_frequency) + + # Filter to only dates that exist in our data + valid_dates = [date for date in rebalance_dates if date in returns.index] + all_orders = [] - for date in rebalance_dates: - pr_values = self.calculate_predicted_returns(data, date) - if len(pr_values) < 20: + + for date in valid_dates: + volatility_values = self.calculate_volatilities(data, date) + + # Ensure we have enough stocks to perform the strategy + if len(volatility_values) < 20: continue - orders = self.generate_orders_for_date(pr_values, date) - all_orders.extend(orders) + + date_orders = self.generate_orders_for_date(volatility_values, date) + all_orders.extend(date_orders) + return all_orders \ No newline at end of file