From 5ae253ce56bba8d3c116db5097b460647470866c Mon Sep 17 00:00:00 2001 From: PeterSoojongHa Date: Sat, 22 Mar 2025 18:55:07 -0400 Subject: [PATCH 1/4] Added BAI implementation --- backtester/order_generator.py | 139 +++++++++++++++++++++++++++++++++- 1 file changed, 138 insertions(+), 1 deletion(-) diff --git a/backtester/order_generator.py b/backtester/order_generator.py index b848c9d..91f915c 100644 --- a/backtester/order_generator.py +++ b/backtester/order_generator.py @@ -132,4 +132,141 @@ 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 BettingAgainstIVOLOrderGenerator(OrderGenerator): + """Betting Against Idiosyncratic Volatility (BAI) strategy implementation.""" + + 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_ivol(self, stock_returns: pd.Series, market_returns: pd.Series) -> float: + """ + Calculate Idiosyncratic Volatility (IVOL) of a stock. + """ + if len(stock_returns) < self.lookback_period or len(market_returns) < self.lookback_period: + return np.nan + + # Run a regression + X = market_returns[-self.lookback_period:].values.reshape(-1, 1) + y = stock_returns[-self.lookback_period:].values.reshape(-1, 1) + + + if np.isnan(X).any() or np.isnan(y).any(): + return np.nan + + # Compute residual standard deviation (IVOL) + beta = np.linalg.lstsq(X, y, rcond=None)[0][0] + residuals = y.flatten() - (beta * X.flatten()) + ivol = np.std(residuals) + + return ivol + + + def calculate_ivols(self, data, market_returns, date): + ivol_values = {} + for ticker, df in data.items(): + if ticker == 'SPY': # Market proxy + continue + + stock_returns = df['Adj Close'].pct_change(fill_method=None).dropna() + combined_returns = pd.concat([stock_returns, market_returns], axis=1, join='inner').loc[:date] + combined_returns = combined_returns.iloc[-self.lookback_period:] + + + if len(combined_returns) < self.lookback_period: + continue + + + recent_stock_returns = combined_returns.iloc[:, 0] + recent_market_returns = combined_returns.iloc[:, 1] + + + ivol = self.calculate_ivol(recent_stock_returns, recent_market_returns) + ivol_values[ticker] = ivol + + + return ivol_values + + + def generate_orders_for_date(self, ivol_values, date): + ivol_series = pd.Series(ivol_values) + ivol_series = ivol_series.dropna() + sorted_ivol = ivol_series.sort_values() + + + num_stocks = len(sorted_ivol) + decile_size = max(int(num_stocks * 0.1), 1) + low_ivol_tickers = sorted_ivol.head(decile_size).index.tolist() + high_ivol_tickers = sorted_ivol.tail(decile_size).index.tolist() + + + avg_low_ivol = ivol_series[low_ivol_tickers].mean() + avg_high_ivol = ivol_series[high_ivol_tickers].mean() + + + # Ensure IVOL neutrality with equal weighting + total_low_ivol_weight = 1 / (avg_low_ivol + avg_high_ivol) + total_high_ivol_weight = -1 / (avg_low_ivol + avg_high_ivol) + orders = [] + + + # Long low IVOL, short high IVOL stocks + for ticker in low_ivol_tickers: + quantity = int(self.starting_portfolio_value * total_low_ivol_weight / decile_size) + orders.append({ + "date": date, + "type": "BUY", + "ticker": ticker, + "quantity": quantity + }) + print(f"Buying {ticker} on {date}") + + + for ticker in high_ivol_tickers: + quantity = int(self.starting_portfolio_value * total_high_ivol_weight / decile_size) + 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]]: + spy_data = data.get('SPY') + if spy_data is None: + raise ValueError("SPY data is required for IVOL calculation.") + + spy_returns = spy_data['Adj Close'].pct_change() + spy_returns = spy_returns.dropna() + + + start_date = spy_returns.index[self.lookback_period] + end_date = spy_returns.index[-1] + rebalance_dates = pd.date_range(start=start_date, end=end_date, freq=self.rebalance_frequency) + + + all_orders = [] + + + for date in rebalance_dates: + ivol_values = self.calculate_ivols(data, spy_returns, date) + if len(ivol_values) < 20: + continue + orders = self.generate_orders_for_date(ivol_values, date) + all_orders.extend(orders) + + + return pd.DataFrame(all_orders) + + + + + From 37f83e5a227ed4f9651783e97530061c0f653420 Mon Sep 17 00:00:00 2001 From: PeterSoojongHa Date: Mon, 24 Mar 2025 21:47:18 -0400 Subject: [PATCH 2/4] debugging and added tests for bai implementation --- backtester/bai.ipynb | 20441 ++++++++++++++++++++++++++++++++ backtester/order_generator.py | 9 +- 2 files changed, 20443 insertions(+), 7 deletions(-) create mode 100644 backtester/bai.ipynb diff --git a/backtester/bai.ipynb b/backtester/bai.ipynb new file mode 100644 index 0000000..6ce6e7b --- /dev/null +++ b/backtester/bai.ipynb @@ -0,0 +1,20441 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[*********************100%***********************] 1 of 1 completed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Buying JNJ on 2010-04-30 00:00:00\n", + "Buying L on 2010-04-30 00:00:00\n", + "Buying CLX on 2010-04-30 00:00:00\n", + "Buying XOM on 2010-04-30 00:00:00\n", + "Buying ED on 2010-04-30 00:00:00\n", + "Buying PG on 2010-04-30 00:00:00\n", + "Buying MO on 2010-04-30 00:00:00\n", + "Buying GIS on 2010-04-30 00:00:00\n", + "Buying MCD on 2010-04-30 00:00:00\n", + "Buying NI on 2010-04-30 00:00:00\n", + "Buying SYK on 2010-04-30 00:00:00\n", + "Buying SO on 2010-04-30 00:00:00\n", + "Buying ERIE on 2010-04-30 00:00:00\n", + "Buying IBM on 2010-04-30 00:00:00\n", + "Buying CL on 2010-04-30 00:00:00\n", + "Buying HPQ on 2010-04-30 00:00:00\n", + "Buying WM on 2010-04-30 00:00:00\n", + "Buying WMT on 2010-04-30 00:00:00\n", + "Buying PEP on 2010-04-30 00:00:00\n", + "Buying MMC on 2010-04-30 00:00:00\n", + "Buying T on 2010-04-30 00:00:00\n", + "Buying CVX on 2010-04-30 00:00:00\n", + "Buying CINF on 2010-04-30 00:00:00\n", + "Buying BDX on 2010-04-30 00:00:00\n", + "Buying WEC on 2010-04-30 00:00:00\n", + "Buying AEP on 2010-04-30 00:00:00\n", + "Buying CPB on 2010-04-30 00:00:00\n", + "Buying ATO on 2010-04-30 00:00:00\n", + "Buying HSIC on 2010-04-30 00:00:00\n", + "Buying PCG on 2010-04-30 00:00:00\n", + "Buying XEL on 2010-04-30 00:00:00\n", + "Buying D on 2010-04-30 00:00:00\n", + "Buying ES on 2010-04-30 00:00:00\n", + "Buying SJM on 2010-04-30 00:00:00\n", + "Buying JKHY on 2010-04-30 00:00:00\n", + "Buying COST on 2010-04-30 00:00:00\n", + "Buying AON on 2010-04-30 00:00:00\n", + "Buying MSFT on 2010-04-30 00:00:00\n", + "Buying ADP on 2010-04-30 00:00:00\n", + "Buying AEE on 2010-04-30 00:00:00\n", + "Buying LLY on 2010-04-30 00:00:00\n", + "Buying MKC on 2010-04-30 00:00:00\n", + "Buying VZ on 2010-04-30 00:00:00\n", + "Selling F on 2010-04-30 00:00:00\n", + "Selling DG on 2010-04-30 00:00:00\n", + "Selling RMD on 2010-04-30 00:00:00\n", + "Selling RCL on 2010-04-30 00:00:00\n", + "Selling GS on 2010-04-30 00:00:00\n", + "Selling CNC on 2010-04-30 00:00:00\n", + "Selling INCY on 2010-04-30 00:00:00\n", + "Selling WYNN on 2010-04-30 00:00:00\n", + "Selling TXT on 2010-04-30 00:00:00\n", + "Selling KEY on 2010-04-30 00:00:00\n", + "Selling DPZ on 2010-04-30 00:00:00\n", + "Selling TTWO on 2010-04-30 00:00:00\n", + "Selling RF on 2010-04-30 00:00:00\n", + "Selling PODD on 2010-04-30 00:00:00\n", + "Selling WDC on 2010-04-30 00:00:00\n", + "Selling BLDR on 2010-04-30 00:00:00\n", + "Selling DXCM on 2010-04-30 00:00:00\n", + "Selling STX on 2010-04-30 00:00:00\n", + "Selling C on 2010-04-30 00:00:00\n", + "Selling MU on 2010-04-30 00:00:00\n", + "Selling IPG on 2010-04-30 00:00:00\n", + "Selling MSCI on 2010-04-30 00:00:00\n", + "Selling CMG on 2010-04-30 00:00:00\n", + "Selling CRL on 2010-04-30 00:00:00\n", + "Selling ALGN on 2010-04-30 00:00:00\n", + "Selling LEN on 2010-04-30 00:00:00\n", + "Selling LULU on 2010-04-30 00:00:00\n", + "Selling AKAM on 2010-04-30 00:00:00\n", + "Selling ULTA on 2010-04-30 00:00:00\n", + "Selling BSX on 2010-04-30 00:00:00\n", + "Selling DAL on 2010-04-30 00:00:00\n", + "Selling HBAN on 2010-04-30 00:00:00\n", + "Selling DECK on 2010-04-30 00:00:00\n", + "Selling NFLX on 2010-04-30 00:00:00\n", + "Selling REGN on 2010-04-30 00:00:00\n", + "Selling LVS on 2010-04-30 00:00:00\n", + "Selling SMCI on 2010-04-30 00:00:00\n", + "Selling FSLR on 2010-04-30 00:00:00\n", + "Selling MGM on 2010-04-30 00:00:00\n", + "Selling URI on 2010-04-30 00:00:00\n", + "Selling AXON on 2010-04-30 00:00:00\n", + "Selling UAL on 2010-04-30 00:00:00\n", + "Selling AIG on 2010-04-30 00:00:00\n", + "Buying ED on 2010-05-31 00:00:00\n", + "Buying WM on 2010-05-31 00:00:00\n", + "Buying XOM on 2010-05-31 00:00:00\n", + "Buying L on 2010-05-31 00:00:00\n", + "Buying JNJ on 2010-05-31 00:00:00\n", + "Buying CPB on 2010-05-31 00:00:00\n", + "Buying CINF on 2010-05-31 00:00:00\n", + "Buying MMC 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 AEP on 2010-05-31 00:00:00\n", + "Buying CLX on 2010-05-31 00:00:00\n", + "Buying PG on 2010-05-31 00:00:00\n", + "Buying ADP on 2010-05-31 00:00:00\n", + "Buying XEL on 2010-05-31 00:00:00\n", + "Buying PCG on 2010-05-31 00:00:00\n", + "Buying MO on 2010-05-31 00:00:00\n", + "Buying CVX on 2010-05-31 00:00:00\n", + "Buying WEC on 2010-05-31 00:00:00\n", + "Buying GD on 2010-05-31 00:00:00\n", + "Buying BDX on 2010-05-31 00:00:00\n", + "Buying MCD on 2010-05-31 00:00:00\n", + "Buying AON on 2010-05-31 00:00:00\n", + "Buying BRK-B on 2010-05-31 00:00:00\n", + "Buying T on 2010-05-31 00:00:00\n", + "Buying CL on 2010-05-31 00:00:00\n", + "Buying NOC on 2010-05-31 00:00:00\n", + "Buying GIS on 2010-05-31 00:00:00\n", + "Buying D on 2010-05-31 00:00:00\n", + "Buying CTAS on 2010-05-31 00:00:00\n", + "Buying HSIC on 2010-05-31 00:00:00\n", + "Buying SNPS on 2010-05-31 00:00:00\n", + "Buying KMB on 2010-05-31 00:00:00\n", + "Buying DTE on 2010-05-31 00:00:00\n", + "Buying ES on 2010-05-31 00:00:00\n", + "Buying PEP on 2010-05-31 00:00:00\n", + "Buying LLY on 2010-05-31 00:00:00\n", + "Buying CNP on 2010-05-31 00:00:00\n", + "Buying BALL on 2010-05-31 00:00:00\n", + "Buying CHRW on 2010-05-31 00:00:00\n", + "Buying ECL on 2010-05-31 00:00:00\n", + "Buying ATO on 2010-05-31 00:00:00\n", + "Buying MKC on 2010-05-31 00:00:00\n", + "Selling TER on 2010-05-31 00:00:00\n", + "Selling CTRA on 2010-05-31 00:00:00\n", + "Selling UHS on 2010-05-31 00:00:00\n", + "Selling FIS on 2010-05-31 00:00:00\n", + "Selling NTAP on 2010-05-31 00:00:00\n", + "Selling RF on 2010-05-31 00:00:00\n", + "Selling CMG on 2010-05-31 00:00:00\n", + "Selling MCO on 2010-05-31 00:00:00\n", + "Selling MU on 2010-05-31 00:00:00\n", + "Selling KEY on 2010-05-31 00:00:00\n", + "Selling GRMN on 2010-05-31 00:00:00\n", + "Selling BAX on 2010-05-31 00:00:00\n", + "Selling PODD on 2010-05-31 00:00:00\n", + "Selling CNC on 2010-05-31 00:00:00\n", + "Selling HOLX on 2010-05-31 00:00:00\n", + "Selling BSX on 2010-05-31 00:00:00\n", + "Selling BLDR on 2010-05-31 00:00:00\n", + "Selling LEN on 2010-05-31 00:00:00\n", + "Selling BKNG on 2010-05-31 00:00:00\n", + "Selling DECK on 2010-05-31 00:00:00\n", + "Selling GS on 2010-05-31 00:00:00\n", + "Selling TMUS on 2010-05-31 00:00:00\n", + "Selling CRL on 2010-05-31 00:00:00\n", + "Selling C on 2010-05-31 00:00:00\n", + "Selling DPZ on 2010-05-31 00:00:00\n", + "Selling TXT on 2010-05-31 00:00:00\n", + "Selling DXCM on 2010-05-31 00:00:00\n", + "Selling ALGN on 2010-05-31 00:00:00\n", + "Selling AKAM on 2010-05-31 00:00:00\n", + "Selling DAL on 2010-05-31 00:00:00\n", + "Selling ULTA on 2010-05-31 00:00:00\n", + "Selling HBAN on 2010-05-31 00:00:00\n", + "Selling AXON on 2010-05-31 00:00:00\n", + "Selling REGN on 2010-05-31 00:00:00\n", + "Selling UAL on 2010-05-31 00:00:00\n", + "Selling LVS on 2010-05-31 00:00:00\n", + "Selling LULU on 2010-05-31 00:00:00\n", + "Selling MGM on 2010-05-31 00:00:00\n", + "Selling SMCI on 2010-05-31 00:00:00\n", + "Selling FSLR on 2010-05-31 00:00:00\n", + "Selling URI on 2010-05-31 00:00:00\n", + "Selling NFLX on 2010-05-31 00:00:00\n", + "Selling AIG on 2010-05-31 00:00:00\n", + "Buying WM on 2010-06-30 00:00:00\n", + "Buying ED on 2010-06-30 00:00:00\n", + "Buying CINF on 2010-06-30 00:00:00\n", + "Buying CTAS on 2010-06-30 00:00:00\n", + "Buying ADP on 2010-06-30 00:00:00\n", + "Buying CLX on 2010-06-30 00:00:00\n", + "Buying MKC on 2010-06-30 00:00:00\n", + "Buying CPB on 2010-06-30 00:00:00\n", + "Buying CAG on 2010-06-30 00:00:00\n", + "Buying MCD on 2010-06-30 00:00:00\n", + "Buying PAYX on 2010-06-30 00:00:00\n", + "Buying SO on 2010-06-30 00:00:00\n", + "Buying IFF on 2010-06-30 00:00:00\n", + "Buying KMB on 2010-06-30 00:00:00\n", + "Buying ACGL on 2010-06-30 00:00:00\n", + "Buying T on 2010-06-30 00:00:00\n", + "Buying HON on 2010-06-30 00:00:00\n", + "Buying AON on 2010-06-30 00:00:00\n", + "Buying ECL on 2010-06-30 00:00:00\n", + "Buying XEL on 2010-06-30 00:00:00\n", + "Buying NOC on 2010-06-30 00:00:00\n", + "Buying GD on 2010-06-30 00:00:00\n", + "Buying CHRW on 2010-06-30 00:00:00\n", + "Buying JNJ on 2010-06-30 00:00:00\n", + "Buying LLY on 2010-06-30 00:00:00\n", + "Buying DTE on 2010-06-30 00:00:00\n", + "Buying CL on 2010-06-30 00:00:00\n", + "Buying BDX on 2010-06-30 00:00:00\n", + "Buying MDT on 2010-06-30 00:00:00\n", + "Buying XOM on 2010-06-30 00:00:00\n", + "Buying AEP on 2010-06-30 00:00:00\n", + "Buying MMM on 2010-06-30 00:00:00\n", + "Buying LH on 2010-06-30 00:00:00\n", + "Buying D on 2010-06-30 00:00:00\n", + "Buying PPG on 2010-06-30 00:00:00\n", + "Buying VZ on 2010-06-30 00:00:00\n", + "Buying L on 2010-06-30 00:00:00\n", + "Buying ABT on 2010-06-30 00:00:00\n", + "Buying LMT on 2010-06-30 00:00:00\n", + "Buying ORCL on 2010-06-30 00:00:00\n", + "Buying CVX on 2010-06-30 00:00:00\n", + "Buying HPQ on 2010-06-30 00:00:00\n", + "Buying PCG on 2010-06-30 00:00:00\n", + "Selling NVDA on 2010-06-30 00:00:00\n", + "Selling FIS on 2010-06-30 00:00:00\n", + "Selling C on 2010-06-30 00:00:00\n", + "Selling V on 2010-06-30 00:00:00\n", + "Selling JBL on 2010-06-30 00:00:00\n", + "Selling TER on 2010-06-30 00:00:00\n", + "Selling GRMN on 2010-06-30 00:00:00\n", + "Selling CMG on 2010-06-30 00:00:00\n", + "Selling CTRA on 2010-06-30 00:00:00\n", + "Selling FICO on 2010-06-30 00:00:00\n", + "Selling BAX on 2010-06-30 00:00:00\n", + "Selling TTWO on 2010-06-30 00:00:00\n", + "Selling CF on 2010-06-30 00:00:00\n", + "Selling LVS on 2010-06-30 00:00:00\n", + "Selling LEN on 2010-06-30 00:00:00\n", + "Selling DECK on 2010-06-30 00:00:00\n", + "Selling MU on 2010-06-30 00:00:00\n", + "Selling DPZ on 2010-06-30 00:00:00\n", + "Selling BKNG on 2010-06-30 00:00:00\n", + "Selling GS on 2010-06-30 00:00:00\n", + "Selling ALGN on 2010-06-30 00:00:00\n", + "Selling TMUS on 2010-06-30 00:00:00\n", + "Selling MCO on 2010-06-30 00:00:00\n", + "Selling HBAN on 2010-06-30 00:00:00\n", + "Selling CRL on 2010-06-30 00:00:00\n", + "Selling TXT on 2010-06-30 00:00:00\n", + "Selling MGM on 2010-06-30 00:00:00\n", + "Selling LULU on 2010-06-30 00:00:00\n", + "Selling GNRC on 2010-06-30 00:00:00\n", + "Selling DAL on 2010-06-30 00:00:00\n", + "Selling BLDR on 2010-06-30 00:00:00\n", + "Selling AXON on 2010-06-30 00:00:00\n", + "Selling UAL on 2010-06-30 00:00:00\n", + "Selling AKAM on 2010-06-30 00:00:00\n", + "Selling REGN on 2010-06-30 00:00:00\n", + "Selling HAL on 2010-06-30 00:00:00\n", + "Selling DXCM on 2010-06-30 00:00:00\n", + "Selling ULTA on 2010-06-30 00:00:00\n", + "Selling FSLR on 2010-06-30 00:00:00\n", + "Selling URI on 2010-06-30 00:00:00\n", + "Selling AIG on 2010-06-30 00:00:00\n", + "Selling NFLX on 2010-06-30 00:00:00\n", + "Selling SMCI on 2010-06-30 00:00:00\n", + "Buying WM on 2010-07-31 00:00:00\n", + "Buying CLX on 2010-07-31 00:00:00\n", + "Buying CINF on 2010-07-31 00:00:00\n", + "Buying KMB on 2010-07-31 00:00:00\n", + "Buying ED on 2010-07-31 00:00:00\n", + "Buying CTAS on 2010-07-31 00:00:00\n", + "Buying CAG on 2010-07-31 00:00:00\n", + "Buying PGR on 2010-07-31 00:00:00\n", + "Buying XEL on 2010-07-31 00:00:00\n", + "Buying HON on 2010-07-31 00:00:00\n", + "Buying ADP on 2010-07-31 00:00:00\n", + "Buying RTX on 2010-07-31 00:00:00\n", + "Buying MMM 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 SYY on 2010-07-31 00:00:00\n", + "Buying IFF on 2010-07-31 00:00:00\n", + "Buying ROP on 2010-07-31 00:00:00\n", + "Buying CPB on 2010-07-31 00:00:00\n", + "Buying XOM on 2010-07-31 00:00:00\n", + "Buying SO on 2010-07-31 00:00:00\n", + "Buying ABT on 2010-07-31 00:00:00\n", + "Buying L on 2010-07-31 00:00:00\n", + "Buying CVX on 2010-07-31 00:00:00\n", + "Buying MCD on 2010-07-31 00:00:00\n", + "Buying LLY on 2010-07-31 00:00:00\n", + "Buying AEP on 2010-07-31 00:00:00\n", + "Buying DUK on 2010-07-31 00:00:00\n", + "Buying LMT on 2010-07-31 00:00:00\n", + "Buying LIN on 2010-07-31 00:00:00\n", + "Buying EVRG on 2010-07-31 00:00:00\n", + "Buying SNA on 2010-07-31 00:00:00\n", + "Buying PAYX on 2010-07-31 00:00:00\n", + "Buying ATO on 2010-07-31 00:00:00\n", + "Buying ORCL on 2010-07-31 00:00:00\n", + "Buying BDX on 2010-07-31 00:00:00\n", + "Buying PG on 2010-07-31 00:00:00\n", + "Buying PCG on 2010-07-31 00:00:00\n", + "Buying HPQ on 2010-07-31 00:00:00\n", + "Buying JNJ on 2010-07-31 00:00:00\n", + "Buying ERIE on 2010-07-31 00:00:00\n", + "Buying D on 2010-07-31 00:00:00\n", + "Buying GWW on 2010-07-31 00:00:00\n", + "Selling MHK on 2010-07-31 00:00:00\n", + "Selling FCX on 2010-07-31 00:00:00\n", + "Selling LYB on 2010-07-31 00:00:00\n", + "Selling TER on 2010-07-31 00:00:00\n", + "Selling AIG on 2010-07-31 00:00:00\n", + "Selling STX on 2010-07-31 00:00:00\n", + "Selling JBL on 2010-07-31 00:00:00\n", + "Selling LEN on 2010-07-31 00:00:00\n", + "Selling LULU on 2010-07-31 00:00:00\n", + "Selling KMX on 2010-07-31 00:00:00\n", + "Selling LVS on 2010-07-31 00:00:00\n", + "Selling NTAP on 2010-07-31 00:00:00\n", + "Selling CNC on 2010-07-31 00:00:00\n", + "Selling V on 2010-07-31 00:00:00\n", + "Selling MOH on 2010-07-31 00:00:00\n", + "Selling FSLR on 2010-07-31 00:00:00\n", + "Selling AKAM on 2010-07-31 00:00:00\n", + "Selling LYV on 2010-07-31 00:00:00\n", + "Selling MAS on 2010-07-31 00:00:00\n", + "Selling MU on 2010-07-31 00:00:00\n", + "Selling DAL on 2010-07-31 00:00:00\n", + "Selling NVDA on 2010-07-31 00:00:00\n", + "Selling CF on 2010-07-31 00:00:00\n", + "Selling TXT on 2010-07-31 00:00:00\n", + "Selling UAL on 2010-07-31 00:00:00\n", + "Selling MCO on 2010-07-31 00:00:00\n", + "Selling TTWO on 2010-07-31 00:00:00\n", + "Selling BKNG on 2010-07-31 00:00:00\n", + "Selling MKTX on 2010-07-31 00:00:00\n", + "Selling MOS on 2010-07-31 00:00:00\n", + "Selling TMUS on 2010-07-31 00:00:00\n", + "Selling REGN on 2010-07-31 00:00:00\n", + "Selling SMCI on 2010-07-31 00:00:00\n", + "Selling BG on 2010-07-31 00:00:00\n", + "Selling ULTA on 2010-07-31 00:00:00\n", + "Selling GNRC on 2010-07-31 00:00:00\n", + "Selling DXCM on 2010-07-31 00:00:00\n", + "Selling HAL on 2010-07-31 00:00:00\n", + "Selling URI on 2010-07-31 00:00:00\n", + "Selling ALGN on 2010-07-31 00:00:00\n", + "Selling AXON on 2010-07-31 00:00:00\n", + "Selling BLDR on 2010-07-31 00:00:00\n", + "Selling NFLX on 2010-07-31 00:00:00\n", + "Buying KMB on 2010-08-31 00:00:00\n", + "Buying CLX on 2010-08-31 00:00:00\n", + "Buying DIS on 2010-08-31 00:00:00\n", + "Buying WM on 2010-08-31 00:00:00\n", + "Buying LIN on 2010-08-31 00:00:00\n", + "Buying CINF on 2010-08-31 00:00:00\n", + "Buying RTX on 2010-08-31 00:00:00\n", + "Buying CTAS on 2010-08-31 00:00:00\n", + "Buying ED on 2010-08-31 00:00:00\n", + "Buying ADP on 2010-08-31 00:00:00\n", + "Buying ATO on 2010-08-31 00:00:00\n", + "Buying LMT on 2010-08-31 00:00:00\n", + "Buying HON on 2010-08-31 00:00:00\n", + "Buying MMM on 2010-08-31 00:00:00\n", + "Buying EVRG on 2010-08-31 00:00:00\n", + "Buying L on 2010-08-31 00:00:00\n", + "Buying APD on 2010-08-31 00:00:00\n", + "Buying MDLZ on 2010-08-31 00:00:00\n", + "Buying CVX on 2010-08-31 00:00:00\n", + "Buying DHR on 2010-08-31 00:00:00\n", + "Buying CPB on 2010-08-31 00:00:00\n", + "Buying SO on 2010-08-31 00:00:00\n", + "Buying PGR on 2010-08-31 00:00:00\n", + "Buying T on 2010-08-31 00:00:00\n", + "Buying ABT on 2010-08-31 00:00:00\n", + "Buying DUK on 2010-08-31 00:00:00\n", + "Buying UPS on 2010-08-31 00:00:00\n", + "Buying MKC on 2010-08-31 00:00:00\n", + "Buying NKE on 2010-08-31 00:00:00\n", + "Buying ERIE on 2010-08-31 00:00:00\n", + "Buying ES on 2010-08-31 00:00:00\n", + "Buying WRB on 2010-08-31 00:00:00\n", + "Buying XEL on 2010-08-31 00:00:00\n", + "Buying IBM on 2010-08-31 00:00:00\n", + "Buying SNA on 2010-08-31 00:00:00\n", + "Buying BALL on 2010-08-31 00:00:00\n", + "Buying ROP on 2010-08-31 00:00:00\n", + "Buying KO on 2010-08-31 00:00:00\n", + "Buying MCD on 2010-08-31 00:00:00\n", + "Buying CAG on 2010-08-31 00:00:00\n", + "Buying NI on 2010-08-31 00:00:00\n", + "Buying AJG on 2010-08-31 00:00:00\n", + "Buying JNJ on 2010-08-31 00:00:00\n", + "Selling LULU on 2010-08-31 00:00:00\n", + "Selling LVS on 2010-08-31 00:00:00\n", + "Selling DHI on 2010-08-31 00:00:00\n", + "Selling GEN on 2010-08-31 00:00:00\n", + "Selling ODFL on 2010-08-31 00:00:00\n", + "Selling MPWR on 2010-08-31 00:00:00\n", + "Selling TER on 2010-08-31 00:00:00\n", + "Selling INTU on 2010-08-31 00:00:00\n", + "Selling GNRC on 2010-08-31 00:00:00\n", + "Selling DAL on 2010-08-31 00:00:00\n", + "Selling CNC on 2010-08-31 00:00:00\n", + "Selling FFIV on 2010-08-31 00:00:00\n", + "Selling TXT on 2010-08-31 00:00:00\n", + "Selling MHK on 2010-08-31 00:00:00\n", + "Selling HOLX on 2010-08-31 00:00:00\n", + "Selling TPL on 2010-08-31 00:00:00\n", + "Selling KMX on 2010-08-31 00:00:00\n", + "Selling WDC on 2010-08-31 00:00:00\n", + "Selling BKR on 2010-08-31 00:00:00\n", + "Selling TTWO on 2010-08-31 00:00:00\n", + "Selling STX on 2010-08-31 00:00:00\n", + "Selling ULTA on 2010-08-31 00:00:00\n", + "Selling MKTX on 2010-08-31 00:00:00\n", + "Selling JBL on 2010-08-31 00:00:00\n", + "Selling LYV on 2010-08-31 00:00:00\n", + "Selling CF on 2010-08-31 00:00:00\n", + "Selling MU on 2010-08-31 00:00:00\n", + "Selling MAS on 2010-08-31 00:00:00\n", + "Selling UAL on 2010-08-31 00:00:00\n", + "Selling DXCM on 2010-08-31 00:00:00\n", + "Selling BG on 2010-08-31 00:00:00\n", + "Selling CRM on 2010-08-31 00:00:00\n", + "Selling NVDA on 2010-08-31 00:00:00\n", + "Selling MOH on 2010-08-31 00:00:00\n", + "Selling AKAM on 2010-08-31 00:00:00\n", + "Selling MOS on 2010-08-31 00:00:00\n", + "Selling ALGN on 2010-08-31 00:00:00\n", + "Selling AXON on 2010-08-31 00:00:00\n", + "Selling URI on 2010-08-31 00:00:00\n", + "Selling BKNG on 2010-08-31 00:00:00\n", + "Selling NFLX on 2010-08-31 00:00:00\n", + "Selling BLDR on 2010-08-31 00:00:00\n", + "Selling SMCI on 2010-08-31 00:00:00\n", + "Buying CLX on 2010-09-30 00:00:00\n", + "Buying WM on 2010-09-30 00:00:00\n", + "Buying KMB on 2010-09-30 00:00:00\n", + "Buying ADP on 2010-09-30 00:00:00\n", + "Buying MMM on 2010-09-30 00:00:00\n", + "Buying CVX on 2010-09-30 00:00:00\n", + "Buying PM on 2010-09-30 00:00:00\n", + "Buying CINF on 2010-09-30 00:00:00\n", + "Buying BRK-B on 2010-09-30 00:00:00\n", + "Buying L on 2010-09-30 00:00:00\n", + "Buying KO on 2010-09-30 00:00:00\n", + "Buying DIS on 2010-09-30 00:00:00\n", + "Buying WEC on 2010-09-30 00:00:00\n", + "Buying XOM on 2010-09-30 00:00:00\n", + "Buying CTAS on 2010-09-30 00:00:00\n", + "Buying ATO on 2010-09-30 00:00:00\n", + "Buying MO on 2010-09-30 00:00:00\n", + "Buying RTX on 2010-09-30 00:00:00\n", + "Buying LIN on 2010-09-30 00:00:00\n", + "Buying HRL on 2010-09-30 00:00:00\n", + "Buying EVRG on 2010-09-30 00:00:00\n", + "Buying JKHY on 2010-09-30 00:00:00\n", + "Buying ED on 2010-09-30 00:00:00\n", + "Buying DUK on 2010-09-30 00:00:00\n", + "Buying ABT on 2010-09-30 00:00:00\n", + "Buying SO on 2010-09-30 00:00:00\n", + "Buying T on 2010-09-30 00:00:00\n", + "Buying ERIE on 2010-09-30 00:00:00\n", + "Buying BALL on 2010-09-30 00:00:00\n", + "Buying PG on 2010-09-30 00:00:00\n", + "Buying STZ on 2010-09-30 00:00:00\n", + "Buying JNJ on 2010-09-30 00:00:00\n", + "Buying WMT on 2010-09-30 00:00:00\n", + "Buying NKE on 2010-09-30 00:00:00\n", + "Buying COP on 2010-09-30 00:00:00\n", + "Buying GE on 2010-09-30 00:00:00\n", + "Buying MDLZ on 2010-09-30 00:00:00\n", + "Buying OKE on 2010-09-30 00:00:00\n", + "Buying HON on 2010-09-30 00:00:00\n", + "Buying IBM on 2010-09-30 00:00:00\n", + "Buying SNA on 2010-09-30 00:00:00\n", + "Buying WELL on 2010-09-30 00:00:00\n", + "Buying UPS on 2010-09-30 00:00:00\n", + "Selling TXT on 2010-09-30 00:00:00\n", + "Selling LVS on 2010-09-30 00:00:00\n", + "Selling BX on 2010-09-30 00:00:00\n", + "Selling BSX on 2010-09-30 00:00:00\n", + "Selling CF on 2010-09-30 00:00:00\n", + "Selling TTWO on 2010-09-30 00:00:00\n", + "Selling KMX on 2010-09-30 00:00:00\n", + "Selling AVGO on 2010-09-30 00:00:00\n", + "Selling GEN on 2010-09-30 00:00:00\n", + "Selling TER on 2010-09-30 00:00:00\n", + "Selling INTU on 2010-09-30 00:00:00\n", + "Selling UAL on 2010-09-30 00:00:00\n", + "Selling AMD on 2010-09-30 00:00:00\n", + "Selling CBOE on 2010-09-30 00:00:00\n", + "Selling FFIV on 2010-09-30 00:00:00\n", + "Selling MOH on 2010-09-30 00:00:00\n", + "Selling MAS on 2010-09-30 00:00:00\n", + "Selling MPWR on 2010-09-30 00:00:00\n", + "Selling LYV on 2010-09-30 00:00:00\n", + "Selling STX on 2010-09-30 00:00:00\n", + "Selling HOLX on 2010-09-30 00:00:00\n", + "Selling FTNT on 2010-09-30 00:00:00\n", + "Selling WDC on 2010-09-30 00:00:00\n", + "Selling MKTX on 2010-09-30 00:00:00\n", + "Selling MU on 2010-09-30 00:00:00\n", + "Selling URI on 2010-09-30 00:00:00\n", + "Selling EW on 2010-09-30 00:00:00\n", + "Selling ALGN on 2010-09-30 00:00:00\n", + "Selling CRM on 2010-09-30 00:00:00\n", + "Selling LULU on 2010-09-30 00:00:00\n", + "Selling BG on 2010-09-30 00:00:00\n", + "Selling AKAM on 2010-09-30 00:00:00\n", + "Selling TPL on 2010-09-30 00:00:00\n", + "Selling NVDA on 2010-09-30 00:00:00\n", + "Selling AXON on 2010-09-30 00:00:00\n", + "Selling MOS on 2010-09-30 00:00:00\n", + "Selling ULTA on 2010-09-30 00:00:00\n", + "Selling ADBE on 2010-09-30 00:00:00\n", + "Selling BKNG on 2010-09-30 00:00:00\n", + "Selling NFLX on 2010-09-30 00:00:00\n", + "Selling TSLA on 2010-09-30 00:00:00\n", + "Selling BLDR on 2010-09-30 00:00:00\n", + "Selling SMCI on 2010-09-30 00:00:00\n", + "Buying JNJ on 2010-10-31 00:00:00\n", + "Buying PG on 2010-10-31 00:00:00\n", + "Buying KO on 2010-10-31 00:00:00\n", + "Buying CLX on 2010-10-31 00:00:00\n", + "Buying ADP on 2010-10-31 00:00:00\n", + "Buying WTW on 2010-10-31 00:00:00\n", + "Buying ATO on 2010-10-31 00:00:00\n", + "Buying L on 2010-10-31 00:00:00\n", + "Buying SO on 2010-10-31 00:00:00\n", + "Buying RTX on 2010-10-31 00:00:00\n", + "Buying PPG on 2010-10-31 00:00:00\n", + "Buying WM on 2010-10-31 00:00:00\n", + "Buying DUK on 2010-10-31 00:00:00\n", + "Buying JKHY on 2010-10-31 00:00:00\n", + "Buying XOM on 2010-10-31 00:00:00\n", + "Buying BRK-B on 2010-10-31 00:00:00\n", + "Buying WEC on 2010-10-31 00:00:00\n", + "Buying NKE on 2010-10-31 00:00:00\n", + "Buying CVX 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 MO on 2010-10-31 00:00:00\n", + "Buying ACGL on 2010-10-31 00:00:00\n", + "Buying EVRG on 2010-10-31 00:00:00\n", + "Buying BDX on 2010-10-31 00:00:00\n", + "Buying SNA on 2010-10-31 00:00:00\n", + "Buying XEL on 2010-10-31 00:00:00\n", + "Buying ABT on 2010-10-31 00:00:00\n", + "Buying HON on 2010-10-31 00:00:00\n", + "Buying DTE on 2010-10-31 00:00:00\n", + "Buying CTAS on 2010-10-31 00:00:00\n", + "Buying COP on 2010-10-31 00:00:00\n", + "Buying IFF on 2010-10-31 00:00:00\n", + "Buying PAYX on 2010-10-31 00:00:00\n", + "Buying WMT on 2010-10-31 00:00:00\n", + "Buying SRE on 2010-10-31 00:00:00\n", + "Buying IEX on 2010-10-31 00:00:00\n", + "Buying T on 2010-10-31 00:00:00\n", + "Buying PCAR on 2010-10-31 00:00:00\n", + "Buying PEP on 2010-10-31 00:00:00\n", + "Buying LNT on 2010-10-31 00:00:00\n", + "Buying WRB on 2010-10-31 00:00:00\n", + "Buying FI on 2010-10-31 00:00:00\n", + "Selling RF on 2010-10-31 00:00:00\n", + "Selling URI on 2010-10-31 00:00:00\n", + "Selling TTWO on 2010-10-31 00:00:00\n", + "Selling REGN on 2010-10-31 00:00:00\n", + "Selling KMX on 2010-10-31 00:00:00\n", + "Selling JBL on 2010-10-31 00:00:00\n", + "Selling TER on 2010-10-31 00:00:00\n", + "Selling GNRC on 2010-10-31 00:00:00\n", + "Selling NTAP on 2010-10-31 00:00:00\n", + "Selling DECK on 2010-10-31 00:00:00\n", + "Selling TSN on 2010-10-31 00:00:00\n", + "Selling MPWR on 2010-10-31 00:00:00\n", + "Selling AXON on 2010-10-31 00:00:00\n", + "Selling CMG on 2010-10-31 00:00:00\n", + "Selling AVGO on 2010-10-31 00:00:00\n", + "Selling RCL on 2010-10-31 00:00:00\n", + "Selling INTU on 2010-10-31 00:00:00\n", + "Selling UAL on 2010-10-31 00:00:00\n", + "Selling WDC on 2010-10-31 00:00:00\n", + "Selling CF on 2010-10-31 00:00:00\n", + "Selling ALGN on 2010-10-31 00:00:00\n", + "Selling DAL on 2010-10-31 00:00:00\n", + "Selling LVS on 2010-10-31 00:00:00\n", + "Selling AKAM on 2010-10-31 00:00:00\n", + "Selling NVDA on 2010-10-31 00:00:00\n", + "Selling EW on 2010-10-31 00:00:00\n", + "Selling AMD on 2010-10-31 00:00:00\n", + "Selling TSLA on 2010-10-31 00:00:00\n", + "Selling MOS on 2010-10-31 00:00:00\n", + "Selling MU on 2010-10-31 00:00:00\n", + "Selling LULU on 2010-10-31 00:00:00\n", + "Selling SMCI on 2010-10-31 00:00:00\n", + "Selling ULTA on 2010-10-31 00:00:00\n", + "Selling CRM on 2010-10-31 00:00:00\n", + "Selling TPL on 2010-10-31 00:00:00\n", + "Selling MGM on 2010-10-31 00:00:00\n", + "Selling BLDR on 2010-10-31 00:00:00\n", + "Selling FFIV on 2010-10-31 00:00:00\n", + "Selling NFLX on 2010-10-31 00:00:00\n", + "Selling ADBE on 2010-10-31 00:00:00\n", + "Selling FTNT on 2010-10-31 00:00:00\n", + "Selling STX on 2010-10-31 00:00:00\n", + "Selling EQIX on 2010-10-31 00:00:00\n", + "Buying JNJ on 2010-11-30 00:00:00\n", + "Buying SO on 2010-11-30 00:00:00\n", + "Buying ATO on 2010-11-30 00:00:00\n", + "Buying KO on 2010-11-30 00:00:00\n", + "Buying DUK on 2010-11-30 00:00:00\n", + "Buying PG on 2010-11-30 00:00:00\n", + "Buying XEL on 2010-11-30 00:00:00\n", + "Buying L on 2010-11-30 00:00:00\n", + "Buying ADP on 2010-11-30 00:00:00\n", + "Buying PPG on 2010-11-30 00:00:00\n", + "Buying ED on 2010-11-30 00:00:00\n", + "Buying WEC on 2010-11-30 00:00:00\n", + "Buying RTX on 2010-11-30 00:00:00\n", + "Buying BRK-B on 2010-11-30 00:00:00\n", + "Buying XOM on 2010-11-30 00:00:00\n", + "Buying WMT on 2010-11-30 00:00:00\n", + "Buying JKHY on 2010-11-30 00:00:00\n", + "Buying T on 2010-11-30 00:00:00\n", + "Buying LNT on 2010-11-30 00:00:00\n", + "Buying SNA on 2010-11-30 00:00:00\n", + "Buying IBM on 2010-11-30 00:00:00\n", + "Buying WM on 2010-11-30 00:00:00\n", + "Buying AEP on 2010-11-30 00:00:00\n", + "Buying COP on 2010-11-30 00:00:00\n", + "Buying BDX on 2010-11-30 00:00:00\n", + "Buying EVRG on 2010-11-30 00:00:00\n", + "Buying SNPS on 2010-11-30 00:00:00\n", + "Buying OMC on 2010-11-30 00:00:00\n", + "Buying WTW on 2010-11-30 00:00:00\n", + "Buying ABT on 2010-11-30 00:00:00\n", + "Buying MKC on 2010-11-30 00:00:00\n", + "Buying PNW on 2010-11-30 00:00:00\n", + "Buying NEE on 2010-11-30 00:00:00\n", + "Buying CVX on 2010-11-30 00:00:00\n", + "Buying EFX on 2010-11-30 00:00:00\n", + "Buying SJM on 2010-11-30 00:00:00\n", + "Buying WAT on 2010-11-30 00:00:00\n", + "Buying D on 2010-11-30 00:00:00\n", + "Buying DTE on 2010-11-30 00:00:00\n", + "Buying PAYX on 2010-11-30 00:00:00\n", + "Buying PEP on 2010-11-30 00:00:00\n", + "Buying MO on 2010-11-30 00:00:00\n", + "Buying ACGL on 2010-11-30 00:00:00\n", + "Selling PWR on 2010-11-30 00:00:00\n", + "Selling CTRA on 2010-11-30 00:00:00\n", + "Selling NVDA on 2010-11-30 00:00:00\n", + "Selling NTAP on 2010-11-30 00:00:00\n", + "Selling BKNG on 2010-11-30 00:00:00\n", + "Selling FSLR on 2010-11-30 00:00:00\n", + "Selling AMD on 2010-11-30 00:00:00\n", + "Selling TER on 2010-11-30 00:00:00\n", + "Selling AKAM on 2010-11-30 00:00:00\n", + "Selling AVGO on 2010-11-30 00:00:00\n", + "Selling TSN on 2010-11-30 00:00:00\n", + "Selling PODD on 2010-11-30 00:00:00\n", + "Selling CSCO on 2010-11-30 00:00:00\n", + "Selling GNRC on 2010-11-30 00:00:00\n", + "Selling UAL on 2010-11-30 00:00:00\n", + "Selling MOS on 2010-11-30 00:00:00\n", + "Selling ALGN on 2010-11-30 00:00:00\n", + "Selling DAL on 2010-11-30 00:00:00\n", + "Selling CF on 2010-11-30 00:00:00\n", + "Selling AXON on 2010-11-30 00:00:00\n", + "Selling RCL on 2010-11-30 00:00:00\n", + "Selling RF on 2010-11-30 00:00:00\n", + "Selling CMG on 2010-11-30 00:00:00\n", + "Selling EW on 2010-11-30 00:00:00\n", + "Selling DECK on 2010-11-30 00:00:00\n", + "Selling LVS on 2010-11-30 00:00:00\n", + "Selling SMCI on 2010-11-30 00:00:00\n", + "Selling MPWR on 2010-11-30 00:00:00\n", + "Selling MU on 2010-11-30 00:00:00\n", + "Selling TPL on 2010-11-30 00:00:00\n", + "Selling LULU on 2010-11-30 00:00:00\n", + "Selling BLDR on 2010-11-30 00:00:00\n", + "Selling REGN on 2010-11-30 00:00:00\n", + "Selling NFLX on 2010-11-30 00:00:00\n", + "Selling CRM on 2010-11-30 00:00:00\n", + "Selling DXCM on 2010-11-30 00:00:00\n", + "Selling FFIV on 2010-11-30 00:00:00\n", + "Selling ADBE on 2010-11-30 00:00:00\n", + "Selling STX on 2010-11-30 00:00:00\n", + "Selling MGM on 2010-11-30 00:00:00\n", + "Selling FTNT on 2010-11-30 00:00:00\n", + "Selling TSLA on 2010-11-30 00:00:00\n", + "Selling EQIX on 2010-11-30 00:00:00\n", + "Buying JNJ on 2010-12-31 00:00:00\n", + "Buying XEL on 2010-12-31 00:00:00\n", + "Buying DUK on 2010-12-31 00:00:00\n", + "Buying SO on 2010-12-31 00:00:00\n", + "Buying L on 2010-12-31 00:00:00\n", + "Buying ADP on 2010-12-31 00:00:00\n", + "Buying ED on 2010-12-31 00:00:00\n", + "Buying PG on 2010-12-31 00:00:00\n", + "Buying XOM on 2010-12-31 00:00:00\n", + "Buying WEC on 2010-12-31 00:00:00\n", + "Buying PNW on 2010-12-31 00:00:00\n", + "Buying ATO on 2010-12-31 00:00:00\n", + "Buying JKHY on 2010-12-31 00:00:00\n", + "Buying PCG on 2010-12-31 00:00:00\n", + "Buying T on 2010-12-31 00:00:00\n", + "Buying WM on 2010-12-31 00:00:00\n", + "Buying SJM on 2010-12-31 00:00:00\n", + "Buying NI on 2010-12-31 00:00:00\n", + "Buying RTX on 2010-12-31 00:00:00\n", + "Buying D on 2010-12-31 00:00:00\n", + "Buying WMT on 2010-12-31 00:00:00\n", + "Buying BRK-B on 2010-12-31 00:00:00\n", + "Buying IBM on 2010-12-31 00:00:00\n", + "Buying EVRG on 2010-12-31 00:00:00\n", + "Buying KO on 2010-12-31 00:00:00\n", + "Buying LNT on 2010-12-31 00:00:00\n", + "Buying COP on 2010-12-31 00:00:00\n", + "Buying DTE on 2010-12-31 00:00:00\n", + "Buying PPG on 2010-12-31 00:00:00\n", + "Buying BMY on 2010-12-31 00:00:00\n", + "Buying MKC on 2010-12-31 00:00:00\n", + "Buying SNA on 2010-12-31 00:00:00\n", + "Buying SYY on 2010-12-31 00:00:00\n", + "Buying AEP on 2010-12-31 00:00:00\n", + "Buying CB on 2010-12-31 00:00:00\n", + "Buying CNP on 2010-12-31 00:00:00\n", + "Buying UPS on 2010-12-31 00:00:00\n", + "Buying NEE on 2010-12-31 00:00:00\n", + "Buying ES on 2010-12-31 00:00:00\n", + "Buying AEE on 2010-12-31 00:00:00\n", + "Buying ACGL on 2010-12-31 00:00:00\n", + "Buying OMC on 2010-12-31 00:00:00\n", + "Buying WRB on 2010-12-31 00:00:00\n", + "Selling PWR on 2010-12-31 00:00:00\n", + "Selling FITB on 2010-12-31 00:00:00\n", + "Selling AKAM on 2010-12-31 00:00:00\n", + "Selling LEN on 2010-12-31 00:00:00\n", + "Selling HAL on 2010-12-31 00:00:00\n", + "Selling TTWO 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 MU on 2010-12-31 00:00:00\n", + "Selling V on 2010-12-31 00:00:00\n", + "Selling FSLR on 2010-12-31 00:00:00\n", + "Selling TER on 2010-12-31 00:00:00\n", + "Selling DAL on 2010-12-31 00:00:00\n", + "Selling ADBE on 2010-12-31 00:00:00\n", + "Selling MOS on 2010-12-31 00:00:00\n", + "Selling UAL on 2010-12-31 00:00:00\n", + "Selling CSCO on 2010-12-31 00:00:00\n", + "Selling PODD on 2010-12-31 00:00:00\n", + "Selling BBY on 2010-12-31 00:00:00\n", + "Selling ALGN on 2010-12-31 00:00:00\n", + "Selling CF on 2010-12-31 00:00:00\n", + "Selling MPWR on 2010-12-31 00:00:00\n", + "Selling AVGO on 2010-12-31 00:00:00\n", + "Selling SMCI on 2010-12-31 00:00:00\n", + "Selling RCL on 2010-12-31 00:00:00\n", + "Selling AIG on 2010-12-31 00:00:00\n", + "Selling DECK on 2010-12-31 00:00:00\n", + "Selling RF on 2010-12-31 00:00:00\n", + "Selling CMG on 2010-12-31 00:00:00\n", + "Selling LVS on 2010-12-31 00:00:00\n", + "Selling REGN on 2010-12-31 00:00:00\n", + "Selling LULU on 2010-12-31 00:00:00\n", + "Selling FFIV on 2010-12-31 00:00:00\n", + "Selling NFLX on 2010-12-31 00:00:00\n", + "Selling CRM on 2010-12-31 00:00:00\n", + "Selling FTNT on 2010-12-31 00:00:00\n", + "Selling NXPI on 2010-12-31 00:00:00\n", + "Selling BLDR on 2010-12-31 00:00:00\n", + "Selling AXON on 2010-12-31 00:00:00\n", + "Selling STX on 2010-12-31 00:00:00\n", + "Selling DXCM on 2010-12-31 00:00:00\n", + "Selling MGM on 2010-12-31 00:00:00\n", + "Selling TSLA on 2010-12-31 00:00:00\n", + "Buying DUK on 2011-01-31 00:00:00\n", + "Buying XEL on 2011-01-31 00:00:00\n", + "Buying PNW on 2011-01-31 00:00:00\n", + "Buying SO on 2011-01-31 00:00:00\n", + "Buying LLY on 2011-01-31 00:00:00\n", + "Buying L on 2011-01-31 00:00:00\n", + "Buying WM on 2011-01-31 00:00:00\n", + "Buying ED on 2011-01-31 00:00:00\n", + "Buying DTE on 2011-01-31 00:00:00\n", + "Buying PEP on 2011-01-31 00:00:00\n", + "Buying D on 2011-01-31 00:00:00\n", + "Buying LNT on 2011-01-31 00:00:00\n", + "Buying WEC on 2011-01-31 00:00:00\n", + "Buying GL on 2011-01-31 00:00:00\n", + "Buying K on 2011-01-31 00:00:00\n", + "Buying NI on 2011-01-31 00:00:00\n", + "Buying EVRG on 2011-01-31 00:00:00\n", + "Buying UPS on 2011-01-31 00:00:00\n", + "Buying AJG on 2011-01-31 00:00:00\n", + "Buying XOM on 2011-01-31 00:00:00\n", + "Buying JNJ on 2011-01-31 00:00:00\n", + "Buying ATO on 2011-01-31 00:00:00\n", + "Buying CMS on 2011-01-31 00:00:00\n", + "Buying ADP on 2011-01-31 00:00:00\n", + "Buying SRE on 2011-01-31 00:00:00\n", + "Buying CVX on 2011-01-31 00:00:00\n", + "Buying EG on 2011-01-31 00:00:00\n", + "Buying FE on 2011-01-31 00:00:00\n", + "Buying ES on 2011-01-31 00:00:00\n", + "Buying KMB on 2011-01-31 00:00:00\n", + "Buying CNP on 2011-01-31 00:00:00\n", + "Buying BRK-B on 2011-01-31 00:00:00\n", + "Buying EFX on 2011-01-31 00:00:00\n", + "Buying ACGL on 2011-01-31 00:00:00\n", + "Buying RTX on 2011-01-31 00:00:00\n", + "Buying PCG on 2011-01-31 00:00:00\n", + "Buying ETR on 2011-01-31 00:00:00\n", + "Buying CINF on 2011-01-31 00:00:00\n", + "Buying EXC on 2011-01-31 00:00:00\n", + "Buying SNA on 2011-01-31 00:00:00\n", + "Buying CHRW on 2011-01-31 00:00:00\n", + "Buying NEE on 2011-01-31 00:00:00\n", + "Buying CLX on 2011-01-31 00:00:00\n", + "Selling BKNG on 2011-01-31 00:00:00\n", + "Selling CNC on 2011-01-31 00:00:00\n", + "Selling SMCI on 2011-01-31 00:00:00\n", + "Selling TTWO on 2011-01-31 00:00:00\n", + "Selling HAL on 2011-01-31 00:00:00\n", + "Selling F on 2011-01-31 00:00:00\n", + "Selling DAL on 2011-01-31 00:00:00\n", + "Selling CF on 2011-01-31 00:00:00\n", + "Selling PHM on 2011-01-31 00:00:00\n", + "Selling FSLR on 2011-01-31 00:00:00\n", + "Selling V on 2011-01-31 00:00:00\n", + "Selling MU on 2011-01-31 00:00:00\n", + "Selling JBL on 2011-01-31 00:00:00\n", + "Selling DHI on 2011-01-31 00:00:00\n", + "Selling TMUS on 2011-01-31 00:00:00\n", + "Selling CSCO on 2011-01-31 00:00:00\n", + "Selling UAL on 2011-01-31 00:00:00\n", + "Selling BBY on 2011-01-31 00:00:00\n", + "Selling ISRG on 2011-01-31 00:00:00\n", + "Selling AMD on 2011-01-31 00:00:00\n", + "Selling CMG on 2011-01-31 00:00:00\n", + "Selling MPWR on 2011-01-31 00:00:00\n", + "Selling AVGO on 2011-01-31 00:00:00\n", + "Selling PODD on 2011-01-31 00:00:00\n", + "Selling MOS on 2011-01-31 00:00:00\n", + "Selling DECK on 2011-01-31 00:00:00\n", + "Selling MGM on 2011-01-31 00:00:00\n", + "Selling TER on 2011-01-31 00:00:00\n", + "Selling RF on 2011-01-31 00:00:00\n", + "Selling LVS on 2011-01-31 00:00:00\n", + "Selling FTNT on 2011-01-31 00:00:00\n", + "Selling AIG on 2011-01-31 00:00:00\n", + "Selling REGN on 2011-01-31 00:00:00\n", + "Selling LULU on 2011-01-31 00:00:00\n", + "Selling NFLX on 2011-01-31 00:00:00\n", + "Selling CRM on 2011-01-31 00:00:00\n", + "Selling BLDR on 2011-01-31 00:00:00\n", + "Selling NVDA on 2011-01-31 00:00:00\n", + "Selling FFIV on 2011-01-31 00:00:00\n", + "Selling AXON on 2011-01-31 00:00:00\n", + "Selling NXPI on 2011-01-31 00:00:00\n", + "Selling DXCM on 2011-01-31 00:00:00\n", + "Selling TSLA on 2011-01-31 00:00:00\n", + "Buying WM on 2011-02-28 00:00:00\n", + "Buying SRE on 2011-02-28 00:00:00\n", + "Buying XEL on 2011-02-28 00:00:00\n", + "Buying RTX on 2011-02-28 00:00:00\n", + "Buying PNW on 2011-02-28 00:00:00\n", + "Buying DTE on 2011-02-28 00:00:00\n", + "Buying SO on 2011-02-28 00:00:00\n", + "Buying EVRG on 2011-02-28 00:00:00\n", + "Buying ADP on 2011-02-28 00:00:00\n", + "Buying ED on 2011-02-28 00:00:00\n", + "Buying D on 2011-02-28 00:00:00\n", + "Buying ACGL on 2011-02-28 00:00:00\n", + "Buying LLY on 2011-02-28 00:00:00\n", + "Buying CMS on 2011-02-28 00:00:00\n", + "Buying CNP on 2011-02-28 00:00:00\n", + "Buying NI on 2011-02-28 00:00:00\n", + "Buying AJG on 2011-02-28 00:00:00\n", + "Buying DUK on 2011-02-28 00:00:00\n", + "Buying BRK-B on 2011-02-28 00:00:00\n", + "Buying LNT on 2011-02-28 00:00:00\n", + "Buying WEC on 2011-02-28 00:00:00\n", + "Buying UPS 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 CINF on 2011-02-28 00:00:00\n", + "Buying CAG on 2011-02-28 00:00:00\n", + "Buying ATO on 2011-02-28 00:00:00\n", + "Buying EMR on 2011-02-28 00:00:00\n", + "Buying KMB on 2011-02-28 00:00:00\n", + "Buying PM on 2011-02-28 00:00:00\n", + "Buying ES on 2011-02-28 00:00:00\n", + "Buying LIN on 2011-02-28 00:00:00\n", + "Buying MO on 2011-02-28 00:00:00\n", + "Buying T on 2011-02-28 00:00:00\n", + "Buying JNJ on 2011-02-28 00:00:00\n", + "Buying MDLZ on 2011-02-28 00:00:00\n", + "Buying ETR on 2011-02-28 00:00:00\n", + "Buying GL on 2011-02-28 00:00:00\n", + "Buying EFX on 2011-02-28 00:00:00\n", + "Buying WRB on 2011-02-28 00:00:00\n", + "Buying PEP on 2011-02-28 00:00:00\n", + "Buying NEE on 2011-02-28 00:00:00\n", + "Buying ROP on 2011-02-28 00:00:00\n", + "Selling EL on 2011-02-28 00:00:00\n", + "Selling DAL on 2011-02-28 00:00:00\n", + "Selling URI on 2011-02-28 00:00:00\n", + "Selling DG on 2011-02-28 00:00:00\n", + "Selling TTWO on 2011-02-28 00:00:00\n", + "Selling ISRG on 2011-02-28 00:00:00\n", + "Selling PHM on 2011-02-28 00:00:00\n", + "Selling V on 2011-02-28 00:00:00\n", + "Selling RF on 2011-02-28 00:00:00\n", + "Selling TMUS on 2011-02-28 00:00:00\n", + "Selling MOH on 2011-02-28 00:00:00\n", + "Selling BBY on 2011-02-28 00:00:00\n", + "Selling REGN on 2011-02-28 00:00:00\n", + "Selling CBOE on 2011-02-28 00:00:00\n", + "Selling CTRA on 2011-02-28 00:00:00\n", + "Selling MGM on 2011-02-28 00:00:00\n", + "Selling CRM on 2011-02-28 00:00:00\n", + "Selling GNRC on 2011-02-28 00:00:00\n", + "Selling CF on 2011-02-28 00:00:00\n", + "Selling TER on 2011-02-28 00:00:00\n", + "Selling SMCI on 2011-02-28 00:00:00\n", + "Selling MOS on 2011-02-28 00:00:00\n", + "Selling FSLR on 2011-02-28 00:00:00\n", + "Selling CMG on 2011-02-28 00:00:00\n", + "Selling DECK on 2011-02-28 00:00:00\n", + "Selling EA on 2011-02-28 00:00:00\n", + "Selling UAL on 2011-02-28 00:00:00\n", + "Selling VRTX on 2011-02-28 00:00:00\n", + "Selling LVS on 2011-02-28 00:00:00\n", + "Selling AMD on 2011-02-28 00:00:00\n", + "Selling AKAM on 2011-02-28 00:00:00\n", + "Selling AVGO on 2011-02-28 00:00:00\n", + "Selling EXPE on 2011-02-28 00:00:00\n", + "Selling FTNT on 2011-02-28 00:00:00\n", + "Selling LULU on 2011-02-28 00:00:00\n", + "Selling BLDR on 2011-02-28 00:00:00\n", + "Selling NFLX on 2011-02-28 00:00:00\n", + "Selling AIG on 2011-02-28 00:00:00\n", + "Selling FFIV on 2011-02-28 00:00:00\n", + "Selling AXON on 2011-02-28 00:00:00\n", + "Selling NXPI on 2011-02-28 00:00:00\n", + "Selling NVDA on 2011-02-28 00:00:00\n", + "Selling TSLA on 2011-02-28 00:00:00\n", + "Buying WM on 2011-03-31 00:00:00\n", + "Buying RTX on 2011-03-31 00:00:00\n", + "Buying ED on 2011-03-31 00:00:00\n", + "Buying XEL on 2011-03-31 00:00:00\n", + "Buying DTE on 2011-03-31 00:00:00\n", + "Buying SO on 2011-03-31 00:00:00\n", + "Buying SRE on 2011-03-31 00:00:00\n", + "Buying CINF on 2011-03-31 00:00:00\n", + "Buying ADP on 2011-03-31 00:00:00\n", + "Buying AJG on 2011-03-31 00:00:00\n", + "Buying LIN on 2011-03-31 00:00:00\n", + "Buying JNJ on 2011-03-31 00:00:00\n", + "Buying TROW on 2011-03-31 00:00:00\n", + "Buying KMB on 2011-03-31 00:00:00\n", + "Buying NI on 2011-03-31 00:00:00\n", + "Buying D on 2011-03-31 00:00:00\n", + "Buying EVRG on 2011-03-31 00:00:00\n", + "Buying CMS on 2011-03-31 00:00:00\n", + "Buying LNT on 2011-03-31 00:00:00\n", + "Buying ATO on 2011-03-31 00:00:00\n", + "Buying LLY on 2011-03-31 00:00:00\n", + "Buying KO on 2011-03-31 00:00:00\n", + "Buying BRK-B on 2011-03-31 00:00:00\n", + "Buying MDLZ on 2011-03-31 00:00:00\n", + "Buying PNW on 2011-03-31 00:00:00\n", + "Buying DUK on 2011-03-31 00:00:00\n", + "Buying MO on 2011-03-31 00:00:00\n", + "Buying EMR on 2011-03-31 00:00:00\n", + "Buying HON on 2011-03-31 00:00:00\n", + "Buying PM on 2011-03-31 00:00:00\n", + "Buying EFX on 2011-03-31 00:00:00\n", + "Buying O on 2011-03-31 00:00:00\n", + "Buying ROP on 2011-03-31 00:00:00\n", + "Buying WEC on 2011-03-31 00:00:00\n", + "Buying NEE on 2011-03-31 00:00:00\n", + "Buying UPS on 2011-03-31 00:00:00\n", + "Buying TRV on 2011-03-31 00:00:00\n", + "Buying ES on 2011-03-31 00:00:00\n", + "Buying PEP on 2011-03-31 00:00:00\n", + "Buying IDXX on 2011-03-31 00:00:00\n", + "Buying FAST on 2011-03-31 00:00:00\n", + "Buying ACGL on 2011-03-31 00:00:00\n", + "Buying PG on 2011-03-31 00:00:00\n", + "Buying L on 2011-03-31 00:00:00\n", + "Selling STX on 2011-03-31 00:00:00\n", + "Selling SBUX on 2011-03-31 00:00:00\n", + "Selling DG on 2011-03-31 00:00:00\n", + "Selling F on 2011-03-31 00:00:00\n", + "Selling FCX on 2011-03-31 00:00:00\n", + "Selling EL on 2011-03-31 00:00:00\n", + "Selling ULTA on 2011-03-31 00:00:00\n", + "Selling JNPR on 2011-03-31 00:00:00\n", + "Selling SWKS on 2011-03-31 00:00:00\n", + "Selling VLO on 2011-03-31 00:00:00\n", + "Selling CBOE on 2011-03-31 00:00:00\n", + "Selling TER on 2011-03-31 00:00:00\n", + "Selling MOS on 2011-03-31 00:00:00\n", + "Selling SMCI on 2011-03-31 00:00:00\n", + "Selling MOH on 2011-03-31 00:00:00\n", + "Selling MU on 2011-03-31 00:00:00\n", + "Selling LVS on 2011-03-31 00:00:00\n", + "Selling REGN on 2011-03-31 00:00:00\n", + "Selling CRM on 2011-03-31 00:00:00\n", + "Selling AVGO on 2011-03-31 00:00:00\n", + "Selling AIG on 2011-03-31 00:00:00\n", + "Selling CTRA on 2011-03-31 00:00:00\n", + "Selling AXON on 2011-03-31 00:00:00\n", + "Selling PHM on 2011-03-31 00:00:00\n", + "Selling JBL on 2011-03-31 00:00:00\n", + "Selling EA on 2011-03-31 00:00:00\n", + "Selling CF on 2011-03-31 00:00:00\n", + "Selling LULU on 2011-03-31 00:00:00\n", + "Selling GNRC on 2011-03-31 00:00:00\n", + "Selling AKAM on 2011-03-31 00:00:00\n", + "Selling AMD on 2011-03-31 00:00:00\n", + "Selling FSLR on 2011-03-31 00:00:00\n", + "Selling DAL on 2011-03-31 00:00:00\n", + "Selling EXPE on 2011-03-31 00:00:00\n", + "Selling VRTX on 2011-03-31 00:00:00\n", + "Selling WDC on 2011-03-31 00:00:00\n", + "Selling UAL on 2011-03-31 00:00:00\n", + "Selling FTNT on 2011-03-31 00:00:00\n", + "Selling BLDR on 2011-03-31 00:00:00\n", + "Selling NXPI on 2011-03-31 00:00:00\n", + "Selling NFLX on 2011-03-31 00:00:00\n", + "Selling TSLA on 2011-03-31 00:00:00\n", + "Selling FFIV on 2011-03-31 00:00:00\n", + "Selling NVDA on 2011-03-31 00:00:00\n", + "Buying ADP on 2011-04-30 00:00:00\n", + "Buying WM on 2011-04-30 00:00:00\n", + "Buying ED on 2011-04-30 00:00:00\n", + "Buying XEL on 2011-04-30 00:00:00\n", + "Buying NI on 2011-04-30 00:00:00\n", + "Buying JKHY on 2011-04-30 00:00:00\n", + "Buying RTX on 2011-04-30 00:00:00\n", + "Buying EMR on 2011-04-30 00:00:00\n", + "Buying SO on 2011-04-30 00:00:00\n", + "Buying AJG on 2011-04-30 00:00:00\n", + "Buying PG on 2011-04-30 00:00:00\n", + "Buying BRK-B on 2011-04-30 00:00:00\n", + "Buying DTE on 2011-04-30 00:00:00\n", + "Buying ES on 2011-04-30 00:00:00\n", + "Buying KMB on 2011-04-30 00:00:00\n", + "Buying SRE on 2011-04-30 00:00:00\n", + "Buying ERIE on 2011-04-30 00:00:00\n", + "Buying UPS on 2011-04-30 00:00:00\n", + "Buying D on 2011-04-30 00:00:00\n", + "Buying O on 2011-04-30 00:00:00\n", + "Buying SNPS on 2011-04-30 00:00:00\n", + "Buying NEE on 2011-04-30 00:00:00\n", + "Buying WEC on 2011-04-30 00:00:00\n", + "Buying MMM on 2011-04-30 00:00:00\n", + "Buying LLY on 2011-04-30 00:00:00\n", + "Buying LIN on 2011-04-30 00:00:00\n", + "Buying EVRG on 2011-04-30 00:00:00\n", + "Buying IBM on 2011-04-30 00:00:00\n", + "Buying PM on 2011-04-30 00:00:00\n", + "Buying ATO on 2011-04-30 00:00:00\n", + "Buying MO on 2011-04-30 00:00:00\n", + "Buying PNW on 2011-04-30 00:00:00\n", + "Buying PNR on 2011-04-30 00:00:00\n", + "Buying BALL on 2011-04-30 00:00:00\n", + "Buying DUK on 2011-04-30 00:00:00\n", + "Buying KO on 2011-04-30 00:00:00\n", + "Buying MDLZ on 2011-04-30 00:00:00\n", + "Buying CINF on 2011-04-30 00:00:00\n", + "Buying CPRT on 2011-04-30 00:00:00\n", + "Buying L on 2011-04-30 00:00:00\n", + "Buying ROP on 2011-04-30 00:00:00\n", + "Buying FDS on 2011-04-30 00:00:00\n", + "Buying LNT on 2011-04-30 00:00:00\n", + "Buying AWK on 2011-04-30 00:00:00\n", + "Selling FCX on 2011-04-30 00:00:00\n", + "Selling LRCX on 2011-04-30 00:00:00\n", + "Selling WAB on 2011-04-30 00:00:00\n", + "Selling CRM on 2011-04-30 00:00:00\n", + "Selling MPWR on 2011-04-30 00:00:00\n", + "Selling EL on 2011-04-30 00:00:00\n", + "Selling UHS on 2011-04-30 00:00:00\n", + "Selling NDAQ on 2011-04-30 00:00:00\n", + "Selling MU on 2011-04-30 00:00:00\n", + "Selling CSCO on 2011-04-30 00:00:00\n", + "Selling LVS on 2011-04-30 00:00:00\n", + "Selling AVGO on 2011-04-30 00:00:00\n", + "Selling CBOE on 2011-04-30 00:00:00\n", + "Selling STX on 2011-04-30 00:00:00\n", + "Selling VLO on 2011-04-30 00:00:00\n", + "Selling GNRC on 2011-04-30 00:00:00\n", + "Selling CTRA on 2011-04-30 00:00:00\n", + "Selling TER on 2011-04-30 00:00:00\n", + "Selling CF on 2011-04-30 00:00:00\n", + "Selling PHM on 2011-04-30 00:00:00\n", + "Selling DECK on 2011-04-30 00:00:00\n", + "Selling FSLR on 2011-04-30 00:00:00\n", + "Selling LULU on 2011-04-30 00:00:00\n", + "Selling BIIB on 2011-04-30 00:00:00\n", + "Selling JBL on 2011-04-30 00:00:00\n", + "Selling URI on 2011-04-30 00:00:00\n", + "Selling AXON on 2011-04-30 00:00:00\n", + "Selling WDC on 2011-04-30 00:00:00\n", + "Selling ALGN on 2011-04-30 00:00:00\n", + "Selling SMCI on 2011-04-30 00:00:00\n", + "Selling SWKS on 2011-04-30 00:00:00\n", + "Selling FFIV on 2011-04-30 00:00:00\n", + "Selling DAL on 2011-04-30 00:00:00\n", + "Selling NXPI on 2011-04-30 00:00:00\n", + "Selling NVDA on 2011-04-30 00:00:00\n", + "Selling NFLX on 2011-04-30 00:00:00\n", + "Selling VRTX on 2011-04-30 00:00:00\n", + "Selling UAL on 2011-04-30 00:00:00\n", + "Selling FTNT on 2011-04-30 00:00:00\n", + "Selling EXPE on 2011-04-30 00:00:00\n", + "Selling AKAM on 2011-04-30 00:00:00\n", + "Selling TSLA on 2011-04-30 00:00:00\n", + "Selling BLDR on 2011-04-30 00:00:00\n", + "Selling REGN on 2011-04-30 00:00:00\n", + "Buying WM on 2011-05-31 00:00:00\n", + "Buying ADP on 2011-05-31 00:00:00\n", + "Buying ED on 2011-05-31 00:00:00\n", + "Buying O on 2011-05-31 00:00:00\n", + "Buying SRE on 2011-05-31 00:00:00\n", + "Buying ES on 2011-05-31 00:00:00\n", + "Buying BDX on 2011-05-31 00:00:00\n", + "Buying K on 2011-05-31 00:00:00\n", + "Buying WMT on 2011-05-31 00:00:00\n", + "Buying SO on 2011-05-31 00:00:00\n", + "Buying KO on 2011-05-31 00:00:00\n", + "Buying BRK-B on 2011-05-31 00:00:00\n", + "Buying XEL on 2011-05-31 00:00:00\n", + "Buying L on 2011-05-31 00:00:00\n", + "Buying DUK on 2011-05-31 00:00:00\n", + "Buying ATO on 2011-05-31 00:00:00\n", + "Buying UPS on 2011-05-31 00:00:00\n", + "Buying KMB on 2011-05-31 00:00:00\n", + "Buying PG on 2011-05-31 00:00:00\n", + "Buying MMM on 2011-05-31 00:00:00\n", + "Buying WEC on 2011-05-31 00:00:00\n", + "Buying NEE on 2011-05-31 00:00:00\n", + "Buying D on 2011-05-31 00:00:00\n", + "Buying RTX on 2011-05-31 00:00:00\n", + "Buying SNA on 2011-05-31 00:00:00\n", + "Buying PNW on 2011-05-31 00:00:00\n", + "Buying AJG on 2011-05-31 00:00:00\n", + "Buying XOM on 2011-05-31 00:00:00\n", + "Buying LNT on 2011-05-31 00:00:00\n", + "Buying GIS on 2011-05-31 00:00:00\n", + "Buying CINF on 2011-05-31 00:00:00\n", + "Buying MDLZ on 2011-05-31 00:00:00\n", + "Buying MAA on 2011-05-31 00:00:00\n", + "Buying GL on 2011-05-31 00:00:00\n", + "Buying SPG on 2011-05-31 00:00:00\n", + "Buying CPRT on 2011-05-31 00:00:00\n", + "Buying RVTY on 2011-05-31 00:00:00\n", + "Buying MO on 2011-05-31 00:00:00\n", + "Buying PEP on 2011-05-31 00:00:00\n", + "Buying DTE on 2011-05-31 00:00:00\n", + "Buying EQR on 2011-05-31 00:00:00\n", + "Buying CHRW on 2011-05-31 00:00:00\n", + "Buying BALL on 2011-05-31 00:00:00\n", + "Buying NI on 2011-05-31 00:00:00\n", + "Selling CBRE on 2011-05-31 00:00:00\n", + "Selling VLO on 2011-05-31 00:00:00\n", + "Selling ALB on 2011-05-31 00:00:00\n", + "Selling FCX on 2011-05-31 00:00:00\n", + "Selling CTRA on 2011-05-31 00:00:00\n", + "Selling BSX on 2011-05-31 00:00:00\n", + "Selling WAB on 2011-05-31 00:00:00\n", + "Selling DECK on 2011-05-31 00:00:00\n", + "Selling EXPE on 2011-05-31 00:00:00\n", + "Selling LVS on 2011-05-31 00:00:00\n", + "Selling MU on 2011-05-31 00:00:00\n", + "Selling PHM on 2011-05-31 00:00:00\n", + "Selling RL on 2011-05-31 00:00:00\n", + "Selling CRM on 2011-05-31 00:00:00\n", + "Selling TRMB on 2011-05-31 00:00:00\n", + "Selling STX on 2011-05-31 00:00:00\n", + "Selling TER on 2011-05-31 00:00:00\n", + "Selling CPAY on 2011-05-31 00:00:00\n", + "Selling AVGO on 2011-05-31 00:00:00\n", + "Selling URI on 2011-05-31 00:00:00\n", + "Selling LULU on 2011-05-31 00:00:00\n", + "Selling BIIB on 2011-05-31 00:00:00\n", + "Selling VRTX on 2011-05-31 00:00:00\n", + "Selling JBL on 2011-05-31 00:00:00\n", + "Selling CF on 2011-05-31 00:00:00\n", + "Selling FSLR on 2011-05-31 00:00:00\n", + "Selling MGM on 2011-05-31 00:00:00\n", + "Selling SMCI on 2011-05-31 00:00:00\n", + "Selling AXON on 2011-05-31 00:00:00\n", + "Selling NXPI on 2011-05-31 00:00:00\n", + "Selling AKAM on 2011-05-31 00:00:00\n", + "Selling WDC on 2011-05-31 00:00:00\n", + "Selling NFLX on 2011-05-31 00:00:00\n", + "Selling ALGN on 2011-05-31 00:00:00\n", + "Selling NVDA on 2011-05-31 00:00:00\n", + "Selling INCY on 2011-05-31 00:00:00\n", + "Selling FFIV on 2011-05-31 00:00:00\n", + "Selling UAL on 2011-05-31 00:00:00\n", + "Selling SWKS on 2011-05-31 00:00:00\n", + "Selling DAL on 2011-05-31 00:00:00\n", + "Selling FTNT on 2011-05-31 00:00:00\n", + "Selling TSLA on 2011-05-31 00:00:00\n", + "Selling BLDR on 2011-05-31 00:00:00\n", + "Selling REGN on 2011-05-31 00:00:00\n", + "Buying WM on 2011-06-30 00:00:00\n", + "Buying UPS on 2011-06-30 00:00:00\n", + "Buying ED on 2011-06-30 00:00:00\n", + "Buying BRK-B on 2011-06-30 00:00:00\n", + "Buying ADP on 2011-06-30 00:00:00\n", + "Buying MMM on 2011-06-30 00:00:00\n", + "Buying BDX on 2011-06-30 00:00:00\n", + "Buying PNW on 2011-06-30 00:00:00\n", + "Buying SRE on 2011-06-30 00:00:00\n", + "Buying SO on 2011-06-30 00:00:00\n", + "Buying CHRW on 2011-06-30 00:00:00\n", + "Buying WEC on 2011-06-30 00:00:00\n", + "Buying IBM on 2011-06-30 00:00:00\n", + "Buying L on 2011-06-30 00:00:00\n", + "Buying ES on 2011-06-30 00:00:00\n", + "Buying DUK on 2011-06-30 00:00:00\n", + "Buying XEL on 2011-06-30 00:00:00\n", + "Buying BEN on 2011-06-30 00:00:00\n", + "Buying NEE on 2011-06-30 00:00:00\n", + "Buying WMT on 2011-06-30 00:00:00\n", + "Buying PNR on 2011-06-30 00:00:00\n", + "Buying EVRG on 2011-06-30 00:00:00\n", + "Buying KO on 2011-06-30 00:00:00\n", + "Buying D on 2011-06-30 00:00:00\n", + "Buying ATO on 2011-06-30 00:00:00\n", + "Buying KMB on 2011-06-30 00:00:00\n", + "Buying MCD on 2011-06-30 00:00:00\n", + "Buying GL on 2011-06-30 00:00:00\n", + "Buying SNA on 2011-06-30 00:00:00\n", + "Buying PEP on 2011-06-30 00:00:00\n", + "Buying LDOS on 2011-06-30 00:00:00\n", + "Buying CTAS on 2011-06-30 00:00:00\n", + "Buying IFF on 2011-06-30 00:00:00\n", + "Buying T on 2011-06-30 00:00:00\n", + "Buying XOM on 2011-06-30 00:00:00\n", + "Buying DTE on 2011-06-30 00:00:00\n", + "Buying K on 2011-06-30 00:00:00\n", + "Buying AJG on 2011-06-30 00:00:00\n", + "Buying RVTY on 2011-06-30 00:00:00\n", + "Buying ERIE on 2011-06-30 00:00:00\n", + "Buying HSIC on 2011-06-30 00:00:00\n", + "Buying MRK on 2011-06-30 00:00:00\n", + "Buying BALL on 2011-06-30 00:00:00\n", + "Buying CINF on 2011-06-30 00:00:00\n", + "Selling CTRA on 2011-06-30 00:00:00\n", + "Selling TMUS on 2011-06-30 00:00:00\n", + "Selling BSX on 2011-06-30 00:00:00\n", + "Selling ALB on 2011-06-30 00:00:00\n", + "Selling CPAY on 2011-06-30 00:00:00\n", + "Selling STX on 2011-06-30 00:00:00\n", + "Selling TPL on 2011-06-30 00:00:00\n", + "Selling RCL on 2011-06-30 00:00:00\n", + "Selling CRM on 2011-06-30 00:00:00\n", + "Selling MOS on 2011-06-30 00:00:00\n", + "Selling EXPE on 2011-06-30 00:00:00\n", + "Selling FSLR on 2011-06-30 00:00:00\n", + "Selling LYV on 2011-06-30 00:00:00\n", + "Selling TER on 2011-06-30 00:00:00\n", + "Selling PHM on 2011-06-30 00:00:00\n", + "Selling V on 2011-06-30 00:00:00\n", + "Selling RL on 2011-06-30 00:00:00\n", + "Selling TRMB on 2011-06-30 00:00:00\n", + "Selling FFIV on 2011-06-30 00:00:00\n", + "Selling NFLX on 2011-06-30 00:00:00\n", + "Selling DECK on 2011-06-30 00:00:00\n", + "Selling AXON on 2011-06-30 00:00:00\n", + "Selling AVGO on 2011-06-30 00:00:00\n", + "Selling NXPI on 2011-06-30 00:00:00\n", + "Selling NVDA on 2011-06-30 00:00:00\n", + "Selling TSLA on 2011-06-30 00:00:00\n", + "Selling LULU on 2011-06-30 00:00:00\n", + "Selling URI on 2011-06-30 00:00:00\n", + "Selling ULTA on 2011-06-30 00:00:00\n", + "Selling MU on 2011-06-30 00:00:00\n", + "Selling SMCI on 2011-06-30 00:00:00\n", + "Selling BIIB on 2011-06-30 00:00:00\n", + "Selling ALGN on 2011-06-30 00:00:00\n", + "Selling CF on 2011-06-30 00:00:00\n", + "Selling INCY on 2011-06-30 00:00:00\n", + "Selling AKAM on 2011-06-30 00:00:00\n", + "Selling VRTX on 2011-06-30 00:00:00\n", + "Selling MGM on 2011-06-30 00:00:00\n", + "Selling UAL on 2011-06-30 00:00:00\n", + "Selling BLDR on 2011-06-30 00:00:00\n", + "Selling DAL on 2011-06-30 00:00:00\n", + "Selling FTNT on 2011-06-30 00:00:00\n", + "Selling SWKS on 2011-06-30 00:00:00\n", + "Selling REGN on 2011-06-30 00:00:00\n", + "Buying L on 2011-07-31 00:00:00\n", + "Buying SO on 2011-07-31 00:00:00\n", + "Buying SRE on 2011-07-31 00:00:00\n", + "Buying PNW on 2011-07-31 00:00:00\n", + "Buying ED on 2011-07-31 00:00:00\n", + "Buying WMT on 2011-07-31 00:00:00\n", + "Buying DUK on 2011-07-31 00:00:00\n", + "Buying KMB on 2011-07-31 00:00:00\n", + "Buying CINF on 2011-07-31 00:00:00\n", + "Buying WEC on 2011-07-31 00:00:00\n", + "Buying NEE on 2011-07-31 00:00:00\n", + "Buying ADP on 2011-07-31 00:00:00\n", + "Buying EVRG on 2011-07-31 00:00:00\n", + "Buying JNJ on 2011-07-31 00:00:00\n", + "Buying T on 2011-07-31 00:00:00\n", + "Buying JKHY on 2011-07-31 00:00:00\n", + "Buying BRK-B on 2011-07-31 00:00:00\n", + "Buying MCD on 2011-07-31 00:00:00\n", + "Buying D on 2011-07-31 00:00:00\n", + "Buying XEL on 2011-07-31 00:00:00\n", + "Buying CVX on 2011-07-31 00:00:00\n", + "Buying GE on 2011-07-31 00:00:00\n", + "Buying ABT on 2011-07-31 00:00:00\n", + "Buying PG on 2011-07-31 00:00:00\n", + "Buying KO on 2011-07-31 00:00:00\n", + "Buying ATO on 2011-07-31 00:00:00\n", + "Buying PPL on 2011-07-31 00:00:00\n", + "Buying K on 2011-07-31 00:00:00\n", + "Buying MDLZ on 2011-07-31 00:00:00\n", + "Buying DTE on 2011-07-31 00:00:00\n", + "Buying MRK on 2011-07-31 00:00:00\n", + "Buying CMS on 2011-07-31 00:00:00\n", + "Buying LNT on 2011-07-31 00:00:00\n", + "Buying UPS on 2011-07-31 00:00:00\n", + "Buying DVA on 2011-07-31 00:00:00\n", + "Buying ES on 2011-07-31 00:00:00\n", + "Buying BEN on 2011-07-31 00:00:00\n", + "Buying GL on 2011-07-31 00:00:00\n", + "Buying IFF on 2011-07-31 00:00:00\n", + "Buying LIN on 2011-07-31 00:00:00\n", + "Buying WST on 2011-07-31 00:00:00\n", + "Buying FI on 2011-07-31 00:00:00\n", + "Buying TRV on 2011-07-31 00:00:00\n", + "Buying PEG on 2011-07-31 00:00:00\n", + "Selling GOOGL on 2011-07-31 00:00:00\n", + "Selling GOOG on 2011-07-31 00:00:00\n", + "Selling CBRE on 2011-07-31 00:00:00\n", + "Selling MOH on 2011-07-31 00:00:00\n", + "Selling DPZ on 2011-07-31 00:00:00\n", + "Selling MS on 2011-07-31 00:00:00\n", + "Selling CRM on 2011-07-31 00:00:00\n", + "Selling MTCH on 2011-07-31 00:00:00\n", + "Selling LYB on 2011-07-31 00:00:00\n", + "Selling RL on 2011-07-31 00:00:00\n", + "Selling NVDA on 2011-07-31 00:00:00\n", + "Selling CNC on 2011-07-31 00:00:00\n", + "Selling NFLX on 2011-07-31 00:00:00\n", + "Selling URI on 2011-07-31 00:00:00\n", + "Selling V on 2011-07-31 00:00:00\n", + "Selling BWA on 2011-07-31 00:00:00\n", + "Selling LYV on 2011-07-31 00:00:00\n", + "Selling LULU on 2011-07-31 00:00:00\n", + "Selling ON on 2011-07-31 00:00:00\n", + "Selling AVY on 2011-07-31 00:00:00\n", + "Selling WDC on 2011-07-31 00:00:00\n", + "Selling BSX on 2011-07-31 00:00:00\n", + "Selling REGN on 2011-07-31 00:00:00\n", + "Selling CTRA on 2011-07-31 00:00:00\n", + "Selling TSLA on 2011-07-31 00:00:00\n", + "Selling CF on 2011-07-31 00:00:00\n", + "Selling AVGO on 2011-07-31 00:00:00\n", + "Selling ULTA on 2011-07-31 00:00:00\n", + "Selling DAL on 2011-07-31 00:00:00\n", + "Selling NXPI on 2011-07-31 00:00:00\n", + "Selling UAL on 2011-07-31 00:00:00\n", + "Selling MU on 2011-07-31 00:00:00\n", + "Selling IPG on 2011-07-31 00:00:00\n", + "Selling VRTX on 2011-07-31 00:00:00\n", + "Selling RCL on 2011-07-31 00:00:00\n", + "Selling HCA on 2011-07-31 00:00:00\n", + "Selling FFIV on 2011-07-31 00:00:00\n", + "Selling STX on 2011-07-31 00:00:00\n", + "Selling JNPR on 2011-07-31 00:00:00\n", + "Selling AKAM on 2011-07-31 00:00:00\n", + "Selling BLDR on 2011-07-31 00:00:00\n", + "Selling AMD on 2011-07-31 00:00:00\n", + "Selling FTNT on 2011-07-31 00:00:00\n", + "Selling SWKS on 2011-07-31 00:00:00\n", + "Buying KMB on 2011-08-31 00:00:00\n", + "Buying CPRT on 2011-08-31 00:00:00\n", + "Buying ADP on 2011-08-31 00:00:00\n", + "Buying PG on 2011-08-31 00:00:00\n", + "Buying JNJ on 2011-08-31 00:00:00\n", + "Buying K on 2011-08-31 00:00:00\n", + "Buying L on 2011-08-31 00:00:00\n", + "Buying GE on 2011-08-31 00:00:00\n", + "Buying GIS on 2011-08-31 00:00:00\n", + "Buying SO on 2011-08-31 00:00:00\n", + "Buying KO on 2011-08-31 00:00:00\n", + "Buying UPS on 2011-08-31 00:00:00\n", + "Buying MCD on 2011-08-31 00:00:00\n", + "Buying CAH on 2011-08-31 00:00:00\n", + "Buying BAX on 2011-08-31 00:00:00\n", + "Buying MKC on 2011-08-31 00:00:00\n", + "Buying SRE on 2011-08-31 00:00:00\n", + "Buying CVX on 2011-08-31 00:00:00\n", + "Buying NEE on 2011-08-31 00:00:00\n", + "Buying FI on 2011-08-31 00:00:00\n", + "Buying MDLZ on 2011-08-31 00:00:00\n", + "Buying MRK on 2011-08-31 00:00:00\n", + "Buying CVS on 2011-08-31 00:00:00\n", + "Buying COP on 2011-08-31 00:00:00\n", + "Buying PNW on 2011-08-31 00:00:00\n", + "Buying XEL on 2011-08-31 00:00:00\n", + "Buying DUK on 2011-08-31 00:00:00\n", + "Buying PPG on 2011-08-31 00:00:00\n", + "Buying BDX on 2011-08-31 00:00:00\n", + "Buying PPL on 2011-08-31 00:00:00\n", + "Buying XOM on 2011-08-31 00:00:00\n", + "Buying HSY on 2011-08-31 00:00:00\n", + "Buying DTE on 2011-08-31 00:00:00\n", + "Buying JCI on 2011-08-31 00:00:00\n", + "Buying CINF on 2011-08-31 00:00:00\n", + "Buying WEC on 2011-08-31 00:00:00\n", + "Buying LIN on 2011-08-31 00:00:00\n", + "Buying ABT on 2011-08-31 00:00:00\n", + "Buying LLY on 2011-08-31 00:00:00\n", + "Buying TAP on 2011-08-31 00:00:00\n", + "Buying AZO on 2011-08-31 00:00:00\n", + "Buying RTX on 2011-08-31 00:00:00\n", + "Buying FE on 2011-08-31 00:00:00\n", + "Buying LH on 2011-08-31 00:00:00\n", + "Selling NFLX on 2011-08-31 00:00:00\n", + "Selling LYB on 2011-08-31 00:00:00\n", + "Selling MNST on 2011-08-31 00:00:00\n", + "Selling CBRE on 2011-08-31 00:00:00\n", + "Selling AVY on 2011-08-31 00:00:00\n", + "Selling V on 2011-08-31 00:00:00\n", + "Selling AVGO on 2011-08-31 00:00:00\n", + "Selling RCL on 2011-08-31 00:00:00\n", + "Selling CF on 2011-08-31 00:00:00\n", + "Selling KKR on 2011-08-31 00:00:00\n", + "Selling MOH on 2011-08-31 00:00:00\n", + "Selling APO on 2011-08-31 00:00:00\n", + "Selling CTRA on 2011-08-31 00:00:00\n", + "Selling DECK on 2011-08-31 00:00:00\n", + "Selling ON on 2011-08-31 00:00:00\n", + "Selling WDC on 2011-08-31 00:00:00\n", + "Selling MA on 2011-08-31 00:00:00\n", + "Selling REGN on 2011-08-31 00:00:00\n", + "Selling TRMB on 2011-08-31 00:00:00\n", + "Selling ULTA on 2011-08-31 00:00:00\n", + "Selling URI on 2011-08-31 00:00:00\n", + "Selling IPG on 2011-08-31 00:00:00\n", + "Selling SMCI on 2011-08-31 00:00:00\n", + "Selling MKTX on 2011-08-31 00:00:00\n", + "Selling MS on 2011-08-31 00:00:00\n", + "Selling UAL on 2011-08-31 00:00:00\n", + "Selling HPQ on 2011-08-31 00:00:00\n", + "Selling VRTX on 2011-08-31 00:00:00\n", + "Selling MGM on 2011-08-31 00:00:00\n", + "Selling AKAM on 2011-08-31 00:00:00\n", + "Selling JNPR on 2011-08-31 00:00:00\n", + "Selling MU on 2011-08-31 00:00:00\n", + "Selling LULU on 2011-08-31 00:00:00\n", + "Selling FFIV on 2011-08-31 00:00:00\n", + "Selling STX on 2011-08-31 00:00:00\n", + "Selling BLDR on 2011-08-31 00:00:00\n", + "Selling AMD on 2011-08-31 00:00:00\n", + "Selling PHM on 2011-08-31 00:00:00\n", + "Selling NXPI on 2011-08-31 00:00:00\n", + "Selling HCA on 2011-08-31 00:00:00\n", + "Selling BAC on 2011-08-31 00:00:00\n", + "Selling FTNT on 2011-08-31 00:00:00\n", + "Selling SWKS on 2011-08-31 00:00:00\n", + "Selling TMUS on 2011-08-31 00:00:00\n", + "Buying K on 2011-09-30 00:00:00\n", + "Buying ADP on 2011-09-30 00:00:00\n", + "Buying KMB on 2011-09-30 00:00:00\n", + "Buying PG on 2011-09-30 00:00:00\n", + "Buying JNJ on 2011-09-30 00:00:00\n", + "Buying KO on 2011-09-30 00:00:00\n", + "Buying MKC on 2011-09-30 00:00:00\n", + "Buying BAX on 2011-09-30 00:00:00\n", + "Buying SO on 2011-09-30 00:00:00\n", + "Buying MDLZ on 2011-09-30 00:00:00\n", + "Buying CPB on 2011-09-30 00:00:00\n", + "Buying COP on 2011-09-30 00:00:00\n", + "Buying XEL on 2011-09-30 00:00:00\n", + "Buying L on 2011-09-30 00:00:00\n", + "Buying SRE on 2011-09-30 00:00:00\n", + "Buying NUE on 2011-09-30 00:00:00\n", + "Buying CVX on 2011-09-30 00:00:00\n", + "Buying MRK on 2011-09-30 00:00:00\n", + "Buying DUK on 2011-09-30 00:00:00\n", + "Buying XOM on 2011-09-30 00:00:00\n", + "Buying UPS on 2011-09-30 00:00:00\n", + "Buying NEE on 2011-09-30 00:00:00\n", + "Buying BR on 2011-09-30 00:00:00\n", + "Buying MCD on 2011-09-30 00:00:00\n", + "Buying HSY on 2011-09-30 00:00:00\n", + "Buying EXC on 2011-09-30 00:00:00\n", + "Buying PFE on 2011-09-30 00:00:00\n", + "Buying MO on 2011-09-30 00:00:00\n", + "Buying VZ on 2011-09-30 00:00:00\n", + "Buying ES on 2011-09-30 00:00:00\n", + "Buying DTE on 2011-09-30 00:00:00\n", + "Buying D on 2011-09-30 00:00:00\n", + "Buying PNW on 2011-09-30 00:00:00\n", + "Buying WEC on 2011-09-30 00:00:00\n", + "Buying PPL on 2011-09-30 00:00:00\n", + "Buying BMY on 2011-09-30 00:00:00\n", + "Buying GE on 2011-09-30 00:00:00\n", + "Buying FI on 2011-09-30 00:00:00\n", + "Buying LLY on 2011-09-30 00:00:00\n", + "Buying PAYX on 2011-09-30 00:00:00\n", + "Buying LIN on 2011-09-30 00:00:00\n", + "Buying APD on 2011-09-30 00:00:00\n", + "Buying AMGN on 2011-09-30 00:00:00\n", + "Buying ETR on 2011-09-30 00:00:00\n", + "Selling HIG on 2011-09-30 00:00:00\n", + "Selling CBRE on 2011-09-30 00:00:00\n", + "Selling DAL on 2011-09-30 00:00:00\n", + "Selling LII on 2011-09-30 00:00:00\n", + "Selling TT on 2011-09-30 00:00:00\n", + "Selling MPC on 2011-09-30 00:00:00\n", + "Selling AVGO on 2011-09-30 00:00:00\n", + "Selling ON on 2011-09-30 00:00:00\n", + "Selling CTRA on 2011-09-30 00:00:00\n", + "Selling URI on 2011-09-30 00:00:00\n", + "Selling DECK on 2011-09-30 00:00:00\n", + "Selling FSLR on 2011-09-30 00:00:00\n", + "Selling VMC on 2011-09-30 00:00:00\n", + "Selling SMCI on 2011-09-30 00:00:00\n", + "Selling TRMB on 2011-09-30 00:00:00\n", + "Selling CF on 2011-09-30 00:00:00\n", + "Selling MOH on 2011-09-30 00:00:00\n", + "Selling MGM on 2011-09-30 00:00:00\n", + "Selling VRTX on 2011-09-30 00:00:00\n", + "Selling UAL on 2011-09-30 00:00:00\n", + "Selling APO on 2011-09-30 00:00:00\n", + "Selling LULU on 2011-09-30 00:00:00\n", + "Selling FFIV on 2011-09-30 00:00:00\n", + "Selling AKAM on 2011-09-30 00:00:00\n", + "Selling IPG on 2011-09-30 00:00:00\n", + "Selling MS on 2011-09-30 00:00:00\n", + "Selling MKTX on 2011-09-30 00:00:00\n", + "Selling STX on 2011-09-30 00:00:00\n", + "Selling GNRC on 2011-09-30 00:00:00\n", + "Selling HPQ on 2011-09-30 00:00:00\n", + "Selling JNPR on 2011-09-30 00:00:00\n", + "Selling MU on 2011-09-30 00:00:00\n", + "Selling BLDR on 2011-09-30 00:00:00\n", + "Selling ULTA on 2011-09-30 00:00:00\n", + "Selling PHM on 2011-09-30 00:00:00\n", + "Selling BAC on 2011-09-30 00:00:00\n", + "Selling SWKS on 2011-09-30 00:00:00\n", + "Selling FTNT on 2011-09-30 00:00:00\n", + "Selling REGN on 2011-09-30 00:00:00\n", + "Selling AMD on 2011-09-30 00:00:00\n", + "Selling NXPI on 2011-09-30 00:00:00\n", + "Selling HCA on 2011-09-30 00:00:00\n", + "Selling NFLX on 2011-09-30 00:00:00\n", + "Selling TMUS on 2011-09-30 00:00:00\n", + "Buying K on 2011-10-31 00:00:00\n", + "Buying UPS on 2011-10-31 00:00:00\n", + "Buying MDLZ on 2011-10-31 00:00:00\n", + "Buying PG on 2011-10-31 00:00:00\n", + "Buying ADP on 2011-10-31 00:00:00\n", + "Buying JNJ on 2011-10-31 00:00:00\n", + "Buying PAYX on 2011-10-31 00:00:00\n", + "Buying KO on 2011-10-31 00:00:00\n", + "Buying CTAS on 2011-10-31 00:00:00\n", + "Buying COP on 2011-10-31 00:00:00\n", + "Buying EFX on 2011-10-31 00:00:00\n", + "Buying PFE on 2011-10-31 00:00:00\n", + "Buying VZ on 2011-10-31 00:00:00\n", + "Buying MSFT on 2011-10-31 00:00:00\n", + "Buying MO on 2011-10-31 00:00:00\n", + "Buying CPB on 2011-10-31 00:00:00\n", + "Buying MKC on 2011-10-31 00:00:00\n", + "Buying CVS on 2011-10-31 00:00:00\n", + "Buying XEL on 2011-10-31 00:00:00\n", + "Buying SO on 2011-10-31 00:00:00\n", + "Buying L on 2011-10-31 00:00:00\n", + "Buying PNW on 2011-10-31 00:00:00\n", + "Buying SNA on 2011-10-31 00:00:00\n", + "Buying XOM on 2011-10-31 00:00:00\n", + "Buying DTE on 2011-10-31 00:00:00\n", + "Buying MRK on 2011-10-31 00:00:00\n", + "Buying NEE on 2011-10-31 00:00:00\n", + "Buying T on 2011-10-31 00:00:00\n", + "Buying ABT on 2011-10-31 00:00:00\n", + "Buying FI on 2011-10-31 00:00:00\n", + "Buying GPC on 2011-10-31 00:00:00\n", + "Buying KMB on 2011-10-31 00:00:00\n", + "Buying PPL on 2011-10-31 00:00:00\n", + "Buying CVX on 2011-10-31 00:00:00\n", + "Buying MCD on 2011-10-31 00:00:00\n", + "Buying BDX on 2011-10-31 00:00:00\n", + "Buying LLY on 2011-10-31 00:00:00\n", + "Buying AMGN on 2011-10-31 00:00:00\n", + "Buying NUE on 2011-10-31 00:00:00\n", + "Buying LIN on 2011-10-31 00:00:00\n", + "Buying SRE on 2011-10-31 00:00:00\n", + "Buying EXC on 2011-10-31 00:00:00\n", + "Buying EVRG on 2011-10-31 00:00:00\n", + "Buying AEE on 2011-10-31 00:00:00\n", + "Selling VLO on 2011-10-31 00:00:00\n", + "Selling AKAM on 2011-10-31 00:00:00\n", + "Selling LYB on 2011-10-31 00:00:00\n", + "Selling RF on 2011-10-31 00:00:00\n", + "Selling SWKS on 2011-10-31 00:00:00\n", + "Selling VMC on 2011-10-31 00:00:00\n", + "Selling MOH on 2011-10-31 00:00:00\n", + "Selling IPG on 2011-10-31 00:00:00\n", + "Selling TMUS on 2011-10-31 00:00:00\n", + "Selling CTRA on 2011-10-31 00:00:00\n", + "Selling DAL on 2011-10-31 00:00:00\n", + "Selling AMZN on 2011-10-31 00:00:00\n", + "Selling MPC on 2011-10-31 00:00:00\n", + "Selling FFIV on 2011-10-31 00:00:00\n", + "Selling DECK on 2011-10-31 00:00:00\n", + "Selling APO on 2011-10-31 00:00:00\n", + "Selling WYNN on 2011-10-31 00:00:00\n", + "Selling DXCM on 2011-10-31 00:00:00\n", + "Selling CF on 2011-10-31 00:00:00\n", + "Selling UAL on 2011-10-31 00:00:00\n", + "Selling LULU on 2011-10-31 00:00:00\n", + "Selling URI on 2011-10-31 00:00:00\n", + "Selling MGM on 2011-10-31 00:00:00\n", + "Selling CBRE on 2011-10-31 00:00:00\n", + "Selling MKTX on 2011-10-31 00:00:00\n", + "Selling ON on 2011-10-31 00:00:00\n", + "Selling GNRC on 2011-10-31 00:00:00\n", + "Selling AMD on 2011-10-31 00:00:00\n", + "Selling HPQ on 2011-10-31 00:00:00\n", + "Selling ULTA on 2011-10-31 00:00:00\n", + "Selling MS on 2011-10-31 00:00:00\n", + "Selling FTNT on 2011-10-31 00:00:00\n", + "Selling HCA on 2011-10-31 00:00:00\n", + "Selling VRTX on 2011-10-31 00:00:00\n", + "Selling NXPI on 2011-10-31 00:00:00\n", + "Selling MU on 2011-10-31 00:00:00\n", + "Selling BAC on 2011-10-31 00:00:00\n", + "Selling PHM on 2011-10-31 00:00:00\n", + "Selling STX on 2011-10-31 00:00:00\n", + "Selling REGN on 2011-10-31 00:00:00\n", + "Selling BLDR on 2011-10-31 00:00:00\n", + "Selling FSLR on 2011-10-31 00:00:00\n", + "Selling ALGN on 2011-10-31 00:00:00\n", + "Selling NFLX on 2011-10-31 00:00:00\n", + "Buying JNJ on 2011-11-30 00:00:00\n", + "Buying T on 2011-11-30 00:00:00\n", + "Buying UPS on 2011-11-30 00:00:00\n", + "Buying EFX on 2011-11-30 00:00:00\n", + "Buying MDLZ on 2011-11-30 00:00:00\n", + "Buying VZ on 2011-11-30 00:00:00\n", + "Buying SO on 2011-11-30 00:00:00\n", + "Buying DTE on 2011-11-30 00:00:00\n", + "Buying SYY on 2011-11-30 00:00:00\n", + "Buying PG on 2011-11-30 00:00:00\n", + "Buying PNW on 2011-11-30 00:00:00\n", + "Buying L on 2011-11-30 00:00:00\n", + "Buying PAYX on 2011-11-30 00:00:00\n", + "Buying KO on 2011-11-30 00:00:00\n", + "Buying MO on 2011-11-30 00:00:00\n", + "Buying ABT on 2011-11-30 00:00:00\n", + "Buying XOM on 2011-11-30 00:00:00\n", + "Buying EVRG on 2011-11-30 00:00:00\n", + "Buying ETR on 2011-11-30 00:00:00\n", + "Buying PPL on 2011-11-30 00:00:00\n", + "Buying MSFT on 2011-11-30 00:00:00\n", + "Buying ADP on 2011-11-30 00:00:00\n", + "Buying BALL on 2011-11-30 00:00:00\n", + "Buying AEP on 2011-11-30 00:00:00\n", + "Buying LNT on 2011-11-30 00:00:00\n", + "Buying DUK on 2011-11-30 00:00:00\n", + "Buying COP on 2011-11-30 00:00:00\n", + "Buying NEE on 2011-11-30 00:00:00\n", + "Buying XEL on 2011-11-30 00:00:00\n", + "Buying APD on 2011-11-30 00:00:00\n", + "Buying INTU on 2011-11-30 00:00:00\n", + "Buying WMT on 2011-11-30 00:00:00\n", + "Buying CMS on 2011-11-30 00:00:00\n", + "Buying HRL on 2011-11-30 00:00:00\n", + "Buying LIN on 2011-11-30 00:00:00\n", + "Buying GPC on 2011-11-30 00:00:00\n", + "Buying MCD on 2011-11-30 00:00:00\n", + "Buying FI on 2011-11-30 00:00:00\n", + "Buying D on 2011-11-30 00:00:00\n", + "Buying SNPS on 2011-11-30 00:00:00\n", + "Buying PFE on 2011-11-30 00:00:00\n", + "Buying SRE on 2011-11-30 00:00:00\n", + "Buying CVS on 2011-11-30 00:00:00\n", + "Buying OKE on 2011-11-30 00:00:00\n", + "Selling EL on 2011-11-30 00:00:00\n", + "Selling MGM on 2011-11-30 00:00:00\n", + "Selling LYB on 2011-11-30 00:00:00\n", + "Selling MKTX on 2011-11-30 00:00:00\n", + "Selling LYV on 2011-11-30 00:00:00\n", + "Selling IPG on 2011-11-30 00:00:00\n", + "Selling LVS on 2011-11-30 00:00:00\n", + "Selling URI on 2011-11-30 00:00:00\n", + "Selling TSLA on 2011-11-30 00:00:00\n", + "Selling COO on 2011-11-30 00:00:00\n", + "Selling RF on 2011-11-30 00:00:00\n", + "Selling AMZN on 2011-11-30 00:00:00\n", + "Selling CTRA on 2011-11-30 00:00:00\n", + "Selling MOH on 2011-11-30 00:00:00\n", + "Selling CBRE on 2011-11-30 00:00:00\n", + "Selling APO on 2011-11-30 00:00:00\n", + "Selling MS on 2011-11-30 00:00:00\n", + "Selling DAL on 2011-11-30 00:00:00\n", + "Selling TMUS on 2011-11-30 00:00:00\n", + "Selling VLO on 2011-11-30 00:00:00\n", + "Selling UAL on 2011-11-30 00:00:00\n", + "Selling WYNN on 2011-11-30 00:00:00\n", + "Selling AMD on 2011-11-30 00:00:00\n", + "Selling WDC on 2011-11-30 00:00:00\n", + "Selling PODD on 2011-11-30 00:00:00\n", + "Selling ULTA on 2011-11-30 00:00:00\n", + "Selling CF on 2011-11-30 00:00:00\n", + "Selling HCA on 2011-11-30 00:00:00\n", + "Selling SWKS on 2011-11-30 00:00:00\n", + "Selling GNRC on 2011-11-30 00:00:00\n", + "Selling MPC on 2011-11-30 00:00:00\n", + "Selling FICO on 2011-11-30 00:00:00\n", + "Selling ON on 2011-11-30 00:00:00\n", + "Selling NXPI on 2011-11-30 00:00:00\n", + "Selling FTNT on 2011-11-30 00:00:00\n", + "Selling VRTX on 2011-11-30 00:00:00\n", + "Selling REGN on 2011-11-30 00:00:00\n", + "Selling STX on 2011-11-30 00:00:00\n", + "Selling BLDR on 2011-11-30 00:00:00\n", + "Selling DXCM on 2011-11-30 00:00:00\n", + "Selling FSLR on 2011-11-30 00:00:00\n", + "Selling MU on 2011-11-30 00:00:00\n", + "Selling ALGN on 2011-11-30 00:00:00\n", + "Selling NFLX on 2011-11-30 00:00:00\n", + "Buying UPS on 2011-12-31 00:00:00\n", + "Buying T on 2011-12-31 00:00:00\n", + "Buying JNJ on 2011-12-31 00:00:00\n", + "Buying MDLZ on 2011-12-31 00:00:00\n", + "Buying PG on 2011-12-31 00:00:00\n", + "Buying SYY on 2011-12-31 00:00:00\n", + "Buying RTX on 2011-12-31 00:00:00\n", + "Buying VZ on 2011-12-31 00:00:00\n", + "Buying BALL on 2011-12-31 00:00:00\n", + "Buying ABT on 2011-12-31 00:00:00\n", + "Buying SO on 2011-12-31 00:00:00\n", + "Buying FI on 2011-12-31 00:00:00\n", + "Buying PAYX on 2011-12-31 00:00:00\n", + "Buying L on 2011-12-31 00:00:00\n", + "Buying CPRT on 2011-12-31 00:00:00\n", + "Buying GPC on 2011-12-31 00:00:00\n", + "Buying KO on 2011-12-31 00:00:00\n", + "Buying EFX on 2011-12-31 00:00:00\n", + "Buying PNW on 2011-12-31 00:00:00\n", + "Buying MO on 2011-12-31 00:00:00\n", + "Buying MCD on 2011-12-31 00:00:00\n", + "Buying NEE on 2011-12-31 00:00:00\n", + "Buying AEP on 2011-12-31 00:00:00\n", + "Buying XOM on 2011-12-31 00:00:00\n", + "Buying OMC on 2011-12-31 00:00:00\n", + "Buying JKHY on 2011-12-31 00:00:00\n", + "Buying DUK on 2011-12-31 00:00:00\n", + "Buying EVRG on 2011-12-31 00:00:00\n", + "Buying PPL on 2011-12-31 00:00:00\n", + "Buying MSFT on 2011-12-31 00:00:00\n", + "Buying PEP on 2011-12-31 00:00:00\n", + "Buying GIS on 2011-12-31 00:00:00\n", + "Buying DTE on 2011-12-31 00:00:00\n", + "Buying LIN on 2011-12-31 00:00:00\n", + "Buying ADP on 2011-12-31 00:00:00\n", + "Buying MKC on 2011-12-31 00:00:00\n", + "Buying LNT on 2011-12-31 00:00:00\n", + "Buying WMT on 2011-12-31 00:00:00\n", + "Buying SNPS on 2011-12-31 00:00:00\n", + "Buying XEL on 2011-12-31 00:00:00\n", + "Buying OKE on 2011-12-31 00:00:00\n", + "Buying COP on 2011-12-31 00:00:00\n", + "Buying BRK-B on 2011-12-31 00:00:00\n", + "Buying D on 2011-12-31 00:00:00\n", + "Selling MGM on 2011-12-31 00:00:00\n", + "Selling LULU on 2011-12-31 00:00:00\n", + "Selling CRM on 2011-12-31 00:00:00\n", + "Selling WYNN on 2011-12-31 00:00:00\n", + "Selling MKTX on 2011-12-31 00:00:00\n", + "Selling EL on 2011-12-31 00:00:00\n", + "Selling DAL on 2011-12-31 00:00:00\n", + "Selling URI on 2011-12-31 00:00:00\n", + "Selling RF on 2011-12-31 00:00:00\n", + "Selling APO on 2011-12-31 00:00:00\n", + "Selling AMZN on 2011-12-31 00:00:00\n", + "Selling TSLA on 2011-12-31 00:00:00\n", + "Selling INCY on 2011-12-31 00:00:00\n", + "Selling BBY on 2011-12-31 00:00:00\n", + "Selling CTRA on 2011-12-31 00:00:00\n", + "Selling UAL on 2011-12-31 00:00:00\n", + "Selling MPC on 2011-12-31 00:00:00\n", + "Selling CF on 2011-12-31 00:00:00\n", + "Selling HCA on 2011-12-31 00:00:00\n", + "Selling VLO on 2011-12-31 00:00:00\n", + "Selling CBRE on 2011-12-31 00:00:00\n", + "Selling MS on 2011-12-31 00:00:00\n", + "Selling SWKS on 2011-12-31 00:00:00\n", + "Selling PODD on 2011-12-31 00:00:00\n", + "Selling NXPI on 2011-12-31 00:00:00\n", + "Selling VMC on 2011-12-31 00:00:00\n", + "Selling DECK on 2011-12-31 00:00:00\n", + "Selling WDC on 2011-12-31 00:00:00\n", + "Selling FICO on 2011-12-31 00:00:00\n", + "Selling AKAM on 2011-12-31 00:00:00\n", + "Selling TMUS on 2011-12-31 00:00:00\n", + "Selling REGN on 2011-12-31 00:00:00\n", + "Selling ON on 2011-12-31 00:00:00\n", + "Selling COO on 2011-12-31 00:00:00\n", + "Selling VRTX on 2011-12-31 00:00:00\n", + "Selling FTNT on 2011-12-31 00:00:00\n", + "Selling BLDR on 2011-12-31 00:00:00\n", + "Selling STX on 2011-12-31 00:00:00\n", + "Selling DXCM on 2011-12-31 00:00:00\n", + "Selling ALGN on 2011-12-31 00:00:00\n", + "Selling MU on 2011-12-31 00:00:00\n", + "Selling EXPE on 2011-12-31 00:00:00\n", + "Selling FSLR on 2011-12-31 00:00:00\n", + "Selling NFLX on 2011-12-31 00:00:00\n", + "Buying JNJ on 2012-01-31 00:00:00\n", + "Buying UPS on 2012-01-31 00:00:00\n", + "Buying SYY on 2012-01-31 00:00:00\n", + "Buying T on 2012-01-31 00:00:00\n", + "Buying ABT on 2012-01-31 00:00:00\n", + "Buying KMB on 2012-01-31 00:00:00\n", + "Buying L on 2012-01-31 00:00:00\n", + "Buying PG on 2012-01-31 00:00:00\n", + "Buying ADP on 2012-01-31 00:00:00\n", + "Buying XOM on 2012-01-31 00:00:00\n", + "Buying BRK-B on 2012-01-31 00:00:00\n", + "Buying MMM on 2012-01-31 00:00:00\n", + "Buying MDLZ on 2012-01-31 00:00:00\n", + "Buying WST on 2012-01-31 00:00:00\n", + "Buying FI on 2012-01-31 00:00:00\n", + "Buying GPC on 2012-01-31 00:00:00\n", + "Buying AJG on 2012-01-31 00:00:00\n", + "Buying HON on 2012-01-31 00:00:00\n", + "Buying GIS on 2012-01-31 00:00:00\n", + "Buying PEP on 2012-01-31 00:00:00\n", + "Buying VZ on 2012-01-31 00:00:00\n", + "Buying CLX on 2012-01-31 00:00:00\n", + "Buying MCD on 2012-01-31 00:00:00\n", + "Buying O on 2012-01-31 00:00:00\n", + "Buying DUK on 2012-01-31 00:00:00\n", + "Buying CINF on 2012-01-31 00:00:00\n", + "Buying KO on 2012-01-31 00:00:00\n", + "Buying PAYX on 2012-01-31 00:00:00\n", + "Buying RTX on 2012-01-31 00:00:00\n", + "Buying PNW on 2012-01-31 00:00:00\n", + "Buying MKC on 2012-01-31 00:00:00\n", + "Buying WMT on 2012-01-31 00:00:00\n", + "Buying SPG on 2012-01-31 00:00:00\n", + "Buying JKHY on 2012-01-31 00:00:00\n", + "Buying HSY on 2012-01-31 00:00:00\n", + "Buying EFX on 2012-01-31 00:00:00\n", + "Buying ALL on 2012-01-31 00:00:00\n", + "Buying GL on 2012-01-31 00:00:00\n", + "Buying FMC on 2012-01-31 00:00:00\n", + "Buying NOC on 2012-01-31 00:00:00\n", + "Buying HSIC on 2012-01-31 00:00:00\n", + "Buying COP on 2012-01-31 00:00:00\n", + "Buying ROP on 2012-01-31 00:00:00\n", + "Buying SO on 2012-01-31 00:00:00\n", + "Selling STX on 2012-01-31 00:00:00\n", + "Selling JNPR on 2012-01-31 00:00:00\n", + "Selling TXT on 2012-01-31 00:00:00\n", + "Selling PHM on 2012-01-31 00:00:00\n", + "Selling MPC on 2012-01-31 00:00:00\n", + "Selling MS on 2012-01-31 00:00:00\n", + "Selling ON on 2012-01-31 00:00:00\n", + "Selling WDC on 2012-01-31 00:00:00\n", + "Selling EL on 2012-01-31 00:00:00\n", + "Selling CRM on 2012-01-31 00:00:00\n", + "Selling URI on 2012-01-31 00:00:00\n", + "Selling MKTX on 2012-01-31 00:00:00\n", + "Selling CRL on 2012-01-31 00:00:00\n", + "Selling GLW on 2012-01-31 00:00:00\n", + "Selling INCY on 2012-01-31 00:00:00\n", + "Selling CF on 2012-01-31 00:00:00\n", + "Selling DAL on 2012-01-31 00:00:00\n", + "Selling LYV on 2012-01-31 00:00:00\n", + "Selling VMC on 2012-01-31 00:00:00\n", + "Selling FTNT on 2012-01-31 00:00:00\n", + "Selling APO on 2012-01-31 00:00:00\n", + "Selling PODD on 2012-01-31 00:00:00\n", + "Selling AKAM on 2012-01-31 00:00:00\n", + "Selling BBY on 2012-01-31 00:00:00\n", + "Selling HCA on 2012-01-31 00:00:00\n", + "Selling TMUS on 2012-01-31 00:00:00\n", + "Selling DECK on 2012-01-31 00:00:00\n", + "Selling UAL on 2012-01-31 00:00:00\n", + "Selling SWKS on 2012-01-31 00:00:00\n", + "Selling LULU on 2012-01-31 00:00:00\n", + "Selling NXPI on 2012-01-31 00:00:00\n", + "Selling CTRA on 2012-01-31 00:00:00\n", + "Selling VRTX on 2012-01-31 00:00:00\n", + "Selling COO on 2012-01-31 00:00:00\n", + "Selling PTC on 2012-01-31 00:00:00\n", + "Selling BLDR on 2012-01-31 00:00:00\n", + "Selling FICO on 2012-01-31 00:00:00\n", + "Selling REGN on 2012-01-31 00:00:00\n", + "Selling DXCM on 2012-01-31 00:00:00\n", + "Selling TSLA on 2012-01-31 00:00:00\n", + "Selling MU on 2012-01-31 00:00:00\n", + "Selling FSLR on 2012-01-31 00:00:00\n", + "Selling EXPE on 2012-01-31 00:00:00\n", + "Selling NFLX on 2012-01-31 00:00:00\n", + "Buying MMM on 2012-02-29 00:00:00\n", + "Buying BRK-B on 2012-02-29 00:00:00\n", + "Buying UPS on 2012-02-29 00:00:00\n", + "Buying JNJ on 2012-02-29 00:00:00\n", + "Buying T on 2012-02-29 00:00:00\n", + "Buying ABT on 2012-02-29 00:00:00\n", + "Buying ADP on 2012-02-29 00:00:00\n", + "Buying MDLZ on 2012-02-29 00:00:00\n", + "Buying KMB on 2012-02-29 00:00:00\n", + "Buying L on 2012-02-29 00:00:00\n", + "Buying XOM on 2012-02-29 00:00:00\n", + "Buying CLX on 2012-02-29 00:00:00\n", + "Buying VZ on 2012-02-29 00:00:00\n", + "Buying HON on 2012-02-29 00:00:00\n", + "Buying KO on 2012-02-29 00:00:00\n", + "Buying MKC on 2012-02-29 00:00:00\n", + "Buying O on 2012-02-29 00:00:00\n", + "Buying IFF on 2012-02-29 00:00:00\n", + "Buying SYY on 2012-02-29 00:00:00\n", + "Buying AJG on 2012-02-29 00:00:00\n", + "Buying CINF on 2012-02-29 00:00:00\n", + "Buying ERIE on 2012-02-29 00:00:00\n", + "Buying PAYX on 2012-02-29 00:00:00\n", + "Buying BA on 2012-02-29 00:00:00\n", + "Buying PNW on 2012-02-29 00:00:00\n", + "Buying DUK on 2012-02-29 00:00:00\n", + "Buying PG on 2012-02-29 00:00:00\n", + "Buying SPG on 2012-02-29 00:00:00\n", + "Buying DVA on 2012-02-29 00:00:00\n", + "Buying MCD on 2012-02-29 00:00:00\n", + "Buying HSY on 2012-02-29 00:00:00\n", + "Buying PEP on 2012-02-29 00:00:00\n", + "Buying EVRG on 2012-02-29 00:00:00\n", + "Buying ECL on 2012-02-29 00:00:00\n", + "Buying ALL on 2012-02-29 00:00:00\n", + "Buying CL on 2012-02-29 00:00:00\n", + "Buying WEC on 2012-02-29 00:00:00\n", + "Buying GD on 2012-02-29 00:00:00\n", + "Buying MRK on 2012-02-29 00:00:00\n", + "Buying CAG on 2012-02-29 00:00:00\n", + "Buying BR on 2012-02-29 00:00:00\n", + "Buying WST on 2012-02-29 00:00:00\n", + "Buying LNT on 2012-02-29 00:00:00\n", + "Buying JKHY on 2012-02-29 00:00:00\n", + "Selling SWKS on 2012-02-29 00:00:00\n", + "Selling CBRE on 2012-02-29 00:00:00\n", + "Selling CCL on 2012-02-29 00:00:00\n", + "Selling AXON on 2012-02-29 00:00:00\n", + "Selling GNRC on 2012-02-29 00:00:00\n", + "Selling TXT on 2012-02-29 00:00:00\n", + "Selling UHS on 2012-02-29 00:00:00\n", + "Selling COO on 2012-02-29 00:00:00\n", + "Selling CRM on 2012-02-29 00:00:00\n", + "Selling MAS on 2012-02-29 00:00:00\n", + "Selling APO on 2012-02-29 00:00:00\n", + "Selling VMC on 2012-02-29 00:00:00\n", + "Selling EW on 2012-02-29 00:00:00\n", + "Selling MPWR on 2012-02-29 00:00:00\n", + "Selling BBY on 2012-02-29 00:00:00\n", + "Selling DAL on 2012-02-29 00:00:00\n", + "Selling DPZ on 2012-02-29 00:00:00\n", + "Selling URI on 2012-02-29 00:00:00\n", + "Selling CRL on 2012-02-29 00:00:00\n", + "Selling JNPR on 2012-02-29 00:00:00\n", + "Selling VRTX on 2012-02-29 00:00:00\n", + "Selling FTNT on 2012-02-29 00:00:00\n", + "Selling INCY on 2012-02-29 00:00:00\n", + "Selling MKTX on 2012-02-29 00:00:00\n", + "Selling LULU on 2012-02-29 00:00:00\n", + "Selling GILD on 2012-02-29 00:00:00\n", + "Selling PHM on 2012-02-29 00:00:00\n", + "Selling UAL on 2012-02-29 00:00:00\n", + "Selling DXCM on 2012-02-29 00:00:00\n", + "Selling CTRA on 2012-02-29 00:00:00\n", + "Selling HCA on 2012-02-29 00:00:00\n", + "Selling NXPI on 2012-02-29 00:00:00\n", + "Selling AKAM on 2012-02-29 00:00:00\n", + "Selling PTC on 2012-02-29 00:00:00\n", + "Selling MU on 2012-02-29 00:00:00\n", + "Selling STX on 2012-02-29 00:00:00\n", + "Selling REGN on 2012-02-29 00:00:00\n", + "Selling DECK on 2012-02-29 00:00:00\n", + "Selling TMUS on 2012-02-29 00:00:00\n", + "Selling BLDR on 2012-02-29 00:00:00\n", + "Selling TSLA on 2012-02-29 00:00:00\n", + "Selling EXPE on 2012-02-29 00:00:00\n", + "Selling NFLX on 2012-02-29 00:00:00\n", + "Selling FSLR on 2012-02-29 00:00:00\n", + "Buying JNJ on 2012-03-31 00:00:00\n", + "Buying MMM on 2012-03-31 00:00:00\n", + "Buying BRK-B on 2012-03-31 00:00:00\n", + "Buying ADP on 2012-03-31 00:00:00\n", + "Buying KMB on 2012-03-31 00:00:00\n", + "Buying T on 2012-03-31 00:00:00\n", + "Buying NEE on 2012-03-31 00:00:00\n", + "Buying MDLZ on 2012-03-31 00:00:00\n", + "Buying L on 2012-03-31 00:00:00\n", + "Buying DUK on 2012-03-31 00:00:00\n", + "Buying CLX on 2012-03-31 00:00:00\n", + "Buying O on 2012-03-31 00:00:00\n", + "Buying WEC on 2012-03-31 00:00:00\n", + "Buying VZ on 2012-03-31 00:00:00\n", + "Buying GE on 2012-03-31 00:00:00\n", + "Buying ERIE on 2012-03-31 00:00:00\n", + "Buying LLY on 2012-03-31 00:00:00\n", + "Buying SO on 2012-03-31 00:00:00\n", + "Buying ABT on 2012-03-31 00:00:00\n", + "Buying ED on 2012-03-31 00:00:00\n", + "Buying KO on 2012-03-31 00:00:00\n", + "Buying UPS on 2012-03-31 00:00:00\n", + "Buying MO on 2012-03-31 00:00:00\n", + "Buying PNW on 2012-03-31 00:00:00\n", + "Buying PAYX on 2012-03-31 00:00:00\n", + "Buying EVRG on 2012-03-31 00:00:00\n", + "Buying BA on 2012-03-31 00:00:00\n", + "Buying CAG on 2012-03-31 00:00:00\n", + "Buying JKHY on 2012-03-31 00:00:00\n", + "Buying MKC on 2012-03-31 00:00:00\n", + "Buying PFE on 2012-03-31 00:00:00\n", + "Buying ECL on 2012-03-31 00:00:00\n", + "Buying SNPS on 2012-03-31 00:00:00\n", + "Buying CL on 2012-03-31 00:00:00\n", + "Buying BR on 2012-03-31 00:00:00\n", + "Buying HRL on 2012-03-31 00:00:00\n", + "Buying WM on 2012-03-31 00:00:00\n", + "Buying SBAC on 2012-03-31 00:00:00\n", + "Buying IFF on 2012-03-31 00:00:00\n", + "Buying XOM on 2012-03-31 00:00:00\n", + "Buying HON on 2012-03-31 00:00:00\n", + "Buying D on 2012-03-31 00:00:00\n", + "Buying AJG on 2012-03-31 00:00:00\n", + "Buying DHR on 2012-03-31 00:00:00\n", + "Selling MPC on 2012-03-31 00:00:00\n", + "Selling WDC on 2012-03-31 00:00:00\n", + "Selling CF on 2012-03-31 00:00:00\n", + "Selling EQT on 2012-03-31 00:00:00\n", + "Selling WYNN on 2012-03-31 00:00:00\n", + "Selling VLO on 2012-03-31 00:00:00\n", + "Selling MOH on 2012-03-31 00:00:00\n", + "Selling BBY on 2012-03-31 00:00:00\n", + "Selling LULU on 2012-03-31 00:00:00\n", + "Selling CBRE on 2012-03-31 00:00:00\n", + "Selling PNR on 2012-03-31 00:00:00\n", + "Selling EA on 2012-03-31 00:00:00\n", + "Selling LEN on 2012-03-31 00:00:00\n", + "Selling CCL on 2012-03-31 00:00:00\n", + "Selling VRTX on 2012-03-31 00:00:00\n", + "Selling TXT on 2012-03-31 00:00:00\n", + "Selling DAL on 2012-03-31 00:00:00\n", + "Selling BAC on 2012-03-31 00:00:00\n", + "Selling URI on 2012-03-31 00:00:00\n", + "Selling MKTX on 2012-03-31 00:00:00\n", + "Selling JNPR on 2012-03-31 00:00:00\n", + "Selling EW on 2012-03-31 00:00:00\n", + "Selling MAS on 2012-03-31 00:00:00\n", + "Selling DPZ on 2012-03-31 00:00:00\n", + "Selling HCA on 2012-03-31 00:00:00\n", + "Selling CRL on 2012-03-31 00:00:00\n", + "Selling MU on 2012-03-31 00:00:00\n", + "Selling DXCM on 2012-03-31 00:00:00\n", + "Selling GILD on 2012-03-31 00:00:00\n", + "Selling INCY on 2012-03-31 00:00:00\n", + "Selling UAL on 2012-03-31 00:00:00\n", + "Selling AXON on 2012-03-31 00:00:00\n", + "Selling CTRA on 2012-03-31 00:00:00\n", + "Selling NXPI on 2012-03-31 00:00:00\n", + "Selling PTC on 2012-03-31 00:00:00\n", + "Selling TMUS on 2012-03-31 00:00:00\n", + "Selling PHM on 2012-03-31 00:00:00\n", + "Selling DECK on 2012-03-31 00:00:00\n", + "Selling REGN on 2012-03-31 00:00:00\n", + "Selling STX on 2012-03-31 00:00:00\n", + "Selling BLDR on 2012-03-31 00:00:00\n", + "Selling TSLA on 2012-03-31 00:00:00\n", + "Selling NFLX on 2012-03-31 00:00:00\n", + "Selling FSLR on 2012-03-31 00:00:00\n", + "Buying JNJ on 2012-04-30 00:00:00\n", + "Buying MO on 2012-04-30 00:00:00\n", + "Buying MMM on 2012-04-30 00:00:00\n", + "Buying LIN on 2012-04-30 00:00:00\n", + "Buying ADP on 2012-04-30 00:00:00\n", + "Buying L on 2012-04-30 00:00:00\n", + "Buying CL on 2012-04-30 00:00:00\n", + "Buying NEE on 2012-04-30 00:00:00\n", + "Buying SO on 2012-04-30 00:00:00\n", + "Buying BRK-B on 2012-04-30 00:00:00\n", + "Buying WEC on 2012-04-30 00:00:00\n", + "Buying AME on 2012-04-30 00:00:00\n", + "Buying ABT on 2012-04-30 00:00:00\n", + "Buying CLX on 2012-04-30 00:00:00\n", + "Buying ALL on 2012-04-30 00:00:00\n", + "Buying D on 2012-04-30 00:00:00\n", + "Buying KO on 2012-04-30 00:00:00\n", + "Buying KMB on 2012-04-30 00:00:00\n", + "Buying ED on 2012-04-30 00:00:00\n", + "Buying LLY on 2012-04-30 00:00:00\n", + "Buying LHX on 2012-04-30 00:00:00\n", + "Buying PAYX on 2012-04-30 00:00:00\n", + "Buying MKC on 2012-04-30 00:00:00\n", + "Buying BEN on 2012-04-30 00:00:00\n", + "Buying XEL on 2012-04-30 00:00:00\n", + "Buying BR on 2012-04-30 00:00:00\n", + "Buying ERIE on 2012-04-30 00:00:00\n", + "Buying FE on 2012-04-30 00:00:00\n", + "Buying PCG on 2012-04-30 00:00:00\n", + "Buying HRL on 2012-04-30 00:00:00\n", + "Buying DUK on 2012-04-30 00:00:00\n", + "Buying ITW on 2012-04-30 00:00:00\n", + "Buying NOC on 2012-04-30 00:00:00\n", + "Buying IFF on 2012-04-30 00:00:00\n", + "Buying ETR on 2012-04-30 00:00:00\n", + "Buying PFE on 2012-04-30 00:00:00\n", + "Buying JKHY on 2012-04-30 00:00:00\n", + "Buying LNT on 2012-04-30 00:00:00\n", + "Buying IBM on 2012-04-30 00:00:00\n", + "Buying COST on 2012-04-30 00:00:00\n", + "Buying MDLZ on 2012-04-30 00:00:00\n", + "Buying LMT on 2012-04-30 00:00:00\n", + "Buying PNW on 2012-04-30 00:00:00\n", + "Buying FI on 2012-04-30 00:00:00\n", + "Selling GNRC on 2012-04-30 00:00:00\n", + "Selling WYNN on 2012-04-30 00:00:00\n", + "Selling BBY on 2012-04-30 00:00:00\n", + "Selling BAC on 2012-04-30 00:00:00\n", + "Selling LYB on 2012-04-30 00:00:00\n", + "Selling HCA on 2012-04-30 00:00:00\n", + "Selling DAL on 2012-04-30 00:00:00\n", + "Selling VRTX on 2012-04-30 00:00:00\n", + "Selling EQIX on 2012-04-30 00:00:00\n", + "Selling SWKS on 2012-04-30 00:00:00\n", + "Selling DHI on 2012-04-30 00:00:00\n", + "Selling MKTX on 2012-04-30 00:00:00\n", + "Selling EBAY on 2012-04-30 00:00:00\n", + "Selling PNR on 2012-04-30 00:00:00\n", + "Selling LEN on 2012-04-30 00:00:00\n", + "Selling JNPR on 2012-04-30 00:00:00\n", + "Selling MAS on 2012-04-30 00:00:00\n", + "Selling TSLA on 2012-04-30 00:00:00\n", + "Selling CTRA on 2012-04-30 00:00:00\n", + "Selling STX on 2012-04-30 00:00:00\n", + "Selling UAL on 2012-04-30 00:00:00\n", + "Selling URI on 2012-04-30 00:00:00\n", + "Selling DPZ on 2012-04-30 00:00:00\n", + "Selling ALGN on 2012-04-30 00:00:00\n", + "Selling NXPI on 2012-04-30 00:00:00\n", + "Selling MU on 2012-04-30 00:00:00\n", + "Selling AMZN on 2012-04-30 00:00:00\n", + "Selling EW on 2012-04-30 00:00:00\n", + "Selling REGN on 2012-04-30 00:00:00\n", + "Selling AKAM on 2012-04-30 00:00:00\n", + "Selling CNC on 2012-04-30 00:00:00\n", + "Selling WDC on 2012-04-30 00:00:00\n", + "Selling AXON on 2012-04-30 00:00:00\n", + "Selling NFLX on 2012-04-30 00:00:00\n", + "Selling PHM on 2012-04-30 00:00:00\n", + "Selling GILD on 2012-04-30 00:00:00\n", + "Selling INCY on 2012-04-30 00:00:00\n", + "Selling TMUS on 2012-04-30 00:00:00\n", + "Selling PTC on 2012-04-30 00:00:00\n", + "Selling EXPE on 2012-04-30 00:00:00\n", + "Selling BLDR on 2012-04-30 00:00:00\n", + "Selling MOH on 2012-04-30 00:00:00\n", + "Selling FSLR on 2012-04-30 00:00:00\n", + "Selling DECK on 2012-04-30 00:00:00\n", + "Buying JNJ on 2012-05-31 00:00:00\n", + "Buying MMM on 2012-05-31 00:00:00\n", + "Buying MO on 2012-05-31 00:00:00\n", + "Buying L on 2012-05-31 00:00:00\n", + "Buying CAG on 2012-05-31 00:00:00\n", + "Buying GIS on 2012-05-31 00:00:00\n", + "Buying SO on 2012-05-31 00:00:00\n", + "Buying ADP on 2012-05-31 00:00:00\n", + "Buying FI on 2012-05-31 00:00:00\n", + "Buying BRK-B on 2012-05-31 00:00:00\n", + "Buying LMT on 2012-05-31 00:00:00\n", + "Buying ED on 2012-05-31 00:00:00\n", + "Buying IFF on 2012-05-31 00:00:00\n", + "Buying BDX on 2012-05-31 00:00:00\n", + "Buying LLY on 2012-05-31 00:00:00\n", + "Buying KO on 2012-05-31 00:00:00\n", + "Buying KMB on 2012-05-31 00:00:00\n", + "Buying D on 2012-05-31 00:00:00\n", + "Buying MKC on 2012-05-31 00:00:00\n", + "Buying JKHY on 2012-05-31 00:00:00\n", + "Buying NEE on 2012-05-31 00:00:00\n", + "Buying PEP on 2012-05-31 00:00:00\n", + "Buying PCG on 2012-05-31 00:00:00\n", + "Buying NOC on 2012-05-31 00:00:00\n", + "Buying LIN on 2012-05-31 00:00:00\n", + "Buying ETR on 2012-05-31 00:00:00\n", + "Buying TROW on 2012-05-31 00:00:00\n", + "Buying MDLZ on 2012-05-31 00:00:00\n", + "Buying AME on 2012-05-31 00:00:00\n", + "Buying HRL on 2012-05-31 00:00:00\n", + "Buying CMCSA on 2012-05-31 00:00:00\n", + "Buying DTE on 2012-05-31 00:00:00\n", + "Buying CL on 2012-05-31 00:00:00\n", + "Buying SYK on 2012-05-31 00:00:00\n", + "Buying IBM on 2012-05-31 00:00:00\n", + "Buying DUK on 2012-05-31 00:00:00\n", + "Buying ROP on 2012-05-31 00:00:00\n", + "Buying TGT on 2012-05-31 00:00:00\n", + "Buying PAYX on 2012-05-31 00:00:00\n", + "Buying CINF on 2012-05-31 00:00:00\n", + "Buying BR on 2012-05-31 00:00:00\n", + "Buying CLX on 2012-05-31 00:00:00\n", + "Buying AEP on 2012-05-31 00:00:00\n", + "Buying ECL on 2012-05-31 00:00:00\n", + "Selling BBY on 2012-05-31 00:00:00\n", + "Selling DPZ on 2012-05-31 00:00:00\n", + "Selling GILD on 2012-05-31 00:00:00\n", + "Selling LYB on 2012-05-31 00:00:00\n", + "Selling EA on 2012-05-31 00:00:00\n", + "Selling DAL on 2012-05-31 00:00:00\n", + "Selling JNPR on 2012-05-31 00:00:00\n", + "Selling DHI on 2012-05-31 00:00:00\n", + "Selling BAC on 2012-05-31 00:00:00\n", + "Selling EBAY on 2012-05-31 00:00:00\n", + "Selling MU on 2012-05-31 00:00:00\n", + "Selling NTAP on 2012-05-31 00:00:00\n", + "Selling SWKS on 2012-05-31 00:00:00\n", + "Selling EQIX on 2012-05-31 00:00:00\n", + "Selling FFIV on 2012-05-31 00:00:00\n", + "Selling PNR on 2012-05-31 00:00:00\n", + "Selling ALGN on 2012-05-31 00:00:00\n", + "Selling CRM on 2012-05-31 00:00:00\n", + "Selling LEN on 2012-05-31 00:00:00\n", + "Selling NXPI on 2012-05-31 00:00:00\n", + "Selling AMZN on 2012-05-31 00:00:00\n", + "Selling CTRA on 2012-05-31 00:00:00\n", + "Selling AKAM on 2012-05-31 00:00:00\n", + "Selling UAL on 2012-05-31 00:00:00\n", + "Selling AXON on 2012-05-31 00:00:00\n", + "Selling CNC on 2012-05-31 00:00:00\n", + "Selling STX on 2012-05-31 00:00:00\n", + "Selling URI on 2012-05-31 00:00:00\n", + "Selling PHM on 2012-05-31 00:00:00\n", + "Selling CTSH on 2012-05-31 00:00:00\n", + "Selling INCY on 2012-05-31 00:00:00\n", + "Selling TSLA on 2012-05-31 00:00:00\n", + "Selling WDC on 2012-05-31 00:00:00\n", + "Selling TMUS on 2012-05-31 00:00:00\n", + "Selling NFLX on 2012-05-31 00:00:00\n", + "Selling PTC on 2012-05-31 00:00:00\n", + "Selling EXPE on 2012-05-31 00:00:00\n", + "Selling BLDR on 2012-05-31 00:00:00\n", + "Selling MOH on 2012-05-31 00:00:00\n", + "Selling GNRC on 2012-05-31 00:00:00\n", + "Selling FSLR on 2012-05-31 00:00:00\n", + "Selling DECK on 2012-05-31 00:00:00\n", + "Selling EPAM on 2012-05-31 00:00:00\n", + "Selling VRTX on 2012-05-31 00:00:00\n", + "Buying MMM on 2012-06-30 00:00:00\n", + "Buying L on 2012-06-30 00:00:00\n", + "Buying D on 2012-06-30 00:00:00\n", + "Buying ADP on 2012-06-30 00:00:00\n", + "Buying KO on 2012-06-30 00:00:00\n", + "Buying BDX on 2012-06-30 00:00:00\n", + "Buying NEE on 2012-06-30 00:00:00\n", + "Buying FI on 2012-06-30 00:00:00\n", + "Buying LLY on 2012-06-30 00:00:00\n", + "Buying UPS on 2012-06-30 00:00:00\n", + "Buying MO on 2012-06-30 00:00:00\n", + "Buying ED on 2012-06-30 00:00:00\n", + "Buying TROW on 2012-06-30 00:00:00\n", + "Buying DTE on 2012-06-30 00:00:00\n", + "Buying AEP on 2012-06-30 00:00:00\n", + "Buying BRK-B on 2012-06-30 00:00:00\n", + "Buying ETR on 2012-06-30 00:00:00\n", + "Buying GIS on 2012-06-30 00:00:00\n", + "Buying JNJ on 2012-06-30 00:00:00\n", + "Buying SO on 2012-06-30 00:00:00\n", + "Buying MKC on 2012-06-30 00:00:00\n", + "Buying NOC on 2012-06-30 00:00:00\n", + "Buying PEP on 2012-06-30 00:00:00\n", + "Buying CINF on 2012-06-30 00:00:00\n", + "Buying JKHY on 2012-06-30 00:00:00\n", + "Buying FE on 2012-06-30 00:00:00\n", + "Buying IFF on 2012-06-30 00:00:00\n", + "Buying CTAS on 2012-06-30 00:00:00\n", + "Buying TFX on 2012-06-30 00:00:00\n", + "Buying CL on 2012-06-30 00:00:00\n", + "Buying KMB on 2012-06-30 00:00:00\n", + "Buying CMCSA on 2012-06-30 00:00:00\n", + "Buying LMT on 2012-06-30 00:00:00\n", + "Buying ABT on 2012-06-30 00:00:00\n", + "Buying IBM on 2012-06-30 00:00:00\n", + "Buying MTB on 2012-06-30 00:00:00\n", + "Buying PPL on 2012-06-30 00:00:00\n", + "Buying PAYX on 2012-06-30 00:00:00\n", + "Buying WEC on 2012-06-30 00:00:00\n", + "Buying PFE on 2012-06-30 00:00:00\n", + "Buying PCG on 2012-06-30 00:00:00\n", + "Buying EVRG on 2012-06-30 00:00:00\n", + "Buying LNT on 2012-06-30 00:00:00\n", + "Buying PNW on 2012-06-30 00:00:00\n", + "Buying AXP on 2012-06-30 00:00:00\n", + "Selling TSCO on 2012-06-30 00:00:00\n", + "Selling NXPI on 2012-06-30 00:00:00\n", + "Selling NEM on 2012-06-30 00:00:00\n", + "Selling JNPR on 2012-06-30 00:00:00\n", + "Selling DHI on 2012-06-30 00:00:00\n", + "Selling MU on 2012-06-30 00:00:00\n", + "Selling MNST on 2012-06-30 00:00:00\n", + "Selling AXON on 2012-06-30 00:00:00\n", + "Selling EBAY on 2012-06-30 00:00:00\n", + "Selling AMZN on 2012-06-30 00:00:00\n", + "Selling EQIX on 2012-06-30 00:00:00\n", + "Selling LULU on 2012-06-30 00:00:00\n", + "Selling ALGN on 2012-06-30 00:00:00\n", + "Selling NTAP on 2012-06-30 00:00:00\n", + "Selling CRM on 2012-06-30 00:00:00\n", + "Selling FFIV on 2012-06-30 00:00:00\n", + "Selling SWKS on 2012-06-30 00:00:00\n", + "Selling ORLY on 2012-06-30 00:00:00\n", + "Selling LEN on 2012-06-30 00:00:00\n", + "Selling AKAM on 2012-06-30 00:00:00\n", + "Selling REGN on 2012-06-30 00:00:00\n", + "Selling UAL on 2012-06-30 00:00:00\n", + "Selling PHM on 2012-06-30 00:00:00\n", + "Selling INCY on 2012-06-30 00:00:00\n", + "Selling WDC on 2012-06-30 00:00:00\n", + "Selling CTRA on 2012-06-30 00:00:00\n", + "Selling TSLA on 2012-06-30 00:00:00\n", + "Selling DAL on 2012-06-30 00:00:00\n", + "Selling EPAM on 2012-06-30 00:00:00\n", + "Selling STX on 2012-06-30 00:00:00\n", + "Selling CTSH on 2012-06-30 00:00:00\n", + "Selling TMUS on 2012-06-30 00:00:00\n", + "Selling URI on 2012-06-30 00:00:00\n", + "Selling NFLX on 2012-06-30 00:00:00\n", + "Selling PTC on 2012-06-30 00:00:00\n", + "Selling EXPE on 2012-06-30 00:00:00\n", + "Selling GNRC on 2012-06-30 00:00:00\n", + "Selling BLDR on 2012-06-30 00:00:00\n", + "Selling STZ on 2012-06-30 00:00:00\n", + "Selling DECK on 2012-06-30 00:00:00\n", + "Selling CNC on 2012-06-30 00:00:00\n", + "Selling FSLR on 2012-06-30 00:00:00\n", + "Selling ENPH on 2012-06-30 00:00:00\n", + "Selling MOH on 2012-06-30 00:00:00\n", + "Selling VRTX on 2012-06-30 00:00:00\n", + "Buying BDX on 2012-07-31 00:00:00\n", + "Buying MMM on 2012-07-31 00:00:00\n", + "Buying ETR on 2012-07-31 00:00:00\n", + "Buying ADP on 2012-07-31 00:00:00\n", + "Buying EVRG on 2012-07-31 00:00:00\n", + "Buying D on 2012-07-31 00:00:00\n", + "Buying TRV on 2012-07-31 00:00:00\n", + "Buying AEP on 2012-07-31 00:00:00\n", + "Buying ED on 2012-07-31 00:00:00\n", + "Buying CLX on 2012-07-31 00:00:00\n", + "Buying JNJ on 2012-07-31 00:00:00\n", + "Buying DTE on 2012-07-31 00:00:00\n", + "Buying BRK-B on 2012-07-31 00:00:00\n", + "Buying JKHY on 2012-07-31 00:00:00\n", + "Buying SO on 2012-07-31 00:00:00\n", + "Buying MO on 2012-07-31 00:00:00\n", + "Buying K on 2012-07-31 00:00:00\n", + "Buying CINF on 2012-07-31 00:00:00\n", + "Buying PPL on 2012-07-31 00:00:00\n", + "Buying KO on 2012-07-31 00:00:00\n", + "Buying NOC on 2012-07-31 00:00:00\n", + "Buying PNW on 2012-07-31 00:00:00\n", + "Buying KMB on 2012-07-31 00:00:00\n", + "Buying PEP on 2012-07-31 00:00:00\n", + "Buying SYY on 2012-07-31 00:00:00\n", + "Buying CMS on 2012-07-31 00:00:00\n", + "Buying NEE on 2012-07-31 00:00:00\n", + "Buying MKC on 2012-07-31 00:00:00\n", + "Buying FI on 2012-07-31 00:00:00\n", + "Buying GIS on 2012-07-31 00:00:00\n", + "Buying WTW on 2012-07-31 00:00:00\n", + "Buying MCK on 2012-07-31 00:00:00\n", + "Buying PSA on 2012-07-31 00:00:00\n", + "Buying XEL on 2012-07-31 00:00:00\n", + "Buying SRE on 2012-07-31 00:00:00\n", + "Buying PCG on 2012-07-31 00:00:00\n", + "Buying WEC on 2012-07-31 00:00:00\n", + "Buying ALL on 2012-07-31 00:00:00\n", + "Buying MDLZ on 2012-07-31 00:00:00\n", + "Buying LNT on 2012-07-31 00:00:00\n", + "Buying LMT on 2012-07-31 00:00:00\n", + "Buying ABT on 2012-07-31 00:00:00\n", + "Buying NI on 2012-07-31 00:00:00\n", + "Buying FE on 2012-07-31 00:00:00\n", + "Buying XOM on 2012-07-31 00:00:00\n", + "Selling AXON on 2012-07-31 00:00:00\n", + "Selling MNST on 2012-07-31 00:00:00\n", + "Selling PTC on 2012-07-31 00:00:00\n", + "Selling BBY on 2012-07-31 00:00:00\n", + "Selling NVR on 2012-07-31 00:00:00\n", + "Selling INCY on 2012-07-31 00:00:00\n", + "Selling DECK on 2012-07-31 00:00:00\n", + "Selling SWKS on 2012-07-31 00:00:00\n", + "Selling LULU on 2012-07-31 00:00:00\n", + "Selling AMD on 2012-07-31 00:00:00\n", + "Selling VMC on 2012-07-31 00:00:00\n", + "Selling JNPR on 2012-07-31 00:00:00\n", + "Selling NTAP on 2012-07-31 00:00:00\n", + "Selling FFIV on 2012-07-31 00:00:00\n", + "Selling CTRA on 2012-07-31 00:00:00\n", + "Selling ORLY on 2012-07-31 00:00:00\n", + "Selling LEN on 2012-07-31 00:00:00\n", + "Selling MPWR on 2012-07-31 00:00:00\n", + "Selling CRM on 2012-07-31 00:00:00\n", + "Selling REGN on 2012-07-31 00:00:00\n", + "Selling FTNT on 2012-07-31 00:00:00\n", + "Selling TPR on 2012-07-31 00:00:00\n", + "Selling STX on 2012-07-31 00:00:00\n", + "Selling EPAM on 2012-07-31 00:00:00\n", + "Selling EXPE on 2012-07-31 00:00:00\n", + "Selling UAL on 2012-07-31 00:00:00\n", + "Selling CTSH on 2012-07-31 00:00:00\n", + "Selling WDC on 2012-07-31 00:00:00\n", + "Selling DAL on 2012-07-31 00:00:00\n", + "Selling TSCO on 2012-07-31 00:00:00\n", + "Selling AKAM on 2012-07-31 00:00:00\n", + "Selling CMG on 2012-07-31 00:00:00\n", + "Selling PHM on 2012-07-31 00:00:00\n", + "Selling TSLA on 2012-07-31 00:00:00\n", + "Selling URI on 2012-07-31 00:00:00\n", + "Selling STZ on 2012-07-31 00:00:00\n", + "Selling BLDR on 2012-07-31 00:00:00\n", + "Selling GNRC on 2012-07-31 00:00:00\n", + "Selling NFLX on 2012-07-31 00:00:00\n", + "Selling FSLR on 2012-07-31 00:00:00\n", + "Selling CNC on 2012-07-31 00:00:00\n", + "Selling ENPH on 2012-07-31 00:00:00\n", + "Selling TMUS on 2012-07-31 00:00:00\n", + "Selling MOH on 2012-07-31 00:00:00\n", + "Selling VRTX on 2012-07-31 00:00:00\n", + "Buying EVRG on 2012-08-31 00:00:00\n", + "Buying MMM on 2012-08-31 00:00:00\n", + "Buying BRK-B on 2012-08-31 00:00:00\n", + "Buying ADP on 2012-08-31 00:00:00\n", + "Buying D on 2012-08-31 00:00:00\n", + "Buying XOM on 2012-08-31 00:00:00\n", + "Buying PEP on 2012-08-31 00:00:00\n", + "Buying CLX on 2012-08-31 00:00:00\n", + "Buying BDX on 2012-08-31 00:00:00\n", + "Buying ABT on 2012-08-31 00:00:00\n", + "Buying JNJ on 2012-08-31 00:00:00\n", + "Buying USB on 2012-08-31 00:00:00\n", + "Buying PNW on 2012-08-31 00:00:00\n", + "Buying TRV on 2012-08-31 00:00:00\n", + "Buying SO on 2012-08-31 00:00:00\n", + "Buying CINF on 2012-08-31 00:00:00\n", + "Buying DTE on 2012-08-31 00:00:00\n", + "Buying XEL on 2012-08-31 00:00:00\n", + "Buying CMS on 2012-08-31 00:00:00\n", + "Buying ETR on 2012-08-31 00:00:00\n", + "Buying WFC on 2012-08-31 00:00:00\n", + "Buying ED on 2012-08-31 00:00:00\n", + "Buying GIS on 2012-08-31 00:00:00\n", + "Buying LNT on 2012-08-31 00:00:00\n", + "Buying CVX on 2012-08-31 00:00:00\n", + "Buying AEP on 2012-08-31 00:00:00\n", + "Buying FRT on 2012-08-31 00:00:00\n", + "Buying NOC on 2012-08-31 00:00:00\n", + "Buying CL on 2012-08-31 00:00:00\n", + "Buying MKC on 2012-08-31 00:00:00\n", + "Buying NEE on 2012-08-31 00:00:00\n", + "Buying PPL on 2012-08-31 00:00:00\n", + "Buying LMT on 2012-08-31 00:00:00\n", + "Buying WEC on 2012-08-31 00:00:00\n", + "Buying CNP on 2012-08-31 00:00:00\n", + "Buying KO on 2012-08-31 00:00:00\n", + "Buying PEG on 2012-08-31 00:00:00\n", + "Buying GD on 2012-08-31 00:00:00\n", + "Buying UPS on 2012-08-31 00:00:00\n", + "Buying GE on 2012-08-31 00:00:00\n", + "Buying SRE on 2012-08-31 00:00:00\n", + "Buying SPG on 2012-08-31 00:00:00\n", + "Buying OKE on 2012-08-31 00:00:00\n", + "Buying HSY on 2012-08-31 00:00:00\n", + "Buying CPB on 2012-08-31 00:00:00\n", + "Selling FICO on 2012-08-31 00:00:00\n", + "Selling SWKS on 2012-08-31 00:00:00\n", + "Selling STX on 2012-08-31 00:00:00\n", + "Selling ODFL on 2012-08-31 00:00:00\n", + "Selling DAL on 2012-08-31 00:00:00\n", + "Selling UAL on 2012-08-31 00:00:00\n", + "Selling FFIV on 2012-08-31 00:00:00\n", + "Selling FTNT on 2012-08-31 00:00:00\n", + "Selling LULU on 2012-08-31 00:00:00\n", + "Selling JNPR on 2012-08-31 00:00:00\n", + "Selling CTRA on 2012-08-31 00:00:00\n", + "Selling ORLY on 2012-08-31 00:00:00\n", + "Selling MPWR on 2012-08-31 00:00:00\n", + "Selling ELV on 2012-08-31 00:00:00\n", + "Selling REGN on 2012-08-31 00:00:00\n", + "Selling EPAM on 2012-08-31 00:00:00\n", + "Selling DECK on 2012-08-31 00:00:00\n", + "Selling AMD on 2012-08-31 00:00:00\n", + "Selling ADSK on 2012-08-31 00:00:00\n", + "Selling WDC on 2012-08-31 00:00:00\n", + "Selling BKNG on 2012-08-31 00:00:00\n", + "Selling TSCO on 2012-08-31 00:00:00\n", + "Selling TPR on 2012-08-31 00:00:00\n", + "Selling VRTX on 2012-08-31 00:00:00\n", + "Selling IPG on 2012-08-31 00:00:00\n", + "Selling GNRC on 2012-08-31 00:00:00\n", + "Selling EXPE on 2012-08-31 00:00:00\n", + "Selling AKAM on 2012-08-31 00:00:00\n", + "Selling MNST on 2012-08-31 00:00:00\n", + "Selling CMG on 2012-08-31 00:00:00\n", + "Selling TTWO on 2012-08-31 00:00:00\n", + "Selling PHM on 2012-08-31 00:00:00\n", + "Selling BBY on 2012-08-31 00:00:00\n", + "Selling TSLA on 2012-08-31 00:00:00\n", + "Selling URI on 2012-08-31 00:00:00\n", + "Selling INCY on 2012-08-31 00:00:00\n", + "Selling META on 2012-08-31 00:00:00\n", + "Selling STZ on 2012-08-31 00:00:00\n", + "Selling BLDR on 2012-08-31 00:00:00\n", + "Selling NFLX on 2012-08-31 00:00:00\n", + "Selling CNC on 2012-08-31 00:00:00\n", + "Selling MOH on 2012-08-31 00:00:00\n", + "Selling ENPH on 2012-08-31 00:00:00\n", + "Selling TMUS on 2012-08-31 00:00:00\n", + "Selling FSLR on 2012-08-31 00:00:00\n", + "Buying JNJ on 2012-09-30 00:00:00\n", + "Buying CVX on 2012-09-30 00:00:00\n", + "Buying XOM on 2012-09-30 00:00:00\n", + "Buying BRK-B on 2012-09-30 00:00:00\n", + "Buying BDX on 2012-09-30 00:00:00\n", + "Buying ADP on 2012-09-30 00:00:00\n", + "Buying APD on 2012-09-30 00:00:00\n", + "Buying CINF on 2012-09-30 00:00:00\n", + "Buying MMM on 2012-09-30 00:00:00\n", + "Buying MMC on 2012-09-30 00:00:00\n", + "Buying SO on 2012-09-30 00:00:00\n", + "Buying D on 2012-09-30 00:00:00\n", + "Buying EVRG on 2012-09-30 00:00:00\n", + "Buying PEP on 2012-09-30 00:00:00\n", + "Buying FRT on 2012-09-30 00:00:00\n", + "Buying CLX on 2012-09-30 00:00:00\n", + "Buying XEL on 2012-09-30 00:00:00\n", + "Buying TRV on 2012-09-30 00:00:00\n", + "Buying AEP on 2012-09-30 00:00:00\n", + "Buying LMT on 2012-09-30 00:00:00\n", + "Buying GIS on 2012-09-30 00:00:00\n", + "Buying ED on 2012-09-30 00:00:00\n", + "Buying DTE on 2012-09-30 00:00:00\n", + "Buying REG on 2012-09-30 00:00:00\n", + "Buying ARE on 2012-09-30 00:00:00\n", + "Buying USB on 2012-09-30 00:00:00\n", + "Buying BXP on 2012-09-30 00:00:00\n", + "Buying COST on 2012-09-30 00:00:00\n", + "Buying AEE on 2012-09-30 00:00:00\n", + "Buying MKC on 2012-09-30 00:00:00\n", + "Buying NI on 2012-09-30 00:00:00\n", + "Buying ABT on 2012-09-30 00:00:00\n", + "Buying HSY on 2012-09-30 00:00:00\n", + "Buying AJG on 2012-09-30 00:00:00\n", + "Buying ESS on 2012-09-30 00:00:00\n", + "Buying GE on 2012-09-30 00:00:00\n", + "Buying CBOE on 2012-09-30 00:00:00\n", + "Buying MAA on 2012-09-30 00:00:00\n", + "Buying SRE on 2012-09-30 00:00:00\n", + "Buying OMC on 2012-09-30 00:00:00\n", + "Buying ETR on 2012-09-30 00:00:00\n", + "Buying OKE on 2012-09-30 00:00:00\n", + "Buying HRL on 2012-09-30 00:00:00\n", + "Buying PEG on 2012-09-30 00:00:00\n", + "Buying PAYX on 2012-09-30 00:00:00\n", + "Selling MPWR on 2012-09-30 00:00:00\n", + "Selling NVR on 2012-09-30 00:00:00\n", + "Selling ELV on 2012-09-30 00:00:00\n", + "Selling FICO on 2012-09-30 00:00:00\n", + "Selling ON on 2012-09-30 00:00:00\n", + "Selling FFIV on 2012-09-30 00:00:00\n", + "Selling NXPI on 2012-09-30 00:00:00\n", + "Selling FTNT on 2012-09-30 00:00:00\n", + "Selling STX on 2012-09-30 00:00:00\n", + "Selling EPAM on 2012-09-30 00:00:00\n", + "Selling JNPR on 2012-09-30 00:00:00\n", + "Selling ODFL on 2012-09-30 00:00:00\n", + "Selling UAL on 2012-09-30 00:00:00\n", + "Selling AXON on 2012-09-30 00:00:00\n", + "Selling LULU on 2012-09-30 00:00:00\n", + "Selling MKTX on 2012-09-30 00:00:00\n", + "Selling ADSK on 2012-09-30 00:00:00\n", + "Selling TSCO on 2012-09-30 00:00:00\n", + "Selling EXPE on 2012-09-30 00:00:00\n", + "Selling BKNG on 2012-09-30 00:00:00\n", + "Selling IPG on 2012-09-30 00:00:00\n", + "Selling VMC on 2012-09-30 00:00:00\n", + "Selling WDC on 2012-09-30 00:00:00\n", + "Selling TPR on 2012-09-30 00:00:00\n", + "Selling DECK on 2012-09-30 00:00:00\n", + "Selling AKAM on 2012-09-30 00:00:00\n", + "Selling MOH on 2012-09-30 00:00:00\n", + "Selling BBY on 2012-09-30 00:00:00\n", + "Selling TTWO on 2012-09-30 00:00:00\n", + "Selling CMG on 2012-09-30 00:00:00\n", + "Selling MNST on 2012-09-30 00:00:00\n", + "Selling AMD on 2012-09-30 00:00:00\n", + "Selling PHM on 2012-09-30 00:00:00\n", + "Selling SWKS on 2012-09-30 00:00:00\n", + "Selling URI on 2012-09-30 00:00:00\n", + "Selling TSLA on 2012-09-30 00:00:00\n", + "Selling CNC on 2012-09-30 00:00:00\n", + "Selling NOW on 2012-09-30 00:00:00\n", + "Selling INCY on 2012-09-30 00:00:00\n", + "Selling BLDR on 2012-09-30 00:00:00\n", + "Selling NFLX on 2012-09-30 00:00:00\n", + "Selling META on 2012-09-30 00:00:00\n", + "Selling TMUS on 2012-09-30 00:00:00\n", + "Selling ENPH on 2012-09-30 00:00:00\n", + "Selling FSLR on 2012-09-30 00:00:00\n", + "Buying XOM on 2012-10-31 00:00:00\n", + "Buying BRK-B on 2012-10-31 00:00:00\n", + "Buying ADP on 2012-10-31 00:00:00\n", + "Buying BDX on 2012-10-31 00:00:00\n", + "Buying K on 2012-10-31 00:00:00\n", + "Buying PEP on 2012-10-31 00:00:00\n", + "Buying L on 2012-10-31 00:00:00\n", + "Buying PG on 2012-10-31 00:00:00\n", + "Buying MMC on 2012-10-31 00:00:00\n", + "Buying BALL on 2012-10-31 00:00:00\n", + "Buying JNJ on 2012-10-31 00:00:00\n", + "Buying NI on 2012-10-31 00:00:00\n", + "Buying IVZ on 2012-10-31 00:00:00\n", + "Buying NTRS on 2012-10-31 00:00:00\n", + "Buying ACGL on 2012-10-31 00:00:00\n", + "Buying DUK on 2012-10-31 00:00:00\n", + "Buying GIS on 2012-10-31 00:00:00\n", + "Buying AJG on 2012-10-31 00:00:00\n", + "Buying OKE on 2012-10-31 00:00:00\n", + "Buying GL on 2012-10-31 00:00:00\n", + "Buying SO on 2012-10-31 00:00:00\n", + "Buying AON on 2012-10-31 00:00:00\n", + "Buying MKC on 2012-10-31 00:00:00\n", + "Buying CLX on 2012-10-31 00:00:00\n", + "Buying DTE on 2012-10-31 00:00:00\n", + "Buying FI on 2012-10-31 00:00:00\n", + "Buying BXP on 2012-10-31 00:00:00\n", + "Buying ARE on 2012-10-31 00:00:00\n", + "Buying CBOE on 2012-10-31 00:00:00\n", + "Buying AEE on 2012-10-31 00:00:00\n", + "Buying MMM on 2012-10-31 00:00:00\n", + "Buying EIX on 2012-10-31 00:00:00\n", + "Buying KMB on 2012-10-31 00:00:00\n", + "Buying GE on 2012-10-31 00:00:00\n", + "Buying XEL on 2012-10-31 00:00:00\n", + "Buying EVRG on 2012-10-31 00:00:00\n", + "Buying ED on 2012-10-31 00:00:00\n", + "Buying JKHY on 2012-10-31 00:00:00\n", + "Buying CINF on 2012-10-31 00:00:00\n", + "Buying PAYX on 2012-10-31 00:00:00\n", + "Buying CTAS on 2012-10-31 00:00:00\n", + "Buying KIM on 2012-10-31 00:00:00\n", + "Buying AEP on 2012-10-31 00:00:00\n", + "Buying RSG on 2012-10-31 00:00:00\n", + "Buying BAX on 2012-10-31 00:00:00\n", + "Selling CTRA on 2012-10-31 00:00:00\n", + "Selling REGN on 2012-10-31 00:00:00\n", + "Selling TSN on 2012-10-31 00:00:00\n", + "Selling MU on 2012-10-31 00:00:00\n", + "Selling VMC on 2012-10-31 00:00:00\n", + "Selling TPR on 2012-10-31 00:00:00\n", + "Selling JNPR on 2012-10-31 00:00:00\n", + "Selling PHM on 2012-10-31 00:00:00\n", + "Selling UAL on 2012-10-31 00:00:00\n", + "Selling MKTX on 2012-10-31 00:00:00\n", + "Selling VRSN on 2012-10-31 00:00:00\n", + "Selling INCY on 2012-10-31 00:00:00\n", + "Selling LULU on 2012-10-31 00:00:00\n", + "Selling CNC on 2012-10-31 00:00:00\n", + "Selling HPQ on 2012-10-31 00:00:00\n", + "Selling FFIV on 2012-10-31 00:00:00\n", + "Selling MOH on 2012-10-31 00:00:00\n", + "Selling CMG on 2012-10-31 00:00:00\n", + "Selling ADSK on 2012-10-31 00:00:00\n", + "Selling BKNG on 2012-10-31 00:00:00\n", + "Selling EXPE on 2012-10-31 00:00:00\n", + "Selling BLDR on 2012-10-31 00:00:00\n", + "Selling SMCI on 2012-10-31 00:00:00\n", + "Selling NXPI on 2012-10-31 00:00:00\n", + "Selling FTNT on 2012-10-31 00:00:00\n", + "Selling URI on 2012-10-31 00:00:00\n", + "Selling TTWO on 2012-10-31 00:00:00\n", + "Selling EW on 2012-10-31 00:00:00\n", + "Selling TSLA on 2012-10-31 00:00:00\n", + "Selling SWKS on 2012-10-31 00:00:00\n", + "Selling PANW on 2012-10-31 00:00:00\n", + "Selling ALGN on 2012-10-31 00:00:00\n", + "Selling BBY on 2012-10-31 00:00:00\n", + "Selling GNRC on 2012-10-31 00:00:00\n", + "Selling TMUS on 2012-10-31 00:00:00\n", + "Selling NOW on 2012-10-31 00:00:00\n", + "Selling DECK on 2012-10-31 00:00:00\n", + "Selling AMD on 2012-10-31 00:00:00\n", + "Selling MSCI on 2012-10-31 00:00:00\n", + "Selling AXON on 2012-10-31 00:00:00\n", + "Selling META on 2012-10-31 00:00:00\n", + "Selling NFLX on 2012-10-31 00:00:00\n", + "Selling MNST on 2012-10-31 00:00:00\n", + "Selling FSLR on 2012-10-31 00:00:00\n", + "Selling ENPH on 2012-10-31 00:00:00\n", + "Buying BRK-B on 2012-11-30 00:00:00\n", + "Buying IVZ on 2012-11-30 00:00:00\n", + "Buying XOM on 2012-11-30 00:00:00\n", + "Buying AJG on 2012-11-30 00:00:00\n", + "Buying PEP on 2012-11-30 00:00:00\n", + "Buying GL on 2012-11-30 00:00:00\n", + "Buying FI on 2012-11-30 00:00:00\n", + "Buying JNJ on 2012-11-30 00:00:00\n", + "Buying MMC on 2012-11-30 00:00:00\n", + "Buying K on 2012-11-30 00:00:00\n", + "Buying PG on 2012-11-30 00:00:00\n", + "Buying BALL on 2012-11-30 00:00:00\n", + "Buying KMB on 2012-11-30 00:00:00\n", + "Buying GIS on 2012-11-30 00:00:00\n", + "Buying BXP on 2012-11-30 00:00:00\n", + "Buying SYY on 2012-11-30 00:00:00\n", + "Buying DTE on 2012-11-30 00:00:00\n", + "Buying PAYX on 2012-11-30 00:00:00\n", + "Buying L on 2012-11-30 00:00:00\n", + "Buying NTRS on 2012-11-30 00:00:00\n", + "Buying COP on 2012-11-30 00:00:00\n", + "Buying TROW on 2012-11-30 00:00:00\n", + "Buying NI on 2012-11-30 00:00:00\n", + "Buying CVS on 2012-11-30 00:00:00\n", + "Buying CLX on 2012-11-30 00:00:00\n", + "Buying GE on 2012-11-30 00:00:00\n", + "Buying KO on 2012-11-30 00:00:00\n", + "Buying CPB on 2012-11-30 00:00:00\n", + "Buying MMM on 2012-11-30 00:00:00\n", + "Buying AON on 2012-11-30 00:00:00\n", + "Buying BDX on 2012-11-30 00:00:00\n", + "Buying WAT on 2012-11-30 00:00:00\n", + "Buying LIN on 2012-11-30 00:00:00\n", + "Buying AEP on 2012-11-30 00:00:00\n", + "Buying BEN on 2012-11-30 00:00:00\n", + "Buying KMI on 2012-11-30 00:00:00\n", + "Buying CL on 2012-11-30 00:00:00\n", + "Buying MDT on 2012-11-30 00:00:00\n", + "Buying RTX on 2012-11-30 00:00:00\n", + "Buying CINF on 2012-11-30 00:00:00\n", + "Buying CB on 2012-11-30 00:00:00\n", + "Buying AFL on 2012-11-30 00:00:00\n", + "Buying KIM on 2012-11-30 00:00:00\n", + "Buying REG on 2012-11-30 00:00:00\n", + "Buying ARE on 2012-11-30 00:00:00\n", + "Selling VRTX on 2012-11-30 00:00:00\n", + "Selling NTAP on 2012-11-30 00:00:00\n", + "Selling VMC on 2012-11-30 00:00:00\n", + "Selling MKTX on 2012-11-30 00:00:00\n", + "Selling TPR on 2012-11-30 00:00:00\n", + "Selling UAL on 2012-11-30 00:00:00\n", + "Selling MAS on 2012-11-30 00:00:00\n", + "Selling JNPR on 2012-11-30 00:00:00\n", + "Selling MU on 2012-11-30 00:00:00\n", + "Selling GILD on 2012-11-30 00:00:00\n", + "Selling LULU on 2012-11-30 00:00:00\n", + "Selling PHM on 2012-11-30 00:00:00\n", + "Selling FFIV on 2012-11-30 00:00:00\n", + "Selling EXPE on 2012-11-30 00:00:00\n", + "Selling CNC on 2012-11-30 00:00:00\n", + "Selling HCA on 2012-11-30 00:00:00\n", + "Selling PANW on 2012-11-30 00:00:00\n", + "Selling MOH on 2012-11-30 00:00:00\n", + "Selling CMG on 2012-11-30 00:00:00\n", + "Selling INCY on 2012-11-30 00:00:00\n", + "Selling BLDR on 2012-11-30 00:00:00\n", + "Selling HPQ on 2012-11-30 00:00:00\n", + "Selling TSLA on 2012-11-30 00:00:00\n", + "Selling URI on 2012-11-30 00:00:00\n", + "Selling SMCI on 2012-11-30 00:00:00\n", + "Selling NXPI on 2012-11-30 00:00:00\n", + "Selling REGN on 2012-11-30 00:00:00\n", + "Selling FTNT on 2012-11-30 00:00:00\n", + "Selling EW on 2012-11-30 00:00:00\n", + "Selling ALGN on 2012-11-30 00:00:00\n", + "Selling BBY on 2012-11-30 00:00:00\n", + "Selling VRSN on 2012-11-30 00:00:00\n", + "Selling TMUS on 2012-11-30 00:00:00\n", + "Selling FSLR on 2012-11-30 00:00:00\n", + "Selling NOW on 2012-11-30 00:00:00\n", + "Selling SWKS on 2012-11-30 00:00:00\n", + "Selling GNRC on 2012-11-30 00:00:00\n", + "Selling MSCI on 2012-11-30 00:00:00\n", + "Selling AMD on 2012-11-30 00:00:00\n", + "Selling DECK on 2012-11-30 00:00:00\n", + "Selling AXON on 2012-11-30 00:00:00\n", + "Selling NFLX on 2012-11-30 00:00:00\n", + "Selling MNST on 2012-11-30 00:00:00\n", + "Selling META on 2012-11-30 00:00:00\n", + "Selling ENPH on 2012-11-30 00:00:00\n", + "Buying PEP on 2012-12-31 00:00:00\n", + "Buying XOM on 2012-12-31 00:00:00\n", + "Buying BRK-B on 2012-12-31 00:00:00\n", + "Buying K on 2012-12-31 00:00:00\n", + "Buying JNJ on 2012-12-31 00:00:00\n", + "Buying AJG on 2012-12-31 00:00:00\n", + "Buying COP on 2012-12-31 00:00:00\n", + "Buying IVZ on 2012-12-31 00:00:00\n", + "Buying MMC on 2012-12-31 00:00:00\n", + "Buying GIS on 2012-12-31 00:00:00\n", + "Buying L on 2012-12-31 00:00:00\n", + "Buying HSY on 2012-12-31 00:00:00\n", + "Buying CLX on 2012-12-31 00:00:00\n", + "Buying KMB on 2012-12-31 00:00:00\n", + "Buying BXP on 2012-12-31 00:00:00\n", + "Buying SYY on 2012-12-31 00:00:00\n", + "Buying PG on 2012-12-31 00:00:00\n", + "Buying MMM on 2012-12-31 00:00:00\n", + "Buying AFL on 2012-12-31 00:00:00\n", + "Buying CL on 2012-12-31 00:00:00\n", + "Buying FI on 2012-12-31 00:00:00\n", + "Buying MDLZ on 2012-12-31 00:00:00\n", + "Buying KO on 2012-12-31 00:00:00\n", + "Buying PKG on 2012-12-31 00:00:00\n", + "Buying APH on 2012-12-31 00:00:00\n", + "Buying GL on 2012-12-31 00:00:00\n", + "Buying MAA on 2012-12-31 00:00:00\n", + "Buying CINF on 2012-12-31 00:00:00\n", + "Buying ADP on 2012-12-31 00:00:00\n", + "Buying EVRG on 2012-12-31 00:00:00\n", + "Buying DTE on 2012-12-31 00:00:00\n", + "Buying TROW on 2012-12-31 00:00:00\n", + "Buying NEE on 2012-12-31 00:00:00\n", + "Buying CPB on 2012-12-31 00:00:00\n", + "Buying AON on 2012-12-31 00:00:00\n", + "Buying MDT on 2012-12-31 00:00:00\n", + "Buying PNW on 2012-12-31 00:00:00\n", + "Buying PFE on 2012-12-31 00:00:00\n", + "Buying WAT on 2012-12-31 00:00:00\n", + "Buying CVS on 2012-12-31 00:00:00\n", + "Buying RTX on 2012-12-31 00:00:00\n", + "Buying BDX on 2012-12-31 00:00:00\n", + "Buying WM on 2012-12-31 00:00:00\n", + "Buying BALL on 2012-12-31 00:00:00\n", + "Buying MKC on 2012-12-31 00:00:00\n", + "Selling YUM on 2012-12-31 00:00:00\n", + "Selling CRL on 2012-12-31 00:00:00\n", + "Selling TPR on 2012-12-31 00:00:00\n", + "Selling NTAP on 2012-12-31 00:00:00\n", + "Selling JNPR on 2012-12-31 00:00:00\n", + "Selling VRTX on 2012-12-31 00:00:00\n", + "Selling TSLA on 2012-12-31 00:00:00\n", + "Selling GILD on 2012-12-31 00:00:00\n", + "Selling INCY on 2012-12-31 00:00:00\n", + "Selling PHM on 2012-12-31 00:00:00\n", + "Selling MAS on 2012-12-31 00:00:00\n", + "Selling MTCH on 2012-12-31 00:00:00\n", + "Selling TTWO on 2012-12-31 00:00:00\n", + "Selling FFIV on 2012-12-31 00:00:00\n", + "Selling MU on 2012-12-31 00:00:00\n", + "Selling CMG on 2012-12-31 00:00:00\n", + "Selling HCA on 2012-12-31 00:00:00\n", + "Selling URI on 2012-12-31 00:00:00\n", + "Selling PANW on 2012-12-31 00:00:00\n", + "Selling EXPE on 2012-12-31 00:00:00\n", + "Selling TMUS on 2012-12-31 00:00:00\n", + "Selling FCX on 2012-12-31 00:00:00\n", + "Selling MOH on 2012-12-31 00:00:00\n", + "Selling CNC on 2012-12-31 00:00:00\n", + "Selling BLDR 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 HPQ on 2012-12-31 00:00:00\n", + "Selling REGN on 2012-12-31 00:00:00\n", + "Selling SMCI on 2012-12-31 00:00:00\n", + "Selling FTNT on 2012-12-31 00:00:00\n", + "Selling EW on 2012-12-31 00:00:00\n", + "Selling NOW on 2012-12-31 00:00:00\n", + "Selling ALGN on 2012-12-31 00:00:00\n", + "Selling FSLR on 2012-12-31 00:00:00\n", + "Selling VRSN on 2012-12-31 00:00:00\n", + "Selling GNRC on 2012-12-31 00:00:00\n", + "Selling META on 2012-12-31 00:00:00\n", + "Selling MNST on 2012-12-31 00:00:00\n", + "Selling AMD on 2012-12-31 00:00:00\n", + "Selling DECK on 2012-12-31 00:00:00\n", + "Selling AXON on 2012-12-31 00:00:00\n", + "Selling BBY on 2012-12-31 00:00:00\n", + "Selling NFLX on 2012-12-31 00:00:00\n", + "Selling ENPH on 2012-12-31 00:00:00\n", + "Buying PEP on 2013-01-31 00:00:00\n", + "Buying JNJ on 2013-01-31 00:00:00\n", + "Buying K on 2013-01-31 00:00:00\n", + "Buying MMM on 2013-01-31 00:00:00\n", + "Buying XOM on 2013-01-31 00:00:00\n", + "Buying L on 2013-01-31 00:00:00\n", + "Buying CVX on 2013-01-31 00:00:00\n", + "Buying MCD on 2013-01-31 00:00:00\n", + "Buying CINF on 2013-01-31 00:00:00\n", + "Buying ADP on 2013-01-31 00:00:00\n", + "Buying IFF on 2013-01-31 00:00:00\n", + "Buying BRK-B on 2013-01-31 00:00:00\n", + "Buying MMC on 2013-01-31 00:00:00\n", + "Buying CPT on 2013-01-31 00:00:00\n", + "Buying SPG on 2013-01-31 00:00:00\n", + "Buying ESS on 2013-01-31 00:00:00\n", + "Buying CLX on 2013-01-31 00:00:00\n", + "Buying OMC on 2013-01-31 00:00:00\n", + "Buying MAA on 2013-01-31 00:00:00\n", + "Buying EMR on 2013-01-31 00:00:00\n", + "Buying RSG on 2013-01-31 00:00:00\n", + "Buying MTB on 2013-01-31 00:00:00\n", + "Buying SYY on 2013-01-31 00:00:00\n", + "Buying GPC on 2013-01-31 00:00:00\n", + "Buying ARE on 2013-01-31 00:00:00\n", + "Buying FRT on 2013-01-31 00:00:00\n", + "Buying BG on 2013-01-31 00:00:00\n", + "Buying IEX on 2013-01-31 00:00:00\n", + "Buying ROP on 2013-01-31 00:00:00\n", + "Buying ZBH on 2013-01-31 00:00:00\n", + "Buying GIS on 2013-01-31 00:00:00\n", + "Buying KMB on 2013-01-31 00:00:00\n", + "Buying CHD on 2013-01-31 00:00:00\n", + "Buying DOC on 2013-01-31 00:00:00\n", + "Buying NEE on 2013-01-31 00:00:00\n", + "Buying USB on 2013-01-31 00:00:00\n", + "Buying GL on 2013-01-31 00:00:00\n", + "Buying REG on 2013-01-31 00:00:00\n", + "Buying APH on 2013-01-31 00:00:00\n", + "Buying WFC on 2013-01-31 00:00:00\n", + "Buying VTR on 2013-01-31 00:00:00\n", + "Buying WELL on 2013-01-31 00:00:00\n", + "Buying PCG on 2013-01-31 00:00:00\n", + "Buying PG on 2013-01-31 00:00:00\n", + "Buying KIM on 2013-01-31 00:00:00\n", + "Selling ALGN on 2013-01-31 00:00:00\n", + "Selling ISRG on 2013-01-31 00:00:00\n", + "Selling PHM on 2013-01-31 00:00:00\n", + "Selling MOH on 2013-01-31 00:00:00\n", + "Selling TSLA on 2013-01-31 00:00:00\n", + "Selling LVS on 2013-01-31 00:00:00\n", + "Selling MTCH on 2013-01-31 00:00:00\n", + "Selling GILD on 2013-01-31 00:00:00\n", + "Selling TTWO on 2013-01-31 00:00:00\n", + "Selling VLO on 2013-01-31 00:00:00\n", + "Selling MGM on 2013-01-31 00:00:00\n", + "Selling UAL on 2013-01-31 00:00:00\n", + "Selling FANG on 2013-01-31 00:00:00\n", + "Selling TMUS on 2013-01-31 00:00:00\n", + "Selling WDC on 2013-01-31 00:00:00\n", + "Selling LULU on 2013-01-31 00:00:00\n", + "Selling WDAY on 2013-01-31 00:00:00\n", + "Selling DHI on 2013-01-31 00:00:00\n", + "Selling INCY on 2013-01-31 00:00:00\n", + "Selling CNC on 2013-01-31 00:00:00\n", + "Selling HCA on 2013-01-31 00:00:00\n", + "Selling BLDR on 2013-01-31 00:00:00\n", + "Selling AAPL on 2013-01-31 00:00:00\n", + "Selling FCX on 2013-01-31 00:00:00\n", + "Selling VRSN on 2013-01-31 00:00:00\n", + "Selling PANW on 2013-01-31 00:00:00\n", + "Selling MNST on 2013-01-31 00:00:00\n", + "Selling HPQ on 2013-01-31 00:00:00\n", + "Selling STZ on 2013-01-31 00:00:00\n", + "Selling STX on 2013-01-31 00:00:00\n", + "Selling REGN on 2013-01-31 00:00:00\n", + "Selling SWKS on 2013-01-31 00:00:00\n", + "Selling GNRC on 2013-01-31 00:00:00\n", + "Selling TPR on 2013-01-31 00:00:00\n", + "Selling AXON on 2013-01-31 00:00:00\n", + "Selling NOW on 2013-01-31 00:00:00\n", + "Selling FSLR on 2013-01-31 00:00:00\n", + "Selling SMCI on 2013-01-31 00:00:00\n", + "Selling META on 2013-01-31 00:00:00\n", + "Selling AMD on 2013-01-31 00:00:00\n", + "Selling FTNT on 2013-01-31 00:00:00\n", + "Selling DECK on 2013-01-31 00:00:00\n", + "Selling BBY on 2013-01-31 00:00:00\n", + "Selling ENPH on 2013-01-31 00:00:00\n", + "Selling NFLX on 2013-01-31 00:00:00\n", + "Buying JNJ on 2013-02-28 00:00:00\n", + "Buying MMM on 2013-02-28 00:00:00\n", + "Buying FRT on 2013-02-28 00:00:00\n", + "Buying L on 2013-02-28 00:00:00\n", + "Buying K on 2013-02-28 00:00:00\n", + "Buying XOM on 2013-02-28 00:00:00\n", + "Buying CVX on 2013-02-28 00:00:00\n", + "Buying ED on 2013-02-28 00:00:00\n", + "Buying EVRG on 2013-02-28 00:00:00\n", + "Buying ARE on 2013-02-28 00:00:00\n", + "Buying DOC on 2013-02-28 00:00:00\n", + "Buying DUK on 2013-02-28 00:00:00\n", + "Buying MTB on 2013-02-28 00:00:00\n", + "Buying PNW on 2013-02-28 00:00:00\n", + "Buying LNT on 2013-02-28 00:00:00\n", + "Buying SPG on 2013-02-28 00:00:00\n", + "Buying XEL on 2013-02-28 00:00:00\n", + "Buying CLX on 2013-02-28 00:00:00\n", + "Buying CINF on 2013-02-28 00:00:00\n", + "Buying CMS on 2013-02-28 00:00:00\n", + "Buying DTE on 2013-02-28 00:00:00\n", + "Buying AEP on 2013-02-28 00:00:00\n", + "Buying MAA on 2013-02-28 00:00:00\n", + "Buying NEE on 2013-02-28 00:00:00\n", + "Buying PPL on 2013-02-28 00:00:00\n", + "Buying SO on 2013-02-28 00:00:00\n", + "Buying BDX on 2013-02-28 00:00:00\n", + "Buying ESS on 2013-02-28 00:00:00\n", + "Buying OMC on 2013-02-28 00:00:00\n", + "Buying PEP on 2013-02-28 00:00:00\n", + "Buying ROP on 2013-02-28 00:00:00\n", + "Buying IFF on 2013-02-28 00:00:00\n", + "Buying TFX on 2013-02-28 00:00:00\n", + "Buying WELL on 2013-02-28 00:00:00\n", + "Buying ES on 2013-02-28 00:00:00\n", + "Buying MCD on 2013-02-28 00:00:00\n", + "Buying HSIC on 2013-02-28 00:00:00\n", + "Buying TEL on 2013-02-28 00:00:00\n", + "Buying D on 2013-02-28 00:00:00\n", + "Buying KIM on 2013-02-28 00:00:00\n", + "Buying WEC on 2013-02-28 00:00:00\n", + "Buying EMR on 2013-02-28 00:00:00\n", + "Buying BRK-B on 2013-02-28 00:00:00\n", + "Buying APH on 2013-02-28 00:00:00\n", + "Buying ADP on 2013-02-28 00:00:00\n", + "Selling EA on 2013-02-28 00:00:00\n", + "Selling DAL on 2013-02-28 00:00:00\n", + "Selling WDC on 2013-02-28 00:00:00\n", + "Selling MU on 2013-02-28 00:00:00\n", + "Selling GNRC on 2013-02-28 00:00:00\n", + "Selling MGM on 2013-02-28 00:00:00\n", + "Selling DLTR on 2013-02-28 00:00:00\n", + "Selling PHM on 2013-02-28 00:00:00\n", + "Selling DG on 2013-02-28 00:00:00\n", + "Selling WDAY on 2013-02-28 00:00:00\n", + "Selling UAL on 2013-02-28 00:00:00\n", + "Selling ULTA on 2013-02-28 00:00:00\n", + "Selling VLO on 2013-02-28 00:00:00\n", + "Selling DXCM on 2013-02-28 00:00:00\n", + "Selling MAS on 2013-02-28 00:00:00\n", + "Selling MNST on 2013-02-28 00:00:00\n", + "Selling MOH on 2013-02-28 00:00:00\n", + "Selling DHI on 2013-02-28 00:00:00\n", + "Selling BLDR on 2013-02-28 00:00:00\n", + "Selling HPQ on 2013-02-28 00:00:00\n", + "Selling META on 2013-02-28 00:00:00\n", + "Selling FANG on 2013-02-28 00:00:00\n", + "Selling AAPL on 2013-02-28 00:00:00\n", + "Selling STX on 2013-02-28 00:00:00\n", + "Selling ISRG on 2013-02-28 00:00:00\n", + "Selling MCO on 2013-02-28 00:00:00\n", + "Selling PANW on 2013-02-28 00:00:00\n", + "Selling FCX on 2013-02-28 00:00:00\n", + "Selling SPGI on 2013-02-28 00:00:00\n", + "Selling TPR on 2013-02-28 00:00:00\n", + "Selling INCY on 2013-02-28 00:00:00\n", + "Selling AKAM on 2013-02-28 00:00:00\n", + "Selling TTWO on 2013-02-28 00:00:00\n", + "Selling SWKS on 2013-02-28 00:00:00\n", + "Selling NOW on 2013-02-28 00:00:00\n", + "Selling SMCI on 2013-02-28 00:00:00\n", + "Selling AMD on 2013-02-28 00:00:00\n", + "Selling AXON on 2013-02-28 00:00:00\n", + "Selling DECK on 2013-02-28 00:00:00\n", + "Selling FTNT on 2013-02-28 00:00:00\n", + "Selling FSLR on 2013-02-28 00:00:00\n", + "Selling BBY on 2013-02-28 00:00:00\n", + "Selling ENPH on 2013-02-28 00:00:00\n", + "Selling STZ on 2013-02-28 00:00:00\n", + "Selling NFLX on 2013-02-28 00:00:00\n", + "Buying JNJ on 2013-03-31 00:00:00\n", + "Buying K on 2013-03-31 00:00:00\n", + "Buying MMM on 2013-03-31 00:00:00\n", + "Buying XOM on 2013-03-31 00:00:00\n", + "Buying LNT on 2013-03-31 00:00:00\n", + "Buying MTB on 2013-03-31 00:00:00\n", + "Buying FRT on 2013-03-31 00:00:00\n", + "Buying AEP on 2013-03-31 00:00:00\n", + "Buying ARE on 2013-03-31 00:00:00\n", + "Buying PNW on 2013-03-31 00:00:00\n", + "Buying DOC on 2013-03-31 00:00:00\n", + "Buying DUK on 2013-03-31 00:00:00\n", + "Buying CVX on 2013-03-31 00:00:00\n", + "Buying SO on 2013-03-31 00:00:00\n", + "Buying ED on 2013-03-31 00:00:00\n", + "Buying XEL on 2013-03-31 00:00:00\n", + "Buying SPG on 2013-03-31 00:00:00\n", + "Buying CINF on 2013-03-31 00:00:00\n", + "Buying L on 2013-03-31 00:00:00\n", + "Buying CLX on 2013-03-31 00:00:00\n", + "Buying EVRG on 2013-03-31 00:00:00\n", + "Buying ESS on 2013-03-31 00:00:00\n", + "Buying DTE on 2013-03-31 00:00:00\n", + "Buying ES on 2013-03-31 00:00:00\n", + "Buying ROP on 2013-03-31 00:00:00\n", + "Buying SRE on 2013-03-31 00:00:00\n", + "Buying CMS on 2013-03-31 00:00:00\n", + "Buying WELL on 2013-03-31 00:00:00\n", + "Buying GL on 2013-03-31 00:00:00\n", + "Buying NEE on 2013-03-31 00:00:00\n", + "Buying KIM on 2013-03-31 00:00:00\n", + "Buying BRK-B on 2013-03-31 00:00:00\n", + "Buying D on 2013-03-31 00:00:00\n", + "Buying CAG on 2013-03-31 00:00:00\n", + "Buying AEE on 2013-03-31 00:00:00\n", + "Buying OMC on 2013-03-31 00:00:00\n", + "Buying WEC on 2013-03-31 00:00:00\n", + "Buying HON on 2013-03-31 00:00:00\n", + "Buying CB on 2013-03-31 00:00:00\n", + "Buying VTR on 2013-03-31 00:00:00\n", + "Buying BDX on 2013-03-31 00:00:00\n", + "Buying TFX on 2013-03-31 00:00:00\n", + "Buying REG on 2013-03-31 00:00:00\n", + "Buying T on 2013-03-31 00:00:00\n", + "Buying HSIC on 2013-03-31 00:00:00\n", + "Selling ROST on 2013-03-31 00:00:00\n", + "Selling BLDR on 2013-03-31 00:00:00\n", + "Selling LKQ on 2013-03-31 00:00:00\n", + "Selling CTRA on 2013-03-31 00:00:00\n", + "Selling APO on 2013-03-31 00:00:00\n", + "Selling DLTR on 2013-03-31 00:00:00\n", + "Selling MU on 2013-03-31 00:00:00\n", + "Selling UAL on 2013-03-31 00:00:00\n", + "Selling MOH on 2013-03-31 00:00:00\n", + "Selling TSLA on 2013-03-31 00:00:00\n", + "Selling MAS on 2013-03-31 00:00:00\n", + "Selling EA on 2013-03-31 00:00:00\n", + "Selling WDAY on 2013-03-31 00:00:00\n", + "Selling MNST on 2013-03-31 00:00:00\n", + "Selling HPQ on 2013-03-31 00:00:00\n", + "Selling DHI on 2013-03-31 00:00:00\n", + "Selling AMCR on 2013-03-31 00:00:00\n", + "Selling CHTR on 2013-03-31 00:00:00\n", + "Selling DXCM on 2013-03-31 00:00:00\n", + "Selling PANW on 2013-03-31 00:00:00\n", + "Selling META on 2013-03-31 00:00:00\n", + "Selling STX on 2013-03-31 00:00:00\n", + "Selling VLO on 2013-03-31 00:00:00\n", + "Selling AAPL on 2013-03-31 00:00:00\n", + "Selling AKAM on 2013-03-31 00:00:00\n", + "Selling MCO on 2013-03-31 00:00:00\n", + "Selling TTWO on 2013-03-31 00:00:00\n", + "Selling FANG on 2013-03-31 00:00:00\n", + "Selling TPR on 2013-03-31 00:00:00\n", + "Selling SPGI on 2013-03-31 00:00:00\n", + "Selling INCY on 2013-03-31 00:00:00\n", + "Selling SWKS on 2013-03-31 00:00:00\n", + "Selling ISRG on 2013-03-31 00:00:00\n", + "Selling AMD on 2013-03-31 00:00:00\n", + "Selling SMCI on 2013-03-31 00:00:00\n", + "Selling ULTA on 2013-03-31 00:00:00\n", + "Selling NOW on 2013-03-31 00:00:00\n", + "Selling BBY on 2013-03-31 00:00:00\n", + "Selling AXON on 2013-03-31 00:00:00\n", + "Selling DECK on 2013-03-31 00:00:00\n", + "Selling FTNT on 2013-03-31 00:00:00\n", + "Selling FSLR on 2013-03-31 00:00:00\n", + "Selling ENPH on 2013-03-31 00:00:00\n", + "Selling STZ on 2013-03-31 00:00:00\n", + "Selling NFLX on 2013-03-31 00:00:00\n", + "Buying CB on 2013-04-30 00:00:00\n", + "Buying SO on 2013-04-30 00:00:00\n", + "Buying EVRG on 2013-04-30 00:00:00\n", + "Buying PNW on 2013-04-30 00:00:00\n", + "Buying AEP on 2013-04-30 00:00:00\n", + "Buying ES on 2013-04-30 00:00:00\n", + "Buying DUK on 2013-04-30 00:00:00\n", + "Buying ED on 2013-04-30 00:00:00\n", + "Buying LNT on 2013-04-30 00:00:00\n", + "Buying JNJ on 2013-04-30 00:00:00\n", + "Buying K on 2013-04-30 00:00:00\n", + "Buying CMS on 2013-04-30 00:00:00\n", + "Buying GL on 2013-04-30 00:00:00\n", + "Buying CINF on 2013-04-30 00:00:00\n", + "Buying NEE on 2013-04-30 00:00:00\n", + "Buying NTRS on 2013-04-30 00:00:00\n", + "Buying XEL on 2013-04-30 00:00:00\n", + "Buying WELL on 2013-04-30 00:00:00\n", + "Buying CVX on 2013-04-30 00:00:00\n", + "Buying D on 2013-04-30 00:00:00\n", + "Buying WRB on 2013-04-30 00:00:00\n", + "Buying AJG on 2013-04-30 00:00:00\n", + "Buying DTE on 2013-04-30 00:00:00\n", + "Buying XOM on 2013-04-30 00:00:00\n", + "Buying FRT on 2013-04-30 00:00:00\n", + "Buying ARE on 2013-04-30 00:00:00\n", + "Buying AEE on 2013-04-30 00:00:00\n", + "Buying MKC on 2013-04-30 00:00:00\n", + "Buying WEC on 2013-04-30 00:00:00\n", + "Buying TRV on 2013-04-30 00:00:00\n", + "Buying ALL on 2013-04-30 00:00:00\n", + "Buying ADP on 2013-04-30 00:00:00\n", + "Buying KIM on 2013-04-30 00:00:00\n", + "Buying SRE on 2013-04-30 00:00:00\n", + "Buying PFG on 2013-04-30 00:00:00\n", + "Buying BRK-B on 2013-04-30 00:00:00\n", + "Buying HUBB on 2013-04-30 00:00:00\n", + "Buying DHR on 2013-04-30 00:00:00\n", + "Buying BEN on 2013-04-30 00:00:00\n", + "Buying PPL on 2013-04-30 00:00:00\n", + "Buying PEG on 2013-04-30 00:00:00\n", + "Buying AME on 2013-04-30 00:00:00\n", + "Buying L on 2013-04-30 00:00:00\n", + "Buying BK on 2013-04-30 00:00:00\n", + "Buying ATO on 2013-04-30 00:00:00\n", + "Buying HSIC on 2013-04-30 00:00:00\n", + "Selling SWKS on 2013-04-30 00:00:00\n", + "Selling META on 2013-04-30 00:00:00\n", + "Selling PHM on 2013-04-30 00:00:00\n", + "Selling MU on 2013-04-30 00:00:00\n", + "Selling JNPR on 2013-04-30 00:00:00\n", + "Selling CMG on 2013-04-30 00:00:00\n", + "Selling LKQ on 2013-04-30 00:00:00\n", + "Selling NDAQ on 2013-04-30 00:00:00\n", + "Selling MNST on 2013-04-30 00:00:00\n", + "Selling VLO on 2013-04-30 00:00:00\n", + "Selling UAL on 2013-04-30 00:00:00\n", + "Selling DHI on 2013-04-30 00:00:00\n", + "Selling HUM on 2013-04-30 00:00:00\n", + "Selling WDAY on 2013-04-30 00:00:00\n", + "Selling CTRA on 2013-04-30 00:00:00\n", + "Selling MAS on 2013-04-30 00:00:00\n", + "Selling CHTR on 2013-04-30 00:00:00\n", + "Selling NEM on 2013-04-30 00:00:00\n", + "Selling APO on 2013-04-30 00:00:00\n", + "Selling FTNT on 2013-04-30 00:00:00\n", + "Selling DXCM on 2013-04-30 00:00:00\n", + "Selling BLDR on 2013-04-30 00:00:00\n", + "Selling TTWO on 2013-04-30 00:00:00\n", + "Selling HPQ on 2013-04-30 00:00:00\n", + "Selling AMCR on 2013-04-30 00:00:00\n", + "Selling INCY on 2013-04-30 00:00:00\n", + "Selling ISRG on 2013-04-30 00:00:00\n", + "Selling DAL on 2013-04-30 00:00:00\n", + "Selling FANG on 2013-04-30 00:00:00\n", + "Selling SPGI on 2013-04-30 00:00:00\n", + "Selling MCO on 2013-04-30 00:00:00\n", + "Selling AMD on 2013-04-30 00:00:00\n", + "Selling FFIV on 2013-04-30 00:00:00\n", + "Selling ULTA on 2013-04-30 00:00:00\n", + "Selling DECK on 2013-04-30 00:00:00\n", + "Selling NOW on 2013-04-30 00:00:00\n", + "Selling EW on 2013-04-30 00:00:00\n", + "Selling BBY on 2013-04-30 00:00:00\n", + "Selling AXON on 2013-04-30 00:00:00\n", + "Selling TSLA on 2013-04-30 00:00:00\n", + "Selling AKAM on 2013-04-30 00:00:00\n", + "Selling NFLX on 2013-04-30 00:00:00\n", + "Selling STZ on 2013-04-30 00:00:00\n", + "Selling ENPH on 2013-04-30 00:00:00\n", + "Selling FSLR on 2013-04-30 00:00:00\n", + "Selling VRTX on 2013-04-30 00:00:00\n", + "Buying AJG on 2013-05-31 00:00:00\n", + "Buying GL on 2013-05-31 00:00:00\n", + "Buying CB on 2013-05-31 00:00:00\n", + "Buying RTX on 2013-05-31 00:00:00\n", + "Buying WRB on 2013-05-31 00:00:00\n", + "Buying WM on 2013-05-31 00:00:00\n", + "Buying L on 2013-05-31 00:00:00\n", + "Buying IFF on 2013-05-31 00:00:00\n", + "Buying ALL on 2013-05-31 00:00:00\n", + "Buying SO on 2013-05-31 00:00:00\n", + "Buying PGR on 2013-05-31 00:00:00\n", + "Buying MMC on 2013-05-31 00:00:00\n", + "Buying PFG on 2013-05-31 00:00:00\n", + "Buying CINF on 2013-05-31 00:00:00\n", + "Buying HSIC on 2013-05-31 00:00:00\n", + "Buying BRK-B on 2013-05-31 00:00:00\n", + "Buying XOM on 2013-05-31 00:00:00\n", + "Buying PAYX on 2013-05-31 00:00:00\n", + "Buying UPS on 2013-05-31 00:00:00\n", + "Buying JNJ on 2013-05-31 00:00:00\n", + "Buying CVX on 2013-05-31 00:00:00\n", + "Buying DHR on 2013-05-31 00:00:00\n", + "Buying AME on 2013-05-31 00:00:00\n", + "Buying ADP on 2013-05-31 00:00:00\n", + "Buying MKC on 2013-05-31 00:00:00\n", + "Buying ED on 2013-05-31 00:00:00\n", + "Buying USB on 2013-05-31 00:00:00\n", + "Buying IEX on 2013-05-31 00:00:00\n", + "Buying CBOE on 2013-05-31 00:00:00\n", + "Buying LH on 2013-05-31 00:00:00\n", + "Buying LMT on 2013-05-31 00:00:00\n", + "Buying MMM on 2013-05-31 00:00:00\n", + "Buying ATO on 2013-05-31 00:00:00\n", + "Buying SYK on 2013-05-31 00:00:00\n", + "Buying MO on 2013-05-31 00:00:00\n", + "Buying NTRS on 2013-05-31 00:00:00\n", + "Buying AWK on 2013-05-31 00:00:00\n", + "Buying ES on 2013-05-31 00:00:00\n", + "Buying VRSK on 2013-05-31 00:00:00\n", + "Buying WAT on 2013-05-31 00:00:00\n", + "Buying JKHY on 2013-05-31 00:00:00\n", + "Buying K on 2013-05-31 00:00:00\n", + "Buying AEE on 2013-05-31 00:00:00\n", + "Buying HON on 2013-05-31 00:00:00\n", + "Buying BDX on 2013-05-31 00:00:00\n", + "Buying LIN on 2013-05-31 00:00:00\n", + "Selling DHI on 2013-05-31 00:00:00\n", + "Selling INTU on 2013-05-31 00:00:00\n", + "Selling CTSH on 2013-05-31 00:00:00\n", + "Selling BIIB on 2013-05-31 00:00:00\n", + "Selling CMG on 2013-05-31 00:00:00\n", + "Selling NDAQ on 2013-05-31 00:00:00\n", + "Selling MPC on 2013-05-31 00:00:00\n", + "Selling ISRG on 2013-05-31 00:00:00\n", + "Selling HUM on 2013-05-31 00:00:00\n", + "Selling UAL on 2013-05-31 00:00:00\n", + "Selling EXPE on 2013-05-31 00:00:00\n", + "Selling DECK on 2013-05-31 00:00:00\n", + "Selling CSCO on 2013-05-31 00:00:00\n", + "Selling META on 2013-05-31 00:00:00\n", + "Selling AXON on 2013-05-31 00:00:00\n", + "Selling VLO on 2013-05-31 00:00:00\n", + "Selling LULU on 2013-05-31 00:00:00\n", + "Selling MU on 2013-05-31 00:00:00\n", + "Selling INCY on 2013-05-31 00:00:00\n", + "Selling AMCR on 2013-05-31 00:00:00\n", + "Selling JNPR on 2013-05-31 00:00:00\n", + "Selling BLDR on 2013-05-31 00:00:00\n", + "Selling PANW on 2013-05-31 00:00:00\n", + "Selling PODD on 2013-05-31 00:00:00\n", + "Selling FTNT on 2013-05-31 00:00:00\n", + "Selling FANG on 2013-05-31 00:00:00\n", + "Selling APO on 2013-05-31 00:00:00\n", + "Selling ULTA on 2013-05-31 00:00:00\n", + "Selling DAL on 2013-05-31 00:00:00\n", + "Selling DXCM on 2013-05-31 00:00:00\n", + "Selling NEM on 2013-05-31 00:00:00\n", + "Selling REGN on 2013-05-31 00:00:00\n", + "Selling AKAM on 2013-05-31 00:00:00\n", + "Selling NOW on 2013-05-31 00:00:00\n", + "Selling TMUS on 2013-05-31 00:00:00\n", + "Selling FFIV on 2013-05-31 00:00:00\n", + "Selling EA on 2013-05-31 00:00:00\n", + "Selling HPQ on 2013-05-31 00:00:00\n", + "Selling BBY on 2013-05-31 00:00:00\n", + "Selling EW on 2013-05-31 00:00:00\n", + "Selling AMD on 2013-05-31 00:00:00\n", + "Selling NFLX on 2013-05-31 00:00:00\n", + "Selling ENPH on 2013-05-31 00:00:00\n", + "Selling TSLA on 2013-05-31 00:00:00\n", + "Selling FSLR on 2013-05-31 00:00:00\n", + "Selling VRTX on 2013-05-31 00:00:00\n", + "Buying IFF on 2013-06-30 00:00:00\n", + "Buying UPS on 2013-06-30 00:00:00\n", + "Buying L on 2013-06-30 00:00:00\n", + "Buying RTX on 2013-06-30 00:00:00\n", + "Buying XOM on 2013-06-30 00:00:00\n", + "Buying WRB on 2013-06-30 00:00:00\n", + "Buying BRK-B on 2013-06-30 00:00:00\n", + "Buying LH on 2013-06-30 00:00:00\n", + "Buying MMC on 2013-06-30 00:00:00\n", + "Buying CTAS on 2013-06-30 00:00:00\n", + "Buying CVX on 2013-06-30 00:00:00\n", + "Buying GL on 2013-06-30 00:00:00\n", + "Buying ADP on 2013-06-30 00:00:00\n", + "Buying CB on 2013-06-30 00:00:00\n", + "Buying HSIC on 2013-06-30 00:00:00\n", + "Buying AJG on 2013-06-30 00:00:00\n", + "Buying SYK on 2013-06-30 00:00:00\n", + "Buying LMT on 2013-06-30 00:00:00\n", + "Buying MO on 2013-06-30 00:00:00\n", + "Buying HON on 2013-06-30 00:00:00\n", + "Buying SO on 2013-06-30 00:00:00\n", + "Buying PFG on 2013-06-30 00:00:00\n", + "Buying MMM on 2013-06-30 00:00:00\n", + "Buying SBUX on 2013-06-30 00:00:00\n", + "Buying PGR on 2013-06-30 00:00:00\n", + "Buying USB on 2013-06-30 00:00:00\n", + "Buying DHR on 2013-06-30 00:00:00\n", + "Buying CINF on 2013-06-30 00:00:00\n", + "Buying SNPS on 2013-06-30 00:00:00\n", + "Buying SYY on 2013-06-30 00:00:00\n", + "Buying ITW on 2013-06-30 00:00:00\n", + "Buying COP on 2013-06-30 00:00:00\n", + "Buying WFC on 2013-06-30 00:00:00\n", + "Buying ALL on 2013-06-30 00:00:00\n", + "Buying TFC on 2013-06-30 00:00:00\n", + "Buying EMR on 2013-06-30 00:00:00\n", + "Buying COST on 2013-06-30 00:00:00\n", + "Buying IEX on 2013-06-30 00:00:00\n", + "Buying SNA on 2013-06-30 00:00:00\n", + "Buying NSC on 2013-06-30 00:00:00\n", + "Buying JKHY on 2013-06-30 00:00:00\n", + "Buying CNP on 2013-06-30 00:00:00\n", + "Buying WM on 2013-06-30 00:00:00\n", + "Buying ACGL on 2013-06-30 00:00:00\n", + "Buying TRV on 2013-06-30 00:00:00\n", + "Buying ATO on 2013-06-30 00:00:00\n", + "Selling META on 2013-06-30 00:00:00\n", + "Selling LEN on 2013-06-30 00:00:00\n", + "Selling CRM on 2013-06-30 00:00:00\n", + "Selling FANG on 2013-06-30 00:00:00\n", + "Selling INTU on 2013-06-30 00:00:00\n", + "Selling CTSH on 2013-06-30 00:00:00\n", + "Selling TTWO on 2013-06-30 00:00:00\n", + "Selling DECK on 2013-06-30 00:00:00\n", + "Selling URI on 2013-06-30 00:00:00\n", + "Selling AMCR on 2013-06-30 00:00:00\n", + "Selling CSCO on 2013-06-30 00:00:00\n", + "Selling BBY on 2013-06-30 00:00:00\n", + "Selling WDAY on 2013-06-30 00:00:00\n", + "Selling AXON on 2013-06-30 00:00:00\n", + "Selling EXPE on 2013-06-30 00:00:00\n", + "Selling DHI on 2013-06-30 00:00:00\n", + "Selling BLDR on 2013-06-30 00:00:00\n", + "Selling DAL on 2013-06-30 00:00:00\n", + "Selling MNST on 2013-06-30 00:00:00\n", + "Selling INCY on 2013-06-30 00:00:00\n", + "Selling DXCM on 2013-06-30 00:00:00\n", + "Selling BIIB on 2013-06-30 00:00:00\n", + "Selling FTNT on 2013-06-30 00:00:00\n", + "Selling JNPR on 2013-06-30 00:00:00\n", + "Selling ULTA on 2013-06-30 00:00:00\n", + "Selling APO on 2013-06-30 00:00:00\n", + "Selling IRM on 2013-06-30 00:00:00\n", + "Selling PODD on 2013-06-30 00:00:00\n", + "Selling AKAM on 2013-06-30 00:00:00\n", + "Selling EA on 2013-06-30 00:00:00\n", + "Selling NOW on 2013-06-30 00:00:00\n", + "Selling PANW on 2013-06-30 00:00:00\n", + "Selling TMUS on 2013-06-30 00:00:00\n", + "Selling LYV on 2013-06-30 00:00:00\n", + "Selling NEM on 2013-06-30 00:00:00\n", + "Selling REGN on 2013-06-30 00:00:00\n", + "Selling HPQ on 2013-06-30 00:00:00\n", + "Selling FFIV on 2013-06-30 00:00:00\n", + "Selling LULU on 2013-06-30 00:00:00\n", + "Selling EW on 2013-06-30 00:00:00\n", + "Selling AMD on 2013-06-30 00:00:00\n", + "Selling NFLX on 2013-06-30 00:00:00\n", + "Selling ENPH on 2013-06-30 00:00:00\n", + "Selling TSLA on 2013-06-30 00:00:00\n", + "Selling FSLR on 2013-06-30 00:00:00\n", + "Selling VRTX on 2013-06-30 00:00:00\n", + "Buying L on 2013-07-31 00:00:00\n", + "Buying XOM on 2013-07-31 00:00:00\n", + "Buying MMM on 2013-07-31 00:00:00\n", + "Buying MMC on 2013-07-31 00:00:00\n", + "Buying BRK-B on 2013-07-31 00:00:00\n", + "Buying CVX on 2013-07-31 00:00:00\n", + "Buying CTAS on 2013-07-31 00:00:00\n", + "Buying K on 2013-07-31 00:00:00\n", + "Buying USB on 2013-07-31 00:00:00\n", + "Buying GL on 2013-07-31 00:00:00\n", + "Buying COP on 2013-07-31 00:00:00\n", + "Buying HSIC on 2013-07-31 00:00:00\n", + "Buying PCAR on 2013-07-31 00:00:00\n", + "Buying SYK on 2013-07-31 00:00:00\n", + "Buying ITW on 2013-07-31 00:00:00\n", + "Buying HON on 2013-07-31 00:00:00\n", + "Buying AJG on 2013-07-31 00:00:00\n", + "Buying JKHY on 2013-07-31 00:00:00\n", + "Buying CLX on 2013-07-31 00:00:00\n", + "Buying IFF on 2013-07-31 00:00:00\n", + "Buying JNJ on 2013-07-31 00:00:00\n", + "Buying TFX on 2013-07-31 00:00:00\n", + "Buying RTX on 2013-07-31 00:00:00\n", + "Buying CHD on 2013-07-31 00:00:00\n", + "Buying WMT on 2013-07-31 00:00:00\n", + "Buying SNA on 2013-07-31 00:00:00\n", + "Buying CINF on 2013-07-31 00:00:00\n", + "Buying TFC on 2013-07-31 00:00:00\n", + "Buying WM on 2013-07-31 00:00:00\n", + "Buying PGR on 2013-07-31 00:00:00\n", + "Buying TDY on 2013-07-31 00:00:00\n", + "Buying ADP on 2013-07-31 00:00:00\n", + "Buying SO on 2013-07-31 00:00:00\n", + "Buying PM on 2013-07-31 00:00:00\n", + "Buying GD on 2013-07-31 00:00:00\n", + "Buying EFX on 2013-07-31 00:00:00\n", + "Buying AME on 2013-07-31 00:00:00\n", + "Buying MO on 2013-07-31 00:00:00\n", + "Buying COST on 2013-07-31 00:00:00\n", + "Buying FITB on 2013-07-31 00:00:00\n", + "Buying MA on 2013-07-31 00:00:00\n", + "Buying AVY on 2013-07-31 00:00:00\n", + "Buying AIZ on 2013-07-31 00:00:00\n", + "Buying BALL on 2013-07-31 00:00:00\n", + "Buying LIN on 2013-07-31 00:00:00\n", + "Buying PEP on 2013-07-31 00:00:00\n", + "Selling SWKS on 2013-07-31 00:00:00\n", + "Selling BLDR on 2013-07-31 00:00:00\n", + "Selling FTNT on 2013-07-31 00:00:00\n", + "Selling DAL on 2013-07-31 00:00:00\n", + "Selling WDAY on 2013-07-31 00:00:00\n", + "Selling FFIV on 2013-07-31 00:00:00\n", + "Selling HOLX on 2013-07-31 00:00:00\n", + "Selling BIIB on 2013-07-31 00:00:00\n", + "Selling CF on 2013-07-31 00:00:00\n", + "Selling CRM on 2013-07-31 00:00:00\n", + "Selling BBY on 2013-07-31 00:00:00\n", + "Selling DECK on 2013-07-31 00:00:00\n", + "Selling MNST on 2013-07-31 00:00:00\n", + "Selling APO on 2013-07-31 00:00:00\n", + "Selling DLR on 2013-07-31 00:00:00\n", + "Selling LEN on 2013-07-31 00:00:00\n", + "Selling VRTX on 2013-07-31 00:00:00\n", + "Selling INCY on 2013-07-31 00:00:00\n", + "Selling URI on 2013-07-31 00:00:00\n", + "Selling BSX on 2013-07-31 00:00:00\n", + "Selling DXCM on 2013-07-31 00:00:00\n", + "Selling MU on 2013-07-31 00:00:00\n", + "Selling UAL on 2013-07-31 00:00:00\n", + "Selling PHM on 2013-07-31 00:00:00\n", + "Selling REGN on 2013-07-31 00:00:00\n", + "Selling ULTA on 2013-07-31 00:00:00\n", + "Selling IRM on 2013-07-31 00:00:00\n", + "Selling CSGP on 2013-07-31 00:00:00\n", + "Selling PODD on 2013-07-31 00:00:00\n", + "Selling DHI on 2013-07-31 00:00:00\n", + "Selling LULU on 2013-07-31 00:00:00\n", + "Selling NFLX on 2013-07-31 00:00:00\n", + "Selling MOS on 2013-07-31 00:00:00\n", + "Selling HPQ on 2013-07-31 00:00:00\n", + "Selling LYV on 2013-07-31 00:00:00\n", + "Selling ISRG on 2013-07-31 00:00:00\n", + "Selling NEM on 2013-07-31 00:00:00\n", + "Selling PANW on 2013-07-31 00:00:00\n", + "Selling EA on 2013-07-31 00:00:00\n", + "Selling FSLR on 2013-07-31 00:00:00\n", + "Selling OKE on 2013-07-31 00:00:00\n", + "Selling AMD on 2013-07-31 00:00:00\n", + "Selling EXPE on 2013-07-31 00:00:00\n", + "Selling ENPH on 2013-07-31 00:00:00\n", + "Selling META on 2013-07-31 00:00:00\n", + "Selling TSLA on 2013-07-31 00:00:00\n", + "Buying MMM on 2013-08-31 00:00:00\n", + "Buying BRK-B on 2013-08-31 00:00:00\n", + "Buying PCAR on 2013-08-31 00:00:00\n", + "Buying CTAS on 2013-08-31 00:00:00\n", + "Buying L on 2013-08-31 00:00:00\n", + "Buying MMC on 2013-08-31 00:00:00\n", + "Buying SYK on 2013-08-31 00:00:00\n", + "Buying AMP on 2013-08-31 00:00:00\n", + "Buying ADP on 2013-08-31 00:00:00\n", + "Buying ITW on 2013-08-31 00:00:00\n", + "Buying HSIC on 2013-08-31 00:00:00\n", + "Buying CINF on 2013-08-31 00:00:00\n", + "Buying USB on 2013-08-31 00:00:00\n", + "Buying CVX on 2013-08-31 00:00:00\n", + "Buying XOM on 2013-08-31 00:00:00\n", + "Buying HON on 2013-08-31 00:00:00\n", + "Buying KO on 2013-08-31 00:00:00\n", + "Buying CLX on 2013-08-31 00:00:00\n", + "Buying WMT on 2013-08-31 00:00:00\n", + "Buying CB on 2013-08-31 00:00:00\n", + "Buying DUK on 2013-08-31 00:00:00\n", + "Buying GD on 2013-08-31 00:00:00\n", + "Buying AJG on 2013-08-31 00:00:00\n", + "Buying GL on 2013-08-31 00:00:00\n", + "Buying SO on 2013-08-31 00:00:00\n", + "Buying AON on 2013-08-31 00:00:00\n", + "Buying MCD on 2013-08-31 00:00:00\n", + "Buying SJM on 2013-08-31 00:00:00\n", + "Buying PGR on 2013-08-31 00:00:00\n", + "Buying MRK on 2013-08-31 00:00:00\n", + "Buying COP on 2013-08-31 00:00:00\n", + "Buying WM on 2013-08-31 00:00:00\n", + "Buying TDY on 2013-08-31 00:00:00\n", + "Buying JKHY on 2013-08-31 00:00:00\n", + "Buying RTX on 2013-08-31 00:00:00\n", + "Buying ADI on 2013-08-31 00:00:00\n", + "Buying EMR on 2013-08-31 00:00:00\n", + "Buying IFF on 2013-08-31 00:00:00\n", + "Buying JPM on 2013-08-31 00:00:00\n", + "Buying PNR on 2013-08-31 00:00:00\n", + "Buying K on 2013-08-31 00:00:00\n", + "Buying LIN on 2013-08-31 00:00:00\n", + "Buying KMB on 2013-08-31 00:00:00\n", + "Buying GIS on 2013-08-31 00:00:00\n", + "Buying PG on 2013-08-31 00:00:00\n", + "Buying NOC on 2013-08-31 00:00:00\n", + "Selling VRTX on 2013-08-31 00:00:00\n", + "Selling AMGN on 2013-08-31 00:00:00\n", + "Selling MAS on 2013-08-31 00:00:00\n", + "Selling FANG on 2013-08-31 00:00:00\n", + "Selling DLR on 2013-08-31 00:00:00\n", + "Selling ON on 2013-08-31 00:00:00\n", + "Selling SMCI on 2013-08-31 00:00:00\n", + "Selling EPAM on 2013-08-31 00:00:00\n", + "Selling REGN on 2013-08-31 00:00:00\n", + "Selling CF on 2013-08-31 00:00:00\n", + "Selling PANW on 2013-08-31 00:00:00\n", + "Selling DECK on 2013-08-31 00:00:00\n", + "Selling BSX on 2013-08-31 00:00:00\n", + "Selling PODD on 2013-08-31 00:00:00\n", + "Selling MSFT on 2013-08-31 00:00:00\n", + "Selling BLDR on 2013-08-31 00:00:00\n", + "Selling URI on 2013-08-31 00:00:00\n", + "Selling NOW on 2013-08-31 00:00:00\n", + "Selling CRM on 2013-08-31 00:00:00\n", + "Selling DAL on 2013-08-31 00:00:00\n", + "Selling NFLX on 2013-08-31 00:00:00\n", + "Selling HPQ on 2013-08-31 00:00:00\n", + "Selling AXON on 2013-08-31 00:00:00\n", + "Selling MU on 2013-08-31 00:00:00\n", + "Selling IRM on 2013-08-31 00:00:00\n", + "Selling BBY on 2013-08-31 00:00:00\n", + "Selling CSGP on 2013-08-31 00:00:00\n", + "Selling ULTA on 2013-08-31 00:00:00\n", + "Selling LULU on 2013-08-31 00:00:00\n", + "Selling ISRG on 2013-08-31 00:00:00\n", + "Selling LEN on 2013-08-31 00:00:00\n", + "Selling UAL on 2013-08-31 00:00:00\n", + "Selling PHM on 2013-08-31 00:00:00\n", + "Selling MOS 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 FSLR on 2013-08-31 00:00:00\n", + "Selling LYV on 2013-08-31 00:00:00\n", + "Selling NEM on 2013-08-31 00:00:00\n", + "Selling DXCM on 2013-08-31 00:00:00\n", + "Selling OKE on 2013-08-31 00:00:00\n", + "Selling TSLA on 2013-08-31 00:00:00\n", + "Selling EXPE on 2013-08-31 00:00:00\n", + "Selling ENPH on 2013-08-31 00:00:00\n", + "Selling META on 2013-08-31 00:00:00\n", + "Selling INCY on 2013-08-31 00:00:00\n", + "Buying MMM on 2013-09-30 00:00:00\n", + "Buying MRK on 2013-09-30 00:00:00\n", + "Buying HON on 2013-09-30 00:00:00\n", + "Buying BRK-B on 2013-09-30 00:00:00\n", + "Buying WM on 2013-09-30 00:00:00\n", + "Buying CTAS on 2013-09-30 00:00:00\n", + "Buying PCAR on 2013-09-30 00:00:00\n", + "Buying TMO on 2013-09-30 00:00:00\n", + "Buying MMC on 2013-09-30 00:00:00\n", + "Buying L on 2013-09-30 00:00:00\n", + "Buying WTW on 2013-09-30 00:00:00\n", + "Buying PAYX on 2013-09-30 00:00:00\n", + "Buying LIN on 2013-09-30 00:00:00\n", + "Buying HSIC on 2013-09-30 00:00:00\n", + "Buying GD on 2013-09-30 00:00:00\n", + "Buying AMP on 2013-09-30 00:00:00\n", + "Buying CINF on 2013-09-30 00:00:00\n", + "Buying BDX on 2013-09-30 00:00:00\n", + "Buying ROP on 2013-09-30 00:00:00\n", + "Buying MCD on 2013-09-30 00:00:00\n", + "Buying SJM on 2013-09-30 00:00:00\n", + "Buying ADP on 2013-09-30 00:00:00\n", + "Buying INTU on 2013-09-30 00:00:00\n", + "Buying CVX on 2013-09-30 00:00:00\n", + "Buying WMT on 2013-09-30 00:00:00\n", + "Buying IFF on 2013-09-30 00:00:00\n", + "Buying XOM on 2013-09-30 00:00:00\n", + "Buying TDY on 2013-09-30 00:00:00\n", + "Buying KMB 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", + "Buying PG on 2013-09-30 00:00:00\n", + "Buying CLX on 2013-09-30 00:00:00\n", + "Buying ITW on 2013-09-30 00:00:00\n", + "Buying K on 2013-09-30 00:00:00\n", + "Buying GL on 2013-09-30 00:00:00\n", + "Buying HSY on 2013-09-30 00:00:00\n", + "Buying COP on 2013-09-30 00:00:00\n", + "Buying HRL on 2013-09-30 00:00:00\n", + "Buying CL on 2013-09-30 00:00:00\n", + "Buying KO on 2013-09-30 00:00:00\n", + "Buying UNP on 2013-09-30 00:00:00\n", + "Buying SYK on 2013-09-30 00:00:00\n", + "Buying PEP on 2013-09-30 00:00:00\n", + "Buying JNJ on 2013-09-30 00:00:00\n", + "Buying DUK on 2013-09-30 00:00:00\n", + "Selling EA on 2013-09-30 00:00:00\n", + "Selling AAPL on 2013-09-30 00:00:00\n", + "Selling HOLX on 2013-09-30 00:00:00\n", + "Selling WDC on 2013-09-30 00:00:00\n", + "Selling ON on 2013-09-30 00:00:00\n", + "Selling NOW on 2013-09-30 00:00:00\n", + "Selling DLR on 2013-09-30 00:00:00\n", + "Selling SMCI on 2013-09-30 00:00:00\n", + "Selling AMGN on 2013-09-30 00:00:00\n", + "Selling URI on 2013-09-30 00:00:00\n", + "Selling PODD on 2013-09-30 00:00:00\n", + "Selling VRTX on 2013-09-30 00:00:00\n", + "Selling CF on 2013-09-30 00:00:00\n", + "Selling DECK on 2013-09-30 00:00:00\n", + "Selling FANG on 2013-09-30 00:00:00\n", + "Selling REGN on 2013-09-30 00:00:00\n", + "Selling CRM on 2013-09-30 00:00:00\n", + "Selling NFLX on 2013-09-30 00:00:00\n", + "Selling LYV on 2013-09-30 00:00:00\n", + "Selling HPQ on 2013-09-30 00:00:00\n", + "Selling BLDR on 2013-09-30 00:00:00\n", + "Selling BSX on 2013-09-30 00:00:00\n", + "Selling MSFT on 2013-09-30 00:00:00\n", + "Selling BBY on 2013-09-30 00:00:00\n", + "Selling DAL on 2013-09-30 00:00:00\n", + "Selling LDOS on 2013-09-30 00:00:00\n", + "Selling MU on 2013-09-30 00:00:00\n", + "Selling CSGP on 2013-09-30 00:00:00\n", + "Selling AXON on 2013-09-30 00:00:00\n", + "Selling ISRG on 2013-09-30 00:00:00\n", + "Selling LEN on 2013-09-30 00:00:00\n", + "Selling FSLR on 2013-09-30 00:00:00\n", + "Selling ULTA on 2013-09-30 00:00:00\n", + "Selling UAL on 2013-09-30 00:00:00\n", + "Selling PHM on 2013-09-30 00:00:00\n", + "Selling DHI on 2013-09-30 00:00:00\n", + "Selling AMD on 2013-09-30 00:00:00\n", + "Selling MOS on 2013-09-30 00:00:00\n", + "Selling NEM on 2013-09-30 00:00:00\n", + "Selling DXCM on 2013-09-30 00:00:00\n", + "Selling OKE on 2013-09-30 00:00:00\n", + "Selling TSLA on 2013-09-30 00:00:00\n", + "Selling ENPH on 2013-09-30 00:00:00\n", + "Selling EXPE on 2013-09-30 00:00:00\n", + "Selling META on 2013-09-30 00:00:00\n", + "Selling INCY on 2013-09-30 00:00:00\n", + "Buying MMM on 2013-10-31 00:00:00\n", + "Buying BRK-B on 2013-10-31 00:00:00\n", + "Buying UPS on 2013-10-31 00:00:00\n", + "Buying FI on 2013-10-31 00:00:00\n", + "Buying CTAS on 2013-10-31 00:00:00\n", + "Buying MCD on 2013-10-31 00:00:00\n", + "Buying CINF on 2013-10-31 00:00:00\n", + "Buying BDX on 2013-10-31 00:00:00\n", + "Buying ACGL on 2013-10-31 00:00:00\n", + "Buying LIN on 2013-10-31 00:00:00\n", + "Buying WRB on 2013-10-31 00:00:00\n", + "Buying VRSK on 2013-10-31 00:00:00\n", + "Buying TRV on 2013-10-31 00:00:00\n", + "Buying WFC on 2013-10-31 00:00:00\n", + "Buying ADP on 2013-10-31 00:00:00\n", + "Buying MMC on 2013-10-31 00:00:00\n", + "Buying INTU on 2013-10-31 00:00:00\n", + "Buying L on 2013-10-31 00:00:00\n", + "Buying EMR on 2013-10-31 00:00:00\n", + "Buying USB on 2013-10-31 00:00:00\n", + "Buying HSIC on 2013-10-31 00:00:00\n", + "Buying TMO on 2013-10-31 00:00:00\n", + "Buying PAYX on 2013-10-31 00:00:00\n", + "Buying CB on 2013-10-31 00:00:00\n", + "Buying AMP on 2013-10-31 00:00:00\n", + "Buying ITW on 2013-10-31 00:00:00\n", + "Buying XOM on 2013-10-31 00:00:00\n", + "Buying CVX on 2013-10-31 00:00:00\n", + "Buying PNC on 2013-10-31 00:00:00\n", + "Buying HRL on 2013-10-31 00:00:00\n", + "Buying AFL on 2013-10-31 00:00:00\n", + "Buying VRSN on 2013-10-31 00:00:00\n", + "Buying WAB on 2013-10-31 00:00:00\n", + "Buying GL on 2013-10-31 00:00:00\n", + "Buying PEP on 2013-10-31 00:00:00\n", + "Buying JNJ on 2013-10-31 00:00:00\n", + "Buying IFF on 2013-10-31 00:00:00\n", + "Buying PCAR on 2013-10-31 00:00:00\n", + "Buying GD on 2013-10-31 00:00:00\n", + "Buying MRK on 2013-10-31 00:00:00\n", + "Buying COP on 2013-10-31 00:00:00\n", + "Buying WTW on 2013-10-31 00:00:00\n", + "Buying IEX on 2013-10-31 00:00:00\n", + "Buying TDY on 2013-10-31 00:00:00\n", + "Buying JKHY on 2013-10-31 00:00:00\n", + "Buying ALL on 2013-10-31 00:00:00\n", + "Selling REGN on 2013-10-31 00:00:00\n", + "Selling EPAM on 2013-10-31 00:00:00\n", + "Selling CPAY on 2013-10-31 00:00:00\n", + "Selling VRTX on 2013-10-31 00:00:00\n", + "Selling XYL on 2013-10-31 00:00:00\n", + "Selling TTWO on 2013-10-31 00:00:00\n", + "Selling GOOG on 2013-10-31 00:00:00\n", + "Selling GOOGL on 2013-10-31 00:00:00\n", + "Selling NXPI on 2013-10-31 00:00:00\n", + "Selling GEN on 2013-10-31 00:00:00\n", + "Selling RMD on 2013-10-31 00:00:00\n", + "Selling EA on 2013-10-31 00:00:00\n", + "Selling PODD on 2013-10-31 00:00:00\n", + "Selling CRM on 2013-10-31 00:00:00\n", + "Selling BBY on 2013-10-31 00:00:00\n", + "Selling CMG on 2013-10-31 00:00:00\n", + "Selling DAL on 2013-10-31 00:00:00\n", + "Selling GLW on 2013-10-31 00:00:00\n", + "Selling META on 2013-10-31 00:00:00\n", + "Selling GNRC on 2013-10-31 00:00:00\n", + "Selling MU on 2013-10-31 00:00:00\n", + "Selling SWK on 2013-10-31 00:00:00\n", + "Selling PHM on 2013-10-31 00:00:00\n", + "Selling LEN on 2013-10-31 00:00:00\n", + "Selling DHI on 2013-10-31 00:00:00\n", + "Selling FSLR on 2013-10-31 00:00:00\n", + "Selling HPQ on 2013-10-31 00:00:00\n", + "Selling FANG on 2013-10-31 00:00:00\n", + "Selling LDOS on 2013-10-31 00:00:00\n", + "Selling NOW on 2013-10-31 00:00:00\n", + "Selling UAL on 2013-10-31 00:00:00\n", + "Selling DLR on 2013-10-31 00:00:00\n", + "Selling ULTA on 2013-10-31 00:00:00\n", + "Selling MPWR on 2013-10-31 00:00:00\n", + "Selling BLDR on 2013-10-31 00:00:00\n", + "Selling AMD on 2013-10-31 00:00:00\n", + "Selling NFLX on 2013-10-31 00:00:00\n", + "Selling NEM on 2013-10-31 00:00:00\n", + "Selling EXPE on 2013-10-31 00:00:00\n", + "Selling DECK on 2013-10-31 00:00:00\n", + "Selling TSLA on 2013-10-31 00:00:00\n", + "Selling DXCM on 2013-10-31 00:00:00\n", + "Selling ENPH on 2013-10-31 00:00:00\n", + "Selling AXON on 2013-10-31 00:00:00\n", + "Selling ALGN on 2013-10-31 00:00:00\n", + "Selling INCY on 2013-10-31 00:00:00\n", + "Buying MMM on 2013-11-30 00:00:00\n", + "Buying ACGL on 2013-11-30 00:00:00\n", + "Buying BRK-B on 2013-11-30 00:00:00\n", + "Buying CINF on 2013-11-30 00:00:00\n", + "Buying L on 2013-11-30 00:00:00\n", + "Buying JNJ on 2013-11-30 00:00:00\n", + "Buying BF-B on 2013-11-30 00:00:00\n", + "Buying MCD on 2013-11-30 00:00:00\n", + "Buying FI on 2013-11-30 00:00:00\n", + "Buying WFC on 2013-11-30 00:00:00\n", + "Buying USB on 2013-11-30 00:00:00\n", + "Buying MMC on 2013-11-30 00:00:00\n", + "Buying LIN on 2013-11-30 00:00:00\n", + "Buying AMP on 2013-11-30 00:00:00\n", + "Buying WRB on 2013-11-30 00:00:00\n", + "Buying TRV on 2013-11-30 00:00:00\n", + "Buying EMR on 2013-11-30 00:00:00\n", + "Buying ITW on 2013-11-30 00:00:00\n", + "Buying VRSN on 2013-11-30 00:00:00\n", + "Buying JKHY on 2013-11-30 00:00:00\n", + "Buying GL on 2013-11-30 00:00:00\n", + "Buying AJG on 2013-11-30 00:00:00\n", + "Buying BDX on 2013-11-30 00:00:00\n", + "Buying KO on 2013-11-30 00:00:00\n", + "Buying UPS on 2013-11-30 00:00:00\n", + "Buying FMC on 2013-11-30 00:00:00\n", + "Buying PAYX on 2013-11-30 00:00:00\n", + "Buying COP on 2013-11-30 00:00:00\n", + "Buying ROL on 2013-11-30 00:00:00\n", + "Buying INTU on 2013-11-30 00:00:00\n", + "Buying PEP on 2013-11-30 00:00:00\n", + "Buying MDT on 2013-11-30 00:00:00\n", + "Buying IEX on 2013-11-30 00:00:00\n", + "Buying TMO on 2013-11-30 00:00:00\n", + "Buying CVX on 2013-11-30 00:00:00\n", + "Buying PFG on 2013-11-30 00:00:00\n", + "Buying XOM on 2013-11-30 00:00:00\n", + "Buying COR on 2013-11-30 00:00:00\n", + "Buying ALL on 2013-11-30 00:00:00\n", + "Buying AFL on 2013-11-30 00:00:00\n", + "Buying MSCI on 2013-11-30 00:00:00\n", + "Buying SYK on 2013-11-30 00:00:00\n", + "Buying MO on 2013-11-30 00:00:00\n", + "Buying WM on 2013-11-30 00:00:00\n", + "Buying WMT on 2013-11-30 00:00:00\n", + "Buying PFE on 2013-11-30 00:00:00\n", + "Selling GOOGL on 2013-11-30 00:00:00\n", + "Selling GEN on 2013-11-30 00:00:00\n", + "Selling XYL on 2013-11-30 00:00:00\n", + "Selling NXPI on 2013-11-30 00:00:00\n", + "Selling TTWO on 2013-11-30 00:00:00\n", + "Selling RMD on 2013-11-30 00:00:00\n", + "Selling MU on 2013-11-30 00:00:00\n", + "Selling HOLX on 2013-11-30 00:00:00\n", + "Selling PHM on 2013-11-30 00:00:00\n", + "Selling BBY on 2013-11-30 00:00:00\n", + "Selling BIIB on 2013-11-30 00:00:00\n", + "Selling LEN on 2013-11-30 00:00:00\n", + "Selling HPQ on 2013-11-30 00:00:00\n", + "Selling CMG on 2013-11-30 00:00:00\n", + "Selling EA on 2013-11-30 00:00:00\n", + "Selling GLW on 2013-11-30 00:00:00\n", + "Selling DHI on 2013-11-30 00:00:00\n", + "Selling VRTX on 2013-11-30 00:00:00\n", + "Selling SWK on 2013-11-30 00:00:00\n", + "Selling PANW on 2013-11-30 00:00:00\n", + "Selling LDOS on 2013-11-30 00:00:00\n", + "Selling WDAY on 2013-11-30 00:00:00\n", + "Selling GNRC on 2013-11-30 00:00:00\n", + "Selling FTNT on 2013-11-30 00:00:00\n", + "Selling REGN on 2013-11-30 00:00:00\n", + "Selling NEM on 2013-11-30 00:00:00\n", + "Selling UAL on 2013-11-30 00:00:00\n", + "Selling META on 2013-11-30 00:00:00\n", + "Selling DLR on 2013-11-30 00:00:00\n", + "Selling TRMB on 2013-11-30 00:00:00\n", + "Selling NOW on 2013-11-30 00:00:00\n", + "Selling ULTA on 2013-11-30 00:00:00\n", + "Selling MPWR on 2013-11-30 00:00:00\n", + "Selling BLDR on 2013-11-30 00:00:00\n", + "Selling FANG 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 AMD on 2013-11-30 00:00:00\n", + "Selling EXPE on 2013-11-30 00:00:00\n", + "Selling ENPH on 2013-11-30 00:00:00\n", + "Selling FSLR on 2013-11-30 00:00:00\n", + "Selling DECK on 2013-11-30 00:00:00\n", + "Selling AXON on 2013-11-30 00:00:00\n", + "Selling DXCM on 2013-11-30 00:00:00\n", + "Selling TSLA on 2013-11-30 00:00:00\n", + "Selling ALGN on 2013-11-30 00:00:00\n", + "Buying L on 2013-12-31 00:00:00\n", + "Buying CINF on 2013-12-31 00:00:00\n", + "Buying BRK-B on 2013-12-31 00:00:00\n", + "Buying WFC on 2013-12-31 00:00:00\n", + "Buying GL on 2013-12-31 00:00:00\n", + "Buying MMC on 2013-12-31 00:00:00\n", + "Buying PFG on 2013-12-31 00:00:00\n", + "Buying EMR on 2013-12-31 00:00:00\n", + "Buying ACGL on 2013-12-31 00:00:00\n", + "Buying ITW on 2013-12-31 00:00:00\n", + "Buying ALL on 2013-12-31 00:00:00\n", + "Buying TRV on 2013-12-31 00:00:00\n", + "Buying USB on 2013-12-31 00:00:00\n", + "Buying AMP on 2013-12-31 00:00:00\n", + "Buying COR on 2013-12-31 00:00:00\n", + "Buying LIN on 2013-12-31 00:00:00\n", + "Buying JNJ on 2013-12-31 00:00:00\n", + "Buying UPS on 2013-12-31 00:00:00\n", + "Buying FI on 2013-12-31 00:00:00\n", + "Buying AJG on 2013-12-31 00:00:00\n", + "Buying IEX on 2013-12-31 00:00:00\n", + "Buying SYK on 2013-12-31 00:00:00\n", + "Buying WRB on 2013-12-31 00:00:00\n", + "Buying MCD on 2013-12-31 00:00:00\n", + "Buying RTX on 2013-12-31 00:00:00\n", + "Buying BDX on 2013-12-31 00:00:00\n", + "Buying BF-B on 2013-12-31 00:00:00\n", + "Buying AFL on 2013-12-31 00:00:00\n", + "Buying INTU on 2013-12-31 00:00:00\n", + "Buying APH on 2013-12-31 00:00:00\n", + "Buying JKHY on 2013-12-31 00:00:00\n", + "Buying WM on 2013-12-31 00:00:00\n", + "Buying WMT on 2013-12-31 00:00:00\n", + "Buying VRSN on 2013-12-31 00:00:00\n", + "Buying GD on 2013-12-31 00:00:00\n", + "Buying CB on 2013-12-31 00:00:00\n", + "Buying KO on 2013-12-31 00:00:00\n", + "Buying FMC on 2013-12-31 00:00:00\n", + "Buying CMS on 2013-12-31 00:00:00\n", + "Buying PEP on 2013-12-31 00:00:00\n", + "Buying EVRG on 2013-12-31 00:00:00\n", + "Buying XEL on 2013-12-31 00:00:00\n", + "Buying COP on 2013-12-31 00:00:00\n", + "Buying NKE on 2013-12-31 00:00:00\n", + "Buying ROL on 2013-12-31 00:00:00\n", + "Buying NDSN on 2013-12-31 00:00:00\n", + "Selling GEN on 2013-12-31 00:00:00\n", + "Selling RMD on 2013-12-31 00:00:00\n", + "Selling ADBE on 2013-12-31 00:00:00\n", + "Selling AKAM on 2013-12-31 00:00:00\n", + "Selling LULU on 2013-12-31 00:00:00\n", + "Selling TXT on 2013-12-31 00:00:00\n", + "Selling VRTX on 2013-12-31 00:00:00\n", + "Selling UAL on 2013-12-31 00:00:00\n", + "Selling NEM on 2013-12-31 00:00:00\n", + "Selling PANW on 2013-12-31 00:00:00\n", + "Selling BIIB on 2013-12-31 00:00:00\n", + "Selling CMG on 2013-12-31 00:00:00\n", + "Selling GLW on 2013-12-31 00:00:00\n", + "Selling GNRC on 2013-12-31 00:00:00\n", + "Selling HPQ on 2013-12-31 00:00:00\n", + "Selling SWK on 2013-12-31 00:00:00\n", + "Selling LDOS on 2013-12-31 00:00:00\n", + "Selling REGN on 2013-12-31 00:00:00\n", + "Selling TMUS on 2013-12-31 00:00:00\n", + "Selling WDAY on 2013-12-31 00:00:00\n", + "Selling FTNT on 2013-12-31 00:00:00\n", + "Selling BBY on 2013-12-31 00:00:00\n", + "Selling MU on 2013-12-31 00:00:00\n", + "Selling AVGO on 2013-12-31 00:00:00\n", + "Selling META on 2013-12-31 00:00:00\n", + "Selling DLR on 2013-12-31 00:00:00\n", + "Selling EA on 2013-12-31 00:00:00\n", + "Selling MTCH on 2013-12-31 00:00:00\n", + "Selling MPWR on 2013-12-31 00:00:00\n", + "Selling INCY on 2013-12-31 00:00:00\n", + "Selling NFLX on 2013-12-31 00:00:00\n", + "Selling TRMB on 2013-12-31 00:00:00\n", + "Selling AMD on 2013-12-31 00:00:00\n", + "Selling NOW on 2013-12-31 00:00:00\n", + "Selling BLDR on 2013-12-31 00:00:00\n", + "Selling EXPE on 2013-12-31 00:00:00\n", + "Selling FANG on 2013-12-31 00:00:00\n", + "Selling ULTA on 2013-12-31 00:00:00\n", + "Selling JBL on 2013-12-31 00:00:00\n", + "Selling AXON on 2013-12-31 00:00:00\n", + "Selling DECK on 2013-12-31 00:00:00\n", + "Selling FSLR on 2013-12-31 00:00:00\n", + "Selling DXCM on 2013-12-31 00:00:00\n", + "Selling ALGN on 2013-12-31 00:00:00\n", + "Selling ENPH on 2013-12-31 00:00:00\n", + "Selling TSLA on 2013-12-31 00:00:00\n", + "Buying GL on 2014-01-31 00:00:00\n", + "Buying CINF on 2014-01-31 00:00:00\n", + "Buying AME on 2014-01-31 00:00:00\n", + "Buying BRK-B on 2014-01-31 00:00:00\n", + "Buying WM on 2014-01-31 00:00:00\n", + "Buying MMC on 2014-01-31 00:00:00\n", + "Buying ITW on 2014-01-31 00:00:00\n", + "Buying ROP on 2014-01-31 00:00:00\n", + "Buying WMT on 2014-01-31 00:00:00\n", + "Buying L on 2014-01-31 00:00:00\n", + "Buying SNA on 2014-01-31 00:00:00\n", + "Buying UPS on 2014-01-31 00:00:00\n", + "Buying BDX on 2014-01-31 00:00:00\n", + "Buying EMR on 2014-01-31 00:00:00\n", + "Buying COR on 2014-01-31 00:00:00\n", + "Buying RTX on 2014-01-31 00:00:00\n", + "Buying WFC on 2014-01-31 00:00:00\n", + "Buying MAR on 2014-01-31 00:00:00\n", + "Buying AMP on 2014-01-31 00:00:00\n", + "Buying HON on 2014-01-31 00:00:00\n", + "Buying AFL on 2014-01-31 00:00:00\n", + "Buying SYK on 2014-01-31 00:00:00\n", + "Buying MCD on 2014-01-31 00:00:00\n", + "Buying GPC on 2014-01-31 00:00:00\n", + "Buying RSG on 2014-01-31 00:00:00\n", + "Buying ALL on 2014-01-31 00:00:00\n", + "Buying BG on 2014-01-31 00:00:00\n", + "Buying NDSN on 2014-01-31 00:00:00\n", + "Buying WTW on 2014-01-31 00:00:00\n", + "Buying MTB on 2014-01-31 00:00:00\n", + "Buying JNJ on 2014-01-31 00:00:00\n", + "Buying XEL on 2014-01-31 00:00:00\n", + "Buying PFG on 2014-01-31 00:00:00\n", + "Buying DHR on 2014-01-31 00:00:00\n", + "Buying USB on 2014-01-31 00:00:00\n", + "Buying FIS on 2014-01-31 00:00:00\n", + "Buying TFX on 2014-01-31 00:00:00\n", + "Buying PEP on 2014-01-31 00:00:00\n", + "Buying COP on 2014-01-31 00:00:00\n", + "Buying TXN on 2014-01-31 00:00:00\n", + "Buying CL on 2014-01-31 00:00:00\n", + "Buying FI on 2014-01-31 00:00:00\n", + "Buying INTU on 2014-01-31 00:00:00\n", + "Buying TRV on 2014-01-31 00:00:00\n", + "Buying DUK on 2014-01-31 00:00:00\n", + "Buying ADP on 2014-01-31 00:00:00\n", + "Selling TTWO on 2014-01-31 00:00:00\n", + "Selling CMG on 2014-01-31 00:00:00\n", + "Selling DAL on 2014-01-31 00:00:00\n", + "Selling CTRA on 2014-01-31 00:00:00\n", + "Selling MPC on 2014-01-31 00:00:00\n", + "Selling HOLX on 2014-01-31 00:00:00\n", + "Selling JNPR on 2014-01-31 00:00:00\n", + "Selling ALGN on 2014-01-31 00:00:00\n", + "Selling ISRG on 2014-01-31 00:00:00\n", + "Selling ADBE on 2014-01-31 00:00:00\n", + "Selling LKQ on 2014-01-31 00:00:00\n", + "Selling DHI on 2014-01-31 00:00:00\n", + "Selling PANW on 2014-01-31 00:00:00\n", + "Selling PODD on 2014-01-31 00:00:00\n", + "Selling TXT on 2014-01-31 00:00:00\n", + "Selling WDAY on 2014-01-31 00:00:00\n", + "Selling LDOS on 2014-01-31 00:00:00\n", + "Selling STX on 2014-01-31 00:00:00\n", + "Selling MTCH on 2014-01-31 00:00:00\n", + "Selling BLDR on 2014-01-31 00:00:00\n", + "Selling FTNT on 2014-01-31 00:00:00\n", + "Selling NEM on 2014-01-31 00:00:00\n", + "Selling FSLR on 2014-01-31 00:00:00\n", + "Selling AVGO on 2014-01-31 00:00:00\n", + "Selling UAL on 2014-01-31 00:00:00\n", + "Selling BIIB on 2014-01-31 00:00:00\n", + "Selling AMD on 2014-01-31 00:00:00\n", + "Selling DECK on 2014-01-31 00:00:00\n", + "Selling TMUS on 2014-01-31 00:00:00\n", + "Selling MU on 2014-01-31 00:00:00\n", + "Selling INCY on 2014-01-31 00:00:00\n", + "Selling REGN on 2014-01-31 00:00:00\n", + "Selling NOW on 2014-01-31 00:00:00\n", + "Selling FANG on 2014-01-31 00:00:00\n", + "Selling EA on 2014-01-31 00:00:00\n", + "Selling NFLX on 2014-01-31 00:00:00\n", + "Selling META on 2014-01-31 00:00:00\n", + "Selling LULU on 2014-01-31 00:00:00\n", + "Selling AXON on 2014-01-31 00:00:00\n", + "Selling ULTA on 2014-01-31 00:00:00\n", + "Selling DXCM on 2014-01-31 00:00:00\n", + "Selling JBL on 2014-01-31 00:00:00\n", + "Selling SMCI on 2014-01-31 00:00:00\n", + "Selling ENPH on 2014-01-31 00:00:00\n", + "Selling BBY on 2014-01-31 00:00:00\n", + "Selling TSLA on 2014-01-31 00:00:00\n", + "Buying UPS on 2014-02-28 00:00:00\n", + "Buying GL on 2014-02-28 00:00:00\n", + "Buying BRK-B on 2014-02-28 00:00:00\n", + "Buying AME on 2014-02-28 00:00:00\n", + "Buying COR on 2014-02-28 00:00:00\n", + "Buying WFC on 2014-02-28 00:00:00\n", + "Buying MMC on 2014-02-28 00:00:00\n", + "Buying MCD on 2014-02-28 00:00:00\n", + "Buying BDX on 2014-02-28 00:00:00\n", + "Buying DHR on 2014-02-28 00:00:00\n", + "Buying HON on 2014-02-28 00:00:00\n", + "Buying ROP on 2014-02-28 00:00:00\n", + "Buying ADP on 2014-02-28 00:00:00\n", + "Buying MTB on 2014-02-28 00:00:00\n", + "Buying CB on 2014-02-28 00:00:00\n", + "Buying AFL on 2014-02-28 00:00:00\n", + "Buying RTX on 2014-02-28 00:00:00\n", + "Buying XEL on 2014-02-28 00:00:00\n", + "Buying FITB on 2014-02-28 00:00:00\n", + "Buying WMT on 2014-02-28 00:00:00\n", + "Buying BAX on 2014-02-28 00:00:00\n", + "Buying MAR on 2014-02-28 00:00:00\n", + "Buying SO on 2014-02-28 00:00:00\n", + "Buying GE on 2014-02-28 00:00:00\n", + "Buying DUK on 2014-02-28 00:00:00\n", + "Buying COP on 2014-02-28 00:00:00\n", + "Buying TRV on 2014-02-28 00:00:00\n", + "Buying PNW on 2014-02-28 00:00:00\n", + "Buying EMR on 2014-02-28 00:00:00\n", + "Buying USB on 2014-02-28 00:00:00\n", + "Buying JNJ on 2014-02-28 00:00:00\n", + "Buying ES on 2014-02-28 00:00:00\n", + "Buying ITW on 2014-02-28 00:00:00\n", + "Buying K on 2014-02-28 00:00:00\n", + "Buying PSA on 2014-02-28 00:00:00\n", + "Buying EQR on 2014-02-28 00:00:00\n", + "Buying LNT on 2014-02-28 00:00:00\n", + "Buying PRU on 2014-02-28 00:00:00\n", + "Buying AMP on 2014-02-28 00:00:00\n", + "Buying SWK on 2014-02-28 00:00:00\n", + "Buying CL on 2014-02-28 00:00:00\n", + "Buying SYK on 2014-02-28 00:00:00\n", + "Buying SRE on 2014-02-28 00:00:00\n", + "Buying ED on 2014-02-28 00:00:00\n", + "Buying SPG on 2014-02-28 00:00:00\n", + "Buying PGR on 2014-02-28 00:00:00\n", + "Selling VTRS on 2014-02-28 00:00:00\n", + "Selling DXCM on 2014-02-28 00:00:00\n", + "Selling PODD on 2014-02-28 00:00:00\n", + "Selling MOH on 2014-02-28 00:00:00\n", + "Selling SWKS on 2014-02-28 00:00:00\n", + "Selling ISRG on 2014-02-28 00:00:00\n", + "Selling ADBE on 2014-02-28 00:00:00\n", + "Selling TPL on 2014-02-28 00:00:00\n", + "Selling ZBRA on 2014-02-28 00:00:00\n", + "Selling EXPE on 2014-02-28 00:00:00\n", + "Selling TXT on 2014-02-28 00:00:00\n", + "Selling TRMB on 2014-02-28 00:00:00\n", + "Selling REGN on 2014-02-28 00:00:00\n", + "Selling AVGO on 2014-02-28 00:00:00\n", + "Selling LDOS on 2014-02-28 00:00:00\n", + "Selling CTRA on 2014-02-28 00:00:00\n", + "Selling STX on 2014-02-28 00:00:00\n", + "Selling MU on 2014-02-28 00:00:00\n", + "Selling PANW on 2014-02-28 00:00:00\n", + "Selling UAL on 2014-02-28 00:00:00\n", + "Selling AMD on 2014-02-28 00:00:00\n", + "Selling LKQ on 2014-02-28 00:00:00\n", + "Selling NEM on 2014-02-28 00:00:00\n", + "Selling TTWO on 2014-02-28 00:00:00\n", + "Selling BLDR on 2014-02-28 00:00:00\n", + "Selling MTCH on 2014-02-28 00:00:00\n", + "Selling FANG on 2014-02-28 00:00:00\n", + "Selling GNRC on 2014-02-28 00:00:00\n", + "Selling WDAY on 2014-02-28 00:00:00\n", + "Selling EA on 2014-02-28 00:00:00\n", + "Selling NOW on 2014-02-28 00:00:00\n", + "Selling INCY on 2014-02-28 00:00:00\n", + "Selling META on 2014-02-28 00:00:00\n", + "Selling TMUS on 2014-02-28 00:00:00\n", + "Selling DECK on 2014-02-28 00:00:00\n", + "Selling AKAM on 2014-02-28 00:00:00\n", + "Selling FSLR on 2014-02-28 00:00:00\n", + "Selling NFLX on 2014-02-28 00:00:00\n", + "Selling LULU on 2014-02-28 00:00:00\n", + "Selling AXON on 2014-02-28 00:00:00\n", + "Selling ULTA on 2014-02-28 00:00:00\n", + "Selling JBL on 2014-02-28 00:00:00\n", + "Selling SMCI on 2014-02-28 00:00:00\n", + "Selling TSLA on 2014-02-28 00:00:00\n", + "Selling BBY on 2014-02-28 00:00:00\n", + "Selling ENPH on 2014-02-28 00:00:00\n", + "Buying UPS on 2014-03-31 00:00:00\n", + "Buying GL on 2014-03-31 00:00:00\n", + "Buying AME on 2014-03-31 00:00:00\n", + "Buying SYY on 2014-03-31 00:00:00\n", + "Buying BDX on 2014-03-31 00:00:00\n", + "Buying DHR on 2014-03-31 00:00:00\n", + "Buying ADP on 2014-03-31 00:00:00\n", + "Buying WFC on 2014-03-31 00:00:00\n", + "Buying HON on 2014-03-31 00:00:00\n", + "Buying USB on 2014-03-31 00:00:00\n", + "Buying AFL on 2014-03-31 00:00:00\n", + "Buying BRK-B on 2014-03-31 00:00:00\n", + "Buying ITW on 2014-03-31 00:00:00\n", + "Buying CB on 2014-03-31 00:00:00\n", + "Buying PSA on 2014-03-31 00:00:00\n", + "Buying TRV on 2014-03-31 00:00:00\n", + "Buying MMC on 2014-03-31 00:00:00\n", + "Buying CLX on 2014-03-31 00:00:00\n", + "Buying K on 2014-03-31 00:00:00\n", + "Buying COP on 2014-03-31 00:00:00\n", + "Buying ROP on 2014-03-31 00:00:00\n", + "Buying MTB on 2014-03-31 00:00:00\n", + "Buying SWK on 2014-03-31 00:00:00\n", + "Buying COR on 2014-03-31 00:00:00\n", + "Buying CL on 2014-03-31 00:00:00\n", + "Buying EQR on 2014-03-31 00:00:00\n", + "Buying WMT on 2014-03-31 00:00:00\n", + "Buying SO on 2014-03-31 00:00:00\n", + "Buying ADI on 2014-03-31 00:00:00\n", + "Buying GE on 2014-03-31 00:00:00\n", + "Buying PAYX on 2014-03-31 00:00:00\n", + "Buying KIM on 2014-03-31 00:00:00\n", + "Buying RTX on 2014-03-31 00:00:00\n", + "Buying SRE on 2014-03-31 00:00:00\n", + "Buying SPG on 2014-03-31 00:00:00\n", + "Buying LII on 2014-03-31 00:00:00\n", + "Buying XEL on 2014-03-31 00:00:00\n", + "Buying SYK on 2014-03-31 00:00:00\n", + "Buying IFF on 2014-03-31 00:00:00\n", + "Buying GIS on 2014-03-31 00:00:00\n", + "Buying FITB on 2014-03-31 00:00:00\n", + "Buying JKHY on 2014-03-31 00:00:00\n", + "Buying LIN on 2014-03-31 00:00:00\n", + "Buying MMM on 2014-03-31 00:00:00\n", + "Buying JNJ on 2014-03-31 00:00:00\n", + "Buying DUK on 2014-03-31 00:00:00\n", + "Selling SWKS on 2014-03-31 00:00:00\n", + "Selling CI on 2014-03-31 00:00:00\n", + "Selling CTRA on 2014-03-31 00:00:00\n", + "Selling VRTX on 2014-03-31 00:00:00\n", + "Selling ULTA on 2014-03-31 00:00:00\n", + "Selling CMG on 2014-03-31 00:00:00\n", + "Selling PODD on 2014-03-31 00:00:00\n", + "Selling TRMB on 2014-03-31 00:00:00\n", + "Selling EA on 2014-03-31 00:00:00\n", + "Selling ISRG on 2014-03-31 00:00:00\n", + "Selling TMUS on 2014-03-31 00:00:00\n", + "Selling VTRS on 2014-03-31 00:00:00\n", + "Selling ZBRA on 2014-03-31 00:00:00\n", + "Selling FANG on 2014-03-31 00:00:00\n", + "Selling TPL on 2014-03-31 00:00:00\n", + "Selling EXPE on 2014-03-31 00:00:00\n", + "Selling MU on 2014-03-31 00:00:00\n", + "Selling UAL on 2014-03-31 00:00:00\n", + "Selling BIIB on 2014-03-31 00:00:00\n", + "Selling STX on 2014-03-31 00:00:00\n", + "Selling DXCM on 2014-03-31 00:00:00\n", + "Selling LKQ on 2014-03-31 00:00:00\n", + "Selling AMD on 2014-03-31 00:00:00\n", + "Selling REGN on 2014-03-31 00:00:00\n", + "Selling NEM on 2014-03-31 00:00:00\n", + "Selling TTWO on 2014-03-31 00:00:00\n", + "Selling LDOS on 2014-03-31 00:00:00\n", + "Selling META on 2014-03-31 00:00:00\n", + "Selling WDAY on 2014-03-31 00:00:00\n", + "Selling GEN on 2014-03-31 00:00:00\n", + "Selling NOW on 2014-03-31 00:00:00\n", + "Selling GNRC on 2014-03-31 00:00:00\n", + "Selling BLDR on 2014-03-31 00:00:00\n", + "Selling DECK on 2014-03-31 00:00:00\n", + "Selling AKAM on 2014-03-31 00:00:00\n", + "Selling LULU on 2014-03-31 00:00:00\n", + "Selling PANW on 2014-03-31 00:00:00\n", + "Selling INCY on 2014-03-31 00:00:00\n", + "Selling NFLX on 2014-03-31 00:00:00\n", + "Selling AXON on 2014-03-31 00:00:00\n", + "Selling ENPH on 2014-03-31 00:00:00\n", + "Selling TSLA on 2014-03-31 00:00:00\n", + "Selling SMCI on 2014-03-31 00:00:00\n", + "Selling FSLR on 2014-03-31 00:00:00\n", + "Selling EPAM on 2014-03-31 00:00:00\n", + "Selling BBY on 2014-03-31 00:00:00\n", + "Buying HON on 2014-04-30 00:00:00\n", + "Buying GL on 2014-04-30 00:00:00\n", + "Buying UPS on 2014-04-30 00:00:00\n", + "Buying SYY on 2014-04-30 00:00:00\n", + "Buying CB on 2014-04-30 00:00:00\n", + "Buying PSA on 2014-04-30 00:00:00\n", + "Buying MMM on 2014-04-30 00:00:00\n", + "Buying GE on 2014-04-30 00:00:00\n", + "Buying UNP on 2014-04-30 00:00:00\n", + "Buying JKHY on 2014-04-30 00:00:00\n", + "Buying TRV on 2014-04-30 00:00:00\n", + "Buying RTX on 2014-04-30 00:00:00\n", + "Buying BRK-B on 2014-04-30 00:00:00\n", + "Buying LIN on 2014-04-30 00:00:00\n", + "Buying WFC on 2014-04-30 00:00:00\n", + "Buying ALB on 2014-04-30 00:00:00\n", + "Buying MMC on 2014-04-30 00:00:00\n", + "Buying USB on 2014-04-30 00:00:00\n", + "Buying MTB on 2014-04-30 00:00:00\n", + "Buying ITW on 2014-04-30 00:00:00\n", + "Buying TROW on 2014-04-30 00:00:00\n", + "Buying MDLZ on 2014-04-30 00:00:00\n", + "Buying HES on 2014-04-30 00:00:00\n", + "Buying APH on 2014-04-30 00:00:00\n", + "Buying HSIC on 2014-04-30 00:00:00\n", + "Buying AME on 2014-04-30 00:00:00\n", + "Buying MSI on 2014-04-30 00:00:00\n", + "Buying ADP on 2014-04-30 00:00:00\n", + "Buying DHR on 2014-04-30 00:00:00\n", + "Buying CLX on 2014-04-30 00:00:00\n", + "Buying KIM on 2014-04-30 00:00:00\n", + "Buying CVX on 2014-04-30 00:00:00\n", + "Buying BDX on 2014-04-30 00:00:00\n", + "Buying AXP on 2014-04-30 00:00:00\n", + "Buying AFL on 2014-04-30 00:00:00\n", + "Buying WMT on 2014-04-30 00:00:00\n", + "Buying CHD on 2014-04-30 00:00:00\n", + "Buying WRB on 2014-04-30 00:00:00\n", + "Buying IFF on 2014-04-30 00:00:00\n", + "Buying HRL on 2014-04-30 00:00:00\n", + "Buying PNC on 2014-04-30 00:00:00\n", + "Buying BALL on 2014-04-30 00:00:00\n", + "Buying AVB on 2014-04-30 00:00:00\n", + "Buying SPG on 2014-04-30 00:00:00\n", + "Buying ACGL on 2014-04-30 00:00:00\n", + "Buying SRE on 2014-04-30 00:00:00\n", + "Selling GILD on 2014-04-30 00:00:00\n", + "Selling FANG on 2014-04-30 00:00:00\n", + "Selling LULU on 2014-04-30 00:00:00\n", + "Selling SMCI on 2014-04-30 00:00:00\n", + "Selling CTRA on 2014-04-30 00:00:00\n", + "Selling MU on 2014-04-30 00:00:00\n", + "Selling PODD on 2014-04-30 00:00:00\n", + "Selling CRM on 2014-04-30 00:00:00\n", + "Selling TRMB on 2014-04-30 00:00:00\n", + "Selling EXPE on 2014-04-30 00:00:00\n", + "Selling MOH on 2014-04-30 00:00:00\n", + "Selling TYL on 2014-04-30 00:00:00\n", + "Selling SWKS on 2014-04-30 00:00:00\n", + "Selling VRTX on 2014-04-30 00:00:00\n", + "Selling GEN on 2014-04-30 00:00:00\n", + "Selling NFLX on 2014-04-30 00:00:00\n", + "Selling TMUS on 2014-04-30 00:00:00\n", + "Selling META on 2014-04-30 00:00:00\n", + "Selling CSGP on 2014-04-30 00:00:00\n", + "Selling TPL on 2014-04-30 00:00:00\n", + "Selling BIIB on 2014-04-30 00:00:00\n", + "Selling CNC on 2014-04-30 00:00:00\n", + "Selling REGN on 2014-04-30 00:00:00\n", + "Selling LKQ on 2014-04-30 00:00:00\n", + "Selling VTRS on 2014-04-30 00:00:00\n", + "Selling GNRC on 2014-04-30 00:00:00\n", + "Selling TTWO on 2014-04-30 00:00:00\n", + "Selling NEM on 2014-04-30 00:00:00\n", + "Selling AMD on 2014-04-30 00:00:00\n", + "Selling UAL on 2014-04-30 00:00:00\n", + "Selling DECK on 2014-04-30 00:00:00\n", + "Selling DXCM on 2014-04-30 00:00:00\n", + "Selling AXON on 2014-04-30 00:00:00\n", + "Selling BLDR on 2014-04-30 00:00:00\n", + "Selling LDOS on 2014-04-30 00:00:00\n", + "Selling ZBRA on 2014-04-30 00:00:00\n", + "Selling NOW on 2014-04-30 00:00:00\n", + "Selling AKAM on 2014-04-30 00:00:00\n", + "Selling ISRG on 2014-04-30 00:00:00\n", + "Selling PANW on 2014-04-30 00:00:00\n", + "Selling INCY on 2014-04-30 00:00:00\n", + "Selling ENPH on 2014-04-30 00:00:00\n", + "Selling TSLA on 2014-04-30 00:00:00\n", + "Selling WDAY on 2014-04-30 00:00:00\n", + "Selling FSLR on 2014-04-30 00:00:00\n", + "Selling EPAM on 2014-04-30 00:00:00\n", + "Buying RSG on 2014-05-31 00:00:00\n", + "Buying CB on 2014-05-31 00:00:00\n", + "Buying GL on 2014-05-31 00:00:00\n", + "Buying HON on 2014-05-31 00:00:00\n", + "Buying ITW on 2014-05-31 00:00:00\n", + "Buying ALL on 2014-05-31 00:00:00\n", + "Buying MMM on 2014-05-31 00:00:00\n", + "Buying AMCR on 2014-05-31 00:00:00\n", + "Buying UPS on 2014-05-31 00:00:00\n", + "Buying CTAS on 2014-05-31 00:00:00\n", + "Buying TRV on 2014-05-31 00:00:00\n", + "Buying CHD on 2014-05-31 00:00:00\n", + "Buying ALB on 2014-05-31 00:00:00\n", + "Buying MMC on 2014-05-31 00:00:00\n", + "Buying GE on 2014-05-31 00:00:00\n", + "Buying ADP on 2014-05-31 00:00:00\n", + "Buying UNP on 2014-05-31 00:00:00\n", + "Buying IFF on 2014-05-31 00:00:00\n", + "Buying ACGL on 2014-05-31 00:00:00\n", + "Buying RTX on 2014-05-31 00:00:00\n", + "Buying TROW on 2014-05-31 00:00:00\n", + "Buying LHX on 2014-05-31 00:00:00\n", + "Buying APH on 2014-05-31 00:00:00\n", + "Buying LIN on 2014-05-31 00:00:00\n", + "Buying CVX on 2014-05-31 00:00:00\n", + "Buying ECL on 2014-05-31 00:00:00\n", + "Buying PM on 2014-05-31 00:00:00\n", + "Buying HSIC on 2014-05-31 00:00:00\n", + "Buying NSC on 2014-05-31 00:00:00\n", + "Buying L on 2014-05-31 00:00:00\n", + "Buying APD on 2014-05-31 00:00:00\n", + "Buying AME on 2014-05-31 00:00:00\n", + "Buying XOM on 2014-05-31 00:00:00\n", + "Buying HAS on 2014-05-31 00:00:00\n", + "Buying AVB on 2014-05-31 00:00:00\n", + "Buying USB on 2014-05-31 00:00:00\n", + "Buying PG on 2014-05-31 00:00:00\n", + "Buying FDX on 2014-05-31 00:00:00\n", + "Buying SYY on 2014-05-31 00:00:00\n", + "Buying HES on 2014-05-31 00:00:00\n", + "Buying WFC on 2014-05-31 00:00:00\n", + "Buying BRK-B on 2014-05-31 00:00:00\n", + "Buying WMT on 2014-05-31 00:00:00\n", + "Buying BDX on 2014-05-31 00:00:00\n", + "Buying HUBB on 2014-05-31 00:00:00\n", + "Buying MTB on 2014-05-31 00:00:00\n", + "Selling CSGP on 2014-05-31 00:00:00\n", + "Selling BBY on 2014-05-31 00:00:00\n", + "Selling NXPI on 2014-05-31 00:00:00\n", + "Selling DHI on 2014-05-31 00:00:00\n", + "Selling ZBRA on 2014-05-31 00:00:00\n", + "Selling EW on 2014-05-31 00:00:00\n", + "Selling LYV on 2014-05-31 00:00:00\n", + "Selling TMUS on 2014-05-31 00:00:00\n", + "Selling LRCX on 2014-05-31 00:00:00\n", + "Selling LULU on 2014-05-31 00:00:00\n", + "Selling ULTA on 2014-05-31 00:00:00\n", + "Selling LKQ on 2014-05-31 00:00:00\n", + "Selling GNRC on 2014-05-31 00:00:00\n", + "Selling MGM on 2014-05-31 00:00:00\n", + "Selling TTWO on 2014-05-31 00:00:00\n", + "Selling MU on 2014-05-31 00:00:00\n", + "Selling CNC on 2014-05-31 00:00:00\n", + "Selling DXCM on 2014-05-31 00:00:00\n", + "Selling META on 2014-05-31 00:00:00\n", + "Selling TSN on 2014-05-31 00:00:00\n", + "Selling FANG on 2014-05-31 00:00:00\n", + "Selling BIIB on 2014-05-31 00:00:00\n", + "Selling REGN on 2014-05-31 00:00:00\n", + "Selling NEM on 2014-05-31 00:00:00\n", + "Selling UAL on 2014-05-31 00:00:00\n", + "Selling GEN on 2014-05-31 00:00:00\n", + "Selling VRTX on 2014-05-31 00:00:00\n", + "Selling WYNN 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 AMD on 2014-05-31 00:00:00\n", + "Selling SMCI on 2014-05-31 00:00:00\n", + "Selling PODD on 2014-05-31 00:00:00\n", + "Selling NFLX on 2014-05-31 00:00:00\n", + "Selling AXON on 2014-05-31 00:00:00\n", + "Selling LDOS on 2014-05-31 00:00:00\n", + "Selling TSLA on 2014-05-31 00:00:00\n", + "Selling EA on 2014-05-31 00:00:00\n", + "Selling NOW on 2014-05-31 00:00:00\n", + "Selling ISRG on 2014-05-31 00:00:00\n", + "Selling ENPH on 2014-05-31 00:00:00\n", + "Selling EPAM on 2014-05-31 00:00:00\n", + "Selling PANW on 2014-05-31 00:00:00\n", + "Selling WDAY on 2014-05-31 00:00:00\n", + "Selling INCY on 2014-05-31 00:00:00\n", + "Selling FSLR on 2014-05-31 00:00:00\n", + "Buying GL on 2014-06-30 00:00:00\n", + "Buying ITW on 2014-06-30 00:00:00\n", + "Buying HON on 2014-06-30 00:00:00\n", + "Buying ALL on 2014-06-30 00:00:00\n", + "Buying MMM on 2014-06-30 00:00:00\n", + "Buying CB on 2014-06-30 00:00:00\n", + "Buying RSG on 2014-06-30 00:00:00\n", + "Buying ACGL on 2014-06-30 00:00:00\n", + "Buying APH on 2014-06-30 00:00:00\n", + "Buying MMC on 2014-06-30 00:00:00\n", + "Buying CTAS on 2014-06-30 00:00:00\n", + "Buying L on 2014-06-30 00:00:00\n", + "Buying RTX on 2014-06-30 00:00:00\n", + "Buying UPS on 2014-06-30 00:00:00\n", + "Buying AMCR on 2014-06-30 00:00:00\n", + "Buying BRK-B on 2014-06-30 00:00:00\n", + "Buying ALB on 2014-06-30 00:00:00\n", + "Buying TRV on 2014-06-30 00:00:00\n", + "Buying PG on 2014-06-30 00:00:00\n", + "Buying UNP on 2014-06-30 00:00:00\n", + "Buying TROW on 2014-06-30 00:00:00\n", + "Buying AME on 2014-06-30 00:00:00\n", + "Buying CHD on 2014-06-30 00:00:00\n", + "Buying EMR on 2014-06-30 00:00:00\n", + "Buying PH on 2014-06-30 00:00:00\n", + "Buying GE on 2014-06-30 00:00:00\n", + "Buying DE on 2014-06-30 00:00:00\n", + "Buying HSIC on 2014-06-30 00:00:00\n", + "Buying CINF on 2014-06-30 00:00:00\n", + "Buying ADP on 2014-06-30 00:00:00\n", + "Buying BAX on 2014-06-30 00:00:00\n", + "Buying ECL on 2014-06-30 00:00:00\n", + "Buying LIN on 2014-06-30 00:00:00\n", + "Buying PNC on 2014-06-30 00:00:00\n", + "Buying XOM on 2014-06-30 00:00:00\n", + "Buying TFX on 2014-06-30 00:00:00\n", + "Buying SNA on 2014-06-30 00:00:00\n", + "Buying DOV on 2014-06-30 00:00:00\n", + "Buying WM on 2014-06-30 00:00:00\n", + "Buying MCD on 2014-06-30 00:00:00\n", + "Buying WMT on 2014-06-30 00:00:00\n", + "Buying WFC on 2014-06-30 00:00:00\n", + "Buying LHX on 2014-06-30 00:00:00\n", + "Buying CVX on 2014-06-30 00:00:00\n", + "Buying SPG on 2014-06-30 00:00:00\n", + "Buying IFF on 2014-06-30 00:00:00\n", + "Selling TMUS on 2014-06-30 00:00:00\n", + "Selling LYV on 2014-06-30 00:00:00\n", + "Selling CSGP on 2014-06-30 00:00:00\n", + "Selling GNRC on 2014-06-30 00:00:00\n", + "Selling SWKS on 2014-06-30 00:00:00\n", + "Selling BLDR on 2014-06-30 00:00:00\n", + "Selling BBY on 2014-06-30 00:00:00\n", + "Selling LRCX on 2014-06-30 00:00:00\n", + "Selling NEM on 2014-06-30 00:00:00\n", + "Selling VLO on 2014-06-30 00:00:00\n", + "Selling EW on 2014-06-30 00:00:00\n", + "Selling FANG on 2014-06-30 00:00:00\n", + "Selling TTWO on 2014-06-30 00:00:00\n", + "Selling REGN on 2014-06-30 00:00:00\n", + "Selling MGM on 2014-06-30 00:00:00\n", + "Selling TPR on 2014-06-30 00:00:00\n", + "Selling CNC on 2014-06-30 00:00:00\n", + "Selling MU on 2014-06-30 00:00:00\n", + "Selling FSLR on 2014-06-30 00:00:00\n", + "Selling NFLX on 2014-06-30 00:00:00\n", + "Selling TSN on 2014-06-30 00:00:00\n", + "Selling CRM on 2014-06-30 00:00:00\n", + "Selling DXCM on 2014-06-30 00:00:00\n", + "Selling ZBRA on 2014-06-30 00:00:00\n", + "Selling ULTA on 2014-06-30 00:00:00\n", + "Selling EPAM on 2014-06-30 00:00:00\n", + "Selling LULU on 2014-06-30 00:00:00\n", + "Selling WYNN on 2014-06-30 00:00:00\n", + "Selling KMX on 2014-06-30 00:00:00\n", + "Selling PANW on 2014-06-30 00:00:00\n", + "Selling UAL on 2014-06-30 00:00:00\n", + "Selling ISRG on 2014-06-30 00:00:00\n", + "Selling AMD on 2014-06-30 00:00:00\n", + "Selling AXON on 2014-06-30 00:00:00\n", + "Selling NOW on 2014-06-30 00:00:00\n", + "Selling ENPH on 2014-06-30 00:00:00\n", + "Selling WMB on 2014-06-30 00:00:00\n", + "Selling PODD on 2014-06-30 00:00:00\n", + "Selling SMCI on 2014-06-30 00:00:00\n", + "Selling TSLA on 2014-06-30 00:00:00\n", + "Selling EA on 2014-06-30 00:00:00\n", + "Selling INCY on 2014-06-30 00:00:00\n", + "Selling WDAY on 2014-06-30 00:00:00\n", + "Selling IRM on 2014-06-30 00:00:00\n", + "Selling TRGP on 2014-06-30 00:00:00\n", + "Selling VRTX on 2014-06-30 00:00:00\n", + "Buying MMM on 2014-07-31 00:00:00\n", + "Buying MSI on 2014-07-31 00:00:00\n", + "Buying ITW on 2014-07-31 00:00:00\n", + "Buying BRK-B on 2014-07-31 00:00:00\n", + "Buying CB on 2014-07-31 00:00:00\n", + "Buying APH on 2014-07-31 00:00:00\n", + "Buying BDX on 2014-07-31 00:00:00\n", + "Buying AME on 2014-07-31 00:00:00\n", + "Buying HON on 2014-07-31 00:00:00\n", + "Buying CINF on 2014-07-31 00:00:00\n", + "Buying GL on 2014-07-31 00:00:00\n", + "Buying PG on 2014-07-31 00:00:00\n", + "Buying ADP on 2014-07-31 00:00:00\n", + "Buying HSIC on 2014-07-31 00:00:00\n", + "Buying ACGL on 2014-07-31 00:00:00\n", + "Buying IEX on 2014-07-31 00:00:00\n", + "Buying FI on 2014-07-31 00:00:00\n", + "Buying WRB on 2014-07-31 00:00:00\n", + "Buying AMCR on 2014-07-31 00:00:00\n", + "Buying L on 2014-07-31 00:00:00\n", + "Buying BLK on 2014-07-31 00:00:00\n", + "Buying JKHY on 2014-07-31 00:00:00\n", + "Buying UNP on 2014-07-31 00:00:00\n", + "Buying FIS on 2014-07-31 00:00:00\n", + "Buying RSG on 2014-07-31 00:00:00\n", + "Buying AMP on 2014-07-31 00:00:00\n", + "Buying CVS on 2014-07-31 00:00:00\n", + "Buying CTAS on 2014-07-31 00:00:00\n", + "Buying PH on 2014-07-31 00:00:00\n", + "Buying IFF on 2014-07-31 00:00:00\n", + "Buying ARE on 2014-07-31 00:00:00\n", + "Buying BAX on 2014-07-31 00:00:00\n", + "Buying AXP on 2014-07-31 00:00:00\n", + "Buying WMT on 2014-07-31 00:00:00\n", + "Buying ECL on 2014-07-31 00:00:00\n", + "Buying WFC on 2014-07-31 00:00:00\n", + "Buying EMR on 2014-07-31 00:00:00\n", + "Buying GD on 2014-07-31 00:00:00\n", + "Buying ERIE on 2014-07-31 00:00:00\n", + "Buying DOV on 2014-07-31 00:00:00\n", + "Buying LIN on 2014-07-31 00:00:00\n", + "Buying MCD on 2014-07-31 00:00:00\n", + "Buying SYY on 2014-07-31 00:00:00\n", + "Buying MMC on 2014-07-31 00:00:00\n", + "Buying SPG on 2014-07-31 00:00:00\n", + "Buying EL on 2014-07-31 00:00:00\n", + "Selling GNRC on 2014-07-31 00:00:00\n", + "Selling CNC on 2014-07-31 00:00:00\n", + "Selling FANG on 2014-07-31 00:00:00\n", + "Selling TRMB on 2014-07-31 00:00:00\n", + "Selling TTWO on 2014-07-31 00:00:00\n", + "Selling MKTX on 2014-07-31 00:00:00\n", + "Selling VLO on 2014-07-31 00:00:00\n", + "Selling FSLR on 2014-07-31 00:00:00\n", + "Selling AMZN on 2014-07-31 00:00:00\n", + "Selling CSGP on 2014-07-31 00:00:00\n", + "Selling HCA on 2014-07-31 00:00:00\n", + "Selling NFLX on 2014-07-31 00:00:00\n", + "Selling EW on 2014-07-31 00:00:00\n", + "Selling VRSN on 2014-07-31 00:00:00\n", + "Selling MU on 2014-07-31 00:00:00\n", + "Selling BIIB on 2014-07-31 00:00:00\n", + "Selling REGN on 2014-07-31 00:00:00\n", + "Selling STLD on 2014-07-31 00:00:00\n", + "Selling TSN on 2014-07-31 00:00:00\n", + "Selling TYL on 2014-07-31 00:00:00\n", + "Selling CRM on 2014-07-31 00:00:00\n", + "Selling DXCM on 2014-07-31 00:00:00\n", + "Selling SWKS on 2014-07-31 00:00:00\n", + "Selling DHI on 2014-07-31 00:00:00\n", + "Selling PANW on 2014-07-31 00:00:00\n", + "Selling BLDR on 2014-07-31 00:00:00\n", + "Selling ULTA on 2014-07-31 00:00:00\n", + "Selling INCY on 2014-07-31 00:00:00\n", + "Selling PODD on 2014-07-31 00:00:00\n", + "Selling KMX on 2014-07-31 00:00:00\n", + "Selling NOW on 2014-07-31 00:00:00\n", + "Selling WDAY on 2014-07-31 00:00:00\n", + "Selling TSLA on 2014-07-31 00:00:00\n", + "Selling LULU on 2014-07-31 00:00:00\n", + "Selling WMB on 2014-07-31 00:00:00\n", + "Selling ISRG on 2014-07-31 00:00:00\n", + "Selling SMCI on 2014-07-31 00:00:00\n", + "Selling AMD on 2014-07-31 00:00:00\n", + "Selling UAL on 2014-07-31 00:00:00\n", + "Selling PAYC on 2014-07-31 00:00:00\n", + "Selling IRM on 2014-07-31 00:00:00\n", + "Selling EA on 2014-07-31 00:00:00\n", + "Selling TRGP on 2014-07-31 00:00:00\n", + "Selling AXON on 2014-07-31 00:00:00\n", + "Selling ENPH on 2014-07-31 00:00:00\n", + "Selling VRTX on 2014-07-31 00:00:00\n", + "Buying MMM on 2014-08-31 00:00:00\n", + "Buying AMCR on 2014-08-31 00:00:00\n", + "Buying BDX on 2014-08-31 00:00:00\n", + "Buying ADP on 2014-08-31 00:00:00\n", + "Buying HSIC on 2014-08-31 00:00:00\n", + "Buying CB on 2014-08-31 00:00:00\n", + "Buying FI on 2014-08-31 00:00:00\n", + "Buying IEX on 2014-08-31 00:00:00\n", + "Buying ROL on 2014-08-31 00:00:00\n", + "Buying WRB on 2014-08-31 00:00:00\n", + "Buying MCD on 2014-08-31 00:00:00\n", + "Buying CINF on 2014-08-31 00:00:00\n", + "Buying ACN on 2014-08-31 00:00:00\n", + "Buying ITW on 2014-08-31 00:00:00\n", + "Buying AXP on 2014-08-31 00:00:00\n", + "Buying L on 2014-08-31 00:00:00\n", + "Buying FIS on 2014-08-31 00:00:00\n", + "Buying AIG on 2014-08-31 00:00:00\n", + "Buying UNP on 2014-08-31 00:00:00\n", + "Buying GL on 2014-08-31 00:00:00\n", + "Buying AMP on 2014-08-31 00:00:00\n", + "Buying LIN on 2014-08-31 00:00:00\n", + "Buying HON on 2014-08-31 00:00:00\n", + "Buying CSX on 2014-08-31 00:00:00\n", + "Buying SPG on 2014-08-31 00:00:00\n", + "Buying WFC on 2014-08-31 00:00:00\n", + "Buying APH on 2014-08-31 00:00:00\n", + "Buying WMT on 2014-08-31 00:00:00\n", + "Buying CVS on 2014-08-31 00:00:00\n", + "Buying PSA on 2014-08-31 00:00:00\n", + "Buying ECL on 2014-08-31 00:00:00\n", + "Buying PLD on 2014-08-31 00:00:00\n", + "Buying RSG on 2014-08-31 00:00:00\n", + "Buying BLK on 2014-08-31 00:00:00\n", + "Buying SJM on 2014-08-31 00:00:00\n", + "Buying ARE on 2014-08-31 00:00:00\n", + "Buying COST on 2014-08-31 00:00:00\n", + "Buying DOV on 2014-08-31 00:00:00\n", + "Buying VZ on 2014-08-31 00:00:00\n", + "Buying BAX on 2014-08-31 00:00:00\n", + "Buying ACGL on 2014-08-31 00:00:00\n", + "Buying PFG on 2014-08-31 00:00:00\n", + "Buying JKHY on 2014-08-31 00:00:00\n", + "Buying NTRS on 2014-08-31 00:00:00\n", + "Buying MMC on 2014-08-31 00:00:00\n", + "Buying ESS on 2014-08-31 00:00:00\n", + "Selling EPAM on 2014-08-31 00:00:00\n", + "Selling CSGP on 2014-08-31 00:00:00\n", + "Selling JNPR on 2014-08-31 00:00:00\n", + "Selling CRM on 2014-08-31 00:00:00\n", + "Selling NFLX on 2014-08-31 00:00:00\n", + "Selling EW on 2014-08-31 00:00:00\n", + "Selling VLO on 2014-08-31 00:00:00\n", + "Selling CMG on 2014-08-31 00:00:00\n", + "Selling INCY on 2014-08-31 00:00:00\n", + "Selling TMUS on 2014-08-31 00:00:00\n", + "Selling HCA on 2014-08-31 00:00:00\n", + "Selling ZBRA on 2014-08-31 00:00:00\n", + "Selling REGN on 2014-08-31 00:00:00\n", + "Selling BIIB on 2014-08-31 00:00:00\n", + "Selling VRSN on 2014-08-31 00:00:00\n", + "Selling MU on 2014-08-31 00:00:00\n", + "Selling TYL on 2014-08-31 00:00:00\n", + "Selling BBY on 2014-08-31 00:00:00\n", + "Selling DHI on 2014-08-31 00:00:00\n", + "Selling STLD on 2014-08-31 00:00:00\n", + "Selling CTSH on 2014-08-31 00:00:00\n", + "Selling WDAY on 2014-08-31 00:00:00\n", + "Selling PODD on 2014-08-31 00:00:00\n", + "Selling TPR on 2014-08-31 00:00:00\n", + "Selling SWKS on 2014-08-31 00:00:00\n", + "Selling NOW on 2014-08-31 00:00:00\n", + "Selling TSLA on 2014-08-31 00:00:00\n", + "Selling ULTA on 2014-08-31 00:00:00\n", + "Selling DG on 2014-08-31 00:00:00\n", + "Selling WBA on 2014-08-31 00:00:00\n", + "Selling BLDR on 2014-08-31 00:00:00\n", + "Selling KMX on 2014-08-31 00:00:00\n", + "Selling WMB on 2014-08-31 00:00:00\n", + "Selling LULU on 2014-08-31 00:00:00\n", + "Selling ISRG on 2014-08-31 00:00:00\n", + "Selling SMCI on 2014-08-31 00:00:00\n", + "Selling DXCM on 2014-08-31 00:00:00\n", + "Selling IRM on 2014-08-31 00:00:00\n", + "Selling AMD on 2014-08-31 00:00:00\n", + "Selling UAL on 2014-08-31 00:00:00\n", + "Selling PAYC on 2014-08-31 00:00:00\n", + "Selling TRGP on 2014-08-31 00:00:00\n", + "Selling AXON on 2014-08-31 00:00:00\n", + "Selling ENPH on 2014-08-31 00:00:00\n", + "Selling MNST on 2014-08-31 00:00:00\n", + "Selling VRTX on 2014-08-31 00:00:00\n", + "Buying MMM on 2014-09-30 00:00:00\n", + "Buying ADP on 2014-09-30 00:00:00\n", + "Buying FI on 2014-09-30 00:00:00\n", + "Buying HSIC on 2014-09-30 00:00:00\n", + "Buying ECL on 2014-09-30 00:00:00\n", + "Buying L on 2014-09-30 00:00:00\n", + "Buying WFC on 2014-09-30 00:00:00\n", + "Buying BDX on 2014-09-30 00:00:00\n", + "Buying AXP on 2014-09-30 00:00:00\n", + "Buying ITW on 2014-09-30 00:00:00\n", + "Buying CB on 2014-09-30 00:00:00\n", + "Buying RSG on 2014-09-30 00:00:00\n", + "Buying IEX on 2014-09-30 00:00:00\n", + "Buying WRB on 2014-09-30 00:00:00\n", + "Buying LLY on 2014-09-30 00:00:00\n", + "Buying UNP on 2014-09-30 00:00:00\n", + "Buying BR on 2014-09-30 00:00:00\n", + "Buying GL on 2014-09-30 00:00:00\n", + "Buying ROL on 2014-09-30 00:00:00\n", + "Buying FIS on 2014-09-30 00:00:00\n", + "Buying MCO on 2014-09-30 00:00:00\n", + "Buying CINF on 2014-09-30 00:00:00\n", + "Buying IBM on 2014-09-30 00:00:00\n", + "Buying HON on 2014-09-30 00:00:00\n", + "Buying NTRS on 2014-09-30 00:00:00\n", + "Buying MKC on 2014-09-30 00:00:00\n", + "Buying PPG on 2014-09-30 00:00:00\n", + "Buying JNJ on 2014-09-30 00:00:00\n", + "Buying COF on 2014-09-30 00:00:00\n", + "Buying ACN on 2014-09-30 00:00:00\n", + "Buying SYK on 2014-09-30 00:00:00\n", + "Buying SJM on 2014-09-30 00:00:00\n", + "Buying BEN on 2014-09-30 00:00:00\n", + "Buying AIG on 2014-09-30 00:00:00\n", + "Buying CSX on 2014-09-30 00:00:00\n", + "Buying BRK-B on 2014-09-30 00:00:00\n", + "Buying LIN on 2014-09-30 00:00:00\n", + "Buying MMC on 2014-09-30 00:00:00\n", + "Buying ACGL on 2014-09-30 00:00:00\n", + "Buying TDY on 2014-09-30 00:00:00\n", + "Buying MAR on 2014-09-30 00:00:00\n", + "Buying CVS on 2014-09-30 00:00:00\n", + "Buying PFG on 2014-09-30 00:00:00\n", + "Buying JKHY on 2014-09-30 00:00:00\n", + "Buying MTB on 2014-09-30 00:00:00\n", + "Buying EMR on 2014-09-30 00:00:00\n", + "Selling WBD on 2014-09-30 00:00:00\n", + "Selling NKE on 2014-09-30 00:00:00\n", + "Selling MKTX on 2014-09-30 00:00:00\n", + "Selling JNPR on 2014-09-30 00:00:00\n", + "Selling CMG on 2014-09-30 00:00:00\n", + "Selling AMZN on 2014-09-30 00:00:00\n", + "Selling HCA on 2014-09-30 00:00:00\n", + "Selling NCLH on 2014-09-30 00:00:00\n", + "Selling DG on 2014-09-30 00:00:00\n", + "Selling UHS on 2014-09-30 00:00:00\n", + "Selling VRTX on 2014-09-30 00:00:00\n", + "Selling EPAM on 2014-09-30 00:00:00\n", + "Selling FANG on 2014-09-30 00:00:00\n", + "Selling VRSN on 2014-09-30 00:00:00\n", + "Selling TYL on 2014-09-30 00:00:00\n", + "Selling CSGP on 2014-09-30 00:00:00\n", + "Selling LDOS on 2014-09-30 00:00:00\n", + "Selling CTSH on 2014-09-30 00:00:00\n", + "Selling MU on 2014-09-30 00:00:00\n", + "Selling INCY on 2014-09-30 00:00:00\n", + "Selling BIIB on 2014-09-30 00:00:00\n", + "Selling BBY on 2014-09-30 00:00:00\n", + "Selling DHI on 2014-09-30 00:00:00\n", + "Selling TMUS on 2014-09-30 00:00:00\n", + "Selling SWKS on 2014-09-30 00:00:00\n", + "Selling STLD on 2014-09-30 00:00:00\n", + "Selling PANW on 2014-09-30 00:00:00\n", + "Selling NOW on 2014-09-30 00:00:00\n", + "Selling BLDR on 2014-09-30 00:00:00\n", + "Selling TSLA 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 WBA on 2014-09-30 00:00:00\n", + "Selling TPL on 2014-09-30 00:00:00\n", + "Selling LULU on 2014-09-30 00:00:00\n", + "Selling ISRG on 2014-09-30 00:00:00\n", + "Selling UAL on 2014-09-30 00:00:00\n", + "Selling DXCM on 2014-09-30 00:00:00\n", + "Selling ULTA on 2014-09-30 00:00:00\n", + "Selling AMD on 2014-09-30 00:00:00\n", + "Selling SMCI on 2014-09-30 00:00:00\n", + "Selling ANET on 2014-09-30 00:00:00\n", + "Selling PAYC on 2014-09-30 00:00:00\n", + "Selling ENPH on 2014-09-30 00:00:00\n", + "Selling AXON on 2014-09-30 00:00:00\n", + "Selling MNST on 2014-09-30 00:00:00\n", + "Buying HSIC on 2014-10-31 00:00:00\n", + "Buying L on 2014-10-31 00:00:00\n", + "Buying CINF on 2014-10-31 00:00:00\n", + "Buying FI on 2014-10-31 00:00:00\n", + "Buying MMC on 2014-10-31 00:00:00\n", + "Buying FIS on 2014-10-31 00:00:00\n", + "Buying WM on 2014-10-31 00:00:00\n", + "Buying BR on 2014-10-31 00:00:00\n", + "Buying AXP on 2014-10-31 00:00:00\n", + "Buying TROW on 2014-10-31 00:00:00\n", + "Buying CB on 2014-10-31 00:00:00\n", + "Buying VZ on 2014-10-31 00:00:00\n", + "Buying CHD on 2014-10-31 00:00:00\n", + "Buying PGR on 2014-10-31 00:00:00\n", + "Buying HIG on 2014-10-31 00:00:00\n", + "Buying GE on 2014-10-31 00:00:00\n", + "Buying USB on 2014-10-31 00:00:00\n", + "Buying ROP on 2014-10-31 00:00:00\n", + "Buying ALL on 2014-10-31 00:00:00\n", + "Buying BRK-B on 2014-10-31 00:00:00\n", + "Buying TRV on 2014-10-31 00:00:00\n", + "Buying SJM on 2014-10-31 00:00:00\n", + "Buying TFX on 2014-10-31 00:00:00\n", + "Buying DVA on 2014-10-31 00:00:00\n", + "Buying CL on 2014-10-31 00:00:00\n", + "Buying WRB on 2014-10-31 00:00:00\n", + "Buying T on 2014-10-31 00:00:00\n", + "Buying UPS on 2014-10-31 00:00:00\n", + "Buying XOM on 2014-10-31 00:00:00\n", + "Buying ACGL on 2014-10-31 00:00:00\n", + "Buying WFC on 2014-10-31 00:00:00\n", + "Buying PG on 2014-10-31 00:00:00\n", + "Buying ADP on 2014-10-31 00:00:00\n", + "Buying EL on 2014-10-31 00:00:00\n", + "Buying YUM on 2014-10-31 00:00:00\n", + "Buying TDG on 2014-10-31 00:00:00\n", + "Buying MTD on 2014-10-31 00:00:00\n", + "Buying BRO on 2014-10-31 00:00:00\n", + "Buying DIS on 2014-10-31 00:00:00\n", + "Buying SYK on 2014-10-31 00:00:00\n", + "Buying PM on 2014-10-31 00:00:00\n", + "Buying BEN on 2014-10-31 00:00:00\n", + "Buying GPC on 2014-10-31 00:00:00\n", + "Buying PFG on 2014-10-31 00:00:00\n", + "Buying ACN on 2014-10-31 00:00:00\n", + "Buying ROL on 2014-10-31 00:00:00\n", + "Selling EQT on 2014-10-31 00:00:00\n", + "Selling KMX on 2014-10-31 00:00:00\n", + "Selling DXCM on 2014-10-31 00:00:00\n", + "Selling EOG on 2014-10-31 00:00:00\n", + "Selling KMI on 2014-10-31 00:00:00\n", + "Selling VRTX on 2014-10-31 00:00:00\n", + "Selling TTWO on 2014-10-31 00:00:00\n", + "Selling AMD on 2014-10-31 00:00:00\n", + "Selling MCHP on 2014-10-31 00:00:00\n", + "Selling EPAM on 2014-10-31 00:00:00\n", + "Selling JNPR on 2014-10-31 00:00:00\n", + "Selling DAL on 2014-10-31 00:00:00\n", + "Selling FSLR on 2014-10-31 00:00:00\n", + "Selling TRGP on 2014-10-31 00:00:00\n", + "Selling LDOS on 2014-10-31 00:00:00\n", + "Selling NCLH on 2014-10-31 00:00:00\n", + "Selling NEM on 2014-10-31 00:00:00\n", + "Selling TRMB on 2014-10-31 00:00:00\n", + "Selling BLDR on 2014-10-31 00:00:00\n", + "Selling WDAY on 2014-10-31 00:00:00\n", + "Selling BBY on 2014-10-31 00:00:00\n", + "Selling DECK on 2014-10-31 00:00:00\n", + "Selling TYL on 2014-10-31 00:00:00\n", + "Selling AVGO on 2014-10-31 00:00:00\n", + "Selling MU on 2014-10-31 00:00:00\n", + "Selling SWKS on 2014-10-31 00:00:00\n", + "Selling TSCO on 2014-10-31 00:00:00\n", + "Selling PODD on 2014-10-31 00:00:00\n", + "Selling NXPI on 2014-10-31 00:00:00\n", + "Selling NOW on 2014-10-31 00:00:00\n", + "Selling UAL on 2014-10-31 00:00:00\n", + "Selling FANG on 2014-10-31 00:00:00\n", + "Selling LULU on 2014-10-31 00:00:00\n", + "Selling MPWR on 2014-10-31 00:00:00\n", + "Selling PANW on 2014-10-31 00:00:00\n", + "Selling INCY on 2014-10-31 00:00:00\n", + "Selling TSLA on 2014-10-31 00:00:00\n", + "Selling ULTA on 2014-10-31 00:00:00\n", + "Selling NFLX on 2014-10-31 00:00:00\n", + "Selling SMCI on 2014-10-31 00:00:00\n", + "Selling ANET on 2014-10-31 00:00:00\n", + "Selling PAYC on 2014-10-31 00:00:00\n", + "Selling AXON on 2014-10-31 00:00:00\n", + "Selling TPL on 2014-10-31 00:00:00\n", + "Selling MNST on 2014-10-31 00:00:00\n", + "Selling ENPH on 2014-10-31 00:00:00\n", + "Buying WM on 2014-11-30 00:00:00\n", + "Buying BR on 2014-11-30 00:00:00\n", + "Buying CINF on 2014-11-30 00:00:00\n", + "Buying FIS on 2014-11-30 00:00:00\n", + "Buying BRK-B on 2014-11-30 00:00:00\n", + "Buying MMC on 2014-11-30 00:00:00\n", + "Buying HIG on 2014-11-30 00:00:00\n", + "Buying FI on 2014-11-30 00:00:00\n", + "Buying L on 2014-11-30 00:00:00\n", + "Buying CB on 2014-11-30 00:00:00\n", + "Buying USB on 2014-11-30 00:00:00\n", + "Buying PGR on 2014-11-30 00:00:00\n", + "Buying TROW on 2014-11-30 00:00:00\n", + "Buying ALL on 2014-11-30 00:00:00\n", + "Buying GE on 2014-11-30 00:00:00\n", + "Buying WRB on 2014-11-30 00:00:00\n", + "Buying TRV on 2014-11-30 00:00:00\n", + "Buying TFX on 2014-11-30 00:00:00\n", + "Buying AXP on 2014-11-30 00:00:00\n", + "Buying WFC on 2014-11-30 00:00:00\n", + "Buying ROP on 2014-11-30 00:00:00\n", + "Buying ACGL on 2014-11-30 00:00:00\n", + "Buying BRO on 2014-11-30 00:00:00\n", + "Buying CL on 2014-11-30 00:00:00\n", + "Buying PFG on 2014-11-30 00:00:00\n", + "Buying AIZ on 2014-11-30 00:00:00\n", + "Buying AJG on 2014-11-30 00:00:00\n", + "Buying GPC on 2014-11-30 00:00:00\n", + "Buying EG on 2014-11-30 00:00:00\n", + "Buying MCD on 2014-11-30 00:00:00\n", + "Buying BEN on 2014-11-30 00:00:00\n", + "Buying AFL on 2014-11-30 00:00:00\n", + "Buying PEP on 2014-11-30 00:00:00\n", + "Buying IVZ on 2014-11-30 00:00:00\n", + "Buying VZ on 2014-11-30 00:00:00\n", + "Buying AIG on 2014-11-30 00:00:00\n", + "Buying VRSK on 2014-11-30 00:00:00\n", + "Buying PAYX on 2014-11-30 00:00:00\n", + "Buying ITW on 2014-11-30 00:00:00\n", + "Buying T on 2014-11-30 00:00:00\n", + "Buying AMP on 2014-11-30 00:00:00\n", + "Buying MET on 2014-11-30 00:00:00\n", + "Buying SYK on 2014-11-30 00:00:00\n", + "Buying HON on 2014-11-30 00:00:00\n", + "Buying YUM on 2014-11-30 00:00:00\n", + "Buying ACN on 2014-11-30 00:00:00\n", + "Selling LUV on 2014-11-30 00:00:00\n", + "Selling AVGO on 2014-11-30 00:00:00\n", + "Selling CTRA on 2014-11-30 00:00:00\n", + "Selling APA on 2014-11-30 00:00:00\n", + "Selling DAL on 2014-11-30 00:00:00\n", + "Selling AMD on 2014-11-30 00:00:00\n", + "Selling WDAY on 2014-11-30 00:00:00\n", + "Selling VRTX on 2014-11-30 00:00:00\n", + "Selling EQT on 2014-11-30 00:00:00\n", + "Selling LDOS on 2014-11-30 00:00:00\n", + "Selling FICO on 2014-11-30 00:00:00\n", + "Selling MU on 2014-11-30 00:00:00\n", + "Selling TRMB on 2014-11-30 00:00:00\n", + "Selling TYL on 2014-11-30 00:00:00\n", + "Selling JNPR on 2014-11-30 00:00:00\n", + "Selling DECK on 2014-11-30 00:00:00\n", + "Selling NOW on 2014-11-30 00:00:00\n", + "Selling TSCO on 2014-11-30 00:00:00\n", + "Selling BLDR on 2014-11-30 00:00:00\n", + "Selling PODD on 2014-11-30 00:00:00\n", + "Selling DVN on 2014-11-30 00:00:00\n", + "Selling NXPI on 2014-11-30 00:00:00\n", + "Selling SWKS on 2014-11-30 00:00:00\n", + "Selling EOG on 2014-11-30 00:00:00\n", + "Selling TRGP on 2014-11-30 00:00:00\n", + "Selling LYB on 2014-11-30 00:00:00\n", + "Selling MPWR on 2014-11-30 00:00:00\n", + "Selling INCY on 2014-11-30 00:00:00\n", + "Selling FSLR on 2014-11-30 00:00:00\n", + "Selling LULU on 2014-11-30 00:00:00\n", + "Selling PANW on 2014-11-30 00:00:00\n", + "Selling DXCM on 2014-11-30 00:00:00\n", + "Selling UAL on 2014-11-30 00:00:00\n", + "Selling TSLA on 2014-11-30 00:00:00\n", + "Selling HAL on 2014-11-30 00:00:00\n", + "Selling SMCI on 2014-11-30 00:00:00\n", + "Selling NEM on 2014-11-30 00:00:00\n", + "Selling ULTA on 2014-11-30 00:00:00\n", + "Selling NFLX on 2014-11-30 00:00:00\n", + "Selling AXON on 2014-11-30 00:00:00\n", + "Selling BKR on 2014-11-30 00:00:00\n", + "Selling FANG on 2014-11-30 00:00:00\n", + "Selling ANET on 2014-11-30 00:00:00\n", + "Selling TPL on 2014-11-30 00:00:00\n", + "Selling PAYC on 2014-11-30 00:00:00\n", + "Selling ENPH on 2014-11-30 00:00:00\n", + "Buying TFX on 2014-12-31 00:00:00\n", + "Buying BR on 2014-12-31 00:00:00\n", + "Buying CINF on 2014-12-31 00:00:00\n", + "Buying MMC on 2014-12-31 00:00:00\n", + "Buying FIS on 2014-12-31 00:00:00\n", + "Buying USB on 2014-12-31 00:00:00\n", + "Buying BRK-B on 2014-12-31 00:00:00\n", + "Buying TRV on 2014-12-31 00:00:00\n", + "Buying TROW on 2014-12-31 00:00:00\n", + "Buying CB on 2014-12-31 00:00:00\n", + "Buying ALL on 2014-12-31 00:00:00\n", + "Buying WM on 2014-12-31 00:00:00\n", + "Buying FI on 2014-12-31 00:00:00\n", + "Buying PGR on 2014-12-31 00:00:00\n", + "Buying AJG on 2014-12-31 00:00:00\n", + "Buying L on 2014-12-31 00:00:00\n", + "Buying AFL on 2014-12-31 00:00:00\n", + "Buying HIG on 2014-12-31 00:00:00\n", + "Buying CL on 2014-12-31 00:00:00\n", + "Buying GPC on 2014-12-31 00:00:00\n", + "Buying AIZ on 2014-12-31 00:00:00\n", + "Buying GE on 2014-12-31 00:00:00\n", + "Buying AIG on 2014-12-31 00:00:00\n", + "Buying WFC on 2014-12-31 00:00:00\n", + "Buying ACGL on 2014-12-31 00:00:00\n", + "Buying DHR on 2014-12-31 00:00:00\n", + "Buying JKHY on 2014-12-31 00:00:00\n", + "Buying SYK on 2014-12-31 00:00:00\n", + "Buying VRSK on 2014-12-31 00:00:00\n", + "Buying MO on 2014-12-31 00:00:00\n", + "Buying ANSS on 2014-12-31 00:00:00\n", + "Buying ITW on 2014-12-31 00:00:00\n", + "Buying RJF on 2014-12-31 00:00:00\n", + "Buying MKC on 2014-12-31 00:00:00\n", + "Buying PAYX on 2014-12-31 00:00:00\n", + "Buying OMC on 2014-12-31 00:00:00\n", + "Buying GS on 2014-12-31 00:00:00\n", + "Buying BRO on 2014-12-31 00:00:00\n", + "Buying EG on 2014-12-31 00:00:00\n", + "Buying ADP on 2014-12-31 00:00:00\n", + "Buying PLD on 2014-12-31 00:00:00\n", + "Buying WRB on 2014-12-31 00:00:00\n", + "Buying TDG on 2014-12-31 00:00:00\n", + "Buying IVZ on 2014-12-31 00:00:00\n", + "Buying TT on 2014-12-31 00:00:00\n", + "Buying ROP on 2014-12-31 00:00:00\n", + "Buying PG on 2014-12-31 00:00:00\n", + "Selling EPAM on 2014-12-31 00:00:00\n", + "Selling URI on 2014-12-31 00:00:00\n", + "Selling PSX on 2014-12-31 00:00:00\n", + "Selling RCL on 2014-12-31 00:00:00\n", + "Selling REGN on 2014-12-31 00:00:00\n", + "Selling LUV on 2014-12-31 00:00:00\n", + "Selling HES on 2014-12-31 00:00:00\n", + "Selling TRMB on 2014-12-31 00:00:00\n", + "Selling TTWO on 2014-12-31 00:00:00\n", + "Selling BLDR on 2014-12-31 00:00:00\n", + "Selling NOW on 2014-12-31 00:00:00\n", + "Selling DAL on 2014-12-31 00:00:00\n", + "Selling JNPR on 2014-12-31 00:00:00\n", + "Selling AMD on 2014-12-31 00:00:00\n", + "Selling TYL on 2014-12-31 00:00:00\n", + "Selling PANW on 2014-12-31 00:00:00\n", + "Selling CTRA on 2014-12-31 00:00:00\n", + "Selling TSCO on 2014-12-31 00:00:00\n", + "Selling FCX on 2014-12-31 00:00:00\n", + "Selling LULU on 2014-12-31 00:00:00\n", + "Selling NXPI on 2014-12-31 00:00:00\n", + "Selling SMCI on 2014-12-31 00:00:00\n", + "Selling SWKS on 2014-12-31 00:00:00\n", + "Selling AVGO on 2014-12-31 00:00:00\n", + "Selling TSLA on 2014-12-31 00:00:00\n", + "Selling EQT on 2014-12-31 00:00:00\n", + "Selling APA on 2014-12-31 00:00:00\n", + "Selling MPWR on 2014-12-31 00:00:00\n", + "Selling EOG on 2014-12-31 00:00:00\n", + "Selling LYB on 2014-12-31 00:00:00\n", + "Selling FSLR on 2014-12-31 00:00:00\n", + "Selling DVN on 2014-12-31 00:00:00\n", + "Selling DXCM on 2014-12-31 00:00:00\n", + "Selling GILD on 2014-12-31 00:00:00\n", + "Selling INCY on 2014-12-31 00:00:00\n", + "Selling UAL on 2014-12-31 00:00:00\n", + "Selling HAL on 2014-12-31 00:00:00\n", + "Selling NFLX on 2014-12-31 00:00:00\n", + "Selling AXON on 2014-12-31 00:00:00\n", + "Selling BKR on 2014-12-31 00:00:00\n", + "Selling NEM on 2014-12-31 00:00:00\n", + "Selling TRGP on 2014-12-31 00:00:00\n", + "Selling ANET on 2014-12-31 00:00:00\n", + "Selling FANG on 2014-12-31 00:00:00\n", + "Selling PAYC on 2014-12-31 00:00:00\n", + "Selling TPL on 2014-12-31 00:00:00\n", + "Selling ENPH on 2014-12-31 00:00:00\n", + "Buying ITW on 2015-01-31 00:00:00\n", + "Buying MMC on 2015-01-31 00:00:00\n", + "Buying GL on 2015-01-31 00:00:00\n", + "Buying WFC on 2015-01-31 00:00:00\n", + "Buying BRK-B on 2015-01-31 00:00:00\n", + "Buying ALL on 2015-01-31 00:00:00\n", + "Buying FIS on 2015-01-31 00:00:00\n", + "Buying AFL on 2015-01-31 00:00:00\n", + "Buying DHR on 2015-01-31 00:00:00\n", + "Buying AIZ on 2015-01-31 00:00:00\n", + "Buying TFX on 2015-01-31 00:00:00\n", + "Buying OMC on 2015-01-31 00:00:00\n", + "Buying JKHY on 2015-01-31 00:00:00\n", + "Buying SNA on 2015-01-31 00:00:00\n", + "Buying EFX on 2015-01-31 00:00:00\n", + "Buying AJG on 2015-01-31 00:00:00\n", + "Buying BR on 2015-01-31 00:00:00\n", + "Buying IEX on 2015-01-31 00:00:00\n", + "Buying VRSK on 2015-01-31 00:00:00\n", + "Buying WM on 2015-01-31 00:00:00\n", + "Buying CINF on 2015-01-31 00:00:00\n", + "Buying ACGL on 2015-01-31 00:00:00\n", + "Buying FI on 2015-01-31 00:00:00\n", + "Buying L on 2015-01-31 00:00:00\n", + "Buying BRO on 2015-01-31 00:00:00\n", + "Buying USB on 2015-01-31 00:00:00\n", + "Buying MMM on 2015-01-31 00:00:00\n", + "Buying CB on 2015-01-31 00:00:00\n", + "Buying HIG on 2015-01-31 00:00:00\n", + "Buying TROW on 2015-01-31 00:00:00\n", + "Buying TRV on 2015-01-31 00:00:00\n", + "Buying PNC on 2015-01-31 00:00:00\n", + "Buying BLK on 2015-01-31 00:00:00\n", + "Buying AIG on 2015-01-31 00:00:00\n", + "Buying PEP on 2015-01-31 00:00:00\n", + "Buying AMP on 2015-01-31 00:00:00\n", + "Buying APH on 2015-01-31 00:00:00\n", + "Buying LIN on 2015-01-31 00:00:00\n", + "Buying RSG on 2015-01-31 00:00:00\n", + "Buying FDS on 2015-01-31 00:00:00\n", + "Buying LII on 2015-01-31 00:00:00\n", + "Buying GE on 2015-01-31 00:00:00\n", + "Buying ADP on 2015-01-31 00:00:00\n", + "Buying GS on 2015-01-31 00:00:00\n", + "Buying SHW on 2015-01-31 00:00:00\n", + "Buying TXN on 2015-01-31 00:00:00\n", + "Buying HST on 2015-01-31 00:00:00\n", + "Selling VLO on 2015-01-31 00:00:00\n", + "Selling MGM on 2015-01-31 00:00:00\n", + "Selling QCOM on 2015-01-31 00:00:00\n", + "Selling LUV on 2015-01-31 00:00:00\n", + "Selling CTRA on 2015-01-31 00:00:00\n", + "Selling STLD on 2015-01-31 00:00:00\n", + "Selling NRG on 2015-01-31 00:00:00\n", + "Selling EA on 2015-01-31 00:00:00\n", + "Selling MPC on 2015-01-31 00:00:00\n", + "Selling EQT on 2015-01-31 00:00:00\n", + "Selling DAL on 2015-01-31 00:00:00\n", + "Selling URI on 2015-01-31 00:00:00\n", + "Selling BLDR on 2015-01-31 00:00:00\n", + "Selling PSX on 2015-01-31 00:00:00\n", + "Selling EOG on 2015-01-31 00:00:00\n", + "Selling INCY on 2015-01-31 00:00:00\n", + "Selling UAL on 2015-01-31 00:00:00\n", + "Selling LULU on 2015-01-31 00:00:00\n", + "Selling HES on 2015-01-31 00:00:00\n", + "Selling FICO on 2015-01-31 00:00:00\n", + "Selling OKE on 2015-01-31 00:00:00\n", + "Selling LYB on 2015-01-31 00:00:00\n", + "Selling AMZN on 2015-01-31 00:00:00\n", + "Selling ALB on 2015-01-31 00:00:00\n", + "Selling FSLR on 2015-01-31 00:00:00\n", + "Selling SMCI on 2015-01-31 00:00:00\n", + "Selling BBY on 2015-01-31 00:00:00\n", + "Selling AMD on 2015-01-31 00:00:00\n", + "Selling BIIB on 2015-01-31 00:00:00\n", + "Selling DVN on 2015-01-31 00:00:00\n", + "Selling GILD on 2015-01-31 00:00:00\n", + "Selling HAL on 2015-01-31 00:00:00\n", + "Selling APA on 2015-01-31 00:00:00\n", + "Selling FCX on 2015-01-31 00:00:00\n", + "Selling ANET on 2015-01-31 00:00:00\n", + "Selling AXON on 2015-01-31 00:00:00\n", + "Selling NFLX on 2015-01-31 00:00:00\n", + "Selling DXCM on 2015-01-31 00:00:00\n", + "Selling BKR on 2015-01-31 00:00:00\n", + "Selling DECK on 2015-01-31 00:00:00\n", + "Selling TRGP on 2015-01-31 00:00:00\n", + "Selling PODD on 2015-01-31 00:00:00\n", + "Selling NEM on 2015-01-31 00:00:00\n", + "Selling TPL on 2015-01-31 00:00:00\n", + "Selling FANG on 2015-01-31 00:00:00\n", + "Selling PAYC on 2015-01-31 00:00:00\n", + "Selling ENPH on 2015-01-31 00:00:00\n", + "Buying ITW on 2015-02-28 00:00:00\n", + "Buying MMM on 2015-02-28 00:00:00\n", + "Buying MMC on 2015-02-28 00:00:00\n", + "Buying DHR on 2015-02-28 00:00:00\n", + "Buying BRK-B on 2015-02-28 00:00:00\n", + "Buying FIS on 2015-02-28 00:00:00\n", + "Buying APH on 2015-02-28 00:00:00\n", + "Buying IEX on 2015-02-28 00:00:00\n", + "Buying CB on 2015-02-28 00:00:00\n", + "Buying FI on 2015-02-28 00:00:00\n", + "Buying JKHY on 2015-02-28 00:00:00\n", + "Buying WFC on 2015-02-28 00:00:00\n", + "Buying CINF on 2015-02-28 00:00:00\n", + "Buying BRO on 2015-02-28 00:00:00\n", + "Buying PPG on 2015-02-28 00:00:00\n", + "Buying TROW on 2015-02-28 00:00:00\n", + "Buying PG on 2015-02-28 00:00:00\n", + "Buying JCI on 2015-02-28 00:00:00\n", + "Buying TXN on 2015-02-28 00:00:00\n", + "Buying BLK on 2015-02-28 00:00:00\n", + "Buying GL on 2015-02-28 00:00:00\n", + "Buying SYK on 2015-02-28 00:00:00\n", + "Buying TRV on 2015-02-28 00:00:00\n", + "Buying HIG on 2015-02-28 00:00:00\n", + "Buying USB on 2015-02-28 00:00:00\n", + "Buying LII on 2015-02-28 00:00:00\n", + "Buying LIN on 2015-02-28 00:00:00\n", + "Buying ANSS on 2015-02-28 00:00:00\n", + "Buying ALL on 2015-02-28 00:00:00\n", + "Buying ACGL on 2015-02-28 00:00:00\n", + "Buying CHD on 2015-02-28 00:00:00\n", + "Buying BR on 2015-02-28 00:00:00\n", + "Buying BAX on 2015-02-28 00:00:00\n", + "Buying GE on 2015-02-28 00:00:00\n", + "Buying ACN on 2015-02-28 00:00:00\n", + "Buying OMC on 2015-02-28 00:00:00\n", + "Buying AFL on 2015-02-28 00:00:00\n", + "Buying HSIC on 2015-02-28 00:00:00\n", + "Buying L on 2015-02-28 00:00:00\n", + "Buying PNC on 2015-02-28 00:00:00\n", + "Buying FDS on 2015-02-28 00:00:00\n", + "Buying AJG on 2015-02-28 00:00:00\n", + "Buying LMT on 2015-02-28 00:00:00\n", + "Buying MKC on 2015-02-28 00:00:00\n", + "Buying ADP on 2015-02-28 00:00:00\n", + "Buying COR on 2015-02-28 00:00:00\n", + "Buying BEN on 2015-02-28 00:00:00\n", + "Selling CRM on 2015-02-28 00:00:00\n", + "Selling DVN on 2015-02-28 00:00:00\n", + "Selling NRG on 2015-02-28 00:00:00\n", + "Selling DAL on 2015-02-28 00:00:00\n", + "Selling URI on 2015-02-28 00:00:00\n", + "Selling EQT on 2015-02-28 00:00:00\n", + "Selling CTRA on 2015-02-28 00:00:00\n", + "Selling MGM on 2015-02-28 00:00:00\n", + "Selling EA on 2015-02-28 00:00:00\n", + "Selling BSX on 2015-02-28 00:00:00\n", + "Selling ON on 2015-02-28 00:00:00\n", + "Selling LULU on 2015-02-28 00:00:00\n", + "Selling DXCM on 2015-02-28 00:00:00\n", + "Selling WYNN on 2015-02-28 00:00:00\n", + "Selling STLD on 2015-02-28 00:00:00\n", + "Selling MLM on 2015-02-28 00:00:00\n", + "Selling MNST on 2015-02-28 00:00:00\n", + "Selling APA on 2015-02-28 00:00:00\n", + "Selling AMZN on 2015-02-28 00:00:00\n", + "Selling BLDR on 2015-02-28 00:00:00\n", + "Selling BBY on 2015-02-28 00:00:00\n", + "Selling OKE on 2015-02-28 00:00:00\n", + "Selling UAL on 2015-02-28 00:00:00\n", + "Selling FSLR on 2015-02-28 00:00:00\n", + "Selling CZR on 2015-02-28 00:00:00\n", + "Selling BIIB on 2015-02-28 00:00:00\n", + "Selling ALB on 2015-02-28 00:00:00\n", + "Selling RL on 2015-02-28 00:00:00\n", + "Selling INCY on 2015-02-28 00:00:00\n", + "Selling AVGO on 2015-02-28 00:00:00\n", + "Selling EXPE on 2015-02-28 00:00:00\n", + "Selling SMCI on 2015-02-28 00:00:00\n", + "Selling EPAM on 2015-02-28 00:00:00\n", + "Selling NFLX on 2015-02-28 00:00:00\n", + "Selling ANET on 2015-02-28 00:00:00\n", + "Selling GILD on 2015-02-28 00:00:00\n", + "Selling TRGP on 2015-02-28 00:00:00\n", + "Selling FANG on 2015-02-28 00:00:00\n", + "Selling NEM on 2015-02-28 00:00:00\n", + "Selling DECK on 2015-02-28 00:00:00\n", + "Selling FCX on 2015-02-28 00:00:00\n", + "Selling PODD on 2015-02-28 00:00:00\n", + "Selling PAYC on 2015-02-28 00:00:00\n", + "Selling AXON on 2015-02-28 00:00:00\n", + "Selling TPL on 2015-02-28 00:00:00\n", + "Selling AMD on 2015-02-28 00:00:00\n", + "Selling ENPH on 2015-02-28 00:00:00\n", + "Buying ITW on 2015-03-31 00:00:00\n", + "Buying MMC on 2015-03-31 00:00:00\n", + "Buying MMM on 2015-03-31 00:00:00\n", + "Buying DHR on 2015-03-31 00:00:00\n", + "Buying BRK-B on 2015-03-31 00:00:00\n", + "Buying CVS on 2015-03-31 00:00:00\n", + "Buying FI on 2015-03-31 00:00:00\n", + "Buying CB on 2015-03-31 00:00:00\n", + "Buying FIS on 2015-03-31 00:00:00\n", + "Buying CINF on 2015-03-31 00:00:00\n", + "Buying PG on 2015-03-31 00:00:00\n", + "Buying CHD on 2015-03-31 00:00:00\n", + "Buying BRO on 2015-03-31 00:00:00\n", + "Buying IEX on 2015-03-31 00:00:00\n", + "Buying GE on 2015-03-31 00:00:00\n", + "Buying LMT on 2015-03-31 00:00:00\n", + "Buying GL on 2015-03-31 00:00:00\n", + "Buying JCI on 2015-03-31 00:00:00\n", + "Buying HIG on 2015-03-31 00:00:00\n", + "Buying TRV on 2015-03-31 00:00:00\n", + "Buying TROW on 2015-03-31 00:00:00\n", + "Buying PPG on 2015-03-31 00:00:00\n", + "Buying BLK on 2015-03-31 00:00:00\n", + "Buying ANSS on 2015-03-31 00:00:00\n", + "Buying OMC on 2015-03-31 00:00:00\n", + "Buying AFL on 2015-03-31 00:00:00\n", + "Buying APH on 2015-03-31 00:00:00\n", + "Buying T on 2015-03-31 00:00:00\n", + "Buying JKHY on 2015-03-31 00:00:00\n", + "Buying SNPS on 2015-03-31 00:00:00\n", + "Buying BEN on 2015-03-31 00:00:00\n", + "Buying ACGL on 2015-03-31 00:00:00\n", + "Buying LII on 2015-03-31 00:00:00\n", + "Buying WFC on 2015-03-31 00:00:00\n", + "Buying BF-B on 2015-03-31 00:00:00\n", + "Buying USB on 2015-03-31 00:00:00\n", + "Buying ALL on 2015-03-31 00:00:00\n", + "Buying LIN on 2015-03-31 00:00:00\n", + "Buying CLX on 2015-03-31 00:00:00\n", + "Buying AJG on 2015-03-31 00:00:00\n", + "Buying HSIC on 2015-03-31 00:00:00\n", + "Buying AMP on 2015-03-31 00:00:00\n", + "Buying PGR on 2015-03-31 00:00:00\n", + "Buying GS on 2015-03-31 00:00:00\n", + "Buying AME on 2015-03-31 00:00:00\n", + "Buying PEP on 2015-03-31 00:00:00\n", + "Buying ADP on 2015-03-31 00:00:00\n", + "Selling DVN on 2015-03-31 00:00:00\n", + "Selling ALGN on 2015-03-31 00:00:00\n", + "Selling VTRS on 2015-03-31 00:00:00\n", + "Selling TSLA on 2015-03-31 00:00:00\n", + "Selling CRM on 2015-03-31 00:00:00\n", + "Selling APA on 2015-03-31 00:00:00\n", + "Selling DXCM on 2015-03-31 00:00:00\n", + "Selling BSX on 2015-03-31 00:00:00\n", + "Selling MU on 2015-03-31 00:00:00\n", + "Selling MLM on 2015-03-31 00:00:00\n", + "Selling NRG on 2015-03-31 00:00:00\n", + "Selling VRTX on 2015-03-31 00:00:00\n", + "Selling WYNN on 2015-03-31 00:00:00\n", + "Selling EA on 2015-03-31 00:00:00\n", + "Selling ON on 2015-03-31 00:00:00\n", + "Selling AMZN on 2015-03-31 00:00:00\n", + "Selling MNST on 2015-03-31 00:00:00\n", + "Selling BBY on 2015-03-31 00:00:00\n", + "Selling STLD on 2015-03-31 00:00:00\n", + "Selling ANET on 2015-03-31 00:00:00\n", + "Selling MGM on 2015-03-31 00:00:00\n", + "Selling BLDR on 2015-03-31 00:00:00\n", + "Selling OKE on 2015-03-31 00:00:00\n", + "Selling EPAM on 2015-03-31 00:00:00\n", + "Selling ALB on 2015-03-31 00:00:00\n", + "Selling UAL on 2015-03-31 00:00:00\n", + "Selling TPL on 2015-03-31 00:00:00\n", + "Selling TRGP on 2015-03-31 00:00:00\n", + "Selling AVGO on 2015-03-31 00:00:00\n", + "Selling FSLR on 2015-03-31 00:00:00\n", + "Selling INCY on 2015-03-31 00:00:00\n", + "Selling BIIB on 2015-03-31 00:00:00\n", + "Selling RL on 2015-03-31 00:00:00\n", + "Selling FANG on 2015-03-31 00:00:00\n", + "Selling EXPE on 2015-03-31 00:00:00\n", + "Selling NEM on 2015-03-31 00:00:00\n", + "Selling SMCI on 2015-03-31 00:00:00\n", + "Selling NFLX on 2015-03-31 00:00:00\n", + "Selling CZR on 2015-03-31 00:00:00\n", + "Selling NXPI on 2015-03-31 00:00:00\n", + "Selling PAYC on 2015-03-31 00:00:00\n", + "Selling DECK on 2015-03-31 00:00:00\n", + "Selling AXON on 2015-03-31 00:00:00\n", + "Selling PODD on 2015-03-31 00:00:00\n", + "Selling FCX on 2015-03-31 00:00:00\n", + "Selling AMD on 2015-03-31 00:00:00\n", + "Selling ENPH on 2015-03-31 00:00:00\n", + "Buying MMC on 2015-04-30 00:00:00\n", + "Buying BRK-B on 2015-04-30 00:00:00\n", + "Buying DHR on 2015-04-30 00:00:00\n", + "Buying HON on 2015-04-30 00:00:00\n", + "Buying PG on 2015-04-30 00:00:00\n", + "Buying CVS on 2015-04-30 00:00:00\n", + "Buying GL on 2015-04-30 00:00:00\n", + "Buying AME on 2015-04-30 00:00:00\n", + "Buying CB on 2015-04-30 00:00:00\n", + "Buying ROP on 2015-04-30 00:00:00\n", + "Buying HUBB on 2015-04-30 00:00:00\n", + "Buying AFL on 2015-04-30 00:00:00\n", + "Buying FI on 2015-04-30 00:00:00\n", + "Buying CHD on 2015-04-30 00:00:00\n", + "Buying UPS on 2015-04-30 00:00:00\n", + "Buying GPC on 2015-04-30 00:00:00\n", + "Buying HSIC on 2015-04-30 00:00:00\n", + "Buying BRO on 2015-04-30 00:00:00\n", + "Buying SWK on 2015-04-30 00:00:00\n", + "Buying RTX on 2015-04-30 00:00:00\n", + "Buying PGR on 2015-04-30 00:00:00\n", + "Buying CL on 2015-04-30 00:00:00\n", + "Buying IEX on 2015-04-30 00:00:00\n", + "Buying TEL on 2015-04-30 00:00:00\n", + "Buying HIG on 2015-04-30 00:00:00\n", + "Buying CLX on 2015-04-30 00:00:00\n", + "Buying ACGL on 2015-04-30 00:00:00\n", + "Buying MMM on 2015-04-30 00:00:00\n", + "Buying BEN on 2015-04-30 00:00:00\n", + "Buying SNPS on 2015-04-30 00:00:00\n", + "Buying ALL on 2015-04-30 00:00:00\n", + "Buying TROW on 2015-04-30 00:00:00\n", + "Buying NOC on 2015-04-30 00:00:00\n", + "Buying RVTY on 2015-04-30 00:00:00\n", + "Buying ITW on 2015-04-30 00:00:00\n", + "Buying PPG on 2015-04-30 00:00:00\n", + "Buying CCI on 2015-04-30 00:00:00\n", + "Buying USB on 2015-04-30 00:00:00\n", + "Buying VZ on 2015-04-30 00:00:00\n", + "Buying PAYX on 2015-04-30 00:00:00\n", + "Buying CINF on 2015-04-30 00:00:00\n", + "Buying LMT on 2015-04-30 00:00:00\n", + "Buying AJG on 2015-04-30 00:00:00\n", + "Buying ADP on 2015-04-30 00:00:00\n", + "Buying TT on 2015-04-30 00:00:00\n", + "Buying NDSN on 2015-04-30 00:00:00\n", + "Buying LIN on 2015-04-30 00:00:00\n", + "Selling EW on 2015-04-30 00:00:00\n", + "Selling FANG 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 PODD on 2015-04-30 00:00:00\n", + "Selling TRGP on 2015-04-30 00:00:00\n", + "Selling RCL on 2015-04-30 00:00:00\n", + "Selling STLD on 2015-04-30 00:00:00\n", + "Selling BSX on 2015-04-30 00:00:00\n", + "Selling MNST on 2015-04-30 00:00:00\n", + "Selling HAS on 2015-04-30 00:00:00\n", + "Selling MOH on 2015-04-30 00:00:00\n", + "Selling TPL on 2015-04-30 00:00:00\n", + "Selling BIIB on 2015-04-30 00:00:00\n", + "Selling AMZN on 2015-04-30 00:00:00\n", + "Selling LKQ on 2015-04-30 00:00:00\n", + "Selling VRTX on 2015-04-30 00:00:00\n", + "Selling NOW on 2015-04-30 00:00:00\n", + "Selling FSLR on 2015-04-30 00:00:00\n", + "Selling NRG on 2015-04-30 00:00:00\n", + "Selling NEM on 2015-04-30 00:00:00\n", + "Selling TSLA on 2015-04-30 00:00:00\n", + "Selling MGM on 2015-04-30 00:00:00\n", + "Selling MLM on 2015-04-30 00:00:00\n", + "Selling EPAM on 2015-04-30 00:00:00\n", + "Selling UAL on 2015-04-30 00:00:00\n", + "Selling ANET on 2015-04-30 00:00:00\n", + "Selling CE on 2015-04-30 00:00:00\n", + "Selling INCY on 2015-04-30 00:00:00\n", + "Selling SMCI on 2015-04-30 00:00:00\n", + "Selling AVGO on 2015-04-30 00:00:00\n", + "Selling RL on 2015-04-30 00:00:00\n", + "Selling ON on 2015-04-30 00:00:00\n", + "Selling EXPE on 2015-04-30 00:00:00\n", + "Selling PAYC on 2015-04-30 00:00:00\n", + "Selling CRM on 2015-04-30 00:00:00\n", + "Selling IDXX on 2015-04-30 00:00:00\n", + "Selling NXPI on 2015-04-30 00:00:00\n", + "Selling NFLX on 2015-04-30 00:00:00\n", + "Selling FCX on 2015-04-30 00:00:00\n", + "Selling WYNN on 2015-04-30 00:00:00\n", + "Selling VTRS on 2015-04-30 00:00:00\n", + "Selling CZR on 2015-04-30 00:00:00\n", + "Selling ENPH on 2015-04-30 00:00:00\n", + "Selling AMD on 2015-04-30 00:00:00\n", + "Selling AXON on 2015-04-30 00:00:00\n", + "Selling BLDR on 2015-04-30 00:00:00\n", + "Buying MMC on 2015-05-31 00:00:00\n", + "Buying VZ on 2015-05-31 00:00:00\n", + "Buying HUBB on 2015-05-31 00:00:00\n", + "Buying CLX on 2015-05-31 00:00:00\n", + "Buying ADP on 2015-05-31 00:00:00\n", + "Buying GL on 2015-05-31 00:00:00\n", + "Buying BRK-B on 2015-05-31 00:00:00\n", + "Buying PG on 2015-05-31 00:00:00\n", + "Buying SNPS on 2015-05-31 00:00:00\n", + "Buying CHD on 2015-05-31 00:00:00\n", + "Buying CB on 2015-05-31 00:00:00\n", + "Buying NOC on 2015-05-31 00:00:00\n", + "Buying AME on 2015-05-31 00:00:00\n", + "Buying JNJ on 2015-05-31 00:00:00\n", + "Buying PGR on 2015-05-31 00:00:00\n", + "Buying CVS on 2015-05-31 00:00:00\n", + "Buying LMT on 2015-05-31 00:00:00\n", + "Buying ROP on 2015-05-31 00:00:00\n", + "Buying TROW on 2015-05-31 00:00:00\n", + "Buying AON on 2015-05-31 00:00:00\n", + "Buying HON on 2015-05-31 00:00:00\n", + "Buying RTX on 2015-05-31 00:00:00\n", + "Buying OMC on 2015-05-31 00:00:00\n", + "Buying PEP on 2015-05-31 00:00:00\n", + "Buying WTW on 2015-05-31 00:00:00\n", + "Buying ACGL on 2015-05-31 00:00:00\n", + "Buying GPC on 2015-05-31 00:00:00\n", + "Buying CINF on 2015-05-31 00:00:00\n", + "Buying KO on 2015-05-31 00:00:00\n", + "Buying FI on 2015-05-31 00:00:00\n", + "Buying BRO on 2015-05-31 00:00:00\n", + "Buying D on 2015-05-31 00:00:00\n", + "Buying EG on 2015-05-31 00:00:00\n", + "Buying AFL on 2015-05-31 00:00:00\n", + "Buying SO on 2015-05-31 00:00:00\n", + "Buying SNA on 2015-05-31 00:00:00\n", + "Buying IEX on 2015-05-31 00:00:00\n", + "Buying PAYX on 2015-05-31 00:00:00\n", + "Buying BEN on 2015-05-31 00:00:00\n", + "Buying HIG on 2015-05-31 00:00:00\n", + "Buying GIS on 2015-05-31 00:00:00\n", + "Buying DIS on 2015-05-31 00:00:00\n", + "Buying SYY on 2015-05-31 00:00:00\n", + "Buying PPG on 2015-05-31 00:00:00\n", + "Buying HSIC on 2015-05-31 00:00:00\n", + "Buying SWK on 2015-05-31 00:00:00\n", + "Buying MMM on 2015-05-31 00:00:00\n", + "Selling NTAP on 2015-05-31 00:00:00\n", + "Selling STLD on 2015-05-31 00:00:00\n", + "Selling OKE on 2015-05-31 00:00:00\n", + "Selling APA on 2015-05-31 00:00:00\n", + "Selling NXPI on 2015-05-31 00:00:00\n", + "Selling NRG on 2015-05-31 00:00:00\n", + "Selling FANG on 2015-05-31 00:00:00\n", + "Selling NVDA on 2015-05-31 00:00:00\n", + "Selling TPL on 2015-05-31 00:00:00\n", + "Selling MNST on 2015-05-31 00:00:00\n", + "Selling ON on 2015-05-31 00:00:00\n", + "Selling ANET on 2015-05-31 00:00:00\n", + "Selling TSLA on 2015-05-31 00:00:00\n", + "Selling AVGO on 2015-05-31 00:00:00\n", + "Selling SWKS on 2015-05-31 00:00:00\n", + "Selling URI 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 RCL on 2015-05-31 00:00:00\n", + "Selling LUV on 2015-05-31 00:00:00\n", + "Selling NOW on 2015-05-31 00:00:00\n", + "Selling BIIB on 2015-05-31 00:00:00\n", + "Selling AMZN on 2015-05-31 00:00:00\n", + "Selling NEM on 2015-05-31 00:00:00\n", + "Selling CRM on 2015-05-31 00:00:00\n", + "Selling MGM on 2015-05-31 00:00:00\n", + "Selling WDAY on 2015-05-31 00:00:00\n", + "Selling INCY on 2015-05-31 00:00:00\n", + "Selling ZBRA on 2015-05-31 00:00:00\n", + "Selling UAL on 2015-05-31 00:00:00\n", + "Selling CE on 2015-05-31 00:00:00\n", + "Selling SMCI on 2015-05-31 00:00:00\n", + "Selling AMD on 2015-05-31 00:00:00\n", + "Selling PODD on 2015-05-31 00:00:00\n", + "Selling FCX on 2015-05-31 00:00:00\n", + "Selling RMD on 2015-05-31 00:00:00\n", + "Selling IDXX on 2015-05-31 00:00:00\n", + "Selling TTWO on 2015-05-31 00:00:00\n", + "Selling WYNN on 2015-05-31 00:00:00\n", + "Selling NFLX on 2015-05-31 00:00:00\n", + "Selling PAYC on 2015-05-31 00:00:00\n", + "Selling AXON on 2015-05-31 00:00:00\n", + "Selling HUM on 2015-05-31 00:00:00\n", + "Selling CZR on 2015-05-31 00:00:00\n", + "Selling VTRS on 2015-05-31 00:00:00\n", + "Selling ENPH on 2015-05-31 00:00:00\n", + "Selling BLDR on 2015-05-31 00:00:00\n", + "Buying AMCR on 2015-06-30 00:00:00\n", + "Buying MMC on 2015-06-30 00:00:00\n", + "Buying PAYX on 2015-06-30 00:00:00\n", + "Buying KO on 2015-06-30 00:00:00\n", + "Buying JNJ on 2015-06-30 00:00:00\n", + "Buying GIS on 2015-06-30 00:00:00\n", + "Buying DIS on 2015-06-30 00:00:00\n", + "Buying BRK-B on 2015-06-30 00:00:00\n", + "Buying GL on 2015-06-30 00:00:00\n", + "Buying ADP on 2015-06-30 00:00:00\n", + "Buying HUBB on 2015-06-30 00:00:00\n", + "Buying RTX on 2015-06-30 00:00:00\n", + "Buying CLX on 2015-06-30 00:00:00\n", + "Buying K on 2015-06-30 00:00:00\n", + "Buying VZ on 2015-06-30 00:00:00\n", + "Buying LMT on 2015-06-30 00:00:00\n", + "Buying PGR on 2015-06-30 00:00:00\n", + "Buying PFE on 2015-06-30 00:00:00\n", + "Buying ROP on 2015-06-30 00:00:00\n", + "Buying BEN on 2015-06-30 00:00:00\n", + "Buying SWK on 2015-06-30 00:00:00\n", + "Buying BRO on 2015-06-30 00:00:00\n", + "Buying HON on 2015-06-30 00:00:00\n", + "Buying CHD on 2015-06-30 00:00:00\n", + "Buying EG on 2015-06-30 00:00:00\n", + "Buying PEP on 2015-06-30 00:00:00\n", + "Buying AON on 2015-06-30 00:00:00\n", + "Buying PG on 2015-06-30 00:00:00\n", + "Buying NDSN on 2015-06-30 00:00:00\n", + "Buying TROW on 2015-06-30 00:00:00\n", + "Buying PPG on 2015-06-30 00:00:00\n", + "Buying ACN on 2015-06-30 00:00:00\n", + "Buying SNA on 2015-06-30 00:00:00\n", + "Buying WFC on 2015-06-30 00:00:00\n", + "Buying ACGL on 2015-06-30 00:00:00\n", + "Buying CL on 2015-06-30 00:00:00\n", + "Buying HSIC on 2015-06-30 00:00:00\n", + "Buying IEX on 2015-06-30 00:00:00\n", + "Buying CVS on 2015-06-30 00:00:00\n", + "Buying NOC on 2015-06-30 00:00:00\n", + "Buying OMC on 2015-06-30 00:00:00\n", + "Buying KKR on 2015-06-30 00:00:00\n", + "Buying MCO on 2015-06-30 00:00:00\n", + "Buying MKC on 2015-06-30 00:00:00\n", + "Buying CTAS on 2015-06-30 00:00:00\n", + "Buying GS on 2015-06-30 00:00:00\n", + "Buying AZO on 2015-06-30 00:00:00\n", + "Selling FTNT on 2015-06-30 00:00:00\n", + "Selling RCL on 2015-06-30 00:00:00\n", + "Selling GNRC on 2015-06-30 00:00:00\n", + "Selling FANG on 2015-06-30 00:00:00\n", + "Selling NTAP on 2015-06-30 00:00:00\n", + "Selling ANET on 2015-06-30 00:00:00\n", + "Selling ON on 2015-06-30 00:00:00\n", + "Selling MGM on 2015-06-30 00:00:00\n", + "Selling LUV on 2015-06-30 00:00:00\n", + "Selling INCY on 2015-06-30 00:00:00\n", + "Selling AVGO on 2015-06-30 00:00:00\n", + "Selling LVS on 2015-06-30 00:00:00\n", + "Selling FSLR on 2015-06-30 00:00:00\n", + "Selling CNC on 2015-06-30 00:00:00\n", + "Selling URI on 2015-06-30 00:00:00\n", + "Selling NEM on 2015-06-30 00:00:00\n", + "Selling NOW on 2015-06-30 00:00:00\n", + "Selling MNST on 2015-06-30 00:00:00\n", + "Selling MOH on 2015-06-30 00:00:00\n", + "Selling AMZN on 2015-06-30 00:00:00\n", + "Selling PODD on 2015-06-30 00:00:00\n", + "Selling CI on 2015-06-30 00:00:00\n", + "Selling ZBRA on 2015-06-30 00:00:00\n", + "Selling UAL on 2015-06-30 00:00:00\n", + "Selling CRM on 2015-06-30 00:00:00\n", + "Selling LULU on 2015-06-30 00:00:00\n", + "Selling WDAY on 2015-06-30 00:00:00\n", + "Selling GDDY on 2015-06-30 00:00:00\n", + "Selling CE on 2015-06-30 00:00:00\n", + "Selling SMCI on 2015-06-30 00:00:00\n", + "Selling ZTS on 2015-06-30 00:00:00\n", + "Selling AMD on 2015-06-30 00:00:00\n", + "Selling FCX on 2015-06-30 00:00:00\n", + "Selling RMD on 2015-06-30 00:00:00\n", + "Selling IDXX on 2015-06-30 00:00:00\n", + "Selling TTWO on 2015-06-30 00:00:00\n", + "Selling PAYC on 2015-06-30 00:00:00\n", + "Selling NFLX on 2015-06-30 00:00:00\n", + "Selling MU on 2015-06-30 00:00:00\n", + "Selling VTRS on 2015-06-30 00:00:00\n", + "Selling AXON on 2015-06-30 00:00:00\n", + "Selling CZR on 2015-06-30 00:00:00\n", + "Selling ENPH on 2015-06-30 00:00:00\n", + "Selling WYNN on 2015-06-30 00:00:00\n", + "Selling HUM on 2015-06-30 00:00:00\n", + "Selling WMB on 2015-06-30 00:00:00\n", + "Selling BLDR on 2015-06-30 00:00:00\n", + "Buying AMCR on 2015-07-31 00:00:00\n", + "Buying JNJ on 2015-07-31 00:00:00\n", + "Buying BRK-B on 2015-07-31 00:00:00\n", + "Buying DIS on 2015-07-31 00:00:00\n", + "Buying TROW on 2015-07-31 00:00:00\n", + "Buying KMB on 2015-07-31 00:00:00\n", + "Buying MMC on 2015-07-31 00:00:00\n", + "Buying KO on 2015-07-31 00:00:00\n", + "Buying PEP on 2015-07-31 00:00:00\n", + "Buying BEN on 2015-07-31 00:00:00\n", + "Buying L on 2015-07-31 00:00:00\n", + "Buying PAYX on 2015-07-31 00:00:00\n", + "Buying AJG on 2015-07-31 00:00:00\n", + "Buying BLK on 2015-07-31 00:00:00\n", + "Buying SNA on 2015-07-31 00:00:00\n", + "Buying MDT on 2015-07-31 00:00:00\n", + "Buying PFE on 2015-07-31 00:00:00\n", + "Buying AON on 2015-07-31 00:00:00\n", + "Buying CL on 2015-07-31 00:00:00\n", + "Buying DVA on 2015-07-31 00:00:00\n", + "Buying BDX on 2015-07-31 00:00:00\n", + "Buying HSIC on 2015-07-31 00:00:00\n", + "Buying RSG on 2015-07-31 00:00:00\n", + "Buying GE on 2015-07-31 00:00:00\n", + "Buying WFC on 2015-07-31 00:00:00\n", + "Buying HON on 2015-07-31 00:00:00\n", + "Buying K on 2015-07-31 00:00:00\n", + "Buying MMM on 2015-07-31 00:00:00\n", + "Buying OMC on 2015-07-31 00:00:00\n", + "Buying MCO on 2015-07-31 00:00:00\n", + "Buying LMT on 2015-07-31 00:00:00\n", + "Buying CVS on 2015-07-31 00:00:00\n", + "Buying ACN on 2015-07-31 00:00:00\n", + "Buying CHD on 2015-07-31 00:00:00\n", + "Buying ETN on 2015-07-31 00:00:00\n", + "Buying JPM on 2015-07-31 00:00:00\n", + "Buying AMP on 2015-07-31 00:00:00\n", + "Buying HD on 2015-07-31 00:00:00\n", + "Buying ADP on 2015-07-31 00:00:00\n", + "Buying VZ on 2015-07-31 00:00:00\n", + "Buying GS on 2015-07-31 00:00:00\n", + "Buying ORLY on 2015-07-31 00:00:00\n", + "Buying CLX on 2015-07-31 00:00:00\n", + "Buying AXP on 2015-07-31 00:00:00\n", + "Buying NTRS on 2015-07-31 00:00:00\n", + "Buying NDSN on 2015-07-31 00:00:00\n", + "Buying GIS on 2015-07-31 00:00:00\n", + "Selling WDC on 2015-07-31 00:00:00\n", + "Selling CF on 2015-07-31 00:00:00\n", + "Selling PODD 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 LVS on 2015-07-31 00:00:00\n", + "Selling AVGO on 2015-07-31 00:00:00\n", + "Selling TSLA on 2015-07-31 00:00:00\n", + "Selling FSLR on 2015-07-31 00:00:00\n", + "Selling FTNT on 2015-07-31 00:00:00\n", + "Selling CNC on 2015-07-31 00:00:00\n", + "Selling GDDY on 2015-07-31 00:00:00\n", + "Selling LUV on 2015-07-31 00:00:00\n", + "Selling WDAY on 2015-07-31 00:00:00\n", + "Selling IDXX on 2015-07-31 00:00:00\n", + "Selling MNST on 2015-07-31 00:00:00\n", + "Selling FANG on 2015-07-31 00:00:00\n", + "Selling SMCI on 2015-07-31 00:00:00\n", + "Selling MGM on 2015-07-31 00:00:00\n", + "Selling ANET on 2015-07-31 00:00:00\n", + "Selling LULU on 2015-07-31 00:00:00\n", + "Selling ZBRA on 2015-07-31 00:00:00\n", + "Selling VTRS on 2015-07-31 00:00:00\n", + "Selling RMD on 2015-07-31 00:00:00\n", + "Selling EXPE on 2015-07-31 00:00:00\n", + "Selling UAL on 2015-07-31 00:00:00\n", + "Selling GOOGL on 2015-07-31 00:00:00\n", + "Selling GOOG on 2015-07-31 00:00:00\n", + "Selling BLDR on 2015-07-31 00:00:00\n", + "Selling CI on 2015-07-31 00:00:00\n", + "Selling MOH on 2015-07-31 00:00:00\n", + "Selling ZTS on 2015-07-31 00:00:00\n", + "Selling NEM on 2015-07-31 00:00:00\n", + "Selling URI on 2015-07-31 00:00:00\n", + "Selling AXON on 2015-07-31 00:00:00\n", + "Selling PAYC on 2015-07-31 00:00:00\n", + "Selling WYNN on 2015-07-31 00:00:00\n", + "Selling TTWO on 2015-07-31 00:00:00\n", + "Selling NFLX on 2015-07-31 00:00:00\n", + "Selling CZR on 2015-07-31 00:00:00\n", + "Selling FCX on 2015-07-31 00:00:00\n", + "Selling BIIB on 2015-07-31 00:00:00\n", + "Selling HUM on 2015-07-31 00:00:00\n", + "Selling ENPH on 2015-07-31 00:00:00\n", + "Selling AMD on 2015-07-31 00:00:00\n", + "Selling MU on 2015-07-31 00:00:00\n", + "Selling WMB on 2015-07-31 00:00:00\n", + "Buying BRK-B on 2015-08-31 00:00:00\n", + "Buying HON on 2015-08-31 00:00:00\n", + "Buying MMC on 2015-08-31 00:00:00\n", + "Buying TROW on 2015-08-31 00:00:00\n", + "Buying AJG on 2015-08-31 00:00:00\n", + "Buying JNJ on 2015-08-31 00:00:00\n", + "Buying AMP on 2015-08-31 00:00:00\n", + "Buying CPRT on 2015-08-31 00:00:00\n", + "Buying MDT on 2015-08-31 00:00:00\n", + "Buying KO on 2015-08-31 00:00:00\n", + "Buying AON on 2015-08-31 00:00:00\n", + "Buying BEN on 2015-08-31 00:00:00\n", + "Buying WFC on 2015-08-31 00:00:00\n", + "Buying MCD on 2015-08-31 00:00:00\n", + "Buying DHR on 2015-08-31 00:00:00\n", + "Buying GS on 2015-08-31 00:00:00\n", + "Buying SNA on 2015-08-31 00:00:00\n", + "Buying PEP on 2015-08-31 00:00:00\n", + "Buying JPM on 2015-08-31 00:00:00\n", + "Buying BDX on 2015-08-31 00:00:00\n", + "Buying PFE on 2015-08-31 00:00:00\n", + "Buying GPC on 2015-08-31 00:00:00\n", + "Buying MCO on 2015-08-31 00:00:00\n", + "Buying KMB on 2015-08-31 00:00:00\n", + "Buying CTAS on 2015-08-31 00:00:00\n", + "Buying PCAR on 2015-08-31 00:00:00\n", + "Buying DVA on 2015-08-31 00:00:00\n", + "Buying LKQ on 2015-08-31 00:00:00\n", + "Buying CL on 2015-08-31 00:00:00\n", + "Buying K on 2015-08-31 00:00:00\n", + "Buying PM on 2015-08-31 00:00:00\n", + "Buying HD on 2015-08-31 00:00:00\n", + "Buying RSG on 2015-08-31 00:00:00\n", + "Buying HSIC on 2015-08-31 00:00:00\n", + "Buying LMT on 2015-08-31 00:00:00\n", + "Buying GE on 2015-08-31 00:00:00\n", + "Buying HUBB on 2015-08-31 00:00:00\n", + "Buying GIS on 2015-08-31 00:00:00\n", + "Buying BLK on 2015-08-31 00:00:00\n", + "Buying COST on 2015-08-31 00:00:00\n", + "Buying MKC on 2015-08-31 00:00:00\n", + "Buying ALLE on 2015-08-31 00:00:00\n", + "Buying IT on 2015-08-31 00:00:00\n", + "Buying CHD on 2015-08-31 00:00:00\n", + "Buying MTB on 2015-08-31 00:00:00\n", + "Buying ACN on 2015-08-31 00:00:00\n", + "Buying EFX on 2015-08-31 00:00:00\n", + "Selling OKE on 2015-08-31 00:00:00\n", + "Selling DXCM on 2015-08-31 00:00:00\n", + "Selling MOH on 2015-08-31 00:00:00\n", + "Selling FTNT on 2015-08-31 00:00:00\n", + "Selling NVDA on 2015-08-31 00:00:00\n", + "Selling FANG on 2015-08-31 00:00:00\n", + "Selling BKR on 2015-08-31 00:00:00\n", + "Selling EXPE on 2015-08-31 00:00:00\n", + "Selling HAL on 2015-08-31 00:00:00\n", + "Selling NRG on 2015-08-31 00:00:00\n", + "Selling PODD on 2015-08-31 00:00:00\n", + "Selling WBD on 2015-08-31 00:00:00\n", + "Selling VTRS on 2015-08-31 00:00:00\n", + "Selling BBY on 2015-08-31 00:00:00\n", + "Selling CI on 2015-08-31 00:00:00\n", + "Selling APA on 2015-08-31 00:00:00\n", + "Selling TRGP on 2015-08-31 00:00:00\n", + "Selling SWKS on 2015-08-31 00:00:00\n", + "Selling GNRC on 2015-08-31 00:00:00\n", + "Selling GDDY on 2015-08-31 00:00:00\n", + "Selling INCY on 2015-08-31 00:00:00\n", + "Selling SMCI on 2015-08-31 00:00:00\n", + "Selling MGM on 2015-08-31 00:00:00\n", + "Selling TRMB on 2015-08-31 00:00:00\n", + "Selling PWR on 2015-08-31 00:00:00\n", + "Selling TSLA 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 ZTS on 2015-08-31 00:00:00\n", + "Selling CF on 2015-08-31 00:00:00\n", + "Selling URI on 2015-08-31 00:00:00\n", + "Selling BLDR on 2015-08-31 00:00:00\n", + "Selling WYNN on 2015-08-31 00:00:00\n", + "Selling FSLR on 2015-08-31 00:00:00\n", + "Selling AXON on 2015-08-31 00:00:00\n", + "Selling CZR on 2015-08-31 00:00:00\n", + "Selling NEM on 2015-08-31 00:00:00\n", + "Selling NFLX on 2015-08-31 00:00:00\n", + "Selling PAYC on 2015-08-31 00:00:00\n", + "Selling BIIB on 2015-08-31 00:00:00\n", + "Selling VTR on 2015-08-31 00:00:00\n", + "Selling ZBRA on 2015-08-31 00:00:00\n", + "Selling WMB on 2015-08-31 00:00:00\n", + "Selling MU on 2015-08-31 00:00:00\n", + "Selling AMD on 2015-08-31 00:00:00\n", + "Selling FCX on 2015-08-31 00:00:00\n", + "Selling ENPH on 2015-08-31 00:00:00\n", + "Buying MKC on 2015-09-30 00:00:00\n", + "Buying BRK-B on 2015-09-30 00:00:00\n", + "Buying AJG on 2015-09-30 00:00:00\n", + "Buying HON on 2015-09-30 00:00:00\n", + "Buying PEP on 2015-09-30 00:00:00\n", + "Buying MCO on 2015-09-30 00:00:00\n", + "Buying T on 2015-09-30 00:00:00\n", + "Buying KO on 2015-09-30 00:00:00\n", + "Buying COST on 2015-09-30 00:00:00\n", + "Buying CINF on 2015-09-30 00:00:00\n", + "Buying DHR on 2015-09-30 00:00:00\n", + "Buying MMC on 2015-09-30 00:00:00\n", + "Buying FI on 2015-09-30 00:00:00\n", + "Buying KMB on 2015-09-30 00:00:00\n", + "Buying TROW on 2015-09-30 00:00:00\n", + "Buying BEN on 2015-09-30 00:00:00\n", + "Buying AIG on 2015-09-30 00:00:00\n", + "Buying MCD on 2015-09-30 00:00:00\n", + "Buying ACN on 2015-09-30 00:00:00\n", + "Buying TRV on 2015-09-30 00:00:00\n", + "Buying GPC on 2015-09-30 00:00:00\n", + "Buying AON on 2015-09-30 00:00:00\n", + "Buying AMP on 2015-09-30 00:00:00\n", + "Buying WTW on 2015-09-30 00:00:00\n", + "Buying DVA on 2015-09-30 00:00:00\n", + "Buying JPM on 2015-09-30 00:00:00\n", + "Buying KDP on 2015-09-30 00:00:00\n", + "Buying PM on 2015-09-30 00:00:00\n", + "Buying LMT on 2015-09-30 00:00:00\n", + "Buying IT on 2015-09-30 00:00:00\n", + "Buying EFX on 2015-09-30 00:00:00\n", + "Buying SNA on 2015-09-30 00:00:00\n", + "Buying CL on 2015-09-30 00:00:00\n", + "Buying ITW on 2015-09-30 00:00:00\n", + "Buying L on 2015-09-30 00:00:00\n", + "Buying BLK on 2015-09-30 00:00:00\n", + "Buying LKQ on 2015-09-30 00:00:00\n", + "Buying GIS on 2015-09-30 00:00:00\n", + "Buying GS on 2015-09-30 00:00:00\n", + "Buying RSG on 2015-09-30 00:00:00\n", + "Buying K on 2015-09-30 00:00:00\n", + "Buying HD on 2015-09-30 00:00:00\n", + "Buying OMC on 2015-09-30 00:00:00\n", + "Buying A on 2015-09-30 00:00:00\n", + "Buying CHD on 2015-09-30 00:00:00\n", + "Buying CB on 2015-09-30 00:00:00\n", + "Buying CTAS on 2015-09-30 00:00:00\n", + "Selling NXPI on 2015-09-30 00:00:00\n", + "Selling TSLA on 2015-09-30 00:00:00\n", + "Selling EXPE on 2015-09-30 00:00:00\n", + "Selling MOH on 2015-09-30 00:00:00\n", + "Selling SWKS on 2015-09-30 00:00:00\n", + "Selling BBY on 2015-09-30 00:00:00\n", + "Selling TAP on 2015-09-30 00:00:00\n", + "Selling PANW on 2015-09-30 00:00:00\n", + "Selling OKE on 2015-09-30 00:00:00\n", + "Selling WMB on 2015-09-30 00:00:00\n", + "Selling PODD on 2015-09-30 00:00:00\n", + "Selling MGM on 2015-09-30 00:00:00\n", + "Selling WBD on 2015-09-30 00:00:00\n", + "Selling VTRS on 2015-09-30 00:00:00\n", + "Selling VRTX on 2015-09-30 00:00:00\n", + "Selling PWR on 2015-09-30 00:00:00\n", + "Selling APA on 2015-09-30 00:00:00\n", + "Selling TRMB on 2015-09-30 00:00:00\n", + "Selling GOOGL on 2015-09-30 00:00:00\n", + "Selling ANET on 2015-09-30 00:00:00\n", + "Selling GDDY on 2015-09-30 00:00:00\n", + "Selling SMCI on 2015-09-30 00:00:00\n", + "Selling GOOG on 2015-09-30 00:00:00\n", + "Selling GNRC on 2015-09-30 00:00:00\n", + "Selling WDC on 2015-09-30 00:00:00\n", + "Selling URI on 2015-09-30 00:00:00\n", + "Selling TRGP on 2015-09-30 00:00:00\n", + "Selling LULU on 2015-09-30 00:00:00\n", + "Selling WYNN on 2015-09-30 00:00:00\n", + "Selling DXCM on 2015-09-30 00:00:00\n", + "Selling CF on 2015-09-30 00:00:00\n", + "Selling BLDR on 2015-09-30 00:00:00\n", + "Selling NRG on 2015-09-30 00:00:00\n", + "Selling FSLR on 2015-09-30 00:00:00\n", + "Selling CZR on 2015-09-30 00:00:00\n", + "Selling AXON on 2015-09-30 00:00:00\n", + "Selling INCY on 2015-09-30 00:00:00\n", + "Selling PAYC on 2015-09-30 00:00:00\n", + "Selling VTR on 2015-09-30 00:00:00\n", + "Selling NEM on 2015-09-30 00:00:00\n", + "Selling MU on 2015-09-30 00:00:00\n", + "Selling BIIB on 2015-09-30 00:00:00\n", + "Selling ZBRA on 2015-09-30 00:00:00\n", + "Selling NFLX on 2015-09-30 00:00:00\n", + "Selling AMD on 2015-09-30 00:00:00\n", + "Selling FCX on 2015-09-30 00:00:00\n", + "Selling ENPH on 2015-09-30 00:00:00\n", + "Buying T on 2015-10-31 00:00:00\n", + "Buying AJG on 2015-10-31 00:00:00\n", + "Buying BRK-B on 2015-10-31 00:00:00\n", + "Buying FI on 2015-10-31 00:00:00\n", + "Buying PGR on 2015-10-31 00:00:00\n", + "Buying CINF on 2015-10-31 00:00:00\n", + "Buying AFL on 2015-10-31 00:00:00\n", + "Buying BRO on 2015-10-31 00:00:00\n", + "Buying KO on 2015-10-31 00:00:00\n", + "Buying MMC on 2015-10-31 00:00:00\n", + "Buying IT on 2015-10-31 00:00:00\n", + "Buying PM on 2015-10-31 00:00:00\n", + "Buying MA on 2015-10-31 00:00:00\n", + "Buying AON on 2015-10-31 00:00:00\n", + "Buying RSG on 2015-10-31 00:00:00\n", + "Buying PEP on 2015-10-31 00:00:00\n", + "Buying PAYX on 2015-10-31 00:00:00\n", + "Buying CLX on 2015-10-31 00:00:00\n", + "Buying CHD on 2015-10-31 00:00:00\n", + "Buying WRB on 2015-10-31 00:00:00\n", + "Buying KMB on 2015-10-31 00:00:00\n", + "Buying HON on 2015-10-31 00:00:00\n", + "Buying WTW on 2015-10-31 00:00:00\n", + "Buying GL on 2015-10-31 00:00:00\n", + "Buying A on 2015-10-31 00:00:00\n", + "Buying EG on 2015-10-31 00:00:00\n", + "Buying OMC on 2015-10-31 00:00:00\n", + "Buying ACN on 2015-10-31 00:00:00\n", + "Buying HD on 2015-10-31 00:00:00\n", + "Buying HSIC on 2015-10-31 00:00:00\n", + "Buying WM on 2015-10-31 00:00:00\n", + "Buying JKHY on 2015-10-31 00:00:00\n", + "Buying CMCSA on 2015-10-31 00:00:00\n", + "Buying K on 2015-10-31 00:00:00\n", + "Buying TRV on 2015-10-31 00:00:00\n", + "Buying AIG on 2015-10-31 00:00:00\n", + "Buying ERIE on 2015-10-31 00:00:00\n", + "Buying L on 2015-10-31 00:00:00\n", + "Buying CB on 2015-10-31 00:00:00\n", + "Buying SNA on 2015-10-31 00:00:00\n", + "Buying UPS on 2015-10-31 00:00:00\n", + "Buying COST on 2015-10-31 00:00:00\n", + "Buying WFC on 2015-10-31 00:00:00\n", + "Buying GD on 2015-10-31 00:00:00\n", + "Buying VZ on 2015-10-31 00:00:00\n", + "Buying CTAS on 2015-10-31 00:00:00\n", + "Buying JPM on 2015-10-31 00:00:00\n", + "Selling CNC on 2015-10-31 00:00:00\n", + "Selling BBY on 2015-10-31 00:00:00\n", + "Selling CTRA on 2015-10-31 00:00:00\n", + "Selling SWKS on 2015-10-31 00:00:00\n", + "Selling OKE on 2015-10-31 00:00:00\n", + "Selling UAL on 2015-10-31 00:00:00\n", + "Selling ANET on 2015-10-31 00:00:00\n", + "Selling MOH on 2015-10-31 00:00:00\n", + "Selling CF on 2015-10-31 00:00:00\n", + "Selling APA on 2015-10-31 00:00:00\n", + "Selling PAYC on 2015-10-31 00:00:00\n", + "Selling URI on 2015-10-31 00:00:00\n", + "Selling FSLR on 2015-10-31 00:00:00\n", + "Selling LVS on 2015-10-31 00:00:00\n", + "Selling BLDR on 2015-10-31 00:00:00\n", + "Selling CZR on 2015-10-31 00:00:00\n", + "Selling WMB on 2015-10-31 00:00:00\n", + "Selling ABBV on 2015-10-31 00:00:00\n", + "Selling ON on 2015-10-31 00:00:00\n", + "Selling WDC on 2015-10-31 00:00:00\n", + "Selling TAP on 2015-10-31 00:00:00\n", + "Selling AKAM on 2015-10-31 00:00:00\n", + "Selling AXON on 2015-10-31 00:00:00\n", + "Selling VRTX on 2015-10-31 00:00:00\n", + "Selling NRG on 2015-10-31 00:00:00\n", + "Selling GNRC on 2015-10-31 00:00:00\n", + "Selling LULU on 2015-10-31 00:00:00\n", + "Selling KLAC on 2015-10-31 00:00:00\n", + "Selling STX on 2015-10-31 00:00:00\n", + "Selling FTNT on 2015-10-31 00:00:00\n", + "Selling TRGP on 2015-10-31 00:00:00\n", + "Selling YUM on 2015-10-31 00:00:00\n", + "Selling NEM on 2015-10-31 00:00:00\n", + "Selling TRMB on 2015-10-31 00:00:00\n", + "Selling NFLX on 2015-10-31 00:00:00\n", + "Selling AMD on 2015-10-31 00:00:00\n", + "Selling MU on 2015-10-31 00:00:00\n", + "Selling VTR on 2015-10-31 00:00:00\n", + "Selling SMCI on 2015-10-31 00:00:00\n", + "Selling ZBRA on 2015-10-31 00:00:00\n", + "Selling NXPI on 2015-10-31 00:00:00\n", + "Selling DXCM on 2015-10-31 00:00:00\n", + "Selling INCY on 2015-10-31 00:00:00\n", + "Selling WYNN on 2015-10-31 00:00:00\n", + "Selling PWR on 2015-10-31 00:00:00\n", + "Selling FCX on 2015-10-31 00:00:00\n", + "Selling ENPH on 2015-10-31 00:00:00\n", + "Buying AMCR on 2015-11-30 00:00:00\n", + "Buying T on 2015-11-30 00:00:00\n", + "Buying CINF on 2015-11-30 00:00:00\n", + "Buying AJG on 2015-11-30 00:00:00\n", + "Buying AFL on 2015-11-30 00:00:00\n", + "Buying BRO on 2015-11-30 00:00:00\n", + "Buying BRK-B on 2015-11-30 00:00:00\n", + "Buying JKHY on 2015-11-30 00:00:00\n", + "Buying MMC on 2015-11-30 00:00:00\n", + "Buying MA on 2015-11-30 00:00:00\n", + "Buying RSG on 2015-11-30 00:00:00\n", + "Buying FI on 2015-11-30 00:00:00\n", + "Buying PAYX on 2015-11-30 00:00:00\n", + "Buying ACN on 2015-11-30 00:00:00\n", + "Buying PEP on 2015-11-30 00:00:00\n", + "Buying WM on 2015-11-30 00:00:00\n", + "Buying EG on 2015-11-30 00:00:00\n", + "Buying AON on 2015-11-30 00:00:00\n", + "Buying WRB on 2015-11-30 00:00:00\n", + "Buying PM on 2015-11-30 00:00:00\n", + "Buying CLX on 2015-11-30 00:00:00\n", + "Buying KMB on 2015-11-30 00:00:00\n", + "Buying TRV on 2015-11-30 00:00:00\n", + "Buying CMCSA on 2015-11-30 00:00:00\n", + "Buying ADP on 2015-11-30 00:00:00\n", + "Buying JNJ on 2015-11-30 00:00:00\n", + "Buying PGR on 2015-11-30 00:00:00\n", + "Buying DFS on 2015-11-30 00:00:00\n", + "Buying CB on 2015-11-30 00:00:00\n", + "Buying L on 2015-11-30 00:00:00\n", + "Buying HON on 2015-11-30 00:00:00\n", + "Buying OMC on 2015-11-30 00:00:00\n", + "Buying HSIC on 2015-11-30 00:00:00\n", + "Buying VZ on 2015-11-30 00:00:00\n", + "Buying WFC on 2015-11-30 00:00:00\n", + "Buying KO on 2015-11-30 00:00:00\n", + "Buying DHR on 2015-11-30 00:00:00\n", + "Buying SYY on 2015-11-30 00:00:00\n", + "Buying SNA on 2015-11-30 00:00:00\n", + "Buying GL on 2015-11-30 00:00:00\n", + "Buying GD on 2015-11-30 00:00:00\n", + "Buying WTW on 2015-11-30 00:00:00\n", + "Buying MMM on 2015-11-30 00:00:00\n", + "Buying UPS on 2015-11-30 00:00:00\n", + "Buying PG on 2015-11-30 00:00:00\n", + "Buying CHD on 2015-11-30 00:00:00\n", + "Buying COST on 2015-11-30 00:00:00\n", + "Selling WMB on 2015-11-30 00:00:00\n", + "Selling FSLR on 2015-11-30 00:00:00\n", + "Selling DECK on 2015-11-30 00:00:00\n", + "Selling CNC on 2015-11-30 00:00:00\n", + "Selling WDC on 2015-11-30 00:00:00\n", + "Selling TSLA on 2015-11-30 00:00:00\n", + "Selling AKAM on 2015-11-30 00:00:00\n", + "Selling TAP on 2015-11-30 00:00:00\n", + "Selling CF on 2015-11-30 00:00:00\n", + "Selling CTRA on 2015-11-30 00:00:00\n", + "Selling MTCH on 2015-11-30 00:00:00\n", + "Selling QCOM on 2015-11-30 00:00:00\n", + "Selling ABBV on 2015-11-30 00:00:00\n", + "Selling PODD on 2015-11-30 00:00:00\n", + "Selling GNRC on 2015-11-30 00:00:00\n", + "Selling VRTX on 2015-11-30 00:00:00\n", + "Selling HPQ on 2015-11-30 00:00:00\n", + "Selling KLAC on 2015-11-30 00:00:00\n", + "Selling ON on 2015-11-30 00:00:00\n", + "Selling AMD on 2015-11-30 00:00:00\n", + "Selling VTRS on 2015-11-30 00:00:00\n", + "Selling YUM on 2015-11-30 00:00:00\n", + "Selling STX on 2015-11-30 00:00:00\n", + "Selling NFLX on 2015-11-30 00:00:00\n", + "Selling NRG on 2015-11-30 00:00:00\n", + "Selling ANET on 2015-11-30 00:00:00\n", + "Selling NEM on 2015-11-30 00:00:00\n", + "Selling MU on 2015-11-30 00:00:00\n", + "Selling RL on 2015-11-30 00:00:00\n", + "Selling MOH on 2015-11-30 00:00:00\n", + "Selling APA on 2015-11-30 00:00:00\n", + "Selling FTNT on 2015-11-30 00:00:00\n", + "Selling AXON on 2015-11-30 00:00:00\n", + "Selling TRMB on 2015-11-30 00:00:00\n", + "Selling GDDY on 2015-11-30 00:00:00\n", + "Selling TRGP on 2015-11-30 00:00:00\n", + "Selling DXCM on 2015-11-30 00:00:00\n", + "Selling PAYC on 2015-11-30 00:00:00\n", + "Selling LULU on 2015-11-30 00:00:00\n", + "Selling FCX on 2015-11-30 00:00:00\n", + "Selling SMCI on 2015-11-30 00:00:00\n", + "Selling NXPI on 2015-11-30 00:00:00\n", + "Selling BLDR on 2015-11-30 00:00:00\n", + "Selling WYNN on 2015-11-30 00:00:00\n", + "Selling PWR on 2015-11-30 00:00:00\n", + "Selling INCY on 2015-11-30 00:00:00\n", + "Selling ENPH on 2015-11-30 00:00:00\n", + "Buying JNJ on 2015-12-31 00:00:00\n", + "Buying AMCR on 2015-12-31 00:00:00\n", + "Buying MMC on 2015-12-31 00:00:00\n", + "Buying BRK-B on 2015-12-31 00:00:00\n", + "Buying RSG on 2015-12-31 00:00:00\n", + "Buying T on 2015-12-31 00:00:00\n", + "Buying PAYX on 2015-12-31 00:00:00\n", + "Buying MA on 2015-12-31 00:00:00\n", + "Buying CINF on 2015-12-31 00:00:00\n", + "Buying PEP on 2015-12-31 00:00:00\n", + "Buying BRO on 2015-12-31 00:00:00\n", + "Buying VZ on 2015-12-31 00:00:00\n", + "Buying AFL on 2015-12-31 00:00:00\n", + "Buying FI on 2015-12-31 00:00:00\n", + "Buying WFC on 2015-12-31 00:00:00\n", + "Buying PM on 2015-12-31 00:00:00\n", + "Buying GD on 2015-12-31 00:00:00\n", + "Buying SYY on 2015-12-31 00:00:00\n", + "Buying JKHY on 2015-12-31 00:00:00\n", + "Buying HSIC on 2015-12-31 00:00:00\n", + "Buying DFS on 2015-12-31 00:00:00\n", + "Buying CB on 2015-12-31 00:00:00\n", + "Buying ABT on 2015-12-31 00:00:00\n", + "Buying TRV on 2015-12-31 00:00:00\n", + "Buying KO on 2015-12-31 00:00:00\n", + "Buying UPS on 2015-12-31 00:00:00\n", + "Buying USB on 2015-12-31 00:00:00\n", + "Buying SNA on 2015-12-31 00:00:00\n", + "Buying XYL on 2015-12-31 00:00:00\n", + "Buying WAT on 2015-12-31 00:00:00\n", + "Buying ACGL on 2015-12-31 00:00:00\n", + "Buying PG on 2015-12-31 00:00:00\n", + "Buying CMCSA on 2015-12-31 00:00:00\n", + "Buying MDT on 2015-12-31 00:00:00\n", + "Buying L on 2015-12-31 00:00:00\n", + "Buying ADP on 2015-12-31 00:00:00\n", + "Buying BR on 2015-12-31 00:00:00\n", + "Buying PGR on 2015-12-31 00:00:00\n", + "Buying TFC on 2015-12-31 00:00:00\n", + "Buying AMP on 2015-12-31 00:00:00\n", + "Buying PPG on 2015-12-31 00:00:00\n", + "Buying KMB on 2015-12-31 00:00:00\n", + "Buying IEX on 2015-12-31 00:00:00\n", + "Buying MKC on 2015-12-31 00:00:00\n", + "Buying JPM on 2015-12-31 00:00:00\n", + "Buying GL on 2015-12-31 00:00:00\n", + "Buying EG on 2015-12-31 00:00:00\n", + "Selling AVGO on 2015-12-31 00:00:00\n", + "Selling ABBV on 2015-12-31 00:00:00\n", + "Selling ANET on 2015-12-31 00:00:00\n", + "Selling AKAM on 2015-12-31 00:00:00\n", + "Selling NFLX on 2015-12-31 00:00:00\n", + "Selling KLAC on 2015-12-31 00:00:00\n", + "Selling BKR on 2015-12-31 00:00:00\n", + "Selling PODD on 2015-12-31 00:00:00\n", + "Selling TSLA on 2015-12-31 00:00:00\n", + "Selling DECK on 2015-12-31 00:00:00\n", + "Selling AMD on 2015-12-31 00:00:00\n", + "Selling CF on 2015-12-31 00:00:00\n", + "Selling VTRS on 2015-12-31 00:00:00\n", + "Selling MU on 2015-12-31 00:00:00\n", + "Selling MOS on 2015-12-31 00:00:00\n", + "Selling FSLR on 2015-12-31 00:00:00\n", + "Selling HPQ on 2015-12-31 00:00:00\n", + "Selling MOH on 2015-12-31 00:00:00\n", + "Selling ON on 2015-12-31 00:00:00\n", + "Selling QCOM on 2015-12-31 00:00:00\n", + "Selling APA on 2015-12-31 00:00:00\n", + "Selling MTCH on 2015-12-31 00:00:00\n", + "Selling YUM on 2015-12-31 00:00:00\n", + "Selling STX on 2015-12-31 00:00:00\n", + "Selling NEM on 2015-12-31 00:00:00\n", + "Selling CTRA on 2015-12-31 00:00:00\n", + "Selling GDDY on 2015-12-31 00:00:00\n", + "Selling DXCM on 2015-12-31 00:00:00\n", + "Selling DVN on 2015-12-31 00:00:00\n", + "Selling FTNT on 2015-12-31 00:00:00\n", + "Selling PAYC on 2015-12-31 00:00:00\n", + "Selling TRMB on 2015-12-31 00:00:00\n", + "Selling LULU on 2015-12-31 00:00:00\n", + "Selling KMI on 2015-12-31 00:00:00\n", + "Selling INCY on 2015-12-31 00:00:00\n", + "Selling AXON on 2015-12-31 00:00:00\n", + "Selling WYNN on 2015-12-31 00:00:00\n", + "Selling NXPI on 2015-12-31 00:00:00\n", + "Selling WMB on 2015-12-31 00:00:00\n", + "Selling SMCI on 2015-12-31 00:00:00\n", + "Selling OKE on 2015-12-31 00:00:00\n", + "Selling FCX on 2015-12-31 00:00:00\n", + "Selling PWR on 2015-12-31 00:00:00\n", + "Selling BLDR on 2015-12-31 00:00:00\n", + "Selling NRG on 2015-12-31 00:00:00\n", + "Selling TRGP on 2015-12-31 00:00:00\n", + "Selling ENPH on 2015-12-31 00:00:00\n", + "Buying DHR on 2016-01-31 00:00:00\n", + "Buying ADP on 2016-01-31 00:00:00\n", + "Buying SYY on 2016-01-31 00:00:00\n", + "Buying CINF on 2016-01-31 00:00:00\n", + "Buying MMC on 2016-01-31 00:00:00\n", + "Buying UPS on 2016-01-31 00:00:00\n", + "Buying MCD on 2016-01-31 00:00:00\n", + "Buying BRK-B on 2016-01-31 00:00:00\n", + "Buying T on 2016-01-31 00:00:00\n", + "Buying TRV on 2016-01-31 00:00:00\n", + "Buying PEP on 2016-01-31 00:00:00\n", + "Buying GL on 2016-01-31 00:00:00\n", + "Buying BRO on 2016-01-31 00:00:00\n", + "Buying EG on 2016-01-31 00:00:00\n", + "Buying ALL on 2016-01-31 00:00:00\n", + "Buying ACGL on 2016-01-31 00:00:00\n", + "Buying RSG on 2016-01-31 00:00:00\n", + "Buying KO on 2016-01-31 00:00:00\n", + "Buying PAYX on 2016-01-31 00:00:00\n", + "Buying CMCSA on 2016-01-31 00:00:00\n", + "Buying FI on 2016-01-31 00:00:00\n", + "Buying USB on 2016-01-31 00:00:00\n", + "Buying CB on 2016-01-31 00:00:00\n", + "Buying PG on 2016-01-31 00:00:00\n", + "Buying WM on 2016-01-31 00:00:00\n", + "Buying WFC on 2016-01-31 00:00:00\n", + "Buying XYL on 2016-01-31 00:00:00\n", + "Buying JPM on 2016-01-31 00:00:00\n", + "Buying JNJ on 2016-01-31 00:00:00\n", + "Buying AME on 2016-01-31 00:00:00\n", + "Buying RTX on 2016-01-31 00:00:00\n", + "Buying GD on 2016-01-31 00:00:00\n", + "Buying PNC on 2016-01-31 00:00:00\n", + "Buying SNA on 2016-01-31 00:00:00\n", + "Buying ROP on 2016-01-31 00:00:00\n", + "Buying HIG on 2016-01-31 00:00:00\n", + "Buying AON on 2016-01-31 00:00:00\n", + "Buying TROW on 2016-01-31 00:00:00\n", + "Buying IEX on 2016-01-31 00:00:00\n", + "Buying AFL on 2016-01-31 00:00:00\n", + "Buying GIS on 2016-01-31 00:00:00\n", + "Buying JKHY on 2016-01-31 00:00:00\n", + "Buying MRK on 2016-01-31 00:00:00\n", + "Buying VZ on 2016-01-31 00:00:00\n", + "Buying KMB on 2016-01-31 00:00:00\n", + "Buying OMC on 2016-01-31 00:00:00\n", + "Buying CLX on 2016-01-31 00:00:00\n", + "Selling BBY on 2016-01-31 00:00:00\n", + "Selling SWKS on 2016-01-31 00:00:00\n", + "Selling EOG on 2016-01-31 00:00:00\n", + "Selling STX on 2016-01-31 00:00:00\n", + "Selling NSC on 2016-01-31 00:00:00\n", + "Selling NOW on 2016-01-31 00:00:00\n", + "Selling ZBRA on 2016-01-31 00:00:00\n", + "Selling FSLR on 2016-01-31 00:00:00\n", + "Selling JNPR on 2016-01-31 00:00:00\n", + "Selling RL on 2016-01-31 00:00:00\n", + "Selling CZR on 2016-01-31 00:00:00\n", + "Selling COP on 2016-01-31 00:00:00\n", + "Selling PODD on 2016-01-31 00:00:00\n", + "Selling EQT on 2016-01-31 00:00:00\n", + "Selling TPL on 2016-01-31 00:00:00\n", + "Selling ANET on 2016-01-31 00:00:00\n", + "Selling BKR on 2016-01-31 00:00:00\n", + "Selling CF on 2016-01-31 00:00:00\n", + "Selling CMG on 2016-01-31 00:00:00\n", + "Selling MOS on 2016-01-31 00:00:00\n", + "Selling MU on 2016-01-31 00:00:00\n", + "Selling NFLX on 2016-01-31 00:00:00\n", + "Selling MTCH on 2016-01-31 00:00:00\n", + "Selling FANG on 2016-01-31 00:00:00\n", + "Selling HES on 2016-01-31 00:00:00\n", + "Selling LULU on 2016-01-31 00:00:00\n", + "Selling QCOM on 2016-01-31 00:00:00\n", + "Selling GDDY on 2016-01-31 00:00:00\n", + "Selling PAYC on 2016-01-31 00:00:00\n", + "Selling URI on 2016-01-31 00:00:00\n", + "Selling AXON on 2016-01-31 00:00:00\n", + "Selling NEM on 2016-01-31 00:00:00\n", + "Selling APA on 2016-01-31 00:00:00\n", + "Selling INCY on 2016-01-31 00:00:00\n", + "Selling CTRA on 2016-01-31 00:00:00\n", + "Selling WYNN on 2016-01-31 00:00:00\n", + "Selling DVN on 2016-01-31 00:00:00\n", + "Selling AMD on 2016-01-31 00:00:00\n", + "Selling BLDR on 2016-01-31 00:00:00\n", + "Selling OKE on 2016-01-31 00:00:00\n", + "Selling KMI on 2016-01-31 00:00:00\n", + "Selling SMCI on 2016-01-31 00:00:00\n", + "Selling NRG 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", + "Selling WMB on 2016-01-31 00:00:00\n", + "Selling ENPH on 2016-01-31 00:00:00\n", + "Buying ADP on 2016-02-29 00:00:00\n", + "Buying DHR on 2016-02-29 00:00:00\n", + "Buying TRV on 2016-02-29 00:00:00\n", + "Buying KO on 2016-02-29 00:00:00\n", + "Buying PEP on 2016-02-29 00:00:00\n", + "Buying BRK-B on 2016-02-29 00:00:00\n", + "Buying FI on 2016-02-29 00:00:00\n", + "Buying RSG on 2016-02-29 00:00:00\n", + "Buying T on 2016-02-29 00:00:00\n", + "Buying WM on 2016-02-29 00:00:00\n", + "Buying CB on 2016-02-29 00:00:00\n", + "Buying AME on 2016-02-29 00:00:00\n", + "Buying MMC on 2016-02-29 00:00:00\n", + "Buying UPS on 2016-02-29 00:00:00\n", + "Buying CTAS on 2016-02-29 00:00:00\n", + "Buying PAYX on 2016-02-29 00:00:00\n", + "Buying GIS on 2016-02-29 00:00:00\n", + "Buying PM on 2016-02-29 00:00:00\n", + "Buying GD on 2016-02-29 00:00:00\n", + "Buying PFE on 2016-02-29 00:00:00\n", + "Buying KLAC on 2016-02-29 00:00:00\n", + "Buying ORCL on 2016-02-29 00:00:00\n", + "Buying PG on 2016-02-29 00:00:00\n", + "Buying L on 2016-02-29 00:00:00\n", + "Buying VZ on 2016-02-29 00:00:00\n", + "Buying TROW on 2016-02-29 00:00:00\n", + "Buying MCD on 2016-02-29 00:00:00\n", + "Buying BRO on 2016-02-29 00:00:00\n", + "Buying BR on 2016-02-29 00:00:00\n", + "Buying IEX on 2016-02-29 00:00:00\n", + "Buying KMB on 2016-02-29 00:00:00\n", + "Buying PNC on 2016-02-29 00:00:00\n", + "Buying XYL on 2016-02-29 00:00:00\n", + "Buying CL on 2016-02-29 00:00:00\n", + "Buying GE on 2016-02-29 00:00:00\n", + "Buying REG on 2016-02-29 00:00:00\n", + "Buying JNJ on 2016-02-29 00:00:00\n", + "Buying SJM on 2016-02-29 00:00:00\n", + "Buying LMT on 2016-02-29 00:00:00\n", + "Buying PGR on 2016-02-29 00:00:00\n", + "Buying CINF on 2016-02-29 00:00:00\n", + "Buying WRB on 2016-02-29 00:00:00\n", + "Buying MRK on 2016-02-29 00:00:00\n", + "Buying ITW on 2016-02-29 00:00:00\n", + "Buying AMCR on 2016-02-29 00:00:00\n", + "Buying ALL on 2016-02-29 00:00:00\n", + "Buying MO on 2016-02-29 00:00:00\n", + "Selling EPAM on 2016-02-29 00:00:00\n", + "Selling VTRS on 2016-02-29 00:00:00\n", + "Selling DOC on 2016-02-29 00:00:00\n", + "Selling GDDY on 2016-02-29 00:00:00\n", + "Selling PANW on 2016-02-29 00:00:00\n", + "Selling BKR on 2016-02-29 00:00:00\n", + "Selling STX on 2016-02-29 00:00:00\n", + "Selling TPL on 2016-02-29 00:00:00\n", + "Selling KKR on 2016-02-29 00:00:00\n", + "Selling NFLX on 2016-02-29 00:00:00\n", + "Selling INCY on 2016-02-29 00:00:00\n", + "Selling BG on 2016-02-29 00:00:00\n", + "Selling MTCH on 2016-02-29 00:00:00\n", + "Selling MU on 2016-02-29 00:00:00\n", + "Selling WDAY on 2016-02-29 00:00:00\n", + "Selling ANET on 2016-02-29 00:00:00\n", + "Selling CF on 2016-02-29 00:00:00\n", + "Selling FSLR on 2016-02-29 00:00:00\n", + "Selling AXON on 2016-02-29 00:00:00\n", + "Selling EQT on 2016-02-29 00:00:00\n", + "Selling APA on 2016-02-29 00:00:00\n", + "Selling COP on 2016-02-29 00:00:00\n", + "Selling NOW on 2016-02-29 00:00:00\n", + "Selling DXCM on 2016-02-29 00:00:00\n", + "Selling GNRC on 2016-02-29 00:00:00\n", + "Selling RL on 2016-02-29 00:00:00\n", + "Selling ZBRA on 2016-02-29 00:00:00\n", + "Selling BLDR on 2016-02-29 00:00:00\n", + "Selling PAYC on 2016-02-29 00:00:00\n", + "Selling FANG on 2016-02-29 00:00:00\n", + "Selling AKAM on 2016-02-29 00:00:00\n", + "Selling URI on 2016-02-29 00:00:00\n", + "Selling NEM on 2016-02-29 00:00:00\n", + "Selling MOS on 2016-02-29 00:00:00\n", + "Selling HES on 2016-02-29 00:00:00\n", + "Selling CTRA on 2016-02-29 00:00:00\n", + "Selling AMD on 2016-02-29 00:00:00\n", + "Selling WYNN on 2016-02-29 00:00:00\n", + "Selling SMCI on 2016-02-29 00:00:00\n", + "Selling DVN on 2016-02-29 00:00:00\n", + "Selling KMI on 2016-02-29 00:00:00\n", + "Selling OKE on 2016-02-29 00:00:00\n", + "Selling NRG 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", + "Selling ENPH on 2016-02-29 00:00:00\n", + "Buying ADP on 2016-03-31 00:00:00\n", + "Buying TRV on 2016-03-31 00:00:00\n", + "Buying DHR on 2016-03-31 00:00:00\n", + "Buying BRK-B on 2016-03-31 00:00:00\n", + "Buying KO on 2016-03-31 00:00:00\n", + "Buying WM on 2016-03-31 00:00:00\n", + "Buying MMC on 2016-03-31 00:00:00\n", + "Buying SNPS on 2016-03-31 00:00:00\n", + "Buying PEP on 2016-03-31 00:00:00\n", + "Buying T on 2016-03-31 00:00:00\n", + "Buying FI on 2016-03-31 00:00:00\n", + "Buying KLAC on 2016-03-31 00:00:00\n", + "Buying UPS on 2016-03-31 00:00:00\n", + "Buying GIS on 2016-03-31 00:00:00\n", + "Buying RSG on 2016-03-31 00:00:00\n", + "Buying CB on 2016-03-31 00:00:00\n", + "Buying AJG on 2016-03-31 00:00:00\n", + "Buying AME on 2016-03-31 00:00:00\n", + "Buying PM on 2016-03-31 00:00:00\n", + "Buying BR on 2016-03-31 00:00:00\n", + "Buying KMB on 2016-03-31 00:00:00\n", + "Buying BRO on 2016-03-31 00:00:00\n", + "Buying OMC on 2016-03-31 00:00:00\n", + "Buying PG on 2016-03-31 00:00:00\n", + "Buying WRB on 2016-03-31 00:00:00\n", + "Buying XYL on 2016-03-31 00:00:00\n", + "Buying ORCL on 2016-03-31 00:00:00\n", + "Buying TROW on 2016-03-31 00:00:00\n", + "Buying CINF on 2016-03-31 00:00:00\n", + "Buying VZ on 2016-03-31 00:00:00\n", + "Buying HON on 2016-03-31 00:00:00\n", + "Buying MMM on 2016-03-31 00:00:00\n", + "Buying CL on 2016-03-31 00:00:00\n", + "Buying PAYX on 2016-03-31 00:00:00\n", + "Buying GE on 2016-03-31 00:00:00\n", + "Buying IEX on 2016-03-31 00:00:00\n", + "Buying ALL on 2016-03-31 00:00:00\n", + "Buying EXPD on 2016-03-31 00:00:00\n", + "Buying CVS on 2016-03-31 00:00:00\n", + "Buying PGR on 2016-03-31 00:00:00\n", + "Buying JNJ on 2016-03-31 00:00:00\n", + "Buying LMT on 2016-03-31 00:00:00\n", + "Buying L on 2016-03-31 00:00:00\n", + "Buying APH on 2016-03-31 00:00:00\n", + "Buying AFL on 2016-03-31 00:00:00\n", + "Buying XEL on 2016-03-31 00:00:00\n", + "Buying SJM on 2016-03-31 00:00:00\n", + "Selling MPC on 2016-03-31 00:00:00\n", + "Selling DOC on 2016-03-31 00:00:00\n", + "Selling AXON on 2016-03-31 00:00:00\n", + "Selling NCLH on 2016-03-31 00:00:00\n", + "Selling WDC on 2016-03-31 00:00:00\n", + "Selling KKR on 2016-03-31 00:00:00\n", + "Selling MU on 2016-03-31 00:00:00\n", + "Selling PANW on 2016-03-31 00:00:00\n", + "Selling STX on 2016-03-31 00:00:00\n", + "Selling TSLA on 2016-03-31 00:00:00\n", + "Selling AMCR on 2016-03-31 00:00:00\n", + "Selling FANG on 2016-03-31 00:00:00\n", + "Selling VTRS on 2016-03-31 00:00:00\n", + "Selling BG on 2016-03-31 00:00:00\n", + "Selling NFLX on 2016-03-31 00:00:00\n", + "Selling MTCH on 2016-03-31 00:00:00\n", + "Selling RL on 2016-03-31 00:00:00\n", + "Selling GNRC on 2016-03-31 00:00:00\n", + "Selling INCY on 2016-03-31 00:00:00\n", + "Selling ZBRA on 2016-03-31 00:00:00\n", + "Selling PAYC on 2016-03-31 00:00:00\n", + "Selling NOW on 2016-03-31 00:00:00\n", + "Selling EQT on 2016-03-31 00:00:00\n", + "Selling COP on 2016-03-31 00:00:00\n", + "Selling AKAM on 2016-03-31 00:00:00\n", + "Selling CF on 2016-03-31 00:00:00\n", + "Selling ANET on 2016-03-31 00:00:00\n", + "Selling URI on 2016-03-31 00:00:00\n", + "Selling DXCM on 2016-03-31 00:00:00\n", + "Selling NEM on 2016-03-31 00:00:00\n", + "Selling MOS on 2016-03-31 00:00:00\n", + "Selling BLDR on 2016-03-31 00:00:00\n", + "Selling APA on 2016-03-31 00:00:00\n", + "Selling HES on 2016-03-31 00:00:00\n", + "Selling WDAY on 2016-03-31 00:00:00\n", + "Selling KMI on 2016-03-31 00:00:00\n", + "Selling WYNN on 2016-03-31 00:00:00\n", + "Selling CTRA on 2016-03-31 00:00:00\n", + "Selling NRG on 2016-03-31 00:00:00\n", + "Selling OKE on 2016-03-31 00:00:00\n", + "Selling SMCI on 2016-03-31 00:00:00\n", + "Selling AMD on 2016-03-31 00:00:00\n", + "Selling DVN on 2016-03-31 00:00:00\n", + "Selling TRGP on 2016-03-31 00:00:00\n", + "Selling FCX on 2016-03-31 00:00:00\n", + "Selling ENPH on 2016-03-31 00:00:00\n", + "Selling WMB on 2016-03-31 00:00:00\n", + "Buying ADP on 2016-04-30 00:00:00\n", + "Buying MMM on 2016-04-30 00:00:00\n", + "Buying KLAC on 2016-04-30 00:00:00\n", + "Buying ITW on 2016-04-30 00:00:00\n", + "Buying BRK-B on 2016-04-30 00:00:00\n", + "Buying MMC on 2016-04-30 00:00:00\n", + "Buying JNJ on 2016-04-30 00:00:00\n", + "Buying DHR on 2016-04-30 00:00:00\n", + "Buying APH on 2016-04-30 00:00:00\n", + "Buying FI on 2016-04-30 00:00:00\n", + "Buying SNPS on 2016-04-30 00:00:00\n", + "Buying UPS on 2016-04-30 00:00:00\n", + "Buying GE on 2016-04-30 00:00:00\n", + "Buying ROP on 2016-04-30 00:00:00\n", + "Buying AJG on 2016-04-30 00:00:00\n", + "Buying T on 2016-04-30 00:00:00\n", + "Buying IEX on 2016-04-30 00:00:00\n", + "Buying MA on 2016-04-30 00:00:00\n", + "Buying PEP on 2016-04-30 00:00:00\n", + "Buying CCI on 2016-04-30 00:00:00\n", + "Buying TROW on 2016-04-30 00:00:00\n", + "Buying CB on 2016-04-30 00:00:00\n", + "Buying AFL on 2016-04-30 00:00:00\n", + "Buying PAYX on 2016-04-30 00:00:00\n", + "Buying WM on 2016-04-30 00:00:00\n", + "Buying HON on 2016-04-30 00:00:00\n", + "Buying CTAS on 2016-04-30 00:00:00\n", + "Buying CHD on 2016-04-30 00:00:00\n", + "Buying LOW on 2016-04-30 00:00:00\n", + "Buying A on 2016-04-30 00:00:00\n", + "Buying DD on 2016-04-30 00:00:00\n", + "Buying TMO on 2016-04-30 00:00:00\n", + "Buying PM on 2016-04-30 00:00:00\n", + "Buying HII on 2016-04-30 00:00:00\n", + "Buying SYK on 2016-04-30 00:00:00\n", + "Buying OMC on 2016-04-30 00:00:00\n", + "Buying LMT on 2016-04-30 00:00:00\n", + "Buying BR on 2016-04-30 00:00:00\n", + "Buying PG on 2016-04-30 00:00:00\n", + "Buying XOM on 2016-04-30 00:00:00\n", + "Buying ORCL on 2016-04-30 00:00:00\n", + "Buying L on 2016-04-30 00:00:00\n", + "Buying XYL on 2016-04-30 00:00:00\n", + "Buying AVY on 2016-04-30 00:00:00\n", + "Buying JKHY on 2016-04-30 00:00:00\n", + "Buying TXN on 2016-04-30 00:00:00\n", + "Buying CL on 2016-04-30 00:00:00\n", + "Selling FSLR on 2016-04-30 00:00:00\n", + "Selling REGN on 2016-04-30 00:00:00\n", + "Selling EW on 2016-04-30 00:00:00\n", + "Selling HPE on 2016-04-30 00:00:00\n", + "Selling DOC on 2016-04-30 00:00:00\n", + "Selling MPC on 2016-04-30 00:00:00\n", + "Selling TYL on 2016-04-30 00:00:00\n", + "Selling EQT on 2016-04-30 00:00:00\n", + "Selling GNRC on 2016-04-30 00:00:00\n", + "Selling HES on 2016-04-30 00:00:00\n", + "Selling AMCR on 2016-04-30 00:00:00\n", + "Selling NFLX on 2016-04-30 00:00:00\n", + "Selling VRTX on 2016-04-30 00:00:00\n", + "Selling TSLA on 2016-04-30 00:00:00\n", + "Selling INCY on 2016-04-30 00:00:00\n", + "Selling PAYC on 2016-04-30 00:00:00\n", + "Selling COP on 2016-04-30 00:00:00\n", + "Selling MU 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 BG on 2016-04-30 00:00:00\n", + "Selling NEM on 2016-04-30 00:00:00\n", + "Selling WDC on 2016-04-30 00:00:00\n", + "Selling NRG on 2016-04-30 00:00:00\n", + "Selling SMCI on 2016-04-30 00:00:00\n", + "Selling MOS on 2016-04-30 00:00:00\n", + "Selling APA on 2016-04-30 00:00:00\n", + "Selling MOH on 2016-04-30 00:00:00\n", + "Selling NOW on 2016-04-30 00:00:00\n", + "Selling ANET on 2016-04-30 00:00:00\n", + "Selling CTRA on 2016-04-30 00:00:00\n", + "Selling ZBRA on 2016-04-30 00:00:00\n", + "Selling DXCM on 2016-04-30 00:00:00\n", + "Selling RL on 2016-04-30 00:00:00\n", + "Selling AKAM on 2016-04-30 00:00:00\n", + "Selling CF on 2016-04-30 00:00:00\n", + "Selling BLDR on 2016-04-30 00:00:00\n", + "Selling WYNN on 2016-04-30 00:00:00\n", + "Selling WDAY on 2016-04-30 00:00:00\n", + "Selling OKE on 2016-04-30 00:00:00\n", + "Selling DVN on 2016-04-30 00:00:00\n", + "Selling STX 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", + "Selling WMB on 2016-04-30 00:00:00\n", + "Selling ENPH on 2016-04-30 00:00:00\n", + "Selling AMD on 2016-04-30 00:00:00\n", + "Buying JNJ on 2016-05-31 00:00:00\n", + "Buying MMC on 2016-05-31 00:00:00\n", + "Buying ITW on 2016-05-31 00:00:00\n", + "Buying HON on 2016-05-31 00:00:00\n", + "Buying MMM on 2016-05-31 00:00:00\n", + "Buying OMC on 2016-05-31 00:00:00\n", + "Buying BRK-B on 2016-05-31 00:00:00\n", + "Buying ADP on 2016-05-31 00:00:00\n", + "Buying VRSK on 2016-05-31 00:00:00\n", + "Buying UPS on 2016-05-31 00:00:00\n", + "Buying MA on 2016-05-31 00:00:00\n", + "Buying APH on 2016-05-31 00:00:00\n", + "Buying RTX on 2016-05-31 00:00:00\n", + "Buying KLAC on 2016-05-31 00:00:00\n", + "Buying TMO on 2016-05-31 00:00:00\n", + "Buying DHR on 2016-05-31 00:00:00\n", + "Buying GE on 2016-05-31 00:00:00\n", + "Buying IEX on 2016-05-31 00:00:00\n", + "Buying SYK on 2016-05-31 00:00:00\n", + "Buying CMCSA on 2016-05-31 00:00:00\n", + "Buying AFL on 2016-05-31 00:00:00\n", + "Buying CCI on 2016-05-31 00:00:00\n", + "Buying HSIC on 2016-05-31 00:00:00\n", + "Buying LMT on 2016-05-31 00:00:00\n", + "Buying T on 2016-05-31 00:00:00\n", + "Buying PAYX on 2016-05-31 00:00:00\n", + "Buying TROW on 2016-05-31 00:00:00\n", + "Buying ZBH on 2016-05-31 00:00:00\n", + "Buying HD on 2016-05-31 00:00:00\n", + "Buying JKHY on 2016-05-31 00:00:00\n", + "Buying MDT on 2016-05-31 00:00:00\n", + "Buying AON on 2016-05-31 00:00:00\n", + "Buying MSCI on 2016-05-31 00:00:00\n", + "Buying XOM on 2016-05-31 00:00:00\n", + "Buying XYL on 2016-05-31 00:00:00\n", + "Buying PG on 2016-05-31 00:00:00\n", + "Buying SNPS on 2016-05-31 00:00:00\n", + "Buying CINF on 2016-05-31 00:00:00\n", + "Buying ORCL on 2016-05-31 00:00:00\n", + "Buying EFX on 2016-05-31 00:00:00\n", + "Buying MRK on 2016-05-31 00:00:00\n", + "Buying FI on 2016-05-31 00:00:00\n", + "Buying TXN on 2016-05-31 00:00:00\n", + "Buying AIG on 2016-05-31 00:00:00\n", + "Buying PEP on 2016-05-31 00:00:00\n", + "Buying GL on 2016-05-31 00:00:00\n", + "Buying BDX on 2016-05-31 00:00:00\n", + "Selling CTRA on 2016-05-31 00:00:00\n", + "Selling URI on 2016-05-31 00:00:00\n", + "Selling AXON on 2016-05-31 00:00:00\n", + "Selling TSLA on 2016-05-31 00:00:00\n", + "Selling MPC on 2016-05-31 00:00:00\n", + "Selling HES on 2016-05-31 00:00:00\n", + "Selling DLTR on 2016-05-31 00:00:00\n", + "Selling PODD on 2016-05-31 00:00:00\n", + "Selling VTRS on 2016-05-31 00:00:00\n", + "Selling DXCM on 2016-05-31 00:00:00\n", + "Selling EA on 2016-05-31 00:00:00\n", + "Selling EQT on 2016-05-31 00:00:00\n", + "Selling KEYS on 2016-05-31 00:00:00\n", + "Selling MOS on 2016-05-31 00:00:00\n", + "Selling ANET on 2016-05-31 00:00:00\n", + "Selling CHTR on 2016-05-31 00:00:00\n", + "Selling NVDA on 2016-05-31 00:00:00\n", + "Selling BLDR on 2016-05-31 00:00:00\n", + "Selling BKR on 2016-05-31 00:00:00\n", + "Selling NOW on 2016-05-31 00:00:00\n", + "Selling NFLX on 2016-05-31 00:00:00\n", + "Selling EW on 2016-05-31 00:00:00\n", + "Selling ULTA on 2016-05-31 00:00:00\n", + "Selling NRG on 2016-05-31 00:00:00\n", + "Selling APA on 2016-05-31 00:00:00\n", + "Selling OKE on 2016-05-31 00:00:00\n", + "Selling REGN on 2016-05-31 00:00:00\n", + "Selling INCY on 2016-05-31 00:00:00\n", + "Selling PANW on 2016-05-31 00:00:00\n", + "Selling WYNN on 2016-05-31 00:00:00\n", + "Selling VRTX on 2016-05-31 00:00:00\n", + "Selling AMCR on 2016-05-31 00:00:00\n", + "Selling MOH on 2016-05-31 00:00:00\n", + "Selling MU on 2016-05-31 00:00:00\n", + "Selling SMCI on 2016-05-31 00:00:00\n", + "Selling ZBRA on 2016-05-31 00:00:00\n", + "Selling WDC on 2016-05-31 00:00:00\n", + "Selling CF on 2016-05-31 00:00:00\n", + "Selling MTCH on 2016-05-31 00:00:00\n", + "Selling NEM on 2016-05-31 00:00:00\n", + "Selling DVN on 2016-05-31 00:00:00\n", + "Selling TRGP on 2016-05-31 00:00:00\n", + "Selling WMB on 2016-05-31 00:00:00\n", + "Selling STX 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", + "Buying UPS on 2016-06-30 00:00:00\n", + "Buying DHR on 2016-06-30 00:00:00\n", + "Buying CTAS on 2016-06-30 00:00:00\n", + "Buying HON on 2016-06-30 00:00:00\n", + "Buying MMM on 2016-06-30 00:00:00\n", + "Buying JNJ on 2016-06-30 00:00:00\n", + "Buying MMC on 2016-06-30 00:00:00\n", + "Buying BRK-B on 2016-06-30 00:00:00\n", + "Buying RTX on 2016-06-30 00:00:00\n", + "Buying AFL on 2016-06-30 00:00:00\n", + "Buying TMO on 2016-06-30 00:00:00\n", + "Buying XOM on 2016-06-30 00:00:00\n", + "Buying ITW on 2016-06-30 00:00:00\n", + "Buying GE on 2016-06-30 00:00:00\n", + "Buying VRSK on 2016-06-30 00:00:00\n", + "Buying ACN on 2016-06-30 00:00:00\n", + "Buying APH on 2016-06-30 00:00:00\n", + "Buying SYK on 2016-06-30 00:00:00\n", + "Buying ADP on 2016-06-30 00:00:00\n", + "Buying ECL on 2016-06-30 00:00:00\n", + "Buying KLAC on 2016-06-30 00:00:00\n", + "Buying AON on 2016-06-30 00:00:00\n", + "Buying HSIC on 2016-06-30 00:00:00\n", + "Buying IEX on 2016-06-30 00:00:00\n", + "Buying ZBH on 2016-06-30 00:00:00\n", + "Buying TROW on 2016-06-30 00:00:00\n", + "Buying LMT on 2016-06-30 00:00:00\n", + "Buying L on 2016-06-30 00:00:00\n", + "Buying MDT on 2016-06-30 00:00:00\n", + "Buying TXN on 2016-06-30 00:00:00\n", + "Buying SNPS on 2016-06-30 00:00:00\n", + "Buying RSG on 2016-06-30 00:00:00\n", + "Buying APD on 2016-06-30 00:00:00\n", + "Buying PG on 2016-06-30 00:00:00\n", + "Buying CMCSA on 2016-06-30 00:00:00\n", + "Buying EFX on 2016-06-30 00:00:00\n", + "Buying BDX on 2016-06-30 00:00:00\n", + "Buying GPC on 2016-06-30 00:00:00\n", + "Buying XYL on 2016-06-30 00:00:00\n", + "Buying LIN on 2016-06-30 00:00:00\n", + "Buying MHK on 2016-06-30 00:00:00\n", + "Buying USB on 2016-06-30 00:00:00\n", + "Buying FI on 2016-06-30 00:00:00\n", + "Buying AMGN on 2016-06-30 00:00:00\n", + "Buying T on 2016-06-30 00:00:00\n", + "Buying YUM on 2016-06-30 00:00:00\n", + "Buying GL on 2016-06-30 00:00:00\n", + "Selling DXCM on 2016-06-30 00:00:00\n", + "Selling INCY on 2016-06-30 00:00:00\n", + "Selling VTRS on 2016-06-30 00:00:00\n", + "Selling HES on 2016-06-30 00:00:00\n", + "Selling BBY on 2016-06-30 00:00:00\n", + "Selling BLDR on 2016-06-30 00:00:00\n", + "Selling MNST on 2016-06-30 00:00:00\n", + "Selling SYF on 2016-06-30 00:00:00\n", + "Selling VRTX on 2016-06-30 00:00:00\n", + "Selling DLTR on 2016-06-30 00:00:00\n", + "Selling OKE on 2016-06-30 00:00:00\n", + "Selling URI on 2016-06-30 00:00:00\n", + "Selling UAL on 2016-06-30 00:00:00\n", + "Selling BKR on 2016-06-30 00:00:00\n", + "Selling KEYS on 2016-06-30 00:00:00\n", + "Selling CTRA on 2016-06-30 00:00:00\n", + "Selling PODD on 2016-06-30 00:00:00\n", + "Selling EA on 2016-06-30 00:00:00\n", + "Selling BIIB on 2016-06-30 00:00:00\n", + "Selling FFIV on 2016-06-30 00:00:00\n", + "Selling CHTR on 2016-06-30 00:00:00\n", + "Selling APA on 2016-06-30 00:00:00\n", + "Selling HSY on 2016-06-30 00:00:00\n", + "Selling NFLX on 2016-06-30 00:00:00\n", + "Selling TSLA on 2016-06-30 00:00:00\n", + "Selling MPC on 2016-06-30 00:00:00\n", + "Selling MOS on 2016-06-30 00:00:00\n", + "Selling NVDA on 2016-06-30 00:00:00\n", + "Selling NRG on 2016-06-30 00:00:00\n", + "Selling NOW on 2016-06-30 00:00:00\n", + "Selling DVN on 2016-06-30 00:00:00\n", + "Selling WYNN on 2016-06-30 00:00:00\n", + "Selling PANW on 2016-06-30 00:00:00\n", + "Selling WDC on 2016-06-30 00:00:00\n", + "Selling MU on 2016-06-30 00:00:00\n", + "Selling MOH on 2016-06-30 00:00:00\n", + "Selling ZBRA on 2016-06-30 00:00:00\n", + "Selling SMCI on 2016-06-30 00:00:00\n", + "Selling NEM on 2016-06-30 00:00:00\n", + "Selling CF on 2016-06-30 00:00:00\n", + "Selling TRGP on 2016-06-30 00:00:00\n", + "Selling WMB on 2016-06-30 00:00:00\n", + "Selling MTCH on 2016-06-30 00:00:00\n", + "Selling ENPH on 2016-06-30 00:00:00\n", + "Selling STX on 2016-06-30 00:00:00\n", + "Selling FCX on 2016-06-30 00:00:00\n", + "Selling AMD on 2016-06-30 00:00:00\n", + "Buying UPS on 2016-07-31 00:00:00\n", + "Buying MMM on 2016-07-31 00:00:00\n", + "Buying ECL on 2016-07-31 00:00:00\n", + "Buying AFL on 2016-07-31 00:00:00\n", + "Buying MMC on 2016-07-31 00:00:00\n", + "Buying PG on 2016-07-31 00:00:00\n", + "Buying JNJ on 2016-07-31 00:00:00\n", + "Buying TMO on 2016-07-31 00:00:00\n", + "Buying AJG on 2016-07-31 00:00:00\n", + "Buying PFE on 2016-07-31 00:00:00\n", + "Buying VRSK on 2016-07-31 00:00:00\n", + "Buying BRK-B on 2016-07-31 00:00:00\n", + "Buying SNPS on 2016-07-31 00:00:00\n", + "Buying LHX on 2016-07-31 00:00:00\n", + "Buying L on 2016-07-31 00:00:00\n", + "Buying CL on 2016-07-31 00:00:00\n", + "Buying IBM on 2016-07-31 00:00:00\n", + "Buying RTX on 2016-07-31 00:00:00\n", + "Buying ITW on 2016-07-31 00:00:00\n", + "Buying EFX on 2016-07-31 00:00:00\n", + "Buying WM on 2016-07-31 00:00:00\n", + "Buying HSIC on 2016-07-31 00:00:00\n", + "Buying EL on 2016-07-31 00:00:00\n", + "Buying APH on 2016-07-31 00:00:00\n", + "Buying HON on 2016-07-31 00:00:00\n", + "Buying LMT on 2016-07-31 00:00:00\n", + "Buying RSG on 2016-07-31 00:00:00\n", + "Buying APD on 2016-07-31 00:00:00\n", + "Buying USB on 2016-07-31 00:00:00\n", + "Buying GE on 2016-07-31 00:00:00\n", + "Buying JKHY on 2016-07-31 00:00:00\n", + "Buying GL on 2016-07-31 00:00:00\n", + "Buying CINF on 2016-07-31 00:00:00\n", + "Buying BDX on 2016-07-31 00:00:00\n", + "Buying TRV on 2016-07-31 00:00:00\n", + "Buying XOM on 2016-07-31 00:00:00\n", + "Buying PGR on 2016-07-31 00:00:00\n", + "Buying MDT on 2016-07-31 00:00:00\n", + "Buying EXPD on 2016-07-31 00:00:00\n", + "Buying WRB on 2016-07-31 00:00:00\n", + "Buying LH on 2016-07-31 00:00:00\n", + "Buying LIN on 2016-07-31 00:00:00\n", + "Buying GPC on 2016-07-31 00:00:00\n", + "Buying AMT on 2016-07-31 00:00:00\n", + "Buying ALLE on 2016-07-31 00:00:00\n", + "Buying XYL on 2016-07-31 00:00:00\n", + "Buying AON on 2016-07-31 00:00:00\n", + "Selling AKAM on 2016-07-31 00:00:00\n", + "Selling ALB on 2016-07-31 00:00:00\n", + "Selling DECK on 2016-07-31 00:00:00\n", + "Selling DXCM on 2016-07-31 00:00:00\n", + "Selling BLDR on 2016-07-31 00:00:00\n", + "Selling BBY on 2016-07-31 00:00:00\n", + "Selling FFIV on 2016-07-31 00:00:00\n", + "Selling INCY on 2016-07-31 00:00:00\n", + "Selling HES on 2016-07-31 00:00:00\n", + "Selling SYF on 2016-07-31 00:00:00\n", + "Selling SWKS on 2016-07-31 00:00:00\n", + "Selling LUV on 2016-07-31 00:00:00\n", + "Selling DLTR on 2016-07-31 00:00:00\n", + "Selling UAL on 2016-07-31 00:00:00\n", + "Selling BKR on 2016-07-31 00:00:00\n", + "Selling MOH on 2016-07-31 00:00:00\n", + "Selling CHTR on 2016-07-31 00:00:00\n", + "Selling KEYS on 2016-07-31 00:00:00\n", + "Selling EA on 2016-07-31 00:00:00\n", + "Selling APA on 2016-07-31 00:00:00\n", + "Selling URI on 2016-07-31 00:00:00\n", + "Selling WYNN on 2016-07-31 00:00:00\n", + "Selling BIIB on 2016-07-31 00:00:00\n", + "Selling TSLA on 2016-07-31 00:00:00\n", + "Selling TRGP on 2016-07-31 00:00:00\n", + "Selling HSY on 2016-07-31 00:00:00\n", + "Selling NVDA on 2016-07-31 00:00:00\n", + "Selling MPC on 2016-07-31 00:00:00\n", + "Selling MOS on 2016-07-31 00:00:00\n", + "Selling NRG on 2016-07-31 00:00:00\n", + "Selling NFLX on 2016-07-31 00:00:00\n", + "Selling HUM on 2016-07-31 00:00:00\n", + "Selling PANW on 2016-07-31 00:00:00\n", + "Selling DVN on 2016-07-31 00:00:00\n", + "Selling WDC on 2016-07-31 00:00:00\n", + "Selling NEM on 2016-07-31 00:00:00\n", + "Selling MU on 2016-07-31 00:00:00\n", + "Selling WMB on 2016-07-31 00:00:00\n", + "Selling ZBRA on 2016-07-31 00:00:00\n", + "Selling CF on 2016-07-31 00:00:00\n", + "Selling MTCH on 2016-07-31 00:00:00\n", + "Selling STX on 2016-07-31 00:00:00\n", + "Selling ENPH on 2016-07-31 00:00:00\n", + "Selling SMCI on 2016-07-31 00:00:00\n", + "Selling AMD on 2016-07-31 00:00:00\n", + "Selling FCX on 2016-07-31 00:00:00\n", + "Selling DHR on 2016-07-31 00:00:00\n", + "Buying MMM on 2016-08-31 00:00:00\n", + "Buying IBM on 2016-08-31 00:00:00\n", + "Buying UPS on 2016-08-31 00:00:00\n", + "Buying CB on 2016-08-31 00:00:00\n", + "Buying BRK-B on 2016-08-31 00:00:00\n", + "Buying PG on 2016-08-31 00:00:00\n", + "Buying EVRG on 2016-08-31 00:00:00\n", + "Buying ALL on 2016-08-31 00:00:00\n", + "Buying MMC on 2016-08-31 00:00:00\n", + "Buying CL on 2016-08-31 00:00:00\n", + "Buying AFL on 2016-08-31 00:00:00\n", + "Buying DIS on 2016-08-31 00:00:00\n", + "Buying EFX on 2016-08-31 00:00:00\n", + "Buying L on 2016-08-31 00:00:00\n", + "Buying AJG on 2016-08-31 00:00:00\n", + "Buying JNJ on 2016-08-31 00:00:00\n", + "Buying CSCO on 2016-08-31 00:00:00\n", + "Buying RTX on 2016-08-31 00:00:00\n", + "Buying ITW on 2016-08-31 00:00:00\n", + "Buying USB on 2016-08-31 00:00:00\n", + "Buying TMO on 2016-08-31 00:00:00\n", + "Buying APH on 2016-08-31 00:00:00\n", + "Buying CINF on 2016-08-31 00:00:00\n", + "Buying PEP on 2016-08-31 00:00:00\n", + "Buying HON on 2016-08-31 00:00:00\n", + "Buying GE on 2016-08-31 00:00:00\n", + "Buying TRV on 2016-08-31 00:00:00\n", + "Buying MSCI on 2016-08-31 00:00:00\n", + "Buying GL on 2016-08-31 00:00:00\n", + "Buying APD on 2016-08-31 00:00:00\n", + "Buying JPM on 2016-08-31 00:00:00\n", + "Buying MDT on 2016-08-31 00:00:00\n", + "Buying WMT on 2016-08-31 00:00:00\n", + "Buying TDG on 2016-08-31 00:00:00\n", + "Buying ORCL on 2016-08-31 00:00:00\n", + "Buying ALLE on 2016-08-31 00:00:00\n", + "Buying CMCSA on 2016-08-31 00:00:00\n", + "Buying WRB on 2016-08-31 00:00:00\n", + "Buying FDS on 2016-08-31 00:00:00\n", + "Buying NOC on 2016-08-31 00:00:00\n", + "Buying SYY on 2016-08-31 00:00:00\n", + "Buying LH on 2016-08-31 00:00:00\n", + "Buying MO on 2016-08-31 00:00:00\n", + "Buying PGR on 2016-08-31 00:00:00\n", + "Buying HD on 2016-08-31 00:00:00\n", + "Buying UNH on 2016-08-31 00:00:00\n", + "Buying ECL on 2016-08-31 00:00:00\n", + "Selling CTRA on 2016-08-31 00:00:00\n", + "Selling RL on 2016-08-31 00:00:00\n", + "Selling HES on 2016-08-31 00:00:00\n", + "Selling GRMN on 2016-08-31 00:00:00\n", + "Selling SYF on 2016-08-31 00:00:00\n", + "Selling APA on 2016-08-31 00:00:00\n", + "Selling IDXX on 2016-08-31 00:00:00\n", + "Selling URI on 2016-08-31 00:00:00\n", + "Selling INCY on 2016-08-31 00:00:00\n", + "Selling DE on 2016-08-31 00:00:00\n", + "Selling AKAM on 2016-08-31 00:00:00\n", + "Selling TRGP on 2016-08-31 00:00:00\n", + "Selling LUV on 2016-08-31 00:00:00\n", + "Selling RCL on 2016-08-31 00:00:00\n", + "Selling MOH on 2016-08-31 00:00:00\n", + "Selling TSLA on 2016-08-31 00:00:00\n", + "Selling BIIB on 2016-08-31 00:00:00\n", + "Selling GDDY on 2016-08-31 00:00:00\n", + "Selling MPC on 2016-08-31 00:00:00\n", + "Selling NCLH on 2016-08-31 00:00:00\n", + "Selling ZBRA on 2016-08-31 00:00:00\n", + "Selling WYNN on 2016-08-31 00:00:00\n", + "Selling HUM on 2016-08-31 00:00:00\n", + "Selling NEM on 2016-08-31 00:00:00\n", + "Selling NRG on 2016-08-31 00:00:00\n", + "Selling UAL on 2016-08-31 00:00:00\n", + "Selling DVN on 2016-08-31 00:00:00\n", + "Selling NFLX on 2016-08-31 00:00:00\n", + "Selling BMY on 2016-08-31 00:00:00\n", + "Selling WDC on 2016-08-31 00:00:00\n", + "Selling MOS on 2016-08-31 00:00:00\n", + "Selling FSLR on 2016-08-31 00:00:00\n", + "Selling NTAP on 2016-08-31 00:00:00\n", + "Selling DG on 2016-08-31 00:00:00\n", + "Selling PODD on 2016-08-31 00:00:00\n", + "Selling HSY on 2016-08-31 00:00:00\n", + "Selling MU on 2016-08-31 00:00:00\n", + "Selling ENPH on 2016-08-31 00:00:00\n", + "Selling BBY on 2016-08-31 00:00:00\n", + "Selling FCX on 2016-08-31 00:00:00\n", + "Selling WMB on 2016-08-31 00:00:00\n", + "Selling MTCH on 2016-08-31 00:00:00\n", + "Selling CF on 2016-08-31 00:00:00\n", + "Selling STX on 2016-08-31 00:00:00\n", + "Selling SMCI on 2016-08-31 00:00:00\n", + "Selling AMD on 2016-08-31 00:00:00\n", + "Selling DHR on 2016-08-31 00:00:00\n", + "Buying MMM on 2016-09-30 00:00:00\n", + "Buying ALL on 2016-09-30 00:00:00\n", + "Buying BRK-B on 2016-09-30 00:00:00\n", + "Buying UPS on 2016-09-30 00:00:00\n", + "Buying CB on 2016-09-30 00:00:00\n", + "Buying MMC on 2016-09-30 00:00:00\n", + "Buying PEP on 2016-09-30 00:00:00\n", + "Buying AJG on 2016-09-30 00:00:00\n", + "Buying JNJ on 2016-09-30 00:00:00\n", + "Buying GE on 2016-09-30 00:00:00\n", + "Buying TRV on 2016-09-30 00:00:00\n", + "Buying IBM on 2016-09-30 00:00:00\n", + "Buying CINF on 2016-09-30 00:00:00\n", + "Buying APH on 2016-09-30 00:00:00\n", + "Buying V on 2016-09-30 00:00:00\n", + "Buying LH on 2016-09-30 00:00:00\n", + "Buying EVRG on 2016-09-30 00:00:00\n", + "Buying EFX on 2016-09-30 00:00:00\n", + "Buying DIS on 2016-09-30 00:00:00\n", + "Buying CMCSA on 2016-09-30 00:00:00\n", + "Buying DHR on 2016-09-30 00:00:00\n", + "Buying CSCO on 2016-09-30 00:00:00\n", + "Buying HD on 2016-09-30 00:00:00\n", + "Buying AFL on 2016-09-30 00:00:00\n", + "Buying MCO on 2016-09-30 00:00:00\n", + "Buying MA on 2016-09-30 00:00:00\n", + "Buying ITW on 2016-09-30 00:00:00\n", + "Buying AXP on 2016-09-30 00:00:00\n", + "Buying USB on 2016-09-30 00:00:00\n", + "Buying GOOG on 2016-09-30 00:00:00\n", + "Buying NVR on 2016-09-30 00:00:00\n", + "Buying MDT on 2016-09-30 00:00:00\n", + "Buying WRB on 2016-09-30 00:00:00\n", + "Buying JPM on 2016-09-30 00:00:00\n", + "Buying GL on 2016-09-30 00:00:00\n", + "Buying WM on 2016-09-30 00:00:00\n", + "Buying BLK on 2016-09-30 00:00:00\n", + "Buying NOC on 2016-09-30 00:00:00\n", + "Buying CL on 2016-09-30 00:00:00\n", + "Buying DGX on 2016-09-30 00:00:00\n", + "Buying AMCR on 2016-09-30 00:00:00\n", + "Buying PGR on 2016-09-30 00:00:00\n", + "Buying PG on 2016-09-30 00:00:00\n", + "Buying AON on 2016-09-30 00:00:00\n", + "Buying L on 2016-09-30 00:00:00\n", + "Buying RTX on 2016-09-30 00:00:00\n", + "Buying HON on 2016-09-30 00:00:00\n", + "Selling CNC on 2016-09-30 00:00:00\n", + "Selling EOG on 2016-09-30 00:00:00\n", + "Selling ZBRA on 2016-09-30 00:00:00\n", + "Selling PANW on 2016-09-30 00:00:00\n", + "Selling GRMN on 2016-09-30 00:00:00\n", + "Selling IDXX on 2016-09-30 00:00:00\n", + "Selling INCY on 2016-09-30 00:00:00\n", + "Selling SWKS on 2016-09-30 00:00:00\n", + "Selling AKAM on 2016-09-30 00:00:00\n", + "Selling NRG on 2016-09-30 00:00:00\n", + "Selling LUV on 2016-09-30 00:00:00\n", + "Selling DE on 2016-09-30 00:00:00\n", + "Selling BIIB on 2016-09-30 00:00:00\n", + "Selling URI on 2016-09-30 00:00:00\n", + "Selling CTSH on 2016-09-30 00:00:00\n", + "Selling MOH on 2016-09-30 00:00:00\n", + "Selling TRGP on 2016-09-30 00:00:00\n", + "Selling GDDY on 2016-09-30 00:00:00\n", + "Selling MU on 2016-09-30 00:00:00\n", + "Selling UAL on 2016-09-30 00:00:00\n", + "Selling RCL on 2016-09-30 00:00:00\n", + "Selling MOS on 2016-09-30 00:00:00\n", + "Selling NFLX on 2016-09-30 00:00:00\n", + "Selling HES on 2016-09-30 00:00:00\n", + "Selling NEM on 2016-09-30 00:00:00\n", + "Selling NTAP on 2016-09-30 00:00:00\n", + "Selling BMY on 2016-09-30 00:00:00\n", + "Selling TSCO on 2016-09-30 00:00:00\n", + "Selling FSLR on 2016-09-30 00:00:00\n", + "Selling MTCH on 2016-09-30 00:00:00\n", + "Selling APA on 2016-09-30 00:00:00\n", + "Selling NCLH on 2016-09-30 00:00:00\n", + "Selling WYNN on 2016-09-30 00:00:00\n", + "Selling DG on 2016-09-30 00:00:00\n", + "Selling WMB on 2016-09-30 00:00:00\n", + "Selling DVN on 2016-09-30 00:00:00\n", + "Selling FCX on 2016-09-30 00:00:00\n", + "Selling WDC on 2016-09-30 00:00:00\n", + "Selling NXPI on 2016-09-30 00:00:00\n", + "Selling PODD on 2016-09-30 00:00:00\n", + "Selling BBY on 2016-09-30 00:00:00\n", + "Selling CF on 2016-09-30 00:00:00\n", + "Selling TPL on 2016-09-30 00:00:00\n", + "Selling STX on 2016-09-30 00:00:00\n", + "Selling AMD on 2016-09-30 00:00:00\n", + "Selling SMCI on 2016-09-30 00:00:00\n", + "Selling ENPH on 2016-09-30 00:00:00\n", + "Buying ECL on 2016-10-31 00:00:00\n", + "Buying EVRG on 2016-10-31 00:00:00\n", + "Buying UPS on 2016-10-31 00:00:00\n", + "Buying BRK-B on 2016-10-31 00:00:00\n", + "Buying VRSK on 2016-10-31 00:00:00\n", + "Buying KO on 2016-10-31 00:00:00\n", + "Buying V on 2016-10-31 00:00:00\n", + "Buying PEP on 2016-10-31 00:00:00\n", + "Buying ALL on 2016-10-31 00:00:00\n", + "Buying GOOGL on 2016-10-31 00:00:00\n", + "Buying CL on 2016-10-31 00:00:00\n", + "Buying JPM on 2016-10-31 00:00:00\n", + "Buying GOOG on 2016-10-31 00:00:00\n", + "Buying SPGI on 2016-10-31 00:00:00\n", + "Buying DIS on 2016-10-31 00:00:00\n", + "Buying USB on 2016-10-31 00:00:00\n", + "Buying AJG on 2016-10-31 00:00:00\n", + "Buying ADP on 2016-10-31 00:00:00\n", + "Buying MMM on 2016-10-31 00:00:00\n", + "Buying PFE on 2016-10-31 00:00:00\n", + "Buying BDX on 2016-10-31 00:00:00\n", + "Buying GE on 2016-10-31 00:00:00\n", + "Buying BLK on 2016-10-31 00:00:00\n", + "Buying AMCR on 2016-10-31 00:00:00\n", + "Buying NVR on 2016-10-31 00:00:00\n", + "Buying GL on 2016-10-31 00:00:00\n", + "Buying AIG on 2016-10-31 00:00:00\n", + "Buying PM on 2016-10-31 00:00:00\n", + "Buying BKNG on 2016-10-31 00:00:00\n", + "Buying CSCO on 2016-10-31 00:00:00\n", + "Buying GD on 2016-10-31 00:00:00\n", + "Buying MA on 2016-10-31 00:00:00\n", + "Buying K on 2016-10-31 00:00:00\n", + "Buying LHX on 2016-10-31 00:00:00\n", + "Buying MSI on 2016-10-31 00:00:00\n", + "Buying DFS on 2016-10-31 00:00:00\n", + "Buying HUBB on 2016-10-31 00:00:00\n", + "Buying ICE on 2016-10-31 00:00:00\n", + "Buying IT on 2016-10-31 00:00:00\n", + "Buying FIS on 2016-10-31 00:00:00\n", + "Buying META on 2016-10-31 00:00:00\n", + "Buying AFL on 2016-10-31 00:00:00\n", + "Buying TXN on 2016-10-31 00:00:00\n", + "Buying MMC on 2016-10-31 00:00:00\n", + "Buying ANSS on 2016-10-31 00:00:00\n", + "Buying MDT on 2016-10-31 00:00:00\n", + "Buying NDAQ on 2016-10-31 00:00:00\n", + "Selling BLDR on 2016-10-31 00:00:00\n", + "Selling COR on 2016-10-31 00:00:00\n", + "Selling NOW on 2016-10-31 00:00:00\n", + "Selling SMCI on 2016-10-31 00:00:00\n", + "Selling DE on 2016-10-31 00:00:00\n", + "Selling BMY on 2016-10-31 00:00:00\n", + "Selling INCY on 2016-10-31 00:00:00\n", + "Selling CMG on 2016-10-31 00:00:00\n", + "Selling COP on 2016-10-31 00:00:00\n", + "Selling HES on 2016-10-31 00:00:00\n", + "Selling NRG on 2016-10-31 00:00:00\n", + "Selling WYNN on 2016-10-31 00:00:00\n", + "Selling CRM on 2016-10-31 00:00:00\n", + "Selling DECK on 2016-10-31 00:00:00\n", + "Selling LULU on 2016-10-31 00:00:00\n", + "Selling BKR on 2016-10-31 00:00:00\n", + "Selling ZBH on 2016-10-31 00:00:00\n", + "Selling MTCH on 2016-10-31 00:00:00\n", + "Selling FTNT on 2016-10-31 00:00:00\n", + "Selling CTRA on 2016-10-31 00:00:00\n", + "Selling ULTA on 2016-10-31 00:00:00\n", + "Selling VTRS on 2016-10-31 00:00:00\n", + "Selling MOS on 2016-10-31 00:00:00\n", + "Selling DVN on 2016-10-31 00:00:00\n", + "Selling AKAM on 2016-10-31 00:00:00\n", + "Selling CTSH on 2016-10-31 00:00:00\n", + "Selling APA on 2016-10-31 00:00:00\n", + "Selling FANG on 2016-10-31 00:00:00\n", + "Selling FSLR on 2016-10-31 00:00:00\n", + "Selling FCX on 2016-10-31 00:00:00\n", + "Selling RCL on 2016-10-31 00:00:00\n", + "Selling NTAP on 2016-10-31 00:00:00\n", + "Selling CF on 2016-10-31 00:00:00\n", + "Selling WDC on 2016-10-31 00:00:00\n", + "Selling TSCO on 2016-10-31 00:00:00\n", + "Selling NEM on 2016-10-31 00:00:00\n", + "Selling NCLH on 2016-10-31 00:00:00\n", + "Selling EW on 2016-10-31 00:00:00\n", + "Selling AXON on 2016-10-31 00:00:00\n", + "Selling DG on 2016-10-31 00:00:00\n", + "Selling NXPI on 2016-10-31 00:00:00\n", + "Selling NFLX on 2016-10-31 00:00:00\n", + "Selling BBY on 2016-10-31 00:00:00\n", + "Selling MCK on 2016-10-31 00:00:00\n", + "Selling AMD on 2016-10-31 00:00:00\n", + "Selling TPL on 2016-10-31 00:00:00\n", + "Selling ENPH on 2016-10-31 00:00:00\n", + "Buying AMCR on 2016-11-30 00:00:00\n", + "Buying EVRG on 2016-11-30 00:00:00\n", + "Buying ECL on 2016-11-30 00:00:00\n", + "Buying VRSK on 2016-11-30 00:00:00\n", + "Buying UPS on 2016-11-30 00:00:00\n", + "Buying BRK-B on 2016-11-30 00:00:00\n", + "Buying SNPS on 2016-11-30 00:00:00\n", + "Buying RSG on 2016-11-30 00:00:00\n", + "Buying GLW on 2016-11-30 00:00:00\n", + "Buying NVR on 2016-11-30 00:00:00\n", + "Buying GE on 2016-11-30 00:00:00\n", + "Buying ROP on 2016-11-30 00:00:00\n", + "Buying MMM on 2016-11-30 00:00:00\n", + "Buying HUBB on 2016-11-30 00:00:00\n", + "Buying TEL on 2016-11-30 00:00:00\n", + "Buying IEX on 2016-11-30 00:00:00\n", + "Buying TXN on 2016-11-30 00:00:00\n", + "Buying APH on 2016-11-30 00:00:00\n", + "Buying DIS on 2016-11-30 00:00:00\n", + "Buying MMC on 2016-11-30 00:00:00\n", + "Buying AFL on 2016-11-30 00:00:00\n", + "Buying CHRW on 2016-11-30 00:00:00\n", + "Buying AJG on 2016-11-30 00:00:00\n", + "Buying JKHY on 2016-11-30 00:00:00\n", + "Buying WM on 2016-11-30 00:00:00\n", + "Buying KO on 2016-11-30 00:00:00\n", + "Buying APD on 2016-11-30 00:00:00\n", + "Buying LIN on 2016-11-30 00:00:00\n", + "Buying ITW on 2016-11-30 00:00:00\n", + "Buying ORCL on 2016-11-30 00:00:00\n", + "Buying INTU on 2016-11-30 00:00:00\n", + "Buying ADP on 2016-11-30 00:00:00\n", + "Buying JNJ on 2016-11-30 00:00:00\n", + "Buying USB on 2016-11-30 00:00:00\n", + "Buying STE on 2016-11-30 00:00:00\n", + "Buying GL on 2016-11-30 00:00:00\n", + "Buying ERIE on 2016-11-30 00:00:00\n", + "Buying FI on 2016-11-30 00:00:00\n", + "Buying AON on 2016-11-30 00:00:00\n", + "Buying BLK on 2016-11-30 00:00:00\n", + "Buying NDAQ on 2016-11-30 00:00:00\n", + "Buying DD on 2016-11-30 00:00:00\n", + "Buying RTX on 2016-11-30 00:00:00\n", + "Buying ALL on 2016-11-30 00:00:00\n", + "Buying SBUX on 2016-11-30 00:00:00\n", + "Buying MCD on 2016-11-30 00:00:00\n", + "Buying SPGI on 2016-11-30 00:00:00\n", + "Selling AKAM on 2016-11-30 00:00:00\n", + "Selling MOS on 2016-11-30 00:00:00\n", + "Selling HCA on 2016-11-30 00:00:00\n", + "Selling SMCI on 2016-11-30 00:00:00\n", + "Selling BKR on 2016-11-30 00:00:00\n", + "Selling BBY on 2016-11-30 00:00:00\n", + "Selling PANW on 2016-11-30 00:00:00\n", + "Selling CMG on 2016-11-30 00:00:00\n", + "Selling DECK on 2016-11-30 00:00:00\n", + "Selling CTRA on 2016-11-30 00:00:00\n", + "Selling TRGP on 2016-11-30 00:00:00\n", + "Selling WYNN on 2016-11-30 00:00:00\n", + "Selling INCY on 2016-11-30 00:00:00\n", + "Selling WDC on 2016-11-30 00:00:00\n", + "Selling VRTX on 2016-11-30 00:00:00\n", + "Selling MTCH on 2016-11-30 00:00:00\n", + "Selling COP on 2016-11-30 00:00:00\n", + "Selling REGN on 2016-11-30 00:00:00\n", + "Selling NCLH on 2016-11-30 00:00:00\n", + "Selling TSCO on 2016-11-30 00:00:00\n", + "Selling CTSH on 2016-11-30 00:00:00\n", + "Selling EW on 2016-11-30 00:00:00\n", + "Selling APA on 2016-11-30 00:00:00\n", + "Selling NXPI on 2016-11-30 00:00:00\n", + "Selling TSN on 2016-11-30 00:00:00\n", + "Selling COR on 2016-11-30 00:00:00\n", + "Selling HES on 2016-11-30 00:00:00\n", + "Selling URI on 2016-11-30 00:00:00\n", + "Selling FCX on 2016-11-30 00:00:00\n", + "Selling MOH on 2016-11-30 00:00:00\n", + "Selling CF on 2016-11-30 00:00:00\n", + "Selling FANG on 2016-11-30 00:00:00\n", + "Selling NFLX on 2016-11-30 00:00:00\n", + "Selling AXON on 2016-11-30 00:00:00\n", + "Selling NRG on 2016-11-30 00:00:00\n", + "Selling NEM on 2016-11-30 00:00:00\n", + "Selling PODD on 2016-11-30 00:00:00\n", + "Selling PAYC on 2016-11-30 00:00:00\n", + "Selling FSLR on 2016-11-30 00:00:00\n", + "Selling DXCM on 2016-11-30 00:00:00\n", + "Selling DVN on 2016-11-30 00:00:00\n", + "Selling CNC on 2016-11-30 00:00:00\n", + "Selling MCK on 2016-11-30 00:00:00\n", + "Selling TPL on 2016-11-30 00:00:00\n", + "Selling AMD on 2016-11-30 00:00:00\n", + "Selling NVDA on 2016-11-30 00:00:00\n", + "Selling ENPH on 2016-11-30 00:00:00\n", + "Buying EVRG on 2016-12-31 00:00:00\n", + "Buying VRSK on 2016-12-31 00:00:00\n", + "Buying UPS on 2016-12-31 00:00:00\n", + "Buying ECL on 2016-12-31 00:00:00\n", + "Buying APD on 2016-12-31 00:00:00\n", + "Buying BRK-B on 2016-12-31 00:00:00\n", + "Buying RSG on 2016-12-31 00:00:00\n", + "Buying HUBB on 2016-12-31 00:00:00\n", + "Buying ROP on 2016-12-31 00:00:00\n", + "Buying PAYX on 2016-12-31 00:00:00\n", + "Buying TEL on 2016-12-31 00:00:00\n", + "Buying MMC on 2016-12-31 00:00:00\n", + "Buying MMM on 2016-12-31 00:00:00\n", + "Buying INTU on 2016-12-31 00:00:00\n", + "Buying ADP on 2016-12-31 00:00:00\n", + "Buying KO on 2016-12-31 00:00:00\n", + "Buying APH on 2016-12-31 00:00:00\n", + "Buying DIS on 2016-12-31 00:00:00\n", + "Buying DD on 2016-12-31 00:00:00\n", + "Buying JKHY on 2016-12-31 00:00:00\n", + "Buying STE on 2016-12-31 00:00:00\n", + "Buying GLW on 2016-12-31 00:00:00\n", + "Buying ITW on 2016-12-31 00:00:00\n", + "Buying XOM on 2016-12-31 00:00:00\n", + "Buying WM on 2016-12-31 00:00:00\n", + "Buying FI on 2016-12-31 00:00:00\n", + "Buying USB on 2016-12-31 00:00:00\n", + "Buying MCD on 2016-12-31 00:00:00\n", + "Buying GE on 2016-12-31 00:00:00\n", + "Buying FDX on 2016-12-31 00:00:00\n", + "Buying GL on 2016-12-31 00:00:00\n", + "Buying AJG on 2016-12-31 00:00:00\n", + "Buying ERIE on 2016-12-31 00:00:00\n", + "Buying IEX on 2016-12-31 00:00:00\n", + "Buying ALL on 2016-12-31 00:00:00\n", + "Buying AFL on 2016-12-31 00:00:00\n", + "Buying COST on 2016-12-31 00:00:00\n", + "Buying NVR on 2016-12-31 00:00:00\n", + "Buying WRB on 2016-12-31 00:00:00\n", + "Buying RTX on 2016-12-31 00:00:00\n", + "Buying CB on 2016-12-31 00:00:00\n", + "Buying NXPI on 2016-12-31 00:00:00\n", + "Buying PSX on 2016-12-31 00:00:00\n", + "Buying ACGL on 2016-12-31 00:00:00\n", + "Buying PEP on 2016-12-31 00:00:00\n", + "Buying NDAQ on 2016-12-31 00:00:00\n", + "Buying L on 2016-12-31 00:00:00\n", + "Selling HCA on 2016-12-31 00:00:00\n", + "Selling LVS on 2016-12-31 00:00:00\n", + "Selling AMP on 2016-12-31 00:00:00\n", + "Selling ZBH on 2016-12-31 00:00:00\n", + "Selling AKAM on 2016-12-31 00:00:00\n", + "Selling PANW on 2016-12-31 00:00:00\n", + "Selling SMCI on 2016-12-31 00:00:00\n", + "Selling BBY on 2016-12-31 00:00:00\n", + "Selling VTRS on 2016-12-31 00:00:00\n", + "Selling TPL on 2016-12-31 00:00:00\n", + "Selling MTCH on 2016-12-31 00:00:00\n", + "Selling CTRA on 2016-12-31 00:00:00\n", + "Selling MU on 2016-12-31 00:00:00\n", + "Selling CMG on 2016-12-31 00:00:00\n", + "Selling CZR on 2016-12-31 00:00:00\n", + "Selling HES on 2016-12-31 00:00:00\n", + "Selling MOS on 2016-12-31 00:00:00\n", + "Selling REGN on 2016-12-31 00:00:00\n", + "Selling DECK on 2016-12-31 00:00:00\n", + "Selling WYNN on 2016-12-31 00:00:00\n", + "Selling UHS on 2016-12-31 00:00:00\n", + "Selling INCY on 2016-12-31 00:00:00\n", + "Selling VRTX on 2016-12-31 00:00:00\n", + "Selling AXON on 2016-12-31 00:00:00\n", + "Selling URI on 2016-12-31 00:00:00\n", + "Selling DVN on 2016-12-31 00:00:00\n", + "Selling LULU on 2016-12-31 00:00:00\n", + "Selling NCLH on 2016-12-31 00:00:00\n", + "Selling FANG on 2016-12-31 00:00:00\n", + "Selling FCX on 2016-12-31 00:00:00\n", + "Selling TSN on 2016-12-31 00:00:00\n", + "Selling EW on 2016-12-31 00:00:00\n", + "Selling NFLX on 2016-12-31 00:00:00\n", + "Selling MOH on 2016-12-31 00:00:00\n", + "Selling COR on 2016-12-31 00:00:00\n", + "Selling NEM on 2016-12-31 00:00:00\n", + "Selling NRG on 2016-12-31 00:00:00\n", + "Selling PODD on 2016-12-31 00:00:00\n", + "Selling CF on 2016-12-31 00:00:00\n", + "Selling PAYC on 2016-12-31 00:00:00\n", + "Selling DXCM on 2016-12-31 00:00:00\n", + "Selling FSLR on 2016-12-31 00:00:00\n", + "Selling CNC on 2016-12-31 00:00:00\n", + "Selling MCK on 2016-12-31 00:00:00\n", + "Selling AMD on 2016-12-31 00:00:00\n", + "Selling NVDA on 2016-12-31 00:00:00\n", + "Selling ENPH on 2016-12-31 00:00:00\n", + "Buying VRSK on 2017-01-31 00:00:00\n", + "Buying RSG on 2017-01-31 00:00:00\n", + "Buying EVRG on 2017-01-31 00:00:00\n", + "Buying CB on 2017-01-31 00:00:00\n", + "Buying MMC on 2017-01-31 00:00:00\n", + "Buying WM on 2017-01-31 00:00:00\n", + "Buying ROP on 2017-01-31 00:00:00\n", + "Buying HON on 2017-01-31 00:00:00\n", + "Buying NXPI on 2017-01-31 00:00:00\n", + "Buying ADP on 2017-01-31 00:00:00\n", + "Buying L on 2017-01-31 00:00:00\n", + "Buying ITW on 2017-01-31 00:00:00\n", + "Buying EG on 2017-01-31 00:00:00\n", + "Buying BRK-B on 2017-01-31 00:00:00\n", + "Buying FI on 2017-01-31 00:00:00\n", + "Buying MMM on 2017-01-31 00:00:00\n", + "Buying ECL on 2017-01-31 00:00:00\n", + "Buying ACGL on 2017-01-31 00:00:00\n", + "Buying WRB on 2017-01-31 00:00:00\n", + "Buying CTAS on 2017-01-31 00:00:00\n", + "Buying YUM on 2017-01-31 00:00:00\n", + "Buying MCD on 2017-01-31 00:00:00\n", + "Buying APH on 2017-01-31 00:00:00\n", + "Buying ERIE on 2017-01-31 00:00:00\n", + "Buying PAYX on 2017-01-31 00:00:00\n", + "Buying FTV on 2017-01-31 00:00:00\n", + "Buying JKHY on 2017-01-31 00:00:00\n", + "Buying CVX on 2017-01-31 00:00:00\n", + "Buying AFL on 2017-01-31 00:00:00\n", + "Buying INTU on 2017-01-31 00:00:00\n", + "Buying RTX on 2017-01-31 00:00:00\n", + "Buying AON on 2017-01-31 00:00:00\n", + "Buying INTC on 2017-01-31 00:00:00\n", + "Buying HSY on 2017-01-31 00:00:00\n", + "Buying AJG on 2017-01-31 00:00:00\n", + "Buying SNA on 2017-01-31 00:00:00\n", + "Buying ALL on 2017-01-31 00:00:00\n", + "Buying KO on 2017-01-31 00:00:00\n", + "Buying TRV on 2017-01-31 00:00:00\n", + "Buying HUBB on 2017-01-31 00:00:00\n", + "Buying STE on 2017-01-31 00:00:00\n", + "Buying GL on 2017-01-31 00:00:00\n", + "Buying LHX on 2017-01-31 00:00:00\n", + "Buying GE on 2017-01-31 00:00:00\n", + "Buying TEL on 2017-01-31 00:00:00\n", + "Buying TT on 2017-01-31 00:00:00\n", + "Buying JNJ on 2017-01-31 00:00:00\n", + "Buying IEX on 2017-01-31 00:00:00\n", + "Selling NUE on 2017-01-31 00:00:00\n", + "Selling BLDR on 2017-01-31 00:00:00\n", + "Selling QCOM on 2017-01-31 00:00:00\n", + "Selling HCA on 2017-01-31 00:00:00\n", + "Selling ANET on 2017-01-31 00:00:00\n", + "Selling DECK on 2017-01-31 00:00:00\n", + "Selling BMY on 2017-01-31 00:00:00\n", + "Selling IT on 2017-01-31 00:00:00\n", + "Selling STX on 2017-01-31 00:00:00\n", + "Selling WMB on 2017-01-31 00:00:00\n", + "Selling SWKS on 2017-01-31 00:00:00\n", + "Selling PANW on 2017-01-31 00:00:00\n", + "Selling COR on 2017-01-31 00:00:00\n", + "Selling FANG on 2017-01-31 00:00:00\n", + "Selling CTRA on 2017-01-31 00:00:00\n", + "Selling PAYC on 2017-01-31 00:00:00\n", + "Selling BBY on 2017-01-31 00:00:00\n", + "Selling LVS on 2017-01-31 00:00:00\n", + "Selling MOS on 2017-01-31 00:00:00\n", + "Selling MU on 2017-01-31 00:00:00\n", + "Selling WDAY on 2017-01-31 00:00:00\n", + "Selling NCLH on 2017-01-31 00:00:00\n", + "Selling HES on 2017-01-31 00:00:00\n", + "Selling TSN on 2017-01-31 00:00:00\n", + "Selling CZR on 2017-01-31 00:00:00\n", + "Selling VRTX on 2017-01-31 00:00:00\n", + "Selling DVN on 2017-01-31 00:00:00\n", + "Selling UHS on 2017-01-31 00:00:00\n", + "Selling STLD on 2017-01-31 00:00:00\n", + "Selling LULU on 2017-01-31 00:00:00\n", + "Selling AXON on 2017-01-31 00:00:00\n", + "Selling REGN on 2017-01-31 00:00:00\n", + "Selling WYNN on 2017-01-31 00:00:00\n", + "Selling NRG on 2017-01-31 00:00:00\n", + "Selling MOH on 2017-01-31 00:00:00\n", + "Selling INCY on 2017-01-31 00:00:00\n", + "Selling URI on 2017-01-31 00:00:00\n", + "Selling NEM on 2017-01-31 00:00:00\n", + "Selling PODD on 2017-01-31 00:00:00\n", + "Selling CF on 2017-01-31 00:00:00\n", + "Selling FCX on 2017-01-31 00:00:00\n", + "Selling FSLR on 2017-01-31 00:00:00\n", + "Selling CNC on 2017-01-31 00:00:00\n", + "Selling CSX on 2017-01-31 00:00:00\n", + "Selling AMD on 2017-01-31 00:00:00\n", + "Selling DXCM on 2017-01-31 00:00:00\n", + "Selling NVDA on 2017-01-31 00:00:00\n", + "Selling ENPH on 2017-01-31 00:00:00\n", + "Buying NXPI on 2017-02-28 00:00:00\n", + "Buying L on 2017-02-28 00:00:00\n", + "Buying WM on 2017-02-28 00:00:00\n", + "Buying BRK-B on 2017-02-28 00:00:00\n", + "Buying HON on 2017-02-28 00:00:00\n", + "Buying MCD on 2017-02-28 00:00:00\n", + "Buying ITW on 2017-02-28 00:00:00\n", + "Buying GL on 2017-02-28 00:00:00\n", + "Buying EVRG on 2017-02-28 00:00:00\n", + "Buying RSG on 2017-02-28 00:00:00\n", + "Buying HSY on 2017-02-28 00:00:00\n", + "Buying ALL on 2017-02-28 00:00:00\n", + "Buying MMM on 2017-02-28 00:00:00\n", + "Buying WRB on 2017-02-28 00:00:00\n", + "Buying JKHY on 2017-02-28 00:00:00\n", + "Buying CB on 2017-02-28 00:00:00\n", + "Buying DGX on 2017-02-28 00:00:00\n", + "Buying YUM on 2017-02-28 00:00:00\n", + "Buying GOOG on 2017-02-28 00:00:00\n", + "Buying MO on 2017-02-28 00:00:00\n", + "Buying MMC on 2017-02-28 00:00:00\n", + "Buying SWK on 2017-02-28 00:00:00\n", + "Buying AJG on 2017-02-28 00:00:00\n", + "Buying TRV on 2017-02-28 00:00:00\n", + "Buying PEP on 2017-02-28 00:00:00\n", + "Buying ACGL on 2017-02-28 00:00:00\n", + "Buying USB on 2017-02-28 00:00:00\n", + "Buying BRO on 2017-02-28 00:00:00\n", + "Buying RTX on 2017-02-28 00:00:00\n", + "Buying FI on 2017-02-28 00:00:00\n", + "Buying CTAS on 2017-02-28 00:00:00\n", + "Buying FTV on 2017-02-28 00:00:00\n", + "Buying CSCO on 2017-02-28 00:00:00\n", + "Buying GOOGL on 2017-02-28 00:00:00\n", + "Buying DIS on 2017-02-28 00:00:00\n", + "Buying HD on 2017-02-28 00:00:00\n", + "Buying IBM on 2017-02-28 00:00:00\n", + "Buying PPL on 2017-02-28 00:00:00\n", + "Buying AON on 2017-02-28 00:00:00\n", + "Buying KO on 2017-02-28 00:00:00\n", + "Buying EG on 2017-02-28 00:00:00\n", + "Buying AXP on 2017-02-28 00:00:00\n", + "Buying TFC on 2017-02-28 00:00:00\n", + "Buying ECL on 2017-02-28 00:00:00\n", + "Buying GE on 2017-02-28 00:00:00\n", + "Buying HSIC on 2017-02-28 00:00:00\n", + "Buying MSFT on 2017-02-28 00:00:00\n", + "Buying APH on 2017-02-28 00:00:00\n", + "Selling EQT on 2017-02-28 00:00:00\n", + "Selling TDG on 2017-02-28 00:00:00\n", + "Selling JBL on 2017-02-28 00:00:00\n", + "Selling ALB on 2017-02-28 00:00:00\n", + "Selling BLDR on 2017-02-28 00:00:00\n", + "Selling TSLA on 2017-02-28 00:00:00\n", + "Selling VRTX on 2017-02-28 00:00:00\n", + "Selling AXON on 2017-02-28 00:00:00\n", + "Selling IDXX on 2017-02-28 00:00:00\n", + "Selling REGN on 2017-02-28 00:00:00\n", + "Selling VST on 2017-02-28 00:00:00\n", + "Selling NRG on 2017-02-28 00:00:00\n", + "Selling MOS on 2017-02-28 00:00:00\n", + "Selling TGT on 2017-02-28 00:00:00\n", + "Selling FTNT on 2017-02-28 00:00:00\n", + "Selling QCOM on 2017-02-28 00:00:00\n", + "Selling RL on 2017-02-28 00:00:00\n", + "Selling STX on 2017-02-28 00:00:00\n", + "Selling HWM on 2017-02-28 00:00:00\n", + "Selling BMY on 2017-02-28 00:00:00\n", + "Selling WMB on 2017-02-28 00:00:00\n", + "Selling PODD on 2017-02-28 00:00:00\n", + "Selling URI on 2017-02-28 00:00:00\n", + "Selling CZR on 2017-02-28 00:00:00\n", + "Selling LVS on 2017-02-28 00:00:00\n", + "Selling UHS on 2017-02-28 00:00:00\n", + "Selling SWKS on 2017-02-28 00:00:00\n", + "Selling HAS on 2017-02-28 00:00:00\n", + "Selling WYNN on 2017-02-28 00:00:00\n", + "Selling PAYC on 2017-02-28 00:00:00\n", + "Selling LULU on 2017-02-28 00:00:00\n", + "Selling INCY on 2017-02-28 00:00:00\n", + "Selling STLD on 2017-02-28 00:00:00\n", + "Selling MU on 2017-02-28 00:00:00\n", + "Selling NEM on 2017-02-28 00:00:00\n", + "Selling CF on 2017-02-28 00:00:00\n", + "Selling CTRA on 2017-02-28 00:00:00\n", + "Selling WDAY on 2017-02-28 00:00:00\n", + "Selling MOH on 2017-02-28 00:00:00\n", + "Selling FSLR on 2017-02-28 00:00:00\n", + "Selling FCX on 2017-02-28 00:00:00\n", + "Selling NVDA on 2017-02-28 00:00:00\n", + "Selling ANET on 2017-02-28 00:00:00\n", + "Selling DECK on 2017-02-28 00:00:00\n", + "Selling CSX on 2017-02-28 00:00:00\n", + "Selling DXCM on 2017-02-28 00:00:00\n", + "Selling AMD on 2017-02-28 00:00:00\n", + "Selling ENPH on 2017-02-28 00:00:00\n", + "Buying MCD on 2017-03-31 00:00:00\n", + "Buying GL on 2017-03-31 00:00:00\n", + "Buying NXPI on 2017-03-31 00:00:00\n", + "Buying HON on 2017-03-31 00:00:00\n", + "Buying L on 2017-03-31 00:00:00\n", + "Buying WM on 2017-03-31 00:00:00\n", + "Buying HSY on 2017-03-31 00:00:00\n", + "Buying EVRG on 2017-03-31 00:00:00\n", + "Buying ITW on 2017-03-31 00:00:00\n", + "Buying BRK-B on 2017-03-31 00:00:00\n", + "Buying MMM on 2017-03-31 00:00:00\n", + "Buying RTX on 2017-03-31 00:00:00\n", + "Buying JKHY on 2017-03-31 00:00:00\n", + "Buying ACGL on 2017-03-31 00:00:00\n", + "Buying AJG on 2017-03-31 00:00:00\n", + "Buying TRV on 2017-03-31 00:00:00\n", + "Buying DIS on 2017-03-31 00:00:00\n", + "Buying RSG on 2017-03-31 00:00:00\n", + "Buying PEP on 2017-03-31 00:00:00\n", + "Buying CB on 2017-03-31 00:00:00\n", + "Buying DGX on 2017-03-31 00:00:00\n", + "Buying SWK on 2017-03-31 00:00:00\n", + "Buying MA on 2017-03-31 00:00:00\n", + "Buying FTV on 2017-03-31 00:00:00\n", + "Buying WTW on 2017-03-31 00:00:00\n", + "Buying AON on 2017-03-31 00:00:00\n", + "Buying ALL on 2017-03-31 00:00:00\n", + "Buying ECL on 2017-03-31 00:00:00\n", + "Buying MO on 2017-03-31 00:00:00\n", + "Buying BLK on 2017-03-31 00:00:00\n", + "Buying WRB on 2017-03-31 00:00:00\n", + "Buying LIN on 2017-03-31 00:00:00\n", + "Buying MSFT on 2017-03-31 00:00:00\n", + "Buying AME on 2017-03-31 00:00:00\n", + "Buying USB on 2017-03-31 00:00:00\n", + "Buying KDP on 2017-03-31 00:00:00\n", + "Buying CSCO on 2017-03-31 00:00:00\n", + "Buying BRO on 2017-03-31 00:00:00\n", + "Buying CAG on 2017-03-31 00:00:00\n", + "Buying HSIC on 2017-03-31 00:00:00\n", + "Buying KO on 2017-03-31 00:00:00\n", + "Buying GOOG on 2017-03-31 00:00:00\n", + "Buying EXPD on 2017-03-31 00:00:00\n", + "Buying GOOGL on 2017-03-31 00:00:00\n", + "Buying HD on 2017-03-31 00:00:00\n", + "Buying YUM on 2017-03-31 00:00:00\n", + "Buying FI on 2017-03-31 00:00:00\n", + "Buying MMC on 2017-03-31 00:00:00\n", + "Selling MU on 2017-03-31 00:00:00\n", + "Selling CPAY on 2017-03-31 00:00:00\n", + "Selling IT on 2017-03-31 00:00:00\n", + "Selling NRG on 2017-03-31 00:00:00\n", + "Selling AES on 2017-03-31 00:00:00\n", + "Selling IDXX on 2017-03-31 00:00:00\n", + "Selling WMB on 2017-03-31 00:00:00\n", + "Selling WDAY on 2017-03-31 00:00:00\n", + "Selling TPL on 2017-03-31 00:00:00\n", + "Selling CZR on 2017-03-31 00:00:00\n", + "Selling TSLA on 2017-03-31 00:00:00\n", + "Selling WYNN on 2017-03-31 00:00:00\n", + "Selling QCOM on 2017-03-31 00:00:00\n", + "Selling RL on 2017-03-31 00:00:00\n", + "Selling STX on 2017-03-31 00:00:00\n", + "Selling SWKS on 2017-03-31 00:00:00\n", + "Selling BBY on 2017-03-31 00:00:00\n", + "Selling REGN on 2017-03-31 00:00:00\n", + "Selling TGT on 2017-03-31 00:00:00\n", + "Selling FTNT on 2017-03-31 00:00:00\n", + "Selling NEM on 2017-03-31 00:00:00\n", + "Selling HWM on 2017-03-31 00:00:00\n", + "Selling MNST on 2017-03-31 00:00:00\n", + "Selling FMC on 2017-03-31 00:00:00\n", + "Selling TDG on 2017-03-31 00:00:00\n", + "Selling BMY on 2017-03-31 00:00:00\n", + "Selling URI on 2017-03-31 00:00:00\n", + "Selling BLDR on 2017-03-31 00:00:00\n", + "Selling PAYC on 2017-03-31 00:00:00\n", + "Selling HAS on 2017-03-31 00:00:00\n", + "Selling CF on 2017-03-31 00:00:00\n", + "Selling NVDA on 2017-03-31 00:00:00\n", + "Selling PODD on 2017-03-31 00:00:00\n", + "Selling STLD on 2017-03-31 00:00:00\n", + "Selling CTRA on 2017-03-31 00:00:00\n", + "Selling INCY on 2017-03-31 00:00:00\n", + "Selling FCX on 2017-03-31 00:00:00\n", + "Selling FSLR on 2017-03-31 00:00:00\n", + "Selling MOH on 2017-03-31 00:00:00\n", + "Selling DECK on 2017-03-31 00:00:00\n", + "Selling VRTX on 2017-03-31 00:00:00\n", + "Selling ANET on 2017-03-31 00:00:00\n", + "Selling LULU on 2017-03-31 00:00:00\n", + "Selling CSX on 2017-03-31 00:00:00\n", + "Selling PANW on 2017-03-31 00:00:00\n", + "Selling AMD on 2017-03-31 00:00:00\n", + "Selling DXCM on 2017-03-31 00:00:00\n", + "Selling ENPH on 2017-03-31 00:00:00\n", + "Buying MA on 2017-04-30 00:00:00\n", + "Buying NXPI on 2017-04-30 00:00:00\n", + "Buying MMM on 2017-04-30 00:00:00\n", + "Buying DIS on 2017-04-30 00:00:00\n", + "Buying L on 2017-04-30 00:00:00\n", + "Buying GL on 2017-04-30 00:00:00\n", + "Buying AFL on 2017-04-30 00:00:00\n", + "Buying BRK-B on 2017-04-30 00:00:00\n", + "Buying AAPL on 2017-04-30 00:00:00\n", + "Buying MSFT on 2017-04-30 00:00:00\n", + "Buying SYK on 2017-04-30 00:00:00\n", + "Buying USB on 2017-04-30 00:00:00\n", + "Buying JKHY on 2017-04-30 00:00:00\n", + "Buying ECL on 2017-04-30 00:00:00\n", + "Buying RTX on 2017-04-30 00:00:00\n", + "Buying FI on 2017-04-30 00:00:00\n", + "Buying PFE on 2017-04-30 00:00:00\n", + "Buying CB on 2017-04-30 00:00:00\n", + "Buying APH on 2017-04-30 00:00:00\n", + "Buying HD on 2017-04-30 00:00:00\n", + "Buying ADP on 2017-04-30 00:00:00\n", + "Buying NDAQ on 2017-04-30 00:00:00\n", + "Buying AJG on 2017-04-30 00:00:00\n", + "Buying AON on 2017-04-30 00:00:00\n", + "Buying ACGL on 2017-04-30 00:00:00\n", + "Buying TRV on 2017-04-30 00:00:00\n", + "Buying BLK on 2017-04-30 00:00:00\n", + "Buying HSY on 2017-04-30 00:00:00\n", + "Buying PGR on 2017-04-30 00:00:00\n", + "Buying ITW on 2017-04-30 00:00:00\n", + "Buying PEP on 2017-04-30 00:00:00\n", + "Buying EXPD on 2017-04-30 00:00:00\n", + "Buying GD on 2017-04-30 00:00:00\n", + "Buying FTV on 2017-04-30 00:00:00\n", + "Buying AME on 2017-04-30 00:00:00\n", + "Buying PFG on 2017-04-30 00:00:00\n", + "Buying RSG on 2017-04-30 00:00:00\n", + "Buying KO on 2017-04-30 00:00:00\n", + "Buying ALL on 2017-04-30 00:00:00\n", + "Buying TEL on 2017-04-30 00:00:00\n", + "Buying ABBV on 2017-04-30 00:00:00\n", + "Buying HSIC on 2017-04-30 00:00:00\n", + "Buying HON on 2017-04-30 00:00:00\n", + "Buying WTW on 2017-04-30 00:00:00\n", + "Buying JPM on 2017-04-30 00:00:00\n", + "Buying WM on 2017-04-30 00:00:00\n", + "Buying APD on 2017-04-30 00:00:00\n", + "Buying YUM on 2017-04-30 00:00:00\n", + "Selling WST on 2017-04-30 00:00:00\n", + "Selling DVN on 2017-04-30 00:00:00\n", + "Selling TDG on 2017-04-30 00:00:00\n", + "Selling HES on 2017-04-30 00:00:00\n", + "Selling REGN on 2017-04-30 00:00:00\n", + "Selling DXCM on 2017-04-30 00:00:00\n", + "Selling EQT on 2017-04-30 00:00:00\n", + "Selling FANG on 2017-04-30 00:00:00\n", + "Selling NRG on 2017-04-30 00:00:00\n", + "Selling ALGN on 2017-04-30 00:00:00\n", + "Selling BBY on 2017-04-30 00:00:00\n", + "Selling MU on 2017-04-30 00:00:00\n", + "Selling IDXX on 2017-04-30 00:00:00\n", + "Selling AXON on 2017-04-30 00:00:00\n", + "Selling CDNS on 2017-04-30 00:00:00\n", + "Selling TGT on 2017-04-30 00:00:00\n", + "Selling NEM on 2017-04-30 00:00:00\n", + "Selling STLD on 2017-04-30 00:00:00\n", + "Selling AKAM on 2017-04-30 00:00:00\n", + "Selling MGM on 2017-04-30 00:00:00\n", + "Selling BLDR on 2017-04-30 00:00:00\n", + "Selling PAYC on 2017-04-30 00:00:00\n", + "Selling MNST on 2017-04-30 00:00:00\n", + "Selling CF on 2017-04-30 00:00:00\n", + "Selling TPL on 2017-04-30 00:00:00\n", + "Selling RL on 2017-04-30 00:00:00\n", + "Selling HAS on 2017-04-30 00:00:00\n", + "Selling FTNT on 2017-04-30 00:00:00\n", + "Selling CPAY on 2017-04-30 00:00:00\n", + "Selling EW on 2017-04-30 00:00:00\n", + "Selling CZR on 2017-04-30 00:00:00\n", + "Selling FMC on 2017-04-30 00:00:00\n", + "Selling SYF on 2017-04-30 00:00:00\n", + "Selling CTRA on 2017-04-30 00:00:00\n", + "Selling NVDA on 2017-04-30 00:00:00\n", + "Selling TSLA on 2017-04-30 00:00:00\n", + "Selling FCX on 2017-04-30 00:00:00\n", + "Selling STX on 2017-04-30 00:00:00\n", + "Selling ANET on 2017-04-30 00:00:00\n", + "Selling INCY on 2017-04-30 00:00:00\n", + "Selling FSLR on 2017-04-30 00:00:00\n", + "Selling MOH on 2017-04-30 00:00:00\n", + "Selling DECK on 2017-04-30 00:00:00\n", + "Selling VRTX on 2017-04-30 00:00:00\n", + "Selling AMD on 2017-04-30 00:00:00\n", + "Selling PANW on 2017-04-30 00:00:00\n", + "Selling LULU on 2017-04-30 00:00:00\n", + "Selling ENPH on 2017-04-30 00:00:00\n", + "Buying NXPI on 2017-05-31 00:00:00\n", + "Buying BRK-B on 2017-05-31 00:00:00\n", + "Buying KO on 2017-05-31 00:00:00\n", + "Buying V on 2017-05-31 00:00:00\n", + "Buying AFL on 2017-05-31 00:00:00\n", + "Buying MMM on 2017-05-31 00:00:00\n", + "Buying RTX on 2017-05-31 00:00:00\n", + "Buying GL on 2017-05-31 00:00:00\n", + "Buying MA on 2017-05-31 00:00:00\n", + "Buying FI on 2017-05-31 00:00:00\n", + "Buying ROP on 2017-05-31 00:00:00\n", + "Buying PFE on 2017-05-31 00:00:00\n", + "Buying AVY on 2017-05-31 00:00:00\n", + "Buying AON on 2017-05-31 00:00:00\n", + "Buying AJG on 2017-05-31 00:00:00\n", + "Buying RSG on 2017-05-31 00:00:00\n", + "Buying PG on 2017-05-31 00:00:00\n", + "Buying APH on 2017-05-31 00:00:00\n", + "Buying FIS on 2017-05-31 00:00:00\n", + "Buying SYK on 2017-05-31 00:00:00\n", + "Buying CB on 2017-05-31 00:00:00\n", + "Buying PEP on 2017-05-31 00:00:00\n", + "Buying L on 2017-05-31 00:00:00\n", + "Buying TRV on 2017-05-31 00:00:00\n", + "Buying ITW on 2017-05-31 00:00:00\n", + "Buying BRO on 2017-05-31 00:00:00\n", + "Buying SJM on 2017-05-31 00:00:00\n", + "Buying NDAQ on 2017-05-31 00:00:00\n", + "Buying HD on 2017-05-31 00:00:00\n", + "Buying ECL on 2017-05-31 00:00:00\n", + "Buying MMC on 2017-05-31 00:00:00\n", + "Buying HON on 2017-05-31 00:00:00\n", + "Buying GD on 2017-05-31 00:00:00\n", + "Buying PFG on 2017-05-31 00:00:00\n", + "Buying APD on 2017-05-31 00:00:00\n", + "Buying PRU on 2017-05-31 00:00:00\n", + "Buying BK on 2017-05-31 00:00:00\n", + "Buying MDT on 2017-05-31 00:00:00\n", + "Buying BLK on 2017-05-31 00:00:00\n", + "Buying DUK on 2017-05-31 00:00:00\n", + "Buying KHC on 2017-05-31 00:00:00\n", + "Buying MSFT on 2017-05-31 00:00:00\n", + "Buying SO on 2017-05-31 00:00:00\n", + "Buying USB on 2017-05-31 00:00:00\n", + "Buying EFX on 2017-05-31 00:00:00\n", + "Buying COO on 2017-05-31 00:00:00\n", + "Buying PPL on 2017-05-31 00:00:00\n", + "Buying STE on 2017-05-31 00:00:00\n", + "Selling TTWO on 2017-05-31 00:00:00\n", + "Selling RL on 2017-05-31 00:00:00\n", + "Selling CAH on 2017-05-31 00:00:00\n", + "Selling EW on 2017-05-31 00:00:00\n", + "Selling GWW on 2017-05-31 00:00:00\n", + "Selling UAL on 2017-05-31 00:00:00\n", + "Selling COP on 2017-05-31 00:00:00\n", + "Selling TSCO on 2017-05-31 00:00:00\n", + "Selling MTCH on 2017-05-31 00:00:00\n", + "Selling APA on 2017-05-31 00:00:00\n", + "Selling BF-B on 2017-05-31 00:00:00\n", + "Selling CTRA on 2017-05-31 00:00:00\n", + "Selling MU on 2017-05-31 00:00:00\n", + "Selling STLD on 2017-05-31 00:00:00\n", + "Selling DVN on 2017-05-31 00:00:00\n", + "Selling FANG on 2017-05-31 00:00:00\n", + "Selling EA on 2017-05-31 00:00:00\n", + "Selling APTV on 2017-05-31 00:00:00\n", + "Selling REGN on 2017-05-31 00:00:00\n", + "Selling HES on 2017-05-31 00:00:00\n", + "Selling TPL on 2017-05-31 00:00:00\n", + "Selling AZO on 2017-05-31 00:00:00\n", + "Selling TPR on 2017-05-31 00:00:00\n", + "Selling ADSK on 2017-05-31 00:00:00\n", + "Selling FCX on 2017-05-31 00:00:00\n", + "Selling TRGP on 2017-05-31 00:00:00\n", + "Selling ALGN on 2017-05-31 00:00:00\n", + "Selling CZR on 2017-05-31 00:00:00\n", + "Selling CPAY on 2017-05-31 00:00:00\n", + "Selling NRG on 2017-05-31 00:00:00\n", + "Selling CF on 2017-05-31 00:00:00\n", + "Selling FMC on 2017-05-31 00:00:00\n", + "Selling DXCM on 2017-05-31 00:00:00\n", + "Selling SYF on 2017-05-31 00:00:00\n", + "Selling TSLA on 2017-05-31 00:00:00\n", + "Selling AKAM on 2017-05-31 00:00:00\n", + "Selling STX on 2017-05-31 00:00:00\n", + "Selling INCY on 2017-05-31 00:00:00\n", + "Selling FSLR on 2017-05-31 00:00:00\n", + "Selling DECK on 2017-05-31 00:00:00\n", + "Selling BG on 2017-05-31 00:00:00\n", + "Selling NVDA on 2017-05-31 00:00:00\n", + "Selling BBY on 2017-05-31 00:00:00\n", + "Selling MOH on 2017-05-31 00:00:00\n", + "Selling VRTX on 2017-05-31 00:00:00\n", + "Selling LULU 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 NXPI on 2017-06-30 00:00:00\n", + "Buying ROP on 2017-06-30 00:00:00\n", + "Buying RTX on 2017-06-30 00:00:00\n", + "Buying BRK-B on 2017-06-30 00:00:00\n", + "Buying MMM on 2017-06-30 00:00:00\n", + "Buying KO on 2017-06-30 00:00:00\n", + "Buying APH on 2017-06-30 00:00:00\n", + "Buying RSG on 2017-06-30 00:00:00\n", + "Buying DUK on 2017-06-30 00:00:00\n", + "Buying AON on 2017-06-30 00:00:00\n", + "Buying PPL on 2017-06-30 00:00:00\n", + "Buying MDT on 2017-06-30 00:00:00\n", + "Buying FI on 2017-06-30 00:00:00\n", + "Buying HON on 2017-06-30 00:00:00\n", + "Buying GL on 2017-06-30 00:00:00\n", + "Buying SYK on 2017-06-30 00:00:00\n", + "Buying AVY on 2017-06-30 00:00:00\n", + "Buying XEL on 2017-06-30 00:00:00\n", + "Buying CB on 2017-06-30 00:00:00\n", + "Buying STE on 2017-06-30 00:00:00\n", + "Buying BLK on 2017-06-30 00:00:00\n", + "Buying NOC on 2017-06-30 00:00:00\n", + "Buying PG on 2017-06-30 00:00:00\n", + "Buying AEP on 2017-06-30 00:00:00\n", + "Buying SPGI on 2017-06-30 00:00:00\n", + "Buying FIS on 2017-06-30 00:00:00\n", + "Buying PEP on 2017-06-30 00:00:00\n", + "Buying IT on 2017-06-30 00:00:00\n", + "Buying ES on 2017-06-30 00:00:00\n", + "Buying GD on 2017-06-30 00:00:00\n", + "Buying WM on 2017-06-30 00:00:00\n", + "Buying APD on 2017-06-30 00:00:00\n", + "Buying V on 2017-06-30 00:00:00\n", + "Buying PNW on 2017-06-30 00:00:00\n", + "Buying WEC on 2017-06-30 00:00:00\n", + "Buying ECL on 2017-06-30 00:00:00\n", + "Buying DTE on 2017-06-30 00:00:00\n", + "Buying SRE on 2017-06-30 00:00:00\n", + "Buying TRV on 2017-06-30 00:00:00\n", + "Buying ED on 2017-06-30 00:00:00\n", + "Buying BSX on 2017-06-30 00:00:00\n", + "Buying EIX on 2017-06-30 00:00:00\n", + "Buying NEE on 2017-06-30 00:00:00\n", + "Buying SO on 2017-06-30 00:00:00\n", + "Buying MMC on 2017-06-30 00:00:00\n", + "Buying CMS on 2017-06-30 00:00:00\n", + "Buying ITW on 2017-06-30 00:00:00\n", + "Buying MA on 2017-06-30 00:00:00\n", + "Selling APTV on 2017-06-30 00:00:00\n", + "Selling PODD on 2017-06-30 00:00:00\n", + "Selling TTWO on 2017-06-30 00:00:00\n", + "Selling TPR on 2017-06-30 00:00:00\n", + "Selling CZR on 2017-06-30 00:00:00\n", + "Selling CTRA on 2017-06-30 00:00:00\n", + "Selling BF-B on 2017-06-30 00:00:00\n", + "Selling MTCH on 2017-06-30 00:00:00\n", + "Selling MOS on 2017-06-30 00:00:00\n", + "Selling GWW on 2017-06-30 00:00:00\n", + "Selling CPAY on 2017-06-30 00:00:00\n", + "Selling APA on 2017-06-30 00:00:00\n", + "Selling TSCO on 2017-06-30 00:00:00\n", + "Selling URI on 2017-06-30 00:00:00\n", + "Selling EA on 2017-06-30 00:00:00\n", + "Selling KIM on 2017-06-30 00:00:00\n", + "Selling FANG on 2017-06-30 00:00:00\n", + "Selling STLD on 2017-06-30 00:00:00\n", + "Selling MU on 2017-06-30 00:00:00\n", + "Selling HWM on 2017-06-30 00:00:00\n", + "Selling AZO on 2017-06-30 00:00:00\n", + "Selling NRG on 2017-06-30 00:00:00\n", + "Selling REGN on 2017-06-30 00:00:00\n", + "Selling ADSK on 2017-06-30 00:00:00\n", + "Selling DVN on 2017-06-30 00:00:00\n", + "Selling HES on 2017-06-30 00:00:00\n", + "Selling FCX on 2017-06-30 00:00:00\n", + "Selling CF on 2017-06-30 00:00:00\n", + "Selling TSLA on 2017-06-30 00:00:00\n", + "Selling DXCM on 2017-06-30 00:00:00\n", + "Selling LULU on 2017-06-30 00:00:00\n", + "Selling ALGN on 2017-06-30 00:00:00\n", + "Selling TRGP on 2017-06-30 00:00:00\n", + "Selling SYF on 2017-06-30 00:00:00\n", + "Selling AKAM on 2017-06-30 00:00:00\n", + "Selling EQT on 2017-06-30 00:00:00\n", + "Selling PANW on 2017-06-30 00:00:00\n", + "Selling STX on 2017-06-30 00:00:00\n", + "Selling FSLR on 2017-06-30 00:00:00\n", + "Selling MOH on 2017-06-30 00:00:00\n", + "Selling DECK on 2017-06-30 00:00:00\n", + "Selling INCY on 2017-06-30 00:00:00\n", + "Selling BG on 2017-06-30 00:00:00\n", + "Selling BBY on 2017-06-30 00:00:00\n", + "Selling KR 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", + "Selling AMD on 2017-06-30 00:00:00\n", + "Buying NXPI on 2017-07-31 00:00:00\n", + "Buying HON on 2017-07-31 00:00:00\n", + "Buying ROP on 2017-07-31 00:00:00\n", + "Buying ECL on 2017-07-31 00:00:00\n", + "Buying KO on 2017-07-31 00:00:00\n", + "Buying BRK-B on 2017-07-31 00:00:00\n", + "Buying APH on 2017-07-31 00:00:00\n", + "Buying PEP on 2017-07-31 00:00:00\n", + "Buying RTX on 2017-07-31 00:00:00\n", + "Buying PG on 2017-07-31 00:00:00\n", + "Buying WM on 2017-07-31 00:00:00\n", + "Buying RSG on 2017-07-31 00:00:00\n", + "Buying DGX on 2017-07-31 00:00:00\n", + "Buying FIS on 2017-07-31 00:00:00\n", + "Buying DUK on 2017-07-31 00:00:00\n", + "Buying ALL on 2017-07-31 00:00:00\n", + "Buying BALL on 2017-07-31 00:00:00\n", + "Buying AXP on 2017-07-31 00:00:00\n", + "Buying LMT on 2017-07-31 00:00:00\n", + "Buying PPL on 2017-07-31 00:00:00\n", + "Buying NOC on 2017-07-31 00:00:00\n", + "Buying PNW on 2017-07-31 00:00:00\n", + "Buying IT on 2017-07-31 00:00:00\n", + "Buying STE on 2017-07-31 00:00:00\n", + "Buying BSX on 2017-07-31 00:00:00\n", + "Buying ES on 2017-07-31 00:00:00\n", + "Buying YUM on 2017-07-31 00:00:00\n", + "Buying APD on 2017-07-31 00:00:00\n", + "Buying MDLZ on 2017-07-31 00:00:00\n", + "Buying GL on 2017-07-31 00:00:00\n", + "Buying EL on 2017-07-31 00:00:00\n", + "Buying SRE on 2017-07-31 00:00:00\n", + "Buying WEC on 2017-07-31 00:00:00\n", + "Buying FI on 2017-07-31 00:00:00\n", + "Buying AME on 2017-07-31 00:00:00\n", + "Buying ED on 2017-07-31 00:00:00\n", + "Buying TMO on 2017-07-31 00:00:00\n", + "Buying NEE on 2017-07-31 00:00:00\n", + "Buying D on 2017-07-31 00:00:00\n", + "Buying SPGI on 2017-07-31 00:00:00\n", + "Buying XEL on 2017-07-31 00:00:00\n", + "Buying CMS on 2017-07-31 00:00:00\n", + "Buying VRSK on 2017-07-31 00:00:00\n", + "Buying EIX on 2017-07-31 00:00:00\n", + "Buying L on 2017-07-31 00:00:00\n", + "Buying JKHY on 2017-07-31 00:00:00\n", + "Buying AIG on 2017-07-31 00:00:00\n", + "Buying DTE on 2017-07-31 00:00:00\n", + "Selling PODD on 2017-07-31 00:00:00\n", + "Selling REGN on 2017-07-31 00:00:00\n", + "Selling WAB on 2017-07-31 00:00:00\n", + "Selling MTCH on 2017-07-31 00:00:00\n", + "Selling NKE on 2017-07-31 00:00:00\n", + "Selling TTWO on 2017-07-31 00:00:00\n", + "Selling MOS on 2017-07-31 00:00:00\n", + "Selling ALGN on 2017-07-31 00:00:00\n", + "Selling BF-B on 2017-07-31 00:00:00\n", + "Selling DPZ on 2017-07-31 00:00:00\n", + "Selling WDC on 2017-07-31 00:00:00\n", + "Selling FANG on 2017-07-31 00:00:00\n", + "Selling TRGP on 2017-07-31 00:00:00\n", + "Selling STLD on 2017-07-31 00:00:00\n", + "Selling PTC on 2017-07-31 00:00:00\n", + "Selling EA on 2017-07-31 00:00:00\n", + "Selling TSCO on 2017-07-31 00:00:00\n", + "Selling HWM on 2017-07-31 00:00:00\n", + "Selling BKR on 2017-07-31 00:00:00\n", + "Selling APA on 2017-07-31 00:00:00\n", + "Selling IPG on 2017-07-31 00:00:00\n", + "Selling ADSK on 2017-07-31 00:00:00\n", + "Selling LULU on 2017-07-31 00:00:00\n", + "Selling MU on 2017-07-31 00:00:00\n", + "Selling CF on 2017-07-31 00:00:00\n", + "Selling HES on 2017-07-31 00:00:00\n", + "Selling DVN on 2017-07-31 00:00:00\n", + "Selling AKAM on 2017-07-31 00:00:00\n", + "Selling NFLX on 2017-07-31 00:00:00\n", + "Selling EQT on 2017-07-31 00:00:00\n", + "Selling KIM on 2017-07-31 00:00:00\n", + "Selling PANW on 2017-07-31 00:00:00\n", + "Selling BG on 2017-07-31 00:00:00\n", + "Selling TSLA on 2017-07-31 00:00:00\n", + "Selling INCY on 2017-07-31 00:00:00\n", + "Selling FSLR on 2017-07-31 00:00:00\n", + "Selling AZO on 2017-07-31 00:00:00\n", + "Selling FCX on 2017-07-31 00:00:00\n", + "Selling STX on 2017-07-31 00:00:00\n", + "Selling DECK on 2017-07-31 00:00:00\n", + "Selling KR on 2017-07-31 00:00:00\n", + "Selling ORLY on 2017-07-31 00:00:00\n", + "Selling VRTX on 2017-07-31 00:00:00\n", + "Selling NVDA on 2017-07-31 00:00:00\n", + "Selling BBY on 2017-07-31 00:00:00\n", + "Selling AMD on 2017-07-31 00:00:00\n", + "Selling NRG on 2017-07-31 00:00:00\n", + "Selling ENPH on 2017-07-31 00:00:00\n", + "Buying NXPI on 2017-08-31 00:00:00\n", + "Buying WM on 2017-08-31 00:00:00\n", + "Buying KO on 2017-08-31 00:00:00\n", + "Buying RSG on 2017-08-31 00:00:00\n", + "Buying HON on 2017-08-31 00:00:00\n", + "Buying DGX on 2017-08-31 00:00:00\n", + "Buying ECL on 2017-08-31 00:00:00\n", + "Buying PEP on 2017-08-31 00:00:00\n", + "Buying APH on 2017-08-31 00:00:00\n", + "Buying D on 2017-08-31 00:00:00\n", + "Buying NOC on 2017-08-31 00:00:00\n", + "Buying PG on 2017-08-31 00:00:00\n", + "Buying DUK on 2017-08-31 00:00:00\n", + "Buying ROP on 2017-08-31 00:00:00\n", + "Buying LMT on 2017-08-31 00:00:00\n", + "Buying AXP on 2017-08-31 00:00:00\n", + "Buying BRK-B on 2017-08-31 00:00:00\n", + "Buying GL on 2017-08-31 00:00:00\n", + "Buying FIS on 2017-08-31 00:00:00\n", + "Buying PNW on 2017-08-31 00:00:00\n", + "Buying SNPS on 2017-08-31 00:00:00\n", + "Buying PPL on 2017-08-31 00:00:00\n", + "Buying CMS on 2017-08-31 00:00:00\n", + "Buying ES on 2017-08-31 00:00:00\n", + "Buying BDX on 2017-08-31 00:00:00\n", + "Buying UNH on 2017-08-31 00:00:00\n", + "Buying ED on 2017-08-31 00:00:00\n", + "Buying XEL on 2017-08-31 00:00:00\n", + "Buying CSCO on 2017-08-31 00:00:00\n", + "Buying NEE on 2017-08-31 00:00:00\n", + "Buying L on 2017-08-31 00:00:00\n", + "Buying ATO on 2017-08-31 00:00:00\n", + "Buying CL on 2017-08-31 00:00:00\n", + "Buying AIG on 2017-08-31 00:00:00\n", + "Buying BSX on 2017-08-31 00:00:00\n", + "Buying LNT on 2017-08-31 00:00:00\n", + "Buying PCG on 2017-08-31 00:00:00\n", + "Buying WEC on 2017-08-31 00:00:00\n", + "Buying MSFT on 2017-08-31 00:00:00\n", + "Buying EIX on 2017-08-31 00:00:00\n", + "Buying LHX on 2017-08-31 00:00:00\n", + "Buying AOS on 2017-08-31 00:00:00\n", + "Buying SRE on 2017-08-31 00:00:00\n", + "Buying MA on 2017-08-31 00:00:00\n", + "Buying VRSN on 2017-08-31 00:00:00\n", + "Buying DTE on 2017-08-31 00:00:00\n", + "Buying JNJ on 2017-08-31 00:00:00\n", + "Buying FICO on 2017-08-31 00:00:00\n", + "Selling URI on 2017-08-31 00:00:00\n", + "Selling ON on 2017-08-31 00:00:00\n", + "Selling PODD on 2017-08-31 00:00:00\n", + "Selling MTCH on 2017-08-31 00:00:00\n", + "Selling ALGN on 2017-08-31 00:00:00\n", + "Selling HWM on 2017-08-31 00:00:00\n", + "Selling STLD on 2017-08-31 00:00:00\n", + "Selling NKE on 2017-08-31 00:00:00\n", + "Selling BKR on 2017-08-31 00:00:00\n", + "Selling ROST on 2017-08-31 00:00:00\n", + "Selling VTRS on 2017-08-31 00:00:00\n", + "Selling MOS on 2017-08-31 00:00:00\n", + "Selling FANG on 2017-08-31 00:00:00\n", + "Selling DPZ on 2017-08-31 00:00:00\n", + "Selling AZO on 2017-08-31 00:00:00\n", + "Selling DVN on 2017-08-31 00:00:00\n", + "Selling BLDR on 2017-08-31 00:00:00\n", + "Selling WDC on 2017-08-31 00:00:00\n", + "Selling CZR on 2017-08-31 00:00:00\n", + "Selling TTWO on 2017-08-31 00:00:00\n", + "Selling HES on 2017-08-31 00:00:00\n", + "Selling TSCO on 2017-08-31 00:00:00\n", + "Selling RL on 2017-08-31 00:00:00\n", + "Selling FSLR on 2017-08-31 00:00:00\n", + "Selling ULTA on 2017-08-31 00:00:00\n", + "Selling MU on 2017-08-31 00:00:00\n", + "Selling APA on 2017-08-31 00:00:00\n", + "Selling KIM on 2017-08-31 00:00:00\n", + "Selling AKAM on 2017-08-31 00:00:00\n", + "Selling IPG on 2017-08-31 00:00:00\n", + "Selling EQT on 2017-08-31 00:00:00\n", + "Selling TPR on 2017-08-31 00:00:00\n", + "Selling CF on 2017-08-31 00:00:00\n", + "Selling BBY on 2017-08-31 00:00:00\n", + "Selling NVDA on 2017-08-31 00:00:00\n", + "Selling IR on 2017-08-31 00:00:00\n", + "Selling NFLX on 2017-08-31 00:00:00\n", + "Selling TSLA on 2017-08-31 00:00:00\n", + "Selling INCY on 2017-08-31 00:00:00\n", + "Selling STX on 2017-08-31 00:00:00\n", + "Selling FCX on 2017-08-31 00:00:00\n", + "Selling ANET on 2017-08-31 00:00:00\n", + "Selling ORLY on 2017-08-31 00:00:00\n", + "Selling AMD on 2017-08-31 00:00:00\n", + "Selling KR on 2017-08-31 00:00:00\n", + "Selling VRTX on 2017-08-31 00:00:00\n", + "Selling ENPH on 2017-08-31 00:00:00\n", + "Selling NRG on 2017-08-31 00:00:00\n", + "Buying NXPI on 2017-09-30 00:00:00\n", + "Buying RSG on 2017-09-30 00:00:00\n", + "Buying WM on 2017-09-30 00:00:00\n", + "Buying KO on 2017-09-30 00:00:00\n", + "Buying FIS on 2017-09-30 00:00:00\n", + "Buying STZ on 2017-09-30 00:00:00\n", + "Buying PEP on 2017-09-30 00:00:00\n", + "Buying APH on 2017-09-30 00:00:00\n", + "Buying AXP on 2017-09-30 00:00:00\n", + "Buying XOM on 2017-09-30 00:00:00\n", + "Buying BRK-B on 2017-09-30 00:00:00\n", + "Buying KDP on 2017-09-30 00:00:00\n", + "Buying MSFT on 2017-09-30 00:00:00\n", + "Buying SNPS on 2017-09-30 00:00:00\n", + "Buying EMR on 2017-09-30 00:00:00\n", + "Buying LMT on 2017-09-30 00:00:00\n", + "Buying DUK on 2017-09-30 00:00:00\n", + "Buying PG on 2017-09-30 00:00:00\n", + "Buying GL on 2017-09-30 00:00:00\n", + "Buying HON on 2017-09-30 00:00:00\n", + "Buying ROK on 2017-09-30 00:00:00\n", + "Buying EIX on 2017-09-30 00:00:00\n", + "Buying UNH on 2017-09-30 00:00:00\n", + "Buying EQR on 2017-09-30 00:00:00\n", + "Buying ECL on 2017-09-30 00:00:00\n", + "Buying ACN on 2017-09-30 00:00:00\n", + "Buying V on 2017-09-30 00:00:00\n", + "Buying PCG on 2017-09-30 00:00:00\n", + "Buying BAX on 2017-09-30 00:00:00\n", + "Buying L on 2017-09-30 00:00:00\n", + "Buying INTU on 2017-09-30 00:00:00\n", + "Buying LHX on 2017-09-30 00:00:00\n", + "Buying D on 2017-09-30 00:00:00\n", + "Buying XEL on 2017-09-30 00:00:00\n", + "Buying MRK on 2017-09-30 00:00:00\n", + "Buying ED on 2017-09-30 00:00:00\n", + "Buying VRSN on 2017-09-30 00:00:00\n", + "Buying PPL on 2017-09-30 00:00:00\n", + "Buying SPGI on 2017-09-30 00:00:00\n", + "Buying USB on 2017-09-30 00:00:00\n", + "Buying AOS on 2017-09-30 00:00:00\n", + "Buying CMS on 2017-09-30 00:00:00\n", + "Buying NEE on 2017-09-30 00:00:00\n", + "Buying AWK on 2017-09-30 00:00:00\n", + "Buying INTC on 2017-09-30 00:00:00\n", + "Buying SRE on 2017-09-30 00:00:00\n", + "Buying LIN on 2017-09-30 00:00:00\n", + "Buying CL on 2017-09-30 00:00:00\n", + "Selling HES on 2017-09-30 00:00:00\n", + "Selling WYNN on 2017-09-30 00:00:00\n", + "Selling CNC on 2017-09-30 00:00:00\n", + "Selling EG on 2017-09-30 00:00:00\n", + "Selling FANG on 2017-09-30 00:00:00\n", + "Selling ZBRA on 2017-09-30 00:00:00\n", + "Selling COR on 2017-09-30 00:00:00\n", + "Selling WAB on 2017-09-30 00:00:00\n", + "Selling KR on 2017-09-30 00:00:00\n", + "Selling WBD on 2017-09-30 00:00:00\n", + "Selling KIM on 2017-09-30 00:00:00\n", + "Selling ALGN on 2017-09-30 00:00:00\n", + "Selling WDC on 2017-09-30 00:00:00\n", + "Selling ORLY on 2017-09-30 00:00:00\n", + "Selling DPZ on 2017-09-30 00:00:00\n", + "Selling ROST on 2017-09-30 00:00:00\n", + "Selling TSCO on 2017-09-30 00:00:00\n", + "Selling CMG on 2017-09-30 00:00:00\n", + "Selling MOH on 2017-09-30 00:00:00\n", + "Selling BLDR on 2017-09-30 00:00:00\n", + "Selling VTRS on 2017-09-30 00:00:00\n", + "Selling NVDA on 2017-09-30 00:00:00\n", + "Selling CZR on 2017-09-30 00:00:00\n", + "Selling MU on 2017-09-30 00:00:00\n", + "Selling MTCH on 2017-09-30 00:00:00\n", + "Selling APA on 2017-09-30 00:00:00\n", + "Selling TSLA on 2017-09-30 00:00:00\n", + "Selling RL on 2017-09-30 00:00:00\n", + "Selling AKAM on 2017-09-30 00:00:00\n", + "Selling TTWO on 2017-09-30 00:00:00\n", + "Selling ULTA on 2017-09-30 00:00:00\n", + "Selling NFLX on 2017-09-30 00:00:00\n", + "Selling AMD on 2017-09-30 00:00:00\n", + "Selling IPG on 2017-09-30 00:00:00\n", + "Selling TPR on 2017-09-30 00:00:00\n", + "Selling INCY on 2017-09-30 00:00:00\n", + "Selling CF on 2017-09-30 00:00:00\n", + "Selling SMCI on 2017-09-30 00:00:00\n", + "Selling FSLR on 2017-09-30 00:00:00\n", + "Selling BBY on 2017-09-30 00:00:00\n", + "Selling STX on 2017-09-30 00:00:00\n", + "Selling FCX on 2017-09-30 00:00:00\n", + "Selling ANET on 2017-09-30 00:00:00\n", + "Selling VRTX on 2017-09-30 00:00:00\n", + "Selling EFX on 2017-09-30 00:00:00\n", + "Selling NRG on 2017-09-30 00:00:00\n", + "Selling DXCM on 2017-09-30 00:00:00\n", + "Selling ENPH on 2017-09-30 00:00:00\n", + "Buying NXPI on 2017-10-31 00:00:00\n", + "Buying CTSH on 2017-10-31 00:00:00\n", + "Buying FI on 2017-10-31 00:00:00\n", + "Buying XOM on 2017-10-31 00:00:00\n", + "Buying KO on 2017-10-31 00:00:00\n", + "Buying HON on 2017-10-31 00:00:00\n", + "Buying BRK-B on 2017-10-31 00:00:00\n", + "Buying ITW on 2017-10-31 00:00:00\n", + "Buying VRSK on 2017-10-31 00:00:00\n", + "Buying TEL on 2017-10-31 00:00:00\n", + "Buying AME on 2017-10-31 00:00:00\n", + "Buying MTD on 2017-10-31 00:00:00\n", + "Buying DUK on 2017-10-31 00:00:00\n", + "Buying AFL on 2017-10-31 00:00:00\n", + "Buying AWK on 2017-10-31 00:00:00\n", + "Buying V on 2017-10-31 00:00:00\n", + "Buying CMI on 2017-10-31 00:00:00\n", + "Buying AJG on 2017-10-31 00:00:00\n", + "Buying UDR on 2017-10-31 00:00:00\n", + "Buying UPS on 2017-10-31 00:00:00\n", + "Buying EVRG on 2017-10-31 00:00:00\n", + "Buying GL on 2017-10-31 00:00:00\n", + "Buying WTW on 2017-10-31 00:00:00\n", + "Buying AVB on 2017-10-31 00:00:00\n", + "Buying XEL on 2017-10-31 00:00:00\n", + "Buying MCO on 2017-10-31 00:00:00\n", + "Buying BLK on 2017-10-31 00:00:00\n", + "Buying BALL on 2017-10-31 00:00:00\n", + "Buying AXP on 2017-10-31 00:00:00\n", + "Buying PEP on 2017-10-31 00:00:00\n", + "Buying USB on 2017-10-31 00:00:00\n", + "Buying RVTY on 2017-10-31 00:00:00\n", + "Buying EQR on 2017-10-31 00:00:00\n", + "Buying APH on 2017-10-31 00:00:00\n", + "Buying LHX on 2017-10-31 00:00:00\n", + "Buying AEP on 2017-10-31 00:00:00\n", + "Buying ATO on 2017-10-31 00:00:00\n", + "Buying VRSN on 2017-10-31 00:00:00\n", + "Buying NEE on 2017-10-31 00:00:00\n", + "Buying BAX on 2017-10-31 00:00:00\n", + "Buying ETN on 2017-10-31 00:00:00\n", + "Buying TXN on 2017-10-31 00:00:00\n", + "Buying BR on 2017-10-31 00:00:00\n", + "Buying ED on 2017-10-31 00:00:00\n", + "Buying FTV on 2017-10-31 00:00:00\n", + "Buying FIS on 2017-10-31 00:00:00\n", + "Buying ECL on 2017-10-31 00:00:00\n", + "Buying TDY on 2017-10-31 00:00:00\n", + "Selling NDSN on 2017-10-31 00:00:00\n", + "Selling WST on 2017-10-31 00:00:00\n", + "Selling CHTR on 2017-10-31 00:00:00\n", + "Selling IR on 2017-10-31 00:00:00\n", + "Selling GNRC on 2017-10-31 00:00:00\n", + "Selling AMZN on 2017-10-31 00:00:00\n", + "Selling CPB on 2017-10-31 00:00:00\n", + "Selling HSIC on 2017-10-31 00:00:00\n", + "Selling WDC on 2017-10-31 00:00:00\n", + "Selling DECK on 2017-10-31 00:00:00\n", + "Selling MOH on 2017-10-31 00:00:00\n", + "Selling ROST on 2017-10-31 00:00:00\n", + "Selling ZBRA on 2017-10-31 00:00:00\n", + "Selling LULU on 2017-10-31 00:00:00\n", + "Selling NVDA on 2017-10-31 00:00:00\n", + "Selling TSLA on 2017-10-31 00:00:00\n", + "Selling APA on 2017-10-31 00:00:00\n", + "Selling CF on 2017-10-31 00:00:00\n", + "Selling ADBE on 2017-10-31 00:00:00\n", + "Selling CNC on 2017-10-31 00:00:00\n", + "Selling KR on 2017-10-31 00:00:00\n", + "Selling HWM on 2017-10-31 00:00:00\n", + "Selling MTCH on 2017-10-31 00:00:00\n", + "Selling EG on 2017-10-31 00:00:00\n", + "Selling DVA on 2017-10-31 00:00:00\n", + "Selling AXON on 2017-10-31 00:00:00\n", + "Selling MU on 2017-10-31 00:00:00\n", + "Selling CZR on 2017-10-31 00:00:00\n", + "Selling INCY on 2017-10-31 00:00:00\n", + "Selling FCX on 2017-10-31 00:00:00\n", + "Selling RL on 2017-10-31 00:00:00\n", + "Selling ALGN on 2017-10-31 00:00:00\n", + "Selling UAL on 2017-10-31 00:00:00\n", + "Selling GWW on 2017-10-31 00:00:00\n", + "Selling PCG on 2017-10-31 00:00:00\n", + "Selling TPR on 2017-10-31 00:00:00\n", + "Selling STX on 2017-10-31 00:00:00\n", + "Selling SMCI on 2017-10-31 00:00:00\n", + "Selling BBY on 2017-10-31 00:00:00\n", + "Selling ULTA on 2017-10-31 00:00:00\n", + "Selling EXPE on 2017-10-31 00:00:00\n", + "Selling CMG on 2017-10-31 00:00:00\n", + "Selling AMD on 2017-10-31 00:00:00\n", + "Selling VTRS on 2017-10-31 00:00:00\n", + "Selling EFX on 2017-10-31 00:00:00\n", + "Selling FSLR on 2017-10-31 00:00:00\n", + "Selling DXCM on 2017-10-31 00:00:00\n", + "Selling ENPH on 2017-10-31 00:00:00\n", + "Buying NXPI on 2017-11-30 00:00:00\n", + "Buying XOM on 2017-11-30 00:00:00\n", + "Buying BRK-B on 2017-11-30 00:00:00\n", + "Buying HON on 2017-11-30 00:00:00\n", + "Buying JKHY on 2017-11-30 00:00:00\n", + "Buying ECL on 2017-11-30 00:00:00\n", + "Buying RVTY on 2017-11-30 00:00:00\n", + "Buying ITW on 2017-11-30 00:00:00\n", + "Buying AFL on 2017-11-30 00:00:00\n", + "Buying TEL on 2017-11-30 00:00:00\n", + "Buying WY on 2017-11-30 00:00:00\n", + "Buying AXP on 2017-11-30 00:00:00\n", + "Buying HLT on 2017-11-30 00:00:00\n", + "Buying GL on 2017-11-30 00:00:00\n", + "Buying DUK on 2017-11-30 00:00:00\n", + "Buying KO on 2017-11-30 00:00:00\n", + "Buying LMT on 2017-11-30 00:00:00\n", + "Buying FI on 2017-11-30 00:00:00\n", + "Buying ARE on 2017-11-30 00:00:00\n", + "Buying HD on 2017-11-30 00:00:00\n", + "Buying IEX on 2017-11-30 00:00:00\n", + "Buying ATO on 2017-11-30 00:00:00\n", + "Buying BLK on 2017-11-30 00:00:00\n", + "Buying IP on 2017-11-30 00:00:00\n", + "Buying AME on 2017-11-30 00:00:00\n", + "Buying XEL on 2017-11-30 00:00:00\n", + "Buying CBRE on 2017-11-30 00:00:00\n", + "Buying EVRG on 2017-11-30 00:00:00\n", + "Buying MCO on 2017-11-30 00:00:00\n", + "Buying PPG on 2017-11-30 00:00:00\n", + "Buying AVB on 2017-11-30 00:00:00\n", + "Buying WTW on 2017-11-30 00:00:00\n", + "Buying FTV on 2017-11-30 00:00:00\n", + "Buying L on 2017-11-30 00:00:00\n", + "Buying PFE on 2017-11-30 00:00:00\n", + "Buying AJG on 2017-11-30 00:00:00\n", + "Buying ACN on 2017-11-30 00:00:00\n", + "Buying ROP on 2017-11-30 00:00:00\n", + "Buying APH on 2017-11-30 00:00:00\n", + "Buying PEP on 2017-11-30 00:00:00\n", + "Buying CTSH on 2017-11-30 00:00:00\n", + "Buying AEP on 2017-11-30 00:00:00\n", + "Buying GD on 2017-11-30 00:00:00\n", + "Buying UDR on 2017-11-30 00:00:00\n", + "Buying ES on 2017-11-30 00:00:00\n", + "Buying PEG on 2017-11-30 00:00:00\n", + "Buying APD on 2017-11-30 00:00:00\n", + "Buying V on 2017-11-30 00:00:00\n", + "Selling DECK on 2017-11-30 00:00:00\n", + "Selling HES on 2017-11-30 00:00:00\n", + "Selling HPE on 2017-11-30 00:00:00\n", + "Selling INCY on 2017-11-30 00:00:00\n", + "Selling LRCX on 2017-11-30 00:00:00\n", + "Selling HWM on 2017-11-30 00:00:00\n", + "Selling FCX on 2017-11-30 00:00:00\n", + "Selling NVDA on 2017-11-30 00:00:00\n", + "Selling GE on 2017-11-30 00:00:00\n", + "Selling JNPR on 2017-11-30 00:00:00\n", + "Selling BKNG on 2017-11-30 00:00:00\n", + "Selling KR on 2017-11-30 00:00:00\n", + "Selling BKR on 2017-11-30 00:00:00\n", + "Selling IR on 2017-11-30 00:00:00\n", + "Selling ADBE on 2017-11-30 00:00:00\n", + "Selling TTWO on 2017-11-30 00:00:00\n", + "Selling CNC on 2017-11-30 00:00:00\n", + "Selling CPB on 2017-11-30 00:00:00\n", + "Selling WDC on 2017-11-30 00:00:00\n", + "Selling TSLA on 2017-11-30 00:00:00\n", + "Selling ULTA on 2017-11-30 00:00:00\n", + "Selling ALGN on 2017-11-30 00:00:00\n", + "Selling HSIC on 2017-11-30 00:00:00\n", + "Selling NTAP on 2017-11-30 00:00:00\n", + "Selling APA on 2017-11-30 00:00:00\n", + "Selling ADSK on 2017-11-30 00:00:00\n", + "Selling UAL on 2017-11-30 00:00:00\n", + "Selling GWW on 2017-11-30 00:00:00\n", + "Selling QCOM on 2017-11-30 00:00:00\n", + "Selling MTCH on 2017-11-30 00:00:00\n", + "Selling STX on 2017-11-30 00:00:00\n", + "Selling DVA on 2017-11-30 00:00:00\n", + "Selling PCG on 2017-11-30 00:00:00\n", + "Selling WBD on 2017-11-30 00:00:00\n", + "Selling ANET on 2017-11-30 00:00:00\n", + "Selling TGT on 2017-11-30 00:00:00\n", + "Selling SMCI on 2017-11-30 00:00:00\n", + "Selling MU on 2017-11-30 00:00:00\n", + "Selling EXPE on 2017-11-30 00:00:00\n", + "Selling MOH on 2017-11-30 00:00:00\n", + "Selling CMG on 2017-11-30 00:00:00\n", + "Selling VTRS on 2017-11-30 00:00:00\n", + "Selling AMD on 2017-11-30 00:00:00\n", + "Selling PODD on 2017-11-30 00:00:00\n", + "Selling EFX on 2017-11-30 00:00:00\n", + "Selling FSLR on 2017-11-30 00:00:00\n", + "Selling DXCM on 2017-11-30 00:00:00\n", + "Selling ENPH on 2017-11-30 00:00:00\n", + "Buying XOM on 2017-12-31 00:00:00\n", + "Buying NXPI on 2017-12-31 00:00:00\n", + "Buying HON on 2017-12-31 00:00:00\n", + "Buying AFL on 2017-12-31 00:00:00\n", + "Buying BRO on 2017-12-31 00:00:00\n", + "Buying BRK-B on 2017-12-31 00:00:00\n", + "Buying GL on 2017-12-31 00:00:00\n", + "Buying ECL on 2017-12-31 00:00:00\n", + "Buying IEX on 2017-12-31 00:00:00\n", + "Buying PFE on 2017-12-31 00:00:00\n", + "Buying WY on 2017-12-31 00:00:00\n", + "Buying PEG on 2017-12-31 00:00:00\n", + "Buying ACN on 2017-12-31 00:00:00\n", + "Buying JKHY on 2017-12-31 00:00:00\n", + "Buying MCD on 2017-12-31 00:00:00\n", + "Buying TEL on 2017-12-31 00:00:00\n", + "Buying AXP on 2017-12-31 00:00:00\n", + "Buying L on 2017-12-31 00:00:00\n", + "Buying PPG on 2017-12-31 00:00:00\n", + "Buying DUK on 2017-12-31 00:00:00\n", + "Buying AME on 2017-12-31 00:00:00\n", + "Buying PGR on 2017-12-31 00:00:00\n", + "Buying RTX on 2017-12-31 00:00:00\n", + "Buying KO on 2017-12-31 00:00:00\n", + "Buying HLT on 2017-12-31 00:00:00\n", + "Buying APH on 2017-12-31 00:00:00\n", + "Buying PAYX on 2017-12-31 00:00:00\n", + "Buying FTV on 2017-12-31 00:00:00\n", + "Buying PEP on 2017-12-31 00:00:00\n", + "Buying AEP on 2017-12-31 00:00:00\n", + "Buying AJG on 2017-12-31 00:00:00\n", + "Buying ITW on 2017-12-31 00:00:00\n", + "Buying EMN on 2017-12-31 00:00:00\n", + "Buying LMT on 2017-12-31 00:00:00\n", + "Buying FI on 2017-12-31 00:00:00\n", + "Buying ED on 2017-12-31 00:00:00\n", + "Buying WEC on 2017-12-31 00:00:00\n", + "Buying LLY on 2017-12-31 00:00:00\n", + "Buying CTAS on 2017-12-31 00:00:00\n", + "Buying TROW on 2017-12-31 00:00:00\n", + "Buying WRB on 2017-12-31 00:00:00\n", + "Buying TXN on 2017-12-31 00:00:00\n", + "Buying XEL on 2017-12-31 00:00:00\n", + "Buying CMS on 2017-12-31 00:00:00\n", + "Buying ADP on 2017-12-31 00:00:00\n", + "Buying ALL on 2017-12-31 00:00:00\n", + "Buying MHK on 2017-12-31 00:00:00\n", + "Buying BLK on 2017-12-31 00:00:00\n", + "Selling TRGP on 2017-12-31 00:00:00\n", + "Selling AXON on 2017-12-31 00:00:00\n", + "Selling LRCX on 2017-12-31 00:00:00\n", + "Selling CNC on 2017-12-31 00:00:00\n", + "Selling VTRS on 2017-12-31 00:00:00\n", + "Selling CVS on 2017-12-31 00:00:00\n", + "Selling CZR on 2017-12-31 00:00:00\n", + "Selling DECK on 2017-12-31 00:00:00\n", + "Selling CHTR on 2017-12-31 00:00:00\n", + "Selling BKNG on 2017-12-31 00:00:00\n", + "Selling AKAM on 2017-12-31 00:00:00\n", + "Selling FCX on 2017-12-31 00:00:00\n", + "Selling NDSN on 2017-12-31 00:00:00\n", + "Selling IR on 2017-12-31 00:00:00\n", + "Selling VST on 2017-12-31 00:00:00\n", + "Selling UAL on 2017-12-31 00:00:00\n", + "Selling JNPR on 2017-12-31 00:00:00\n", + "Selling WDC on 2017-12-31 00:00:00\n", + "Selling TSLA on 2017-12-31 00:00:00\n", + "Selling HSIC on 2017-12-31 00:00:00\n", + "Selling HES on 2017-12-31 00:00:00\n", + "Selling CPB on 2017-12-31 00:00:00\n", + "Selling TTWO on 2017-12-31 00:00:00\n", + "Selling ADBE on 2017-12-31 00:00:00\n", + "Selling STX on 2017-12-31 00:00:00\n", + "Selling BKR on 2017-12-31 00:00:00\n", + "Selling NTAP on 2017-12-31 00:00:00\n", + "Selling MTCH on 2017-12-31 00:00:00\n", + "Selling QCOM on 2017-12-31 00:00:00\n", + "Selling ADSK on 2017-12-31 00:00:00\n", + "Selling APA on 2017-12-31 00:00:00\n", + "Selling ULTA on 2017-12-31 00:00:00\n", + "Selling GWW on 2017-12-31 00:00:00\n", + "Selling EIX on 2017-12-31 00:00:00\n", + "Selling EXPE on 2017-12-31 00:00:00\n", + "Selling TGT on 2017-12-31 00:00:00\n", + "Selling MU on 2017-12-31 00:00:00\n", + "Selling MOH on 2017-12-31 00:00:00\n", + "Selling ANET on 2017-12-31 00:00:00\n", + "Selling CMG on 2017-12-31 00:00:00\n", + "Selling WBD on 2017-12-31 00:00:00\n", + "Selling DVA on 2017-12-31 00:00:00\n", + "Selling PCG on 2017-12-31 00:00:00\n", + "Selling ALGN on 2017-12-31 00:00:00\n", + "Selling AMD on 2017-12-31 00:00:00\n", + "Selling PODD on 2017-12-31 00:00:00\n", + "Selling FSLR on 2017-12-31 00:00:00\n", + "Selling ENPH on 2017-12-31 00:00:00\n", + "Buying NXPI on 2018-01-31 00:00:00\n", + "Buying XYL on 2018-01-31 00:00:00\n", + "Buying XOM on 2018-01-31 00:00:00\n", + "Buying ACN on 2018-01-31 00:00:00\n", + "Buying GL on 2018-01-31 00:00:00\n", + "Buying L on 2018-01-31 00:00:00\n", + "Buying WM on 2018-01-31 00:00:00\n", + "Buying AME on 2018-01-31 00:00:00\n", + "Buying ECL on 2018-01-31 00:00:00\n", + "Buying JKHY on 2018-01-31 00:00:00\n", + "Buying BRK-B on 2018-01-31 00:00:00\n", + "Buying HON on 2018-01-31 00:00:00\n", + "Buying BRO on 2018-01-31 00:00:00\n", + "Buying MCD on 2018-01-31 00:00:00\n", + "Buying FI on 2018-01-31 00:00:00\n", + "Buying YUM on 2018-01-31 00:00:00\n", + "Buying VRSK on 2018-01-31 00:00:00\n", + "Buying EMN on 2018-01-31 00:00:00\n", + "Buying AOS on 2018-01-31 00:00:00\n", + "Buying TEL on 2018-01-31 00:00:00\n", + "Buying APH on 2018-01-31 00:00:00\n", + "Buying SWK on 2018-01-31 00:00:00\n", + "Buying MMM on 2018-01-31 00:00:00\n", + "Buying TYL on 2018-01-31 00:00:00\n", + "Buying AXP on 2018-01-31 00:00:00\n", + "Buying PH on 2018-01-31 00:00:00\n", + "Buying FTV on 2018-01-31 00:00:00\n", + "Buying ITW on 2018-01-31 00:00:00\n", + "Buying RTX on 2018-01-31 00:00:00\n", + "Buying DHR on 2018-01-31 00:00:00\n", + "Buying SPGI on 2018-01-31 00:00:00\n", + "Buying PEP on 2018-01-31 00:00:00\n", + "Buying ROP on 2018-01-31 00:00:00\n", + "Buying GOOG on 2018-01-31 00:00:00\n", + "Buying FIS 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 LKQ on 2018-01-31 00:00:00\n", + "Buying TECH on 2018-01-31 00:00:00\n", + "Buying HD on 2018-01-31 00:00:00\n", + "Buying STE on 2018-01-31 00:00:00\n", + "Buying PG on 2018-01-31 00:00:00\n", + "Buying RSG on 2018-01-31 00:00:00\n", + "Buying HLT on 2018-01-31 00:00:00\n", + "Buying GOOGL on 2018-01-31 00:00:00\n", + "Buying CTSH on 2018-01-31 00:00:00\n", + "Buying PSX on 2018-01-31 00:00:00\n", + "Buying CME on 2018-01-31 00:00:00\n", + "Selling AKAM on 2018-01-31 00:00:00\n", + "Selling SMCI on 2018-01-31 00:00:00\n", + "Selling BG on 2018-01-31 00:00:00\n", + "Selling WDC on 2018-01-31 00:00:00\n", + "Selling HSIC on 2018-01-31 00:00:00\n", + "Selling CF on 2018-01-31 00:00:00\n", + "Selling PCG on 2018-01-31 00:00:00\n", + "Selling JNPR 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 GE on 2018-01-31 00:00:00\n", + "Selling BKNG on 2018-01-31 00:00:00\n", + "Selling CPB on 2018-01-31 00:00:00\n", + "Selling RMD on 2018-01-31 00:00:00\n", + "Selling WDAY on 2018-01-31 00:00:00\n", + "Selling NDSN on 2018-01-31 00:00:00\n", + "Selling FCX on 2018-01-31 00:00:00\n", + "Selling QCOM on 2018-01-31 00:00:00\n", + "Selling TPL on 2018-01-31 00:00:00\n", + "Selling LRCX on 2018-01-31 00:00:00\n", + "Selling INCY on 2018-01-31 00:00:00\n", + "Selling ULTA on 2018-01-31 00:00:00\n", + "Selling NFLX on 2018-01-31 00:00:00\n", + "Selling NTAP on 2018-01-31 00:00:00\n", + "Selling DELL on 2018-01-31 00:00:00\n", + "Selling APA on 2018-01-31 00:00:00\n", + "Selling UAL on 2018-01-31 00:00:00\n", + "Selling ALGN on 2018-01-31 00:00:00\n", + "Selling CZR on 2018-01-31 00:00:00\n", + "Selling TTWO on 2018-01-31 00:00:00\n", + "Selling MTCH on 2018-01-31 00:00:00\n", + "Selling ADSK on 2018-01-31 00:00:00\n", + "Selling EIX on 2018-01-31 00:00:00\n", + "Selling DVA on 2018-01-31 00:00:00\n", + "Selling BKR on 2018-01-31 00:00:00\n", + "Selling DXCM on 2018-01-31 00:00:00\n", + "Selling ANET on 2018-01-31 00:00:00\n", + "Selling MOH on 2018-01-31 00:00:00\n", + "Selling FSLR on 2018-01-31 00:00:00\n", + "Selling TGT on 2018-01-31 00:00:00\n", + "Selling WYNN on 2018-01-31 00:00:00\n", + "Selling WBD on 2018-01-31 00:00:00\n", + "Selling MU on 2018-01-31 00:00:00\n", + "Selling AMD on 2018-01-31 00:00:00\n", + "Selling KDP on 2018-01-31 00:00:00\n", + "Selling GWW on 2018-01-31 00:00:00\n", + "Selling PODD on 2018-01-31 00:00:00\n", + "Selling ENPH on 2018-01-31 00:00:00\n", + "Buying ACN on 2018-02-28 00:00:00\n", + "Buying HON on 2018-02-28 00:00:00\n", + "Buying BR on 2018-02-28 00:00:00\n", + "Buying GL on 2018-02-28 00:00:00\n", + "Buying BRO on 2018-02-28 00:00:00\n", + "Buying JKHY on 2018-02-28 00:00:00\n", + "Buying AOS on 2018-02-28 00:00:00\n", + "Buying L on 2018-02-28 00:00:00\n", + "Buying WM on 2018-02-28 00:00:00\n", + "Buying SWK on 2018-02-28 00:00:00\n", + "Buying AME on 2018-02-28 00:00:00\n", + "Buying BRK-B on 2018-02-28 00:00:00\n", + "Buying ECL on 2018-02-28 00:00:00\n", + "Buying TEL on 2018-02-28 00:00:00\n", + "Buying APH on 2018-02-28 00:00:00\n", + "Buying JPM on 2018-02-28 00:00:00\n", + "Buying ITW on 2018-02-28 00:00:00\n", + "Buying VRSK on 2018-02-28 00:00:00\n", + "Buying TFC on 2018-02-28 00:00:00\n", + "Buying TECH on 2018-02-28 00:00:00\n", + "Buying GOOG on 2018-02-28 00:00:00\n", + "Buying KO on 2018-02-28 00:00:00\n", + "Buying USB on 2018-02-28 00:00:00\n", + "Buying V on 2018-02-28 00:00:00\n", + "Buying C on 2018-02-28 00:00:00\n", + "Buying MCD on 2018-02-28 00:00:00\n", + "Buying ROK on 2018-02-28 00:00:00\n", + "Buying CSCO on 2018-02-28 00:00:00\n", + "Buying CAG on 2018-02-28 00:00:00\n", + "Buying MMM on 2018-02-28 00:00:00\n", + "Buying GOOGL on 2018-02-28 00:00:00\n", + "Buying NDAQ on 2018-02-28 00:00:00\n", + "Buying STE on 2018-02-28 00:00:00\n", + "Buying FIS on 2018-02-28 00:00:00\n", + "Buying NSC on 2018-02-28 00:00:00\n", + "Buying WRB on 2018-02-28 00:00:00\n", + "Buying INTU on 2018-02-28 00:00:00\n", + "Buying MCO on 2018-02-28 00:00:00\n", + "Buying YUM on 2018-02-28 00:00:00\n", + "Buying CTSH on 2018-02-28 00:00:00\n", + "Buying NTRS on 2018-02-28 00:00:00\n", + "Buying EMR on 2018-02-28 00:00:00\n", + "Buying SYK on 2018-02-28 00:00:00\n", + "Buying APD on 2018-02-28 00:00:00\n", + "Buying HD on 2018-02-28 00:00:00\n", + "Buying TROW on 2018-02-28 00:00:00\n", + "Buying IFF on 2018-02-28 00:00:00\n", + "Buying DE on 2018-02-28 00:00:00\n", + "Selling CF on 2018-02-28 00:00:00\n", + "Selling INCY on 2018-02-28 00:00:00\n", + "Selling AES on 2018-02-28 00:00:00\n", + "Selling EQT on 2018-02-28 00:00:00\n", + "Selling MOH on 2018-02-28 00:00:00\n", + "Selling LRCX on 2018-02-28 00:00:00\n", + "Selling TSLA on 2018-02-28 00:00:00\n", + "Selling MOS on 2018-02-28 00:00:00\n", + "Selling HES on 2018-02-28 00:00:00\n", + "Selling PCG on 2018-02-28 00:00:00\n", + "Selling SMCI on 2018-02-28 00:00:00\n", + "Selling CBOE on 2018-02-28 00:00:00\n", + "Selling TTWO on 2018-02-28 00:00:00\n", + "Selling RMD on 2018-02-28 00:00:00\n", + "Selling ABBV on 2018-02-28 00:00:00\n", + "Selling NFLX on 2018-02-28 00:00:00\n", + "Selling DVA on 2018-02-28 00:00:00\n", + "Selling ZBRA on 2018-02-28 00:00:00\n", + "Selling NDSN on 2018-02-28 00:00:00\n", + "Selling ULTA on 2018-02-28 00:00:00\n", + "Selling APA on 2018-02-28 00:00:00\n", + "Selling EBAY on 2018-02-28 00:00:00\n", + "Selling TPL on 2018-02-28 00:00:00\n", + "Selling UAL on 2018-02-28 00:00:00\n", + "Selling BKR on 2018-02-28 00:00:00\n", + "Selling FCX on 2018-02-28 00:00:00\n", + "Selling DELL on 2018-02-28 00:00:00\n", + "Selling DXCM on 2018-02-28 00:00:00\n", + "Selling DVN on 2018-02-28 00:00:00\n", + "Selling BG on 2018-02-28 00:00:00\n", + "Selling CZR on 2018-02-28 00:00:00\n", + "Selling MTCH on 2018-02-28 00:00:00\n", + "Selling ALGN on 2018-02-28 00:00:00\n", + "Selling PODD on 2018-02-28 00:00:00\n", + "Selling EIX on 2018-02-28 00:00:00\n", + "Selling EXPE on 2018-02-28 00:00:00\n", + "Selling ALB on 2018-02-28 00:00:00\n", + "Selling WBD on 2018-02-28 00:00:00\n", + "Selling AMD on 2018-02-28 00:00:00\n", + "Selling MU on 2018-02-28 00:00:00\n", + "Selling FSLR on 2018-02-28 00:00:00\n", + "Selling WYNN on 2018-02-28 00:00:00\n", + "Selling GWW on 2018-02-28 00:00:00\n", + "Selling KDP on 2018-02-28 00:00:00\n", + "Selling CMG on 2018-02-28 00:00:00\n", + "Selling ANET on 2018-02-28 00:00:00\n", + "Selling AXON on 2018-02-28 00:00:00\n", + "Selling ENPH on 2018-02-28 00:00:00\n", + "Buying HON on 2018-03-31 00:00:00\n", + "Buying V on 2018-03-31 00:00:00\n", + "Buying WM on 2018-03-31 00:00:00\n", + "Buying JPM on 2018-03-31 00:00:00\n", + "Buying BRO on 2018-03-31 00:00:00\n", + "Buying JKHY on 2018-03-31 00:00:00\n", + "Buying BRK-B on 2018-03-31 00:00:00\n", + "Buying ITW on 2018-03-31 00:00:00\n", + "Buying MA on 2018-03-31 00:00:00\n", + "Buying AOS on 2018-03-31 00:00:00\n", + "Buying AME on 2018-03-31 00:00:00\n", + "Buying VRSK on 2018-03-31 00:00:00\n", + "Buying TECH on 2018-03-31 00:00:00\n", + "Buying MMC on 2018-03-31 00:00:00\n", + "Buying BR on 2018-03-31 00:00:00\n", + "Buying L on 2018-03-31 00:00:00\n", + "Buying GL on 2018-03-31 00:00:00\n", + "Buying TFC on 2018-03-31 00:00:00\n", + "Buying ECL on 2018-03-31 00:00:00\n", + "Buying C on 2018-03-31 00:00:00\n", + "Buying KO on 2018-03-31 00:00:00\n", + "Buying COF on 2018-03-31 00:00:00\n", + "Buying BAC on 2018-03-31 00:00:00\n", + "Buying RVTY on 2018-03-31 00:00:00\n", + "Buying HD on 2018-03-31 00:00:00\n", + "Buying APH on 2018-03-31 00:00:00\n", + "Buying RSG on 2018-03-31 00:00:00\n", + "Buying SYK on 2018-03-31 00:00:00\n", + "Buying CTSH on 2018-03-31 00:00:00\n", + "Buying ROK on 2018-03-31 00:00:00\n", + "Buying NTRS on 2018-03-31 00:00:00\n", + "Buying AON on 2018-03-31 00:00:00\n", + "Buying BAX on 2018-03-31 00:00:00\n", + "Buying MCO on 2018-03-31 00:00:00\n", + "Buying TROW on 2018-03-31 00:00:00\n", + "Buying MDT on 2018-03-31 00:00:00\n", + "Buying BX on 2018-03-31 00:00:00\n", + "Buying MMM on 2018-03-31 00:00:00\n", + "Buying WTW on 2018-03-31 00:00:00\n", + "Buying USB on 2018-03-31 00:00:00\n", + "Buying ICE on 2018-03-31 00:00:00\n", + "Buying BDX on 2018-03-31 00:00:00\n", + "Buying FIS on 2018-03-31 00:00:00\n", + "Buying SWK on 2018-03-31 00:00:00\n", + "Buying TEL on 2018-03-31 00:00:00\n", + "Buying FITB on 2018-03-31 00:00:00\n", + "Buying WRB on 2018-03-31 00:00:00\n", + "Buying PNC on 2018-03-31 00:00:00\n", + "Selling MOS on 2018-03-31 00:00:00\n", + "Selling DECK on 2018-03-31 00:00:00\n", + "Selling APA on 2018-03-31 00:00:00\n", + "Selling AES on 2018-03-31 00:00:00\n", + "Selling GE on 2018-03-31 00:00:00\n", + "Selling RMD on 2018-03-31 00:00:00\n", + "Selling HES on 2018-03-31 00:00:00\n", + "Selling CI on 2018-03-31 00:00:00\n", + "Selling LRCX on 2018-03-31 00:00:00\n", + "Selling DELL on 2018-03-31 00:00:00\n", + "Selling EBAY on 2018-03-31 00:00:00\n", + "Selling TPL on 2018-03-31 00:00:00\n", + "Selling CF on 2018-03-31 00:00:00\n", + "Selling SMCI on 2018-03-31 00:00:00\n", + "Selling NVR on 2018-03-31 00:00:00\n", + "Selling CBOE on 2018-03-31 00:00:00\n", + "Selling CZR on 2018-03-31 00:00:00\n", + "Selling BLDR on 2018-03-31 00:00:00\n", + "Selling UAL on 2018-03-31 00:00:00\n", + "Selling ZBRA on 2018-03-31 00:00:00\n", + "Selling WBD on 2018-03-31 00:00:00\n", + "Selling FCX on 2018-03-31 00:00:00\n", + "Selling ULTA on 2018-03-31 00:00:00\n", + "Selling ADSK on 2018-03-31 00:00:00\n", + "Selling FSLR on 2018-03-31 00:00:00\n", + "Selling NFLX on 2018-03-31 00:00:00\n", + "Selling BKR on 2018-03-31 00:00:00\n", + "Selling BG on 2018-03-31 00:00:00\n", + "Selling DLTR on 2018-03-31 00:00:00\n", + "Selling KR on 2018-03-31 00:00:00\n", + "Selling MTCH on 2018-03-31 00:00:00\n", + "Selling DVN on 2018-03-31 00:00:00\n", + "Selling TSLA on 2018-03-31 00:00:00\n", + "Selling VICI on 2018-03-31 00:00:00\n", + "Selling AMD on 2018-03-31 00:00:00\n", + "Selling PODD on 2018-03-31 00:00:00\n", + "Selling EXPE on 2018-03-31 00:00:00\n", + "Selling DXCM on 2018-03-31 00:00:00\n", + "Selling ABBV on 2018-03-31 00:00:00\n", + "Selling ALB on 2018-03-31 00:00:00\n", + "Selling MU on 2018-03-31 00:00:00\n", + "Selling GWW on 2018-03-31 00:00:00\n", + "Selling KDP on 2018-03-31 00:00:00\n", + "Selling CMG on 2018-03-31 00:00:00\n", + "Selling WYNN on 2018-03-31 00:00:00\n", + "Selling ANET on 2018-03-31 00:00:00\n", + "Selling AXON on 2018-03-31 00:00:00\n", + "Selling ENPH on 2018-03-31 00:00:00\n", + "Buying KDP on 2018-04-30 00:00:00\n", + "Buying MMC on 2018-04-30 00:00:00\n", + "Buying APD on 2018-04-30 00:00:00\n", + "Buying HON on 2018-04-30 00:00:00\n", + "Buying AON on 2018-04-30 00:00:00\n", + "Buying AFL on 2018-04-30 00:00:00\n", + "Buying WM on 2018-04-30 00:00:00\n", + "Buying BRK-B on 2018-04-30 00:00:00\n", + "Buying VRSK on 2018-04-30 00:00:00\n", + "Buying RVTY on 2018-04-30 00:00:00\n", + "Buying MCO on 2018-04-30 00:00:00\n", + "Buying SYK on 2018-04-30 00:00:00\n", + "Buying JKHY on 2018-04-30 00:00:00\n", + "Buying TROW on 2018-04-30 00:00:00\n", + "Buying APH on 2018-04-30 00:00:00\n", + "Buying BRO on 2018-04-30 00:00:00\n", + "Buying WTW on 2018-04-30 00:00:00\n", + "Buying ABT on 2018-04-30 00:00:00\n", + "Buying IFF on 2018-04-30 00:00:00\n", + "Buying STE on 2018-04-30 00:00:00\n", + "Buying MDT on 2018-04-30 00:00:00\n", + "Buying L on 2018-04-30 00:00:00\n", + "Buying TMO on 2018-04-30 00:00:00\n", + "Buying DHR on 2018-04-30 00:00:00\n", + "Buying AJG on 2018-04-30 00:00:00\n", + "Buying BDX on 2018-04-30 00:00:00\n", + "Buying GLW on 2018-04-30 00:00:00\n", + "Buying TECH on 2018-04-30 00:00:00\n", + "Buying AOS on 2018-04-30 00:00:00\n", + "Buying CTSH on 2018-04-30 00:00:00\n", + "Buying GL on 2018-04-30 00:00:00\n", + "Buying BX on 2018-04-30 00:00:00\n", + "Buying RMD on 2018-04-30 00:00:00\n", + "Buying MA on 2018-04-30 00:00:00\n", + "Buying NTRS on 2018-04-30 00:00:00\n", + "Buying PFE on 2018-04-30 00:00:00\n", + "Buying AME on 2018-04-30 00:00:00\n", + "Buying MTD on 2018-04-30 00:00:00\n", + "Buying BSX on 2018-04-30 00:00:00\n", + "Buying RSG on 2018-04-30 00:00:00\n", + "Buying V on 2018-04-30 00:00:00\n", + "Buying FIS on 2018-04-30 00:00:00\n", + "Buying JPM on 2018-04-30 00:00:00\n", + "Buying AVY on 2018-04-30 00:00:00\n", + "Buying PPG on 2018-04-30 00:00:00\n", + "Buying KO on 2018-04-30 00:00:00\n", + "Buying ETN on 2018-04-30 00:00:00\n", + "Buying BAX on 2018-04-30 00:00:00\n", + "Selling MNST on 2018-04-30 00:00:00\n", + "Selling WDC on 2018-04-30 00:00:00\n", + "Selling CF on 2018-04-30 00:00:00\n", + "Selling DXCM on 2018-04-30 00:00:00\n", + "Selling FANG on 2018-04-30 00:00:00\n", + "Selling AMAT on 2018-04-30 00:00:00\n", + "Selling GE on 2018-04-30 00:00:00\n", + "Selling MGM on 2018-04-30 00:00:00\n", + "Selling COR on 2018-04-30 00:00:00\n", + "Selling LYV on 2018-04-30 00:00:00\n", + "Selling ALGN on 2018-04-30 00:00:00\n", + "Selling NFLX on 2018-04-30 00:00:00\n", + "Selling ABBV on 2018-04-30 00:00:00\n", + "Selling DECK on 2018-04-30 00:00:00\n", + "Selling ULTA on 2018-04-30 00:00:00\n", + "Selling LRCX on 2018-04-30 00:00:00\n", + "Selling BKR on 2018-04-30 00:00:00\n", + "Selling WYNN on 2018-04-30 00:00:00\n", + "Selling HES on 2018-04-30 00:00:00\n", + "Selling ZBRA on 2018-04-30 00:00:00\n", + "Selling EQT on 2018-04-30 00:00:00\n", + "Selling CBOE on 2018-04-30 00:00:00\n", + "Selling NVR on 2018-04-30 00:00:00\n", + "Selling BLDR on 2018-04-30 00:00:00\n", + "Selling ADSK on 2018-04-30 00:00:00\n", + "Selling ORLY on 2018-04-30 00:00:00\n", + "Selling CHTR on 2018-04-30 00:00:00\n", + "Selling KR on 2018-04-30 00:00:00\n", + "Selling DLTR on 2018-04-30 00:00:00\n", + "Selling MTCH on 2018-04-30 00:00:00\n", + "Selling FSLR on 2018-04-30 00:00:00\n", + "Selling PM on 2018-04-30 00:00:00\n", + "Selling ALB on 2018-04-30 00:00:00\n", + "Selling AMD on 2018-04-30 00:00:00\n", + "Selling DVN on 2018-04-30 00:00:00\n", + "Selling TER on 2018-04-30 00:00:00\n", + "Selling TSLA on 2018-04-30 00:00:00\n", + "Selling CZR on 2018-04-30 00:00:00\n", + "Selling FCX on 2018-04-30 00:00:00\n", + "Selling LKQ on 2018-04-30 00:00:00\n", + "Selling EXPE on 2018-04-30 00:00:00\n", + "Selling MU on 2018-04-30 00:00:00\n", + "Selling HWM on 2018-04-30 00:00:00\n", + "Selling INCY on 2018-04-30 00:00:00\n", + "Selling ANET on 2018-04-30 00:00:00\n", + "Selling AXON on 2018-04-30 00:00:00\n", + "Selling CMG on 2018-04-30 00:00:00\n", + "Selling ENPH on 2018-04-30 00:00:00\n", + "Buying KDP on 2018-05-31 00:00:00\n", + "Buying APH on 2018-05-31 00:00:00\n", + "Buying APD on 2018-05-31 00:00:00\n", + "Buying MCO on 2018-05-31 00:00:00\n", + "Buying RTX on 2018-05-31 00:00:00\n", + "Buying BRK-B on 2018-05-31 00:00:00\n", + "Buying MMC on 2018-05-31 00:00:00\n", + "Buying AFL on 2018-05-31 00:00:00\n", + "Buying STE on 2018-05-31 00:00:00\n", + "Buying HON on 2018-05-31 00:00:00\n", + "Buying WM on 2018-05-31 00:00:00\n", + "Buying SYK on 2018-05-31 00:00:00\n", + "Buying FI on 2018-05-31 00:00:00\n", + "Buying AJG on 2018-05-31 00:00:00\n", + "Buying DHR on 2018-05-31 00:00:00\n", + "Buying BRO on 2018-05-31 00:00:00\n", + "Buying AON on 2018-05-31 00:00:00\n", + "Buying ABT on 2018-05-31 00:00:00\n", + "Buying SPGI on 2018-05-31 00:00:00\n", + "Buying TRV on 2018-05-31 00:00:00\n", + "Buying GL on 2018-05-31 00:00:00\n", + "Buying BALL on 2018-05-31 00:00:00\n", + "Buying AOS on 2018-05-31 00:00:00\n", + "Buying BLK on 2018-05-31 00:00:00\n", + "Buying BDX on 2018-05-31 00:00:00\n", + "Buying L on 2018-05-31 00:00:00\n", + "Buying WY on 2018-05-31 00:00:00\n", + "Buying KO on 2018-05-31 00:00:00\n", + "Buying AVY on 2018-05-31 00:00:00\n", + "Buying WTW on 2018-05-31 00:00:00\n", + "Buying GPN on 2018-05-31 00:00:00\n", + "Buying WRB on 2018-05-31 00:00:00\n", + "Buying V on 2018-05-31 00:00:00\n", + "Buying RVTY on 2018-05-31 00:00:00\n", + "Buying TECH on 2018-05-31 00:00:00\n", + "Buying ANSS on 2018-05-31 00:00:00\n", + "Buying IEX on 2018-05-31 00:00:00\n", + "Buying ICE on 2018-05-31 00:00:00\n", + "Buying TYL on 2018-05-31 00:00:00\n", + "Buying ALL on 2018-05-31 00:00:00\n", + "Buying ZTS on 2018-05-31 00:00:00\n", + "Buying BX on 2018-05-31 00:00:00\n", + "Buying CB on 2018-05-31 00:00:00\n", + "Buying CBRE on 2018-05-31 00:00:00\n", + "Buying DUK on 2018-05-31 00:00:00\n", + "Buying DTE on 2018-05-31 00:00:00\n", + "Buying BSX on 2018-05-31 00:00:00\n", + "Buying GS on 2018-05-31 00:00:00\n", + "Selling CI on 2018-05-31 00:00:00\n", + "Selling HES on 2018-05-31 00:00:00\n", + "Selling WBD on 2018-05-31 00:00:00\n", + "Selling MPC on 2018-05-31 00:00:00\n", + "Selling APA on 2018-05-31 00:00:00\n", + "Selling EQT on 2018-05-31 00:00:00\n", + "Selling MGM on 2018-05-31 00:00:00\n", + "Selling ZBRA on 2018-05-31 00:00:00\n", + "Selling LEN on 2018-05-31 00:00:00\n", + "Selling NVR on 2018-05-31 00:00:00\n", + "Selling CPB on 2018-05-31 00:00:00\n", + "Selling TPL on 2018-05-31 00:00:00\n", + "Selling ORLY on 2018-05-31 00:00:00\n", + "Selling WDC on 2018-05-31 00:00:00\n", + "Selling AMAT on 2018-05-31 00:00:00\n", + "Selling DVN on 2018-05-31 00:00:00\n", + "Selling GM on 2018-05-31 00:00:00\n", + "Selling CHTR on 2018-05-31 00:00:00\n", + "Selling ABBV on 2018-05-31 00:00:00\n", + "Selling GE on 2018-05-31 00:00:00\n", + "Selling FANG on 2018-05-31 00:00:00\n", + "Selling RL on 2018-05-31 00:00:00\n", + "Selling TAP on 2018-05-31 00:00:00\n", + "Selling KR on 2018-05-31 00:00:00\n", + "Selling FSLR on 2018-05-31 00:00:00\n", + "Selling PM on 2018-05-31 00:00:00\n", + "Selling DXCM on 2018-05-31 00:00:00\n", + "Selling LYV on 2018-05-31 00:00:00\n", + "Selling ADSK on 2018-05-31 00:00:00\n", + "Selling FCX on 2018-05-31 00:00:00\n", + "Selling AMD on 2018-05-31 00:00:00\n", + "Selling CZR on 2018-05-31 00:00:00\n", + "Selling ANET on 2018-05-31 00:00:00\n", + "Selling TER on 2018-05-31 00:00:00\n", + "Selling NXPI on 2018-05-31 00:00:00\n", + "Selling SMCI on 2018-05-31 00:00:00\n", + "Selling TSLA on 2018-05-31 00:00:00\n", + "Selling DLTR on 2018-05-31 00:00:00\n", + "Selling LKQ on 2018-05-31 00:00:00\n", + "Selling HWM on 2018-05-31 00:00:00\n", + "Selling INCY on 2018-05-31 00:00:00\n", + "Selling MU on 2018-05-31 00:00:00\n", + "Selling CAH on 2018-05-31 00:00:00\n", + "Selling CMG on 2018-05-31 00:00:00\n", + "Selling AXON on 2018-05-31 00:00:00\n", + "Selling MTCH on 2018-05-31 00:00:00\n", + "Selling ENPH on 2018-05-31 00:00:00\n", + "Selling GEN on 2018-05-31 00:00:00\n", + "Buying KDP on 2018-06-30 00:00:00\n", + "Buying APH on 2018-06-30 00:00:00\n", + "Buying MCO on 2018-06-30 00:00:00\n", + "Buying AFL on 2018-06-30 00:00:00\n", + "Buying APD on 2018-06-30 00:00:00\n", + "Buying DHR on 2018-06-30 00:00:00\n", + "Buying SPGI on 2018-06-30 00:00:00\n", + "Buying BRK-B on 2018-06-30 00:00:00\n", + "Buying RTX on 2018-06-30 00:00:00\n", + "Buying CTAS on 2018-06-30 00:00:00\n", + "Buying ABT on 2018-06-30 00:00:00\n", + "Buying MSCI on 2018-06-30 00:00:00\n", + "Buying HON on 2018-06-30 00:00:00\n", + "Buying BRO on 2018-06-30 00:00:00\n", + "Buying MSFT on 2018-06-30 00:00:00\n", + "Buying STE on 2018-06-30 00:00:00\n", + "Buying MMC on 2018-06-30 00:00:00\n", + "Buying FI on 2018-06-30 00:00:00\n", + "Buying AJG on 2018-06-30 00:00:00\n", + "Buying NDAQ on 2018-06-30 00:00:00\n", + "Buying PFE on 2018-06-30 00:00:00\n", + "Buying WM on 2018-06-30 00:00:00\n", + "Buying SYY on 2018-06-30 00:00:00\n", + "Buying AON on 2018-06-30 00:00:00\n", + "Buying JNJ on 2018-06-30 00:00:00\n", + "Buying GL on 2018-06-30 00:00:00\n", + "Buying WTW on 2018-06-30 00:00:00\n", + "Buying IEX on 2018-06-30 00:00:00\n", + "Buying RVTY on 2018-06-30 00:00:00\n", + "Buying KO on 2018-06-30 00:00:00\n", + "Buying BX on 2018-06-30 00:00:00\n", + "Buying ALL on 2018-06-30 00:00:00\n", + "Buying ADM on 2018-06-30 00:00:00\n", + "Buying L on 2018-06-30 00:00:00\n", + "Buying TRV on 2018-06-30 00:00:00\n", + "Buying WRB on 2018-06-30 00:00:00\n", + "Buying BDX on 2018-06-30 00:00:00\n", + "Buying GS on 2018-06-30 00:00:00\n", + "Buying NTRS on 2018-06-30 00:00:00\n", + "Buying TMO on 2018-06-30 00:00:00\n", + "Buying ROP on 2018-06-30 00:00:00\n", + "Buying COST on 2018-06-30 00:00:00\n", + "Buying USB on 2018-06-30 00:00:00\n", + "Buying ECL on 2018-06-30 00:00:00\n", + "Buying RMD on 2018-06-30 00:00:00\n", + "Buying UDR on 2018-06-30 00:00:00\n", + "Buying BALL on 2018-06-30 00:00:00\n", + "Buying PAYX on 2018-06-30 00:00:00\n", + "Selling ZBRA on 2018-06-30 00:00:00\n", + "Selling STX on 2018-06-30 00:00:00\n", + "Selling EQT on 2018-06-30 00:00:00\n", + "Selling ORLY on 2018-06-30 00:00:00\n", + "Selling MPC on 2018-06-30 00:00:00\n", + "Selling MGM on 2018-06-30 00:00:00\n", + "Selling PAYC on 2018-06-30 00:00:00\n", + "Selling CVS on 2018-06-30 00:00:00\n", + "Selling BLDR on 2018-06-30 00:00:00\n", + "Selling KMX on 2018-06-30 00:00:00\n", + "Selling AMAT on 2018-06-30 00:00:00\n", + "Selling TPL on 2018-06-30 00:00:00\n", + "Selling DLTR on 2018-06-30 00:00:00\n", + "Selling GM on 2018-06-30 00:00:00\n", + "Selling GE on 2018-06-30 00:00:00\n", + "Selling WBD on 2018-06-30 00:00:00\n", + "Selling CHTR on 2018-06-30 00:00:00\n", + "Selling DRI on 2018-06-30 00:00:00\n", + "Selling TAP on 2018-06-30 00:00:00\n", + "Selling PM on 2018-06-30 00:00:00\n", + "Selling DXCM on 2018-06-30 00:00:00\n", + "Selling DVN on 2018-06-30 00:00:00\n", + "Selling RL on 2018-06-30 00:00:00\n", + "Selling SRE on 2018-06-30 00:00:00\n", + "Selling LULU on 2018-06-30 00:00:00\n", + "Selling VRTX on 2018-06-30 00:00:00\n", + "Selling APA on 2018-06-30 00:00:00\n", + "Selling AMD on 2018-06-30 00:00:00\n", + "Selling CPB on 2018-06-30 00:00:00\n", + "Selling FCX on 2018-06-30 00:00:00\n", + "Selling ANET on 2018-06-30 00:00:00\n", + "Selling MU on 2018-06-30 00:00:00\n", + "Selling FANG on 2018-06-30 00:00:00\n", + "Selling TSLA on 2018-06-30 00:00:00\n", + "Selling SMCI on 2018-06-30 00:00:00\n", + "Selling TER on 2018-06-30 00:00:00\n", + "Selling FSLR 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 LKQ on 2018-06-30 00:00:00\n", + "Selling NXPI on 2018-06-30 00:00:00\n", + "Selling INCY on 2018-06-30 00:00:00\n", + "Selling CAH on 2018-06-30 00:00:00\n", + "Selling CMG on 2018-06-30 00:00:00\n", + "Selling AXON on 2018-06-30 00:00:00\n", + "Selling MTCH on 2018-06-30 00:00:00\n", + "Selling GEN on 2018-06-30 00:00:00\n", + "Selling ENPH on 2018-06-30 00:00:00\n", + "Buying ECL on 2018-07-31 00:00:00\n", + "Buying VRSK on 2018-07-31 00:00:00\n", + "Buying AAPL on 2018-07-31 00:00:00\n", + "Buying PFE on 2018-07-31 00:00:00\n", + "Buying FI on 2018-07-31 00:00:00\n", + "Buying SPGI on 2018-07-31 00:00:00\n", + "Buying RMD on 2018-07-31 00:00:00\n", + "Buying WTW on 2018-07-31 00:00:00\n", + "Buying BRO on 2018-07-31 00:00:00\n", + "Buying BDX on 2018-07-31 00:00:00\n", + "Buying FIS on 2018-07-31 00:00:00\n", + "Buying YUM on 2018-07-31 00:00:00\n", + "Buying COST on 2018-07-31 00:00:00\n", + "Buying KO on 2018-07-31 00:00:00\n", + "Buying ALL on 2018-07-31 00:00:00\n", + "Buying AON on 2018-07-31 00:00:00\n", + "Buying APD on 2018-07-31 00:00:00\n", + "Buying HD on 2018-07-31 00:00:00\n", + "Buying JKHY on 2018-07-31 00:00:00\n", + "Buying TXT on 2018-07-31 00:00:00\n", + "Buying AJG on 2018-07-31 00:00:00\n", + "Buying IBM on 2018-07-31 00:00:00\n", + "Buying ADM on 2018-07-31 00:00:00\n", + "Buying STE on 2018-07-31 00:00:00\n", + "Buying MMC on 2018-07-31 00:00:00\n", + "Buying GRMN on 2018-07-31 00:00:00\n", + "Buying L on 2018-07-31 00:00:00\n", + "Buying PAYX on 2018-07-31 00:00:00\n", + "Buying CBRE on 2018-07-31 00:00:00\n", + "Buying ABT on 2018-07-31 00:00:00\n", + "Buying V on 2018-07-31 00:00:00\n", + "Buying RTX on 2018-07-31 00:00:00\n", + "Buying MSFT on 2018-07-31 00:00:00\n", + "Buying RSG on 2018-07-31 00:00:00\n", + "Buying TEL on 2018-07-31 00:00:00\n", + "Buying GS on 2018-07-31 00:00:00\n", + "Buying MSCI on 2018-07-31 00:00:00\n", + "Buying WRB on 2018-07-31 00:00:00\n", + "Buying GPC on 2018-07-31 00:00:00\n", + "Buying HLT on 2018-07-31 00:00:00\n", + "Buying ADP on 2018-07-31 00:00:00\n", + "Buying USB on 2018-07-31 00:00:00\n", + "Buying MMM on 2018-07-31 00:00:00\n", + "Buying SNPS on 2018-07-31 00:00:00\n", + "Buying RVTY on 2018-07-31 00:00:00\n", + "Buying ICE on 2018-07-31 00:00:00\n", + "Buying AMGN on 2018-07-31 00:00:00\n", + "Buying LIN on 2018-07-31 00:00:00\n", + "Selling ANET on 2018-07-31 00:00:00\n", + "Selling TPL on 2018-07-31 00:00:00\n", + "Selling AMAT on 2018-07-31 00:00:00\n", + "Selling WBA on 2018-07-31 00:00:00\n", + "Selling CVS on 2018-07-31 00:00:00\n", + "Selling KLAC on 2018-07-31 00:00:00\n", + "Selling DXCM on 2018-07-31 00:00:00\n", + "Selling NVR on 2018-07-31 00:00:00\n", + "Selling LRCX on 2018-07-31 00:00:00\n", + "Selling CMG on 2018-07-31 00:00:00\n", + "Selling PAYC on 2018-07-31 00:00:00\n", + "Selling ZBRA on 2018-07-31 00:00:00\n", + "Selling HAS on 2018-07-31 00:00:00\n", + "Selling FCX on 2018-07-31 00:00:00\n", + "Selling IR on 2018-07-31 00:00:00\n", + "Selling GE on 2018-07-31 00:00:00\n", + "Selling KDP on 2018-07-31 00:00:00\n", + "Selling KMX on 2018-07-31 00:00:00\n", + "Selling NFLX on 2018-07-31 00:00:00\n", + "Selling CZR on 2018-07-31 00:00:00\n", + "Selling DLTR on 2018-07-31 00:00:00\n", + "Selling FSLR on 2018-07-31 00:00:00\n", + "Selling MTCH on 2018-07-31 00:00:00\n", + "Selling WBD on 2018-07-31 00:00:00\n", + "Selling BLDR on 2018-07-31 00:00:00\n", + "Selling DHI on 2018-07-31 00:00:00\n", + "Selling RL on 2018-07-31 00:00:00\n", + "Selling GM on 2018-07-31 00:00:00\n", + "Selling DRI on 2018-07-31 00:00:00\n", + "Selling HWM on 2018-07-31 00:00:00\n", + "Selling SRE on 2018-07-31 00:00:00\n", + "Selling VRTX on 2018-07-31 00:00:00\n", + "Selling LULU on 2018-07-31 00:00:00\n", + "Selling AVGO on 2018-07-31 00:00:00\n", + "Selling APA on 2018-07-31 00:00:00\n", + "Selling MU on 2018-07-31 00:00:00\n", + "Selling DAY on 2018-07-31 00:00:00\n", + "Selling FANG on 2018-07-31 00:00:00\n", + "Selling CPB on 2018-07-31 00:00:00\n", + "Selling MHK on 2018-07-31 00:00:00\n", + "Selling TSLA on 2018-07-31 00:00:00\n", + "Selling META on 2018-07-31 00:00:00\n", + "Selling NXPI on 2018-07-31 00:00:00\n", + "Selling AMD on 2018-07-31 00:00:00\n", + "Selling BIIB on 2018-07-31 00:00:00\n", + "Selling AXON on 2018-07-31 00:00:00\n", + "Selling GEN on 2018-07-31 00:00:00\n", + "Selling ENPH on 2018-07-31 00:00:00\n", + "Buying HD on 2018-08-31 00:00:00\n", + "Buying AJG on 2018-08-31 00:00:00\n", + "Buying FIS on 2018-08-31 00:00:00\n", + "Buying FI on 2018-08-31 00:00:00\n", + "Buying ECL on 2018-08-31 00:00:00\n", + "Buying SPGI on 2018-08-31 00:00:00\n", + "Buying BRO on 2018-08-31 00:00:00\n", + "Buying KO on 2018-08-31 00:00:00\n", + "Buying L on 2018-08-31 00:00:00\n", + "Buying AON on 2018-08-31 00:00:00\n", + "Buying BDX on 2018-08-31 00:00:00\n", + "Buying V on 2018-08-31 00:00:00\n", + "Buying ABT on 2018-08-31 00:00:00\n", + "Buying STE on 2018-08-31 00:00:00\n", + "Buying UNH on 2018-08-31 00:00:00\n", + "Buying MMC on 2018-08-31 00:00:00\n", + "Buying COST on 2018-08-31 00:00:00\n", + "Buying PAYX on 2018-08-31 00:00:00\n", + "Buying ICE on 2018-08-31 00:00:00\n", + "Buying VRSK on 2018-08-31 00:00:00\n", + "Buying USB on 2018-08-31 00:00:00\n", + "Buying HLT on 2018-08-31 00:00:00\n", + "Buying TXT on 2018-08-31 00:00:00\n", + "Buying YUM on 2018-08-31 00:00:00\n", + "Buying WAB on 2018-08-31 00:00:00\n", + "Buying ROL on 2018-08-31 00:00:00\n", + "Buying AMGN on 2018-08-31 00:00:00\n", + "Buying TROW on 2018-08-31 00:00:00\n", + "Buying AME on 2018-08-31 00:00:00\n", + "Buying ADM on 2018-08-31 00:00:00\n", + "Buying MSFT on 2018-08-31 00:00:00\n", + "Buying RSG on 2018-08-31 00:00:00\n", + "Buying AVB on 2018-08-31 00:00:00\n", + "Buying WRB on 2018-08-31 00:00:00\n", + "Buying IFF on 2018-08-31 00:00:00\n", + "Buying NEE on 2018-08-31 00:00:00\n", + "Buying ALL on 2018-08-31 00:00:00\n", + "Buying GPC on 2018-08-31 00:00:00\n", + "Buying APH on 2018-08-31 00:00:00\n", + "Buying CDNS on 2018-08-31 00:00:00\n", + "Buying ATO on 2018-08-31 00:00:00\n", + "Buying HUM on 2018-08-31 00:00:00\n", + "Buying EXC on 2018-08-31 00:00:00\n", + "Buying SHW on 2018-08-31 00:00:00\n", + "Buying BAX on 2018-08-31 00:00:00\n", + "Buying EQR on 2018-08-31 00:00:00\n", + "Buying MRK on 2018-08-31 00:00:00\n", + "Buying ELV on 2018-08-31 00:00:00\n", + "Selling KLAC on 2018-08-31 00:00:00\n", + "Selling NVR on 2018-08-31 00:00:00\n", + "Selling NWS on 2018-08-31 00:00:00\n", + "Selling TPR on 2018-08-31 00:00:00\n", + "Selling NWSA on 2018-08-31 00:00:00\n", + "Selling EA on 2018-08-31 00:00:00\n", + "Selling MU on 2018-08-31 00:00:00\n", + "Selling KR on 2018-08-31 00:00:00\n", + "Selling KMX on 2018-08-31 00:00:00\n", + "Selling HAS on 2018-08-31 00:00:00\n", + "Selling CF on 2018-08-31 00:00:00\n", + "Selling TTWO on 2018-08-31 00:00:00\n", + "Selling WBD on 2018-08-31 00:00:00\n", + "Selling DHI on 2018-08-31 00:00:00\n", + "Selling IR on 2018-08-31 00:00:00\n", + "Selling KDP on 2018-08-31 00:00:00\n", + "Selling FCX on 2018-08-31 00:00:00\n", + "Selling DRI on 2018-08-31 00:00:00\n", + "Selling ADSK on 2018-08-31 00:00:00\n", + "Selling FTNT on 2018-08-31 00:00:00\n", + "Selling TRMB on 2018-08-31 00:00:00\n", + "Selling BLDR on 2018-08-31 00:00:00\n", + "Selling SRE on 2018-08-31 00:00:00\n", + "Selling LULU on 2018-08-31 00:00:00\n", + "Selling NFLX on 2018-08-31 00:00:00\n", + "Selling ANET on 2018-08-31 00:00:00\n", + "Selling DLTR on 2018-08-31 00:00:00\n", + "Selling VRTX on 2018-08-31 00:00:00\n", + "Selling CZR on 2018-08-31 00:00:00\n", + "Selling APA on 2018-08-31 00:00:00\n", + "Selling CMG on 2018-08-31 00:00:00\n", + "Selling AVGO on 2018-08-31 00:00:00\n", + "Selling FANG on 2018-08-31 00:00:00\n", + "Selling HWM on 2018-08-31 00:00:00\n", + "Selling AXON on 2018-08-31 00:00:00\n", + "Selling MHK on 2018-08-31 00:00:00\n", + "Selling ZBRA on 2018-08-31 00:00:00\n", + "Selling MOH on 2018-08-31 00:00:00\n", + "Selling DAY on 2018-08-31 00:00:00\n", + "Selling META on 2018-08-31 00:00:00\n", + "Selling PAYC on 2018-08-31 00:00:00\n", + "Selling BIIB on 2018-08-31 00:00:00\n", + "Selling AMD on 2018-08-31 00:00:00\n", + "Selling MTCH on 2018-08-31 00:00:00\n", + "Selling SMCI on 2018-08-31 00:00:00\n", + "Selling TSLA on 2018-08-31 00:00:00\n", + "Selling DXCM on 2018-08-31 00:00:00\n", + "Selling ENPH on 2018-08-31 00:00:00\n", + "Buying DELL on 2018-09-30 00:00:00\n", + "Buying YUM on 2018-09-30 00:00:00\n", + "Buying ACN on 2018-09-30 00:00:00\n", + "Buying AJG on 2018-09-30 00:00:00\n", + "Buying ECL on 2018-09-30 00:00:00\n", + "Buying PAYX on 2018-09-30 00:00:00\n", + "Buying BDX on 2018-09-30 00:00:00\n", + "Buying ADP on 2018-09-30 00:00:00\n", + "Buying KO on 2018-09-30 00:00:00\n", + "Buying FIS on 2018-09-30 00:00:00\n", + "Buying ADM on 2018-09-30 00:00:00\n", + "Buying STE on 2018-09-30 00:00:00\n", + "Buying WRB on 2018-09-30 00:00:00\n", + "Buying ACGL on 2018-09-30 00:00:00\n", + "Buying L on 2018-09-30 00:00:00\n", + "Buying ORCL on 2018-09-30 00:00:00\n", + "Buying USB on 2018-09-30 00:00:00\n", + "Buying AON on 2018-09-30 00:00:00\n", + "Buying BRO on 2018-09-30 00:00:00\n", + "Buying FI on 2018-09-30 00:00:00\n", + "Buying RSG on 2018-09-30 00:00:00\n", + "Buying CDNS on 2018-09-30 00:00:00\n", + "Buying WAT on 2018-09-30 00:00:00\n", + "Buying HD on 2018-09-30 00:00:00\n", + "Buying ERIE on 2018-09-30 00:00:00\n", + "Buying BAX on 2018-09-30 00:00:00\n", + "Buying ATO on 2018-09-30 00:00:00\n", + "Buying PG on 2018-09-30 00:00:00\n", + "Buying VRSK on 2018-09-30 00:00:00\n", + "Buying GPC on 2018-09-30 00:00:00\n", + "Buying V on 2018-09-30 00:00:00\n", + "Buying MRK on 2018-09-30 00:00:00\n", + "Buying SHW on 2018-09-30 00:00:00\n", + "Buying AME on 2018-09-30 00:00:00\n", + "Buying CPAY on 2018-09-30 00:00:00\n", + "Buying CB on 2018-09-30 00:00:00\n", + "Buying SBUX on 2018-09-30 00:00:00\n", + "Buying HLT on 2018-09-30 00:00:00\n", + "Buying ALL on 2018-09-30 00:00:00\n", + "Buying TXT on 2018-09-30 00:00:00\n", + "Buying UNH on 2018-09-30 00:00:00\n", + "Buying MSFT on 2018-09-30 00:00:00\n", + "Buying CINF on 2018-09-30 00:00:00\n", + "Buying TMO on 2018-09-30 00:00:00\n", + "Buying APH on 2018-09-30 00:00:00\n", + "Buying COST on 2018-09-30 00:00:00\n", + "Buying PFE on 2018-09-30 00:00:00\n", + "Buying APD on 2018-09-30 00:00:00\n", + "Selling NOW on 2018-09-30 00:00:00\n", + "Selling EA on 2018-09-30 00:00:00\n", + "Selling CF on 2018-09-30 00:00:00\n", + "Selling SYF on 2018-09-30 00:00:00\n", + "Selling NWSA on 2018-09-30 00:00:00\n", + "Selling WBD on 2018-09-30 00:00:00\n", + "Selling CZR on 2018-09-30 00:00:00\n", + "Selling STX on 2018-09-30 00:00:00\n", + "Selling WDAY on 2018-09-30 00:00:00\n", + "Selling WYNN on 2018-09-30 00:00:00\n", + "Selling LRCX on 2018-09-30 00:00:00\n", + "Selling HAS on 2018-09-30 00:00:00\n", + "Selling DHI on 2018-09-30 00:00:00\n", + "Selling IR on 2018-09-30 00:00:00\n", + "Selling TTWO on 2018-09-30 00:00:00\n", + "Selling CMG on 2018-09-30 00:00:00\n", + "Selling TRMB on 2018-09-30 00:00:00\n", + "Selling KR on 2018-09-30 00:00:00\n", + "Selling FCX on 2018-09-30 00:00:00\n", + "Selling WAB on 2018-09-30 00:00:00\n", + "Selling MU on 2018-09-30 00:00:00\n", + "Selling CPRT on 2018-09-30 00:00:00\n", + "Selling ADSK on 2018-09-30 00:00:00\n", + "Selling KLAC on 2018-09-30 00:00:00\n", + "Selling LULU on 2018-09-30 00:00:00\n", + "Selling FANG on 2018-09-30 00:00:00\n", + "Selling BLDR on 2018-09-30 00:00:00\n", + "Selling KDP on 2018-09-30 00:00:00\n", + "Selling NFLX on 2018-09-30 00:00:00\n", + "Selling ANET on 2018-09-30 00:00:00\n", + "Selling DLTR on 2018-09-30 00:00:00\n", + "Selling FTNT on 2018-09-30 00:00:00\n", + "Selling MHK on 2018-09-30 00:00:00\n", + "Selling HWM on 2018-09-30 00:00:00\n", + "Selling ZBRA on 2018-09-30 00:00:00\n", + "Selling AXON on 2018-09-30 00:00:00\n", + "Selling AVGO on 2018-09-30 00:00:00\n", + "Selling MOH on 2018-09-30 00:00:00\n", + "Selling META on 2018-09-30 00:00:00\n", + "Selling BIIB on 2018-09-30 00:00:00\n", + "Selling PAYC on 2018-09-30 00:00:00\n", + "Selling DAY on 2018-09-30 00:00:00\n", + "Selling MTCH on 2018-09-30 00:00:00\n", + "Selling SMCI on 2018-09-30 00:00:00\n", + "Selling AMD on 2018-09-30 00:00:00\n", + "Selling TSLA on 2018-09-30 00:00:00\n", + "Selling ENPH on 2018-09-30 00:00:00\n", + "Selling DXCM on 2018-09-30 00:00:00\n", + "Buying ACN on 2018-10-31 00:00:00\n", + "Buying HON on 2018-10-31 00:00:00\n", + "Buying ECL on 2018-10-31 00:00:00\n", + "Buying DHR on 2018-10-31 00:00:00\n", + "Buying VRSK on 2018-10-31 00:00:00\n", + "Buying L on 2018-10-31 00:00:00\n", + "Buying BRK-B on 2018-10-31 00:00:00\n", + "Buying CSCO on 2018-10-31 00:00:00\n", + "Buying BDX on 2018-10-31 00:00:00\n", + "Buying PAYX on 2018-10-31 00:00:00\n", + "Buying AJG on 2018-10-31 00:00:00\n", + "Buying TMO on 2018-10-31 00:00:00\n", + "Buying YUM on 2018-10-31 00:00:00\n", + "Buying ACGL on 2018-10-31 00:00:00\n", + "Buying FI on 2018-10-31 00:00:00\n", + "Buying FDS on 2018-10-31 00:00:00\n", + "Buying RSG on 2018-10-31 00:00:00\n", + "Buying WTW on 2018-10-31 00:00:00\n", + "Buying AXP on 2018-10-31 00:00:00\n", + "Buying AME on 2018-10-31 00:00:00\n", + "Buying APD on 2018-10-31 00:00:00\n", + "Buying DELL on 2018-10-31 00:00:00\n", + "Buying JNJ on 2018-10-31 00:00:00\n", + "Buying AFL on 2018-10-31 00:00:00\n", + "Buying ORCL on 2018-10-31 00:00:00\n", + "Buying ADP on 2018-10-31 00:00:00\n", + "Buying DOV on 2018-10-31 00:00:00\n", + "Buying FIS on 2018-10-31 00:00:00\n", + "Buying ADM on 2018-10-31 00:00:00\n", + "Buying KO on 2018-10-31 00:00:00\n", + "Buying MTD on 2018-10-31 00:00:00\n", + "Buying EVRG on 2018-10-31 00:00:00\n", + "Buying WM on 2018-10-31 00:00:00\n", + "Buying EMR on 2018-10-31 00:00:00\n", + "Buying JPM on 2018-10-31 00:00:00\n", + "Buying GLW on 2018-10-31 00:00:00\n", + "Buying MSI on 2018-10-31 00:00:00\n", + "Buying WRB on 2018-10-31 00:00:00\n", + "Buying IEX on 2018-10-31 00:00:00\n", + "Buying XOM on 2018-10-31 00:00:00\n", + "Buying BR on 2018-10-31 00:00:00\n", + "Buying TRMB on 2018-10-31 00:00:00\n", + "Buying UNH on 2018-10-31 00:00:00\n", + "Buying A on 2018-10-31 00:00:00\n", + "Buying APH on 2018-10-31 00:00:00\n", + "Buying SYK on 2018-10-31 00:00:00\n", + "Buying BRO on 2018-10-31 00:00:00\n", + "Buying SRE on 2018-10-31 00:00:00\n", + "Selling NEM on 2018-10-31 00:00:00\n", + "Selling TAP on 2018-10-31 00:00:00\n", + "Selling GWW on 2018-10-31 00:00:00\n", + "Selling NWSA on 2018-10-31 00:00:00\n", + "Selling TPR on 2018-10-31 00:00:00\n", + "Selling CTRA on 2018-10-31 00:00:00\n", + "Selling IR on 2018-10-31 00:00:00\n", + "Selling NOW on 2018-10-31 00:00:00\n", + "Selling WDAY on 2018-10-31 00:00:00\n", + "Selling NVDA on 2018-10-31 00:00:00\n", + "Selling ON on 2018-10-31 00:00:00\n", + "Selling MCHP on 2018-10-31 00:00:00\n", + "Selling WYNN on 2018-10-31 00:00:00\n", + "Selling LHX on 2018-10-31 00:00:00\n", + "Selling STX on 2018-10-31 00:00:00\n", + "Selling DXCM on 2018-10-31 00:00:00\n", + "Selling PHM on 2018-10-31 00:00:00\n", + "Selling DECK on 2018-10-31 00:00:00\n", + "Selling TTWO on 2018-10-31 00:00:00\n", + "Selling URI on 2018-10-31 00:00:00\n", + "Selling ADSK on 2018-10-31 00:00:00\n", + "Selling CPRT on 2018-10-31 00:00:00\n", + "Selling FCX on 2018-10-31 00:00:00\n", + "Selling AKAM on 2018-10-31 00:00:00\n", + "Selling CDNS on 2018-10-31 00:00:00\n", + "Selling NFLX on 2018-10-31 00:00:00\n", + "Selling FANG on 2018-10-31 00:00:00\n", + "Selling KR on 2018-10-31 00:00:00\n", + "Selling LULU on 2018-10-31 00:00:00\n", + "Selling EFX on 2018-10-31 00:00:00\n", + "Selling MU on 2018-10-31 00:00:00\n", + "Selling WAB on 2018-10-31 00:00:00\n", + "Selling GE on 2018-10-31 00:00:00\n", + "Selling BLDR on 2018-10-31 00:00:00\n", + "Selling VMC on 2018-10-31 00:00:00\n", + "Selling DLTR on 2018-10-31 00:00:00\n", + "Selling WDC on 2018-10-31 00:00:00\n", + "Selling CZR on 2018-10-31 00:00:00\n", + "Selling AXON on 2018-10-31 00:00:00\n", + "Selling EQT on 2018-10-31 00:00:00\n", + "Selling DAY on 2018-10-31 00:00:00\n", + "Selling MHK on 2018-10-31 00:00:00\n", + "Selling ALGN on 2018-10-31 00:00:00\n", + "Selling MTCH on 2018-10-31 00:00:00\n", + "Selling ENPH on 2018-10-31 00:00:00\n", + "Selling TSLA on 2018-10-31 00:00:00\n", + "Selling AMD on 2018-10-31 00:00:00\n", + "Selling SMCI on 2018-10-31 00:00:00\n", + "Buying HON on 2018-11-30 00:00:00\n", + "Buying ACN on 2018-11-30 00:00:00\n", + "Buying APD on 2018-11-30 00:00:00\n", + "Buying PAYX on 2018-11-30 00:00:00\n", + "Buying AJG on 2018-11-30 00:00:00\n", + "Buying FDS on 2018-11-30 00:00:00\n", + "Buying ECL on 2018-11-30 00:00:00\n", + "Buying DHR on 2018-11-30 00:00:00\n", + "Buying AXP on 2018-11-30 00:00:00\n", + "Buying MRK on 2018-11-30 00:00:00\n", + "Buying ACGL on 2018-11-30 00:00:00\n", + "Buying RSG on 2018-11-30 00:00:00\n", + "Buying DOV on 2018-11-30 00:00:00\n", + "Buying TMO on 2018-11-30 00:00:00\n", + "Buying FIS on 2018-11-30 00:00:00\n", + "Buying JNJ on 2018-11-30 00:00:00\n", + "Buying YUM on 2018-11-30 00:00:00\n", + "Buying EVRG on 2018-11-30 00:00:00\n", + "Buying WRB on 2018-11-30 00:00:00\n", + "Buying HIG on 2018-11-30 00:00:00\n", + "Buying AON on 2018-11-30 00:00:00\n", + "Buying BRO on 2018-11-30 00:00:00\n", + "Buying WM on 2018-11-30 00:00:00\n", + "Buying CSCO on 2018-11-30 00:00:00\n", + "Buying AFL on 2018-11-30 00:00:00\n", + "Buying KO on 2018-11-30 00:00:00\n", + "Buying ALLE on 2018-11-30 00:00:00\n", + "Buying GRMN on 2018-11-30 00:00:00\n", + "Buying MDT on 2018-11-30 00:00:00\n", + "Buying JPM on 2018-11-30 00:00:00\n", + "Buying ADP on 2018-11-30 00:00:00\n", + "Buying WBA on 2018-11-30 00:00:00\n", + "Buying BRK-B on 2018-11-30 00:00:00\n", + "Buying SYK on 2018-11-30 00:00:00\n", + "Buying EMR on 2018-11-30 00:00:00\n", + "Buying APH on 2018-11-30 00:00:00\n", + "Buying XOM on 2018-11-30 00:00:00\n", + "Buying ERIE on 2018-11-30 00:00:00\n", + "Buying COF on 2018-11-30 00:00:00\n", + "Buying USB on 2018-11-30 00:00:00\n", + "Buying ABT on 2018-11-30 00:00:00\n", + "Buying ZTS on 2018-11-30 00:00:00\n", + "Buying PFE on 2018-11-30 00:00:00\n", + "Buying BK on 2018-11-30 00:00:00\n", + "Buying HOLX on 2018-11-30 00:00:00\n", + "Buying CNP on 2018-11-30 00:00:00\n", + "Buying VRSK on 2018-11-30 00:00:00\n", + "Buying UNH on 2018-11-30 00:00:00\n", + "Selling MOH on 2018-11-30 00:00:00\n", + "Selling DVA on 2018-11-30 00:00:00\n", + "Selling FSLR on 2018-11-30 00:00:00\n", + "Selling CF on 2018-11-30 00:00:00\n", + "Selling KR on 2018-11-30 00:00:00\n", + "Selling NOW on 2018-11-30 00:00:00\n", + "Selling CTRA on 2018-11-30 00:00:00\n", + "Selling LHX on 2018-11-30 00:00:00\n", + "Selling DECK on 2018-11-30 00:00:00\n", + "Selling FTNT on 2018-11-30 00:00:00\n", + "Selling NXPI on 2018-11-30 00:00:00\n", + "Selling GEN on 2018-11-30 00:00:00\n", + "Selling AKAM on 2018-11-30 00:00:00\n", + "Selling NTAP on 2018-11-30 00:00:00\n", + "Selling EFX on 2018-11-30 00:00:00\n", + "Selling RL on 2018-11-30 00:00:00\n", + "Selling CDNS on 2018-11-30 00:00:00\n", + "Selling CPRT on 2018-11-30 00:00:00\n", + "Selling GDDY on 2018-11-30 00:00:00\n", + "Selling URI on 2018-11-30 00:00:00\n", + "Selling FCX on 2018-11-30 00:00:00\n", + "Selling VTRS on 2018-11-30 00:00:00\n", + "Selling TTWO on 2018-11-30 00:00:00\n", + "Selling VMC on 2018-11-30 00:00:00\n", + "Selling WAB on 2018-11-30 00:00:00\n", + "Selling ON on 2018-11-30 00:00:00\n", + "Selling WDAY on 2018-11-30 00:00:00\n", + "Selling DAY on 2018-11-30 00:00:00\n", + "Selling VRSN on 2018-11-30 00:00:00\n", + "Selling DXCM on 2018-11-30 00:00:00\n", + "Selling BLDR on 2018-11-30 00:00:00\n", + "Selling TPL on 2018-11-30 00:00:00\n", + "Selling GE on 2018-11-30 00:00:00\n", + "Selling WYNN on 2018-11-30 00:00:00\n", + "Selling WDC on 2018-11-30 00:00:00\n", + "Selling CZR on 2018-11-30 00:00:00\n", + "Selling MHK on 2018-11-30 00:00:00\n", + "Selling EQT on 2018-11-30 00:00:00\n", + "Selling AXON on 2018-11-30 00:00:00\n", + "Selling EIX on 2018-11-30 00:00:00\n", + "Selling NVDA on 2018-11-30 00:00:00\n", + "Selling ALGN on 2018-11-30 00:00:00\n", + "Selling MTCH on 2018-11-30 00:00:00\n", + "Selling ENPH on 2018-11-30 00:00:00\n", + "Selling TSLA on 2018-11-30 00:00:00\n", + "Selling AMD on 2018-11-30 00:00:00\n", + "Selling SMCI on 2018-11-30 00:00:00\n", + "Selling PCG on 2018-11-30 00:00:00\n", + "Buying HON on 2018-12-31 00:00:00\n", + "Buying ABT on 2018-12-31 00:00:00\n", + "Buying PAYX on 2018-12-31 00:00:00\n", + "Buying AJG on 2018-12-31 00:00:00\n", + "Buying WRB on 2018-12-31 00:00:00\n", + "Buying FIS on 2018-12-31 00:00:00\n", + "Buying MRK on 2018-12-31 00:00:00\n", + "Buying TMO on 2018-12-31 00:00:00\n", + "Buying MDT on 2018-12-31 00:00:00\n", + "Buying TROW on 2018-12-31 00:00:00\n", + "Buying RSG on 2018-12-31 00:00:00\n", + "Buying JPM on 2018-12-31 00:00:00\n", + "Buying BRO on 2018-12-31 00:00:00\n", + "Buying APD on 2018-12-31 00:00:00\n", + "Buying ECL on 2018-12-31 00:00:00\n", + "Buying NDAQ on 2018-12-31 00:00:00\n", + "Buying ACGL on 2018-12-31 00:00:00\n", + "Buying ALLE on 2018-12-31 00:00:00\n", + "Buying UNH on 2018-12-31 00:00:00\n", + "Buying DIS on 2018-12-31 00:00:00\n", + "Buying DOV on 2018-12-31 00:00:00\n", + "Buying ACN on 2018-12-31 00:00:00\n", + "Buying DHR on 2018-12-31 00:00:00\n", + "Buying PNR on 2018-12-31 00:00:00\n", + "Buying AXP on 2018-12-31 00:00:00\n", + "Buying BRK-B on 2018-12-31 00:00:00\n", + "Buying MMM on 2018-12-31 00:00:00\n", + "Buying MMC on 2018-12-31 00:00:00\n", + "Buying AON on 2018-12-31 00:00:00\n", + "Buying KO on 2018-12-31 00:00:00\n", + "Buying CSCO on 2018-12-31 00:00:00\n", + "Buying GL on 2018-12-31 00:00:00\n", + "Buying VRSK on 2018-12-31 00:00:00\n", + "Buying ETN on 2018-12-31 00:00:00\n", + "Buying TT on 2018-12-31 00:00:00\n", + "Buying COF on 2018-12-31 00:00:00\n", + "Buying ZTS on 2018-12-31 00:00:00\n", + "Buying CNP on 2018-12-31 00:00:00\n", + "Buying HOLX on 2018-12-31 00:00:00\n", + "Buying XOM on 2018-12-31 00:00:00\n", + "Buying BDX on 2018-12-31 00:00:00\n", + "Buying EVRG on 2018-12-31 00:00:00\n", + "Buying SPGI on 2018-12-31 00:00:00\n", + "Buying ZBH on 2018-12-31 00:00:00\n", + "Buying MDLZ on 2018-12-31 00:00:00\n", + "Buying ADM on 2018-12-31 00:00:00\n", + "Buying SYK on 2018-12-31 00:00:00\n", + "Buying FDS on 2018-12-31 00:00:00\n", + "Selling FSLR on 2018-12-31 00:00:00\n", + "Selling NEM on 2018-12-31 00:00:00\n", + "Selling AKAM on 2018-12-31 00:00:00\n", + "Selling CF on 2018-12-31 00:00:00\n", + "Selling ULTA on 2018-12-31 00:00:00\n", + "Selling GEN on 2018-12-31 00:00:00\n", + "Selling DECK on 2018-12-31 00:00:00\n", + "Selling NXPI on 2018-12-31 00:00:00\n", + "Selling LULU on 2018-12-31 00:00:00\n", + "Selling NOW on 2018-12-31 00:00:00\n", + "Selling RL on 2018-12-31 00:00:00\n", + "Selling LHX on 2018-12-31 00:00:00\n", + "Selling EFX on 2018-12-31 00:00:00\n", + "Selling CTRA on 2018-12-31 00:00:00\n", + "Selling CDNS on 2018-12-31 00:00:00\n", + "Selling FCX on 2018-12-31 00:00:00\n", + "Selling FTNT on 2018-12-31 00:00:00\n", + "Selling GDDY on 2018-12-31 00:00:00\n", + "Selling NTAP on 2018-12-31 00:00:00\n", + "Selling MOH on 2018-12-31 00:00:00\n", + "Selling VTRS on 2018-12-31 00:00:00\n", + "Selling URI on 2018-12-31 00:00:00\n", + "Selling VMC on 2018-12-31 00:00:00\n", + "Selling DXCM on 2018-12-31 00:00:00\n", + "Selling WDAY on 2018-12-31 00:00:00\n", + "Selling ON on 2018-12-31 00:00:00\n", + "Selling VRSN on 2018-12-31 00:00:00\n", + "Selling TTWO on 2018-12-31 00:00:00\n", + "Selling CAG on 2018-12-31 00:00:00\n", + "Selling DELL on 2018-12-31 00:00:00\n", + "Selling ENPH on 2018-12-31 00:00:00\n", + "Selling WDC on 2018-12-31 00:00:00\n", + "Selling WYNN on 2018-12-31 00:00:00\n", + "Selling BLDR on 2018-12-31 00:00:00\n", + "Selling AXON on 2018-12-31 00:00:00\n", + "Selling GE on 2018-12-31 00:00:00\n", + "Selling TSLA on 2018-12-31 00:00:00\n", + "Selling MHK on 2018-12-31 00:00:00\n", + "Selling TPL on 2018-12-31 00:00:00\n", + "Selling CZR on 2018-12-31 00:00:00\n", + "Selling EQT on 2018-12-31 00:00:00\n", + "Selling EIX on 2018-12-31 00:00:00\n", + "Selling ALGN on 2018-12-31 00:00:00\n", + "Selling NVDA on 2018-12-31 00:00:00\n", + "Selling MTCH on 2018-12-31 00:00:00\n", + "Selling AMD on 2018-12-31 00:00:00\n", + "Selling SMCI on 2018-12-31 00:00:00\n", + "Selling PCG on 2018-12-31 00:00:00\n", + "Buying HON on 2019-01-31 00:00:00\n", + "Buying RSG on 2019-01-31 00:00:00\n", + "Buying GPC on 2019-01-31 00:00:00\n", + "Buying PAYX on 2019-01-31 00:00:00\n", + "Buying VRSK on 2019-01-31 00:00:00\n", + "Buying FIS on 2019-01-31 00:00:00\n", + "Buying AON on 2019-01-31 00:00:00\n", + "Buying WRB on 2019-01-31 00:00:00\n", + "Buying ECL on 2019-01-31 00:00:00\n", + "Buying PNR on 2019-01-31 00:00:00\n", + "Buying WM on 2019-01-31 00:00:00\n", + "Buying AJG on 2019-01-31 00:00:00\n", + "Buying ADM on 2019-01-31 00:00:00\n", + "Buying ADP on 2019-01-31 00:00:00\n", + "Buying ZTS on 2019-01-31 00:00:00\n", + "Buying JPM on 2019-01-31 00:00:00\n", + "Buying V on 2019-01-31 00:00:00\n", + "Buying ROP on 2019-01-31 00:00:00\n", + "Buying YUM on 2019-01-31 00:00:00\n", + "Buying GL on 2019-01-31 00:00:00\n", + "Buying USB on 2019-01-31 00:00:00\n", + "Buying GRMN on 2019-01-31 00:00:00\n", + "Buying MMM on 2019-01-31 00:00:00\n", + "Buying OMC on 2019-01-31 00:00:00\n", + "Buying SPGI on 2019-01-31 00:00:00\n", + "Buying AXP on 2019-01-31 00:00:00\n", + "Buying IQV on 2019-01-31 00:00:00\n", + "Buying DIS on 2019-01-31 00:00:00\n", + "Buying ALL on 2019-01-31 00:00:00\n", + "Buying HD on 2019-01-31 00:00:00\n", + "Buying MSFT on 2019-01-31 00:00:00\n", + "Buying ALLE on 2019-01-31 00:00:00\n", + "Buying ACGL on 2019-01-31 00:00:00\n", + "Buying CINF on 2019-01-31 00:00:00\n", + "Buying AVY on 2019-01-31 00:00:00\n", + "Buying CSX on 2019-01-31 00:00:00\n", + "Buying TMO on 2019-01-31 00:00:00\n", + "Buying BLK on 2019-01-31 00:00:00\n", + "Buying CSCO on 2019-01-31 00:00:00\n", + "Buying IT on 2019-01-31 00:00:00\n", + "Buying BAX on 2019-01-31 00:00:00\n", + "Buying WBA on 2019-01-31 00:00:00\n", + "Buying MRK on 2019-01-31 00:00:00\n", + "Buying BRO on 2019-01-31 00:00:00\n", + "Buying K on 2019-01-31 00:00:00\n", + "Buying MMC on 2019-01-31 00:00:00\n", + "Buying AME on 2019-01-31 00:00:00\n", + "Buying FDS on 2019-01-31 00:00:00\n", + "Selling APA on 2019-01-31 00:00:00\n", + "Selling SYF on 2019-01-31 00:00:00\n", + "Selling GDDY on 2019-01-31 00:00:00\n", + "Selling META on 2019-01-31 00:00:00\n", + "Selling ULTA on 2019-01-31 00:00:00\n", + "Selling WBD on 2019-01-31 00:00:00\n", + "Selling SWK on 2019-01-31 00:00:00\n", + "Selling TER on 2019-01-31 00:00:00\n", + "Selling HES on 2019-01-31 00:00:00\n", + "Selling MU on 2019-01-31 00:00:00\n", + "Selling INCY on 2019-01-31 00:00:00\n", + "Selling NTAP on 2019-01-31 00:00:00\n", + "Selling DECK on 2019-01-31 00:00:00\n", + "Selling TTWO on 2019-01-31 00:00:00\n", + "Selling AMAT on 2019-01-31 00:00:00\n", + "Selling ALGN on 2019-01-31 00:00:00\n", + "Selling WDAY on 2019-01-31 00:00:00\n", + "Selling LULU on 2019-01-31 00:00:00\n", + "Selling NOW on 2019-01-31 00:00:00\n", + "Selling PODD on 2019-01-31 00:00:00\n", + "Selling ON on 2019-01-31 00:00:00\n", + "Selling VRSN on 2019-01-31 00:00:00\n", + "Selling FTNT on 2019-01-31 00:00:00\n", + "Selling LRCX on 2019-01-31 00:00:00\n", + "Selling WDC on 2019-01-31 00:00:00\n", + "Selling VTRS on 2019-01-31 00:00:00\n", + "Selling CAG on 2019-01-31 00:00:00\n", + "Selling HWM on 2019-01-31 00:00:00\n", + "Selling CZR on 2019-01-31 00:00:00\n", + "Selling MOH on 2019-01-31 00:00:00\n", + "Selling RMD on 2019-01-31 00:00:00\n", + "Selling FCX on 2019-01-31 00:00:00\n", + "Selling DXCM on 2019-01-31 00:00:00\n", + "Selling WYNN on 2019-01-31 00:00:00\n", + "Selling ENPH on 2019-01-31 00:00:00\n", + "Selling AXON on 2019-01-31 00:00:00\n", + "Selling EQT on 2019-01-31 00:00:00\n", + "Selling TSLA on 2019-01-31 00:00:00\n", + "Selling TPL on 2019-01-31 00:00:00\n", + "Selling BLDR on 2019-01-31 00:00:00\n", + "Selling DELL on 2019-01-31 00:00:00\n", + "Selling GE on 2019-01-31 00:00:00\n", + "Selling MTCH on 2019-01-31 00:00:00\n", + "Selling SMCI on 2019-01-31 00:00:00\n", + "Selling EIX on 2019-01-31 00:00:00\n", + "Selling AMD on 2019-01-31 00:00:00\n", + "Selling NVDA on 2019-01-31 00:00:00\n", + "Selling PCG on 2019-01-31 00:00:00\n", + "Buying HON on 2019-02-28 00:00:00\n", + "Buying RSG on 2019-02-28 00:00:00\n", + "Buying JKHY on 2019-02-28 00:00:00\n", + "Buying PAYX on 2019-02-28 00:00:00\n", + "Buying BAX on 2019-02-28 00:00:00\n", + "Buying GPC on 2019-02-28 00:00:00\n", + "Buying VRSK on 2019-02-28 00:00:00\n", + "Buying TRV on 2019-02-28 00:00:00\n", + "Buying PNR on 2019-02-28 00:00:00\n", + "Buying ECL on 2019-02-28 00:00:00\n", + "Buying CTAS on 2019-02-28 00:00:00\n", + "Buying CL on 2019-02-28 00:00:00\n", + "Buying CSCO on 2019-02-28 00:00:00\n", + "Buying USB on 2019-02-28 00:00:00\n", + "Buying GL on 2019-02-28 00:00:00\n", + "Buying MCO on 2019-02-28 00:00:00\n", + "Buying ADP on 2019-02-28 00:00:00\n", + "Buying AXP on 2019-02-28 00:00:00\n", + "Buying JPM on 2019-02-28 00:00:00\n", + "Buying WM on 2019-02-28 00:00:00\n", + "Buying PGR on 2019-02-28 00:00:00\n", + "Buying WRB on 2019-02-28 00:00:00\n", + "Buying MMM on 2019-02-28 00:00:00\n", + "Buying A on 2019-02-28 00:00:00\n", + "Buying BDX on 2019-02-28 00:00:00\n", + "Buying DIS on 2019-02-28 00:00:00\n", + "Buying WTW on 2019-02-28 00:00:00\n", + "Buying VRSN on 2019-02-28 00:00:00\n", + "Buying CSX on 2019-02-28 00:00:00\n", + "Buying AVY on 2019-02-28 00:00:00\n", + "Buying HD on 2019-02-28 00:00:00\n", + "Buying MA on 2019-02-28 00:00:00\n", + "Buying BRK-B on 2019-02-28 00:00:00\n", + "Buying AIZ on 2019-02-28 00:00:00\n", + "Buying TMO on 2019-02-28 00:00:00\n", + "Buying NDAQ on 2019-02-28 00:00:00\n", + "Buying FIS on 2019-02-28 00:00:00\n", + "Buying SNPS on 2019-02-28 00:00:00\n", + "Buying AME on 2019-02-28 00:00:00\n", + "Buying SPGI on 2019-02-28 00:00:00\n", + "Buying YUM on 2019-02-28 00:00:00\n", + "Buying AJG on 2019-02-28 00:00:00\n", + "Buying ACN on 2019-02-28 00:00:00\n", + "Buying ANSS on 2019-02-28 00:00:00\n", + "Buying CVX on 2019-02-28 00:00:00\n", + "Buying V on 2019-02-28 00:00:00\n", + "Buying TT on 2019-02-28 00:00:00\n", + "Buying ICE on 2019-02-28 00:00:00\n", + "Selling AXON on 2019-02-28 00:00:00\n", + "Selling TER on 2019-02-28 00:00:00\n", + "Selling MTCH on 2019-02-28 00:00:00\n", + "Selling INCY on 2019-02-28 00:00:00\n", + "Selling NOW on 2019-02-28 00:00:00\n", + "Selling SWKS on 2019-02-28 00:00:00\n", + "Selling STZ on 2019-02-28 00:00:00\n", + "Selling HES on 2019-02-28 00:00:00\n", + "Selling PODD on 2019-02-28 00:00:00\n", + "Selling WAB on 2019-02-28 00:00:00\n", + "Selling WBD on 2019-02-28 00:00:00\n", + "Selling CPB on 2019-02-28 00:00:00\n", + "Selling NEM on 2019-02-28 00:00:00\n", + "Selling SWK on 2019-02-28 00:00:00\n", + "Selling AMAT on 2019-02-28 00:00:00\n", + "Selling CMG on 2019-02-28 00:00:00\n", + "Selling GRMN on 2019-02-28 00:00:00\n", + "Selling TPR on 2019-02-28 00:00:00\n", + "Selling LULU on 2019-02-28 00:00:00\n", + "Selling BLDR on 2019-02-28 00:00:00\n", + "Selling TRGP on 2019-02-28 00:00:00\n", + "Selling ON on 2019-02-28 00:00:00\n", + "Selling HPQ on 2019-02-28 00:00:00\n", + "Selling BBY on 2019-02-28 00:00:00\n", + "Selling MU on 2019-02-28 00:00:00\n", + "Selling DXCM on 2019-02-28 00:00:00\n", + "Selling VTRS on 2019-02-28 00:00:00\n", + "Selling LRCX on 2019-02-28 00:00:00\n", + "Selling TPL on 2019-02-28 00:00:00\n", + "Selling WDC on 2019-02-28 00:00:00\n", + "Selling NVDA on 2019-02-28 00:00:00\n", + "Selling CAG on 2019-02-28 00:00:00\n", + "Selling DECK on 2019-02-28 00:00:00\n", + "Selling EQT on 2019-02-28 00:00:00\n", + "Selling HWM on 2019-02-28 00:00:00\n", + "Selling MOH on 2019-02-28 00:00:00\n", + "Selling RMD on 2019-02-28 00:00:00\n", + "Selling FCX on 2019-02-28 00:00:00\n", + "Selling TTWO on 2019-02-28 00:00:00\n", + "Selling ENPH on 2019-02-28 00:00:00\n", + "Selling DELL on 2019-02-28 00:00:00\n", + "Selling TSLA on 2019-02-28 00:00:00\n", + "Selling GE on 2019-02-28 00:00:00\n", + "Selling EA on 2019-02-28 00:00:00\n", + "Selling AMD on 2019-02-28 00:00:00\n", + "Selling KHC on 2019-02-28 00:00:00\n", + "Selling SMCI on 2019-02-28 00:00:00\n", + "Selling PCG on 2019-02-28 00:00:00\n", + "Buying AFL on 2019-03-31 00:00:00\n", + "Buying HON on 2019-03-31 00:00:00\n", + "Buying ECL on 2019-03-31 00:00:00\n", + "Buying WM on 2019-03-31 00:00:00\n", + "Buying RSG on 2019-03-31 00:00:00\n", + "Buying PAYX on 2019-03-31 00:00:00\n", + "Buying BAX on 2019-03-31 00:00:00\n", + "Buying AXP on 2019-03-31 00:00:00\n", + "Buying GL on 2019-03-31 00:00:00\n", + "Buying MA on 2019-03-31 00:00:00\n", + "Buying ADP on 2019-03-31 00:00:00\n", + "Buying JNJ on 2019-03-31 00:00:00\n", + "Buying JKHY on 2019-03-31 00:00:00\n", + "Buying VRSK on 2019-03-31 00:00:00\n", + "Buying CSCO on 2019-03-31 00:00:00\n", + "Buying GPC on 2019-03-31 00:00:00\n", + "Buying TRV on 2019-03-31 00:00:00\n", + "Buying AVB on 2019-03-31 00:00:00\n", + "Buying YUM on 2019-03-31 00:00:00\n", + "Buying A on 2019-03-31 00:00:00\n", + "Buying CL on 2019-03-31 00:00:00\n", + "Buying HIG on 2019-03-31 00:00:00\n", + "Buying UDR on 2019-03-31 00:00:00\n", + "Buying PNR on 2019-03-31 00:00:00\n", + "Buying MCO on 2019-03-31 00:00:00\n", + "Buying AMT 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 ESS on 2019-03-31 00:00:00\n", + "Buying EQR on 2019-03-31 00:00:00\n", + "Buying WRB on 2019-03-31 00:00:00\n", + "Buying CVX on 2019-03-31 00:00:00\n", + "Buying ORCL on 2019-03-31 00:00:00\n", + "Buying SPGI on 2019-03-31 00:00:00\n", + "Buying ALL on 2019-03-31 00:00:00\n", + "Buying SNPS on 2019-03-31 00:00:00\n", + "Buying CINF on 2019-03-31 00:00:00\n", + "Buying VRSN on 2019-03-31 00:00:00\n", + "Buying AME on 2019-03-31 00:00:00\n", + "Buying BRK-B on 2019-03-31 00:00:00\n", + "Buying CCI on 2019-03-31 00:00:00\n", + "Buying CPT on 2019-03-31 00:00:00\n", + "Buying BLK on 2019-03-31 00:00:00\n", + "Buying STE on 2019-03-31 00:00:00\n", + "Buying WEC on 2019-03-31 00:00:00\n", + "Buying PGR on 2019-03-31 00:00:00\n", + "Buying XEL on 2019-03-31 00:00:00\n", + "Buying EXC on 2019-03-31 00:00:00\n", + "Selling DPZ on 2019-03-31 00:00:00\n", + "Selling TRGP on 2019-03-31 00:00:00\n", + "Selling KMX on 2019-03-31 00:00:00\n", + "Selling INCY on 2019-03-31 00:00:00\n", + "Selling DVN on 2019-03-31 00:00:00\n", + "Selling SWK on 2019-03-31 00:00:00\n", + "Selling CHTR on 2019-03-31 00:00:00\n", + "Selling FSLR on 2019-03-31 00:00:00\n", + "Selling NFLX on 2019-03-31 00:00:00\n", + "Selling ALGN on 2019-03-31 00:00:00\n", + "Selling DHI on 2019-03-31 00:00:00\n", + "Selling TER on 2019-03-31 00:00:00\n", + "Selling LEN on 2019-03-31 00:00:00\n", + "Selling AXON on 2019-03-31 00:00:00\n", + "Selling AMAT on 2019-03-31 00:00:00\n", + "Selling SWKS on 2019-03-31 00:00:00\n", + "Selling STZ on 2019-03-31 00:00:00\n", + "Selling BBY on 2019-03-31 00:00:00\n", + "Selling WAB on 2019-03-31 00:00:00\n", + "Selling CAG on 2019-03-31 00:00:00\n", + "Selling GRMN on 2019-03-31 00:00:00\n", + "Selling TPR on 2019-03-31 00:00:00\n", + "Selling HWM on 2019-03-31 00:00:00\n", + "Selling HPQ on 2019-03-31 00:00:00\n", + "Selling DECK on 2019-03-31 00:00:00\n", + "Selling ON on 2019-03-31 00:00:00\n", + "Selling NVDA on 2019-03-31 00:00:00\n", + "Selling VTRS on 2019-03-31 00:00:00\n", + "Selling MU on 2019-03-31 00:00:00\n", + "Selling LULU on 2019-03-31 00:00:00\n", + "Selling EQT on 2019-03-31 00:00:00\n", + "Selling LRCX on 2019-03-31 00:00:00\n", + "Selling FCX on 2019-03-31 00:00:00\n", + "Selling DXCM on 2019-03-31 00:00:00\n", + "Selling RMD on 2019-03-31 00:00:00\n", + "Selling WDC on 2019-03-31 00:00:00\n", + "Selling MOH on 2019-03-31 00:00:00\n", + "Selling TTWO on 2019-03-31 00:00:00\n", + "Selling GE on 2019-03-31 00:00:00\n", + "Selling TSLA on 2019-03-31 00:00:00\n", + "Selling ENPH on 2019-03-31 00:00:00\n", + "Selling SMCI on 2019-03-31 00:00:00\n", + "Selling AMD on 2019-03-31 00:00:00\n", + "Selling EA on 2019-03-31 00:00:00\n", + "Selling KHC on 2019-03-31 00:00:00\n", + "Selling MRNA on 2019-03-31 00:00:00\n", + "Selling BIIB on 2019-03-31 00:00:00\n", + "Selling PCG on 2019-03-31 00:00:00\n", + "Buying V on 2019-04-30 00:00:00\n", + "Buying AFL on 2019-04-30 00:00:00\n", + "Buying PAYX on 2019-04-30 00:00:00\n", + "Buying VRSK on 2019-04-30 00:00:00\n", + "Buying ADP on 2019-04-30 00:00:00\n", + "Buying ROP on 2019-04-30 00:00:00\n", + "Buying MMC on 2019-04-30 00:00:00\n", + "Buying JNJ on 2019-04-30 00:00:00\n", + "Buying ECL on 2019-04-30 00:00:00\n", + "Buying MDLZ on 2019-04-30 00:00:00\n", + "Buying JKHY on 2019-04-30 00:00:00\n", + "Buying MA on 2019-04-30 00:00:00\n", + "Buying BRK-B on 2019-04-30 00:00:00\n", + "Buying SPGI 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 AXP on 2019-04-30 00:00:00\n", + "Buying HON on 2019-04-30 00:00:00\n", + "Buying ES on 2019-04-30 00:00:00\n", + "Buying AME on 2019-04-30 00:00:00\n", + "Buying YUM on 2019-04-30 00:00:00\n", + "Buying APD on 2019-04-30 00:00:00\n", + "Buying IBM on 2019-04-30 00:00:00\n", + "Buying PWR on 2019-04-30 00:00:00\n", + "Buying DOV on 2019-04-30 00:00:00\n", + "Buying CSCO on 2019-04-30 00:00:00\n", + "Buying BRO on 2019-04-30 00:00:00\n", + "Buying DUK on 2019-04-30 00:00:00\n", + "Buying ETN on 2019-04-30 00:00:00\n", + "Buying EMR on 2019-04-30 00:00:00\n", + "Buying LNT on 2019-04-30 00:00:00\n", + "Buying HIG on 2019-04-30 00:00:00\n", + "Buying XEL on 2019-04-30 00:00:00\n", + "Buying ORCL on 2019-04-30 00:00:00\n", + "Buying JCI on 2019-04-30 00:00:00\n", + "Buying PCAR on 2019-04-30 00:00:00\n", + "Buying SO on 2019-04-30 00:00:00\n", + "Buying WM on 2019-04-30 00:00:00\n", + "Buying RTX on 2019-04-30 00:00:00\n", + "Buying NWS on 2019-04-30 00:00:00\n", + "Buying EXC on 2019-04-30 00:00:00\n", + "Buying AJG on 2019-04-30 00:00:00\n", + "Buying RSG on 2019-04-30 00:00:00\n", + "Buying USB on 2019-04-30 00:00:00\n", + "Buying PEG on 2019-04-30 00:00:00\n", + "Buying VICI on 2019-04-30 00:00:00\n", + "Buying NWSA on 2019-04-30 00:00:00\n", + "Buying ETR on 2019-04-30 00:00:00\n", + "Selling MSI on 2019-04-30 00:00:00\n", + "Selling HUM on 2019-04-30 00:00:00\n", + "Selling ALGN on 2019-04-30 00:00:00\n", + "Selling HCA on 2019-04-30 00:00:00\n", + "Selling FSLR on 2019-04-30 00:00:00\n", + "Selling MNST on 2019-04-30 00:00:00\n", + "Selling EOG on 2019-04-30 00:00:00\n", + "Selling APA on 2019-04-30 00:00:00\n", + "Selling SWKS on 2019-04-30 00:00:00\n", + "Selling NXPI on 2019-04-30 00:00:00\n", + "Selling CPB on 2019-04-30 00:00:00\n", + "Selling BBY on 2019-04-30 00:00:00\n", + "Selling CI on 2019-04-30 00:00:00\n", + "Selling KR on 2019-04-30 00:00:00\n", + "Selling TPL on 2019-04-30 00:00:00\n", + "Selling HAS on 2019-04-30 00:00:00\n", + "Selling WAB on 2019-04-30 00:00:00\n", + "Selling CNC on 2019-04-30 00:00:00\n", + "Selling MU on 2019-04-30 00:00:00\n", + "Selling DPZ on 2019-04-30 00:00:00\n", + "Selling WBA on 2019-04-30 00:00:00\n", + "Selling DVN on 2019-04-30 00:00:00\n", + "Selling CAG on 2019-04-30 00:00:00\n", + "Selling ELV on 2019-04-30 00:00:00\n", + "Selling AXON on 2019-04-30 00:00:00\n", + "Selling GRMN on 2019-04-30 00:00:00\n", + "Selling WDC on 2019-04-30 00:00:00\n", + "Selling VTRS on 2019-04-30 00:00:00\n", + "Selling FCX on 2019-04-30 00:00:00\n", + "Selling TPR on 2019-04-30 00:00:00\n", + "Selling LULU on 2019-04-30 00:00:00\n", + "Selling HPQ on 2019-04-30 00:00:00\n", + "Selling IR on 2019-04-30 00:00:00\n", + "Selling DXCM on 2019-04-30 00:00:00\n", + "Selling EQT on 2019-04-30 00:00:00\n", + "Selling GE on 2019-04-30 00:00:00\n", + "Selling AMD on 2019-04-30 00:00:00\n", + "Selling TSLA on 2019-04-30 00:00:00\n", + "Selling TTWO on 2019-04-30 00:00:00\n", + "Selling ENPH on 2019-04-30 00:00:00\n", + "Selling SMCI on 2019-04-30 00:00:00\n", + "Selling MOH on 2019-04-30 00:00:00\n", + "Selling EA on 2019-04-30 00:00:00\n", + "Selling QCOM on 2019-04-30 00:00:00\n", + "Selling KHC on 2019-04-30 00:00:00\n", + "Selling BIIB on 2019-04-30 00:00:00\n", + "Selling PCG on 2019-04-30 00:00:00\n", + "Selling MRNA on 2019-04-30 00:00:00\n", + "Buying V on 2019-05-31 00:00:00\n", + "Buying VRSK on 2019-05-31 00:00:00\n", + "Buying ECL on 2019-05-31 00:00:00\n", + "Buying ROP on 2019-05-31 00:00:00\n", + "Buying BRK-B on 2019-05-31 00:00:00\n", + "Buying AFL on 2019-05-31 00:00:00\n", + "Buying AME on 2019-05-31 00:00:00\n", + "Buying MDLZ on 2019-05-31 00:00:00\n", + "Buying PAYX on 2019-05-31 00:00:00\n", + "Buying HON on 2019-05-31 00:00:00\n", + "Buying L on 2019-05-31 00:00:00\n", + "Buying ETN on 2019-05-31 00:00:00\n", + "Buying IT on 2019-05-31 00:00:00\n", + "Buying AXP on 2019-05-31 00:00:00\n", + "Buying SPGI on 2019-05-31 00:00:00\n", + "Buying AON on 2019-05-31 00:00:00\n", + "Buying MMC on 2019-05-31 00:00:00\n", + "Buying MCD on 2019-05-31 00:00:00\n", + "Buying YUM on 2019-05-31 00:00:00\n", + "Buying ORCL on 2019-05-31 00:00:00\n", + "Buying EMR on 2019-05-31 00:00:00\n", + "Buying MSFT on 2019-05-31 00:00:00\n", + "Buying BRO on 2019-05-31 00:00:00\n", + "Buying AJG on 2019-05-31 00:00:00\n", + "Buying RSG on 2019-05-31 00:00:00\n", + "Buying CB on 2019-05-31 00:00:00\n", + "Buying WRB on 2019-05-31 00:00:00\n", + "Buying SBUX on 2019-05-31 00:00:00\n", + "Buying WMT on 2019-05-31 00:00:00\n", + "Buying ALLE on 2019-05-31 00:00:00\n", + "Buying ALL on 2019-05-31 00:00:00\n", + "Buying MA on 2019-05-31 00:00:00\n", + "Buying VICI on 2019-05-31 00:00:00\n", + "Buying IBM on 2019-05-31 00:00:00\n", + "Buying HIG on 2019-05-31 00:00:00\n", + "Buying ICE on 2019-05-31 00:00:00\n", + "Buying FTV on 2019-05-31 00:00:00\n", + "Buying ADP on 2019-05-31 00:00:00\n", + "Buying TROW on 2019-05-31 00:00:00\n", + "Buying EFX on 2019-05-31 00:00:00\n", + "Buying ANSS on 2019-05-31 00:00:00\n", + "Buying DOV on 2019-05-31 00:00:00\n", + "Buying BR on 2019-05-31 00:00:00\n", + "Buying USB on 2019-05-31 00:00:00\n", + "Buying EVRG on 2019-05-31 00:00:00\n", + "Buying SYF on 2019-05-31 00:00:00\n", + "Buying RTX on 2019-05-31 00:00:00\n", + "Buying ZTS on 2019-05-31 00:00:00\n", + "Selling MNST on 2019-05-31 00:00:00\n", + "Selling SWKS on 2019-05-31 00:00:00\n", + "Selling DELL on 2019-05-31 00:00:00\n", + "Selling STX on 2019-05-31 00:00:00\n", + "Selling HUM on 2019-05-31 00:00:00\n", + "Selling WYNN on 2019-05-31 00:00:00\n", + "Selling HCA on 2019-05-31 00:00:00\n", + "Selling WAT on 2019-05-31 00:00:00\n", + "Selling EA on 2019-05-31 00:00:00\n", + "Selling PNR on 2019-05-31 00:00:00\n", + "Selling MU on 2019-05-31 00:00:00\n", + "Selling HAS on 2019-05-31 00:00:00\n", + "Selling NXPI on 2019-05-31 00:00:00\n", + "Selling CI on 2019-05-31 00:00:00\n", + "Selling WBD on 2019-05-31 00:00:00\n", + "Selling FCX on 2019-05-31 00:00:00\n", + "Selling GEN on 2019-05-31 00:00:00\n", + "Selling WDC on 2019-05-31 00:00:00\n", + "Selling AXON on 2019-05-31 00:00:00\n", + "Selling CTSH on 2019-05-31 00:00:00\n", + "Selling EOG on 2019-05-31 00:00:00\n", + "Selling ANET on 2019-05-31 00:00:00\n", + "Selling TPR on 2019-05-31 00:00:00\n", + "Selling FANG on 2019-05-31 00:00:00\n", + "Selling DVA on 2019-05-31 00:00:00\n", + "Selling APA on 2019-05-31 00:00:00\n", + "Selling ELV on 2019-05-31 00:00:00\n", + "Selling KEYS on 2019-05-31 00:00:00\n", + "Selling CAG on 2019-05-31 00:00:00\n", + "Selling TPL on 2019-05-31 00:00:00\n", + "Selling DVN on 2019-05-31 00:00:00\n", + "Selling DXCM on 2019-05-31 00:00:00\n", + "Selling EQT on 2019-05-31 00:00:00\n", + "Selling PODD on 2019-05-31 00:00:00\n", + "Selling LULU on 2019-05-31 00:00:00\n", + "Selling BLDR on 2019-05-31 00:00:00\n", + "Selling IR on 2019-05-31 00:00:00\n", + "Selling CNC on 2019-05-31 00:00:00\n", + "Selling MTCH on 2019-05-31 00:00:00\n", + "Selling TSLA on 2019-05-31 00:00:00\n", + "Selling MOH 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 PCG on 2019-05-31 00:00:00\n", + "Selling QCOM on 2019-05-31 00:00:00\n", + "Selling BIIB on 2019-05-31 00:00:00\n", + "Selling MRNA on 2019-05-31 00:00:00\n", + "Selling ENPH on 2019-05-31 00:00:00\n", + "Buying ACN on 2019-06-30 00:00:00\n", + "Buying ROP on 2019-06-30 00:00:00\n", + "Buying VRSK on 2019-06-30 00:00:00\n", + "Buying AXP on 2019-06-30 00:00:00\n", + "Buying V on 2019-06-30 00:00:00\n", + "Buying BRK-B on 2019-06-30 00:00:00\n", + "Buying USB on 2019-06-30 00:00:00\n", + "Buying AFL on 2019-06-30 00:00:00\n", + "Buying MDLZ on 2019-06-30 00:00:00\n", + "Buying HON on 2019-06-30 00:00:00\n", + "Buying AME on 2019-06-30 00:00:00\n", + "Buying COST on 2019-06-30 00:00:00\n", + "Buying WMT on 2019-06-30 00:00:00\n", + "Buying MCD on 2019-06-30 00:00:00\n", + "Buying L on 2019-06-30 00:00:00\n", + "Buying ETN on 2019-06-30 00:00:00\n", + "Buying CHTR on 2019-06-30 00:00:00\n", + "Buying YUM on 2019-06-30 00:00:00\n", + "Buying ICE on 2019-06-30 00:00:00\n", + "Buying BR on 2019-06-30 00:00:00\n", + "Buying IT on 2019-06-30 00:00:00\n", + "Buying MMC on 2019-06-30 00:00:00\n", + "Buying SPGI on 2019-06-30 00:00:00\n", + "Buying TROW on 2019-06-30 00:00:00\n", + "Buying SBUX on 2019-06-30 00:00:00\n", + "Buying KO on 2019-06-30 00:00:00\n", + "Buying AON on 2019-06-30 00:00:00\n", + "Buying CB on 2019-06-30 00:00:00\n", + "Buying EMR on 2019-06-30 00:00:00\n", + "Buying EFX on 2019-06-30 00:00:00\n", + "Buying CTAS on 2019-06-30 00:00:00\n", + "Buying DHR on 2019-06-30 00:00:00\n", + "Buying WRB on 2019-06-30 00:00:00\n", + "Buying HIG on 2019-06-30 00:00:00\n", + "Buying PEP on 2019-06-30 00:00:00\n", + "Buying AJG on 2019-06-30 00:00:00\n", + "Buying BLK on 2019-06-30 00:00:00\n", + "Buying IEX on 2019-06-30 00:00:00\n", + "Buying SO on 2019-06-30 00:00:00\n", + "Buying DOV on 2019-06-30 00:00:00\n", + "Buying FTV on 2019-06-30 00:00:00\n", + "Buying GL on 2019-06-30 00:00:00\n", + "Buying IBM on 2019-06-30 00:00:00\n", + "Buying PAYX on 2019-06-30 00:00:00\n", + "Buying NEE on 2019-06-30 00:00:00\n", + "Buying RSG on 2019-06-30 00:00:00\n", + "Buying TRV on 2019-06-30 00:00:00\n", + "Buying ITW on 2019-06-30 00:00:00\n", + "Selling BKR on 2019-06-30 00:00:00\n", + "Selling WYNN on 2019-06-30 00:00:00\n", + "Selling FSLR on 2019-06-30 00:00:00\n", + "Selling DOW on 2019-06-30 00:00:00\n", + "Selling WAT on 2019-06-30 00:00:00\n", + "Selling SWKS on 2019-06-30 00:00:00\n", + "Selling HCA on 2019-06-30 00:00:00\n", + "Selling PNR on 2019-06-30 00:00:00\n", + "Selling HUM on 2019-06-30 00:00:00\n", + "Selling MPC on 2019-06-30 00:00:00\n", + "Selling EOG on 2019-06-30 00:00:00\n", + "Selling INCY on 2019-06-30 00:00:00\n", + "Selling FCX on 2019-06-30 00:00:00\n", + "Selling CTSH on 2019-06-30 00:00:00\n", + "Selling TPR on 2019-06-30 00:00:00\n", + "Selling ELV on 2019-06-30 00:00:00\n", + "Selling APA on 2019-06-30 00:00:00\n", + "Selling DVA on 2019-06-30 00:00:00\n", + "Selling FANG on 2019-06-30 00:00:00\n", + "Selling DVN on 2019-06-30 00:00:00\n", + "Selling KEYS on 2019-06-30 00:00:00\n", + "Selling GEN on 2019-06-30 00:00:00\n", + "Selling STLD on 2019-06-30 00:00:00\n", + "Selling CZR on 2019-06-30 00:00:00\n", + "Selling DELL on 2019-06-30 00:00:00\n", + "Selling DXCM on 2019-06-30 00:00:00\n", + "Selling TPL on 2019-06-30 00:00:00\n", + "Selling ANET on 2019-06-30 00:00:00\n", + "Selling ABBV on 2019-06-30 00:00:00\n", + "Selling CAG on 2019-06-30 00:00:00\n", + "Selling AXON on 2019-06-30 00:00:00\n", + "Selling PODD on 2019-06-30 00:00:00\n", + "Selling WDC on 2019-06-30 00:00:00\n", + "Selling IR on 2019-06-30 00:00:00\n", + "Selling BLDR on 2019-06-30 00:00:00\n", + "Selling MU on 2019-06-30 00:00:00\n", + "Selling MOH on 2019-06-30 00:00:00\n", + "Selling AMD on 2019-06-30 00:00:00\n", + "Selling CNC on 2019-06-30 00:00:00\n", + "Selling TSLA on 2019-06-30 00:00:00\n", + "Selling EQT on 2019-06-30 00:00:00\n", + "Selling MTCH on 2019-06-30 00:00:00\n", + "Selling DD on 2019-06-30 00:00:00\n", + "Selling VTRS on 2019-06-30 00:00:00\n", + "Selling QCOM on 2019-06-30 00:00:00\n", + "Selling MRNA on 2019-06-30 00:00:00\n", + "Selling PCG on 2019-06-30 00:00:00\n", + "Selling ENPH on 2019-06-30 00:00:00\n", + "Buying ACN on 2019-07-31 00:00:00\n", + "Buying BRK-B on 2019-07-31 00:00:00\n", + "Buying VRSK on 2019-07-31 00:00:00\n", + "Buying AXP on 2019-07-31 00:00:00\n", + "Buying COST on 2019-07-31 00:00:00\n", + "Buying BLK on 2019-07-31 00:00:00\n", + "Buying WMT on 2019-07-31 00:00:00\n", + "Buying V on 2019-07-31 00:00:00\n", + "Buying MET on 2019-07-31 00:00:00\n", + "Buying GL on 2019-07-31 00:00:00\n", + "Buying MCD on 2019-07-31 00:00:00\n", + "Buying MSFT on 2019-07-31 00:00:00\n", + "Buying YUM on 2019-07-31 00:00:00\n", + "Buying ROP on 2019-07-31 00:00:00\n", + "Buying HIG on 2019-07-31 00:00:00\n", + "Buying BAX on 2019-07-31 00:00:00\n", + "Buying TROW on 2019-07-31 00:00:00\n", + "Buying SYK on 2019-07-31 00:00:00\n", + "Buying OMC on 2019-07-31 00:00:00\n", + "Buying L on 2019-07-31 00:00:00\n", + "Buying WTW on 2019-07-31 00:00:00\n", + "Buying USB on 2019-07-31 00:00:00\n", + "Buying DHR on 2019-07-31 00:00:00\n", + "Buying MDLZ on 2019-07-31 00:00:00\n", + "Buying PAYX on 2019-07-31 00:00:00\n", + "Buying WM on 2019-07-31 00:00:00\n", + "Buying VRSN on 2019-07-31 00:00:00\n", + "Buying CMCSA on 2019-07-31 00:00:00\n", + "Buying WRB on 2019-07-31 00:00:00\n", + "Buying HON on 2019-07-31 00:00:00\n", + "Buying AJG on 2019-07-31 00:00:00\n", + "Buying IEX on 2019-07-31 00:00:00\n", + "Buying MMC on 2019-07-31 00:00:00\n", + "Buying PEP on 2019-07-31 00:00:00\n", + "Buying ICE on 2019-07-31 00:00:00\n", + "Buying LDOS on 2019-07-31 00:00:00\n", + "Buying AON on 2019-07-31 00:00:00\n", + "Buying BRO on 2019-07-31 00:00:00\n", + "Buying TRV on 2019-07-31 00:00:00\n", + "Buying JPM on 2019-07-31 00:00:00\n", + "Buying CHTR on 2019-07-31 00:00:00\n", + "Buying CINF on 2019-07-31 00:00:00\n", + "Buying XOM on 2019-07-31 00:00:00\n", + "Buying JKHY on 2019-07-31 00:00:00\n", + "Buying ADM on 2019-07-31 00:00:00\n", + "Buying AFL on 2019-07-31 00:00:00\n", + "Buying HD on 2019-07-31 00:00:00\n", + "Buying AME on 2019-07-31 00:00:00\n", + "Selling WYNN on 2019-07-31 00:00:00\n", + "Selling ON on 2019-07-31 00:00:00\n", + "Selling MPC on 2019-07-31 00:00:00\n", + "Selling CNC on 2019-07-31 00:00:00\n", + "Selling HES on 2019-07-31 00:00:00\n", + "Selling MOH on 2019-07-31 00:00:00\n", + "Selling APTV on 2019-07-31 00:00:00\n", + "Selling MOS on 2019-07-31 00:00:00\n", + "Selling CTRA on 2019-07-31 00:00:00\n", + "Selling TPR on 2019-07-31 00:00:00\n", + "Selling DECK on 2019-07-31 00:00:00\n", + "Selling INCY on 2019-07-31 00:00:00\n", + "Selling ERIE on 2019-07-31 00:00:00\n", + "Selling WAB on 2019-07-31 00:00:00\n", + "Selling FANG on 2019-07-31 00:00:00\n", + "Selling DVA on 2019-07-31 00:00:00\n", + "Selling QCOM on 2019-07-31 00:00:00\n", + "Selling TPL on 2019-07-31 00:00:00\n", + "Selling APA on 2019-07-31 00:00:00\n", + "Selling KEYS on 2019-07-31 00:00:00\n", + "Selling DVN on 2019-07-31 00:00:00\n", + "Selling MKTX on 2019-07-31 00:00:00\n", + "Selling DXCM on 2019-07-31 00:00:00\n", + "Selling STLD on 2019-07-31 00:00:00\n", + "Selling DELL on 2019-07-31 00:00:00\n", + "Selling AXON on 2019-07-31 00:00:00\n", + "Selling ABBV on 2019-07-31 00:00:00\n", + "Selling HAL on 2019-07-31 00:00:00\n", + "Selling CZR on 2019-07-31 00:00:00\n", + "Selling CAG on 2019-07-31 00:00:00\n", + "Selling IT on 2019-07-31 00:00:00\n", + "Selling WDC on 2019-07-31 00:00:00\n", + "Selling MU on 2019-07-31 00:00:00\n", + "Selling AMD on 2019-07-31 00:00:00\n", + "Selling MHK on 2019-07-31 00:00:00\n", + "Selling MTCH on 2019-07-31 00:00:00\n", + "Selling DD on 2019-07-31 00:00:00\n", + "Selling PTC on 2019-07-31 00:00:00\n", + "Selling TSLA on 2019-07-31 00:00:00\n", + "Selling TER on 2019-07-31 00:00:00\n", + "Selling ZBRA on 2019-07-31 00:00:00\n", + "Selling GEN on 2019-07-31 00:00:00\n", + "Selling EQT on 2019-07-31 00:00:00\n", + "Selling MRNA on 2019-07-31 00:00:00\n", + "Selling VTRS on 2019-07-31 00:00:00\n", + "Selling ALGN on 2019-07-31 00:00:00\n", + "Selling PCG on 2019-07-31 00:00:00\n", + "Selling ENPH on 2019-07-31 00:00:00\n", + "Buying ACN on 2019-08-31 00:00:00\n", + "Buying BRK-B on 2019-08-31 00:00:00\n", + "Buying VRSK on 2019-08-31 00:00:00\n", + "Buying MSFT on 2019-08-31 00:00:00\n", + "Buying MET on 2019-08-31 00:00:00\n", + "Buying HIG on 2019-08-31 00:00:00\n", + "Buying MDT on 2019-08-31 00:00:00\n", + "Buying AXP on 2019-08-31 00:00:00\n", + "Buying CMCSA on 2019-08-31 00:00:00\n", + "Buying V on 2019-08-31 00:00:00\n", + "Buying GD on 2019-08-31 00:00:00\n", + "Buying WM on 2019-08-31 00:00:00\n", + "Buying TROW on 2019-08-31 00:00:00\n", + "Buying DHR on 2019-08-31 00:00:00\n", + "Buying L on 2019-08-31 00:00:00\n", + "Buying CVX on 2019-08-31 00:00:00\n", + "Buying VRSN on 2019-08-31 00:00:00\n", + "Buying AEE on 2019-08-31 00:00:00\n", + "Buying MMC on 2019-08-31 00:00:00\n", + "Buying GL on 2019-08-31 00:00:00\n", + "Buying CPRT on 2019-08-31 00:00:00\n", + "Buying MDLZ on 2019-08-31 00:00:00\n", + "Buying ED on 2019-08-31 00:00:00\n", + "Buying RSG on 2019-08-31 00:00:00\n", + "Buying XOM on 2019-08-31 00:00:00\n", + "Buying EVRG on 2019-08-31 00:00:00\n", + "Buying WTW on 2019-08-31 00:00:00\n", + "Buying LNT on 2019-08-31 00:00:00\n", + "Buying BRO on 2019-08-31 00:00:00\n", + "Buying PAYX on 2019-08-31 00:00:00\n", + "Buying AON on 2019-08-31 00:00:00\n", + "Buying PEP on 2019-08-31 00:00:00\n", + "Buying AJG on 2019-08-31 00:00:00\n", + "Buying FE on 2019-08-31 00:00:00\n", + "Buying BAX on 2019-08-31 00:00:00\n", + "Buying ROP on 2019-08-31 00:00:00\n", + "Buying OMC on 2019-08-31 00:00:00\n", + "Buying DTE on 2019-08-31 00:00:00\n", + "Buying ES on 2019-08-31 00:00:00\n", + "Buying ALLE on 2019-08-31 00:00:00\n", + "Buying BLK on 2019-08-31 00:00:00\n", + "Buying XYL on 2019-08-31 00:00:00\n", + "Buying EXR on 2019-08-31 00:00:00\n", + "Buying ADP on 2019-08-31 00:00:00\n", + "Buying PEG on 2019-08-31 00:00:00\n", + "Buying TRV on 2019-08-31 00:00:00\n", + "Buying BDX on 2019-08-31 00:00:00\n", + "Buying CINF on 2019-08-31 00:00:00\n", + "Buying MA on 2019-08-31 00:00:00\n", + "Selling DECK on 2019-08-31 00:00:00\n", + "Selling ON on 2019-08-31 00:00:00\n", + "Selling DVN on 2019-08-31 00:00:00\n", + "Selling ANET on 2019-08-31 00:00:00\n", + "Selling PM on 2019-08-31 00:00:00\n", + "Selling MKTX on 2019-08-31 00:00:00\n", + "Selling KEYS on 2019-08-31 00:00:00\n", + "Selling CTRA on 2019-08-31 00:00:00\n", + "Selling ERIE on 2019-08-31 00:00:00\n", + "Selling APA on 2019-08-31 00:00:00\n", + "Selling TPL on 2019-08-31 00:00:00\n", + "Selling BBY on 2019-08-31 00:00:00\n", + "Selling CZR on 2019-08-31 00:00:00\n", + "Selling CTVA on 2019-08-31 00:00:00\n", + "Selling DXCM on 2019-08-31 00:00:00\n", + "Selling ABBV on 2019-08-31 00:00:00\n", + "Selling HAL on 2019-08-31 00:00:00\n", + "Selling BLDR on 2019-08-31 00:00:00\n", + "Selling MOS on 2019-08-31 00:00:00\n", + "Selling GE on 2019-08-31 00:00:00\n", + "Selling DELL on 2019-08-31 00:00:00\n", + "Selling WAB on 2019-08-31 00:00:00\n", + "Selling IFF on 2019-08-31 00:00:00\n", + "Selling CAG on 2019-08-31 00:00:00\n", + "Selling UBER on 2019-08-31 00:00:00\n", + "Selling TSLA on 2019-08-31 00:00:00\n", + "Selling WDC on 2019-08-31 00:00:00\n", + "Selling MU on 2019-08-31 00:00:00\n", + "Selling IT on 2019-08-31 00:00:00\n", + "Selling AMD on 2019-08-31 00:00:00\n", + "Selling MHK on 2019-08-31 00:00:00\n", + "Selling VTRS on 2019-08-31 00:00:00\n", + "Selling NTAP on 2019-08-31 00:00:00\n", + "Selling AXON on 2019-08-31 00:00:00\n", + "Selling TGT on 2019-08-31 00:00:00\n", + "Selling PTC on 2019-08-31 00:00:00\n", + "Selling ZBRA on 2019-08-31 00:00:00\n", + "Selling GEN on 2019-08-31 00:00:00\n", + "Selling SMCI on 2019-08-31 00:00:00\n", + "Selling TER on 2019-08-31 00:00:00\n", + "Selling PODD on 2019-08-31 00:00:00\n", + "Selling MRNA on 2019-08-31 00:00:00\n", + "Selling TPR on 2019-08-31 00:00:00\n", + "Selling EQT on 2019-08-31 00:00:00\n", + "Selling ALGN on 2019-08-31 00:00:00\n", + "Selling MTCH on 2019-08-31 00:00:00\n", + "Selling ULTA on 2019-08-31 00:00:00\n", + "Selling ENPH on 2019-08-31 00:00:00\n", + "Selling PCG on 2019-08-31 00:00:00\n", + "Buying MMC on 2019-09-30 00:00:00\n", + "Buying BRK-B on 2019-09-30 00:00:00\n", + "Buying GD on 2019-09-30 00:00:00\n", + "Buying EVRG on 2019-09-30 00:00:00\n", + "Buying ED on 2019-09-30 00:00:00\n", + "Buying HIG on 2019-09-30 00:00:00\n", + "Buying MSFT on 2019-09-30 00:00:00\n", + "Buying DUK on 2019-09-30 00:00:00\n", + "Buying L on 2019-09-30 00:00:00\n", + "Buying ES on 2019-09-30 00:00:00\n", + "Buying RTX on 2019-09-30 00:00:00\n", + "Buying PEG on 2019-09-30 00:00:00\n", + "Buying EXPE on 2019-09-30 00:00:00\n", + "Buying BXP on 2019-09-30 00:00:00\n", + "Buying FE on 2019-09-30 00:00:00\n", + "Buying ATO on 2019-09-30 00:00:00\n", + "Buying PAYX on 2019-09-30 00:00:00\n", + "Buying CMCSA on 2019-09-30 00:00:00\n", + "Buying GL on 2019-09-30 00:00:00\n", + "Buying AMZN on 2019-09-30 00:00:00\n", + "Buying AJG on 2019-09-30 00:00:00\n", + "Buying XOM on 2019-09-30 00:00:00\n", + "Buying VZ on 2019-09-30 00:00:00\n", + "Buying CINF on 2019-09-30 00:00:00\n", + "Buying WRB on 2019-09-30 00:00:00\n", + "Buying KMI on 2019-09-30 00:00:00\n", + "Buying MDT on 2019-09-30 00:00:00\n", + "Buying MET on 2019-09-30 00:00:00\n", + "Buying ETR on 2019-09-30 00:00:00\n", + "Buying AXP on 2019-09-30 00:00:00\n", + "Buying TRV on 2019-09-30 00:00:00\n", + "Buying LNT on 2019-09-30 00:00:00\n", + "Buying FRT on 2019-09-30 00:00:00\n", + "Buying BLK on 2019-09-30 00:00:00\n", + "Buying WTW on 2019-09-30 00:00:00\n", + "Buying AEE on 2019-09-30 00:00:00\n", + "Buying DTE on 2019-09-30 00:00:00\n", + "Buying CPT on 2019-09-30 00:00:00\n", + "Buying EQR on 2019-09-30 00:00:00\n", + "Buying ALLE on 2019-09-30 00:00:00\n", + "Buying TROW on 2019-09-30 00:00:00\n", + "Buying HOLX on 2019-09-30 00:00:00\n", + "Buying REG on 2019-09-30 00:00:00\n", + "Buying ACN on 2019-09-30 00:00:00\n", + "Buying MAA on 2019-09-30 00:00:00\n", + "Buying AEP on 2019-09-30 00:00:00\n", + "Buying ARE on 2019-09-30 00:00:00\n", + "Buying D on 2019-09-30 00:00:00\n", + "Buying CB on 2019-09-30 00:00:00\n", + "Selling PM on 2019-09-30 00:00:00\n", + "Selling BLDR on 2019-09-30 00:00:00\n", + "Selling DECK on 2019-09-30 00:00:00\n", + "Selling TRGP on 2019-09-30 00:00:00\n", + "Selling CZR on 2019-09-30 00:00:00\n", + "Selling CTRA on 2019-09-30 00:00:00\n", + "Selling ERIE on 2019-09-30 00:00:00\n", + "Selling DXCM on 2019-09-30 00:00:00\n", + "Selling CI on 2019-09-30 00:00:00\n", + "Selling PAYC on 2019-09-30 00:00:00\n", + "Selling FANG on 2019-09-30 00:00:00\n", + "Selling FICO on 2019-09-30 00:00:00\n", + "Selling BKR on 2019-09-30 00:00:00\n", + "Selling BBY on 2019-09-30 00:00:00\n", + "Selling UBER on 2019-09-30 00:00:00\n", + "Selling DELL on 2019-09-30 00:00:00\n", + "Selling WAB on 2019-09-30 00:00:00\n", + "Selling HES on 2019-09-30 00:00:00\n", + "Selling AMD on 2019-09-30 00:00:00\n", + "Selling GEN on 2019-09-30 00:00:00\n", + "Selling GE on 2019-09-30 00:00:00\n", + "Selling TPL on 2019-09-30 00:00:00\n", + "Selling AXON on 2019-09-30 00:00:00\n", + "Selling IT on 2019-09-30 00:00:00\n", + "Selling IFF on 2019-09-30 00:00:00\n", + "Selling TSLA on 2019-09-30 00:00:00\n", + "Selling MOS on 2019-09-30 00:00:00\n", + "Selling VTRS on 2019-09-30 00:00:00\n", + "Selling MKTX on 2019-09-30 00:00:00\n", + "Selling DVN on 2019-09-30 00:00:00\n", + "Selling MHK on 2019-09-30 00:00:00\n", + "Selling PTC on 2019-09-30 00:00:00\n", + "Selling TGT on 2019-09-30 00:00:00\n", + "Selling TER on 2019-09-30 00:00:00\n", + "Selling HAL on 2019-09-30 00:00:00\n", + "Selling SMCI on 2019-09-30 00:00:00\n", + "Selling NTAP on 2019-09-30 00:00:00\n", + "Selling MRNA on 2019-09-30 00:00:00\n", + "Selling ZBRA on 2019-09-30 00:00:00\n", + "Selling APA on 2019-09-30 00:00:00\n", + "Selling PODD on 2019-09-30 00:00:00\n", + "Selling EQT on 2019-09-30 00:00:00\n", + "Selling TPR on 2019-09-30 00:00:00\n", + "Selling ALGN on 2019-09-30 00:00:00\n", + "Selling MTCH on 2019-09-30 00:00:00\n", + "Selling ULTA on 2019-09-30 00:00:00\n", + "Selling CRWD on 2019-09-30 00:00:00\n", + "Selling PCG on 2019-09-30 00:00:00\n", + "Selling ENPH on 2019-09-30 00:00:00\n", + "Buying BRK-B on 2019-10-31 00:00:00\n", + "Buying PEG on 2019-10-31 00:00:00\n", + "Buying GOOG on 2019-10-31 00:00:00\n", + "Buying VZ on 2019-10-31 00:00:00\n", + "Buying GOOGL on 2019-10-31 00:00:00\n", + "Buying MAA on 2019-10-31 00:00:00\n", + "Buying DUK on 2019-10-31 00:00:00\n", + "Buying KMI on 2019-10-31 00:00:00\n", + "Buying GL on 2019-10-31 00:00:00\n", + "Buying EQR on 2019-10-31 00:00:00\n", + "Buying EXPE on 2019-10-31 00:00:00\n", + "Buying CPT on 2019-10-31 00:00:00\n", + "Buying ARE on 2019-10-31 00:00:00\n", + "Buying MSFT on 2019-10-31 00:00:00\n", + "Buying AMZN on 2019-10-31 00:00:00\n", + "Buying TMUS on 2019-10-31 00:00:00\n", + "Buying ESS on 2019-10-31 00:00:00\n", + "Buying FE on 2019-10-31 00:00:00\n", + "Buying ES on 2019-10-31 00:00:00\n", + "Buying AVB on 2019-10-31 00:00:00\n", + "Buying JCI on 2019-10-31 00:00:00\n", + "Buying AIZ on 2019-10-31 00:00:00\n", + "Buying RTX on 2019-10-31 00:00:00\n", + "Buying EVRG on 2019-10-31 00:00:00\n", + "Buying ATO on 2019-10-31 00:00:00\n", + "Buying XOM on 2019-10-31 00:00:00\n", + "Buying ED on 2019-10-31 00:00:00\n", + "Buying HON on 2019-10-31 00:00:00\n", + "Buying ALL on 2019-10-31 00:00:00\n", + "Buying SYY on 2019-10-31 00:00:00\n", + "Buying USB on 2019-10-31 00:00:00\n", + "Buying JPM on 2019-10-31 00:00:00\n", + "Buying MET on 2019-10-31 00:00:00\n", + "Buying D on 2019-10-31 00:00:00\n", + "Buying L on 2019-10-31 00:00:00\n", + "Buying DFS on 2019-10-31 00:00:00\n", + "Buying FRT on 2019-10-31 00:00:00\n", + "Buying AXP on 2019-10-31 00:00:00\n", + "Buying PEP on 2019-10-31 00:00:00\n", + "Buying CMCSA on 2019-10-31 00:00:00\n", + "Buying ETR on 2019-10-31 00:00:00\n", + "Buying AEP on 2019-10-31 00:00:00\n", + "Buying KO on 2019-10-31 00:00:00\n", + "Buying AJG on 2019-10-31 00:00:00\n", + "Buying ACGL on 2019-10-31 00:00:00\n", + "Buying LMT on 2019-10-31 00:00:00\n", + "Buying UDR on 2019-10-31 00:00:00\n", + "Buying MMC on 2019-10-31 00:00:00\n", + "Buying COF on 2019-10-31 00:00:00\n", + "Selling EOG on 2019-10-31 00:00:00\n", + "Selling TRGP on 2019-10-31 00:00:00\n", + "Selling FDX on 2019-10-31 00:00:00\n", + "Selling MCK on 2019-10-31 00:00:00\n", + "Selling CNC on 2019-10-31 00:00:00\n", + "Selling KEYS on 2019-10-31 00:00:00\n", + "Selling SLB on 2019-10-31 00:00:00\n", + "Selling LKQ on 2019-10-31 00:00:00\n", + "Selling BKR on 2019-10-31 00:00:00\n", + "Selling FCX on 2019-10-31 00:00:00\n", + "Selling LRCX on 2019-10-31 00:00:00\n", + "Selling ALB on 2019-10-31 00:00:00\n", + "Selling FANG on 2019-10-31 00:00:00\n", + "Selling TPL on 2019-10-31 00:00:00\n", + "Selling NOW on 2019-10-31 00:00:00\n", + "Selling FICO on 2019-10-31 00:00:00\n", + "Selling DAY on 2019-10-31 00:00:00\n", + "Selling AMD on 2019-10-31 00:00:00\n", + "Selling CHRW on 2019-10-31 00:00:00\n", + "Selling FAST on 2019-10-31 00:00:00\n", + "Selling HES on 2019-10-31 00:00:00\n", + "Selling PAYC on 2019-10-31 00:00:00\n", + "Selling MOS on 2019-10-31 00:00:00\n", + "Selling WDAY on 2019-10-31 00:00:00\n", + "Selling PODD on 2019-10-31 00:00:00\n", + "Selling MTCH on 2019-10-31 00:00:00\n", + "Selling DXCM on 2019-10-31 00:00:00\n", + "Selling HAS on 2019-10-31 00:00:00\n", + "Selling AXON on 2019-10-31 00:00:00\n", + "Selling ALGN on 2019-10-31 00:00:00\n", + "Selling HAL on 2019-10-31 00:00:00\n", + "Selling MKTX on 2019-10-31 00:00:00\n", + "Selling KHC on 2019-10-31 00:00:00\n", + "Selling DVN on 2019-10-31 00:00:00\n", + "Selling WDC on 2019-10-31 00:00:00\n", + "Selling SMCI on 2019-10-31 00:00:00\n", + "Selling TGT on 2019-10-31 00:00:00\n", + "Selling UBER on 2019-10-31 00:00:00\n", + "Selling GE on 2019-10-31 00:00:00\n", + "Selling MRNA on 2019-10-31 00:00:00\n", + "Selling TSLA on 2019-10-31 00:00:00\n", + "Selling EQT on 2019-10-31 00:00:00\n", + "Selling APA on 2019-10-31 00:00:00\n", + "Selling TPR on 2019-10-31 00:00:00\n", + "Selling BIIB on 2019-10-31 00:00:00\n", + "Selling ULTA on 2019-10-31 00:00:00\n", + "Selling CRWD on 2019-10-31 00:00:00\n", + "Selling ENPH on 2019-10-31 00:00:00\n", + "Selling PCG on 2019-10-31 00:00:00\n", + "Buying BRK-B on 2019-11-30 00:00:00\n", + "Buying AFL on 2019-11-30 00:00:00\n", + "Buying GOOGL on 2019-11-30 00:00:00\n", + "Buying GL on 2019-11-30 00:00:00\n", + "Buying GOOG on 2019-11-30 00:00:00\n", + "Buying SYY on 2019-11-30 00:00:00\n", + "Buying AIZ on 2019-11-30 00:00:00\n", + "Buying VZ on 2019-11-30 00:00:00\n", + "Buying ARE on 2019-11-30 00:00:00\n", + "Buying MSFT on 2019-11-30 00:00:00\n", + "Buying PEG on 2019-11-30 00:00:00\n", + "Buying WMT on 2019-11-30 00:00:00\n", + "Buying A on 2019-11-30 00:00:00\n", + "Buying RTX on 2019-11-30 00:00:00\n", + "Buying SYF on 2019-11-30 00:00:00\n", + "Buying BLK on 2019-11-30 00:00:00\n", + "Buying EVRG on 2019-11-30 00:00:00\n", + "Buying PEP on 2019-11-30 00:00:00\n", + "Buying AXP on 2019-11-30 00:00:00\n", + "Buying AMZN on 2019-11-30 00:00:00\n", + "Buying D on 2019-11-30 00:00:00\n", + "Buying JPM on 2019-11-30 00:00:00\n", + "Buying FE on 2019-11-30 00:00:00\n", + "Buying ESS on 2019-11-30 00:00:00\n", + "Buying KMI on 2019-11-30 00:00:00\n", + "Buying USB on 2019-11-30 00:00:00\n", + "Buying MET on 2019-11-30 00:00:00\n", + "Buying DFS on 2019-11-30 00:00:00\n", + "Buying AEP on 2019-11-30 00:00:00\n", + "Buying FRT on 2019-11-30 00:00:00\n", + "Buying ATO on 2019-11-30 00:00:00\n", + "Buying HON on 2019-11-30 00:00:00\n", + "Buying APH on 2019-11-30 00:00:00\n", + "Buying CTSH on 2019-11-30 00:00:00\n", + "Buying CPT on 2019-11-30 00:00:00\n", + "Buying AME on 2019-11-30 00:00:00\n", + "Buying COF on 2019-11-30 00:00:00\n", + "Buying SO on 2019-11-30 00:00:00\n", + "Buying L on 2019-11-30 00:00:00\n", + "Buying ES on 2019-11-30 00:00:00\n", + "Buying DTE on 2019-11-30 00:00:00\n", + "Buying ED on 2019-11-30 00:00:00\n", + "Buying ALL on 2019-11-30 00:00:00\n", + "Buying LMT on 2019-11-30 00:00:00\n", + "Buying LNT on 2019-11-30 00:00:00\n", + "Buying DUK on 2019-11-30 00:00:00\n", + "Buying COST on 2019-11-30 00:00:00\n", + "Buying AVB on 2019-11-30 00:00:00\n", + "Buying EQR on 2019-11-30 00:00:00\n", + "Selling MCK on 2019-11-30 00:00:00\n", + "Selling GE on 2019-11-30 00:00:00\n", + "Selling LKQ on 2019-11-30 00:00:00\n", + "Selling MTCH on 2019-11-30 00:00:00\n", + "Selling LRCX on 2019-11-30 00:00:00\n", + "Selling EPAM on 2019-11-30 00:00:00\n", + "Selling FDX on 2019-11-30 00:00:00\n", + "Selling OXY on 2019-11-30 00:00:00\n", + "Selling WDAY on 2019-11-30 00:00:00\n", + "Selling PODD on 2019-11-30 00:00:00\n", + "Selling DVA on 2019-11-30 00:00:00\n", + "Selling EOG on 2019-11-30 00:00:00\n", + "Selling CNC on 2019-11-30 00:00:00\n", + "Selling KHC on 2019-11-30 00:00:00\n", + "Selling FAST on 2019-11-30 00:00:00\n", + "Selling NOW on 2019-11-30 00:00:00\n", + "Selling DLTR on 2019-11-30 00:00:00\n", + "Selling FCX on 2019-11-30 00:00:00\n", + "Selling ALB on 2019-11-30 00:00:00\n", + "Selling CHRW on 2019-11-30 00:00:00\n", + "Selling SLB on 2019-11-30 00:00:00\n", + "Selling FICO on 2019-11-30 00:00:00\n", + "Selling HAS on 2019-11-30 00:00:00\n", + "Selling ALGN on 2019-11-30 00:00:00\n", + "Selling DAY on 2019-11-30 00:00:00\n", + "Selling HES on 2019-11-30 00:00:00\n", + "Selling MOS on 2019-11-30 00:00:00\n", + "Selling RL on 2019-11-30 00:00:00\n", + "Selling TPL on 2019-11-30 00:00:00\n", + "Selling GDDY on 2019-11-30 00:00:00\n", + "Selling WDC on 2019-11-30 00:00:00\n", + "Selling MKTX on 2019-11-30 00:00:00\n", + "Selling PAYC on 2019-11-30 00:00:00\n", + "Selling HAL on 2019-11-30 00:00:00\n", + "Selling UBER on 2019-11-30 00:00:00\n", + "Selling FANG on 2019-11-30 00:00:00\n", + "Selling DVN on 2019-11-30 00:00:00\n", + "Selling MRNA on 2019-11-30 00:00:00\n", + "Selling TSLA on 2019-11-30 00:00:00\n", + "Selling ANET on 2019-11-30 00:00:00\n", + "Selling EQT on 2019-11-30 00:00:00\n", + "Selling APA on 2019-11-30 00:00:00\n", + "Selling BIIB on 2019-11-30 00:00:00\n", + "Selling AXON on 2019-11-30 00:00:00\n", + "Selling EXPE on 2019-11-30 00:00:00\n", + "Selling DXCM on 2019-11-30 00:00:00\n", + "Selling CRWD on 2019-11-30 00:00:00\n", + "Selling ENPH on 2019-11-30 00:00:00\n", + "Selling PCG on 2019-11-30 00:00:00\n", + "Buying BRK-B on 2019-12-31 00:00:00\n", + "Buying GL on 2019-12-31 00:00:00\n", + "Buying PAYX on 2019-12-31 00:00:00\n", + "Buying SYY on 2019-12-31 00:00:00\n", + "Buying MSFT on 2019-12-31 00:00:00\n", + "Buying PEP on 2019-12-31 00:00:00\n", + "Buying AME on 2019-12-31 00:00:00\n", + "Buying PNC on 2019-12-31 00:00:00\n", + "Buying BLK on 2019-12-31 00:00:00\n", + "Buying A on 2019-12-31 00:00:00\n", + "Buying JPM on 2019-12-31 00:00:00\n", + "Buying WMT on 2019-12-31 00:00:00\n", + "Buying GOOGL on 2019-12-31 00:00:00\n", + "Buying GOOG on 2019-12-31 00:00:00\n", + "Buying D on 2019-12-31 00:00:00\n", + "Buying USB on 2019-12-31 00:00:00\n", + "Buying CTSH on 2019-12-31 00:00:00\n", + "Buying FE on 2019-12-31 00:00:00\n", + "Buying VZ on 2019-12-31 00:00:00\n", + "Buying RJF on 2019-12-31 00:00:00\n", + "Buying AFL on 2019-12-31 00:00:00\n", + "Buying COST on 2019-12-31 00:00:00\n", + "Buying PEG on 2019-12-31 00:00:00\n", + "Buying APH on 2019-12-31 00:00:00\n", + "Buying HON on 2019-12-31 00:00:00\n", + "Buying MET on 2019-12-31 00:00:00\n", + "Buying DFS on 2019-12-31 00:00:00\n", + "Buying WFC on 2019-12-31 00:00:00\n", + "Buying RTX on 2019-12-31 00:00:00\n", + "Buying LIN on 2019-12-31 00:00:00\n", + "Buying AJG on 2019-12-31 00:00:00\n", + "Buying SYF on 2019-12-31 00:00:00\n", + "Buying COF on 2019-12-31 00:00:00\n", + "Buying EMR on 2019-12-31 00:00:00\n", + "Buying JKHY on 2019-12-31 00:00:00\n", + "Buying AXP on 2019-12-31 00:00:00\n", + "Buying ACN on 2019-12-31 00:00:00\n", + "Buying CLX on 2019-12-31 00:00:00\n", + "Buying RSG on 2019-12-31 00:00:00\n", + "Buying BAC on 2019-12-31 00:00:00\n", + "Buying HUBB on 2019-12-31 00:00:00\n", + "Buying EVRG on 2019-12-31 00:00:00\n", + "Buying LNT on 2019-12-31 00:00:00\n", + "Buying KO on 2019-12-31 00:00:00\n", + "Buying AMGN on 2019-12-31 00:00:00\n", + "Buying C on 2019-12-31 00:00:00\n", + "Buying AON on 2019-12-31 00:00:00\n", + "Buying AIZ on 2019-12-31 00:00:00\n", + "Buying MS on 2019-12-31 00:00:00\n", + "Selling ULTA on 2019-12-31 00:00:00\n", + "Selling HAL on 2019-12-31 00:00:00\n", + "Selling DVA on 2019-12-31 00:00:00\n", + "Selling GE on 2019-12-31 00:00:00\n", + "Selling VTRS on 2019-12-31 00:00:00\n", + "Selling AMAT on 2019-12-31 00:00:00\n", + "Selling MCK on 2019-12-31 00:00:00\n", + "Selling SLB on 2019-12-31 00:00:00\n", + "Selling PODD on 2019-12-31 00:00:00\n", + "Selling GNRC on 2019-12-31 00:00:00\n", + "Selling TPL on 2019-12-31 00:00:00\n", + "Selling TGT on 2019-12-31 00:00:00\n", + "Selling MTCH on 2019-12-31 00:00:00\n", + "Selling LRCX on 2019-12-31 00:00:00\n", + "Selling IFF on 2019-12-31 00:00:00\n", + "Selling PAYC on 2019-12-31 00:00:00\n", + "Selling KHC on 2019-12-31 00:00:00\n", + "Selling CNC on 2019-12-31 00:00:00\n", + "Selling NOW on 2019-12-31 00:00:00\n", + "Selling MOS on 2019-12-31 00:00:00\n", + "Selling DVN on 2019-12-31 00:00:00\n", + "Selling ALGN on 2019-12-31 00:00:00\n", + "Selling LYV on 2019-12-31 00:00:00\n", + "Selling FAST on 2019-12-31 00:00:00\n", + "Selling FCX on 2019-12-31 00:00:00\n", + "Selling CHRW on 2019-12-31 00:00:00\n", + "Selling WDAY on 2019-12-31 00:00:00\n", + "Selling ALB on 2019-12-31 00:00:00\n", + "Selling DLTR on 2019-12-31 00:00:00\n", + "Selling DAY on 2019-12-31 00:00:00\n", + "Selling HAS on 2019-12-31 00:00:00\n", + "Selling RL on 2019-12-31 00:00:00\n", + "Selling FANG on 2019-12-31 00:00:00\n", + "Selling CAG on 2019-12-31 00:00:00\n", + "Selling GDDY on 2019-12-31 00:00:00\n", + "Selling UBER on 2019-12-31 00:00:00\n", + "Selling WDC on 2019-12-31 00:00:00\n", + "Selling TSLA on 2019-12-31 00:00:00\n", + "Selling MRNA on 2019-12-31 00:00:00\n", + "Selling EQT on 2019-12-31 00:00:00\n", + "Selling ANET on 2019-12-31 00:00:00\n", + "Selling APA on 2019-12-31 00:00:00\n", + "Selling AXON on 2019-12-31 00:00:00\n", + "Selling BIIB on 2019-12-31 00:00:00\n", + "Selling EXPE on 2019-12-31 00:00:00\n", + "Selling DXCM on 2019-12-31 00:00:00\n", + "Selling CRWD on 2019-12-31 00:00:00\n", + "Selling ENPH on 2019-12-31 00:00:00\n", + "Selling PCG on 2019-12-31 00:00:00\n", + "Buying BRK-B on 2020-01-31 00:00:00\n", + "Buying RTX on 2020-01-31 00:00:00\n", + "Buying RSG on 2020-01-31 00:00:00\n", + "Buying ITW on 2020-01-31 00:00:00\n", + "Buying MSFT on 2020-01-31 00:00:00\n", + "Buying PAYX on 2020-01-31 00:00:00\n", + "Buying EMR on 2020-01-31 00:00:00\n", + "Buying MMC on 2020-01-31 00:00:00\n", + "Buying GL on 2020-01-31 00:00:00\n", + "Buying HON on 2020-01-31 00:00:00\n", + "Buying ALL on 2020-01-31 00:00:00\n", + "Buying AME on 2020-01-31 00:00:00\n", + "Buying EG on 2020-01-31 00:00:00\n", + "Buying CTSH on 2020-01-31 00:00:00\n", + "Buying JNJ on 2020-01-31 00:00:00\n", + "Buying PCAR on 2020-01-31 00:00:00\n", + "Buying APH on 2020-01-31 00:00:00\n", + "Buying AON on 2020-01-31 00:00:00\n", + "Buying DOV on 2020-01-31 00:00:00\n", + "Buying MCO on 2020-01-31 00:00:00\n", + "Buying HUBB on 2020-01-31 00:00:00\n", + "Buying GOOG on 2020-01-31 00:00:00\n", + "Buying PEP on 2020-01-31 00:00:00\n", + "Buying KMB on 2020-01-31 00:00:00\n", + "Buying GOOGL on 2020-01-31 00:00:00\n", + "Buying PG on 2020-01-31 00:00:00\n", + "Buying DGX on 2020-01-31 00:00:00\n", + "Buying MCD on 2020-01-31 00:00:00\n", + "Buying BLK on 2020-01-31 00:00:00\n", + "Buying ACN on 2020-01-31 00:00:00\n", + "Buying SYY on 2020-01-31 00:00:00\n", + "Buying JPM on 2020-01-31 00:00:00\n", + "Buying VZ on 2020-01-31 00:00:00\n", + "Buying D on 2020-01-31 00:00:00\n", + "Buying ETN on 2020-01-31 00:00:00\n", + "Buying FE on 2020-01-31 00:00:00\n", + "Buying DTE on 2020-01-31 00:00:00\n", + "Buying AMP on 2020-01-31 00:00:00\n", + "Buying LIN on 2020-01-31 00:00:00\n", + "Buying C on 2020-01-31 00:00:00\n", + "Buying MET on 2020-01-31 00:00:00\n", + "Buying WMT on 2020-01-31 00:00:00\n", + "Buying PNR on 2020-01-31 00:00:00\n", + "Buying AFL on 2020-01-31 00:00:00\n", + "Buying WM on 2020-01-31 00:00:00\n", + "Buying MA on 2020-01-31 00:00:00\n", + "Buying BAC on 2020-01-31 00:00:00\n", + "Buying AEE on 2020-01-31 00:00:00\n", + "Buying EXC on 2020-01-31 00:00:00\n", + "Selling CNC on 2020-01-31 00:00:00\n", + "Selling HAL on 2020-01-31 00:00:00\n", + "Selling SLB on 2020-01-31 00:00:00\n", + "Selling NFLX on 2020-01-31 00:00:00\n", + "Selling EOG on 2020-01-31 00:00:00\n", + "Selling CTVA on 2020-01-31 00:00:00\n", + "Selling PANW on 2020-01-31 00:00:00\n", + "Selling REGN on 2020-01-31 00:00:00\n", + "Selling MTCH on 2020-01-31 00:00:00\n", + "Selling ALB on 2020-01-31 00:00:00\n", + "Selling LYV on 2020-01-31 00:00:00\n", + "Selling OXY on 2020-01-31 00:00:00\n", + "Selling HES on 2020-01-31 00:00:00\n", + "Selling KR on 2020-01-31 00:00:00\n", + "Selling AMD on 2020-01-31 00:00:00\n", + "Selling MU on 2020-01-31 00:00:00\n", + "Selling PODD on 2020-01-31 00:00:00\n", + "Selling DVA on 2020-01-31 00:00:00\n", + "Selling INCY on 2020-01-31 00:00:00\n", + "Selling ULTA on 2020-01-31 00:00:00\n", + "Selling MOH on 2020-01-31 00:00:00\n", + "Selling WYNN on 2020-01-31 00:00:00\n", + "Selling GE on 2020-01-31 00:00:00\n", + "Selling WBD on 2020-01-31 00:00:00\n", + "Selling CTRA on 2020-01-31 00:00:00\n", + "Selling DVN on 2020-01-31 00:00:00\n", + "Selling WDC on 2020-01-31 00:00:00\n", + "Selling VTRS on 2020-01-31 00:00:00\n", + "Selling FCX on 2020-01-31 00:00:00\n", + "Selling IFF on 2020-01-31 00:00:00\n", + "Selling MOS on 2020-01-31 00:00:00\n", + "Selling TGT on 2020-01-31 00:00:00\n", + "Selling DLTR on 2020-01-31 00:00:00\n", + "Selling RL on 2020-01-31 00:00:00\n", + "Selling UBER on 2020-01-31 00:00:00\n", + "Selling GDDY on 2020-01-31 00:00:00\n", + "Selling FANG on 2020-01-31 00:00:00\n", + "Selling SMCI on 2020-01-31 00:00:00\n", + "Selling CAG on 2020-01-31 00:00:00\n", + "Selling TSLA on 2020-01-31 00:00:00\n", + "Selling ENPH on 2020-01-31 00:00:00\n", + "Selling MRNA on 2020-01-31 00:00:00\n", + "Selling CRWD on 2020-01-31 00:00:00\n", + "Selling EQT on 2020-01-31 00:00:00\n", + "Selling AXON on 2020-01-31 00:00:00\n", + "Selling DXCM on 2020-01-31 00:00:00\n", + "Selling EXPE on 2020-01-31 00:00:00\n", + "Selling APA on 2020-01-31 00:00:00\n", + "Selling PCG on 2020-01-31 00:00:00\n", + "Buying BRK-B on 2020-02-29 00:00:00\n", + "Buying PAYX on 2020-02-29 00:00:00\n", + "Buying AME on 2020-02-29 00:00:00\n", + "Buying MMC on 2020-02-29 00:00:00\n", + "Buying RTX on 2020-02-29 00:00:00\n", + "Buying ITW on 2020-02-29 00:00:00\n", + "Buying HON on 2020-02-29 00:00:00\n", + "Buying RSG on 2020-02-29 00:00:00\n", + "Buying KMB on 2020-02-29 00:00:00\n", + "Buying JNJ on 2020-02-29 00:00:00\n", + "Buying GL on 2020-02-29 00:00:00\n", + "Buying VRSK on 2020-02-29 00:00:00\n", + "Buying C on 2020-02-29 00:00:00\n", + "Buying MNST on 2020-02-29 00:00:00\n", + "Buying AMP on 2020-02-29 00:00:00\n", + "Buying ACN on 2020-02-29 00:00:00\n", + "Buying AON on 2020-02-29 00:00:00\n", + "Buying MCD on 2020-02-29 00:00:00\n", + "Buying MET on 2020-02-29 00:00:00\n", + "Buying CTAS on 2020-02-29 00:00:00\n", + "Buying PEP on 2020-02-29 00:00:00\n", + "Buying PG on 2020-02-29 00:00:00\n", + "Buying BAC on 2020-02-29 00:00:00\n", + "Buying BLK on 2020-02-29 00:00:00\n", + "Buying TT on 2020-02-29 00:00:00\n", + "Buying PRU on 2020-02-29 00:00:00\n", + "Buying HOLX on 2020-02-29 00:00:00\n", + "Buying WMT on 2020-02-29 00:00:00\n", + "Buying OMC on 2020-02-29 00:00:00\n", + "Buying KO on 2020-02-29 00:00:00\n", + "Buying LIN on 2020-02-29 00:00:00\n", + "Buying USB on 2020-02-29 00:00:00\n", + "Buying APH on 2020-02-29 00:00:00\n", + "Buying CVX on 2020-02-29 00:00:00\n", + "Buying HD on 2020-02-29 00:00:00\n", + "Buying COO on 2020-02-29 00:00:00\n", + "Buying CSX on 2020-02-29 00:00:00\n", + "Buying AJG on 2020-02-29 00:00:00\n", + "Buying MCO on 2020-02-29 00:00:00\n", + "Buying AFL on 2020-02-29 00:00:00\n", + "Buying WM on 2020-02-29 00:00:00\n", + "Buying MA on 2020-02-29 00:00:00\n", + "Buying TROW on 2020-02-29 00:00:00\n", + "Buying FE on 2020-02-29 00:00:00\n", + "Buying OKE on 2020-02-29 00:00:00\n", + "Buying ADP on 2020-02-29 00:00:00\n", + "Buying PNR on 2020-02-29 00:00:00\n", + "Buying ROP on 2020-02-29 00:00:00\n", + "Buying ADBE on 2020-02-29 00:00:00\n", + "Selling BWA on 2020-02-29 00:00:00\n", + "Selling IFF on 2020-02-29 00:00:00\n", + "Selling PODD on 2020-02-29 00:00:00\n", + "Selling AXON on 2020-02-29 00:00:00\n", + "Selling FDX on 2020-02-29 00:00:00\n", + "Selling GEN on 2020-02-29 00:00:00\n", + "Selling KLAC on 2020-02-29 00:00:00\n", + "Selling CNC on 2020-02-29 00:00:00\n", + "Selling EOG on 2020-02-29 00:00:00\n", + "Selling FCX on 2020-02-29 00:00:00\n", + "Selling CTRA on 2020-02-29 00:00:00\n", + "Selling BLDR on 2020-02-29 00:00:00\n", + "Selling DAY on 2020-02-29 00:00:00\n", + "Selling PANW on 2020-02-29 00:00:00\n", + "Selling MU on 2020-02-29 00:00:00\n", + "Selling LYV on 2020-02-29 00:00:00\n", + "Selling ULTA on 2020-02-29 00:00:00\n", + "Selling HES on 2020-02-29 00:00:00\n", + "Selling REGN on 2020-02-29 00:00:00\n", + "Selling AMD on 2020-02-29 00:00:00\n", + "Selling FANG on 2020-02-29 00:00:00\n", + "Selling CCL on 2020-02-29 00:00:00\n", + "Selling GE on 2020-02-29 00:00:00\n", + "Selling PAYC on 2020-02-29 00:00:00\n", + "Selling EXPE on 2020-02-29 00:00:00\n", + "Selling TTWO on 2020-02-29 00:00:00\n", + "Selling ALB on 2020-02-29 00:00:00\n", + "Selling DVN on 2020-02-29 00:00:00\n", + "Selling NCLH on 2020-02-29 00:00:00\n", + "Selling MTCH on 2020-02-29 00:00:00\n", + "Selling MOH on 2020-02-29 00:00:00\n", + "Selling WYNN on 2020-02-29 00:00:00\n", + "Selling MOS on 2020-02-29 00:00:00\n", + "Selling DXCM on 2020-02-29 00:00:00\n", + "Selling BIIB on 2020-02-29 00:00:00\n", + "Selling UBER on 2020-02-29 00:00:00\n", + "Selling CRWD on 2020-02-29 00:00:00\n", + "Selling SMCI on 2020-02-29 00:00:00\n", + "Selling ON on 2020-02-29 00:00:00\n", + "Selling CAG on 2020-02-29 00:00:00\n", + "Selling FSLR on 2020-02-29 00:00:00\n", + "Selling PARA on 2020-02-29 00:00:00\n", + "Selling DPZ on 2020-02-29 00:00:00\n", + "Selling EQT on 2020-02-29 00:00:00\n", + "Selling APA on 2020-02-29 00:00:00\n", + "Selling TSLA on 2020-02-29 00:00:00\n", + "Selling PCG on 2020-02-29 00:00:00\n", + "Selling ENPH on 2020-02-29 00:00:00\n", + "Selling MRNA on 2020-02-29 00:00:00\n", + "Buying BRK-B on 2020-03-31 00:00:00\n", + "Buying MNST on 2020-03-31 00:00:00\n", + "Buying SNPS on 2020-03-31 00:00:00\n", + "Buying LIN on 2020-03-31 00:00:00\n", + "Buying GOOGL on 2020-03-31 00:00:00\n", + "Buying GOOG on 2020-03-31 00:00:00\n", + "Buying DHR on 2020-03-31 00:00:00\n", + "Buying AAPL on 2020-03-31 00:00:00\n", + "Buying APH on 2020-03-31 00:00:00\n", + "Buying V on 2020-03-31 00:00:00\n", + "Buying ADP on 2020-03-31 00:00:00\n", + "Buying BMY on 2020-03-31 00:00:00\n", + "Buying MSFT on 2020-03-31 00:00:00\n", + "Buying GL on 2020-03-31 00:00:00\n", + "Buying OMC on 2020-03-31 00:00:00\n", + "Buying ADM on 2020-03-31 00:00:00\n", + "Buying GRMN on 2020-03-31 00:00:00\n", + "Buying RSG on 2020-03-31 00:00:00\n", + "Buying GD on 2020-03-31 00:00:00\n", + "Buying VZ on 2020-03-31 00:00:00\n", + "Buying VRSN on 2020-03-31 00:00:00\n", + "Buying ACN on 2020-03-31 00:00:00\n", + "Buying PYPL on 2020-03-31 00:00:00\n", + "Buying ROP on 2020-03-31 00:00:00\n", + "Buying FIS on 2020-03-31 00:00:00\n", + "Buying T on 2020-03-31 00:00:00\n", + "Buying PM on 2020-03-31 00:00:00\n", + "Buying FI on 2020-03-31 00:00:00\n", + "Buying VRSK on 2020-03-31 00:00:00\n", + "Buying IBM on 2020-03-31 00:00:00\n", + "Buying MDLZ on 2020-03-31 00:00:00\n", + "Buying TECH on 2020-03-31 00:00:00\n", + "Buying BAC on 2020-03-31 00:00:00\n", + "Buying GWW on 2020-03-31 00:00:00\n", + "Buying KO on 2020-03-31 00:00:00\n", + "Buying A on 2020-03-31 00:00:00\n", + "Buying MDT on 2020-03-31 00:00:00\n", + "Buying PCAR on 2020-03-31 00:00:00\n", + "Buying WAT on 2020-03-31 00:00:00\n", + "Buying XYL on 2020-03-31 00:00:00\n", + "Buying BSX on 2020-03-31 00:00:00\n", + "Buying SNA on 2020-03-31 00:00:00\n", + "Buying JNPR on 2020-03-31 00:00:00\n", + "Buying VRTX on 2020-03-31 00:00:00\n", + "Buying STE on 2020-03-31 00:00:00\n", + "Buying MRK on 2020-03-31 00:00:00\n", + "Buying JNJ on 2020-03-31 00:00:00\n", + "Buying JPM on 2020-03-31 00:00:00\n", + "Buying CDNS on 2020-03-31 00:00:00\n", + "Selling MAR on 2020-03-31 00:00:00\n", + "Selling DFS on 2020-03-31 00:00:00\n", + "Selling LEN on 2020-03-31 00:00:00\n", + "Selling DPZ on 2020-03-31 00:00:00\n", + "Selling APO on 2020-03-31 00:00:00\n", + "Selling CRWD on 2020-03-31 00:00:00\n", + "Selling BLDR on 2020-03-31 00:00:00\n", + "Selling ERIE on 2020-03-31 00:00:00\n", + "Selling NVR on 2020-03-31 00:00:00\n", + "Selling LYV on 2020-03-31 00:00:00\n", + "Selling UHS on 2020-03-31 00:00:00\n", + "Selling HIG on 2020-03-31 00:00:00\n", + "Selling WELL on 2020-03-31 00:00:00\n", + "Selling WMB on 2020-03-31 00:00:00\n", + "Selling EOG on 2020-03-31 00:00:00\n", + "Selling PARA on 2020-03-31 00:00:00\n", + "Selling SYY on 2020-03-31 00:00:00\n", + "Selling HES on 2020-03-31 00:00:00\n", + "Selling MPC on 2020-03-31 00:00:00\n", + "Selling TDG on 2020-03-31 00:00:00\n", + "Selling DAL on 2020-03-31 00:00:00\n", + "Selling BA on 2020-03-31 00:00:00\n", + "Selling TPL on 2020-03-31 00:00:00\n", + "Selling WYNN on 2020-03-31 00:00:00\n", + "Selling HAL on 2020-03-31 00:00:00\n", + "Selling APTV on 2020-03-31 00:00:00\n", + "Selling PCG on 2020-03-31 00:00:00\n", + "Selling SPG on 2020-03-31 00:00:00\n", + "Selling DRI on 2020-03-31 00:00:00\n", + "Selling ON on 2020-03-31 00:00:00\n", + "Selling MOS on 2020-03-31 00:00:00\n", + "Selling VTR on 2020-03-31 00:00:00\n", + "Selling TSLA on 2020-03-31 00:00:00\n", + "Selling DVN on 2020-03-31 00:00:00\n", + "Selling MGM on 2020-03-31 00:00:00\n", + "Selling UAL on 2020-03-31 00:00:00\n", + "Selling UBER on 2020-03-31 00:00:00\n", + "Selling OXY on 2020-03-31 00:00:00\n", + "Selling CCL on 2020-03-31 00:00:00\n", + "Selling EQT on 2020-03-31 00:00:00\n", + "Selling ENPH on 2020-03-31 00:00:00\n", + "Selling RCL on 2020-03-31 00:00:00\n", + "Selling OKE on 2020-03-31 00:00:00\n", + "Selling FANG on 2020-03-31 00:00:00\n", + "Selling MRNA on 2020-03-31 00:00:00\n", + "Selling NCLH on 2020-03-31 00:00:00\n", + "Selling APA on 2020-03-31 00:00:00\n", + "Selling CZR on 2020-03-31 00:00:00\n", + "Selling TRGP on 2020-03-31 00:00:00\n", + "Buying BRK-B on 2020-04-30 00:00:00\n", + "Buying MNST on 2020-04-30 00:00:00\n", + "Buying LIN on 2020-04-30 00:00:00\n", + "Buying BMY on 2020-04-30 00:00:00\n", + "Buying ADP on 2020-04-30 00:00:00\n", + "Buying AAPL on 2020-04-30 00:00:00\n", + "Buying IBM on 2020-04-30 00:00:00\n", + "Buying GOOGL on 2020-04-30 00:00:00\n", + "Buying GOOG on 2020-04-30 00:00:00\n", + "Buying SNPS on 2020-04-30 00:00:00\n", + "Buying VZ on 2020-04-30 00:00:00\n", + "Buying DHR on 2020-04-30 00:00:00\n", + "Buying V on 2020-04-30 00:00:00\n", + "Buying ADM on 2020-04-30 00:00:00\n", + "Buying MSFT on 2020-04-30 00:00:00\n", + "Buying EXPD on 2020-04-30 00:00:00\n", + "Buying T on 2020-04-30 00:00:00\n", + "Buying MDLZ on 2020-04-30 00:00:00\n", + "Buying GRMN on 2020-04-30 00:00:00\n", + "Buying ACN on 2020-04-30 00:00:00\n", + "Buying APH on 2020-04-30 00:00:00\n", + "Buying A on 2020-04-30 00:00:00\n", + "Buying GD on 2020-04-30 00:00:00\n", + "Buying CHTR on 2020-04-30 00:00:00\n", + "Buying PCAR on 2020-04-30 00:00:00\n", + "Buying PFE on 2020-04-30 00:00:00\n", + "Buying RSG on 2020-04-30 00:00:00\n", + "Buying FIS on 2020-04-30 00:00:00\n", + "Buying KO on 2020-04-30 00:00:00\n", + "Buying VRSN on 2020-04-30 00:00:00\n", + "Buying PYPL on 2020-04-30 00:00:00\n", + "Buying WAT on 2020-04-30 00:00:00\n", + "Buying BRO on 2020-04-30 00:00:00\n", + "Buying FI on 2020-04-30 00:00:00\n", + "Buying MRK on 2020-04-30 00:00:00\n", + "Buying ABBV on 2020-04-30 00:00:00\n", + "Buying ISRG on 2020-04-30 00:00:00\n", + "Buying BK on 2020-04-30 00:00:00\n", + "Buying VRSK on 2020-04-30 00:00:00\n", + "Buying UNP on 2020-04-30 00:00:00\n", + "Buying CHRW on 2020-04-30 00:00:00\n", + "Buying NSC on 2020-04-30 00:00:00\n", + "Buying BSX on 2020-04-30 00:00:00\n", + "Buying PM on 2020-04-30 00:00:00\n", + "Buying CMCSA on 2020-04-30 00:00:00\n", + "Buying JNJ on 2020-04-30 00:00:00\n", + "Buying APD on 2020-04-30 00:00:00\n", + "Buying MDT on 2020-04-30 00:00:00\n", + "Buying META on 2020-04-30 00:00:00\n", + "Selling VLO on 2020-04-30 00:00:00\n", + "Selling EXPE on 2020-04-30 00:00:00\n", + "Selling COP on 2020-04-30 00:00:00\n", + "Selling DFS on 2020-04-30 00:00:00\n", + "Selling LEN on 2020-04-30 00:00:00\n", + "Selling SLB on 2020-04-30 00:00:00\n", + "Selling MHK on 2020-04-30 00:00:00\n", + "Selling SYY on 2020-04-30 00:00:00\n", + "Selling HIG on 2020-04-30 00:00:00\n", + "Selling TPR on 2020-04-30 00:00:00\n", + "Selling PARA on 2020-04-30 00:00:00\n", + "Selling MAR on 2020-04-30 00:00:00\n", + "Selling WMB on 2020-04-30 00:00:00\n", + "Selling BLDR on 2020-04-30 00:00:00\n", + "Selling WELL on 2020-04-30 00:00:00\n", + "Selling EOG on 2020-04-30 00:00:00\n", + "Selling HES on 2020-04-30 00:00:00\n", + "Selling TPL on 2020-04-30 00:00:00\n", + "Selling PCG on 2020-04-30 00:00:00\n", + "Selling LYV on 2020-04-30 00:00:00\n", + "Selling ON on 2020-04-30 00:00:00\n", + "Selling APTV on 2020-04-30 00:00:00\n", + "Selling MPC on 2020-04-30 00:00:00\n", + "Selling TDG on 2020-04-30 00:00:00\n", + "Selling WYNN on 2020-04-30 00:00:00\n", + "Selling DAL on 2020-04-30 00:00:00\n", + "Selling MOS on 2020-04-30 00:00:00\n", + "Selling BA on 2020-04-30 00:00:00\n", + "Selling TSLA on 2020-04-30 00:00:00\n", + "Selling DRI on 2020-04-30 00:00:00\n", + "Selling HAL on 2020-04-30 00:00:00\n", + "Selling VTR on 2020-04-30 00:00:00\n", + "Selling UBER on 2020-04-30 00:00:00\n", + "Selling SPG on 2020-04-30 00:00:00\n", + "Selling MGM on 2020-04-30 00:00:00\n", + "Selling DVN on 2020-04-30 00:00:00\n", + "Selling ENPH on 2020-04-30 00:00:00\n", + "Selling UAL on 2020-04-30 00:00:00\n", + "Selling OXY on 2020-04-30 00:00:00\n", + "Selling EQT on 2020-04-30 00:00:00\n", + "Selling OKE on 2020-04-30 00:00:00\n", + "Selling CCL on 2020-04-30 00:00:00\n", + "Selling FANG on 2020-04-30 00:00:00\n", + "Selling MRNA on 2020-04-30 00:00:00\n", + "Selling RCL on 2020-04-30 00:00:00\n", + "Selling APA on 2020-04-30 00:00:00\n", + "Selling NCLH on 2020-04-30 00:00:00\n", + "Selling TRGP on 2020-04-30 00:00:00\n", + "Selling CZR on 2020-04-30 00:00:00\n", + "Buying BRK-B on 2020-05-31 00:00:00\n", + "Buying AAPL on 2020-05-31 00:00:00\n", + "Buying IBM on 2020-05-31 00:00:00\n", + "Buying VZ on 2020-05-31 00:00:00\n", + "Buying GOOGL on 2020-05-31 00:00:00\n", + "Buying GOOG on 2020-05-31 00:00:00\n", + "Buying SNPS on 2020-05-31 00:00:00\n", + "Buying GRMN on 2020-05-31 00:00:00\n", + "Buying BMY on 2020-05-31 00:00:00\n", + "Buying LIN on 2020-05-31 00:00:00\n", + "Buying MSFT on 2020-05-31 00:00:00\n", + "Buying MNST on 2020-05-31 00:00:00\n", + "Buying V on 2020-05-31 00:00:00\n", + "Buying ADP on 2020-05-31 00:00:00\n", + "Buying EXPD on 2020-05-31 00:00:00\n", + "Buying MDLZ on 2020-05-31 00:00:00\n", + "Buying DHR on 2020-05-31 00:00:00\n", + "Buying COST on 2020-05-31 00:00:00\n", + "Buying ACN on 2020-05-31 00:00:00\n", + "Buying T on 2020-05-31 00:00:00\n", + "Buying FIS on 2020-05-31 00:00:00\n", + "Buying RSG on 2020-05-31 00:00:00\n", + "Buying KO on 2020-05-31 00:00:00\n", + "Buying ADM on 2020-05-31 00:00:00\n", + "Buying PFE on 2020-05-31 00:00:00\n", + "Buying EBAY on 2020-05-31 00:00:00\n", + "Buying A on 2020-05-31 00:00:00\n", + "Buying PCAR on 2020-05-31 00:00:00\n", + "Buying CHTR on 2020-05-31 00:00:00\n", + "Buying APH on 2020-05-31 00:00:00\n", + "Buying MRK on 2020-05-31 00:00:00\n", + "Buying LDOS on 2020-05-31 00:00:00\n", + "Buying BRO on 2020-05-31 00:00:00\n", + "Buying PM on 2020-05-31 00:00:00\n", + "Buying UNP on 2020-05-31 00:00:00\n", + "Buying WAT on 2020-05-31 00:00:00\n", + "Buying VRSN on 2020-05-31 00:00:00\n", + "Buying FI on 2020-05-31 00:00:00\n", + "Buying STE on 2020-05-31 00:00:00\n", + "Buying ISRG on 2020-05-31 00:00:00\n", + "Buying JNJ on 2020-05-31 00:00:00\n", + "Buying GWW on 2020-05-31 00:00:00\n", + "Buying ICE on 2020-05-31 00:00:00\n", + "Buying MDT on 2020-05-31 00:00:00\n", + "Buying VRSK on 2020-05-31 00:00:00\n", + "Buying NSC on 2020-05-31 00:00:00\n", + "Buying ABBV on 2020-05-31 00:00:00\n", + "Buying CMCSA on 2020-05-31 00:00:00\n", + "Buying GD on 2020-05-31 00:00:00\n", + "Selling EXPE on 2020-05-31 00:00:00\n", + "Selling HWM on 2020-05-31 00:00:00\n", + "Selling KIM on 2020-05-31 00:00:00\n", + "Selling PARA on 2020-05-31 00:00:00\n", + "Selling LEN on 2020-05-31 00:00:00\n", + "Selling SYY on 2020-05-31 00:00:00\n", + "Selling HIG on 2020-05-31 00:00:00\n", + "Selling SLB on 2020-05-31 00:00:00\n", + "Selling DFS on 2020-05-31 00:00:00\n", + "Selling WMB on 2020-05-31 00:00:00\n", + "Selling MHK on 2020-05-31 00:00:00\n", + "Selling TPR on 2020-05-31 00:00:00\n", + "Selling TSLA on 2020-05-31 00:00:00\n", + "Selling EOG on 2020-05-31 00:00:00\n", + "Selling HES on 2020-05-31 00:00:00\n", + "Selling PCG on 2020-05-31 00:00:00\n", + "Selling BLDR on 2020-05-31 00:00:00\n", + "Selling WELL on 2020-05-31 00:00:00\n", + "Selling MAR on 2020-05-31 00:00:00\n", + "Selling TPL on 2020-05-31 00:00:00\n", + "Selling APTV on 2020-05-31 00:00:00\n", + "Selling WYNN on 2020-05-31 00:00:00\n", + "Selling ON on 2020-05-31 00:00:00\n", + "Selling LYV on 2020-05-31 00:00:00\n", + "Selling MPC on 2020-05-31 00:00:00\n", + "Selling TDG on 2020-05-31 00:00:00\n", + "Selling MOS on 2020-05-31 00:00:00\n", + "Selling BA on 2020-05-31 00:00:00\n", + "Selling ENPH on 2020-05-31 00:00:00\n", + "Selling DRI on 2020-05-31 00:00:00\n", + "Selling DAL on 2020-05-31 00:00:00\n", + "Selling HAL on 2020-05-31 00:00:00\n", + "Selling UBER on 2020-05-31 00:00:00\n", + "Selling VTR on 2020-05-31 00:00:00\n", + "Selling SPG on 2020-05-31 00:00:00\n", + "Selling MGM on 2020-05-31 00:00:00\n", + "Selling DVN on 2020-05-31 00:00:00\n", + "Selling EQT on 2020-05-31 00:00:00\n", + "Selling OXY on 2020-05-31 00:00:00\n", + "Selling OKE on 2020-05-31 00:00:00\n", + "Selling MRNA on 2020-05-31 00:00:00\n", + "Selling UAL on 2020-05-31 00:00:00\n", + "Selling FANG on 2020-05-31 00:00:00\n", + "Selling CCL on 2020-05-31 00:00:00\n", + "Selling RCL on 2020-05-31 00:00:00\n", + "Selling APA on 2020-05-31 00:00:00\n", + "Selling NCLH on 2020-05-31 00:00:00\n", + "Selling TRGP on 2020-05-31 00:00:00\n", + "Selling CZR on 2020-05-31 00:00:00\n", + "Buying VZ on 2020-06-30 00:00:00\n", + "Buying BRK-B on 2020-06-30 00:00:00\n", + "Buying KO on 2020-06-30 00:00:00\n", + "Buying MDLZ on 2020-06-30 00:00:00\n", + "Buying HD on 2020-06-30 00:00:00\n", + "Buying IBM on 2020-06-30 00:00:00\n", + "Buying PCAR on 2020-06-30 00:00:00\n", + "Buying JNJ on 2020-06-30 00:00:00\n", + "Buying EXPD on 2020-06-30 00:00:00\n", + "Buying T on 2020-06-30 00:00:00\n", + "Buying AME on 2020-06-30 00:00:00\n", + "Buying PEP on 2020-06-30 00:00:00\n", + "Buying CL on 2020-06-30 00:00:00\n", + "Buying V on 2020-06-30 00:00:00\n", + "Buying BR on 2020-06-30 00:00:00\n", + "Buying COST on 2020-06-30 00:00:00\n", + "Buying LIN on 2020-06-30 00:00:00\n", + "Buying MCD on 2020-06-30 00:00:00\n", + "Buying ORCL on 2020-06-30 00:00:00\n", + "Buying APD on 2020-06-30 00:00:00\n", + "Buying BMY on 2020-06-30 00:00:00\n", + "Buying IEX on 2020-06-30 00:00:00\n", + "Buying HSY on 2020-06-30 00:00:00\n", + "Buying BRO on 2020-06-30 00:00:00\n", + "Buying CMCSA on 2020-06-30 00:00:00\n", + "Buying ICE on 2020-06-30 00:00:00\n", + "Buying KMB on 2020-06-30 00:00:00\n", + "Buying PG on 2020-06-30 00:00:00\n", + "Buying UNP on 2020-06-30 00:00:00\n", + "Buying MSFT on 2020-06-30 00:00:00\n", + "Buying A on 2020-06-30 00:00:00\n", + "Buying AAPL on 2020-06-30 00:00:00\n", + "Buying RSG on 2020-06-30 00:00:00\n", + "Buying DHR on 2020-06-30 00:00:00\n", + "Buying VRSK on 2020-06-30 00:00:00\n", + "Buying NDAQ on 2020-06-30 00:00:00\n", + "Buying ADP on 2020-06-30 00:00:00\n", + "Buying PAYX on 2020-06-30 00:00:00\n", + "Buying ACN on 2020-06-30 00:00:00\n", + "Buying HUBB on 2020-06-30 00:00:00\n", + "Buying ALL on 2020-06-30 00:00:00\n", + "Buying BAX on 2020-06-30 00:00:00\n", + "Buying RVTY on 2020-06-30 00:00:00\n", + "Buying GOOG on 2020-06-30 00:00:00\n", + "Buying ITW on 2020-06-30 00:00:00\n", + "Buying GOOGL on 2020-06-30 00:00:00\n", + "Buying CHTR on 2020-06-30 00:00:00\n", + "Buying AVGO on 2020-06-30 00:00:00\n", + "Buying VRSN on 2020-06-30 00:00:00\n", + "Selling RL on 2020-06-30 00:00:00\n", + "Selling SLB on 2020-06-30 00:00:00\n", + "Selling COF on 2020-06-30 00:00:00\n", + "Selling EOG on 2020-06-30 00:00:00\n", + "Selling GE on 2020-06-30 00:00:00\n", + "Selling WYNN on 2020-06-30 00:00:00\n", + "Selling HES on 2020-06-30 00:00:00\n", + "Selling HBAN on 2020-06-30 00:00:00\n", + "Selling OKE on 2020-06-30 00:00:00\n", + "Selling FTNT on 2020-06-30 00:00:00\n", + "Selling MPC on 2020-06-30 00:00:00\n", + "Selling REG on 2020-06-30 00:00:00\n", + "Selling DFS on 2020-06-30 00:00:00\n", + "Selling TXT on 2020-06-30 00:00:00\n", + "Selling VTR on 2020-06-30 00:00:00\n", + "Selling TDG on 2020-06-30 00:00:00\n", + "Selling WELL on 2020-06-30 00:00:00\n", + "Selling CFG on 2020-06-30 00:00:00\n", + "Selling MHK on 2020-06-30 00:00:00\n", + "Selling TSLA on 2020-06-30 00:00:00\n", + "Selling LYV on 2020-06-30 00:00:00\n", + "Selling CARR on 2020-06-30 00:00:00\n", + "Selling BLDR on 2020-06-30 00:00:00\n", + "Selling MGM on 2020-06-30 00:00:00\n", + "Selling LUV on 2020-06-30 00:00:00\n", + "Selling TPR on 2020-06-30 00:00:00\n", + "Selling IVZ on 2020-06-30 00:00:00\n", + "Selling PCG on 2020-06-30 00:00:00\n", + "Selling HWM on 2020-06-30 00:00:00\n", + "Selling PARA on 2020-06-30 00:00:00\n", + "Selling DVN on 2020-06-30 00:00:00\n", + "Selling KIM on 2020-06-30 00:00:00\n", + "Selling HAL on 2020-06-30 00:00:00\n", + "Selling AXON on 2020-06-30 00:00:00\n", + "Selling DAL on 2020-06-30 00:00:00\n", + "Selling BA on 2020-06-30 00:00:00\n", + "Selling TRGP on 2020-06-30 00:00:00\n", + "Selling FANG on 2020-06-30 00:00:00\n", + "Selling SPG on 2020-06-30 00:00:00\n", + "Selling EQT on 2020-06-30 00:00:00\n", + "Selling CCL on 2020-06-30 00:00:00\n", + "Selling APA on 2020-06-30 00:00:00\n", + "Selling CZR on 2020-06-30 00:00:00\n", + "Selling RCL on 2020-06-30 00:00:00\n", + "Selling OXY on 2020-06-30 00:00:00\n", + "Selling MRNA on 2020-06-30 00:00:00\n", + "Selling ENPH on 2020-06-30 00:00:00\n", + "Selling UAL on 2020-06-30 00:00:00\n", + "Selling NCLH on 2020-06-30 00:00:00\n", + "Buying COST on 2020-07-31 00:00:00\n", + "Buying JNJ on 2020-07-31 00:00:00\n", + "Buying V on 2020-07-31 00:00:00\n", + "Buying PEP on 2020-07-31 00:00:00\n", + "Buying HD on 2020-07-31 00:00:00\n", + "Buying NDAQ on 2020-07-31 00:00:00\n", + "Buying CL on 2020-07-31 00:00:00\n", + "Buying PG on 2020-07-31 00:00:00\n", + "Buying MCD on 2020-07-31 00:00:00\n", + "Buying MDLZ on 2020-07-31 00:00:00\n", + "Buying BRK-B on 2020-07-31 00:00:00\n", + "Buying VZ on 2020-07-31 00:00:00\n", + "Buying T on 2020-07-31 00:00:00\n", + "Buying BR on 2020-07-31 00:00:00\n", + "Buying FAST on 2020-07-31 00:00:00\n", + "Buying IBM on 2020-07-31 00:00:00\n", + "Buying KO on 2020-07-31 00:00:00\n", + "Buying MA on 2020-07-31 00:00:00\n", + "Buying KMB on 2020-07-31 00:00:00\n", + "Buying BRO on 2020-07-31 00:00:00\n", + "Buying MMC on 2020-07-31 00:00:00\n", + "Buying RSG on 2020-07-31 00:00:00\n", + "Buying SPGI on 2020-07-31 00:00:00\n", + "Buying VRSK on 2020-07-31 00:00:00\n", + "Buying DHR on 2020-07-31 00:00:00\n", + "Buying CHTR on 2020-07-31 00:00:00\n", + "Buying KDP on 2020-07-31 00:00:00\n", + "Buying ROP on 2020-07-31 00:00:00\n", + "Buying GOOGL on 2020-07-31 00:00:00\n", + "Buying ICE on 2020-07-31 00:00:00\n", + "Buying FIS on 2020-07-31 00:00:00\n", + "Buying YUM on 2020-07-31 00:00:00\n", + "Buying GOOG on 2020-07-31 00:00:00\n", + "Buying ATO on 2020-07-31 00:00:00\n", + "Buying AME on 2020-07-31 00:00:00\n", + "Buying MNST on 2020-07-31 00:00:00\n", + "Buying STE on 2020-07-31 00:00:00\n", + "Buying LOW on 2020-07-31 00:00:00\n", + "Buying LIN on 2020-07-31 00:00:00\n", + "Buying CMS on 2020-07-31 00:00:00\n", + "Buying A on 2020-07-31 00:00:00\n", + "Buying CMCSA on 2020-07-31 00:00:00\n", + "Buying ZTS on 2020-07-31 00:00:00\n", + "Buying WM on 2020-07-31 00:00:00\n", + "Buying CPRT on 2020-07-31 00:00:00\n", + "Buying AON on 2020-07-31 00:00:00\n", + "Buying AZO on 2020-07-31 00:00:00\n", + "Buying WEC on 2020-07-31 00:00:00\n", + "Buying EXPD on 2020-07-31 00:00:00\n", + "Selling RF on 2020-07-31 00:00:00\n", + "Selling MOS on 2020-07-31 00:00:00\n", + "Selling LW on 2020-07-31 00:00:00\n", + "Selling DXCM on 2020-07-31 00:00:00\n", + "Selling TXT on 2020-07-31 00:00:00\n", + "Selling WFC on 2020-07-31 00:00:00\n", + "Selling GE on 2020-07-31 00:00:00\n", + "Selling MAR on 2020-07-31 00:00:00\n", + "Selling HAL on 2020-07-31 00:00:00\n", + "Selling CFG on 2020-07-31 00:00:00\n", + "Selling KEY on 2020-07-31 00:00:00\n", + "Selling DFS on 2020-07-31 00:00:00\n", + "Selling BLDR on 2020-07-31 00:00:00\n", + "Selling HBAN on 2020-07-31 00:00:00\n", + "Selling WELL on 2020-07-31 00:00:00\n", + "Selling IVZ on 2020-07-31 00:00:00\n", + "Selling HWM on 2020-07-31 00:00:00\n", + "Selling CRWD on 2020-07-31 00:00:00\n", + "Selling HST on 2020-07-31 00:00:00\n", + "Selling FANG on 2020-07-31 00:00:00\n", + "Selling VTR on 2020-07-31 00:00:00\n", + "Selling LUV on 2020-07-31 00:00:00\n", + "Selling TPR on 2020-07-31 00:00:00\n", + "Selling KIM on 2020-07-31 00:00:00\n", + "Selling DVN on 2020-07-31 00:00:00\n", + "Selling OKE on 2020-07-31 00:00:00\n", + "Selling FTNT on 2020-07-31 00:00:00\n", + "Selling AMD on 2020-07-31 00:00:00\n", + "Selling BA on 2020-07-31 00:00:00\n", + "Selling TSLA on 2020-07-31 00:00:00\n", + "Selling FE on 2020-07-31 00:00:00\n", + "Selling WYNN on 2020-07-31 00:00:00\n", + "Selling PARA on 2020-07-31 00:00:00\n", + "Selling SPG on 2020-07-31 00:00:00\n", + "Selling DAL on 2020-07-31 00:00:00\n", + "Selling MGM on 2020-07-31 00:00:00\n", + "Selling EQT on 2020-07-31 00:00:00\n", + "Selling TRGP on 2020-07-31 00:00:00\n", + "Selling MHK on 2020-07-31 00:00:00\n", + "Selling AXON on 2020-07-31 00:00:00\n", + "Selling OXY on 2020-07-31 00:00:00\n", + "Selling APA 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 ENPH on 2020-07-31 00:00:00\n", + "Selling CZR on 2020-07-31 00:00:00\n", + "Selling UAL on 2020-07-31 00:00:00\n", + "Selling NCLH on 2020-07-31 00:00:00\n", + "Selling MRNA on 2020-07-31 00:00:00\n", + "Buying CL on 2020-08-31 00:00:00\n", + "Buying PEP on 2020-08-31 00:00:00\n", + "Buying JNJ on 2020-08-31 00:00:00\n", + "Buying PG on 2020-08-31 00:00:00\n", + "Buying VZ on 2020-08-31 00:00:00\n", + "Buying T on 2020-08-31 00:00:00\n", + "Buying VRSK on 2020-08-31 00:00:00\n", + "Buying CHTR on 2020-08-31 00:00:00\n", + "Buying MDLZ on 2020-08-31 00:00:00\n", + "Buying NDAQ on 2020-08-31 00:00:00\n", + "Buying COST on 2020-08-31 00:00:00\n", + "Buying HD on 2020-08-31 00:00:00\n", + "Buying BRO on 2020-08-31 00:00:00\n", + "Buying AZO on 2020-08-31 00:00:00\n", + "Buying A on 2020-08-31 00:00:00\n", + "Buying V on 2020-08-31 00:00:00\n", + "Buying MKC on 2020-08-31 00:00:00\n", + "Buying TXN on 2020-08-31 00:00:00\n", + "Buying KMB on 2020-08-31 00:00:00\n", + "Buying PAYX on 2020-08-31 00:00:00\n", + "Buying MCD on 2020-08-31 00:00:00\n", + "Buying ZTS on 2020-08-31 00:00:00\n", + "Buying HRL on 2020-08-31 00:00:00\n", + "Buying FAST on 2020-08-31 00:00:00\n", + "Buying BLK on 2020-08-31 00:00:00\n", + "Buying WM on 2020-08-31 00:00:00\n", + "Buying BRK-B on 2020-08-31 00:00:00\n", + "Buying KDP on 2020-08-31 00:00:00\n", + "Buying MMC on 2020-08-31 00:00:00\n", + "Buying LOW on 2020-08-31 00:00:00\n", + "Buying ATO on 2020-08-31 00:00:00\n", + "Buying LIN on 2020-08-31 00:00:00\n", + "Buying SHW on 2020-08-31 00:00:00\n", + "Buying DHR on 2020-08-31 00:00:00\n", + "Buying ROK on 2020-08-31 00:00:00\n", + "Buying TROW on 2020-08-31 00:00:00\n", + "Buying AME on 2020-08-31 00:00:00\n", + "Buying K on 2020-08-31 00:00:00\n", + "Buying ROP on 2020-08-31 00:00:00\n", + "Buying YUM on 2020-08-31 00:00:00\n", + "Buying KO on 2020-08-31 00:00:00\n", + "Buying IBM on 2020-08-31 00:00:00\n", + "Buying FIS on 2020-08-31 00:00:00\n", + "Buying MAS on 2020-08-31 00:00:00\n", + "Buying RSG on 2020-08-31 00:00:00\n", + "Buying ITW on 2020-08-31 00:00:00\n", + "Buying ABBV on 2020-08-31 00:00:00\n", + "Buying ICE on 2020-08-31 00:00:00\n", + "Buying BF-B on 2020-08-31 00:00:00\n", + "Selling COF on 2020-08-31 00:00:00\n", + "Selling NFLX on 2020-08-31 00:00:00\n", + "Selling HBAN on 2020-08-31 00:00:00\n", + "Selling LYV on 2020-08-31 00:00:00\n", + "Selling VTR on 2020-08-31 00:00:00\n", + "Selling LVS on 2020-08-31 00:00:00\n", + "Selling CTRA on 2020-08-31 00:00:00\n", + "Selling LUV on 2020-08-31 00:00:00\n", + "Selling AXON on 2020-08-31 00:00:00\n", + "Selling HES on 2020-08-31 00:00:00\n", + "Selling HAL on 2020-08-31 00:00:00\n", + "Selling AIG on 2020-08-31 00:00:00\n", + "Selling TPR on 2020-08-31 00:00:00\n", + "Selling DAY on 2020-08-31 00:00:00\n", + "Selling HST on 2020-08-31 00:00:00\n", + "Selling SMCI on 2020-08-31 00:00:00\n", + "Selling IVZ on 2020-08-31 00:00:00\n", + "Selling FSLR on 2020-08-31 00:00:00\n", + "Selling CRWD on 2020-08-31 00:00:00\n", + "Selling HWM on 2020-08-31 00:00:00\n", + "Selling WDC on 2020-08-31 00:00:00\n", + "Selling MTCH on 2020-08-31 00:00:00\n", + "Selling SPG on 2020-08-31 00:00:00\n", + "Selling DVN on 2020-08-31 00:00:00\n", + "Selling MOS on 2020-08-31 00:00:00\n", + "Selling PARA on 2020-08-31 00:00:00\n", + "Selling OKE on 2020-08-31 00:00:00\n", + "Selling DAL 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 BLDR on 2020-08-31 00:00:00\n", + "Selling TRGP on 2020-08-31 00:00:00\n", + "Selling CRM on 2020-08-31 00:00:00\n", + "Selling OXY on 2020-08-31 00:00:00\n", + "Selling FE on 2020-08-31 00:00:00\n", + "Selling AMD on 2020-08-31 00:00:00\n", + "Selling MGM on 2020-08-31 00:00:00\n", + "Selling WYNN on 2020-08-31 00:00:00\n", + "Selling MHK on 2020-08-31 00:00:00\n", + "Selling APA on 2020-08-31 00:00:00\n", + "Selling EQT on 2020-08-31 00:00:00\n", + "Selling TSLA on 2020-08-31 00:00:00\n", + "Selling CZR on 2020-08-31 00:00:00\n", + "Selling RCL on 2020-08-31 00:00:00\n", + "Selling MRNA on 2020-08-31 00:00:00\n", + "Selling UAL on 2020-08-31 00:00:00\n", + "Selling CCL on 2020-08-31 00:00:00\n", + "Selling ENPH on 2020-08-31 00:00:00\n", + "Selling NCLH on 2020-08-31 00:00:00\n", + "Buying PG on 2020-09-30 00:00:00\n", + "Buying VZ on 2020-09-30 00:00:00\n", + "Buying CL on 2020-09-30 00:00:00\n", + "Buying VRSK on 2020-09-30 00:00:00\n", + "Buying T on 2020-09-30 00:00:00\n", + "Buying BRO on 2020-09-30 00:00:00\n", + "Buying PEP on 2020-09-30 00:00:00\n", + "Buying JNJ on 2020-09-30 00:00:00\n", + "Buying MDLZ on 2020-09-30 00:00:00\n", + "Buying MMC on 2020-09-30 00:00:00\n", + "Buying PAYX on 2020-09-30 00:00:00\n", + "Buying AJG on 2020-09-30 00:00:00\n", + "Buying WM on 2020-09-30 00:00:00\n", + "Buying CHTR on 2020-09-30 00:00:00\n", + "Buying ZTS on 2020-09-30 00:00:00\n", + "Buying TXN on 2020-09-30 00:00:00\n", + "Buying V on 2020-09-30 00:00:00\n", + "Buying MKC on 2020-09-30 00:00:00\n", + "Buying MCD on 2020-09-30 00:00:00\n", + "Buying HRL on 2020-09-30 00:00:00\n", + "Buying FDS on 2020-09-30 00:00:00\n", + "Buying FIS on 2020-09-30 00:00:00\n", + "Buying NDAQ on 2020-09-30 00:00:00\n", + "Buying TROW on 2020-09-30 00:00:00\n", + "Buying HD on 2020-09-30 00:00:00\n", + "Buying COST on 2020-09-30 00:00:00\n", + "Buying BRK-B on 2020-09-30 00:00:00\n", + "Buying RSG on 2020-09-30 00:00:00\n", + "Buying IBM on 2020-09-30 00:00:00\n", + "Buying KMB on 2020-09-30 00:00:00\n", + "Buying AZO on 2020-09-30 00:00:00\n", + "Buying HUBB on 2020-09-30 00:00:00\n", + "Buying A on 2020-09-30 00:00:00\n", + "Buying SHW on 2020-09-30 00:00:00\n", + "Buying KDP on 2020-09-30 00:00:00\n", + "Buying CME on 2020-09-30 00:00:00\n", + "Buying LIN on 2020-09-30 00:00:00\n", + "Buying AME on 2020-09-30 00:00:00\n", + "Buying MRK on 2020-09-30 00:00:00\n", + "Buying ITW on 2020-09-30 00:00:00\n", + "Buying DHR on 2020-09-30 00:00:00\n", + "Buying GRMN on 2020-09-30 00:00:00\n", + "Buying ARE on 2020-09-30 00:00:00\n", + "Buying FAST on 2020-09-30 00:00:00\n", + "Buying ATO on 2020-09-30 00:00:00\n", + "Buying LOW on 2020-09-30 00:00:00\n", + "Buying EQIX on 2020-09-30 00:00:00\n", + "Buying TMO on 2020-09-30 00:00:00\n", + "Buying CMCSA on 2020-09-30 00:00:00\n", + "Selling LW on 2020-09-30 00:00:00\n", + "Selling COF on 2020-09-30 00:00:00\n", + "Selling HWM on 2020-09-30 00:00:00\n", + "Selling NFLX on 2020-09-30 00:00:00\n", + "Selling HAL on 2020-09-30 00:00:00\n", + "Selling WDAY on 2020-09-30 00:00:00\n", + "Selling MPC on 2020-09-30 00:00:00\n", + "Selling RL on 2020-09-30 00:00:00\n", + "Selling EOG on 2020-09-30 00:00:00\n", + "Selling LYV on 2020-09-30 00:00:00\n", + "Selling HES on 2020-09-30 00:00:00\n", + "Selling SLB on 2020-09-30 00:00:00\n", + "Selling DFS on 2020-09-30 00:00:00\n", + "Selling GM on 2020-09-30 00:00:00\n", + "Selling LVS on 2020-09-30 00:00:00\n", + "Selling MTCH on 2020-09-30 00:00:00\n", + "Selling ALB on 2020-09-30 00:00:00\n", + "Selling GE on 2020-09-30 00:00:00\n", + "Selling HST on 2020-09-30 00:00:00\n", + "Selling DAY on 2020-09-30 00:00:00\n", + "Selling SPG on 2020-09-30 00:00:00\n", + "Selling IVZ on 2020-09-30 00:00:00\n", + "Selling TRGP on 2020-09-30 00:00:00\n", + "Selling DAL on 2020-09-30 00:00:00\n", + "Selling FSLR on 2020-09-30 00:00:00\n", + "Selling TPR on 2020-09-30 00:00:00\n", + "Selling FANG on 2020-09-30 00:00:00\n", + "Selling BLDR on 2020-09-30 00:00:00\n", + "Selling DVN on 2020-09-30 00:00:00\n", + "Selling MOS on 2020-09-30 00:00:00\n", + "Selling WDC on 2020-09-30 00:00:00\n", + "Selling CRWD on 2020-09-30 00:00:00\n", + "Selling EQT on 2020-09-30 00:00:00\n", + "Selling MGM on 2020-09-30 00:00:00\n", + "Selling OXY on 2020-09-30 00:00:00\n", + "Selling CRM on 2020-09-30 00:00:00\n", + "Selling ENPH on 2020-09-30 00:00:00\n", + "Selling WYNN on 2020-09-30 00:00:00\n", + "Selling MHK on 2020-09-30 00:00:00\n", + "Selling FE on 2020-09-30 00:00:00\n", + "Selling AMD on 2020-09-30 00:00:00\n", + "Selling UAL on 2020-09-30 00:00:00\n", + "Selling CZR on 2020-09-30 00:00:00\n", + "Selling RCL on 2020-09-30 00:00:00\n", + "Selling APA on 2020-09-30 00:00:00\n", + "Selling CCL on 2020-09-30 00:00:00\n", + "Selling MRNA on 2020-09-30 00:00:00\n", + "Selling TSLA on 2020-09-30 00:00:00\n", + "Selling NCLH on 2020-09-30 00:00:00\n", + "Buying PG on 2020-10-31 00:00:00\n", + "Buying VZ on 2020-10-31 00:00:00\n", + "Buying MDLZ on 2020-10-31 00:00:00\n", + "Buying VRSK on 2020-10-31 00:00:00\n", + "Buying CL on 2020-10-31 00:00:00\n", + "Buying PEP on 2020-10-31 00:00:00\n", + "Buying MCD on 2020-10-31 00:00:00\n", + "Buying HSY on 2020-10-31 00:00:00\n", + "Buying AJG on 2020-10-31 00:00:00\n", + "Buying TXN on 2020-10-31 00:00:00\n", + "Buying BRK-B on 2020-10-31 00:00:00\n", + "Buying V on 2020-10-31 00:00:00\n", + "Buying COST on 2020-10-31 00:00:00\n", + "Buying RSG on 2020-10-31 00:00:00\n", + "Buying JNJ on 2020-10-31 00:00:00\n", + "Buying HRL on 2020-10-31 00:00:00\n", + "Buying WM on 2020-10-31 00:00:00\n", + "Buying BRO on 2020-10-31 00:00:00\n", + "Buying CPRT on 2020-10-31 00:00:00\n", + "Buying MKC on 2020-10-31 00:00:00\n", + "Buying A on 2020-10-31 00:00:00\n", + "Buying CTAS on 2020-10-31 00:00:00\n", + "Buying MNST on 2020-10-31 00:00:00\n", + "Buying BALL on 2020-10-31 00:00:00\n", + "Buying PAYX on 2020-10-31 00:00:00\n", + "Buying APD on 2020-10-31 00:00:00\n", + "Buying ADI on 2020-10-31 00:00:00\n", + "Buying ZTS on 2020-10-31 00:00:00\n", + "Buying MRK on 2020-10-31 00:00:00\n", + "Buying AEE on 2020-10-31 00:00:00\n", + "Buying HD on 2020-10-31 00:00:00\n", + "Buying HUBB on 2020-10-31 00:00:00\n", + "Buying CMCSA on 2020-10-31 00:00:00\n", + "Buying CTSH on 2020-10-31 00:00:00\n", + "Buying K on 2020-10-31 00:00:00\n", + "Buying WEC on 2020-10-31 00:00:00\n", + "Buying EXPD on 2020-10-31 00:00:00\n", + "Buying AME on 2020-10-31 00:00:00\n", + "Buying D on 2020-10-31 00:00:00\n", + "Buying GRMN on 2020-10-31 00:00:00\n", + "Buying CMS on 2020-10-31 00:00:00\n", + "Buying APH on 2020-10-31 00:00:00\n", + "Buying FDS on 2020-10-31 00:00:00\n", + "Buying ARE on 2020-10-31 00:00:00\n", + "Buying BR on 2020-10-31 00:00:00\n", + "Buying FMC on 2020-10-31 00:00:00\n", + "Buying GWW on 2020-10-31 00:00:00\n", + "Buying KO on 2020-10-31 00:00:00\n", + "Buying TEL on 2020-10-31 00:00:00\n", + "Selling UBER on 2020-10-31 00:00:00\n", + "Selling DXCM on 2020-10-31 00:00:00\n", + "Selling LVS on 2020-10-31 00:00:00\n", + "Selling LYB on 2020-10-31 00:00:00\n", + "Selling VLO on 2020-10-31 00:00:00\n", + "Selling MOH on 2020-10-31 00:00:00\n", + "Selling EOG on 2020-10-31 00:00:00\n", + "Selling BLDR on 2020-10-31 00:00:00\n", + "Selling SMCI on 2020-10-31 00:00:00\n", + "Selling OKE on 2020-10-31 00:00:00\n", + "Selling MOS on 2020-10-31 00:00:00\n", + "Selling CBRE on 2020-10-31 00:00:00\n", + "Selling WDAY on 2020-10-31 00:00:00\n", + "Selling SPG on 2020-10-31 00:00:00\n", + "Selling GM on 2020-10-31 00:00:00\n", + "Selling ALB on 2020-10-31 00:00:00\n", + "Selling RL on 2020-10-31 00:00:00\n", + "Selling MHK on 2020-10-31 00:00:00\n", + "Selling MPC on 2020-10-31 00:00:00\n", + "Selling WDC on 2020-10-31 00:00:00\n", + "Selling NFLX on 2020-10-31 00:00:00\n", + "Selling DFS on 2020-10-31 00:00:00\n", + "Selling IVZ on 2020-10-31 00:00:00\n", + "Selling SLB on 2020-10-31 00:00:00\n", + "Selling DAL on 2020-10-31 00:00:00\n", + "Selling MGM on 2020-10-31 00:00:00\n", + "Selling WYNN on 2020-10-31 00:00:00\n", + "Selling HAL on 2020-10-31 00:00:00\n", + "Selling GE on 2020-10-31 00:00:00\n", + "Selling MRNA on 2020-10-31 00:00:00\n", + "Selling VRTX on 2020-10-31 00:00:00\n", + "Selling TRGP on 2020-10-31 00:00:00\n", + "Selling EQT on 2020-10-31 00:00:00\n", + "Selling TPR on 2020-10-31 00:00:00\n", + "Selling CRWD on 2020-10-31 00:00:00\n", + "Selling FANG on 2020-10-31 00:00:00\n", + "Selling UAL on 2020-10-31 00:00:00\n", + "Selling CZR on 2020-10-31 00:00:00\n", + "Selling OXY on 2020-10-31 00:00:00\n", + "Selling DVN on 2020-10-31 00:00:00\n", + "Selling CRM on 2020-10-31 00:00:00\n", + "Selling RCL on 2020-10-31 00:00:00\n", + "Selling APA on 2020-10-31 00:00:00\n", + "Selling FSLR on 2020-10-31 00:00:00\n", + "Selling ENPH on 2020-10-31 00:00:00\n", + "Selling NCLH on 2020-10-31 00:00:00\n", + "Selling CCL on 2020-10-31 00:00:00\n", + "Selling ALGN on 2020-10-31 00:00:00\n", + "Selling TSLA on 2020-10-31 00:00:00\n", + "Buying VZ on 2020-11-30 00:00:00\n", + "Buying MDLZ on 2020-11-30 00:00:00\n", + "Buying BR on 2020-11-30 00:00:00\n", + "Buying PEP on 2020-11-30 00:00:00\n", + "Buying BF-B on 2020-11-30 00:00:00\n", + "Buying RSG on 2020-11-30 00:00:00\n", + "Buying PG on 2020-11-30 00:00:00\n", + "Buying HSY on 2020-11-30 00:00:00\n", + "Buying MCD on 2020-11-30 00:00:00\n", + "Buying JNJ on 2020-11-30 00:00:00\n", + "Buying WM on 2020-11-30 00:00:00\n", + "Buying CL on 2020-11-30 00:00:00\n", + "Buying AJG on 2020-11-30 00:00:00\n", + "Buying WMT on 2020-11-30 00:00:00\n", + "Buying SBUX on 2020-11-30 00:00:00\n", + "Buying GILD on 2020-11-30 00:00:00\n", + "Buying ICE on 2020-11-30 00:00:00\n", + "Buying CTSH on 2020-11-30 00:00:00\n", + "Buying TXN on 2020-11-30 00:00:00\n", + "Buying PAYX on 2020-11-30 00:00:00\n", + "Buying MMC on 2020-11-30 00:00:00\n", + "Buying ORCL on 2020-11-30 00:00:00\n", + "Buying ADI on 2020-11-30 00:00:00\n", + "Buying V on 2020-11-30 00:00:00\n", + "Buying APH on 2020-11-30 00:00:00\n", + "Buying MRK on 2020-11-30 00:00:00\n", + "Buying D on 2020-11-30 00:00:00\n", + "Buying TEL on 2020-11-30 00:00:00\n", + "Buying XEL on 2020-11-30 00:00:00\n", + "Buying BRO on 2020-11-30 00:00:00\n", + "Buying BRK-B on 2020-11-30 00:00:00\n", + "Buying EL on 2020-11-30 00:00:00\n", + "Buying ORLY on 2020-11-30 00:00:00\n", + "Buying AWK on 2020-11-30 00:00:00\n", + "Buying EXC on 2020-11-30 00:00:00\n", + "Buying GRMN on 2020-11-30 00:00:00\n", + "Buying VRSK on 2020-11-30 00:00:00\n", + "Buying MNST on 2020-11-30 00:00:00\n", + "Buying MSFT on 2020-11-30 00:00:00\n", + "Buying COST on 2020-11-30 00:00:00\n", + "Buying A on 2020-11-30 00:00:00\n", + "Buying K on 2020-11-30 00:00:00\n", + "Buying CSCO on 2020-11-30 00:00:00\n", + "Buying WEC on 2020-11-30 00:00:00\n", + "Buying EXPD on 2020-11-30 00:00:00\n", + "Buying KO on 2020-11-30 00:00:00\n", + "Buying AEP on 2020-11-30 00:00:00\n", + "Buying AVGO on 2020-11-30 00:00:00\n", + "Buying AEE on 2020-11-30 00:00:00\n", + "Selling SMCI on 2020-11-30 00:00:00\n", + "Selling ALB on 2020-11-30 00:00:00\n", + "Selling VRTX on 2020-11-30 00:00:00\n", + "Selling DRI on 2020-11-30 00:00:00\n", + "Selling TPR on 2020-11-30 00:00:00\n", + "Selling EQT on 2020-11-30 00:00:00\n", + "Selling RF on 2020-11-30 00:00:00\n", + "Selling HWM on 2020-11-30 00:00:00\n", + "Selling COP on 2020-11-30 00:00:00\n", + "Selling CZR on 2020-11-30 00:00:00\n", + "Selling WELL on 2020-11-30 00:00:00\n", + "Selling DAL on 2020-11-30 00:00:00\n", + "Selling MOS on 2020-11-30 00:00:00\n", + "Selling BXP on 2020-11-30 00:00:00\n", + "Selling HBAN on 2020-11-30 00:00:00\n", + "Selling CFG on 2020-11-30 00:00:00\n", + "Selling TRGP on 2020-11-30 00:00:00\n", + "Selling OKE on 2020-11-30 00:00:00\n", + "Selling KEY on 2020-11-30 00:00:00\n", + "Selling HES on 2020-11-30 00:00:00\n", + "Selling MPC on 2020-11-30 00:00:00\n", + "Selling EOG on 2020-11-30 00:00:00\n", + "Selling EXPE on 2020-11-30 00:00:00\n", + "Selling UAL on 2020-11-30 00:00:00\n", + "Selling RL on 2020-11-30 00:00:00\n", + "Selling HAL on 2020-11-30 00:00:00\n", + "Selling PSX on 2020-11-30 00:00:00\n", + "Selling FSLR on 2020-11-30 00:00:00\n", + "Selling SLB on 2020-11-30 00:00:00\n", + "Selling DVN on 2020-11-30 00:00:00\n", + "Selling ENPH on 2020-11-30 00:00:00\n", + "Selling WYNN on 2020-11-30 00:00:00\n", + "Selling MTB on 2020-11-30 00:00:00\n", + "Selling TSLA on 2020-11-30 00:00:00\n", + "Selling HST on 2020-11-30 00:00:00\n", + "Selling SPG on 2020-11-30 00:00:00\n", + "Selling APA on 2020-11-30 00:00:00\n", + "Selling OXY on 2020-11-30 00:00:00\n", + "Selling KIM on 2020-11-30 00:00:00\n", + "Selling ALGN on 2020-11-30 00:00:00\n", + "Selling FRT on 2020-11-30 00:00:00\n", + "Selling RCL on 2020-11-30 00:00:00\n", + "Selling MRNA on 2020-11-30 00:00:00\n", + "Selling VLO on 2020-11-30 00:00:00\n", + "Selling REG on 2020-11-30 00:00:00\n", + "Selling NCLH on 2020-11-30 00:00:00\n", + "Selling FANG on 2020-11-30 00:00:00\n", + "Selling CCL on 2020-11-30 00:00:00\n", + "Selling BIIB on 2020-11-30 00:00:00\n", + "Buying MDLZ on 2020-12-31 00:00:00\n", + "Buying PEP on 2020-12-31 00:00:00\n", + "Buying VZ on 2020-12-31 00:00:00\n", + "Buying HSY on 2020-12-31 00:00:00\n", + "Buying WMT on 2020-12-31 00:00:00\n", + "Buying RSG on 2020-12-31 00:00:00\n", + "Buying GILD on 2020-12-31 00:00:00\n", + "Buying WM on 2020-12-31 00:00:00\n", + "Buying ORCL on 2020-12-31 00:00:00\n", + "Buying BF-B on 2020-12-31 00:00:00\n", + "Buying PG on 2020-12-31 00:00:00\n", + "Buying CL on 2020-12-31 00:00:00\n", + "Buying APH on 2020-12-31 00:00:00\n", + "Buying ICE on 2020-12-31 00:00:00\n", + "Buying MCD on 2020-12-31 00:00:00\n", + "Buying JNJ on 2020-12-31 00:00:00\n", + "Buying MRK on 2020-12-31 00:00:00\n", + "Buying YUM on 2020-12-31 00:00:00\n", + "Buying CTSH on 2020-12-31 00:00:00\n", + "Buying BR on 2020-12-31 00:00:00\n", + "Buying ES on 2020-12-31 00:00:00\n", + "Buying XEL on 2020-12-31 00:00:00\n", + "Buying EXPD on 2020-12-31 00:00:00\n", + "Buying MMC on 2020-12-31 00:00:00\n", + "Buying TXN on 2020-12-31 00:00:00\n", + "Buying ADI on 2020-12-31 00:00:00\n", + "Buying BRK-B on 2020-12-31 00:00:00\n", + "Buying K on 2020-12-31 00:00:00\n", + "Buying GIS on 2020-12-31 00:00:00\n", + "Buying MNST on 2020-12-31 00:00:00\n", + "Buying AJG on 2020-12-31 00:00:00\n", + "Buying DUK on 2020-12-31 00:00:00\n", + "Buying WEC on 2020-12-31 00:00:00\n", + "Buying SO on 2020-12-31 00:00:00\n", + "Buying ALL on 2020-12-31 00:00:00\n", + "Buying D on 2020-12-31 00:00:00\n", + "Buying PAYX on 2020-12-31 00:00:00\n", + "Buying V on 2020-12-31 00:00:00\n", + "Buying KO on 2020-12-31 00:00:00\n", + "Buying TEL on 2020-12-31 00:00:00\n", + "Buying NKE on 2020-12-31 00:00:00\n", + "Buying DOV on 2020-12-31 00:00:00\n", + "Buying PEG on 2020-12-31 00:00:00\n", + "Buying LMT on 2020-12-31 00:00:00\n", + "Buying AEP on 2020-12-31 00:00:00\n", + "Buying CSCO on 2020-12-31 00:00:00\n", + "Buying CPB on 2020-12-31 00:00:00\n", + "Buying AME on 2020-12-31 00:00:00\n", + "Buying MSFT on 2020-12-31 00:00:00\n", + "Selling SMCI on 2020-12-31 00:00:00\n", + "Selling TPL on 2020-12-31 00:00:00\n", + "Selling UBER on 2020-12-31 00:00:00\n", + "Selling VRTX on 2020-12-31 00:00:00\n", + "Selling DAL on 2020-12-31 00:00:00\n", + "Selling HWM on 2020-12-31 00:00:00\n", + "Selling RF on 2020-12-31 00:00:00\n", + "Selling CFG on 2020-12-31 00:00:00\n", + "Selling TRGP on 2020-12-31 00:00:00\n", + "Selling OKE on 2020-12-31 00:00:00\n", + "Selling MOS on 2020-12-31 00:00:00\n", + "Selling WELL on 2020-12-31 00:00:00\n", + "Selling BXP on 2020-12-31 00:00:00\n", + "Selling COP on 2020-12-31 00:00:00\n", + "Selling HBAN on 2020-12-31 00:00:00\n", + "Selling MPC on 2020-12-31 00:00:00\n", + "Selling KEY on 2020-12-31 00:00:00\n", + "Selling TSLA on 2020-12-31 00:00:00\n", + "Selling EQT on 2020-12-31 00:00:00\n", + "Selling HAL on 2020-12-31 00:00:00\n", + "Selling EOG on 2020-12-31 00:00:00\n", + "Selling UAL on 2020-12-31 00:00:00\n", + "Selling EXPE on 2020-12-31 00:00:00\n", + "Selling FSLR on 2020-12-31 00:00:00\n", + "Selling SLB on 2020-12-31 00:00:00\n", + "Selling RL on 2020-12-31 00:00:00\n", + "Selling PSX on 2020-12-31 00:00:00\n", + "Selling HES on 2020-12-31 00:00:00\n", + "Selling DVN on 2020-12-31 00:00:00\n", + "Selling CRWD on 2020-12-31 00:00:00\n", + "Selling WYNN on 2020-12-31 00:00:00\n", + "Selling MTB on 2020-12-31 00:00:00\n", + "Selling ENPH on 2020-12-31 00:00:00\n", + "Selling SPG on 2020-12-31 00:00:00\n", + "Selling HST on 2020-12-31 00:00:00\n", + "Selling APA on 2020-12-31 00:00:00\n", + "Selling KIM on 2020-12-31 00:00:00\n", + "Selling RCL on 2020-12-31 00:00:00\n", + "Selling FRT on 2020-12-31 00:00:00\n", + "Selling ALGN on 2020-12-31 00:00:00\n", + "Selling NCLH on 2020-12-31 00:00:00\n", + "Selling VLO on 2020-12-31 00:00:00\n", + "Selling REG on 2020-12-31 00:00:00\n", + "Selling OXY on 2020-12-31 00:00:00\n", + "Selling FANG on 2020-12-31 00:00:00\n", + "Selling MRNA on 2020-12-31 00:00:00\n", + "Selling CCL on 2020-12-31 00:00:00\n", + "Selling BIIB on 2020-12-31 00:00:00\n", + "Selling PLTR on 2020-12-31 00:00:00\n", + "Buying MDLZ on 2021-01-31 00:00:00\n", + "Buying PEP on 2021-01-31 00:00:00\n", + "Buying GRMN on 2021-01-31 00:00:00\n", + "Buying HSY on 2021-01-31 00:00:00\n", + "Buying APH on 2021-01-31 00:00:00\n", + "Buying VZ on 2021-01-31 00:00:00\n", + "Buying WM on 2021-01-31 00:00:00\n", + "Buying RSG on 2021-01-31 00:00:00\n", + "Buying CL on 2021-01-31 00:00:00\n", + "Buying MMC on 2021-01-31 00:00:00\n", + "Buying YUM on 2021-01-31 00:00:00\n", + "Buying WMT on 2021-01-31 00:00:00\n", + "Buying ICE on 2021-01-31 00:00:00\n", + "Buying ORCL on 2021-01-31 00:00:00\n", + "Buying PG on 2021-01-31 00:00:00\n", + "Buying BRK-B on 2021-01-31 00:00:00\n", + "Buying CTSH on 2021-01-31 00:00:00\n", + "Buying MCD on 2021-01-31 00:00:00\n", + "Buying ACN on 2021-01-31 00:00:00\n", + "Buying JNJ on 2021-01-31 00:00:00\n", + "Buying TROW on 2021-01-31 00:00:00\n", + "Buying GOOG on 2021-01-31 00:00:00\n", + "Buying BR on 2021-01-31 00:00:00\n", + "Buying ALL on 2021-01-31 00:00:00\n", + "Buying PAYX on 2021-01-31 00:00:00\n", + "Buying DOV on 2021-01-31 00:00:00\n", + "Buying TXN on 2021-01-31 00:00:00\n", + "Buying BLK on 2021-01-31 00:00:00\n", + "Buying GOOGL on 2021-01-31 00:00:00\n", + "Buying BF-B on 2021-01-31 00:00:00\n", + "Buying ADP on 2021-01-31 00:00:00\n", + "Buying MRK on 2021-01-31 00:00:00\n", + "Buying AJG on 2021-01-31 00:00:00\n", + "Buying KMB on 2021-01-31 00:00:00\n", + "Buying ITW on 2021-01-31 00:00:00\n", + "Buying AEP on 2021-01-31 00:00:00\n", + "Buying TEL on 2021-01-31 00:00:00\n", + "Buying ADI on 2021-01-31 00:00:00\n", + "Buying NKE on 2021-01-31 00:00:00\n", + "Buying CSCO on 2021-01-31 00:00:00\n", + "Buying EXPD on 2021-01-31 00:00:00\n", + "Buying AMGN on 2021-01-31 00:00:00\n", + "Buying EXC on 2021-01-31 00:00:00\n", + "Buying A on 2021-01-31 00:00:00\n", + "Buying ES on 2021-01-31 00:00:00\n", + "Buying PM on 2021-01-31 00:00:00\n", + "Buying COST on 2021-01-31 00:00:00\n", + "Buying V on 2021-01-31 00:00:00\n", + "Buying MNST on 2021-01-31 00:00:00\n", + "Selling AXP on 2021-01-31 00:00:00\n", + "Selling FOXA on 2021-01-31 00:00:00\n", + "Selling WDC on 2021-01-31 00:00:00\n", + "Selling OKE on 2021-01-31 00:00:00\n", + "Selling AXON on 2021-01-31 00:00:00\n", + "Selling HWM on 2021-01-31 00:00:00\n", + "Selling PARA on 2021-01-31 00:00:00\n", + "Selling MPC on 2021-01-31 00:00:00\n", + "Selling CFG on 2021-01-31 00:00:00\n", + "Selling BXP on 2021-01-31 00:00:00\n", + "Selling UBER on 2021-01-31 00:00:00\n", + "Selling WELL on 2021-01-31 00:00:00\n", + "Selling TRGP on 2021-01-31 00:00:00\n", + "Selling TPL on 2021-01-31 00:00:00\n", + "Selling COP on 2021-01-31 00:00:00\n", + "Selling HBAN on 2021-01-31 00:00:00\n", + "Selling MOS on 2021-01-31 00:00:00\n", + "Selling KEY on 2021-01-31 00:00:00\n", + "Selling EXPE on 2021-01-31 00:00:00\n", + "Selling RL on 2021-01-31 00:00:00\n", + "Selling UAL on 2021-01-31 00:00:00\n", + "Selling SLB on 2021-01-31 00:00:00\n", + "Selling FSLR on 2021-01-31 00:00:00\n", + "Selling HAL on 2021-01-31 00:00:00\n", + "Selling TSLA on 2021-01-31 00:00:00\n", + "Selling PSX on 2021-01-31 00:00:00\n", + "Selling HES on 2021-01-31 00:00:00\n", + "Selling EQT on 2021-01-31 00:00:00\n", + "Selling WYNN on 2021-01-31 00:00:00\n", + "Selling EOG on 2021-01-31 00:00:00\n", + "Selling MTB on 2021-01-31 00:00:00\n", + "Selling CRWD on 2021-01-31 00:00:00\n", + "Selling DVN on 2021-01-31 00:00:00\n", + "Selling ENPH on 2021-01-31 00:00:00\n", + "Selling RCL on 2021-01-31 00:00:00\n", + "Selling SPG on 2021-01-31 00:00:00\n", + "Selling HST on 2021-01-31 00:00:00\n", + "Selling KIM on 2021-01-31 00:00:00\n", + "Selling NCLH on 2021-01-31 00:00:00\n", + "Selling APA on 2021-01-31 00:00:00\n", + "Selling FRT on 2021-01-31 00:00:00\n", + "Selling REG on 2021-01-31 00:00:00\n", + "Selling VLO on 2021-01-31 00:00:00\n", + "Selling OXY on 2021-01-31 00:00:00\n", + "Selling FANG on 2021-01-31 00:00:00\n", + "Selling MRNA on 2021-01-31 00:00:00\n", + "Selling CCL on 2021-01-31 00:00:00\n", + "Selling BIIB on 2021-01-31 00:00:00\n", + "Selling PLTR on 2021-01-31 00:00:00\n", + "Buying BRK-B on 2021-02-28 00:00:00\n", + "Buying CL on 2021-02-28 00:00:00\n", + "Buying PG on 2021-02-28 00:00:00\n", + "Buying PEP on 2021-02-28 00:00:00\n", + "Buying HSY on 2021-02-28 00:00:00\n", + "Buying WM on 2021-02-28 00:00:00\n", + "Buying APH on 2021-02-28 00:00:00\n", + "Buying HON on 2021-02-28 00:00:00\n", + "Buying SYK on 2021-02-28 00:00:00\n", + "Buying GRMN on 2021-02-28 00:00:00\n", + "Buying CSCO on 2021-02-28 00:00:00\n", + "Buying RSG on 2021-02-28 00:00:00\n", + "Buying COST on 2021-02-28 00:00:00\n", + "Buying MDLZ on 2021-02-28 00:00:00\n", + "Buying ITW on 2021-02-28 00:00:00\n", + "Buying KMB on 2021-02-28 00:00:00\n", + "Buying MCD on 2021-02-28 00:00:00\n", + "Buying MCK on 2021-02-28 00:00:00\n", + "Buying CHD on 2021-02-28 00:00:00\n", + "Buying DOV on 2021-02-28 00:00:00\n", + "Buying BX on 2021-02-28 00:00:00\n", + "Buying PPL on 2021-02-28 00:00:00\n", + "Buying ICE on 2021-02-28 00:00:00\n", + "Buying MMC on 2021-02-28 00:00:00\n", + "Buying A on 2021-02-28 00:00:00\n", + "Buying AMGN on 2021-02-28 00:00:00\n", + "Buying PAYX on 2021-02-28 00:00:00\n", + "Buying KDP on 2021-02-28 00:00:00\n", + "Buying ACN on 2021-02-28 00:00:00\n", + "Buying AJG on 2021-02-28 00:00:00\n", + "Buying JNJ on 2021-02-28 00:00:00\n", + "Buying KO on 2021-02-28 00:00:00\n", + "Buying TROW on 2021-02-28 00:00:00\n", + "Buying BLK on 2021-02-28 00:00:00\n", + "Buying VZ on 2021-02-28 00:00:00\n", + "Buying BAX on 2021-02-28 00:00:00\n", + "Buying MO on 2021-02-28 00:00:00\n", + "Buying MSI on 2021-02-28 00:00:00\n", + "Buying MRK on 2021-02-28 00:00:00\n", + "Buying BF-B on 2021-02-28 00:00:00\n", + "Buying TRV on 2021-02-28 00:00:00\n", + "Buying ALL on 2021-02-28 00:00:00\n", + "Buying PM on 2021-02-28 00:00:00\n", + "Buying YUM on 2021-02-28 00:00:00\n", + "Buying NDAQ on 2021-02-28 00:00:00\n", + "Buying MNST on 2021-02-28 00:00:00\n", + "Buying ADM on 2021-02-28 00:00:00\n", + "Buying UNH on 2021-02-28 00:00:00\n", + "Buying SHW on 2021-02-28 00:00:00\n", + "Selling GM on 2021-02-28 00:00:00\n", + "Selling VLO on 2021-02-28 00:00:00\n", + "Selling INTC on 2021-02-28 00:00:00\n", + "Selling AMAT on 2021-02-28 00:00:00\n", + "Selling COP on 2021-02-28 00:00:00\n", + "Selling NFLX on 2021-02-28 00:00:00\n", + "Selling CTRA on 2021-02-28 00:00:00\n", + "Selling LRCX on 2021-02-28 00:00:00\n", + "Selling LEN on 2021-02-28 00:00:00\n", + "Selling SLB on 2021-02-28 00:00:00\n", + "Selling NTAP on 2021-02-28 00:00:00\n", + "Selling BLDR on 2021-02-28 00:00:00\n", + "Selling TPL on 2021-02-28 00:00:00\n", + "Selling TRGP on 2021-02-28 00:00:00\n", + "Selling WBD on 2021-02-28 00:00:00\n", + "Selling IFF on 2021-02-28 00:00:00\n", + "Selling MTCH on 2021-02-28 00:00:00\n", + "Selling IRM on 2021-02-28 00:00:00\n", + "Selling FOX on 2021-02-28 00:00:00\n", + "Selling UAL on 2021-02-28 00:00:00\n", + "Selling DAY on 2021-02-28 00:00:00\n", + "Selling CZR on 2021-02-28 00:00:00\n", + "Selling MOS on 2021-02-28 00:00:00\n", + "Selling HES on 2021-02-28 00:00:00\n", + "Selling WDC on 2021-02-28 00:00:00\n", + "Selling FOXA on 2021-02-28 00:00:00\n", + "Selling UBER on 2021-02-28 00:00:00\n", + "Selling HAL on 2021-02-28 00:00:00\n", + "Selling RCL on 2021-02-28 00:00:00\n", + "Selling ALB on 2021-02-28 00:00:00\n", + "Selling FSLR on 2021-02-28 00:00:00\n", + "Selling CCL on 2021-02-28 00:00:00\n", + "Selling FCX on 2021-02-28 00:00:00\n", + "Selling PARA on 2021-02-28 00:00:00\n", + "Selling GNRC on 2021-02-28 00:00:00\n", + "Selling AXON on 2021-02-28 00:00:00\n", + "Selling TSLA on 2021-02-28 00:00:00\n", + "Selling NCLH on 2021-02-28 00:00:00\n", + "Selling VST on 2021-02-28 00:00:00\n", + "Selling EOG on 2021-02-28 00:00:00\n", + "Selling DVN on 2021-02-28 00:00:00\n", + "Selling FANG on 2021-02-28 00:00:00\n", + "Selling CRWD on 2021-02-28 00:00:00\n", + "Selling EQT on 2021-02-28 00:00:00\n", + "Selling ENPH on 2021-02-28 00:00:00\n", + "Selling APA on 2021-02-28 00:00:00\n", + "Selling OXY on 2021-02-28 00:00:00\n", + "Selling MRNA on 2021-02-28 00:00:00\n", + "Selling PLTR on 2021-02-28 00:00:00\n", + "Buying SYK on 2021-03-31 00:00:00\n", + "Buying GRMN on 2021-03-31 00:00:00\n", + "Buying ACN on 2021-03-31 00:00:00\n", + "Buying BRK-B on 2021-03-31 00:00:00\n", + "Buying HSY on 2021-03-31 00:00:00\n", + "Buying CL on 2021-03-31 00:00:00\n", + "Buying PFE on 2021-03-31 00:00:00\n", + "Buying PAYX on 2021-03-31 00:00:00\n", + "Buying PEP on 2021-03-31 00:00:00\n", + "Buying JNJ on 2021-03-31 00:00:00\n", + "Buying PG on 2021-03-31 00:00:00\n", + "Buying HON on 2021-03-31 00:00:00\n", + "Buying ICE on 2021-03-31 00:00:00\n", + "Buying A on 2021-03-31 00:00:00\n", + "Buying MCD on 2021-03-31 00:00:00\n", + "Buying O on 2021-03-31 00:00:00\n", + "Buying MMC on 2021-03-31 00:00:00\n", + "Buying PM on 2021-03-31 00:00:00\n", + "Buying ITW on 2021-03-31 00:00:00\n", + "Buying APH on 2021-03-31 00:00:00\n", + "Buying T on 2021-03-31 00:00:00\n", + "Buying AMGN on 2021-03-31 00:00:00\n", + "Buying KMB on 2021-03-31 00:00:00\n", + "Buying MDLZ on 2021-03-31 00:00:00\n", + "Buying MCK on 2021-03-31 00:00:00\n", + "Buying MSI on 2021-03-31 00:00:00\n", + "Buying COST on 2021-03-31 00:00:00\n", + "Buying BAX on 2021-03-31 00:00:00\n", + "Buying KO on 2021-03-31 00:00:00\n", + "Buying DOV on 2021-03-31 00:00:00\n", + "Buying BLK on 2021-03-31 00:00:00\n", + "Buying MCO on 2021-03-31 00:00:00\n", + "Buying KDP on 2021-03-31 00:00:00\n", + "Buying AJG on 2021-03-31 00:00:00\n", + "Buying CSCO on 2021-03-31 00:00:00\n", + "Buying RSG on 2021-03-31 00:00:00\n", + "Buying IQV on 2021-03-31 00:00:00\n", + "Buying SHW on 2021-03-31 00:00:00\n", + "Buying SO on 2021-03-31 00:00:00\n", + "Buying MKC on 2021-03-31 00:00:00\n", + "Buying NDAQ on 2021-03-31 00:00:00\n", + "Buying CHD on 2021-03-31 00:00:00\n", + "Buying MDT on 2021-03-31 00:00:00\n", + "Buying MRK on 2021-03-31 00:00:00\n", + "Buying ZBH on 2021-03-31 00:00:00\n", + "Buying BDX on 2021-03-31 00:00:00\n", + "Buying BR on 2021-03-31 00:00:00\n", + "Buying WM on 2021-03-31 00:00:00\n", + "Buying ARE on 2021-03-31 00:00:00\n", + "Selling SLB on 2021-03-31 00:00:00\n", + "Selling ALGN on 2021-03-31 00:00:00\n", + "Selling GE on 2021-03-31 00:00:00\n", + "Selling DAY on 2021-03-31 00:00:00\n", + "Selling TPR on 2021-03-31 00:00:00\n", + "Selling IFF on 2021-03-31 00:00:00\n", + "Selling STX on 2021-03-31 00:00:00\n", + "Selling GM on 2021-03-31 00:00:00\n", + "Selling IRM on 2021-03-31 00:00:00\n", + "Selling AMAT on 2021-03-31 00:00:00\n", + "Selling MTCH on 2021-03-31 00:00:00\n", + "Selling LEN on 2021-03-31 00:00:00\n", + "Selling WDC on 2021-03-31 00:00:00\n", + "Selling LRCX on 2021-03-31 00:00:00\n", + "Selling TER on 2021-03-31 00:00:00\n", + "Selling UBER on 2021-03-31 00:00:00\n", + "Selling MOS on 2021-03-31 00:00:00\n", + "Selling HES on 2021-03-31 00:00:00\n", + "Selling HIG on 2021-03-31 00:00:00\n", + "Selling HAL on 2021-03-31 00:00:00\n", + "Selling ALB on 2021-03-31 00:00:00\n", + "Selling FSLR on 2021-03-31 00:00:00\n", + "Selling CRWD on 2021-03-31 00:00:00\n", + "Selling GNRC on 2021-03-31 00:00:00\n", + "Selling UAL on 2021-03-31 00:00:00\n", + "Selling CZR on 2021-03-31 00:00:00\n", + "Selling RCL on 2021-03-31 00:00:00\n", + "Selling FOX on 2021-03-31 00:00:00\n", + "Selling DVN on 2021-03-31 00:00:00\n", + "Selling CCL on 2021-03-31 00:00:00\n", + "Selling FCX on 2021-03-31 00:00:00\n", + "Selling NRG on 2021-03-31 00:00:00\n", + "Selling AXON on 2021-03-31 00:00:00\n", + "Selling FOXA on 2021-03-31 00:00:00\n", + "Selling EQT on 2021-03-31 00:00:00\n", + "Selling EOG on 2021-03-31 00:00:00\n", + "Selling FANG on 2021-03-31 00:00:00\n", + "Selling TSLA on 2021-03-31 00:00:00\n", + "Selling NCLH on 2021-03-31 00:00:00\n", + "Selling TPL on 2021-03-31 00:00:00\n", + "Selling VST on 2021-03-31 00:00:00\n", + "Selling APA on 2021-03-31 00:00:00\n", + "Selling OXY on 2021-03-31 00:00:00\n", + "Selling ENPH on 2021-03-31 00:00:00\n", + "Selling ABNB on 2021-03-31 00:00:00\n", + "Selling MRNA on 2021-03-31 00:00:00\n", + "Selling WBD on 2021-03-31 00:00:00\n", + "Selling PLTR on 2021-03-31 00:00:00\n", + "Selling PARA on 2021-03-31 00:00:00\n", + "Buying BLK on 2021-04-30 00:00:00\n", + "Buying SYK on 2021-04-30 00:00:00\n", + "Buying BAX on 2021-04-30 00:00:00\n", + "Buying KO on 2021-04-30 00:00:00\n", + "Buying JNJ on 2021-04-30 00:00:00\n", + "Buying ACN on 2021-04-30 00:00:00\n", + "Buying ICE on 2021-04-30 00:00:00\n", + "Buying SO on 2021-04-30 00:00:00\n", + "Buying PFE on 2021-04-30 00:00:00\n", + "Buying MKC on 2021-04-30 00:00:00\n", + "Buying MSI on 2021-04-30 00:00:00\n", + "Buying MCD on 2021-04-30 00:00:00\n", + "Buying O on 2021-04-30 00:00:00\n", + "Buying A on 2021-04-30 00:00:00\n", + "Buying PG on 2021-04-30 00:00:00\n", + "Buying BRK-B on 2021-04-30 00:00:00\n", + "Buying ARE on 2021-04-30 00:00:00\n", + "Buying COST on 2021-04-30 00:00:00\n", + "Buying CL on 2021-04-30 00:00:00\n", + "Buying PEP on 2021-04-30 00:00:00\n", + "Buying DUK on 2021-04-30 00:00:00\n", + "Buying GRMN on 2021-04-30 00:00:00\n", + "Buying HSY on 2021-04-30 00:00:00\n", + "Buying APH on 2021-04-30 00:00:00\n", + "Buying KDP on 2021-04-30 00:00:00\n", + "Buying MSFT on 2021-04-30 00:00:00\n", + "Buying MMC on 2021-04-30 00:00:00\n", + "Buying ED on 2021-04-30 00:00:00\n", + "Buying MCO on 2021-04-30 00:00:00\n", + "Buying LMT on 2021-04-30 00:00:00\n", + "Buying MMM on 2021-04-30 00:00:00\n", + "Buying HON on 2021-04-30 00:00:00\n", + "Buying ITW on 2021-04-30 00:00:00\n", + "Buying EXC on 2021-04-30 00:00:00\n", + "Buying MDT on 2021-04-30 00:00:00\n", + "Buying LIN on 2021-04-30 00:00:00\n", + "Buying ZBH on 2021-04-30 00:00:00\n", + "Buying NDAQ on 2021-04-30 00:00:00\n", + "Buying PM on 2021-04-30 00:00:00\n", + "Buying AME on 2021-04-30 00:00:00\n", + "Buying MAS on 2021-04-30 00:00:00\n", + "Buying COO on 2021-04-30 00:00:00\n", + "Buying CSCO on 2021-04-30 00:00:00\n", + "Buying STE on 2021-04-30 00:00:00\n", + "Buying RSG on 2021-04-30 00:00:00\n", + "Buying MDLZ on 2021-04-30 00:00:00\n", + "Buying XYL on 2021-04-30 00:00:00\n", + "Buying GD on 2021-04-30 00:00:00\n", + "Buying ADM on 2021-04-30 00:00:00\n", + "Selling COP on 2021-04-30 00:00:00\n", + "Selling WYNN on 2021-04-30 00:00:00\n", + "Selling ON on 2021-04-30 00:00:00\n", + "Selling VLO on 2021-04-30 00:00:00\n", + "Selling PTC on 2021-04-30 00:00:00\n", + "Selling EFX on 2021-04-30 00:00:00\n", + "Selling DAY on 2021-04-30 00:00:00\n", + "Selling LRCX on 2021-04-30 00:00:00\n", + "Selling ALGN on 2021-04-30 00:00:00\n", + "Selling F on 2021-04-30 00:00:00\n", + "Selling FOX on 2021-04-30 00:00:00\n", + "Selling UBER on 2021-04-30 00:00:00\n", + "Selling AMAT on 2021-04-30 00:00:00\n", + "Selling TER on 2021-04-30 00:00:00\n", + "Selling MGM on 2021-04-30 00:00:00\n", + "Selling MTCH on 2021-04-30 00:00:00\n", + "Selling FOXA on 2021-04-30 00:00:00\n", + "Selling LEN on 2021-04-30 00:00:00\n", + "Selling HAL on 2021-04-30 00:00:00\n", + "Selling MOS on 2021-04-30 00:00:00\n", + "Selling HIG on 2021-04-30 00:00:00\n", + "Selling HES on 2021-04-30 00:00:00\n", + "Selling EQT on 2021-04-30 00:00:00\n", + "Selling CZR on 2021-04-30 00:00:00\n", + "Selling FSLR on 2021-04-30 00:00:00\n", + "Selling DVN on 2021-04-30 00:00:00\n", + "Selling AXON on 2021-04-30 00:00:00\n", + "Selling ALB on 2021-04-30 00:00:00\n", + "Selling CRWD on 2021-04-30 00:00:00\n", + "Selling EOG on 2021-04-30 00:00:00\n", + "Selling UAL on 2021-04-30 00:00:00\n", + "Selling RCL on 2021-04-30 00:00:00\n", + "Selling FCX on 2021-04-30 00:00:00\n", + "Selling GNRC on 2021-04-30 00:00:00\n", + "Selling NRG on 2021-04-30 00:00:00\n", + "Selling ABNB on 2021-04-30 00:00:00\n", + "Selling CCL on 2021-04-30 00:00:00\n", + "Selling FANG on 2021-04-30 00:00:00\n", + "Selling TSLA on 2021-04-30 00:00:00\n", + "Selling OXY on 2021-04-30 00:00:00\n", + "Selling APA on 2021-04-30 00:00:00\n", + "Selling VST on 2021-04-30 00:00:00\n", + "Selling TPL on 2021-04-30 00:00:00\n", + "Selling NCLH on 2021-04-30 00:00:00\n", + "Selling MRNA on 2021-04-30 00:00:00\n", + "Selling PLTR on 2021-04-30 00:00:00\n", + "Selling ENPH on 2021-04-30 00:00:00\n", + "Selling WBD on 2021-04-30 00:00:00\n", + "Selling PARA on 2021-04-30 00:00:00\n", + "Buying KO on 2021-05-31 00:00:00\n", + "Buying JNJ on 2021-05-31 00:00:00\n", + "Buying GRMN on 2021-05-31 00:00:00\n", + "Buying MKC on 2021-05-31 00:00:00\n", + "Buying MDLZ on 2021-05-31 00:00:00\n", + "Buying ICE on 2021-05-31 00:00:00\n", + "Buying APH on 2021-05-31 00:00:00\n", + "Buying BLK on 2021-05-31 00:00:00\n", + "Buying MDT on 2021-05-31 00:00:00\n", + "Buying KDP on 2021-05-31 00:00:00\n", + "Buying LIN on 2021-05-31 00:00:00\n", + "Buying PEP on 2021-05-31 00:00:00\n", + "Buying WMT on 2021-05-31 00:00:00\n", + "Buying ACN on 2021-05-31 00:00:00\n", + "Buying MSFT on 2021-05-31 00:00:00\n", + "Buying MMC on 2021-05-31 00:00:00\n", + "Buying PM on 2021-05-31 00:00:00\n", + "Buying MCD on 2021-05-31 00:00:00\n", + "Buying HSY on 2021-05-31 00:00:00\n", + "Buying CL on 2021-05-31 00:00:00\n", + "Buying A on 2021-05-31 00:00:00\n", + "Buying SO on 2021-05-31 00:00:00\n", + "Buying SYK on 2021-05-31 00:00:00\n", + "Buying FE on 2021-05-31 00:00:00\n", + "Buying CSCO on 2021-05-31 00:00:00\n", + "Buying VZ on 2021-05-31 00:00:00\n", + "Buying LMT on 2021-05-31 00:00:00\n", + "Buying BRK-B on 2021-05-31 00:00:00\n", + "Buying KEYS on 2021-05-31 00:00:00\n", + "Buying BAX on 2021-05-31 00:00:00\n", + "Buying TEL on 2021-05-31 00:00:00\n", + "Buying AEP on 2021-05-31 00:00:00\n", + "Buying ED on 2021-05-31 00:00:00\n", + "Buying COST on 2021-05-31 00:00:00\n", + "Buying PFE on 2021-05-31 00:00:00\n", + "Buying ABT on 2021-05-31 00:00:00\n", + "Buying O on 2021-05-31 00:00:00\n", + "Buying NDAQ on 2021-05-31 00:00:00\n", + "Buying SBUX on 2021-05-31 00:00:00\n", + "Buying ROP on 2021-05-31 00:00:00\n", + "Buying DUK on 2021-05-31 00:00:00\n", + "Buying CPRT on 2021-05-31 00:00:00\n", + "Buying IEX on 2021-05-31 00:00:00\n", + "Buying BRO on 2021-05-31 00:00:00\n", + "Buying IQV on 2021-05-31 00:00:00\n", + "Buying PG on 2021-05-31 00:00:00\n", + "Buying ROK on 2021-05-31 00:00:00\n", + "Buying MCO on 2021-05-31 00:00:00\n", + "Buying YUM on 2021-05-31 00:00:00\n", + "Selling LRCX on 2021-05-31 00:00:00\n", + "Selling STLD on 2021-05-31 00:00:00\n", + "Selling WDC on 2021-05-31 00:00:00\n", + "Selling TPR on 2021-05-31 00:00:00\n", + "Selling NOW on 2021-05-31 00:00:00\n", + "Selling LYV on 2021-05-31 00:00:00\n", + "Selling RL on 2021-05-31 00:00:00\n", + "Selling GE on 2021-05-31 00:00:00\n", + "Selling PTC on 2021-05-31 00:00:00\n", + "Selling STX on 2021-05-31 00:00:00\n", + "Selling EFX on 2021-05-31 00:00:00\n", + "Selling NUE on 2021-05-31 00:00:00\n", + "Selling MGM on 2021-05-31 00:00:00\n", + "Selling VLO on 2021-05-31 00:00:00\n", + "Selling SLB on 2021-05-31 00:00:00\n", + "Selling BKR on 2021-05-31 00:00:00\n", + "Selling LEN on 2021-05-31 00:00:00\n", + "Selling MTCH on 2021-05-31 00:00:00\n", + "Selling EOG on 2021-05-31 00:00:00\n", + "Selling HAL on 2021-05-31 00:00:00\n", + "Selling RCL on 2021-05-31 00:00:00\n", + "Selling UBER on 2021-05-31 00:00:00\n", + "Selling PODD on 2021-05-31 00:00:00\n", + "Selling HES on 2021-05-31 00:00:00\n", + "Selling ALB on 2021-05-31 00:00:00\n", + "Selling CZR on 2021-05-31 00:00:00\n", + "Selling AXON on 2021-05-31 00:00:00\n", + "Selling ABNB on 2021-05-31 00:00:00\n", + "Selling UAL on 2021-05-31 00:00:00\n", + "Selling HIG on 2021-05-31 00:00:00\n", + "Selling NRG on 2021-05-31 00:00:00\n", + "Selling F on 2021-05-31 00:00:00\n", + "Selling CCL on 2021-05-31 00:00:00\n", + "Selling DVN on 2021-05-31 00:00:00\n", + "Selling FSLR on 2021-05-31 00:00:00\n", + "Selling FCX on 2021-05-31 00:00:00\n", + "Selling FANG on 2021-05-31 00:00:00\n", + "Selling CRWD on 2021-05-31 00:00:00\n", + "Selling APA on 2021-05-31 00:00:00\n", + "Selling OXY on 2021-05-31 00:00:00\n", + "Selling NCLH on 2021-05-31 00:00:00\n", + "Selling EQT on 2021-05-31 00:00:00\n", + "Selling PLTR on 2021-05-31 00:00:00\n", + "Selling TSLA on 2021-05-31 00:00:00\n", + "Selling MRNA on 2021-05-31 00:00:00\n", + "Selling TPL on 2021-05-31 00:00:00\n", + "Selling ENPH on 2021-05-31 00:00:00\n", + "Selling WBD on 2021-05-31 00:00:00\n", + "Selling PARA on 2021-05-31 00:00:00\n", + "Buying KO on 2021-06-30 00:00:00\n", + "Buying ACN on 2021-06-30 00:00:00\n", + "Buying MCD on 2021-06-30 00:00:00\n", + "Buying V on 2021-06-30 00:00:00\n", + "Buying APH on 2021-06-30 00:00:00\n", + "Buying WM on 2021-06-30 00:00:00\n", + "Buying PEP on 2021-06-30 00:00:00\n", + "Buying VZ on 2021-06-30 00:00:00\n", + "Buying CSCO on 2021-06-30 00:00:00\n", + "Buying RSG on 2021-06-30 00:00:00\n", + "Buying AME on 2021-06-30 00:00:00\n", + "Buying MDLZ on 2021-06-30 00:00:00\n", + "Buying UNP on 2021-06-30 00:00:00\n", + "Buying GRMN on 2021-06-30 00:00:00\n", + "Buying SBUX on 2021-06-30 00:00:00\n", + "Buying BLK on 2021-06-30 00:00:00\n", + "Buying GOOGL on 2021-06-30 00:00:00\n", + "Buying BRK-B on 2021-06-30 00:00:00\n", + "Buying MSFT on 2021-06-30 00:00:00\n", + "Buying COST on 2021-06-30 00:00:00\n", + "Buying YUM on 2021-06-30 00:00:00\n", + "Buying LMT on 2021-06-30 00:00:00\n", + "Buying PAYX on 2021-06-30 00:00:00\n", + "Buying ETN on 2021-06-30 00:00:00\n", + "Buying IEX on 2021-06-30 00:00:00\n", + "Buying ITW on 2021-06-30 00:00:00\n", + "Buying ROP on 2021-06-30 00:00:00\n", + "Buying GOOG on 2021-06-30 00:00:00\n", + "Buying PM on 2021-06-30 00:00:00\n", + "Buying CL on 2021-06-30 00:00:00\n", + "Buying MKC on 2021-06-30 00:00:00\n", + "Buying FIS on 2021-06-30 00:00:00\n", + "Buying BR on 2021-06-30 00:00:00\n", + "Buying WMT on 2021-06-30 00:00:00\n", + "Buying LIN on 2021-06-30 00:00:00\n", + "Buying TSN on 2021-06-30 00:00:00\n", + "Buying GD on 2021-06-30 00:00:00\n", + "Buying MDT on 2021-06-30 00:00:00\n", + "Buying PPL on 2021-06-30 00:00:00\n", + "Buying JNJ on 2021-06-30 00:00:00\n", + "Buying FE on 2021-06-30 00:00:00\n", + "Buying TEL on 2021-06-30 00:00:00\n", + "Buying MMM on 2021-06-30 00:00:00\n", + "Buying HSY on 2021-06-30 00:00:00\n", + "Buying VRSN on 2021-06-30 00:00:00\n", + "Buying MMC on 2021-06-30 00:00:00\n", + "Buying PSA on 2021-06-30 00:00:00\n", + "Buying CSX on 2021-06-30 00:00:00\n", + "Buying MCO on 2021-06-30 00:00:00\n", + "Selling STLD on 2021-06-30 00:00:00\n", + "Selling NOW on 2021-06-30 00:00:00\n", + "Selling AMD on 2021-06-30 00:00:00\n", + "Selling MGM on 2021-06-30 00:00:00\n", + "Selling IT on 2021-06-30 00:00:00\n", + "Selling GEN on 2021-06-30 00:00:00\n", + "Selling VLO on 2021-06-30 00:00:00\n", + "Selling DECK on 2021-06-30 00:00:00\n", + "Selling LYV on 2021-06-30 00:00:00\n", + "Selling MOS on 2021-06-30 00:00:00\n", + "Selling GNRC on 2021-06-30 00:00:00\n", + "Selling MTCH on 2021-06-30 00:00:00\n", + "Selling CZR on 2021-06-30 00:00:00\n", + "Selling WBD on 2021-06-30 00:00:00\n", + "Selling CTRA on 2021-06-30 00:00:00\n", + "Selling NKE on 2021-06-30 00:00:00\n", + "Selling PODD on 2021-06-30 00:00:00\n", + "Selling RCL on 2021-06-30 00:00:00\n", + "Selling EFX on 2021-06-30 00:00:00\n", + "Selling HES on 2021-06-30 00:00:00\n", + "Selling PARA on 2021-06-30 00:00:00\n", + "Selling STX on 2021-06-30 00:00:00\n", + "Selling TRGP on 2021-06-30 00:00:00\n", + "Selling NUE on 2021-06-30 00:00:00\n", + "Selling AXON on 2021-06-30 00:00:00\n", + "Selling EOG on 2021-06-30 00:00:00\n", + "Selling BKR on 2021-06-30 00:00:00\n", + "Selling UBER on 2021-06-30 00:00:00\n", + "Selling CCL on 2021-06-30 00:00:00\n", + "Selling HAL on 2021-06-30 00:00:00\n", + "Selling ABNB on 2021-06-30 00:00:00\n", + "Selling ALB on 2021-06-30 00:00:00\n", + "Selling FSLR on 2021-06-30 00:00:00\n", + "Selling TSLA on 2021-06-30 00:00:00\n", + "Selling SLB on 2021-06-30 00:00:00\n", + "Selling CRWD on 2021-06-30 00:00:00\n", + "Selling FANG on 2021-06-30 00:00:00\n", + "Selling NCLH on 2021-06-30 00:00:00\n", + "Selling F on 2021-06-30 00:00:00\n", + "Selling TPL on 2021-06-30 00:00:00\n", + "Selling FCX on 2021-06-30 00:00:00\n", + "Selling APA on 2021-06-30 00:00:00\n", + "Selling DVN on 2021-06-30 00:00:00\n", + "Selling MRNA on 2021-06-30 00:00:00\n", + "Selling PLTR on 2021-06-30 00:00:00\n", + "Selling OXY on 2021-06-30 00:00:00\n", + "Selling EQT on 2021-06-30 00:00:00\n", + "Selling ENPH on 2021-06-30 00:00:00\n", + "Selling BIIB on 2021-06-30 00:00:00\n", + "Buying APH on 2021-07-31 00:00:00\n", + "Buying VZ on 2021-07-31 00:00:00\n", + "Buying PAYX on 2021-07-31 00:00:00\n", + "Buying ACN on 2021-07-31 00:00:00\n", + "Buying KO on 2021-07-31 00:00:00\n", + "Buying ADP on 2021-07-31 00:00:00\n", + "Buying OTIS on 2021-07-31 00:00:00\n", + "Buying MCD on 2021-07-31 00:00:00\n", + "Buying JNJ on 2021-07-31 00:00:00\n", + "Buying WM on 2021-07-31 00:00:00\n", + "Buying MDLZ on 2021-07-31 00:00:00\n", + "Buying BR on 2021-07-31 00:00:00\n", + "Buying ECL on 2021-07-31 00:00:00\n", + "Buying GRMN on 2021-07-31 00:00:00\n", + "Buying PEP on 2021-07-31 00:00:00\n", + "Buying ROP on 2021-07-31 00:00:00\n", + "Buying CSCO on 2021-07-31 00:00:00\n", + "Buying MSFT on 2021-07-31 00:00:00\n", + "Buying ITW on 2021-07-31 00:00:00\n", + "Buying AKAM on 2021-07-31 00:00:00\n", + "Buying AME on 2021-07-31 00:00:00\n", + "Buying PSA on 2021-07-31 00:00:00\n", + "Buying GOOG on 2021-07-31 00:00:00\n", + "Buying MMC on 2021-07-31 00:00:00\n", + "Buying TSN on 2021-07-31 00:00:00\n", + "Buying SHW on 2021-07-31 00:00:00\n", + "Buying BRK-B on 2021-07-31 00:00:00\n", + "Buying KEYS on 2021-07-31 00:00:00\n", + "Buying ICE on 2021-07-31 00:00:00\n", + "Buying V on 2021-07-31 00:00:00\n", + "Buying BRO on 2021-07-31 00:00:00\n", + "Buying EL on 2021-07-31 00:00:00\n", + "Buying MCO on 2021-07-31 00:00:00\n", + "Buying STZ on 2021-07-31 00:00:00\n", + "Buying KMB on 2021-07-31 00:00:00\n", + "Buying AJG on 2021-07-31 00:00:00\n", + "Buying CDW on 2021-07-31 00:00:00\n", + "Buying UNH on 2021-07-31 00:00:00\n", + "Buying HSY on 2021-07-31 00:00:00\n", + "Buying RSG on 2021-07-31 00:00:00\n", + "Buying WMT on 2021-07-31 00:00:00\n", + "Buying GD on 2021-07-31 00:00:00\n", + "Buying MMM on 2021-07-31 00:00:00\n", + "Buying AMCR on 2021-07-31 00:00:00\n", + "Buying ETN on 2021-07-31 00:00:00\n", + "Buying A on 2021-07-31 00:00:00\n", + "Buying UDR on 2021-07-31 00:00:00\n", + "Buying SBUX on 2021-07-31 00:00:00\n", + "Buying GOOGL on 2021-07-31 00:00:00\n", + "Selling STLD on 2021-07-31 00:00:00\n", + "Selling KLAC on 2021-07-31 00:00:00\n", + "Selling GNRC on 2021-07-31 00:00:00\n", + "Selling PARA on 2021-07-31 00:00:00\n", + "Selling MGM on 2021-07-31 00:00:00\n", + "Selling DECK on 2021-07-31 00:00:00\n", + "Selling LW on 2021-07-31 00:00:00\n", + "Selling NVDA on 2021-07-31 00:00:00\n", + "Selling VLO on 2021-07-31 00:00:00\n", + "Selling BLDR on 2021-07-31 00:00:00\n", + "Selling FSLR on 2021-07-31 00:00:00\n", + "Selling AMD on 2021-07-31 00:00:00\n", + "Selling HES on 2021-07-31 00:00:00\n", + "Selling DPZ on 2021-07-31 00:00:00\n", + "Selling GEN on 2021-07-31 00:00:00\n", + "Selling MOS on 2021-07-31 00:00:00\n", + "Selling NKE on 2021-07-31 00:00:00\n", + "Selling BKR on 2021-07-31 00:00:00\n", + "Selling LYV on 2021-07-31 00:00:00\n", + "Selling PODD on 2021-07-31 00:00:00\n", + "Selling UBER on 2021-07-31 00:00:00\n", + "Selling TSLA on 2021-07-31 00:00:00\n", + "Selling EOG on 2021-07-31 00:00:00\n", + "Selling NUE on 2021-07-31 00:00:00\n", + "Selling DXCM on 2021-07-31 00:00:00\n", + "Selling HAL on 2021-07-31 00:00:00\n", + "Selling AXON on 2021-07-31 00:00:00\n", + "Selling CTRA on 2021-07-31 00:00:00\n", + "Selling STX on 2021-07-31 00:00:00\n", + "Selling ALB on 2021-07-31 00:00:00\n", + "Selling TRGP on 2021-07-31 00:00:00\n", + "Selling FCX on 2021-07-31 00:00:00\n", + "Selling RCL on 2021-07-31 00:00:00\n", + "Selling SLB on 2021-07-31 00:00:00\n", + "Selling ABNB on 2021-07-31 00:00:00\n", + "Selling F on 2021-07-31 00:00:00\n", + "Selling CRWD on 2021-07-31 00:00:00\n", + "Selling TPL on 2021-07-31 00:00:00\n", + "Selling CCL on 2021-07-31 00:00:00\n", + "Selling APA on 2021-07-31 00:00:00\n", + "Selling FANG on 2021-07-31 00:00:00\n", + "Selling NCLH on 2021-07-31 00:00:00\n", + "Selling DVN on 2021-07-31 00:00:00\n", + "Selling ENPH on 2021-07-31 00:00:00\n", + "Selling PLTR on 2021-07-31 00:00:00\n", + "Selling OXY on 2021-07-31 00:00:00\n", + "Selling MRNA on 2021-07-31 00:00:00\n", + "Selling EQT on 2021-07-31 00:00:00\n", + "Selling BIIB on 2021-07-31 00:00:00\n", + "Buying VZ on 2021-08-31 00:00:00\n", + "Buying APH on 2021-08-31 00:00:00\n", + "Buying T on 2021-08-31 00:00:00\n", + "Buying ACN on 2021-08-31 00:00:00\n", + "Buying PAYX on 2021-08-31 00:00:00\n", + "Buying ECL on 2021-08-31 00:00:00\n", + "Buying ICE on 2021-08-31 00:00:00\n", + "Buying AME on 2021-08-31 00:00:00\n", + "Buying WM on 2021-08-31 00:00:00\n", + "Buying KO on 2021-08-31 00:00:00\n", + "Buying JNJ on 2021-08-31 00:00:00\n", + "Buying BR on 2021-08-31 00:00:00\n", + "Buying ROP on 2021-08-31 00:00:00\n", + "Buying OTIS on 2021-08-31 00:00:00\n", + "Buying GOOG on 2021-08-31 00:00:00\n", + "Buying MCD on 2021-08-31 00:00:00\n", + "Buying ITW on 2021-08-31 00:00:00\n", + "Buying ADP on 2021-08-31 00:00:00\n", + "Buying INTU on 2021-08-31 00:00:00\n", + "Buying MMM on 2021-08-31 00:00:00\n", + "Buying BRK-B on 2021-08-31 00:00:00\n", + "Buying MMC on 2021-08-31 00:00:00\n", + "Buying XYL on 2021-08-31 00:00:00\n", + "Buying BRO on 2021-08-31 00:00:00\n", + "Buying MSFT on 2021-08-31 00:00:00\n", + "Buying MSI on 2021-08-31 00:00:00\n", + "Buying KEYS on 2021-08-31 00:00:00\n", + "Buying PG on 2021-08-31 00:00:00\n", + "Buying GOOGL on 2021-08-31 00:00:00\n", + "Buying COST on 2021-08-31 00:00:00\n", + "Buying PEP on 2021-08-31 00:00:00\n", + "Buying NDSN on 2021-08-31 00:00:00\n", + "Buying MCO on 2021-08-31 00:00:00\n", + "Buying CDW on 2021-08-31 00:00:00\n", + "Buying RSG on 2021-08-31 00:00:00\n", + "Buying O on 2021-08-31 00:00:00\n", + "Buying GD on 2021-08-31 00:00:00\n", + "Buying NDAQ on 2021-08-31 00:00:00\n", + "Buying JCI on 2021-08-31 00:00:00\n", + "Buying CMCSA on 2021-08-31 00:00:00\n", + "Buying HSY on 2021-08-31 00:00:00\n", + "Buying GRMN on 2021-08-31 00:00:00\n", + "Buying WMT on 2021-08-31 00:00:00\n", + "Buying SHW on 2021-08-31 00:00:00\n", + "Buying ABBV on 2021-08-31 00:00:00\n", + "Buying A on 2021-08-31 00:00:00\n", + "Buying PSA on 2021-08-31 00:00:00\n", + "Buying UDR on 2021-08-31 00:00:00\n", + "Buying NOC on 2021-08-31 00:00:00\n", + "Selling GM on 2021-08-31 00:00:00\n", + "Selling TRGP on 2021-08-31 00:00:00\n", + "Selling BIIB on 2021-08-31 00:00:00\n", + "Selling LYV on 2021-08-31 00:00:00\n", + "Selling GNRC on 2021-08-31 00:00:00\n", + "Selling PAYC on 2021-08-31 00:00:00\n", + "Selling UAL on 2021-08-31 00:00:00\n", + "Selling KLAC on 2021-08-31 00:00:00\n", + "Selling MGM on 2021-08-31 00:00:00\n", + "Selling LW on 2021-08-31 00:00:00\n", + "Selling FSLR on 2021-08-31 00:00:00\n", + "Selling TSLA on 2021-08-31 00:00:00\n", + "Selling GDDY on 2021-08-31 00:00:00\n", + "Selling NVDA on 2021-08-31 00:00:00\n", + "Selling MU on 2021-08-31 00:00:00\n", + "Selling TPL on 2021-08-31 00:00:00\n", + "Selling ALB on 2021-08-31 00:00:00\n", + "Selling CAH on 2021-08-31 00:00:00\n", + "Selling PCG on 2021-08-31 00:00:00\n", + "Selling WDC on 2021-08-31 00:00:00\n", + "Selling NKE on 2021-08-31 00:00:00\n", + "Selling MOS on 2021-08-31 00:00:00\n", + "Selling CTRA on 2021-08-31 00:00:00\n", + "Selling DPZ on 2021-08-31 00:00:00\n", + "Selling DXCM on 2021-08-31 00:00:00\n", + "Selling FCX on 2021-08-31 00:00:00\n", + "Selling ABNB on 2021-08-31 00:00:00\n", + "Selling PARA on 2021-08-31 00:00:00\n", + "Selling LVS on 2021-08-31 00:00:00\n", + "Selling STLD on 2021-08-31 00:00:00\n", + "Selling WYNN on 2021-08-31 00:00:00\n", + "Selling HAL on 2021-08-31 00:00:00\n", + "Selling CZR on 2021-08-31 00:00:00\n", + "Selling ON on 2021-08-31 00:00:00\n", + "Selling NUE on 2021-08-31 00:00:00\n", + "Selling RCL on 2021-08-31 00:00:00\n", + "Selling AMD on 2021-08-31 00:00:00\n", + "Selling DVN on 2021-08-31 00:00:00\n", + "Selling CRWD on 2021-08-31 00:00:00\n", + "Selling FANG on 2021-08-31 00:00:00\n", + "Selling APA on 2021-08-31 00:00:00\n", + "Selling PANW on 2021-08-31 00:00:00\n", + "Selling PLTR on 2021-08-31 00:00:00\n", + "Selling ENPH on 2021-08-31 00:00:00\n", + "Selling NCLH on 2021-08-31 00:00:00\n", + "Selling CCL on 2021-08-31 00:00:00\n", + "Selling EQT on 2021-08-31 00:00:00\n", + "Selling OXY on 2021-08-31 00:00:00\n", + "Selling MRNA on 2021-08-31 00:00:00\n", + "Buying VZ on 2021-09-30 00:00:00\n", + "Buying APH on 2021-09-30 00:00:00\n", + "Buying T on 2021-09-30 00:00:00\n", + "Buying WMT on 2021-09-30 00:00:00\n", + "Buying ICE on 2021-09-30 00:00:00\n", + "Buying AME on 2021-09-30 00:00:00\n", + "Buying JNJ on 2021-09-30 00:00:00\n", + "Buying ROP on 2021-09-30 00:00:00\n", + "Buying BRK-B on 2021-09-30 00:00:00\n", + "Buying IBM on 2021-09-30 00:00:00\n", + "Buying ACN on 2021-09-30 00:00:00\n", + "Buying BR on 2021-09-30 00:00:00\n", + "Buying CDW on 2021-09-30 00:00:00\n", + "Buying ECL on 2021-09-30 00:00:00\n", + "Buying KO on 2021-09-30 00:00:00\n", + "Buying WM on 2021-09-30 00:00:00\n", + "Buying NDAQ on 2021-09-30 00:00:00\n", + "Buying MMC on 2021-09-30 00:00:00\n", + "Buying MCD on 2021-09-30 00:00:00\n", + "Buying MSI on 2021-09-30 00:00:00\n", + "Buying PG on 2021-09-30 00:00:00\n", + "Buying NDSN on 2021-09-30 00:00:00\n", + "Buying XYL on 2021-09-30 00:00:00\n", + "Buying GOOG on 2021-09-30 00:00:00\n", + "Buying PEP on 2021-09-30 00:00:00\n", + "Buying MSFT on 2021-09-30 00:00:00\n", + "Buying AVGO on 2021-09-30 00:00:00\n", + "Buying ROK on 2021-09-30 00:00:00\n", + "Buying MCO on 2021-09-30 00:00:00\n", + "Buying GD on 2021-09-30 00:00:00\n", + "Buying SO on 2021-09-30 00:00:00\n", + "Buying EXC on 2021-09-30 00:00:00\n", + "Buying CSCO on 2021-09-30 00:00:00\n", + "Buying BRO on 2021-09-30 00:00:00\n", + "Buying ITW on 2021-09-30 00:00:00\n", + "Buying JCI on 2021-09-30 00:00:00\n", + "Buying LIN on 2021-09-30 00:00:00\n", + "Buying AIZ on 2021-09-30 00:00:00\n", + "Buying KEYS on 2021-09-30 00:00:00\n", + "Buying RSG on 2021-09-30 00:00:00\n", + "Buying FAST on 2021-09-30 00:00:00\n", + "Buying NOC on 2021-09-30 00:00:00\n", + "Buying GOOGL on 2021-09-30 00:00:00\n", + "Buying BMY on 2021-09-30 00:00:00\n", + "Buying ADP on 2021-09-30 00:00:00\n", + "Buying EL on 2021-09-30 00:00:00\n", + "Buying HSY on 2021-09-30 00:00:00\n", + "Buying VRSK on 2021-09-30 00:00:00\n", + "Buying UNP on 2021-09-30 00:00:00\n", + "Selling MOH on 2021-09-30 00:00:00\n", + "Selling PARA on 2021-09-30 00:00:00\n", + "Selling KMX on 2021-09-30 00:00:00\n", + "Selling DAL on 2021-09-30 00:00:00\n", + "Selling KLAC on 2021-09-30 00:00:00\n", + "Selling CAH on 2021-09-30 00:00:00\n", + "Selling LW on 2021-09-30 00:00:00\n", + "Selling UAL on 2021-09-30 00:00:00\n", + "Selling MGM on 2021-09-30 00:00:00\n", + "Selling VLO on 2021-09-30 00:00:00\n", + "Selling ALB on 2021-09-30 00:00:00\n", + "Selling EOG on 2021-09-30 00:00:00\n", + "Selling EXPE on 2021-09-30 00:00:00\n", + "Selling SLB on 2021-09-30 00:00:00\n", + "Selling DPZ on 2021-09-30 00:00:00\n", + "Selling HES on 2021-09-30 00:00:00\n", + "Selling ABNB on 2021-09-30 00:00:00\n", + "Selling WDC on 2021-09-30 00:00:00\n", + "Selling STLD on 2021-09-30 00:00:00\n", + "Selling GPN on 2021-09-30 00:00:00\n", + "Selling DXCM on 2021-09-30 00:00:00\n", + "Selling PCG on 2021-09-30 00:00:00\n", + "Selling FSLR on 2021-09-30 00:00:00\n", + "Selling CZR on 2021-09-30 00:00:00\n", + "Selling HAL on 2021-09-30 00:00:00\n", + "Selling TPL on 2021-09-30 00:00:00\n", + "Selling RCL on 2021-09-30 00:00:00\n", + "Selling AMD on 2021-09-30 00:00:00\n", + "Selling CRWD on 2021-09-30 00:00:00\n", + "Selling ON on 2021-09-30 00:00:00\n", + "Selling UBER on 2021-09-30 00:00:00\n", + "Selling NUE on 2021-09-30 00:00:00\n", + "Selling MTCH on 2021-09-30 00:00:00\n", + "Selling ENPH on 2021-09-30 00:00:00\n", + "Selling FCX on 2021-09-30 00:00:00\n", + "Selling CTRA on 2021-09-30 00:00:00\n", + "Selling DVN on 2021-09-30 00:00:00\n", + "Selling PANW on 2021-09-30 00:00:00\n", + "Selling LVS on 2021-09-30 00:00:00\n", + "Selling FANG on 2021-09-30 00:00:00\n", + "Selling DLTR on 2021-09-30 00:00:00\n", + "Selling NCLH on 2021-09-30 00:00:00\n", + "Selling CCL on 2021-09-30 00:00:00\n", + "Selling APA on 2021-09-30 00:00:00\n", + "Selling WYNN on 2021-09-30 00:00:00\n", + "Selling OXY on 2021-09-30 00:00:00\n", + "Selling PLTR on 2021-09-30 00:00:00\n", + "Selling EQT on 2021-09-30 00:00:00\n", + "Selling MRNA on 2021-09-30 00:00:00\n", + "Buying BRK-B on 2021-10-31 00:00:00\n", + "Buying AME on 2021-10-31 00:00:00\n", + "Buying VZ on 2021-10-31 00:00:00\n", + "Buying ROP on 2021-10-31 00:00:00\n", + "Buying LIN on 2021-10-31 00:00:00\n", + "Buying MMC on 2021-10-31 00:00:00\n", + "Buying YUM on 2021-10-31 00:00:00\n", + "Buying PG on 2021-10-31 00:00:00\n", + "Buying KO on 2021-10-31 00:00:00\n", + "Buying APH on 2021-10-31 00:00:00\n", + "Buying HON on 2021-10-31 00:00:00\n", + "Buying ROK on 2021-10-31 00:00:00\n", + "Buying PEP on 2021-10-31 00:00:00\n", + "Buying ACN on 2021-10-31 00:00:00\n", + "Buying JNJ on 2021-10-31 00:00:00\n", + "Buying WMT on 2021-10-31 00:00:00\n", + "Buying AVGO on 2021-10-31 00:00:00\n", + "Buying MCD on 2021-10-31 00:00:00\n", + "Buying CL on 2021-10-31 00:00:00\n", + "Buying VRSK on 2021-10-31 00:00:00\n", + "Buying AIZ on 2021-10-31 00:00:00\n", + "Buying CTAS on 2021-10-31 00:00:00\n", + "Buying CTSH on 2021-10-31 00:00:00\n", + "Buying GD on 2021-10-31 00:00:00\n", + "Buying DOV on 2021-10-31 00:00:00\n", + "Buying NDSN on 2021-10-31 00:00:00\n", + "Buying KEYS on 2021-10-31 00:00:00\n", + "Buying AKAM on 2021-10-31 00:00:00\n", + "Buying DTE on 2021-10-31 00:00:00\n", + "Buying ITW on 2021-10-31 00:00:00\n", + "Buying EMR on 2021-10-31 00:00:00\n", + "Buying SO on 2021-10-31 00:00:00\n", + "Buying MDLZ on 2021-10-31 00:00:00\n", + "Buying FTV on 2021-10-31 00:00:00\n", + "Buying AAPL on 2021-10-31 00:00:00\n", + "Buying T on 2021-10-31 00:00:00\n", + "Buying JCI on 2021-10-31 00:00:00\n", + "Buying AON on 2021-10-31 00:00:00\n", + "Buying CSCO on 2021-10-31 00:00:00\n", + "Buying PPL on 2021-10-31 00:00:00\n", + "Buying WM on 2021-10-31 00:00:00\n", + "Buying TRV on 2021-10-31 00:00:00\n", + "Buying BR on 2021-10-31 00:00:00\n", + "Buying NI on 2021-10-31 00:00:00\n", + "Buying LH on 2021-10-31 00:00:00\n", + "Buying BLK on 2021-10-31 00:00:00\n", + "Buying TEL on 2021-10-31 00:00:00\n", + "Buying ADP on 2021-10-31 00:00:00\n", + "Buying MMM on 2021-10-31 00:00:00\n", + "Selling ULTA on 2021-10-31 00:00:00\n", + "Selling MHK on 2021-10-31 00:00:00\n", + "Selling VLO on 2021-10-31 00:00:00\n", + "Selling PSX on 2021-10-31 00:00:00\n", + "Selling TER on 2021-10-31 00:00:00\n", + "Selling MOS on 2021-10-31 00:00:00\n", + "Selling KMX on 2021-10-31 00:00:00\n", + "Selling UAL on 2021-10-31 00:00:00\n", + "Selling LULU on 2021-10-31 00:00:00\n", + "Selling VST on 2021-10-31 00:00:00\n", + "Selling PCG on 2021-10-31 00:00:00\n", + "Selling STX on 2021-10-31 00:00:00\n", + "Selling BKR on 2021-10-31 00:00:00\n", + "Selling F on 2021-10-31 00:00:00\n", + "Selling EBAY on 2021-10-31 00:00:00\n", + "Selling SLB on 2021-10-31 00:00:00\n", + "Selling EOG on 2021-10-31 00:00:00\n", + "Selling MGM on 2021-10-31 00:00:00\n", + "Selling ABNB on 2021-10-31 00:00:00\n", + "Selling CF on 2021-10-31 00:00:00\n", + "Selling CZR on 2021-10-31 00:00:00\n", + "Selling NCLH on 2021-10-31 00:00:00\n", + "Selling TPL on 2021-10-31 00:00:00\n", + "Selling TSLA on 2021-10-31 00:00:00\n", + "Selling FSLR on 2021-10-31 00:00:00\n", + "Selling DECK on 2021-10-31 00:00:00\n", + "Selling STLD on 2021-10-31 00:00:00\n", + "Selling HES on 2021-10-31 00:00:00\n", + "Selling CCL on 2021-10-31 00:00:00\n", + "Selling HAL on 2021-10-31 00:00:00\n", + "Selling WDC on 2021-10-31 00:00:00\n", + "Selling UBER on 2021-10-31 00:00:00\n", + "Selling CRWD on 2021-10-31 00:00:00\n", + "Selling NUE on 2021-10-31 00:00:00\n", + "Selling CTRA on 2021-10-31 00:00:00\n", + "Selling LVS on 2021-10-31 00:00:00\n", + "Selling FANG on 2021-10-31 00:00:00\n", + "Selling FCX on 2021-10-31 00:00:00\n", + "Selling WYNN on 2021-10-31 00:00:00\n", + "Selling MTCH on 2021-10-31 00:00:00\n", + "Selling DVN on 2021-10-31 00:00:00\n", + "Selling PANW on 2021-10-31 00:00:00\n", + "Selling PLTR on 2021-10-31 00:00:00\n", + "Selling DLTR on 2021-10-31 00:00:00\n", + "Selling OXY on 2021-10-31 00:00:00\n", + "Selling APA on 2021-10-31 00:00:00\n", + "Selling EQT on 2021-10-31 00:00:00\n", + "Selling ENPH on 2021-10-31 00:00:00\n", + "Selling MRNA on 2021-10-31 00:00:00\n", + "Buying BRK-B on 2021-11-30 00:00:00\n", + "Buying CTSH on 2021-11-30 00:00:00\n", + "Buying YUM on 2021-11-30 00:00:00\n", + "Buying LIN on 2021-11-30 00:00:00\n", + "Buying PG on 2021-11-30 00:00:00\n", + "Buying PPL on 2021-11-30 00:00:00\n", + "Buying HON on 2021-11-30 00:00:00\n", + "Buying JNJ on 2021-11-30 00:00:00\n", + "Buying KO on 2021-11-30 00:00:00\n", + "Buying PEP on 2021-11-30 00:00:00\n", + "Buying MMC on 2021-11-30 00:00:00\n", + "Buying ACN on 2021-11-30 00:00:00\n", + "Buying APH on 2021-11-30 00:00:00\n", + "Buying VZ on 2021-11-30 00:00:00\n", + "Buying AVGO on 2021-11-30 00:00:00\n", + "Buying CTAS on 2021-11-30 00:00:00\n", + "Buying CL on 2021-11-30 00:00:00\n", + "Buying AME on 2021-11-30 00:00:00\n", + "Buying MCD on 2021-11-30 00:00:00\n", + "Buying WMT on 2021-11-30 00:00:00\n", + "Buying ADP on 2021-11-30 00:00:00\n", + "Buying CME on 2021-11-30 00:00:00\n", + "Buying ITW on 2021-11-30 00:00:00\n", + "Buying VRSK on 2021-11-30 00:00:00\n", + "Buying NDSN on 2021-11-30 00:00:00\n", + "Buying FTV on 2021-11-30 00:00:00\n", + "Buying SO on 2021-11-30 00:00:00\n", + "Buying AIZ on 2021-11-30 00:00:00\n", + "Buying AMCR on 2021-11-30 00:00:00\n", + "Buying MDLZ on 2021-11-30 00:00:00\n", + "Buying ROP on 2021-11-30 00:00:00\n", + "Buying GD on 2021-11-30 00:00:00\n", + "Buying DTE on 2021-11-30 00:00:00\n", + "Buying IEX on 2021-11-30 00:00:00\n", + "Buying MKC on 2021-11-30 00:00:00\n", + "Buying HRL on 2021-11-30 00:00:00\n", + "Buying FAST on 2021-11-30 00:00:00\n", + "Buying MSFT on 2021-11-30 00:00:00\n", + "Buying DOV on 2021-11-30 00:00:00\n", + "Buying AMP on 2021-11-30 00:00:00\n", + "Buying LOW on 2021-11-30 00:00:00\n", + "Buying NI on 2021-11-30 00:00:00\n", + "Buying ARE on 2021-11-30 00:00:00\n", + "Buying WM on 2021-11-30 00:00:00\n", + "Buying HUBB on 2021-11-30 00:00:00\n", + "Buying BLK on 2021-11-30 00:00:00\n", + "Buying MMM on 2021-11-30 00:00:00\n", + "Buying HSY on 2021-11-30 00:00:00\n", + "Buying APD on 2021-11-30 00:00:00\n", + "Selling GNRC on 2021-11-30 00:00:00\n", + "Selling VST on 2021-11-30 00:00:00\n", + "Selling DAL on 2021-11-30 00:00:00\n", + "Selling INCY on 2021-11-30 00:00:00\n", + "Selling GPN on 2021-11-30 00:00:00\n", + "Selling HAL on 2021-11-30 00:00:00\n", + "Selling SLB on 2021-11-30 00:00:00\n", + "Selling BBY on 2021-11-30 00:00:00\n", + "Selling NUE on 2021-11-30 00:00:00\n", + "Selling STLD on 2021-11-30 00:00:00\n", + "Selling MOS on 2021-11-30 00:00:00\n", + "Selling MRK on 2021-11-30 00:00:00\n", + "Selling F on 2021-11-30 00:00:00\n", + "Selling AMD on 2021-11-30 00:00:00\n", + "Selling EOG on 2021-11-30 00:00:00\n", + "Selling UAL on 2021-11-30 00:00:00\n", + "Selling ADSK on 2021-11-30 00:00:00\n", + "Selling MGM on 2021-11-30 00:00:00\n", + "Selling ON on 2021-11-30 00:00:00\n", + "Selling DECK on 2021-11-30 00:00:00\n", + "Selling NVDA on 2021-11-30 00:00:00\n", + "Selling CCL on 2021-11-30 00:00:00\n", + "Selling RCL on 2021-11-30 00:00:00\n", + "Selling HES on 2021-11-30 00:00:00\n", + "Selling CTRA on 2021-11-30 00:00:00\n", + "Selling FSLR on 2021-11-30 00:00:00\n", + "Selling NCLH on 2021-11-30 00:00:00\n", + "Selling FANG on 2021-11-30 00:00:00\n", + "Selling PLTR on 2021-11-30 00:00:00\n", + "Selling MTCH on 2021-11-30 00:00:00\n", + "Selling DVN on 2021-11-30 00:00:00\n", + "Selling SMCI on 2021-11-30 00:00:00\n", + "Selling UBER on 2021-11-30 00:00:00\n", + "Selling TPL on 2021-11-30 00:00:00\n", + "Selling LYV on 2021-11-30 00:00:00\n", + "Selling ABNB on 2021-11-30 00:00:00\n", + "Selling OXY on 2021-11-30 00:00:00\n", + "Selling CRWD on 2021-11-30 00:00:00\n", + "Selling ANET on 2021-11-30 00:00:00\n", + "Selling EXPE on 2021-11-30 00:00:00\n", + "Selling FCX on 2021-11-30 00:00:00\n", + "Selling LVS on 2021-11-30 00:00:00\n", + "Selling WYNN on 2021-11-30 00:00:00\n", + "Selling APA on 2021-11-30 00:00:00\n", + "Selling TSLA on 2021-11-30 00:00:00\n", + "Selling EQT on 2021-11-30 00:00:00\n", + "Selling DLTR on 2021-11-30 00:00:00\n", + "Selling ENPH on 2021-11-30 00:00:00\n", + "Selling MRNA on 2021-11-30 00:00:00\n", + "Buying LIN on 2021-12-31 00:00:00\n", + "Buying MMC on 2021-12-31 00:00:00\n", + "Buying ITW on 2021-12-31 00:00:00\n", + "Buying PPL on 2021-12-31 00:00:00\n", + "Buying ADP on 2021-12-31 00:00:00\n", + "Buying BRK-B on 2021-12-31 00:00:00\n", + "Buying ARE on 2021-12-31 00:00:00\n", + "Buying YUM on 2021-12-31 00:00:00\n", + "Buying APH on 2021-12-31 00:00:00\n", + "Buying FTV on 2021-12-31 00:00:00\n", + "Buying ICE on 2021-12-31 00:00:00\n", + "Buying CME on 2021-12-31 00:00:00\n", + "Buying CTSH on 2021-12-31 00:00:00\n", + "Buying STZ on 2021-12-31 00:00:00\n", + "Buying MCD on 2021-12-31 00:00:00\n", + "Buying CTAS on 2021-12-31 00:00:00\n", + "Buying AMCR on 2021-12-31 00:00:00\n", + "Buying AMP on 2021-12-31 00:00:00\n", + "Buying PEP on 2021-12-31 00:00:00\n", + "Buying ZTS on 2021-12-31 00:00:00\n", + "Buying AME on 2021-12-31 00:00:00\n", + "Buying DOV on 2021-12-31 00:00:00\n", + "Buying HON on 2021-12-31 00:00:00\n", + "Buying PG on 2021-12-31 00:00:00\n", + "Buying PAYX on 2021-12-31 00:00:00\n", + "Buying UNP on 2021-12-31 00:00:00\n", + "Buying LOW on 2021-12-31 00:00:00\n", + "Buying EXC on 2021-12-31 00:00:00\n", + "Buying HSY on 2021-12-31 00:00:00\n", + "Buying FAST on 2021-12-31 00:00:00\n", + "Buying HUBB on 2021-12-31 00:00:00\n", + "Buying AIZ on 2021-12-31 00:00:00\n", + "Buying VRSK on 2021-12-31 00:00:00\n", + "Buying NI on 2021-12-31 00:00:00\n", + "Buying FDS on 2021-12-31 00:00:00\n", + "Buying AJG on 2021-12-31 00:00:00\n", + "Buying MMM on 2021-12-31 00:00:00\n", + "Buying DTE on 2021-12-31 00:00:00\n", + "Buying MDLZ on 2021-12-31 00:00:00\n", + "Buying KO on 2021-12-31 00:00:00\n", + "Buying CSX on 2021-12-31 00:00:00\n", + "Buying AEP on 2021-12-31 00:00:00\n", + "Buying APD on 2021-12-31 00:00:00\n", + "Buying DUK on 2021-12-31 00:00:00\n", + "Buying SO on 2021-12-31 00:00:00\n", + "Buying GD on 2021-12-31 00:00:00\n", + "Buying BLK on 2021-12-31 00:00:00\n", + "Buying J on 2021-12-31 00:00:00\n", + "Buying EVRG on 2021-12-31 00:00:00\n", + "Selling DECK on 2021-12-31 00:00:00\n", + "Selling OXY on 2021-12-31 00:00:00\n", + "Selling QCOM on 2021-12-31 00:00:00\n", + "Selling BBY on 2021-12-31 00:00:00\n", + "Selling TPL on 2021-12-31 00:00:00\n", + "Selling GDDY on 2021-12-31 00:00:00\n", + "Selling GPN on 2021-12-31 00:00:00\n", + "Selling MTCH on 2021-12-31 00:00:00\n", + "Selling STLD on 2021-12-31 00:00:00\n", + "Selling KR on 2021-12-31 00:00:00\n", + "Selling WDC on 2021-12-31 00:00:00\n", + "Selling WBD on 2021-12-31 00:00:00\n", + "Selling ORCL on 2021-12-31 00:00:00\n", + "Selling GNRC on 2021-12-31 00:00:00\n", + "Selling FSLR on 2021-12-31 00:00:00\n", + "Selling PFE on 2021-12-31 00:00:00\n", + "Selling FCX on 2021-12-31 00:00:00\n", + "Selling APA on 2021-12-31 00:00:00\n", + "Selling DXCM on 2021-12-31 00:00:00\n", + "Selling ADSK on 2021-12-31 00:00:00\n", + "Selling DAL on 2021-12-31 00:00:00\n", + "Selling DLTR on 2021-12-31 00:00:00\n", + "Selling F on 2021-12-31 00:00:00\n", + "Selling PLTR on 2021-12-31 00:00:00\n", + "Selling MGM on 2021-12-31 00:00:00\n", + "Selling AXON on 2021-12-31 00:00:00\n", + "Selling CZR on 2021-12-31 00:00:00\n", + "Selling UAL on 2021-12-31 00:00:00\n", + "Selling WYNN on 2021-12-31 00:00:00\n", + "Selling NUE on 2021-12-31 00:00:00\n", + "Selling ON on 2021-12-31 00:00:00\n", + "Selling AMD on 2021-12-31 00:00:00\n", + "Selling UBER on 2021-12-31 00:00:00\n", + "Selling SMCI on 2021-12-31 00:00:00\n", + "Selling NVDA on 2021-12-31 00:00:00\n", + "Selling LVS on 2021-12-31 00:00:00\n", + "Selling EQT on 2021-12-31 00:00:00\n", + "Selling LYV on 2021-12-31 00:00:00\n", + "Selling ABNB on 2021-12-31 00:00:00\n", + "Selling RCL on 2021-12-31 00:00:00\n", + "Selling EPAM on 2021-12-31 00:00:00\n", + "Selling CCL on 2021-12-31 00:00:00\n", + "Selling EXPE on 2021-12-31 00:00:00\n", + "Selling ANET on 2021-12-31 00:00:00\n", + "Selling CRWD on 2021-12-31 00:00:00\n", + "Selling NCLH on 2021-12-31 00:00:00\n", + "Selling TSLA on 2021-12-31 00:00:00\n", + "Selling ENPH on 2021-12-31 00:00:00\n", + "Selling MRNA on 2021-12-31 00:00:00\n", + "Buying PPL on 2022-01-31 00:00:00\n", + "Buying GOOG on 2022-01-31 00:00:00\n", + "Buying GOOGL on 2022-01-31 00:00:00\n", + "Buying MCD on 2022-01-31 00:00:00\n", + "Buying ICE on 2022-01-31 00:00:00\n", + "Buying APH on 2022-01-31 00:00:00\n", + "Buying PEP on 2022-01-31 00:00:00\n", + "Buying WTW on 2022-01-31 00:00:00\n", + "Buying TDY on 2022-01-31 00:00:00\n", + "Buying HSY on 2022-01-31 00:00:00\n", + "Buying ITW on 2022-01-31 00:00:00\n", + "Buying LIN on 2022-01-31 00:00:00\n", + "Buying DTE on 2022-01-31 00:00:00\n", + "Buying CTSH on 2022-01-31 00:00:00\n", + "Buying AME on 2022-01-31 00:00:00\n", + "Buying FE on 2022-01-31 00:00:00\n", + "Buying AIZ on 2022-01-31 00:00:00\n", + "Buying AMCR on 2022-01-31 00:00:00\n", + "Buying SO on 2022-01-31 00:00:00\n", + "Buying STZ on 2022-01-31 00:00:00\n", + "Buying KO on 2022-01-31 00:00:00\n", + "Buying BRK-B on 2022-01-31 00:00:00\n", + "Buying AEP on 2022-01-31 00:00:00\n", + "Buying EXC on 2022-01-31 00:00:00\n", + "Buying GILD on 2022-01-31 00:00:00\n", + "Buying BRO on 2022-01-31 00:00:00\n", + "Buying CME on 2022-01-31 00:00:00\n", + "Buying AJG on 2022-01-31 00:00:00\n", + "Buying GD on 2022-01-31 00:00:00\n", + "Buying LMT on 2022-01-31 00:00:00\n", + "Buying CNP on 2022-01-31 00:00:00\n", + "Buying VRSN on 2022-01-31 00:00:00\n", + "Buying KDP on 2022-01-31 00:00:00\n", + "Buying WM on 2022-01-31 00:00:00\n", + "Buying DUK on 2022-01-31 00:00:00\n", + "Buying ABBV on 2022-01-31 00:00:00\n", + "Buying HON on 2022-01-31 00:00:00\n", + "Buying EVRG on 2022-01-31 00:00:00\n", + "Buying BLK on 2022-01-31 00:00:00\n", + "Buying AMGN on 2022-01-31 00:00:00\n", + "Buying EIX on 2022-01-31 00:00:00\n", + "Buying ETN on 2022-01-31 00:00:00\n", + "Buying APD on 2022-01-31 00:00:00\n", + "Buying JNJ on 2022-01-31 00:00:00\n", + "Buying SPGI on 2022-01-31 00:00:00\n", + "Buying PEG on 2022-01-31 00:00:00\n", + "Buying YUM on 2022-01-31 00:00:00\n", + "Buying PG on 2022-01-31 00:00:00\n", + "Buying GWW on 2022-01-31 00:00:00\n", + "Selling ON on 2022-01-31 00:00:00\n", + "Selling HES on 2022-01-31 00:00:00\n", + "Selling GM on 2022-01-31 00:00:00\n", + "Selling FCX on 2022-01-31 00:00:00\n", + "Selling WDC on 2022-01-31 00:00:00\n", + "Selling SMCI on 2022-01-31 00:00:00\n", + "Selling FTNT on 2022-01-31 00:00:00\n", + "Selling NOW on 2022-01-31 00:00:00\n", + "Selling STLD on 2022-01-31 00:00:00\n", + "Selling ADSK on 2022-01-31 00:00:00\n", + "Selling EQT on 2022-01-31 00:00:00\n", + "Selling PLTR on 2022-01-31 00:00:00\n", + "Selling FANG on 2022-01-31 00:00:00\n", + "Selling DAL on 2022-01-31 00:00:00\n", + "Selling DVN on 2022-01-31 00:00:00\n", + "Selling KR on 2022-01-31 00:00:00\n", + "Selling AXON on 2022-01-31 00:00:00\n", + "Selling PARA on 2022-01-31 00:00:00\n", + "Selling PFE on 2022-01-31 00:00:00\n", + "Selling FICO on 2022-01-31 00:00:00\n", + "Selling DLTR on 2022-01-31 00:00:00\n", + "Selling UBER on 2022-01-31 00:00:00\n", + "Selling NVDA on 2022-01-31 00:00:00\n", + "Selling UAL on 2022-01-31 00:00:00\n", + "Selling WYNN on 2022-01-31 00:00:00\n", + "Selling F on 2022-01-31 00:00:00\n", + "Selling LYV on 2022-01-31 00:00:00\n", + "Selling HUM on 2022-01-31 00:00:00\n", + "Selling TTWO on 2022-01-31 00:00:00\n", + "Selling OXY on 2022-01-31 00:00:00\n", + "Selling CZR on 2022-01-31 00:00:00\n", + "Selling AMD on 2022-01-31 00:00:00\n", + "Selling PODD on 2022-01-31 00:00:00\n", + "Selling APA on 2022-01-31 00:00:00\n", + "Selling ENPH on 2022-01-31 00:00:00\n", + "Selling NUE on 2022-01-31 00:00:00\n", + "Selling EXPE on 2022-01-31 00:00:00\n", + "Selling ABNB on 2022-01-31 00:00:00\n", + "Selling EPAM on 2022-01-31 00:00:00\n", + "Selling CRWD on 2022-01-31 00:00:00\n", + "Selling CCL on 2022-01-31 00:00:00\n", + "Selling TER on 2022-01-31 00:00:00\n", + "Selling RCL on 2022-01-31 00:00:00\n", + "Selling NFLX on 2022-01-31 00:00:00\n", + "Selling LVS on 2022-01-31 00:00:00\n", + "Selling NCLH on 2022-01-31 00:00:00\n", + "Selling WBD on 2022-01-31 00:00:00\n", + "Selling TSLA on 2022-01-31 00:00:00\n", + "Selling MRNA on 2022-01-31 00:00:00\n", + "Buying APH on 2022-02-28 00:00:00\n", + "Buying MCD on 2022-02-28 00:00:00\n", + "Buying TDY on 2022-02-28 00:00:00\n", + "Buying VICI on 2022-02-28 00:00:00\n", + "Buying WM on 2022-02-28 00:00:00\n", + "Buying ACGL on 2022-02-28 00:00:00\n", + "Buying ICE on 2022-02-28 00:00:00\n", + "Buying AJG on 2022-02-28 00:00:00\n", + "Buying AEE on 2022-02-28 00:00:00\n", + "Buying BRO on 2022-02-28 00:00:00\n", + "Buying GD on 2022-02-28 00:00:00\n", + "Buying BRK-B on 2022-02-28 00:00:00\n", + "Buying O on 2022-02-28 00:00:00\n", + "Buying FE on 2022-02-28 00:00:00\n", + "Buying CTSH on 2022-02-28 00:00:00\n", + "Buying PEP on 2022-02-28 00:00:00\n", + "Buying ABBV on 2022-02-28 00:00:00\n", + "Buying MMC on 2022-02-28 00:00:00\n", + "Buying DOV on 2022-02-28 00:00:00\n", + "Buying BLK on 2022-02-28 00:00:00\n", + "Buying AME on 2022-02-28 00:00:00\n", + "Buying DTE on 2022-02-28 00:00:00\n", + "Buying EVRG on 2022-02-28 00:00:00\n", + "Buying AEP on 2022-02-28 00:00:00\n", + "Buying AAPL on 2022-02-28 00:00:00\n", + "Buying COR on 2022-02-28 00:00:00\n", + "Buying HUBB on 2022-02-28 00:00:00\n", + "Buying PEG on 2022-02-28 00:00:00\n", + "Buying AMCR on 2022-02-28 00:00:00\n", + "Buying AVB on 2022-02-28 00:00:00\n", + "Buying VRSN on 2022-02-28 00:00:00\n", + "Buying SPGI on 2022-02-28 00:00:00\n", + "Buying UDR on 2022-02-28 00:00:00\n", + "Buying RSG on 2022-02-28 00:00:00\n", + "Buying WTW on 2022-02-28 00:00:00\n", + "Buying XEL on 2022-02-28 00:00:00\n", + "Buying GILD on 2022-02-28 00:00:00\n", + "Buying KO on 2022-02-28 00:00:00\n", + "Buying L on 2022-02-28 00:00:00\n", + "Buying FDS on 2022-02-28 00:00:00\n", + "Buying JCI on 2022-02-28 00:00:00\n", + "Buying CNP on 2022-02-28 00:00:00\n", + "Buying CMS on 2022-02-28 00:00:00\n", + "Buying SRE on 2022-02-28 00:00:00\n", + "Buying PAYX on 2022-02-28 00:00:00\n", + "Buying NI on 2022-02-28 00:00:00\n", + "Buying MDLZ on 2022-02-28 00:00:00\n", + "Buying D on 2022-02-28 00:00:00\n", + "Buying CSX on 2022-02-28 00:00:00\n", + "Selling DXCM on 2022-02-28 00:00:00\n", + "Selling WYNN on 2022-02-28 00:00:00\n", + "Selling STLD on 2022-02-28 00:00:00\n", + "Selling EQT on 2022-02-28 00:00:00\n", + "Selling CLX on 2022-02-28 00:00:00\n", + "Selling AXON on 2022-02-28 00:00:00\n", + "Selling NOW on 2022-02-28 00:00:00\n", + "Selling CSGP on 2022-02-28 00:00:00\n", + "Selling UAL on 2022-02-28 00:00:00\n", + "Selling KR on 2022-02-28 00:00:00\n", + "Selling AMD on 2022-02-28 00:00:00\n", + "Selling CTRA on 2022-02-28 00:00:00\n", + "Selling MPWR on 2022-02-28 00:00:00\n", + "Selling FANG on 2022-02-28 00:00:00\n", + "Selling ON on 2022-02-28 00:00:00\n", + "Selling FTNT on 2022-02-28 00:00:00\n", + "Selling PANW on 2022-02-28 00:00:00\n", + "Selling CF on 2022-02-28 00:00:00\n", + "Selling TTWO on 2022-02-28 00:00:00\n", + "Selling APA on 2022-02-28 00:00:00\n", + "Selling ALB on 2022-02-28 00:00:00\n", + "Selling TPL on 2022-02-28 00:00:00\n", + "Selling DVN on 2022-02-28 00:00:00\n", + "Selling UBER on 2022-02-28 00:00:00\n", + "Selling PODD on 2022-02-28 00:00:00\n", + "Selling F on 2022-02-28 00:00:00\n", + "Selling ABNB on 2022-02-28 00:00:00\n", + "Selling RCL on 2022-02-28 00:00:00\n", + "Selling NUE on 2022-02-28 00:00:00\n", + "Selling HUM on 2022-02-28 00:00:00\n", + "Selling CZR on 2022-02-28 00:00:00\n", + "Selling LVS on 2022-02-28 00:00:00\n", + "Selling CRWD on 2022-02-28 00:00:00\n", + "Selling GNRC on 2022-02-28 00:00:00\n", + "Selling CCL on 2022-02-28 00:00:00\n", + "Selling META on 2022-02-28 00:00:00\n", + "Selling TER on 2022-02-28 00:00:00\n", + "Selling PLTR on 2022-02-28 00:00:00\n", + "Selling OXY on 2022-02-28 00:00:00\n", + "Selling NCLH on 2022-02-28 00:00:00\n", + "Selling VTRS on 2022-02-28 00:00:00\n", + "Selling NFLX on 2022-02-28 00:00:00\n", + "Selling TSLA on 2022-02-28 00:00:00\n", + "Selling ENPH on 2022-02-28 00:00:00\n", + "Selling PARA on 2022-02-28 00:00:00\n", + "Selling PYPL on 2022-02-28 00:00:00\n", + "Selling WBD on 2022-02-28 00:00:00\n", + "Selling MRNA on 2022-02-28 00:00:00\n", + "Selling EPAM on 2022-02-28 00:00:00\n", + "Buying APH on 2022-03-31 00:00:00\n", + "Buying MMC on 2022-03-31 00:00:00\n", + "Buying NDAQ on 2022-03-31 00:00:00\n", + "Buying AME on 2022-03-31 00:00:00\n", + "Buying O on 2022-03-31 00:00:00\n", + "Buying ABBV on 2022-03-31 00:00:00\n", + "Buying AAPL on 2022-03-31 00:00:00\n", + "Buying CMCSA on 2022-03-31 00:00:00\n", + "Buying AJG on 2022-03-31 00:00:00\n", + "Buying CTSH on 2022-03-31 00:00:00\n", + "Buying BRK-B on 2022-03-31 00:00:00\n", + "Buying BMY on 2022-03-31 00:00:00\n", + "Buying VICI on 2022-03-31 00:00:00\n", + "Buying CTAS on 2022-03-31 00:00:00\n", + "Buying PEP on 2022-03-31 00:00:00\n", + "Buying MCD on 2022-03-31 00:00:00\n", + "Buying L on 2022-03-31 00:00:00\n", + "Buying DOV on 2022-03-31 00:00:00\n", + "Buying AEE on 2022-03-31 00:00:00\n", + "Buying MSFT on 2022-03-31 00:00:00\n", + "Buying MDT on 2022-03-31 00:00:00\n", + "Buying CNP on 2022-03-31 00:00:00\n", + "Buying WTW on 2022-03-31 00:00:00\n", + "Buying PEG on 2022-03-31 00:00:00\n", + "Buying HUBB on 2022-03-31 00:00:00\n", + "Buying KEYS on 2022-03-31 00:00:00\n", + "Buying NDSN on 2022-03-31 00:00:00\n", + "Buying GPC on 2022-03-31 00:00:00\n", + "Buying VZ on 2022-03-31 00:00:00\n", + "Buying CMS on 2022-03-31 00:00:00\n", + "Buying ACGL on 2022-03-31 00:00:00\n", + "Buying ZTS on 2022-03-31 00:00:00\n", + "Buying COR on 2022-03-31 00:00:00\n", + "Buying AVB on 2022-03-31 00:00:00\n", + "Buying DTE on 2022-03-31 00:00:00\n", + "Buying JCI on 2022-03-31 00:00:00\n", + "Buying EVRG on 2022-03-31 00:00:00\n", + "Buying CB on 2022-03-31 00:00:00\n", + "Buying EXPD on 2022-03-31 00:00:00\n", + "Buying KO on 2022-03-31 00:00:00\n", + "Buying TMO on 2022-03-31 00:00:00\n", + "Buying OTIS on 2022-03-31 00:00:00\n", + "Buying WEC on 2022-03-31 00:00:00\n", + "Buying CSCO on 2022-03-31 00:00:00\n", + "Buying ROP on 2022-03-31 00:00:00\n", + "Buying D on 2022-03-31 00:00:00\n", + "Buying AEP on 2022-03-31 00:00:00\n", + "Buying TDY on 2022-03-31 00:00:00\n", + "Buying DUK on 2022-03-31 00:00:00\n", + "Selling ON on 2022-03-31 00:00:00\n", + "Selling MTCH on 2022-03-31 00:00:00\n", + "Selling CSGP on 2022-03-31 00:00:00\n", + "Selling PANW on 2022-03-31 00:00:00\n", + "Selling CLX on 2022-03-31 00:00:00\n", + "Selling NUE on 2022-03-31 00:00:00\n", + "Selling AMD on 2022-03-31 00:00:00\n", + "Selling KR on 2022-03-31 00:00:00\n", + "Selling WYNN on 2022-03-31 00:00:00\n", + "Selling FANG on 2022-03-31 00:00:00\n", + "Selling RCL on 2022-03-31 00:00:00\n", + "Selling BKR on 2022-03-31 00:00:00\n", + "Selling CZR on 2022-03-31 00:00:00\n", + "Selling TTWO on 2022-03-31 00:00:00\n", + "Selling HAL on 2022-03-31 00:00:00\n", + "Selling GEN on 2022-03-31 00:00:00\n", + "Selling UAL on 2022-03-31 00:00:00\n", + "Selling NCLH on 2022-03-31 00:00:00\n", + "Selling ALB on 2022-03-31 00:00:00\n", + "Selling HUM on 2022-03-31 00:00:00\n", + "Selling CCL on 2022-03-31 00:00:00\n", + "Selling GNRC on 2022-03-31 00:00:00\n", + "Selling SLB on 2022-03-31 00:00:00\n", + "Selling APA on 2022-03-31 00:00:00\n", + "Selling UBER on 2022-03-31 00:00:00\n", + "Selling EQT on 2022-03-31 00:00:00\n", + "Selling TSLA on 2022-03-31 00:00:00\n", + "Selling DVN on 2022-03-31 00:00:00\n", + "Selling FSLR on 2022-03-31 00:00:00\n", + "Selling ABNB 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 CTRA on 2022-03-31 00:00:00\n", + "Selling TPL on 2022-03-31 00:00:00\n", + "Selling TER on 2022-03-31 00:00:00\n", + "Selling CF on 2022-03-31 00:00:00\n", + "Selling MOS on 2022-03-31 00:00:00\n", + "Selling VTRS on 2022-03-31 00:00:00\n", + "Selling NFLX on 2022-03-31 00:00:00\n", + "Selling LVS on 2022-03-31 00:00:00\n", + "Selling CRWD on 2022-03-31 00:00:00\n", + "Selling PLTR on 2022-03-31 00:00:00\n", + "Selling WBD on 2022-03-31 00:00:00\n", + "Selling PARA on 2022-03-31 00:00:00\n", + "Selling PYPL on 2022-03-31 00:00:00\n", + "Selling ENPH on 2022-03-31 00:00:00\n", + "Selling OXY on 2022-03-31 00:00:00\n", + "Selling MRNA on 2022-03-31 00:00:00\n", + "Selling EPAM on 2022-03-31 00:00:00\n", + "Buying AAPL on 2022-04-30 00:00:00\n", + "Buying APH on 2022-04-30 00:00:00\n", + "Buying CTAS on 2022-04-30 00:00:00\n", + "Buying AME on 2022-04-30 00:00:00\n", + "Buying BMY on 2022-04-30 00:00:00\n", + "Buying MMC on 2022-04-30 00:00:00\n", + "Buying NDAQ on 2022-04-30 00:00:00\n", + "Buying OTIS on 2022-04-30 00:00:00\n", + "Buying O on 2022-04-30 00:00:00\n", + "Buying ACN on 2022-04-30 00:00:00\n", + "Buying KEYS on 2022-04-30 00:00:00\n", + "Buying ADP on 2022-04-30 00:00:00\n", + "Buying BRK-B on 2022-04-30 00:00:00\n", + "Buying BR on 2022-04-30 00:00:00\n", + "Buying CTSH on 2022-04-30 00:00:00\n", + "Buying MCD on 2022-04-30 00:00:00\n", + "Buying GS on 2022-04-30 00:00:00\n", + "Buying NI on 2022-04-30 00:00:00\n", + "Buying IEX on 2022-04-30 00:00:00\n", + "Buying PEP on 2022-04-30 00:00:00\n", + "Buying MSFT on 2022-04-30 00:00:00\n", + "Buying EMR on 2022-04-30 00:00:00\n", + "Buying AJG on 2022-04-30 00:00:00\n", + "Buying MMM on 2022-04-30 00:00:00\n", + "Buying ORCL on 2022-04-30 00:00:00\n", + "Buying AEE on 2022-04-30 00:00:00\n", + "Buying PAYX on 2022-04-30 00:00:00\n", + "Buying MCO on 2022-04-30 00:00:00\n", + "Buying JCI on 2022-04-30 00:00:00\n", + "Buying L on 2022-04-30 00:00:00\n", + "Buying NDSN on 2022-04-30 00:00:00\n", + "Buying WEC on 2022-04-30 00:00:00\n", + "Buying TXN on 2022-04-30 00:00:00\n", + "Buying GILD on 2022-04-30 00:00:00\n", + "Buying GOOGL on 2022-04-30 00:00:00\n", + "Buying GOOG on 2022-04-30 00:00:00\n", + "Buying XEL on 2022-04-30 00:00:00\n", + "Buying BXP on 2022-04-30 00:00:00\n", + "Buying CB on 2022-04-30 00:00:00\n", + "Buying TDY on 2022-04-30 00:00:00\n", + "Buying MDLZ on 2022-04-30 00:00:00\n", + "Buying ABT on 2022-04-30 00:00:00\n", + "Buying KO on 2022-04-30 00:00:00\n", + "Buying EVRG on 2022-04-30 00:00:00\n", + "Buying D on 2022-04-30 00:00:00\n", + "Buying TT on 2022-04-30 00:00:00\n", + "Buying UPS on 2022-04-30 00:00:00\n", + "Buying FRT on 2022-04-30 00:00:00\n", + "Buying CNP on 2022-04-30 00:00:00\n", + "Selling EOG on 2022-04-30 00:00:00\n", + "Selling CLX on 2022-04-30 00:00:00\n", + "Selling BLDR on 2022-04-30 00:00:00\n", + "Selling MPWR on 2022-04-30 00:00:00\n", + "Selling CZR on 2022-04-30 00:00:00\n", + "Selling DAL on 2022-04-30 00:00:00\n", + "Selling PODD on 2022-04-30 00:00:00\n", + "Selling VLO on 2022-04-30 00:00:00\n", + "Selling FANG on 2022-04-30 00:00:00\n", + "Selling CSGP on 2022-04-30 00:00:00\n", + "Selling APA on 2022-04-30 00:00:00\n", + "Selling NCLH on 2022-04-30 00:00:00\n", + "Selling MHK on 2022-04-30 00:00:00\n", + "Selling HPQ on 2022-04-30 00:00:00\n", + "Selling GEN on 2022-04-30 00:00:00\n", + "Selling CEG on 2022-04-30 00:00:00\n", + "Selling ALB on 2022-04-30 00:00:00\n", + "Selling ABNB on 2022-04-30 00:00:00\n", + "Selling CCL on 2022-04-30 00:00:00\n", + "Selling TSLA on 2022-04-30 00:00:00\n", + "Selling CTRA on 2022-04-30 00:00:00\n", + "Selling LVS on 2022-04-30 00:00:00\n", + "Selling WBD on 2022-04-30 00:00:00\n", + "Selling MTCH on 2022-04-30 00:00:00\n", + "Selling HAL on 2022-04-30 00:00:00\n", + "Selling FSLR on 2022-04-30 00:00:00\n", + "Selling CF on 2022-04-30 00:00:00\n", + "Selling UBER on 2022-04-30 00:00:00\n", + "Selling SLB on 2022-04-30 00:00:00\n", + "Selling TPL on 2022-04-30 00:00:00\n", + "Selling HCA on 2022-04-30 00:00:00\n", + "Selling BKR on 2022-04-30 00:00:00\n", + "Selling GNRC on 2022-04-30 00:00:00\n", + "Selling DVN on 2022-04-30 00:00:00\n", + "Selling EQT on 2022-04-30 00:00:00\n", + "Selling SMCI on 2022-04-30 00:00:00\n", + "Selling UAL on 2022-04-30 00:00:00\n", + "Selling ALGN on 2022-04-30 00:00:00\n", + "Selling VTRS on 2022-04-30 00:00:00\n", + "Selling MOS on 2022-04-30 00:00:00\n", + "Selling CRWD on 2022-04-30 00:00:00\n", + "Selling PARA on 2022-04-30 00:00:00\n", + "Selling PLTR on 2022-04-30 00:00:00\n", + "Selling META on 2022-04-30 00:00:00\n", + "Selling OXY on 2022-04-30 00:00:00\n", + "Selling MRNA on 2022-04-30 00:00:00\n", + "Selling ENPH on 2022-04-30 00:00:00\n", + "Selling NFLX on 2022-04-30 00:00:00\n", + "Selling EPAM on 2022-04-30 00:00:00\n", + "Buying AME on 2022-05-31 00:00:00\n", + "Buying APH on 2022-05-31 00:00:00\n", + "Buying CNP on 2022-05-31 00:00:00\n", + "Buying BRK-B on 2022-05-31 00:00:00\n", + "Buying BMY on 2022-05-31 00:00:00\n", + "Buying EMR on 2022-05-31 00:00:00\n", + "Buying PPL on 2022-05-31 00:00:00\n", + "Buying ACN on 2022-05-31 00:00:00\n", + "Buying L on 2022-05-31 00:00:00\n", + "Buying AEE on 2022-05-31 00:00:00\n", + "Buying TXN on 2022-05-31 00:00:00\n", + "Buying MET on 2022-05-31 00:00:00\n", + "Buying XEL on 2022-05-31 00:00:00\n", + "Buying DUK on 2022-05-31 00:00:00\n", + "Buying NI on 2022-05-31 00:00:00\n", + "Buying BR on 2022-05-31 00:00:00\n", + "Buying EVRG on 2022-05-31 00:00:00\n", + "Buying APD on 2022-05-31 00:00:00\n", + "Buying PEG on 2022-05-31 00:00:00\n", + "Buying ADP on 2022-05-31 00:00:00\n", + "Buying CDW on 2022-05-31 00:00:00\n", + "Buying NDSN on 2022-05-31 00:00:00\n", + "Buying GS on 2022-05-31 00:00:00\n", + "Buying ES on 2022-05-31 00:00:00\n", + "Buying NDAQ on 2022-05-31 00:00:00\n", + "Buying KEYS on 2022-05-31 00:00:00\n", + "Buying PFG on 2022-05-31 00:00:00\n", + "Buying CB on 2022-05-31 00:00:00\n", + "Buying IP on 2022-05-31 00:00:00\n", + "Buying AAPL on 2022-05-31 00:00:00\n", + "Buying CTAS on 2022-05-31 00:00:00\n", + "Buying AMGN on 2022-05-31 00:00:00\n", + "Buying CBRE on 2022-05-31 00:00:00\n", + "Buying MSFT on 2022-05-31 00:00:00\n", + "Buying DTE on 2022-05-31 00:00:00\n", + "Buying HON on 2022-05-31 00:00:00\n", + "Buying HIG on 2022-05-31 00:00:00\n", + "Buying D on 2022-05-31 00:00:00\n", + "Buying ITW on 2022-05-31 00:00:00\n", + "Buying ED on 2022-05-31 00:00:00\n", + "Buying LDOS on 2022-05-31 00:00:00\n", + "Buying PAYX on 2022-05-31 00:00:00\n", + "Buying AEP on 2022-05-31 00:00:00\n", + "Buying MRK on 2022-05-31 00:00:00\n", + "Buying WELL on 2022-05-31 00:00:00\n", + "Buying ORCL on 2022-05-31 00:00:00\n", + "Buying BLK on 2022-05-31 00:00:00\n", + "Buying ATO on 2022-05-31 00:00:00\n", + "Buying WRB on 2022-05-31 00:00:00\n", + "Selling LULU on 2022-05-31 00:00:00\n", + "Selling DE on 2022-05-31 00:00:00\n", + "Selling WYNN on 2022-05-31 00:00:00\n", + "Selling FANG on 2022-05-31 00:00:00\n", + "Selling EOG on 2022-05-31 00:00:00\n", + "Selling MPWR on 2022-05-31 00:00:00\n", + "Selling HPQ on 2022-05-31 00:00:00\n", + "Selling MHK on 2022-05-31 00:00:00\n", + "Selling VLO on 2022-05-31 00:00:00\n", + "Selling ALB on 2022-05-31 00:00:00\n", + "Selling AXON on 2022-05-31 00:00:00\n", + "Selling LYV on 2022-05-31 00:00:00\n", + "Selling CCL on 2022-05-31 00:00:00\n", + "Selling ABNB on 2022-05-31 00:00:00\n", + "Selling WBD on 2022-05-31 00:00:00\n", + "Selling GNRC on 2022-05-31 00:00:00\n", + "Selling BKR on 2022-05-31 00:00:00\n", + "Selling TSLA on 2022-05-31 00:00:00\n", + "Selling CTRA on 2022-05-31 00:00:00\n", + "Selling TPR on 2022-05-31 00:00:00\n", + "Selling MTCH on 2022-05-31 00:00:00\n", + "Selling HCA on 2022-05-31 00:00:00\n", + "Selling PARA on 2022-05-31 00:00:00\n", + "Selling TGT on 2022-05-31 00:00:00\n", + "Selling APA on 2022-05-31 00:00:00\n", + "Selling UAL on 2022-05-31 00:00:00\n", + "Selling PODD on 2022-05-31 00:00:00\n", + "Selling DVN on 2022-05-31 00:00:00\n", + "Selling UBER on 2022-05-31 00:00:00\n", + "Selling NCLH on 2022-05-31 00:00:00\n", + "Selling LVS on 2022-05-31 00:00:00\n", + "Selling HAL on 2022-05-31 00:00:00\n", + "Selling CF on 2022-05-31 00:00:00\n", + "Selling EXPE on 2022-05-31 00:00:00\n", + "Selling OXY on 2022-05-31 00:00:00\n", + "Selling ALGN on 2022-05-31 00:00:00\n", + "Selling EQT on 2022-05-31 00:00:00\n", + "Selling CZR on 2022-05-31 00:00:00\n", + "Selling SLB on 2022-05-31 00:00:00\n", + "Selling DLTR on 2022-05-31 00:00:00\n", + "Selling ROST on 2022-05-31 00:00:00\n", + "Selling CRWD on 2022-05-31 00:00:00\n", + "Selling PLTR on 2022-05-31 00:00:00\n", + "Selling MOS on 2022-05-31 00:00:00\n", + "Selling MRNA on 2022-05-31 00:00:00\n", + "Selling ENPH on 2022-05-31 00:00:00\n", + "Selling SMCI on 2022-05-31 00:00:00\n", + "Selling NFLX on 2022-05-31 00:00:00\n", + "Selling EPAM on 2022-05-31 00:00:00\n", + "Buying BRK-B on 2022-06-30 00:00:00\n", + "Buying ADP on 2022-06-30 00:00:00\n", + "Buying AME on 2022-06-30 00:00:00\n", + "Buying FTV on 2022-06-30 00:00:00\n", + "Buying NDSN on 2022-06-30 00:00:00\n", + "Buying APH on 2022-06-30 00:00:00\n", + "Buying YUM on 2022-06-30 00:00:00\n", + "Buying CTAS on 2022-06-30 00:00:00\n", + "Buying ACN on 2022-06-30 00:00:00\n", + "Buying L on 2022-06-30 00:00:00\n", + "Buying ATO on 2022-06-30 00:00:00\n", + "Buying BK on 2022-06-30 00:00:00\n", + "Buying LDOS on 2022-06-30 00:00:00\n", + "Buying AAPL on 2022-06-30 00:00:00\n", + "Buying TXN on 2022-06-30 00:00:00\n", + "Buying BMY on 2022-06-30 00:00:00\n", + "Buying MET on 2022-06-30 00:00:00\n", + "Buying KEYS on 2022-06-30 00:00:00\n", + "Buying AMP on 2022-06-30 00:00:00\n", + "Buying MCD on 2022-06-30 00:00:00\n", + "Buying GRMN on 2022-06-30 00:00:00\n", + "Buying IEX on 2022-06-30 00:00:00\n", + "Buying BR on 2022-06-30 00:00:00\n", + "Buying PAYX on 2022-06-30 00:00:00\n", + "Buying JNJ on 2022-06-30 00:00:00\n", + "Buying D on 2022-06-30 00:00:00\n", + "Buying INTC on 2022-06-30 00:00:00\n", + "Buying EMR on 2022-06-30 00:00:00\n", + "Buying CB on 2022-06-30 00:00:00\n", + "Buying CDW on 2022-06-30 00:00:00\n", + "Buying EG on 2022-06-30 00:00:00\n", + "Buying LIN on 2022-06-30 00:00:00\n", + "Buying JKHY on 2022-06-30 00:00:00\n", + "Buying AEE on 2022-06-30 00:00:00\n", + "Buying ABT on 2022-06-30 00:00:00\n", + "Buying APD on 2022-06-30 00:00:00\n", + "Buying TT on 2022-06-30 00:00:00\n", + "Buying NDAQ on 2022-06-30 00:00:00\n", + "Buying GD on 2022-06-30 00:00:00\n", + "Buying BRO on 2022-06-30 00:00:00\n", + "Buying CNP on 2022-06-30 00:00:00\n", + "Buying UNP on 2022-06-30 00:00:00\n", + "Buying PFG on 2022-06-30 00:00:00\n", + "Buying PNC on 2022-06-30 00:00:00\n", + "Buying MMC on 2022-06-30 00:00:00\n", + "Buying MDLZ on 2022-06-30 00:00:00\n", + "Buying ADI on 2022-06-30 00:00:00\n", + "Buying ITW on 2022-06-30 00:00:00\n", + "Buying AMGN on 2022-06-30 00:00:00\n", + "Selling BA on 2022-06-30 00:00:00\n", + "Selling PSX on 2022-06-30 00:00:00\n", + "Selling ABNB on 2022-06-30 00:00:00\n", + "Selling PODD on 2022-06-30 00:00:00\n", + "Selling HES on 2022-06-30 00:00:00\n", + "Selling TPR on 2022-06-30 00:00:00\n", + "Selling META on 2022-06-30 00:00:00\n", + "Selling PARA on 2022-06-30 00:00:00\n", + "Selling WYNN on 2022-06-30 00:00:00\n", + "Selling MTCH on 2022-06-30 00:00:00\n", + "Selling CTRA on 2022-06-30 00:00:00\n", + "Selling DVA on 2022-06-30 00:00:00\n", + "Selling UAL on 2022-06-30 00:00:00\n", + "Selling LVS on 2022-06-30 00:00:00\n", + "Selling HAL on 2022-06-30 00:00:00\n", + "Selling COP on 2022-06-30 00:00:00\n", + "Selling AXON on 2022-06-30 00:00:00\n", + "Selling EOG on 2022-06-30 00:00:00\n", + "Selling TSLA on 2022-06-30 00:00:00\n", + "Selling OXY on 2022-06-30 00:00:00\n", + "Selling UBER on 2022-06-30 00:00:00\n", + "Selling FANG on 2022-06-30 00:00:00\n", + "Selling CF on 2022-06-30 00:00:00\n", + "Selling HCA on 2022-06-30 00:00:00\n", + "Selling WBD on 2022-06-30 00:00:00\n", + "Selling ALB on 2022-06-30 00:00:00\n", + "Selling SLB on 2022-06-30 00:00:00\n", + "Selling VLO on 2022-06-30 00:00:00\n", + "Selling GNRC on 2022-06-30 00:00:00\n", + "Selling TGT on 2022-06-30 00:00:00\n", + "Selling ALGN on 2022-06-30 00:00:00\n", + "Selling EXPE on 2022-06-30 00:00:00\n", + "Selling MRNA on 2022-06-30 00:00:00\n", + "Selling RCL on 2022-06-30 00:00:00\n", + "Selling DLTR on 2022-06-30 00:00:00\n", + "Selling CRWD on 2022-06-30 00:00:00\n", + "Selling DVN on 2022-06-30 00:00:00\n", + "Selling APA on 2022-06-30 00:00:00\n", + "Selling CCL on 2022-06-30 00:00:00\n", + "Selling MOS on 2022-06-30 00:00:00\n", + "Selling ROST on 2022-06-30 00:00:00\n", + "Selling CZR on 2022-06-30 00:00:00\n", + "Selling EPAM on 2022-06-30 00:00:00\n", + "Selling PLTR on 2022-06-30 00:00:00\n", + "Selling EQT on 2022-06-30 00:00:00\n", + "Selling NCLH on 2022-06-30 00:00:00\n", + "Selling ENPH on 2022-06-30 00:00:00\n", + "Selling SMCI on 2022-06-30 00:00:00\n", + "Selling NFLX on 2022-06-30 00:00:00\n", + "Buying BRK-B on 2022-07-31 00:00:00\n", + "Buying AME on 2022-07-31 00:00:00\n", + "Buying BRO on 2022-07-31 00:00:00\n", + "Buying AJG on 2022-07-31 00:00:00\n", + "Buying WTW on 2022-07-31 00:00:00\n", + "Buying AFL on 2022-07-31 00:00:00\n", + "Buying AMGN on 2022-07-31 00:00:00\n", + "Buying MMC on 2022-07-31 00:00:00\n", + "Buying ACN on 2022-07-31 00:00:00\n", + "Buying YUM on 2022-07-31 00:00:00\n", + "Buying BR on 2022-07-31 00:00:00\n", + "Buying NDSN on 2022-07-31 00:00:00\n", + "Buying L on 2022-07-31 00:00:00\n", + "Buying CDW on 2022-07-31 00:00:00\n", + "Buying JNJ on 2022-07-31 00:00:00\n", + "Buying WY on 2022-07-31 00:00:00\n", + "Buying DOV on 2022-07-31 00:00:00\n", + "Buying FTV on 2022-07-31 00:00:00\n", + "Buying ADP on 2022-07-31 00:00:00\n", + "Buying CTAS on 2022-07-31 00:00:00\n", + "Buying PAYX on 2022-07-31 00:00:00\n", + "Buying IEX on 2022-07-31 00:00:00\n", + "Buying APH on 2022-07-31 00:00:00\n", + "Buying AMP on 2022-07-31 00:00:00\n", + "Buying V on 2022-07-31 00:00:00\n", + "Buying MA on 2022-07-31 00:00:00\n", + "Buying J on 2022-07-31 00:00:00\n", + "Buying MSFT on 2022-07-31 00:00:00\n", + "Buying BMY on 2022-07-31 00:00:00\n", + "Buying ROP on 2022-07-31 00:00:00\n", + "Buying MS on 2022-07-31 00:00:00\n", + "Buying EMR on 2022-07-31 00:00:00\n", + "Buying HON on 2022-07-31 00:00:00\n", + "Buying UNP on 2022-07-31 00:00:00\n", + "Buying LW on 2022-07-31 00:00:00\n", + "Buying WM on 2022-07-31 00:00:00\n", + "Buying GLW on 2022-07-31 00:00:00\n", + "Buying RJF on 2022-07-31 00:00:00\n", + "Buying LKQ on 2022-07-31 00:00:00\n", + "Buying ABT on 2022-07-31 00:00:00\n", + "Buying GPC on 2022-07-31 00:00:00\n", + "Buying LDOS on 2022-07-31 00:00:00\n", + "Buying AAPL on 2022-07-31 00:00:00\n", + "Buying VRSN on 2022-07-31 00:00:00\n", + "Buying KEYS on 2022-07-31 00:00:00\n", + "Buying TEL on 2022-07-31 00:00:00\n", + "Buying JNPR on 2022-07-31 00:00:00\n", + "Buying IP on 2022-07-31 00:00:00\n", + "Buying JKHY on 2022-07-31 00:00:00\n", + "Selling PSX on 2022-07-31 00:00:00\n", + "Selling BA on 2022-07-31 00:00:00\n", + "Selling ABNB on 2022-07-31 00:00:00\n", + "Selling TSLA on 2022-07-31 00:00:00\n", + "Selling BKR on 2022-07-31 00:00:00\n", + "Selling DXCM on 2022-07-31 00:00:00\n", + "Selling PARA on 2022-07-31 00:00:00\n", + "Selling EXPE on 2022-07-31 00:00:00\n", + "Selling TPL on 2022-07-31 00:00:00\n", + "Selling FCX on 2022-07-31 00:00:00\n", + "Selling OXY on 2022-07-31 00:00:00\n", + "Selling DECK on 2022-07-31 00:00:00\n", + "Selling DVA on 2022-07-31 00:00:00\n", + "Selling AXON on 2022-07-31 00:00:00\n", + "Selling TPR on 2022-07-31 00:00:00\n", + "Selling SWK on 2022-07-31 00:00:00\n", + "Selling UAL on 2022-07-31 00:00:00\n", + "Selling WYNN on 2022-07-31 00:00:00\n", + "Selling COP on 2022-07-31 00:00:00\n", + "Selling HAL on 2022-07-31 00:00:00\n", + "Selling HES on 2022-07-31 00:00:00\n", + "Selling SLB on 2022-07-31 00:00:00\n", + "Selling VLO on 2022-07-31 00:00:00\n", + "Selling EOG on 2022-07-31 00:00:00\n", + "Selling CF on 2022-07-31 00:00:00\n", + "Selling ALB on 2022-07-31 00:00:00\n", + "Selling LVS on 2022-07-31 00:00:00\n", + "Selling FANG on 2022-07-31 00:00:00\n", + "Selling TGT on 2022-07-31 00:00:00\n", + "Selling GNRC on 2022-07-31 00:00:00\n", + "Selling MRNA on 2022-07-31 00:00:00\n", + "Selling CEG on 2022-07-31 00:00:00\n", + "Selling UBER on 2022-07-31 00:00:00\n", + "Selling EPAM on 2022-07-31 00:00:00\n", + "Selling MOS on 2022-07-31 00:00:00\n", + "Selling DVN on 2022-07-31 00:00:00\n", + "Selling CRWD on 2022-07-31 00:00:00\n", + "Selling FSLR on 2022-07-31 00:00:00\n", + "Selling DLTR on 2022-07-31 00:00:00\n", + "Selling ROST on 2022-07-31 00:00:00\n", + "Selling APA on 2022-07-31 00:00:00\n", + "Selling RCL on 2022-07-31 00:00:00\n", + "Selling PLTR on 2022-07-31 00:00:00\n", + "Selling EQT on 2022-07-31 00:00:00\n", + "Selling CZR on 2022-07-31 00:00:00\n", + "Selling ENPH on 2022-07-31 00:00:00\n", + "Selling CCL on 2022-07-31 00:00:00\n", + "Selling SMCI on 2022-07-31 00:00:00\n", + "Selling NCLH on 2022-07-31 00:00:00\n", + "Buying BRK-B on 2022-08-31 00:00:00\n", + "Buying IEX on 2022-08-31 00:00:00\n", + "Buying AME on 2022-08-31 00:00:00\n", + "Buying AMGN on 2022-08-31 00:00:00\n", + "Buying WTW on 2022-08-31 00:00:00\n", + "Buying MMC on 2022-08-31 00:00:00\n", + "Buying GPC on 2022-08-31 00:00:00\n", + "Buying ACN on 2022-08-31 00:00:00\n", + "Buying HRL on 2022-08-31 00:00:00\n", + "Buying MA on 2022-08-31 00:00:00\n", + "Buying PEP on 2022-08-31 00:00:00\n", + "Buying BRO on 2022-08-31 00:00:00\n", + "Buying AAPL on 2022-08-31 00:00:00\n", + "Buying KDP on 2022-08-31 00:00:00\n", + "Buying CPRT on 2022-08-31 00:00:00\n", + "Buying CTAS on 2022-08-31 00:00:00\n", + "Buying FTV on 2022-08-31 00:00:00\n", + "Buying NDSN on 2022-08-31 00:00:00\n", + "Buying MDLZ on 2022-08-31 00:00:00\n", + "Buying DOV on 2022-08-31 00:00:00\n", + "Buying KO on 2022-08-31 00:00:00\n", + "Buying ROP on 2022-08-31 00:00:00\n", + "Buying YUM on 2022-08-31 00:00:00\n", + "Buying MCD on 2022-08-31 00:00:00\n", + "Buying LKQ on 2022-08-31 00:00:00\n", + "Buying ETN on 2022-08-31 00:00:00\n", + "Buying CPB on 2022-08-31 00:00:00\n", + "Buying HON on 2022-08-31 00:00:00\n", + "Buying AMP on 2022-08-31 00:00:00\n", + "Buying ORLY on 2022-08-31 00:00:00\n", + "Buying ITW on 2022-08-31 00:00:00\n", + "Buying APH on 2022-08-31 00:00:00\n", + "Buying V on 2022-08-31 00:00:00\n", + "Buying ABT on 2022-08-31 00:00:00\n", + "Buying VMC on 2022-08-31 00:00:00\n", + "Buying WM on 2022-08-31 00:00:00\n", + "Buying PNC on 2022-08-31 00:00:00\n", + "Buying MSFT on 2022-08-31 00:00:00\n", + "Buying K on 2022-08-31 00:00:00\n", + "Buying VRSN on 2022-08-31 00:00:00\n", + "Buying JNJ on 2022-08-31 00:00:00\n", + "Buying AFL on 2022-08-31 00:00:00\n", + "Buying AJG on 2022-08-31 00:00:00\n", + "Buying MDT on 2022-08-31 00:00:00\n", + "Buying MS on 2022-08-31 00:00:00\n", + "Buying REG on 2022-08-31 00:00:00\n", + "Buying TT on 2022-08-31 00:00:00\n", + "Buying ADP on 2022-08-31 00:00:00\n", + "Buying JCI on 2022-08-31 00:00:00\n", + "Selling POOL on 2022-08-31 00:00:00\n", + "Selling META on 2022-08-31 00:00:00\n", + "Selling BA on 2022-08-31 00:00:00\n", + "Selling MPC on 2022-08-31 00:00:00\n", + "Selling ABNB on 2022-08-31 00:00:00\n", + "Selling NEM on 2022-08-31 00:00:00\n", + "Selling WYNN on 2022-08-31 00:00:00\n", + "Selling DAY on 2022-08-31 00:00:00\n", + "Selling LVS on 2022-08-31 00:00:00\n", + "Selling BKR on 2022-08-31 00:00:00\n", + "Selling PSX on 2022-08-31 00:00:00\n", + "Selling EPAM on 2022-08-31 00:00:00\n", + "Selling TRGP on 2022-08-31 00:00:00\n", + "Selling CTRA on 2022-08-31 00:00:00\n", + "Selling UAL on 2022-08-31 00:00:00\n", + "Selling GNRC on 2022-08-31 00:00:00\n", + "Selling FTNT on 2022-08-31 00:00:00\n", + "Selling ON on 2022-08-31 00:00:00\n", + "Selling SWK on 2022-08-31 00:00:00\n", + "Selling COP on 2022-08-31 00:00:00\n", + "Selling DVA on 2022-08-31 00:00:00\n", + "Selling BALL on 2022-08-31 00:00:00\n", + "Selling SMCI on 2022-08-31 00:00:00\n", + "Selling CF on 2022-08-31 00:00:00\n", + "Selling MOS on 2022-08-31 00:00:00\n", + "Selling HES on 2022-08-31 00:00:00\n", + "Selling FCX on 2022-08-31 00:00:00\n", + "Selling SLB on 2022-08-31 00:00:00\n", + "Selling CEG on 2022-08-31 00:00:00\n", + "Selling EOG on 2022-08-31 00:00:00\n", + "Selling HAL on 2022-08-31 00:00:00\n", + "Selling VLO on 2022-08-31 00:00:00\n", + "Selling CZR on 2022-08-31 00:00:00\n", + "Selling OXY on 2022-08-31 00:00:00\n", + "Selling PLTR on 2022-08-31 00:00:00\n", + "Selling FSLR on 2022-08-31 00:00:00\n", + "Selling FANG on 2022-08-31 00:00:00\n", + "Selling TPL on 2022-08-31 00:00:00\n", + "Selling MTCH on 2022-08-31 00:00:00\n", + "Selling MRNA on 2022-08-31 00:00:00\n", + "Selling DVN on 2022-08-31 00:00:00\n", + "Selling ENPH on 2022-08-31 00:00:00\n", + "Selling WBD on 2022-08-31 00:00:00\n", + "Selling UBER on 2022-08-31 00:00:00\n", + "Selling EQT on 2022-08-31 00:00:00\n", + "Selling APA on 2022-08-31 00:00:00\n", + "Selling RCL on 2022-08-31 00:00:00\n", + "Selling CCL on 2022-08-31 00:00:00\n", + "Selling NCLH on 2022-08-31 00:00:00\n", + "Buying BRK-B on 2022-09-30 00:00:00\n", + "Buying ACN on 2022-09-30 00:00:00\n", + "Buying WTW on 2022-09-30 00:00:00\n", + "Buying MMC on 2022-09-30 00:00:00\n", + "Buying MA on 2022-09-30 00:00:00\n", + "Buying WM on 2022-09-30 00:00:00\n", + "Buying GD on 2022-09-30 00:00:00\n", + "Buying RSG on 2022-09-30 00:00:00\n", + "Buying KO on 2022-09-30 00:00:00\n", + "Buying GPC on 2022-09-30 00:00:00\n", + "Buying TEL on 2022-09-30 00:00:00\n", + "Buying IEX on 2022-09-30 00:00:00\n", + "Buying FTV on 2022-09-30 00:00:00\n", + "Buying PEP on 2022-09-30 00:00:00\n", + "Buying AME on 2022-09-30 00:00:00\n", + "Buying HON on 2022-09-30 00:00:00\n", + "Buying LIN on 2022-09-30 00:00:00\n", + "Buying AMP on 2022-09-30 00:00:00\n", + "Buying OTIS on 2022-09-30 00:00:00\n", + "Buying NDSN on 2022-09-30 00:00:00\n", + "Buying PAYX on 2022-09-30 00:00:00\n", + "Buying CMI on 2022-09-30 00:00:00\n", + "Buying BLK on 2022-09-30 00:00:00\n", + "Buying MS on 2022-09-30 00:00:00\n", + "Buying AON on 2022-09-30 00:00:00\n", + "Buying EMR on 2022-09-30 00:00:00\n", + "Buying MCD on 2022-09-30 00:00:00\n", + "Buying CDW on 2022-09-30 00:00:00\n", + "Buying ETN on 2022-09-30 00:00:00\n", + "Buying BRO on 2022-09-30 00:00:00\n", + "Buying BF-B on 2022-09-30 00:00:00\n", + "Buying APH on 2022-09-30 00:00:00\n", + "Buying HSY on 2022-09-30 00:00:00\n", + "Buying TXT on 2022-09-30 00:00:00\n", + "Buying MET on 2022-09-30 00:00:00\n", + "Buying MDLZ on 2022-09-30 00:00:00\n", + "Buying PCAR on 2022-09-30 00:00:00\n", + "Buying ROP on 2022-09-30 00:00:00\n", + "Buying TDG on 2022-09-30 00:00:00\n", + "Buying KDP on 2022-09-30 00:00:00\n", + "Buying CSCO on 2022-09-30 00:00:00\n", + "Buying MSFT on 2022-09-30 00:00:00\n", + "Buying AFL on 2022-09-30 00:00:00\n", + "Buying SNA on 2022-09-30 00:00:00\n", + "Buying VICI on 2022-09-30 00:00:00\n", + "Buying BDX on 2022-09-30 00:00:00\n", + "Buying GLW on 2022-09-30 00:00:00\n", + "Buying PNC on 2022-09-30 00:00:00\n", + "Buying VRSK on 2022-09-30 00:00:00\n", + "Selling ABNB on 2022-09-30 00:00:00\n", + "Selling PANW on 2022-09-30 00:00:00\n", + "Selling TRGP on 2022-09-30 00:00:00\n", + "Selling ALGN on 2022-09-30 00:00:00\n", + "Selling CRL on 2022-09-30 00:00:00\n", + "Selling NEM on 2022-09-30 00:00:00\n", + "Selling EPAM on 2022-09-30 00:00:00\n", + "Selling CTRA on 2022-09-30 00:00:00\n", + "Selling VLO on 2022-09-30 00:00:00\n", + "Selling UAL on 2022-09-30 00:00:00\n", + "Selling STLD on 2022-09-30 00:00:00\n", + "Selling NUE on 2022-09-30 00:00:00\n", + "Selling EOG on 2022-09-30 00:00:00\n", + "Selling BKR on 2022-09-30 00:00:00\n", + "Selling SWK on 2022-09-30 00:00:00\n", + "Selling FTNT on 2022-09-30 00:00:00\n", + "Selling HES on 2022-09-30 00:00:00\n", + "Selling FANG on 2022-09-30 00:00:00\n", + "Selling SLB on 2022-09-30 00:00:00\n", + "Selling CZR on 2022-09-30 00:00:00\n", + "Selling LVS on 2022-09-30 00:00:00\n", + "Selling CEG on 2022-09-30 00:00:00\n", + "Selling HAL on 2022-09-30 00:00:00\n", + "Selling REGN on 2022-09-30 00:00:00\n", + "Selling CF on 2022-09-30 00:00:00\n", + "Selling WYNN on 2022-09-30 00:00:00\n", + "Selling MOS on 2022-09-30 00:00:00\n", + "Selling FCX on 2022-09-30 00:00:00\n", + "Selling GNRC on 2022-09-30 00:00:00\n", + "Selling FDX on 2022-09-30 00:00:00\n", + "Selling DVN on 2022-09-30 00:00:00\n", + "Selling BALL on 2022-09-30 00:00:00\n", + "Selling OXY on 2022-09-30 00:00:00\n", + "Selling SMCI on 2022-09-30 00:00:00\n", + "Selling TPL on 2022-09-30 00:00:00\n", + "Selling EQT on 2022-09-30 00:00:00\n", + "Selling PLTR on 2022-09-30 00:00:00\n", + "Selling FSLR on 2022-09-30 00:00:00\n", + "Selling KMX on 2022-09-30 00:00:00\n", + "Selling MRNA 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 WBD on 2022-09-30 00:00:00\n", + "Selling UBER on 2022-09-30 00:00:00\n", + "Selling RCL on 2022-09-30 00:00:00\n", + "Selling APA on 2022-09-30 00:00:00\n", + "Selling NCLH on 2022-09-30 00:00:00\n", + "Selling CCL on 2022-09-30 00:00:00\n", + "Selling BIIB on 2022-09-30 00:00:00\n", + "Buying ACN on 2022-10-31 00:00:00\n", + "Buying FTV on 2022-10-31 00:00:00\n", + "Buying BRK-B on 2022-10-31 00:00:00\n", + "Buying MET on 2022-10-31 00:00:00\n", + "Buying WTW on 2022-10-31 00:00:00\n", + "Buying CTSH on 2022-10-31 00:00:00\n", + "Buying ADP on 2022-10-31 00:00:00\n", + "Buying AME on 2022-10-31 00:00:00\n", + "Buying APH on 2022-10-31 00:00:00\n", + "Buying ITW on 2022-10-31 00:00:00\n", + "Buying KO on 2022-10-31 00:00:00\n", + "Buying ETN on 2022-10-31 00:00:00\n", + "Buying AFL on 2022-10-31 00:00:00\n", + "Buying TEL on 2022-10-31 00:00:00\n", + "Buying PG on 2022-10-31 00:00:00\n", + "Buying NDSN on 2022-10-31 00:00:00\n", + "Buying TXT on 2022-10-31 00:00:00\n", + "Buying BSX on 2022-10-31 00:00:00\n", + "Buying OTIS on 2022-10-31 00:00:00\n", + "Buying MA on 2022-10-31 00:00:00\n", + "Buying MNST on 2022-10-31 00:00:00\n", + "Buying TDG on 2022-10-31 00:00:00\n", + "Buying UNH on 2022-10-31 00:00:00\n", + "Buying HSY on 2022-10-31 00:00:00\n", + "Buying GRMN on 2022-10-31 00:00:00\n", + "Buying LDOS on 2022-10-31 00:00:00\n", + "Buying ICE on 2022-10-31 00:00:00\n", + "Buying KMB on 2022-10-31 00:00:00\n", + "Buying HON on 2022-10-31 00:00:00\n", + "Buying CSCO on 2022-10-31 00:00:00\n", + "Buying MDLZ on 2022-10-31 00:00:00\n", + "Buying CDW on 2022-10-31 00:00:00\n", + "Buying PH on 2022-10-31 00:00:00\n", + "Buying PRU on 2022-10-31 00:00:00\n", + "Buying APD on 2022-10-31 00:00:00\n", + "Buying CMI on 2022-10-31 00:00:00\n", + "Buying CTAS on 2022-10-31 00:00:00\n", + "Buying MSI on 2022-10-31 00:00:00\n", + "Buying ZTS on 2022-10-31 00:00:00\n", + "Buying PAYX on 2022-10-31 00:00:00\n", + "Buying CSX on 2022-10-31 00:00:00\n", + "Buying VRSK on 2022-10-31 00:00:00\n", + "Buying L on 2022-10-31 00:00:00\n", + "Buying GPC on 2022-10-31 00:00:00\n", + "Buying BF-B on 2022-10-31 00:00:00\n", + "Buying PEP on 2022-10-31 00:00:00\n", + "Buying IT on 2022-10-31 00:00:00\n", + "Buying BEN on 2022-10-31 00:00:00\n", + "Buying CL on 2022-10-31 00:00:00\n", + "Selling AXON on 2022-10-31 00:00:00\n", + "Selling ABNB on 2022-10-31 00:00:00\n", + "Selling CZR on 2022-10-31 00:00:00\n", + "Selling EOG on 2022-10-31 00:00:00\n", + "Selling NUE on 2022-10-31 00:00:00\n", + "Selling BKR on 2022-10-31 00:00:00\n", + "Selling FANG on 2022-10-31 00:00:00\n", + "Selling CTRA on 2022-10-31 00:00:00\n", + "Selling UHS on 2022-10-31 00:00:00\n", + "Selling ON on 2022-10-31 00:00:00\n", + "Selling NOW on 2022-10-31 00:00:00\n", + "Selling HES on 2022-10-31 00:00:00\n", + "Selling TSLA on 2022-10-31 00:00:00\n", + "Selling ALB on 2022-10-31 00:00:00\n", + "Selling VLO on 2022-10-31 00:00:00\n", + "Selling FSLR on 2022-10-31 00:00:00\n", + "Selling STLD on 2022-10-31 00:00:00\n", + "Selling OXY on 2022-10-31 00:00:00\n", + "Selling WBD on 2022-10-31 00:00:00\n", + "Selling DVN on 2022-10-31 00:00:00\n", + "Selling REGN on 2022-10-31 00:00:00\n", + "Selling UBER on 2022-10-31 00:00:00\n", + "Selling EW on 2022-10-31 00:00:00\n", + "Selling FCX on 2022-10-31 00:00:00\n", + "Selling SLB on 2022-10-31 00:00:00\n", + "Selling CF on 2022-10-31 00:00:00\n", + "Selling PLTR on 2022-10-31 00:00:00\n", + "Selling HAL on 2022-10-31 00:00:00\n", + "Selling ALGN on 2022-10-31 00:00:00\n", + "Selling FDX on 2022-10-31 00:00:00\n", + "Selling NFLX on 2022-10-31 00:00:00\n", + "Selling TPL on 2022-10-31 00:00:00\n", + "Selling MOS on 2022-10-31 00:00:00\n", + "Selling ENPH on 2022-10-31 00:00:00\n", + "Selling SMCI on 2022-10-31 00:00:00\n", + "Selling DXCM on 2022-10-31 00:00:00\n", + "Selling EQT on 2022-10-31 00:00:00\n", + "Selling APA on 2022-10-31 00:00:00\n", + "Selling MRNA on 2022-10-31 00:00:00\n", + "Selling LVS on 2022-10-31 00:00:00\n", + "Selling KMX on 2022-10-31 00:00:00\n", + "Selling META on 2022-10-31 00:00:00\n", + "Selling WYNN on 2022-10-31 00:00:00\n", + "Selling RCL on 2022-10-31 00:00:00\n", + "Selling DVA on 2022-10-31 00:00:00\n", + "Selling GNRC on 2022-10-31 00:00:00\n", + "Selling NCLH on 2022-10-31 00:00:00\n", + "Selling CCL on 2022-10-31 00:00:00\n", + "Selling BIIB on 2022-10-31 00:00:00\n", + "Buying BRK-B on 2022-11-30 00:00:00\n", + "Buying NDSN on 2022-11-30 00:00:00\n", + "Buying ITW on 2022-11-30 00:00:00\n", + "Buying PG on 2022-11-30 00:00:00\n", + "Buying KO on 2022-11-30 00:00:00\n", + "Buying WTW on 2022-11-30 00:00:00\n", + "Buying PAYX on 2022-11-30 00:00:00\n", + "Buying FTV on 2022-11-30 00:00:00\n", + "Buying ADP on 2022-11-30 00:00:00\n", + "Buying MET on 2022-11-30 00:00:00\n", + "Buying APH on 2022-11-30 00:00:00\n", + "Buying CDW on 2022-11-30 00:00:00\n", + "Buying BF-B on 2022-11-30 00:00:00\n", + "Buying CL on 2022-11-30 00:00:00\n", + "Buying GRMN on 2022-11-30 00:00:00\n", + "Buying KMB on 2022-11-30 00:00:00\n", + "Buying AME on 2022-11-30 00:00:00\n", + "Buying JNJ on 2022-11-30 00:00:00\n", + "Buying ACN on 2022-11-30 00:00:00\n", + "Buying ICE on 2022-11-30 00:00:00\n", + "Buying MDLZ on 2022-11-30 00:00:00\n", + "Buying MA on 2022-11-30 00:00:00\n", + "Buying AFL on 2022-11-30 00:00:00\n", + "Buying TXT on 2022-11-30 00:00:00\n", + "Buying CSCO on 2022-11-30 00:00:00\n", + "Buying STZ on 2022-11-30 00:00:00\n", + "Buying CTAS on 2022-11-30 00:00:00\n", + "Buying EMR on 2022-11-30 00:00:00\n", + "Buying CSX on 2022-11-30 00:00:00\n", + "Buying L on 2022-11-30 00:00:00\n", + "Buying CHD on 2022-11-30 00:00:00\n", + "Buying PM on 2022-11-30 00:00:00\n", + "Buying IEX on 2022-11-30 00:00:00\n", + "Buying CME on 2022-11-30 00:00:00\n", + "Buying HON on 2022-11-30 00:00:00\n", + "Buying OTIS on 2022-11-30 00:00:00\n", + "Buying ETN on 2022-11-30 00:00:00\n", + "Buying AON on 2022-11-30 00:00:00\n", + "Buying PEP on 2022-11-30 00:00:00\n", + "Buying BSX on 2022-11-30 00:00:00\n", + "Buying DOV on 2022-11-30 00:00:00\n", + "Buying IBM on 2022-11-30 00:00:00\n", + "Buying EA on 2022-11-30 00:00:00\n", + "Buying TXN on 2022-11-30 00:00:00\n", + "Buying TEL on 2022-11-30 00:00:00\n", + "Buying PCAR on 2022-11-30 00:00:00\n", + "Buying SNA on 2022-11-30 00:00:00\n", + "Buying YUM on 2022-11-30 00:00:00\n", + "Buying MS on 2022-11-30 00:00:00\n", + "Selling BLDR on 2022-11-30 00:00:00\n", + "Selling TTWO on 2022-11-30 00:00:00\n", + "Selling STLD on 2022-11-30 00:00:00\n", + "Selling WST on 2022-11-30 00:00:00\n", + "Selling WDAY on 2022-11-30 00:00:00\n", + "Selling CTRA on 2022-11-30 00:00:00\n", + "Selling TPL on 2022-11-30 00:00:00\n", + "Selling ALB on 2022-11-30 00:00:00\n", + "Selling SLB on 2022-11-30 00:00:00\n", + "Selling HAL on 2022-11-30 00:00:00\n", + "Selling AXON on 2022-11-30 00:00:00\n", + "Selling NOW on 2022-11-30 00:00:00\n", + "Selling REGN on 2022-11-30 00:00:00\n", + "Selling MOS on 2022-11-30 00:00:00\n", + "Selling FSLR on 2022-11-30 00:00:00\n", + "Selling FCX on 2022-11-30 00:00:00\n", + "Selling EW on 2022-11-30 00:00:00\n", + "Selling ABNB on 2022-11-30 00:00:00\n", + "Selling DVN on 2022-11-30 00:00:00\n", + "Selling MTCH on 2022-11-30 00:00:00\n", + "Selling CF on 2022-11-30 00:00:00\n", + "Selling MRNA on 2022-11-30 00:00:00\n", + "Selling PLTR on 2022-11-30 00:00:00\n", + "Selling PARA on 2022-11-30 00:00:00\n", + "Selling TSLA on 2022-11-30 00:00:00\n", + "Selling FDX on 2022-11-30 00:00:00\n", + "Selling EQT on 2022-11-30 00:00:00\n", + "Selling DXCM on 2022-11-30 00:00:00\n", + "Selling APA on 2022-11-30 00:00:00\n", + "Selling NFLX on 2022-11-30 00:00:00\n", + "Selling ALGN on 2022-11-30 00:00:00\n", + "Selling WBD on 2022-11-30 00:00:00\n", + "Selling PODD on 2022-11-30 00:00:00\n", + "Selling ENPH on 2022-11-30 00:00:00\n", + "Selling LVS on 2022-11-30 00:00:00\n", + "Selling UBER on 2022-11-30 00:00:00\n", + "Selling KMX on 2022-11-30 00:00:00\n", + "Selling CRWD on 2022-11-30 00:00:00\n", + "Selling SMCI on 2022-11-30 00:00:00\n", + "Selling FICO on 2022-11-30 00:00:00\n", + "Selling META on 2022-11-30 00:00:00\n", + "Selling FIS on 2022-11-30 00:00:00\n", + "Selling RCL on 2022-11-30 00:00:00\n", + "Selling WYNN on 2022-11-30 00:00:00\n", + "Selling GNRC on 2022-11-30 00:00:00\n", + "Selling DVA on 2022-11-30 00:00:00\n", + "Selling NCLH on 2022-11-30 00:00:00\n", + "Selling CCL on 2022-11-30 00:00:00\n", + "Selling BIIB on 2022-11-30 00:00:00\n", + "Buying PG on 2022-12-31 00:00:00\n", + "Buying ITW on 2022-12-31 00:00:00\n", + "Buying KO on 2022-12-31 00:00:00\n", + "Buying BRK-B on 2022-12-31 00:00:00\n", + "Buying CL on 2022-12-31 00:00:00\n", + "Buying FTV on 2022-12-31 00:00:00\n", + "Buying JNJ on 2022-12-31 00:00:00\n", + "Buying WTW on 2022-12-31 00:00:00\n", + "Buying MDLZ on 2022-12-31 00:00:00\n", + "Buying KMB on 2022-12-31 00:00:00\n", + "Buying MET on 2022-12-31 00:00:00\n", + "Buying AME on 2022-12-31 00:00:00\n", + "Buying GRMN on 2022-12-31 00:00:00\n", + "Buying APH on 2022-12-31 00:00:00\n", + "Buying PM on 2022-12-31 00:00:00\n", + "Buying CDW on 2022-12-31 00:00:00\n", + "Buying PAYX on 2022-12-31 00:00:00\n", + "Buying EMR on 2022-12-31 00:00:00\n", + "Buying ADP on 2022-12-31 00:00:00\n", + "Buying MA on 2022-12-31 00:00:00\n", + "Buying CTAS on 2022-12-31 00:00:00\n", + "Buying HON on 2022-12-31 00:00:00\n", + "Buying NDSN on 2022-12-31 00:00:00\n", + "Buying PH on 2022-12-31 00:00:00\n", + "Buying GS on 2022-12-31 00:00:00\n", + "Buying AIG on 2022-12-31 00:00:00\n", + "Buying DOV on 2022-12-31 00:00:00\n", + "Buying CHD on 2022-12-31 00:00:00\n", + "Buying ICE on 2022-12-31 00:00:00\n", + "Buying BSX on 2022-12-31 00:00:00\n", + "Buying CSCO on 2022-12-31 00:00:00\n", + "Buying CSX on 2022-12-31 00:00:00\n", + "Buying AFL on 2022-12-31 00:00:00\n", + "Buying OMC on 2022-12-31 00:00:00\n", + "Buying ETN on 2022-12-31 00:00:00\n", + "Buying PEP on 2022-12-31 00:00:00\n", + "Buying WAB on 2022-12-31 00:00:00\n", + "Buying EA on 2022-12-31 00:00:00\n", + "Buying OTIS on 2022-12-31 00:00:00\n", + "Buying L on 2022-12-31 00:00:00\n", + "Buying SJM on 2022-12-31 00:00:00\n", + "Buying GLW on 2022-12-31 00:00:00\n", + "Buying TXN on 2022-12-31 00:00:00\n", + "Buying IP on 2022-12-31 00:00:00\n", + "Buying IEX on 2022-12-31 00:00:00\n", + "Buying HD on 2022-12-31 00:00:00\n", + "Buying HIG on 2022-12-31 00:00:00\n", + "Buying PPL on 2022-12-31 00:00:00\n", + "Buying DRI on 2022-12-31 00:00:00\n", + "Selling TGT on 2022-12-31 00:00:00\n", + "Selling SLB on 2022-12-31 00:00:00\n", + "Selling EL on 2022-12-31 00:00:00\n", + "Selling CRL on 2022-12-31 00:00:00\n", + "Selling DVN on 2022-12-31 00:00:00\n", + "Selling BLDR on 2022-12-31 00:00:00\n", + "Selling TTWO on 2022-12-31 00:00:00\n", + "Selling ZBRA on 2022-12-31 00:00:00\n", + "Selling LRCX on 2022-12-31 00:00:00\n", + "Selling FCX on 2022-12-31 00:00:00\n", + "Selling DAY on 2022-12-31 00:00:00\n", + "Selling HAL on 2022-12-31 00:00:00\n", + "Selling ALB on 2022-12-31 00:00:00\n", + "Selling ABNB on 2022-12-31 00:00:00\n", + "Selling TPL on 2022-12-31 00:00:00\n", + "Selling CHTR on 2022-12-31 00:00:00\n", + "Selling WDAY on 2022-12-31 00:00:00\n", + "Selling WST on 2022-12-31 00:00:00\n", + "Selling CF on 2022-12-31 00:00:00\n", + "Selling APA on 2022-12-31 00:00:00\n", + "Selling NOW on 2022-12-31 00:00:00\n", + "Selling EW on 2022-12-31 00:00:00\n", + "Selling FSLR on 2022-12-31 00:00:00\n", + "Selling AXON on 2022-12-31 00:00:00\n", + "Selling LVS on 2022-12-31 00:00:00\n", + "Selling RCL on 2022-12-31 00:00:00\n", + "Selling PLTR on 2022-12-31 00:00:00\n", + "Selling MTCH on 2022-12-31 00:00:00\n", + "Selling EQT on 2022-12-31 00:00:00\n", + "Selling PARA on 2022-12-31 00:00:00\n", + "Selling DXCM on 2022-12-31 00:00:00\n", + "Selling NCLH on 2022-12-31 00:00:00\n", + "Selling NFLX on 2022-12-31 00:00:00\n", + "Selling UBER on 2022-12-31 00:00:00\n", + "Selling ALGN on 2022-12-31 00:00:00\n", + "Selling ENPH on 2022-12-31 00:00:00\n", + "Selling PODD on 2022-12-31 00:00:00\n", + "Selling WYNN on 2022-12-31 00:00:00\n", + "Selling WBD on 2022-12-31 00:00:00\n", + "Selling CRWD on 2022-12-31 00:00:00\n", + "Selling TSLA on 2022-12-31 00:00:00\n", + "Selling FICO on 2022-12-31 00:00:00\n", + "Selling CCL on 2022-12-31 00:00:00\n", + "Selling SMCI on 2022-12-31 00:00:00\n", + "Selling FIS on 2022-12-31 00:00:00\n", + "Selling META on 2022-12-31 00:00:00\n", + "Selling GNRC on 2022-12-31 00:00:00\n", + "Selling DVA on 2022-12-31 00:00:00\n", + "Selling MRNA on 2022-12-31 00:00:00\n", + "Buying BRK-B on 2023-01-31 00:00:00\n", + "Buying KO on 2023-01-31 00:00:00\n", + "Buying ITW on 2023-01-31 00:00:00\n", + "Buying WTW on 2023-01-31 00:00:00\n", + "Buying MET on 2023-01-31 00:00:00\n", + "Buying AIG on 2023-01-31 00:00:00\n", + "Buying MDLZ on 2023-01-31 00:00:00\n", + "Buying PEP on 2023-01-31 00:00:00\n", + "Buying AMP on 2023-01-31 00:00:00\n", + "Buying FTV on 2023-01-31 00:00:00\n", + "Buying AME on 2023-01-31 00:00:00\n", + "Buying AMCR on 2023-01-31 00:00:00\n", + "Buying PG on 2023-01-31 00:00:00\n", + "Buying APH on 2023-01-31 00:00:00\n", + "Buying TEL on 2023-01-31 00:00:00\n", + "Buying ABT on 2023-01-31 00:00:00\n", + "Buying MMC on 2023-01-31 00:00:00\n", + "Buying HIG on 2023-01-31 00:00:00\n", + "Buying YUM on 2023-01-31 00:00:00\n", + "Buying JPM on 2023-01-31 00:00:00\n", + "Buying AON on 2023-01-31 00:00:00\n", + "Buying KDP on 2023-01-31 00:00:00\n", + "Buying GRMN on 2023-01-31 00:00:00\n", + "Buying KMB on 2023-01-31 00:00:00\n", + "Buying PM on 2023-01-31 00:00:00\n", + "Buying EA on 2023-01-31 00:00:00\n", + "Buying IEX on 2023-01-31 00:00:00\n", + "Buying LKQ on 2023-01-31 00:00:00\n", + "Buying DUK on 2023-01-31 00:00:00\n", + "Buying WAB on 2023-01-31 00:00:00\n", + "Buying SNA on 2023-01-31 00:00:00\n", + "Buying V on 2023-01-31 00:00:00\n", + "Buying L on 2023-01-31 00:00:00\n", + "Buying MA on 2023-01-31 00:00:00\n", + "Buying JNJ on 2023-01-31 00:00:00\n", + "Buying CB on 2023-01-31 00:00:00\n", + "Buying ICE on 2023-01-31 00:00:00\n", + "Buying ROP on 2023-01-31 00:00:00\n", + "Buying OTIS on 2023-01-31 00:00:00\n", + "Buying CDW on 2023-01-31 00:00:00\n", + "Buying AFL on 2023-01-31 00:00:00\n", + "Buying PPL on 2023-01-31 00:00:00\n", + "Buying HON on 2023-01-31 00:00:00\n", + "Buying IT on 2023-01-31 00:00:00\n", + "Buying BK on 2023-01-31 00:00:00\n", + "Buying PRU on 2023-01-31 00:00:00\n", + "Buying CTAS on 2023-01-31 00:00:00\n", + "Buying MCD on 2023-01-31 00:00:00\n", + "Buying ABBV on 2023-01-31 00:00:00\n", + "Selling DIS on 2023-01-31 00:00:00\n", + "Selling CRM on 2023-01-31 00:00:00\n", + "Selling CTRA on 2023-01-31 00:00:00\n", + "Selling BBY on 2023-01-31 00:00:00\n", + "Selling KMX on 2023-01-31 00:00:00\n", + "Selling PAYC on 2023-01-31 00:00:00\n", + "Selling VLO on 2023-01-31 00:00:00\n", + "Selling MKTX on 2023-01-31 00:00:00\n", + "Selling COF on 2023-01-31 00:00:00\n", + "Selling FTNT on 2023-01-31 00:00:00\n", + "Selling PANW on 2023-01-31 00:00:00\n", + "Selling HAL on 2023-01-31 00:00:00\n", + "Selling NRG on 2023-01-31 00:00:00\n", + "Selling CRL on 2023-01-31 00:00:00\n", + "Selling CF on 2023-01-31 00:00:00\n", + "Selling NFLX on 2023-01-31 00:00:00\n", + "Selling WYNN on 2023-01-31 00:00:00\n", + "Selling ALGN on 2023-01-31 00:00:00\n", + "Selling TGT on 2023-01-31 00:00:00\n", + "Selling HAS on 2023-01-31 00:00:00\n", + "Selling TTWO on 2023-01-31 00:00:00\n", + "Selling LULU on 2023-01-31 00:00:00\n", + "Selling UAL on 2023-01-31 00:00:00\n", + "Selling ALB on 2023-01-31 00:00:00\n", + "Selling MTCH on 2023-01-31 00:00:00\n", + "Selling DAY on 2023-01-31 00:00:00\n", + "Selling RCL on 2023-01-31 00:00:00\n", + "Selling WDAY on 2023-01-31 00:00:00\n", + "Selling WDC on 2023-01-31 00:00:00\n", + "Selling NCLH on 2023-01-31 00:00:00\n", + "Selling GNRC on 2023-01-31 00:00:00\n", + "Selling TPL on 2023-01-31 00:00:00\n", + "Selling APA on 2023-01-31 00:00:00\n", + "Selling CHTR on 2023-01-31 00:00:00\n", + "Selling AXON on 2023-01-31 00:00:00\n", + "Selling EQT on 2023-01-31 00:00:00\n", + "Selling FSLR on 2023-01-31 00:00:00\n", + "Selling PARA on 2023-01-31 00:00:00\n", + "Selling PLTR on 2023-01-31 00:00:00\n", + "Selling CCL on 2023-01-31 00:00:00\n", + "Selling FICO on 2023-01-31 00:00:00\n", + "Selling PODD on 2023-01-31 00:00:00\n", + "Selling ENPH on 2023-01-31 00:00:00\n", + "Selling SMCI on 2023-01-31 00:00:00\n", + "Selling CRWD on 2023-01-31 00:00:00\n", + "Selling WBD on 2023-01-31 00:00:00\n", + "Selling FIS on 2023-01-31 00:00:00\n", + "Selling MRNA on 2023-01-31 00:00:00\n", + "Selling TSLA on 2023-01-31 00:00:00\n", + "Buying BRK-B on 2023-02-28 00:00:00\n", + "Buying WAB on 2023-02-28 00:00:00\n", + "Buying V on 2023-02-28 00:00:00\n", + "Buying KO on 2023-02-28 00:00:00\n", + "Buying KDP on 2023-02-28 00:00:00\n", + "Buying PEP on 2023-02-28 00:00:00\n", + "Buying AME on 2023-02-28 00:00:00\n", + "Buying ITW on 2023-02-28 00:00:00\n", + "Buying JNJ on 2023-02-28 00:00:00\n", + "Buying ICE on 2023-02-28 00:00:00\n", + "Buying ROL on 2023-02-28 00:00:00\n", + "Buying O on 2023-02-28 00:00:00\n", + "Buying PG on 2023-02-28 00:00:00\n", + "Buying TEL on 2023-02-28 00:00:00\n", + "Buying ROP on 2023-02-28 00:00:00\n", + "Buying MMC on 2023-02-28 00:00:00\n", + "Buying APH on 2023-02-28 00:00:00\n", + "Buying BSX on 2023-02-28 00:00:00\n", + "Buying SNA on 2023-02-28 00:00:00\n", + "Buying MA on 2023-02-28 00:00:00\n", + "Buying MDLZ on 2023-02-28 00:00:00\n", + "Buying VRSK on 2023-02-28 00:00:00\n", + "Buying ZBH on 2023-02-28 00:00:00\n", + "Buying HRL on 2023-02-28 00:00:00\n", + "Buying OTIS on 2023-02-28 00:00:00\n", + "Buying AON on 2023-02-28 00:00:00\n", + "Buying CTAS on 2023-02-28 00:00:00\n", + "Buying ABT on 2023-02-28 00:00:00\n", + "Buying DUK on 2023-02-28 00:00:00\n", + "Buying VRSN on 2023-02-28 00:00:00\n", + "Buying AJG on 2023-02-28 00:00:00\n", + "Buying HON on 2023-02-28 00:00:00\n", + "Buying C on 2023-02-28 00:00:00\n", + "Buying AMCR on 2023-02-28 00:00:00\n", + "Buying YUM on 2023-02-28 00:00:00\n", + "Buying JPM on 2023-02-28 00:00:00\n", + "Buying ED on 2023-02-28 00:00:00\n", + "Buying KMB on 2023-02-28 00:00:00\n", + "Buying MCD on 2023-02-28 00:00:00\n", + "Buying WMT on 2023-02-28 00:00:00\n", + "Buying XEL on 2023-02-28 00:00:00\n", + "Buying SPGI on 2023-02-28 00:00:00\n", + "Buying PRU on 2023-02-28 00:00:00\n", + "Buying MNST on 2023-02-28 00:00:00\n", + "Buying TJX on 2023-02-28 00:00:00\n", + "Buying KMI on 2023-02-28 00:00:00\n", + "Buying NI on 2023-02-28 00:00:00\n", + "Buying DOW on 2023-02-28 00:00:00\n", + "Buying NTAP on 2023-02-28 00:00:00\n", + "Selling CTRA on 2023-02-28 00:00:00\n", + "Selling NFLX on 2023-02-28 00:00:00\n", + "Selling STLD on 2023-02-28 00:00:00\n", + "Selling AOS on 2023-02-28 00:00:00\n", + "Selling UBER on 2023-02-28 00:00:00\n", + "Selling FTNT on 2023-02-28 00:00:00\n", + "Selling CZR on 2023-02-28 00:00:00\n", + "Selling KMX on 2023-02-28 00:00:00\n", + "Selling HES on 2023-02-28 00:00:00\n", + "Selling SLB on 2023-02-28 00:00:00\n", + "Selling EXPE on 2023-02-28 00:00:00\n", + "Selling FIS on 2023-02-28 00:00:00\n", + "Selling AMD on 2023-02-28 00:00:00\n", + "Selling NRG on 2023-02-28 00:00:00\n", + "Selling MKTX on 2023-02-28 00:00:00\n", + "Selling CCL on 2023-02-28 00:00:00\n", + "Selling MPWR on 2023-02-28 00:00:00\n", + "Selling WDC on 2023-02-28 00:00:00\n", + "Selling LULU on 2023-02-28 00:00:00\n", + "Selling PANW on 2023-02-28 00:00:00\n", + "Selling CRWD on 2023-02-28 00:00:00\n", + "Selling DVN on 2023-02-28 00:00:00\n", + "Selling VLO on 2023-02-28 00:00:00\n", + "Selling MTCH on 2023-02-28 00:00:00\n", + "Selling ALB on 2023-02-28 00:00:00\n", + "Selling HAL on 2023-02-28 00:00:00\n", + "Selling UAL on 2023-02-28 00:00:00\n", + "Selling APA on 2023-02-28 00:00:00\n", + "Selling TPL on 2023-02-28 00:00:00\n", + "Selling CRL on 2023-02-28 00:00:00\n", + "Selling FSLR on 2023-02-28 00:00:00\n", + "Selling WST on 2023-02-28 00:00:00\n", + "Selling CHTR on 2023-02-28 00:00:00\n", + "Selling PARA on 2023-02-28 00:00:00\n", + "Selling NCLH on 2023-02-28 00:00:00\n", + "Selling BAX on 2023-02-28 00:00:00\n", + "Selling IFF on 2023-02-28 00:00:00\n", + "Selling GNRC on 2023-02-28 00:00:00\n", + "Selling ABNB on 2023-02-28 00:00:00\n", + "Selling NVDA on 2023-02-28 00:00:00\n", + "Selling WBD on 2023-02-28 00:00:00\n", + "Selling EQT on 2023-02-28 00:00:00\n", + "Selling ENPH on 2023-02-28 00:00:00\n", + "Selling META on 2023-02-28 00:00:00\n", + "Selling ALGN on 2023-02-28 00:00:00\n", + "Selling SMCI on 2023-02-28 00:00:00\n", + "Selling MRNA on 2023-02-28 00:00:00\n", + "Selling PLTR on 2023-02-28 00:00:00\n", + "Selling TSLA on 2023-02-28 00:00:00\n", + "Buying BRK-B on 2023-03-31 00:00:00\n", + "Buying V on 2023-03-31 00:00:00\n", + "Buying APH on 2023-03-31 00:00:00\n", + "Buying VRSN on 2023-03-31 00:00:00\n", + "Buying SPGI on 2023-03-31 00:00:00\n", + "Buying TEL on 2023-03-31 00:00:00\n", + "Buying JNJ on 2023-03-31 00:00:00\n", + "Buying KO on 2023-03-31 00:00:00\n", + "Buying KDP on 2023-03-31 00:00:00\n", + "Buying YUM on 2023-03-31 00:00:00\n", + "Buying BSX on 2023-03-31 00:00:00\n", + "Buying ROL on 2023-03-31 00:00:00\n", + "Buying MA on 2023-03-31 00:00:00\n", + "Buying ROP on 2023-03-31 00:00:00\n", + "Buying SBUX on 2023-03-31 00:00:00\n", + "Buying MMC on 2023-03-31 00:00:00\n", + "Buying AAPL on 2023-03-31 00:00:00\n", + "Buying OTIS on 2023-03-31 00:00:00\n", + "Buying ABT on 2023-03-31 00:00:00\n", + "Buying ITW on 2023-03-31 00:00:00\n", + "Buying ZBH on 2023-03-31 00:00:00\n", + "Buying AME on 2023-03-31 00:00:00\n", + "Buying PEP on 2023-03-31 00:00:00\n", + "Buying BLK on 2023-03-31 00:00:00\n", + "Buying HON on 2023-03-31 00:00:00\n", + "Buying AMCR on 2023-03-31 00:00:00\n", + "Buying MCD on 2023-03-31 00:00:00\n", + "Buying DRI on 2023-03-31 00:00:00\n", + "Buying NKE on 2023-03-31 00:00:00\n", + "Buying TDY on 2023-03-31 00:00:00\n", + "Buying SNA on 2023-03-31 00:00:00\n", + "Buying WMT on 2023-03-31 00:00:00\n", + "Buying KMI on 2023-03-31 00:00:00\n", + "Buying NTAP on 2023-03-31 00:00:00\n", + "Buying AON on 2023-03-31 00:00:00\n", + "Buying PG on 2023-03-31 00:00:00\n", + "Buying HOLX on 2023-03-31 00:00:00\n", + "Buying BDX on 2023-03-31 00:00:00\n", + "Buying K on 2023-03-31 00:00:00\n", + "Buying FFIV on 2023-03-31 00:00:00\n", + "Buying CTAS on 2023-03-31 00:00:00\n", + "Buying MDLZ on 2023-03-31 00:00:00\n", + "Buying BR on 2023-03-31 00:00:00\n", + "Buying LMT on 2023-03-31 00:00:00\n", + "Buying TJX on 2023-03-31 00:00:00\n", + "Buying GRMN on 2023-03-31 00:00:00\n", + "Buying KMB on 2023-03-31 00:00:00\n", + "Buying MCO on 2023-03-31 00:00:00\n", + "Buying ICE on 2023-03-31 00:00:00\n", + "Selling KMX on 2023-03-31 00:00:00\n", + "Selling FANG on 2023-03-31 00:00:00\n", + "Selling BXP on 2023-03-31 00:00:00\n", + "Selling SYF on 2023-03-31 00:00:00\n", + "Selling CRWD on 2023-03-31 00:00:00\n", + "Selling MRNA on 2023-03-31 00:00:00\n", + "Selling MKTX on 2023-03-31 00:00:00\n", + "Selling ALB on 2023-03-31 00:00:00\n", + "Selling HES on 2023-03-31 00:00:00\n", + "Selling LULU 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 APA on 2023-03-31 00:00:00\n", + "Selling VLO on 2023-03-31 00:00:00\n", + "Selling WST on 2023-03-31 00:00:00\n", + "Selling MTCH on 2023-03-31 00:00:00\n", + "Selling CRL on 2023-03-31 00:00:00\n", + "Selling BG on 2023-03-31 00:00:00\n", + "Selling HAL on 2023-03-31 00:00:00\n", + "Selling UAL on 2023-03-31 00:00:00\n", + "Selling SLB on 2023-03-31 00:00:00\n", + "Selling USB on 2023-03-31 00:00:00\n", + "Selling DVN on 2023-03-31 00:00:00\n", + "Selling CCL on 2023-03-31 00:00:00\n", + "Selling DXCM on 2023-03-31 00:00:00\n", + "Selling BAX on 2023-03-31 00:00:00\n", + "Selling MPWR on 2023-03-31 00:00:00\n", + "Selling GNRC on 2023-03-31 00:00:00\n", + "Selling WBD on 2023-03-31 00:00:00\n", + "Selling HBAN on 2023-03-31 00:00:00\n", + "Selling VST on 2023-03-31 00:00:00\n", + "Selling STLD on 2023-03-31 00:00:00\n", + "Selling EQT on 2023-03-31 00:00:00\n", + "Selling IFF on 2023-03-31 00:00:00\n", + "Selling NCLH on 2023-03-31 00:00:00\n", + "Selling AMD on 2023-03-31 00:00:00\n", + "Selling NVDA on 2023-03-31 00:00:00\n", + "Selling ABNB on 2023-03-31 00:00:00\n", + "Selling TFC on 2023-03-31 00:00:00\n", + "Selling FIS on 2023-03-31 00:00:00\n", + "Selling ENPH on 2023-03-31 00:00:00\n", + "Selling META on 2023-03-31 00:00:00\n", + "Selling FSLR on 2023-03-31 00:00:00\n", + "Selling TSLA on 2023-03-31 00:00:00\n", + "Selling SCHW 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", + "Selling SMCI on 2023-03-31 00:00:00\n", + "Selling KEY on 2023-03-31 00:00:00\n", + "Buying MCD on 2023-04-30 00:00:00\n", + "Buying BRK-B on 2023-04-30 00:00:00\n", + "Buying KO on 2023-04-30 00:00:00\n", + "Buying MA on 2023-04-30 00:00:00\n", + "Buying V on 2023-04-30 00:00:00\n", + "Buying TDY on 2023-04-30 00:00:00\n", + "Buying ADP on 2023-04-30 00:00:00\n", + "Buying YUM on 2023-04-30 00:00:00\n", + "Buying VRSN on 2023-04-30 00:00:00\n", + "Buying APH on 2023-04-30 00:00:00\n", + "Buying PEP on 2023-04-30 00:00:00\n", + "Buying GLW on 2023-04-30 00:00:00\n", + "Buying IBM on 2023-04-30 00:00:00\n", + "Buying PFE on 2023-04-30 00:00:00\n", + "Buying KHC on 2023-04-30 00:00:00\n", + "Buying SPGI on 2023-04-30 00:00:00\n", + "Buying CPRT on 2023-04-30 00:00:00\n", + "Buying WMB on 2023-04-30 00:00:00\n", + "Buying GD on 2023-04-30 00:00:00\n", + "Buying K on 2023-04-30 00:00:00\n", + "Buying WMT on 2023-04-30 00:00:00\n", + "Buying HON on 2023-04-30 00:00:00\n", + "Buying KMI on 2023-04-30 00:00:00\n", + "Buying TJX on 2023-04-30 00:00:00\n", + "Buying AMCR on 2023-04-30 00:00:00\n", + "Buying BR on 2023-04-30 00:00:00\n", + "Buying BSX on 2023-04-30 00:00:00\n", + "Buying PG on 2023-04-30 00:00:00\n", + "Buying MO on 2023-04-30 00:00:00\n", + "Buying AAPL on 2023-04-30 00:00:00\n", + "Buying LW on 2023-04-30 00:00:00\n", + "Buying NDAQ on 2023-04-30 00:00:00\n", + "Buying ROP on 2023-04-30 00:00:00\n", + "Buying XYL on 2023-04-30 00:00:00\n", + "Buying BDX on 2023-04-30 00:00:00\n", + "Buying HOLX on 2023-04-30 00:00:00\n", + "Buying SBUX on 2023-04-30 00:00:00\n", + "Buying BLK on 2023-04-30 00:00:00\n", + "Buying KMB on 2023-04-30 00:00:00\n", + "Buying MMM on 2023-04-30 00:00:00\n", + "Buying VICI on 2023-04-30 00:00:00\n", + "Buying CTAS on 2023-04-30 00:00:00\n", + "Buying DRI on 2023-04-30 00:00:00\n", + "Buying MCO on 2023-04-30 00:00:00\n", + "Buying TEL on 2023-04-30 00:00:00\n", + "Buying CTSH on 2023-04-30 00:00:00\n", + "Buying GRMN on 2023-04-30 00:00:00\n", + "Buying MNST on 2023-04-30 00:00:00\n", + "Buying GDDY on 2023-04-30 00:00:00\n", + "Selling ON on 2023-04-30 00:00:00\n", + "Selling CFG on 2023-04-30 00:00:00\n", + "Selling DPZ on 2023-04-30 00:00:00\n", + "Selling CRL on 2023-04-30 00:00:00\n", + "Selling URI on 2023-04-30 00:00:00\n", + "Selling CCL on 2023-04-30 00:00:00\n", + "Selling WBD on 2023-04-30 00:00:00\n", + "Selling COP on 2023-04-30 00:00:00\n", + "Selling KMX on 2023-04-30 00:00:00\n", + "Selling CRWD on 2023-04-30 00:00:00\n", + "Selling FANG on 2023-04-30 00:00:00\n", + "Selling PARA on 2023-04-30 00:00:00\n", + "Selling WST on 2023-04-30 00:00:00\n", + "Selling MU on 2023-04-30 00:00:00\n", + "Selling HES on 2023-04-30 00:00:00\n", + "Selling UAL on 2023-04-30 00:00:00\n", + "Selling MRNA on 2023-04-30 00:00:00\n", + "Selling FITB on 2023-04-30 00:00:00\n", + "Selling BG on 2023-04-30 00:00:00\n", + "Selling MPWR on 2023-04-30 00:00:00\n", + "Selling USB on 2023-04-30 00:00:00\n", + "Selling GNRC on 2023-04-30 00:00:00\n", + "Selling DXCM on 2023-04-30 00:00:00\n", + "Selling DVN on 2023-04-30 00:00:00\n", + "Selling NCLH on 2023-04-30 00:00:00\n", + "Selling MKTX on 2023-04-30 00:00:00\n", + "Selling EQT on 2023-04-30 00:00:00\n", + "Selling VLO on 2023-04-30 00:00:00\n", + "Selling NVDA on 2023-04-30 00:00:00\n", + "Selling SLB on 2023-04-30 00:00:00\n", + "Selling APA on 2023-04-30 00:00:00\n", + "Selling HBAN on 2023-04-30 00:00:00\n", + "Selling VST on 2023-04-30 00:00:00\n", + "Selling IFF on 2023-04-30 00:00:00\n", + "Selling HAL on 2023-04-30 00:00:00\n", + "Selling STLD on 2023-04-30 00:00:00\n", + "Selling ABNB on 2023-04-30 00:00:00\n", + "Selling ALB on 2023-04-30 00:00:00\n", + "Selling FIS 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 META on 2023-04-30 00:00:00\n", + "Selling FSLR on 2023-04-30 00:00:00\n", + "Selling SCHW on 2023-04-30 00:00:00\n", + "Selling SMCI on 2023-04-30 00:00:00\n", + "Selling PLTR on 2023-04-30 00:00:00\n", + "Selling ALGN on 2023-04-30 00:00:00\n", + "Selling KEY on 2023-04-30 00:00:00\n", + "Selling ENPH on 2023-04-30 00:00:00\n", + "Buying MCD on 2023-05-31 00:00:00\n", + "Buying KO on 2023-05-31 00:00:00\n", + "Buying BRK-B on 2023-05-31 00:00:00\n", + "Buying WMT on 2023-05-31 00:00:00\n", + "Buying TJX on 2023-05-31 00:00:00\n", + "Buying AAPL on 2023-05-31 00:00:00\n", + "Buying MA on 2023-05-31 00:00:00\n", + "Buying APH on 2023-05-31 00:00:00\n", + "Buying V 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 MO on 2023-05-31 00:00:00\n", + "Buying TDY on 2023-05-31 00:00:00\n", + "Buying GD on 2023-05-31 00:00:00\n", + "Buying HON on 2023-05-31 00:00:00\n", + "Buying ADP on 2023-05-31 00:00:00\n", + "Buying GRMN on 2023-05-31 00:00:00\n", + "Buying VRSN on 2023-05-31 00:00:00\n", + "Buying ROP on 2023-05-31 00:00:00\n", + "Buying KHC on 2023-05-31 00:00:00\n", + "Buying LW on 2023-05-31 00:00:00\n", + "Buying IBM on 2023-05-31 00:00:00\n", + "Buying HSY on 2023-05-31 00:00:00\n", + "Buying MMC on 2023-05-31 00:00:00\n", + "Buying FAST on 2023-05-31 00:00:00\n", + "Buying LIN on 2023-05-31 00:00:00\n", + "Buying SPGI on 2023-05-31 00:00:00\n", + "Buying HRL on 2023-05-31 00:00:00\n", + "Buying NDAQ on 2023-05-31 00:00:00\n", + "Buying PTC on 2023-05-31 00:00:00\n", + "Buying KMI on 2023-05-31 00:00:00\n", + "Buying GIS on 2023-05-31 00:00:00\n", + "Buying TEL on 2023-05-31 00:00:00\n", + "Buying SJM on 2023-05-31 00:00:00\n", + "Buying MNST on 2023-05-31 00:00:00\n", + "Buying BEN on 2023-05-31 00:00:00\n", + "Buying EA on 2023-05-31 00:00:00\n", + "Buying PG on 2023-05-31 00:00:00\n", + "Buying ECL on 2023-05-31 00:00:00\n", + "Buying WM on 2023-05-31 00:00:00\n", + "Buying BDX on 2023-05-31 00:00:00\n", + "Buying GLW on 2023-05-31 00:00:00\n", + "Buying MCO on 2023-05-31 00:00:00\n", + "Buying CL on 2023-05-31 00:00:00\n", + "Buying NDSN on 2023-05-31 00:00:00\n", + "Buying WMB on 2023-05-31 00:00:00\n", + "Buying BF-B on 2023-05-31 00:00:00\n", + "Buying YUM on 2023-05-31 00:00:00\n", + "Buying UNP on 2023-05-31 00:00:00\n", + "Selling PYPL on 2023-05-31 00:00:00\n", + "Selling MKTX on 2023-05-31 00:00:00\n", + "Selling MTCH on 2023-05-31 00:00:00\n", + "Selling FIS on 2023-05-31 00:00:00\n", + "Selling BG on 2023-05-31 00:00:00\n", + "Selling URI on 2023-05-31 00:00:00\n", + "Selling EL on 2023-05-31 00:00:00\n", + "Selling STLD on 2023-05-31 00:00:00\n", + "Selling SLB on 2023-05-31 00:00:00\n", + "Selling TSLA on 2023-05-31 00:00:00\n", + "Selling BLDR on 2023-05-31 00:00:00\n", + "Selling BXP on 2023-05-31 00:00:00\n", + "Selling ALGN on 2023-05-31 00:00:00\n", + "Selling CRWD on 2023-05-31 00:00:00\n", + "Selling HAL on 2023-05-31 00:00:00\n", + "Selling UBER on 2023-05-31 00:00:00\n", + "Selling UAL on 2023-05-31 00:00:00\n", + "Selling INTC on 2023-05-31 00:00:00\n", + "Selling NCLH on 2023-05-31 00:00:00\n", + "Selling EPAM on 2023-05-31 00:00:00\n", + "Selling APA on 2023-05-31 00:00:00\n", + "Selling WBD on 2023-05-31 00:00:00\n", + "Selling ON on 2023-05-31 00:00:00\n", + "Selling USB on 2023-05-31 00:00:00\n", + "Selling DLR on 2023-05-31 00:00:00\n", + "Selling WDC on 2023-05-31 00:00:00\n", + "Selling TSN on 2023-05-31 00:00:00\n", + "Selling ABNB on 2023-05-31 00:00:00\n", + "Selling AXON on 2023-05-31 00:00:00\n", + "Selling FITB on 2023-05-31 00:00:00\n", + "Selling CCL on 2023-05-31 00:00:00\n", + "Selling MU on 2023-05-31 00:00:00\n", + "Selling MRNA on 2023-05-31 00:00:00\n", + "Selling CFG on 2023-05-31 00:00:00\n", + "Selling HBAN on 2023-05-31 00:00:00\n", + "Selling ALB on 2023-05-31 00:00:00\n", + "Selling GNRC on 2023-05-31 00:00:00\n", + "Selling ANET on 2023-05-31 00:00:00\n", + "Selling AMD on 2023-05-31 00:00:00\n", + "Selling TFC on 2023-05-31 00:00:00\n", + "Selling SCHW on 2023-05-31 00:00:00\n", + "Selling NVDA on 2023-05-31 00:00:00\n", + "Selling MPWR on 2023-05-31 00:00:00\n", + "Selling FSLR on 2023-05-31 00:00:00\n", + "Selling ENPH on 2023-05-31 00:00:00\n", + "Selling PARA on 2023-05-31 00:00:00\n", + "Selling PLTR on 2023-05-31 00:00:00\n", + "Selling KEY on 2023-05-31 00:00:00\n", + "Selling SMCI on 2023-05-31 00:00:00\n", + "Buying BRK-B on 2023-06-30 00:00:00\n", + "Buying MCD on 2023-06-30 00:00:00\n", + "Buying KO on 2023-06-30 00:00:00\n", + "Buying WMT on 2023-06-30 00:00:00\n", + "Buying AAPL on 2023-06-30 00:00:00\n", + "Buying PEP on 2023-06-30 00:00:00\n", + "Buying CTAS on 2023-06-30 00:00:00\n", + "Buying HON on 2023-06-30 00:00:00\n", + "Buying WM on 2023-06-30 00:00:00\n", + "Buying TJX on 2023-06-30 00:00:00\n", + "Buying APH on 2023-06-30 00:00:00\n", + "Buying MO on 2023-06-30 00:00:00\n", + "Buying LIN on 2023-06-30 00:00:00\n", + "Buying ROP on 2023-06-30 00:00:00\n", + "Buying SPGI on 2023-06-30 00:00:00\n", + "Buying MMC on 2023-06-30 00:00:00\n", + "Buying VRSN on 2023-06-30 00:00:00\n", + "Buying LW on 2023-06-30 00:00:00\n", + "Buying ADP on 2023-06-30 00:00:00\n", + "Buying MA on 2023-06-30 00:00:00\n", + "Buying GL on 2023-06-30 00:00:00\n", + "Buying IBM on 2023-06-30 00:00:00\n", + "Buying MCO on 2023-06-30 00:00:00\n", + "Buying ED on 2023-06-30 00:00:00\n", + "Buying PPL on 2023-06-30 00:00:00\n", + "Buying EA on 2023-06-30 00:00:00\n", + "Buying V on 2023-06-30 00:00:00\n", + "Buying O on 2023-06-30 00:00:00\n", + "Buying CL on 2023-06-30 00:00:00\n", + "Buying KMB on 2023-06-30 00:00:00\n", + "Buying KHC on 2023-06-30 00:00:00\n", + "Buying TDY on 2023-06-30 00:00:00\n", + "Buying GD on 2023-06-30 00:00:00\n", + "Buying PG on 2023-06-30 00:00:00\n", + "Buying COR on 2023-06-30 00:00:00\n", + "Buying GRMN on 2023-06-30 00:00:00\n", + "Buying RSG on 2023-06-30 00:00:00\n", + "Buying PEG on 2023-06-30 00:00:00\n", + "Buying AJG on 2023-06-30 00:00:00\n", + "Buying ECL on 2023-06-30 00:00:00\n", + "Buying JNJ on 2023-06-30 00:00:00\n", + "Buying DTE on 2023-06-30 00:00:00\n", + "Buying STZ on 2023-06-30 00:00:00\n", + "Buying TEL on 2023-06-30 00:00:00\n", + "Buying FI on 2023-06-30 00:00:00\n", + "Buying AFL on 2023-06-30 00:00:00\n", + "Buying CSCO on 2023-06-30 00:00:00\n", + "Buying COST on 2023-06-30 00:00:00\n", + "Buying ICE on 2023-06-30 00:00:00\n", + "Selling DLR on 2023-06-30 00:00:00\n", + "Selling HAL on 2023-06-30 00:00:00\n", + "Selling CF on 2023-06-30 00:00:00\n", + "Selling URI on 2023-06-30 00:00:00\n", + "Selling ODFL on 2023-06-30 00:00:00\n", + "Selling CZR on 2023-06-30 00:00:00\n", + "Selling DLTR on 2023-06-30 00:00:00\n", + "Selling MKTX on 2023-06-30 00:00:00\n", + "Selling ON on 2023-06-30 00:00:00\n", + "Selling PYPL on 2023-06-30 00:00:00\n", + "Selling DVA on 2023-06-30 00:00:00\n", + "Selling TFC on 2023-06-30 00:00:00\n", + "Selling ALGN on 2023-06-30 00:00:00\n", + "Selling ULTA on 2023-06-30 00:00:00\n", + "Selling MU on 2023-06-30 00:00:00\n", + "Selling CFG on 2023-06-30 00:00:00\n", + "Selling MRNA on 2023-06-30 00:00:00\n", + "Selling WDC on 2023-06-30 00:00:00\n", + "Selling BXP on 2023-06-30 00:00:00\n", + "Selling INTC on 2023-06-30 00:00:00\n", + "Selling MOS on 2023-06-30 00:00:00\n", + "Selling UBER on 2023-06-30 00:00:00\n", + "Selling TSLA on 2023-06-30 00:00:00\n", + "Selling BLDR on 2023-06-30 00:00:00\n", + "Selling ABNB on 2023-06-30 00:00:00\n", + "Selling EL on 2023-06-30 00:00:00\n", + "Selling CRWD on 2023-06-30 00:00:00\n", + "Selling TSN on 2023-06-30 00:00:00\n", + "Selling MTCH on 2023-06-30 00:00:00\n", + "Selling BALL on 2023-06-30 00:00:00\n", + "Selling AXON on 2023-06-30 00:00:00\n", + "Selling KMX on 2023-06-30 00:00:00\n", + "Selling NCLH on 2023-06-30 00:00:00\n", + "Selling WBD on 2023-06-30 00:00:00\n", + "Selling DG on 2023-06-30 00:00:00\n", + "Selling ALB on 2023-06-30 00:00:00\n", + "Selling ANET on 2023-06-30 00:00:00\n", + "Selling CCL on 2023-06-30 00:00:00\n", + "Selling KEY on 2023-06-30 00:00:00\n", + "Selling AMD on 2023-06-30 00:00:00\n", + "Selling GNRC on 2023-06-30 00:00:00\n", + "Selling MPWR on 2023-06-30 00:00:00\n", + "Selling NVDA on 2023-06-30 00:00:00\n", + "Selling EPAM on 2023-06-30 00:00:00\n", + "Selling ENPH on 2023-06-30 00:00:00\n", + "Selling FSLR on 2023-06-30 00:00:00\n", + "Selling PARA on 2023-06-30 00:00:00\n", + "Selling PLTR on 2023-06-30 00:00:00\n", + "Selling SMCI on 2023-06-30 00:00:00\n", + "Buying BRK-B on 2023-07-31 00:00:00\n", + "Buying AME on 2023-07-31 00:00:00\n", + "Buying MCD on 2023-07-31 00:00:00\n", + "Buying MMC on 2023-07-31 00:00:00\n", + "Buying AAPL on 2023-07-31 00:00:00\n", + "Buying WMT on 2023-07-31 00:00:00\n", + "Buying TJX on 2023-07-31 00:00:00\n", + "Buying KO on 2023-07-31 00:00:00\n", + "Buying ROP on 2023-07-31 00:00:00\n", + "Buying MO on 2023-07-31 00:00:00\n", + "Buying MCO on 2023-07-31 00:00:00\n", + "Buying BR on 2023-07-31 00:00:00\n", + "Buying AFL on 2023-07-31 00:00:00\n", + "Buying RSG on 2023-07-31 00:00:00\n", + "Buying COST on 2023-07-31 00:00:00\n", + "Buying PM on 2023-07-31 00:00:00\n", + "Buying KHC on 2023-07-31 00:00:00\n", + "Buying COR on 2023-07-31 00:00:00\n", + "Buying ECL on 2023-07-31 00:00:00\n", + "Buying CTAS on 2023-07-31 00:00:00\n", + "Buying V on 2023-07-31 00:00:00\n", + "Buying CL on 2023-07-31 00:00:00\n", + "Buying CHD on 2023-07-31 00:00:00\n", + "Buying ICE on 2023-07-31 00:00:00\n", + "Buying GD on 2023-07-31 00:00:00\n", + "Buying IBM on 2023-07-31 00:00:00\n", + "Buying PEP on 2023-07-31 00:00:00\n", + "Buying JPM on 2023-07-31 00:00:00\n", + "Buying BLK on 2023-07-31 00:00:00\n", + "Buying CSCO on 2023-07-31 00:00:00\n", + "Buying MA on 2023-07-31 00:00:00\n", + "Buying PG on 2023-07-31 00:00:00\n", + "Buying LMT on 2023-07-31 00:00:00\n", + "Buying KMB on 2023-07-31 00:00:00\n", + "Buying L on 2023-07-31 00:00:00\n", + "Buying GRMN on 2023-07-31 00:00:00\n", + "Buying NSC on 2023-07-31 00:00:00\n", + "Buying VRSK on 2023-07-31 00:00:00\n", + "Buying GL on 2023-07-31 00:00:00\n", + "Buying YUM on 2023-07-31 00:00:00\n", + "Buying ED on 2023-07-31 00:00:00\n", + "Buying TEL 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 PPL on 2023-07-31 00:00:00\n", + "Buying PEG on 2023-07-31 00:00:00\n", + "Buying BRO on 2023-07-31 00:00:00\n", + "Buying PTC on 2023-07-31 00:00:00\n", + "Buying MNST on 2023-07-31 00:00:00\n", + "Selling APA on 2023-07-31 00:00:00\n", + "Selling KMX on 2023-07-31 00:00:00\n", + "Selling NTRS on 2023-07-31 00:00:00\n", + "Selling DLTR on 2023-07-31 00:00:00\n", + "Selling WDC on 2023-07-31 00:00:00\n", + "Selling LRCX on 2023-07-31 00:00:00\n", + "Selling DVA on 2023-07-31 00:00:00\n", + "Selling NFLX on 2023-07-31 00:00:00\n", + "Selling PANW on 2023-07-31 00:00:00\n", + "Selling SCHW on 2023-07-31 00:00:00\n", + "Selling HAL on 2023-07-31 00:00:00\n", + "Selling TFC on 2023-07-31 00:00:00\n", + "Selling LYV on 2023-07-31 00:00:00\n", + "Selling ULTA on 2023-07-31 00:00:00\n", + "Selling DFS on 2023-07-31 00:00:00\n", + "Selling MRNA on 2023-07-31 00:00:00\n", + "Selling CZR on 2023-07-31 00:00:00\n", + "Selling PGR on 2023-07-31 00:00:00\n", + "Selling PYPL on 2023-07-31 00:00:00\n", + "Selling CRWD on 2023-07-31 00:00:00\n", + "Selling BXP on 2023-07-31 00:00:00\n", + "Selling ALB on 2023-07-31 00:00:00\n", + "Selling ABNB on 2023-07-31 00:00:00\n", + "Selling CFG on 2023-07-31 00:00:00\n", + "Selling IPG on 2023-07-31 00:00:00\n", + "Selling MOS on 2023-07-31 00:00:00\n", + "Selling NCLH on 2023-07-31 00:00:00\n", + "Selling TSLA on 2023-07-31 00:00:00\n", + "Selling BALL on 2023-07-31 00:00:00\n", + "Selling MTCH on 2023-07-31 00:00:00\n", + "Selling TSN on 2023-07-31 00:00:00\n", + "Selling INTC on 2023-07-31 00:00:00\n", + "Selling ALGN on 2023-07-31 00:00:00\n", + "Selling AXON on 2023-07-31 00:00:00\n", + "Selling ANET on 2023-07-31 00:00:00\n", + "Selling ENPH on 2023-07-31 00:00:00\n", + "Selling WBD on 2023-07-31 00:00:00\n", + "Selling AMD on 2023-07-31 00:00:00\n", + "Selling DG on 2023-07-31 00:00:00\n", + "Selling GNRC on 2023-07-31 00:00:00\n", + "Selling CCL on 2023-07-31 00:00:00\n", + "Selling KEY on 2023-07-31 00:00:00\n", + "Selling NVDA on 2023-07-31 00:00:00\n", + "Selling MPWR on 2023-07-31 00:00:00\n", + "Selling EPAM on 2023-07-31 00:00:00\n", + "Selling FSLR on 2023-07-31 00:00:00\n", + "Selling SMCI on 2023-07-31 00:00:00\n", + "Selling PARA on 2023-07-31 00:00:00\n", + "Selling PLTR on 2023-07-31 00:00:00\n", + "Buying MCD on 2023-08-31 00:00:00\n", + "Buying MMC on 2023-08-31 00:00:00\n", + "Buying AME on 2023-08-31 00:00:00\n", + "Buying KO on 2023-08-31 00:00:00\n", + "Buying BRK-B on 2023-08-31 00:00:00\n", + "Buying PM on 2023-08-31 00:00:00\n", + "Buying ROP on 2023-08-31 00:00:00\n", + "Buying COST on 2023-08-31 00:00:00\n", + "Buying YUM on 2023-08-31 00:00:00\n", + "Buying PG on 2023-08-31 00:00:00\n", + "Buying CTAS on 2023-08-31 00:00:00\n", + "Buying V on 2023-08-31 00:00:00\n", + "Buying WMT on 2023-08-31 00:00:00\n", + "Buying MO on 2023-08-31 00:00:00\n", + "Buying MCO on 2023-08-31 00:00:00\n", + "Buying TEL on 2023-08-31 00:00:00\n", + "Buying KHC on 2023-08-31 00:00:00\n", + "Buying ECL on 2023-08-31 00:00:00\n", + "Buying KMB on 2023-08-31 00:00:00\n", + "Buying GD on 2023-08-31 00:00:00\n", + "Buying MA on 2023-08-31 00:00:00\n", + "Buying ICE on 2023-08-31 00:00:00\n", + "Buying CL on 2023-08-31 00:00:00\n", + "Buying COO on 2023-08-31 00:00:00\n", + "Buying PEP on 2023-08-31 00:00:00\n", + "Buying CHD on 2023-08-31 00:00:00\n", + "Buying IBM on 2023-08-31 00:00:00\n", + "Buying L on 2023-08-31 00:00:00\n", + "Buying FI on 2023-08-31 00:00:00\n", + "Buying BLK on 2023-08-31 00:00:00\n", + "Buying GRMN on 2023-08-31 00:00:00\n", + "Buying OTIS on 2023-08-31 00:00:00\n", + "Buying SYY on 2023-08-31 00:00:00\n", + "Buying LMT on 2023-08-31 00:00:00\n", + "Buying AMP on 2023-08-31 00:00:00\n", + "Buying RSG on 2023-08-31 00:00:00\n", + "Buying MSI on 2023-08-31 00:00:00\n", + "Buying LIN on 2023-08-31 00:00:00\n", + "Buying IR on 2023-08-31 00:00:00\n", + "Buying GL on 2023-08-31 00:00:00\n", + "Buying MDLZ on 2023-08-31 00:00:00\n", + "Buying TJX on 2023-08-31 00:00:00\n", + "Buying ATO on 2023-08-31 00:00:00\n", + "Buying DD on 2023-08-31 00:00:00\n", + "Buying JPM on 2023-08-31 00:00:00\n", + "Buying VRSK on 2023-08-31 00:00:00\n", + "Buying COR on 2023-08-31 00:00:00\n", + "Buying AAPL on 2023-08-31 00:00:00\n", + "Buying SHW on 2023-08-31 00:00:00\n", + "Selling FSLR on 2023-08-31 00:00:00\n", + "Selling STT on 2023-08-31 00:00:00\n", + "Selling KMX on 2023-08-31 00:00:00\n", + "Selling KEYS on 2023-08-31 00:00:00\n", + "Selling DG on 2023-08-31 00:00:00\n", + "Selling HUM on 2023-08-31 00:00:00\n", + "Selling APA on 2023-08-31 00:00:00\n", + "Selling MTCH on 2023-08-31 00:00:00\n", + "Selling CFG on 2023-08-31 00:00:00\n", + "Selling MPWR on 2023-08-31 00:00:00\n", + "Selling LRCX on 2023-08-31 00:00:00\n", + "Selling PYPL on 2023-08-31 00:00:00\n", + "Selling DXCM on 2023-08-31 00:00:00\n", + "Selling NVDA on 2023-08-31 00:00:00\n", + "Selling SCHW on 2023-08-31 00:00:00\n", + "Selling AMD on 2023-08-31 00:00:00\n", + "Selling BXP on 2023-08-31 00:00:00\n", + "Selling NTRS on 2023-08-31 00:00:00\n", + "Selling PARA on 2023-08-31 00:00:00\n", + "Selling PODD on 2023-08-31 00:00:00\n", + "Selling LLY on 2023-08-31 00:00:00\n", + "Selling TPL on 2023-08-31 00:00:00\n", + "Selling IPG on 2023-08-31 00:00:00\n", + "Selling BLDR on 2023-08-31 00:00:00\n", + "Selling TPR on 2023-08-31 00:00:00\n", + "Selling CRWD on 2023-08-31 00:00:00\n", + "Selling PGR on 2023-08-31 00:00:00\n", + "Selling PAYC on 2023-08-31 00:00:00\n", + "Selling ALGN on 2023-08-31 00:00:00\n", + "Selling ERIE on 2023-08-31 00:00:00\n", + "Selling AXON on 2023-08-31 00:00:00\n", + "Selling ENPH on 2023-08-31 00:00:00\n", + "Selling DFS on 2023-08-31 00:00:00\n", + "Selling TSLA on 2023-08-31 00:00:00\n", + "Selling RMD on 2023-08-31 00:00:00\n", + "Selling MRNA on 2023-08-31 00:00:00\n", + "Selling EXPE on 2023-08-31 00:00:00\n", + "Selling KEY on 2023-08-31 00:00:00\n", + "Selling PANW on 2023-08-31 00:00:00\n", + "Selling NCLH on 2023-08-31 00:00:00\n", + "Selling IFF on 2023-08-31 00:00:00\n", + "Selling ZBRA on 2023-08-31 00:00:00\n", + "Selling WBD on 2023-08-31 00:00:00\n", + "Selling CCL on 2023-08-31 00:00:00\n", + "Selling PLTR on 2023-08-31 00:00:00\n", + "Selling ANET on 2023-08-31 00:00:00\n", + "Selling FTNT on 2023-08-31 00:00:00\n", + "Selling GNRC on 2023-08-31 00:00:00\n", + "Selling SMCI on 2023-08-31 00:00:00\n", + "Buying MO on 2023-09-30 00:00:00\n", + "Buying MMC on 2023-09-30 00:00:00\n", + "Buying AME on 2023-09-30 00:00:00\n", + "Buying KO on 2023-09-30 00:00:00\n", + "Buying MCD on 2023-09-30 00:00:00\n", + "Buying MA on 2023-09-30 00:00:00\n", + "Buying TEL on 2023-09-30 00:00:00\n", + "Buying BRK-B on 2023-09-30 00:00:00\n", + "Buying ROP on 2023-09-30 00:00:00\n", + "Buying WMT on 2023-09-30 00:00:00\n", + "Buying V on 2023-09-30 00:00:00\n", + "Buying PM on 2023-09-30 00:00:00\n", + "Buying COST on 2023-09-30 00:00:00\n", + "Buying HD on 2023-09-30 00:00:00\n", + "Buying PG on 2023-09-30 00:00:00\n", + "Buying L on 2023-09-30 00:00:00\n", + "Buying MCO on 2023-09-30 00:00:00\n", + "Buying GRMN on 2023-09-30 00:00:00\n", + "Buying BLK on 2023-09-30 00:00:00\n", + "Buying K on 2023-09-30 00:00:00\n", + "Buying YUM on 2023-09-30 00:00:00\n", + "Buying LIN on 2023-09-30 00:00:00\n", + "Buying OTIS on 2023-09-30 00:00:00\n", + "Buying JPM on 2023-09-30 00:00:00\n", + "Buying IBM on 2023-09-30 00:00:00\n", + "Buying ECL on 2023-09-30 00:00:00\n", + "Buying FI on 2023-09-30 00:00:00\n", + "Buying NDSN on 2023-09-30 00:00:00\n", + "Buying GL on 2023-09-30 00:00:00\n", + "Buying MSI on 2023-09-30 00:00:00\n", + "Buying CHD on 2023-09-30 00:00:00\n", + "Buying AMP on 2023-09-30 00:00:00\n", + "Buying KMB on 2023-09-30 00:00:00\n", + "Buying VRSK on 2023-09-30 00:00:00\n", + "Buying TJX on 2023-09-30 00:00:00\n", + "Buying CL on 2023-09-30 00:00:00\n", + "Buying GD on 2023-09-30 00:00:00\n", + "Buying LH on 2023-09-30 00:00:00\n", + "Buying PEP on 2023-09-30 00:00:00\n", + "Buying KHC on 2023-09-30 00:00:00\n", + "Buying DD on 2023-09-30 00:00:00\n", + "Buying TMUS on 2023-09-30 00:00:00\n", + "Buying RSG on 2023-09-30 00:00:00\n", + "Buying CME on 2023-09-30 00:00:00\n", + "Buying WY on 2023-09-30 00:00:00\n", + "Buying ICE on 2023-09-30 00:00:00\n", + "Buying SHW on 2023-09-30 00:00:00\n", + "Buying PTC on 2023-09-30 00:00:00\n", + "Buying PAYX on 2023-09-30 00:00:00\n", + "Selling CFG on 2023-09-30 00:00:00\n", + "Selling KEYS on 2023-09-30 00:00:00\n", + "Selling NVDA on 2023-09-30 00:00:00\n", + "Selling MPWR on 2023-09-30 00:00:00\n", + "Selling LRCX on 2023-09-30 00:00:00\n", + "Selling ORCL on 2023-09-30 00:00:00\n", + "Selling MOS on 2023-09-30 00:00:00\n", + "Selling FMC on 2023-09-30 00:00:00\n", + "Selling PYPL on 2023-09-30 00:00:00\n", + "Selling SCHW on 2023-09-30 00:00:00\n", + "Selling APA on 2023-09-30 00:00:00\n", + "Selling DG on 2023-09-30 00:00:00\n", + "Selling FSLR on 2023-09-30 00:00:00\n", + "Selling KMX on 2023-09-30 00:00:00\n", + "Selling IPG on 2023-09-30 00:00:00\n", + "Selling NTRS on 2023-09-30 00:00:00\n", + "Selling LLY on 2023-09-30 00:00:00\n", + "Selling TPR on 2023-09-30 00:00:00\n", + "Selling PAYC on 2023-09-30 00:00:00\n", + "Selling STX on 2023-09-30 00:00:00\n", + "Selling CRWD on 2023-09-30 00:00:00\n", + "Selling PGR on 2023-09-30 00:00:00\n", + "Selling AXON on 2023-09-30 00:00:00\n", + "Selling BLDR on 2023-09-30 00:00:00\n", + "Selling TPL on 2023-09-30 00:00:00\n", + "Selling DFS on 2023-09-30 00:00:00\n", + "Selling DXCM on 2023-09-30 00:00:00\n", + "Selling KEY on 2023-09-30 00:00:00\n", + "Selling PODD on 2023-09-30 00:00:00\n", + "Selling ERIE on 2023-09-30 00:00:00\n", + "Selling TSLA on 2023-09-30 00:00:00\n", + "Selling ENPH on 2023-09-30 00:00:00\n", + "Selling PARA on 2023-09-30 00:00:00\n", + "Selling EXPE on 2023-09-30 00:00:00\n", + "Selling ALGN on 2023-09-30 00:00:00\n", + "Selling NCLH on 2023-09-30 00:00:00\n", + "Selling PANW on 2023-09-30 00:00:00\n", + "Selling JBL on 2023-09-30 00:00:00\n", + "Selling IFF on 2023-09-30 00:00:00\n", + "Selling RMD on 2023-09-30 00:00:00\n", + "Selling ZBRA on 2023-09-30 00:00:00\n", + "Selling WBD on 2023-09-30 00:00:00\n", + "Selling MRNA on 2023-09-30 00:00:00\n", + "Selling DELL on 2023-09-30 00:00:00\n", + "Selling ANET on 2023-09-30 00:00:00\n", + "Selling PLTR on 2023-09-30 00:00:00\n", + "Selling FTNT on 2023-09-30 00:00:00\n", + "Selling GNRC on 2023-09-30 00:00:00\n", + "Selling SMCI on 2023-09-30 00:00:00\n", + "Buying BRK-B on 2023-10-31 00:00:00\n", + "Buying ROP on 2023-10-31 00:00:00\n", + "Buying MMC on 2023-10-31 00:00:00\n", + "Buying GRMN on 2023-10-31 00:00:00\n", + "Buying OTIS on 2023-10-31 00:00:00\n", + "Buying HD on 2023-10-31 00:00:00\n", + "Buying HON on 2023-10-31 00:00:00\n", + "Buying WMT on 2023-10-31 00:00:00\n", + "Buying AFL on 2023-10-31 00:00:00\n", + "Buying EA on 2023-10-31 00:00:00\n", + "Buying APH on 2023-10-31 00:00:00\n", + "Buying L on 2023-10-31 00:00:00\n", + "Buying AME on 2023-10-31 00:00:00\n", + "Buying SPGI on 2023-10-31 00:00:00\n", + "Buying ANSS on 2023-10-31 00:00:00\n", + "Buying BLK on 2023-10-31 00:00:00\n", + "Buying AJG on 2023-10-31 00:00:00\n", + "Buying CTSH on 2023-10-31 00:00:00\n", + "Buying EMR on 2023-10-31 00:00:00\n", + "Buying V on 2023-10-31 00:00:00\n", + "Buying CPRT on 2023-10-31 00:00:00\n", + "Buying CDW on 2023-10-31 00:00:00\n", + "Buying LIN on 2023-10-31 00:00:00\n", + "Buying MSI on 2023-10-31 00:00:00\n", + "Buying PG on 2023-10-31 00:00:00\n", + "Buying TEL on 2023-10-31 00:00:00\n", + "Buying COST on 2023-10-31 00:00:00\n", + "Buying HWM on 2023-10-31 00:00:00\n", + "Buying DD on 2023-10-31 00:00:00\n", + "Buying CSCO on 2023-10-31 00:00:00\n", + "Buying VRSK on 2023-10-31 00:00:00\n", + "Buying GLW on 2023-10-31 00:00:00\n", + "Buying TXN on 2023-10-31 00:00:00\n", + "Buying OMC on 2023-10-31 00:00:00\n", + "Buying ICE on 2023-10-31 00:00:00\n", + "Buying TJX on 2023-10-31 00:00:00\n", + "Buying CTAS on 2023-10-31 00:00:00\n", + "Buying CME on 2023-10-31 00:00:00\n", + "Buying RSG on 2023-10-31 00:00:00\n", + "Buying MA on 2023-10-31 00:00:00\n", + "Buying JPM on 2023-10-31 00:00:00\n", + "Buying VRTX on 2023-10-31 00:00:00\n", + "Buying AVY on 2023-10-31 00:00:00\n", + "Buying GL on 2023-10-31 00:00:00\n", + "Buying TMUS on 2023-10-31 00:00:00\n", + "Buying APD on 2023-10-31 00:00:00\n", + "Buying ITW on 2023-10-31 00:00:00\n", + "Buying NDSN on 2023-10-31 00:00:00\n", + "Buying COR on 2023-10-31 00:00:00\n", + "Selling TPL on 2023-10-31 00:00:00\n", + "Selling MPWR on 2023-10-31 00:00:00\n", + "Selling INTC on 2023-10-31 00:00:00\n", + "Selling RMD on 2023-10-31 00:00:00\n", + "Selling CRWD on 2023-10-31 00:00:00\n", + "Selling CF on 2023-10-31 00:00:00\n", + "Selling LW on 2023-10-31 00:00:00\n", + "Selling MOS on 2023-10-31 00:00:00\n", + "Selling DLTR on 2023-10-31 00:00:00\n", + "Selling ORCL on 2023-10-31 00:00:00\n", + "Selling NVDA on 2023-10-31 00:00:00\n", + "Selling PANW on 2023-10-31 00:00:00\n", + "Selling KEY on 2023-10-31 00:00:00\n", + "Selling AES on 2023-10-31 00:00:00\n", + "Selling STX on 2023-10-31 00:00:00\n", + "Selling NCLH on 2023-10-31 00:00:00\n", + "Selling MKTX on 2023-10-31 00:00:00\n", + "Selling ALB on 2023-10-31 00:00:00\n", + "Selling WDC on 2023-10-31 00:00:00\n", + "Selling WBA on 2023-10-31 00:00:00\n", + "Selling KMX on 2023-10-31 00:00:00\n", + "Selling TPR on 2023-10-31 00:00:00\n", + "Selling AXON on 2023-10-31 00:00:00\n", + "Selling PARA on 2023-10-31 00:00:00\n", + "Selling LLY on 2023-10-31 00:00:00\n", + "Selling ANET on 2023-10-31 00:00:00\n", + "Selling FSLR on 2023-10-31 00:00:00\n", + "Selling NEE on 2023-10-31 00:00:00\n", + "Selling HAS on 2023-10-31 00:00:00\n", + "Selling RVTY on 2023-10-31 00:00:00\n", + "Selling BLDR on 2023-10-31 00:00:00\n", + "Selling WBD on 2023-10-31 00:00:00\n", + "Selling DG on 2023-10-31 00:00:00\n", + "Selling TSLA on 2023-10-31 00:00:00\n", + "Selling NFLX on 2023-10-31 00:00:00\n", + "Selling FMC on 2023-10-31 00:00:00\n", + "Selling PLTR on 2023-10-31 00:00:00\n", + "Selling JBL on 2023-10-31 00:00:00\n", + "Selling DECK on 2023-10-31 00:00:00\n", + "Selling DVA on 2023-10-31 00:00:00\n", + "Selling IFF on 2023-10-31 00:00:00\n", + "Selling MRNA on 2023-10-31 00:00:00\n", + "Selling DELL on 2023-10-31 00:00:00\n", + "Selling PODD on 2023-10-31 00:00:00\n", + "Selling ENPH on 2023-10-31 00:00:00\n", + "Selling DXCM on 2023-10-31 00:00:00\n", + "Selling ON on 2023-10-31 00:00:00\n", + "Selling ALGN on 2023-10-31 00:00:00\n", + "Selling SMCI on 2023-10-31 00:00:00\n", + "Buying BRK-B on 2023-11-30 00:00:00\n", + "Buying ROP on 2023-11-30 00:00:00\n", + "Buying HON on 2023-11-30 00:00:00\n", + "Buying OTIS on 2023-11-30 00:00:00\n", + "Buying CPRT on 2023-11-30 00:00:00\n", + "Buying AKAM on 2023-11-30 00:00:00\n", + "Buying TJX on 2023-11-30 00:00:00\n", + "Buying MMC on 2023-11-30 00:00:00\n", + "Buying AFL on 2023-11-30 00:00:00\n", + "Buying EA on 2023-11-30 00:00:00\n", + "Buying V on 2023-11-30 00:00:00\n", + "Buying JPM on 2023-11-30 00:00:00\n", + "Buying APH on 2023-11-30 00:00:00\n", + "Buying JNJ on 2023-11-30 00:00:00\n", + "Buying HD on 2023-11-30 00:00:00\n", + "Buying ITW on 2023-11-30 00:00:00\n", + "Buying BR on 2023-11-30 00:00:00\n", + "Buying LIN on 2023-11-30 00:00:00\n", + "Buying AAPL on 2023-11-30 00:00:00\n", + "Buying RSG on 2023-11-30 00:00:00\n", + "Buying TMUS on 2023-11-30 00:00:00\n", + "Buying TDY on 2023-11-30 00:00:00\n", + "Buying MA on 2023-11-30 00:00:00\n", + "Buying L on 2023-11-30 00:00:00\n", + "Buying AME on 2023-11-30 00:00:00\n", + "Buying FDS on 2023-11-30 00:00:00\n", + "Buying PG on 2023-11-30 00:00:00\n", + "Buying CTAS on 2023-11-30 00:00:00\n", + "Buying TXN on 2023-11-30 00:00:00\n", + "Buying NDSN on 2023-11-30 00:00:00\n", + "Buying CDW on 2023-11-30 00:00:00\n", + "Buying AJG on 2023-11-30 00:00:00\n", + "Buying BLK on 2023-11-30 00:00:00\n", + "Buying COST on 2023-11-30 00:00:00\n", + "Buying CMI on 2023-11-30 00:00:00\n", + "Buying SPGI on 2023-11-30 00:00:00\n", + "Buying GL on 2023-11-30 00:00:00\n", + "Buying REGN on 2023-11-30 00:00:00\n", + "Buying VRSK on 2023-11-30 00:00:00\n", + "Buying SNA on 2023-11-30 00:00:00\n", + "Buying MCD on 2023-11-30 00:00:00\n", + "Buying ICE on 2023-11-30 00:00:00\n", + "Buying TEL on 2023-11-30 00:00:00\n", + "Buying ALLE on 2023-11-30 00:00:00\n", + "Buying FI on 2023-11-30 00:00:00\n", + "Buying MRK on 2023-11-30 00:00:00\n", + "Buying UNP on 2023-11-30 00:00:00\n", + "Buying YUM on 2023-11-30 00:00:00\n", + "Buying AVY on 2023-11-30 00:00:00\n", + "Selling EXR on 2023-11-30 00:00:00\n", + "Selling LW on 2023-11-30 00:00:00\n", + "Selling GM on 2023-11-30 00:00:00\n", + "Selling INTC on 2023-11-30 00:00:00\n", + "Selling NEM on 2023-11-30 00:00:00\n", + "Selling WDC on 2023-11-30 00:00:00\n", + "Selling DG on 2023-11-30 00:00:00\n", + "Selling WDAY on 2023-11-30 00:00:00\n", + "Selling MOS on 2023-11-30 00:00:00\n", + "Selling F on 2023-11-30 00:00:00\n", + "Selling CZR on 2023-11-30 00:00:00\n", + "Selling CCL on 2023-11-30 00:00:00\n", + "Selling HAS on 2023-11-30 00:00:00\n", + "Selling BXP on 2023-11-30 00:00:00\n", + "Selling APTV on 2023-11-30 00:00:00\n", + "Selling KEY on 2023-11-30 00:00:00\n", + "Selling BWA on 2023-11-30 00:00:00\n", + "Selling WBA on 2023-11-30 00:00:00\n", + "Selling TRMB on 2023-11-30 00:00:00\n", + "Selling ANET on 2023-11-30 00:00:00\n", + "Selling GNRC on 2023-11-30 00:00:00\n", + "Selling AES on 2023-11-30 00:00:00\n", + "Selling KMX on 2023-11-30 00:00:00\n", + "Selling NEE on 2023-11-30 00:00:00\n", + "Selling NFLX on 2023-11-30 00:00:00\n", + "Selling TSLA on 2023-11-30 00:00:00\n", + "Selling FSLR on 2023-11-30 00:00:00\n", + "Selling RVTY on 2023-11-30 00:00:00\n", + "Selling NCLH on 2023-11-30 00:00:00\n", + "Selling TGT on 2023-11-30 00:00:00\n", + "Selling ALB on 2023-11-30 00:00:00\n", + "Selling DECK on 2023-11-30 00:00:00\n", + "Selling MTCH on 2023-11-30 00:00:00\n", + "Selling EXPE on 2023-11-30 00:00:00\n", + "Selling PLTR on 2023-11-30 00:00:00\n", + "Selling MRNA on 2023-11-30 00:00:00\n", + "Selling JBL on 2023-11-30 00:00:00\n", + "Selling FMC on 2023-11-30 00:00:00\n", + "Selling DVA on 2023-11-30 00:00:00\n", + "Selling DXCM on 2023-11-30 00:00:00\n", + "Selling SMCI on 2023-11-30 00:00:00\n", + "Selling EL on 2023-11-30 00:00:00\n", + "Selling PARA on 2023-11-30 00:00:00\n", + "Selling ALGN on 2023-11-30 00:00:00\n", + "Selling PODD on 2023-11-30 00:00:00\n", + "Selling WBD on 2023-11-30 00:00:00\n", + "Selling ON on 2023-11-30 00:00:00\n", + "Selling ENPH on 2023-11-30 00:00:00\n", + "Selling PAYC on 2023-11-30 00:00:00\n", + "Buying BRK-B on 2023-12-31 00:00:00\n", + "Buying V on 2023-12-31 00:00:00\n", + "Buying ROP on 2023-12-31 00:00:00\n", + "Buying AKAM on 2023-12-31 00:00:00\n", + "Buying ACN on 2023-12-31 00:00:00\n", + "Buying AAPL on 2023-12-31 00:00:00\n", + "Buying HON on 2023-12-31 00:00:00\n", + "Buying OTIS on 2023-12-31 00:00:00\n", + "Buying JPM on 2023-12-31 00:00:00\n", + "Buying TMUS on 2023-12-31 00:00:00\n", + "Buying APH on 2023-12-31 00:00:00\n", + "Buying TJX on 2023-12-31 00:00:00\n", + "Buying JNJ on 2023-12-31 00:00:00\n", + "Buying CDW on 2023-12-31 00:00:00\n", + "Buying AME on 2023-12-31 00:00:00\n", + "Buying TDY on 2023-12-31 00:00:00\n", + "Buying RSG on 2023-12-31 00:00:00\n", + "Buying MA on 2023-12-31 00:00:00\n", + "Buying BR on 2023-12-31 00:00:00\n", + "Buying ITW on 2023-12-31 00:00:00\n", + "Buying MCD on 2023-12-31 00:00:00\n", + "Buying EA on 2023-12-31 00:00:00\n", + "Buying L on 2023-12-31 00:00:00\n", + "Buying SNA on 2023-12-31 00:00:00\n", + "Buying ATO on 2023-12-31 00:00:00\n", + "Buying KMI on 2023-12-31 00:00:00\n", + "Buying COR on 2023-12-31 00:00:00\n", + "Buying PM on 2023-12-31 00:00:00\n", + "Buying PCAR on 2023-12-31 00:00:00\n", + "Buying DUK on 2023-12-31 00:00:00\n", + "Buying CPRT on 2023-12-31 00:00:00\n", + "Buying SPGI on 2023-12-31 00:00:00\n", + "Buying PTC on 2023-12-31 00:00:00\n", + "Buying MCO on 2023-12-31 00:00:00\n", + "Buying AFL on 2023-12-31 00:00:00\n", + "Buying YUM on 2023-12-31 00:00:00\n", + "Buying PRU on 2023-12-31 00:00:00\n", + "Buying SYY on 2023-12-31 00:00:00\n", + "Buying HD on 2023-12-31 00:00:00\n", + "Buying ED on 2023-12-31 00:00:00\n", + "Buying ICE on 2023-12-31 00:00:00\n", + "Buying UNH on 2023-12-31 00:00:00\n", + "Buying FI on 2023-12-31 00:00:00\n", + "Buying IBM on 2023-12-31 00:00:00\n", + "Buying VICI on 2023-12-31 00:00:00\n", + "Buying ECL on 2023-12-31 00:00:00\n", + "Buying TXT on 2023-12-31 00:00:00\n", + "Buying WMB on 2023-12-31 00:00:00\n", + "Buying FDS on 2023-12-31 00:00:00\n", + "Buying AVY on 2023-12-31 00:00:00\n", + "Selling MKTX on 2023-12-31 00:00:00\n", + "Selling FTNT on 2023-12-31 00:00:00\n", + "Selling INTC on 2023-12-31 00:00:00\n", + "Selling AMD on 2023-12-31 00:00:00\n", + "Selling GM on 2023-12-31 00:00:00\n", + "Selling TPL on 2023-12-31 00:00:00\n", + "Selling EXR on 2023-12-31 00:00:00\n", + "Selling TSLA on 2023-12-31 00:00:00\n", + "Selling CZR on 2023-12-31 00:00:00\n", + "Selling ZBRA on 2023-12-31 00:00:00\n", + "Selling GNRC on 2023-12-31 00:00:00\n", + "Selling HAS on 2023-12-31 00:00:00\n", + "Selling F on 2023-12-31 00:00:00\n", + "Selling TRMB on 2023-12-31 00:00:00\n", + "Selling ARE on 2023-12-31 00:00:00\n", + "Selling RF on 2023-12-31 00:00:00\n", + "Selling BLDR on 2023-12-31 00:00:00\n", + "Selling KEY on 2023-12-31 00:00:00\n", + "Selling CCL on 2023-12-31 00:00:00\n", + "Selling ANET on 2023-12-31 00:00:00\n", + "Selling BWA on 2023-12-31 00:00:00\n", + "Selling APTV on 2023-12-31 00:00:00\n", + "Selling NFLX on 2023-12-31 00:00:00\n", + "Selling JBL on 2023-12-31 00:00:00\n", + "Selling WBA on 2023-12-31 00:00:00\n", + "Selling TGT on 2023-12-31 00:00:00\n", + "Selling ANSS on 2023-12-31 00:00:00\n", + "Selling CI on 2023-12-31 00:00:00\n", + "Selling NCLH on 2023-12-31 00:00:00\n", + "Selling BXP on 2023-12-31 00:00:00\n", + "Selling DECK on 2023-12-31 00:00:00\n", + "Selling EXPE on 2023-12-31 00:00:00\n", + "Selling DXCM on 2023-12-31 00:00:00\n", + "Selling RVTY on 2023-12-31 00:00:00\n", + "Selling FSLR on 2023-12-31 00:00:00\n", + "Selling MTCH on 2023-12-31 00:00:00\n", + "Selling DVA on 2023-12-31 00:00:00\n", + "Selling PLTR on 2023-12-31 00:00:00\n", + "Selling PODD on 2023-12-31 00:00:00\n", + "Selling ALB on 2023-12-31 00:00:00\n", + "Selling FMC on 2023-12-31 00:00:00\n", + "Selling MRNA on 2023-12-31 00:00:00\n", + "Selling SMCI on 2023-12-31 00:00:00\n", + "Selling EL on 2023-12-31 00:00:00\n", + "Selling ALGN on 2023-12-31 00:00:00\n", + "Selling WBD on 2023-12-31 00:00:00\n", + "Selling ON on 2023-12-31 00:00:00\n", + "Selling PARA on 2023-12-31 00:00:00\n", + "Selling ENPH on 2023-12-31 00:00:00\n", + "Selling PAYC on 2023-12-31 00:00:00\n", + "Buying V on 2024-01-31 00:00:00\n", + "Buying SPGI on 2024-01-31 00:00:00\n", + "Buying TMUS on 2024-01-31 00:00:00\n", + "Buying MA on 2024-01-31 00:00:00\n", + "Buying KO on 2024-01-31 00:00:00\n", + "Buying MCO on 2024-01-31 00:00:00\n", + "Buying AKAM on 2024-01-31 00:00:00\n", + "Buying EA on 2024-01-31 00:00:00\n", + "Buying JPM on 2024-01-31 00:00:00\n", + "Buying ECL on 2024-01-31 00:00:00\n", + "Buying WM on 2024-01-31 00:00:00\n", + "Buying FI on 2024-01-31 00:00:00\n", + "Buying RSG on 2024-01-31 00:00:00\n", + "Buying YUM on 2024-01-31 00:00:00\n", + "Buying OTIS on 2024-01-31 00:00:00\n", + "Buying BRK-B on 2024-01-31 00:00:00\n", + "Buying GRMN on 2024-01-31 00:00:00\n", + "Buying LDOS on 2024-01-31 00:00:00\n", + "Buying ITW on 2024-01-31 00:00:00\n", + "Buying AMP on 2024-01-31 00:00:00\n", + "Buying SNA on 2024-01-31 00:00:00\n", + "Buying MCD on 2024-01-31 00:00:00\n", + "Buying PM on 2024-01-31 00:00:00\n", + "Buying ICE on 2024-01-31 00:00:00\n", + "Buying ETN on 2024-01-31 00:00:00\n", + "Buying ACN on 2024-01-31 00:00:00\n", + "Buying XYL on 2024-01-31 00:00:00\n", + "Buying L on 2024-01-31 00:00:00\n", + "Buying WAB on 2024-01-31 00:00:00\n", + "Buying ROP on 2024-01-31 00:00:00\n", + "Buying HIG on 2024-01-31 00:00:00\n", + "Buying APH on 2024-01-31 00:00:00\n", + "Buying BR on 2024-01-31 00:00:00\n", + "Buying HON on 2024-01-31 00:00:00\n", + "Buying TT on 2024-01-31 00:00:00\n", + "Buying ADP on 2024-01-31 00:00:00\n", + "Buying CDW on 2024-01-31 00:00:00\n", + "Buying JNJ on 2024-01-31 00:00:00\n", + "Buying GL on 2024-01-31 00:00:00\n", + "Buying AIG on 2024-01-31 00:00:00\n", + "Buying PEP on 2024-01-31 00:00:00\n", + "Buying PH on 2024-01-31 00:00:00\n", + "Buying PTC on 2024-01-31 00:00:00\n", + "Buying AME on 2024-01-31 00:00:00\n", + "Buying UNP on 2024-01-31 00:00:00\n", + "Buying PRU on 2024-01-31 00:00:00\n", + "Buying FFIV on 2024-01-31 00:00:00\n", + "Buying CB on 2024-01-31 00:00:00\n", + "Buying PPG on 2024-01-31 00:00:00\n", + "Buying EQIX on 2024-01-31 00:00:00\n", + "Selling NEM on 2024-01-31 00:00:00\n", + "Selling CRWD on 2024-01-31 00:00:00\n", + "Selling AES on 2024-01-31 00:00:00\n", + "Selling PANW on 2024-01-31 00:00:00\n", + "Selling NTAP on 2024-01-31 00:00:00\n", + "Selling TPL on 2024-01-31 00:00:00\n", + "Selling DAL on 2024-01-31 00:00:00\n", + "Selling MHK on 2024-01-31 00:00:00\n", + "Selling KMX on 2024-01-31 00:00:00\n", + "Selling DFS on 2024-01-31 00:00:00\n", + "Selling ALGN on 2024-01-31 00:00:00\n", + "Selling LUV on 2024-01-31 00:00:00\n", + "Selling VRTX on 2024-01-31 00:00:00\n", + "Selling BLDR on 2024-01-31 00:00:00\n", + "Selling EL on 2024-01-31 00:00:00\n", + "Selling ROK on 2024-01-31 00:00:00\n", + "Selling WBA on 2024-01-31 00:00:00\n", + "Selling KEY on 2024-01-31 00:00:00\n", + "Selling CZR on 2024-01-31 00:00:00\n", + "Selling GM on 2024-01-31 00:00:00\n", + "Selling PLTR on 2024-01-31 00:00:00\n", + "Selling EXR on 2024-01-31 00:00:00\n", + "Selling URI on 2024-01-31 00:00:00\n", + "Selling FTNT on 2024-01-31 00:00:00\n", + "Selling INTC on 2024-01-31 00:00:00\n", + "Selling ARE on 2024-01-31 00:00:00\n", + "Selling UAL on 2024-01-31 00:00:00\n", + "Selling AMD on 2024-01-31 00:00:00\n", + "Selling BA on 2024-01-31 00:00:00\n", + "Selling JBL on 2024-01-31 00:00:00\n", + "Selling HUM on 2024-01-31 00:00:00\n", + "Selling TGT on 2024-01-31 00:00:00\n", + "Selling TSLA on 2024-01-31 00:00:00\n", + "Selling CCL on 2024-01-31 00:00:00\n", + "Selling MKTX on 2024-01-31 00:00:00\n", + "Selling PODD on 2024-01-31 00:00:00\n", + "Selling FSLR on 2024-01-31 00:00:00\n", + "Selling BXP on 2024-01-31 00:00:00\n", + "Selling ANSS on 2024-01-31 00:00:00\n", + "Selling CI on 2024-01-31 00:00:00\n", + "Selling EXPE on 2024-01-31 00:00:00\n", + "Selling NCLH on 2024-01-31 00:00:00\n", + "Selling ALB on 2024-01-31 00:00:00\n", + "Selling JNPR on 2024-01-31 00:00:00\n", + "Selling MRNA on 2024-01-31 00:00:00\n", + "Selling ENPH on 2024-01-31 00:00:00\n", + "Selling ADM on 2024-01-31 00:00:00\n", + "Selling WBD on 2024-01-31 00:00:00\n", + "Selling PARA on 2024-01-31 00:00:00\n", + "Selling SMCI on 2024-01-31 00:00:00\n", + "Buying TMUS on 2024-02-29 00:00:00\n", + "Buying WAB on 2024-02-29 00:00:00\n", + "Buying V on 2024-02-29 00:00:00\n", + "Buying FI on 2024-02-29 00:00:00\n", + "Buying JPM on 2024-02-29 00:00:00\n", + "Buying BRK-B on 2024-02-29 00:00:00\n", + "Buying OTIS on 2024-02-29 00:00:00\n", + "Buying CSX on 2024-02-29 00:00:00\n", + "Buying ROP on 2024-02-29 00:00:00\n", + "Buying JNJ on 2024-02-29 00:00:00\n", + "Buying AMP on 2024-02-29 00:00:00\n", + "Buying L on 2024-02-29 00:00:00\n", + "Buying ADP on 2024-02-29 00:00:00\n", + "Buying KO on 2024-02-29 00:00:00\n", + "Buying CB on 2024-02-29 00:00:00\n", + "Buying MSFT on 2024-02-29 00:00:00\n", + "Buying APH on 2024-02-29 00:00:00\n", + "Buying ROST on 2024-02-29 00:00:00\n", + "Buying RSG on 2024-02-29 00:00:00\n", + "Buying AVY on 2024-02-29 00:00:00\n", + "Buying AME on 2024-02-29 00:00:00\n", + "Buying HIG on 2024-02-29 00:00:00\n", + "Buying FFIV on 2024-02-29 00:00:00\n", + "Buying GL on 2024-02-29 00:00:00\n", + "Buying TJX on 2024-02-29 00:00:00\n", + "Buying YUM on 2024-02-29 00:00:00\n", + "Buying ITW on 2024-02-29 00:00:00\n", + "Buying HLT on 2024-02-29 00:00:00\n", + "Buying UNP on 2024-02-29 00:00:00\n", + "Buying BR on 2024-02-29 00:00:00\n", + "Buying CSCO on 2024-02-29 00:00:00\n", + "Buying MLM on 2024-02-29 00:00:00\n", + "Buying J on 2024-02-29 00:00:00\n", + "Buying ACN on 2024-02-29 00:00:00\n", + "Buying MA on 2024-02-29 00:00:00\n", + "Buying NTAP on 2024-02-29 00:00:00\n", + "Buying ABBV on 2024-02-29 00:00:00\n", + "Buying PM on 2024-02-29 00:00:00\n", + "Buying CDW on 2024-02-29 00:00:00\n", + "Buying PCAR on 2024-02-29 00:00:00\n", + "Buying INTU on 2024-02-29 00:00:00\n", + "Buying BK on 2024-02-29 00:00:00\n", + "Buying PPG on 2024-02-29 00:00:00\n", + "Buying ELV on 2024-02-29 00:00:00\n", + "Buying MCD on 2024-02-29 00:00:00\n", + "Buying MSI on 2024-02-29 00:00:00\n", + "Buying SHW on 2024-02-29 00:00:00\n", + "Buying AAPL on 2024-02-29 00:00:00\n", + "Buying EA on 2024-02-29 00:00:00\n", + "Buying WMT on 2024-02-29 00:00:00\n", + "Selling AMAT on 2024-02-29 00:00:00\n", + "Selling LUV on 2024-02-29 00:00:00\n", + "Selling EQT on 2024-02-29 00:00:00\n", + "Selling NEM on 2024-02-29 00:00:00\n", + "Selling APD on 2024-02-29 00:00:00\n", + "Selling DD on 2024-02-29 00:00:00\n", + "Selling BXP on 2024-02-29 00:00:00\n", + "Selling NVDA on 2024-02-29 00:00:00\n", + "Selling HRL on 2024-02-29 00:00:00\n", + "Selling INTC on 2024-02-29 00:00:00\n", + "Selling CZR on 2024-02-29 00:00:00\n", + "Selling ROK on 2024-02-29 00:00:00\n", + "Selling ALGN on 2024-02-29 00:00:00\n", + "Selling UBER on 2024-02-29 00:00:00\n", + "Selling BA on 2024-02-29 00:00:00\n", + "Selling HUM on 2024-02-29 00:00:00\n", + "Selling ON on 2024-02-29 00:00:00\n", + "Selling WBA on 2024-02-29 00:00:00\n", + "Selling WST on 2024-02-29 00:00:00\n", + "Selling PYPL on 2024-02-29 00:00:00\n", + "Selling ZBRA on 2024-02-29 00:00:00\n", + "Selling RL on 2024-02-29 00:00:00\n", + "Selling UAL on 2024-02-29 00:00:00\n", + "Selling MPWR on 2024-02-29 00:00:00\n", + "Selling CI on 2024-02-29 00:00:00\n", + "Selling TSLA on 2024-02-29 00:00:00\n", + "Selling MKTX on 2024-02-29 00:00:00\n", + "Selling CTVA on 2024-02-29 00:00:00\n", + "Selling EL on 2024-02-29 00:00:00\n", + "Selling DFS on 2024-02-29 00:00:00\n", + "Selling META on 2024-02-29 00:00:00\n", + "Selling CCL on 2024-02-29 00:00:00\n", + "Selling WBD on 2024-02-29 00:00:00\n", + "Selling ANSS on 2024-02-29 00:00:00\n", + "Selling FSLR on 2024-02-29 00:00:00\n", + "Selling EXPE on 2024-02-29 00:00:00\n", + "Selling AMD on 2024-02-29 00:00:00\n", + "Selling JNPR on 2024-02-29 00:00:00\n", + "Selling CHTR on 2024-02-29 00:00:00\n", + "Selling CEG on 2024-02-29 00:00:00\n", + "Selling FMC on 2024-02-29 00:00:00\n", + "Selling ALB on 2024-02-29 00:00:00\n", + "Selling PARA on 2024-02-29 00:00:00\n", + "Selling ADM on 2024-02-29 00:00:00\n", + "Selling NCLH on 2024-02-29 00:00:00\n", + "Selling MRNA on 2024-02-29 00:00:00\n", + "Selling ENPH on 2024-02-29 00:00:00\n", + "Selling PANW 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 TMUS on 2024-03-31 00:00:00\n", + "Buying RSG on 2024-03-31 00:00:00\n", + "Buying WAB on 2024-03-31 00:00:00\n", + "Buying APH on 2024-03-31 00:00:00\n", + "Buying OTIS on 2024-03-31 00:00:00\n", + "Buying HLT on 2024-03-31 00:00:00\n", + "Buying AME on 2024-03-31 00:00:00\n", + "Buying FI on 2024-03-31 00:00:00\n", + "Buying BRK-B on 2024-03-31 00:00:00\n", + "Buying L on 2024-03-31 00:00:00\n", + "Buying JNJ on 2024-03-31 00:00:00\n", + "Buying KO on 2024-03-31 00:00:00\n", + "Buying ROP on 2024-03-31 00:00:00\n", + "Buying PAYX on 2024-03-31 00:00:00\n", + "Buying AMP on 2024-03-31 00:00:00\n", + "Buying ADP on 2024-03-31 00:00:00\n", + "Buying BR on 2024-03-31 00:00:00\n", + "Buying ROST on 2024-03-31 00:00:00\n", + "Buying CL on 2024-03-31 00:00:00\n", + "Buying V on 2024-03-31 00:00:00\n", + "Buying ELV on 2024-03-31 00:00:00\n", + "Buying CB on 2024-03-31 00:00:00\n", + "Buying MSFT on 2024-03-31 00:00:00\n", + "Buying J on 2024-03-31 00:00:00\n", + "Buying CDW on 2024-03-31 00:00:00\n", + "Buying ITW on 2024-03-31 00:00:00\n", + "Buying AVY on 2024-03-31 00:00:00\n", + "Buying VRSN on 2024-03-31 00:00:00\n", + "Buying GPC on 2024-03-31 00:00:00\n", + "Buying NDSN on 2024-03-31 00:00:00\n", + "Buying HIG on 2024-03-31 00:00:00\n", + "Buying FFIV on 2024-03-31 00:00:00\n", + "Buying JPM on 2024-03-31 00:00:00\n", + "Buying IEX on 2024-03-31 00:00:00\n", + "Buying CSX on 2024-03-31 00:00:00\n", + "Buying PG on 2024-03-31 00:00:00\n", + "Buying YUM on 2024-03-31 00:00:00\n", + "Buying MSI on 2024-03-31 00:00:00\n", + "Buying DOV on 2024-03-31 00:00:00\n", + "Buying SHW on 2024-03-31 00:00:00\n", + "Buying UNP on 2024-03-31 00:00:00\n", + "Buying ABBV on 2024-03-31 00:00:00\n", + "Buying REGN on 2024-03-31 00:00:00\n", + "Buying WMT on 2024-03-31 00:00:00\n", + "Buying IR on 2024-03-31 00:00:00\n", + "Buying MMC on 2024-03-31 00:00:00\n", + "Buying LIN on 2024-03-31 00:00:00\n", + "Buying MA on 2024-03-31 00:00:00\n", + "Buying TJX on 2024-03-31 00:00:00\n", + "Buying CSCO on 2024-03-31 00:00:00\n", + "Selling ROK on 2024-03-31 00:00:00\n", + "Selling PODD on 2024-03-31 00:00:00\n", + "Selling EQT on 2024-03-31 00:00:00\n", + "Selling LULU on 2024-03-31 00:00:00\n", + "Selling HRL on 2024-03-31 00:00:00\n", + "Selling DLTR on 2024-03-31 00:00:00\n", + "Selling APD on 2024-03-31 00:00:00\n", + "Selling INTC on 2024-03-31 00:00:00\n", + "Selling IP on 2024-03-31 00:00:00\n", + "Selling ADBE on 2024-03-31 00:00:00\n", + "Selling JBL on 2024-03-31 00:00:00\n", + "Selling BA on 2024-03-31 00:00:00\n", + "Selling NTAP on 2024-03-31 00:00:00\n", + "Selling CCL on 2024-03-31 00:00:00\n", + "Selling NEM on 2024-03-31 00:00:00\n", + "Selling ON on 2024-03-31 00:00:00\n", + "Selling HPE on 2024-03-31 00:00:00\n", + "Selling UAL on 2024-03-31 00:00:00\n", + "Selling PYPL on 2024-03-31 00:00:00\n", + "Selling RL on 2024-03-31 00:00:00\n", + "Selling FSLR on 2024-03-31 00:00:00\n", + "Selling MKTX on 2024-03-31 00:00:00\n", + "Selling WBD on 2024-03-31 00:00:00\n", + "Selling NVDA on 2024-03-31 00:00:00\n", + "Selling WST on 2024-03-31 00:00:00\n", + "Selling CTVA on 2024-03-31 00:00:00\n", + "Selling DFS on 2024-03-31 00:00:00\n", + "Selling MPWR on 2024-03-31 00:00:00\n", + "Selling CRWD on 2024-03-31 00:00:00\n", + "Selling META on 2024-03-31 00:00:00\n", + "Selling EL on 2024-03-31 00:00:00\n", + "Selling MU on 2024-03-31 00:00:00\n", + "Selling EXPE on 2024-03-31 00:00:00\n", + "Selling TSLA on 2024-03-31 00:00:00\n", + "Selling LUV on 2024-03-31 00:00:00\n", + "Selling JNPR on 2024-03-31 00:00:00\n", + "Selling CHTR on 2024-03-31 00:00:00\n", + "Selling AMD on 2024-03-31 00:00:00\n", + "Selling CEG on 2024-03-31 00:00:00\n", + "Selling FMC on 2024-03-31 00:00:00\n", + "Selling MRNA on 2024-03-31 00:00:00\n", + "Selling PARA on 2024-03-31 00:00:00\n", + "Selling NCLH on 2024-03-31 00:00:00\n", + "Selling ADM on 2024-03-31 00:00:00\n", + "Selling ENPH on 2024-03-31 00:00:00\n", + "Selling ALB on 2024-03-31 00:00:00\n", + "Selling PANW on 2024-03-31 00:00:00\n", + "Selling DELL on 2024-03-31 00:00:00\n", + "Selling PLTR on 2024-03-31 00:00:00\n", + "Selling SMCI on 2024-03-31 00:00:00\n", + "Buying JNPR on 2024-04-30 00:00:00\n", + "Buying TMUS on 2024-04-30 00:00:00\n", + "Buying AME on 2024-04-30 00:00:00\n", + "Buying PH on 2024-04-30 00:00:00\n", + "Buying RSG on 2024-04-30 00:00:00\n", + "Buying BRK-B on 2024-04-30 00:00:00\n", + "Buying CL on 2024-04-30 00:00:00\n", + "Buying PG on 2024-04-30 00:00:00\n", + "Buying ITW on 2024-04-30 00:00:00\n", + "Buying V on 2024-04-30 00:00:00\n", + "Buying BRO on 2024-04-30 00:00:00\n", + "Buying KO on 2024-04-30 00:00:00\n", + "Buying ADP on 2024-04-30 00:00:00\n", + "Buying CI on 2024-04-30 00:00:00\n", + "Buying SYK on 2024-04-30 00:00:00\n", + "Buying RTX on 2024-04-30 00:00:00\n", + "Buying COR on 2024-04-30 00:00:00\n", + "Buying REGN on 2024-04-30 00:00:00\n", + "Buying APH on 2024-04-30 00:00:00\n", + "Buying LMT on 2024-04-30 00:00:00\n", + "Buying CHD on 2024-04-30 00:00:00\n", + "Buying BR on 2024-04-30 00:00:00\n", + "Buying J on 2024-04-30 00:00:00\n", + "Buying NDSN on 2024-04-30 00:00:00\n", + "Buying CDW on 2024-04-30 00:00:00\n", + "Buying HON on 2024-04-30 00:00:00\n", + "Buying YUM on 2024-04-30 00:00:00\n", + "Buying JNJ on 2024-04-30 00:00:00\n", + "Buying MSFT on 2024-04-30 00:00:00\n", + "Buying MMC on 2024-04-30 00:00:00\n", + "Buying ROST on 2024-04-30 00:00:00\n", + "Buying L on 2024-04-30 00:00:00\n", + "Buying ROP on 2024-04-30 00:00:00\n", + "Buying IEX on 2024-04-30 00:00:00\n", + "Buying AVY on 2024-04-30 00:00:00\n", + "Buying JCI on 2024-04-30 00:00:00\n", + "Buying MSI on 2024-04-30 00:00:00\n", + "Buying MA on 2024-04-30 00:00:00\n", + "Buying XYL on 2024-04-30 00:00:00\n", + "Buying WMT on 2024-04-30 00:00:00\n", + "Buying NI on 2024-04-30 00:00:00\n", + "Buying LIN on 2024-04-30 00:00:00\n", + "Buying CSX on 2024-04-30 00:00:00\n", + "Buying AJG on 2024-04-30 00:00:00\n", + "Buying SYY on 2024-04-30 00:00:00\n", + "Buying TEL on 2024-04-30 00:00:00\n", + "Buying OKE on 2024-04-30 00:00:00\n", + "Buying ATO on 2024-04-30 00:00:00\n", + "Buying PTC on 2024-04-30 00:00:00\n", + "Buying GD on 2024-04-30 00:00:00\n", + "Selling PODD on 2024-04-30 00:00:00\n", + "Selling DLTR on 2024-04-30 00:00:00\n", + "Selling HRL on 2024-04-30 00:00:00\n", + "Selling CSGP on 2024-04-30 00:00:00\n", + "Selling ODFL on 2024-04-30 00:00:00\n", + "Selling APD on 2024-04-30 00:00:00\n", + "Selling IP on 2024-04-30 00:00:00\n", + "Selling LKQ on 2024-04-30 00:00:00\n", + "Selling ADBE on 2024-04-30 00:00:00\n", + "Selling EQT on 2024-04-30 00:00:00\n", + "Selling ZBRA on 2024-04-30 00:00:00\n", + "Selling FSLR on 2024-04-30 00:00:00\n", + "Selling WBA on 2024-04-30 00:00:00\n", + "Selling LULU on 2024-04-30 00:00:00\n", + "Selling ULTA on 2024-04-30 00:00:00\n", + "Selling CRWD on 2024-04-30 00:00:00\n", + "Selling NTAP on 2024-04-30 00:00:00\n", + "Selling JBL on 2024-04-30 00:00:00\n", + "Selling GEHC on 2024-04-30 00:00:00\n", + "Selling INTC on 2024-04-30 00:00:00\n", + "Selling AMD on 2024-04-30 00:00:00\n", + "Selling RL on 2024-04-30 00:00:00\n", + "Selling ON on 2024-04-30 00:00:00\n", + "Selling DXCM on 2024-04-30 00:00:00\n", + "Selling WST on 2024-04-30 00:00:00\n", + "Selling EL on 2024-04-30 00:00:00\n", + "Selling VST on 2024-04-30 00:00:00\n", + "Selling EXPE on 2024-04-30 00:00:00\n", + "Selling MPWR on 2024-04-30 00:00:00\n", + "Selling WBD on 2024-04-30 00:00:00\n", + "Selling LUV on 2024-04-30 00:00:00\n", + "Selling MU on 2024-04-30 00:00:00\n", + "Selling LW on 2024-04-30 00:00:00\n", + "Selling RMD on 2024-04-30 00:00:00\n", + "Selling NEM on 2024-04-30 00:00:00\n", + "Selling NVDA on 2024-04-30 00:00:00\n", + "Selling CEG on 2024-04-30 00:00:00\n", + "Selling UAL on 2024-04-30 00:00:00\n", + "Selling FMC on 2024-04-30 00:00:00\n", + "Selling MRNA on 2024-04-30 00:00:00\n", + "Selling NCLH on 2024-04-30 00:00:00\n", + "Selling TSLA on 2024-04-30 00:00:00\n", + "Selling ALB on 2024-04-30 00:00:00\n", + "Selling ENPH on 2024-04-30 00:00:00\n", + "Selling PANW on 2024-04-30 00:00:00\n", + "Selling PARA on 2024-04-30 00:00:00\n", + "Selling DELL on 2024-04-30 00:00:00\n", + "Selling PLTR on 2024-04-30 00:00:00\n", + "Selling SMCI on 2024-04-30 00:00:00\n", + "Selling GL on 2024-04-30 00:00:00\n", + "Buying JNPR on 2024-05-31 00:00:00\n", + "Buying BRK-B on 2024-05-31 00:00:00\n", + "Buying KO on 2024-05-31 00:00:00\n", + "Buying TMUS on 2024-05-31 00:00:00\n", + "Buying MA on 2024-05-31 00:00:00\n", + "Buying V on 2024-05-31 00:00:00\n", + "Buying PG on 2024-05-31 00:00:00\n", + "Buying RSG on 2024-05-31 00:00:00\n", + "Buying WM on 2024-05-31 00:00:00\n", + "Buying CL on 2024-05-31 00:00:00\n", + "Buying ITW on 2024-05-31 00:00:00\n", + "Buying SPGI on 2024-05-31 00:00:00\n", + "Buying ECL on 2024-05-31 00:00:00\n", + "Buying CPRT on 2024-05-31 00:00:00\n", + "Buying OKE on 2024-05-31 00:00:00\n", + "Buying AVY on 2024-05-31 00:00:00\n", + "Buying XYL on 2024-05-31 00:00:00\n", + "Buying LMT on 2024-05-31 00:00:00\n", + "Buying PTC on 2024-05-31 00:00:00\n", + "Buying MMC on 2024-05-31 00:00:00\n", + "Buying RTX on 2024-05-31 00:00:00\n", + "Buying WELL on 2024-05-31 00:00:00\n", + "Buying MCO on 2024-05-31 00:00:00\n", + "Buying ALLE on 2024-05-31 00:00:00\n", + "Buying ANSS on 2024-05-31 00:00:00\n", + "Buying IEX on 2024-05-31 00:00:00\n", + "Buying MSFT on 2024-05-31 00:00:00\n", + "Buying VMC on 2024-05-31 00:00:00\n", + "Buying TEL on 2024-05-31 00:00:00\n", + "Buying HON on 2024-05-31 00:00:00\n", + "Buying MO on 2024-05-31 00:00:00\n", + "Buying APH on 2024-05-31 00:00:00\n", + "Buying PEG on 2024-05-31 00:00:00\n", + "Buying CHD on 2024-05-31 00:00:00\n", + "Buying BRO on 2024-05-31 00:00:00\n", + "Buying ICE on 2024-05-31 00:00:00\n", + "Buying EMR on 2024-05-31 00:00:00\n", + "Buying REGN on 2024-05-31 00:00:00\n", + "Buying DOW on 2024-05-31 00:00:00\n", + "Buying CVX on 2024-05-31 00:00:00\n", + "Buying DOV on 2024-05-31 00:00:00\n", + "Buying ROP on 2024-05-31 00:00:00\n", + "Buying NWS on 2024-05-31 00:00:00\n", + "Buying NI on 2024-05-31 00:00:00\n", + "Buying INVH on 2024-05-31 00:00:00\n", + "Buying NWSA on 2024-05-31 00:00:00\n", + "Buying BLK on 2024-05-31 00:00:00\n", + "Buying WMB on 2024-05-31 00:00:00\n", + "Buying WTW on 2024-05-31 00:00:00\n", + "Buying SYK on 2024-05-31 00:00:00\n", + "Selling WDAY on 2024-05-31 00:00:00\n", + "Selling BBY on 2024-05-31 00:00:00\n", + "Selling AMD on 2024-05-31 00:00:00\n", + "Selling PAYC on 2024-05-31 00:00:00\n", + "Selling ODFL on 2024-05-31 00:00:00\n", + "Selling DLTR on 2024-05-31 00:00:00\n", + "Selling SWKS on 2024-05-31 00:00:00\n", + "Selling LKQ on 2024-05-31 00:00:00\n", + "Selling DAY on 2024-05-31 00:00:00\n", + "Selling EXPE on 2024-05-31 00:00:00\n", + "Selling INTC on 2024-05-31 00:00:00\n", + "Selling SBUX on 2024-05-31 00:00:00\n", + "Selling ULTA on 2024-05-31 00:00:00\n", + "Selling CZR on 2024-05-31 00:00:00\n", + "Selling DECK on 2024-05-31 00:00:00\n", + "Selling GEN on 2024-05-31 00:00:00\n", + "Selling NEM on 2024-05-31 00:00:00\n", + "Selling IP on 2024-05-31 00:00:00\n", + "Selling WBD on 2024-05-31 00:00:00\n", + "Selling PODD on 2024-05-31 00:00:00\n", + "Selling WBA on 2024-05-31 00:00:00\n", + "Selling MTD on 2024-05-31 00:00:00\n", + "Selling JBL on 2024-05-31 00:00:00\n", + "Selling LULU on 2024-05-31 00:00:00\n", + "Selling HPQ on 2024-05-31 00:00:00\n", + "Selling TECH on 2024-05-31 00:00:00\n", + "Selling EL on 2024-05-31 00:00:00\n", + "Selling FMC on 2024-05-31 00:00:00\n", + "Selling LUV on 2024-05-31 00:00:00\n", + "Selling MU on 2024-05-31 00:00:00\n", + "Selling PLTR on 2024-05-31 00:00:00\n", + "Selling LW on 2024-05-31 00:00:00\n", + "Selling ALB on 2024-05-31 00:00:00\n", + "Selling RMD on 2024-05-31 00:00:00\n", + "Selling CVS on 2024-05-31 00:00:00\n", + "Selling CRM on 2024-05-31 00:00:00\n", + "Selling NVDA on 2024-05-31 00:00:00\n", + "Selling BLDR on 2024-05-31 00:00:00\n", + "Selling VST on 2024-05-31 00:00:00\n", + "Selling NCLH on 2024-05-31 00:00:00\n", + "Selling UAL on 2024-05-31 00:00:00\n", + "Selling ENPH on 2024-05-31 00:00:00\n", + "Selling FSLR on 2024-05-31 00:00:00\n", + "Selling TSLA on 2024-05-31 00:00:00\n", + "Selling MRNA on 2024-05-31 00:00:00\n", + "Selling EPAM on 2024-05-31 00:00:00\n", + "Selling DELL on 2024-05-31 00:00:00\n", + "Selling PARA on 2024-05-31 00:00:00\n", + "Selling SMCI on 2024-05-31 00:00:00\n", + "Selling GL on 2024-05-31 00:00:00\n", + "Buying JNPR on 2024-06-30 00:00:00\n", + "Buying BRK-B on 2024-06-30 00:00:00\n", + "Buying PG on 2024-06-30 00:00:00\n", + "Buying MA on 2024-06-30 00:00:00\n", + "Buying KO on 2024-06-30 00:00:00\n", + "Buying CTAS on 2024-06-30 00:00:00\n", + "Buying LMT on 2024-06-30 00:00:00\n", + "Buying MSFT on 2024-06-30 00:00:00\n", + "Buying COST on 2024-06-30 00:00:00\n", + "Buying RSG on 2024-06-30 00:00:00\n", + "Buying ANSS on 2024-06-30 00:00:00\n", + "Buying ECL on 2024-06-30 00:00:00\n", + "Buying V on 2024-06-30 00:00:00\n", + "Buying MO on 2024-06-30 00:00:00\n", + "Buying SPGI on 2024-06-30 00:00:00\n", + "Buying CL on 2024-06-30 00:00:00\n", + "Buying AVY on 2024-06-30 00:00:00\n", + "Buying HON on 2024-06-30 00:00:00\n", + "Buying CPRT on 2024-06-30 00:00:00\n", + "Buying WELL on 2024-06-30 00:00:00\n", + "Buying TMUS on 2024-06-30 00:00:00\n", + "Buying ICE on 2024-06-30 00:00:00\n", + "Buying BKNG on 2024-06-30 00:00:00\n", + "Buying ITW on 2024-06-30 00:00:00\n", + "Buying INVH on 2024-06-30 00:00:00\n", + "Buying MMC on 2024-06-30 00:00:00\n", + "Buying BLK on 2024-06-30 00:00:00\n", + "Buying ISRG on 2024-06-30 00:00:00\n", + "Buying MCO on 2024-06-30 00:00:00\n", + "Buying TEL on 2024-06-30 00:00:00\n", + "Buying RTX on 2024-06-30 00:00:00\n", + "Buying GD on 2024-06-30 00:00:00\n", + "Buying CHD on 2024-06-30 00:00:00\n", + "Buying HOLX on 2024-06-30 00:00:00\n", + "Buying AVB on 2024-06-30 00:00:00\n", + "Buying NDAQ on 2024-06-30 00:00:00\n", + "Buying EXPD on 2024-06-30 00:00:00\n", + "Buying ROP on 2024-06-30 00:00:00\n", + "Buying LIN on 2024-06-30 00:00:00\n", + "Buying FE on 2024-06-30 00:00:00\n", + "Buying ATO on 2024-06-30 00:00:00\n", + "Buying SYK on 2024-06-30 00:00:00\n", + "Buying MAR on 2024-06-30 00:00:00\n", + "Buying XYL on 2024-06-30 00:00:00\n", + "Buying REGN on 2024-06-30 00:00:00\n", + "Buying FOX on 2024-06-30 00:00:00\n", + "Buying OKE on 2024-06-30 00:00:00\n", + "Buying PEG on 2024-06-30 00:00:00\n", + "Buying PTC on 2024-06-30 00:00:00\n", + "Buying MSI on 2024-06-30 00:00:00\n", + "Selling FDX on 2024-06-30 00:00:00\n", + "Selling NRG on 2024-06-30 00:00:00\n", + "Selling PAYC on 2024-06-30 00:00:00\n", + "Selling LKQ on 2024-06-30 00:00:00\n", + "Selling ADBE on 2024-06-30 00:00:00\n", + "Selling DAY on 2024-06-30 00:00:00\n", + "Selling PODD on 2024-06-30 00:00:00\n", + "Selling WDAY on 2024-06-30 00:00:00\n", + "Selling BBY on 2024-06-30 00:00:00\n", + "Selling EXPE on 2024-06-30 00:00:00\n", + "Selling CEG on 2024-06-30 00:00:00\n", + "Selling AVGO on 2024-06-30 00:00:00\n", + "Selling DECK on 2024-06-30 00:00:00\n", + "Selling NEM on 2024-06-30 00:00:00\n", + "Selling SBUX on 2024-06-30 00:00:00\n", + "Selling EL on 2024-06-30 00:00:00\n", + "Selling SWKS on 2024-06-30 00:00:00\n", + "Selling GEN on 2024-06-30 00:00:00\n", + "Selling MTD on 2024-06-30 00:00:00\n", + "Selling CZR on 2024-06-30 00:00:00\n", + "Selling WBD on 2024-06-30 00:00:00\n", + "Selling CCL on 2024-06-30 00:00:00\n", + "Selling TECH on 2024-06-30 00:00:00\n", + "Selling APTV on 2024-06-30 00:00:00\n", + "Selling FMC on 2024-06-30 00:00:00\n", + "Selling HPQ on 2024-06-30 00:00:00\n", + "Selling CVS on 2024-06-30 00:00:00\n", + "Selling LW on 2024-06-30 00:00:00\n", + "Selling NKE on 2024-06-30 00:00:00\n", + "Selling GEV on 2024-06-30 00:00:00\n", + "Selling ALB on 2024-06-30 00:00:00\n", + "Selling PLTR on 2024-06-30 00:00:00\n", + "Selling UAL on 2024-06-30 00:00:00\n", + "Selling CRM on 2024-06-30 00:00:00\n", + "Selling NVDA on 2024-06-30 00:00:00\n", + "Selling NCLH on 2024-06-30 00:00:00\n", + "Selling RMD on 2024-06-30 00:00:00\n", + "Selling BLDR on 2024-06-30 00:00:00\n", + "Selling VST on 2024-06-30 00:00:00\n", + "Selling ENPH on 2024-06-30 00:00:00\n", + "Selling TSLA on 2024-06-30 00:00:00\n", + "Selling WBA on 2024-06-30 00:00:00\n", + "Selling TPL on 2024-06-30 00:00:00\n", + "Selling FSLR on 2024-06-30 00:00:00\n", + "Selling EPAM on 2024-06-30 00:00:00\n", + "Selling DELL on 2024-06-30 00:00:00\n", + "Selling MRNA on 2024-06-30 00:00:00\n", + "Selling PARA on 2024-06-30 00:00:00\n", + "Selling SMCI on 2024-06-30 00:00:00\n", + "Selling GL on 2024-06-30 00:00:00\n", + "Buying JNPR on 2024-07-31 00:00:00\n", + "Buying LIN on 2024-07-31 00:00:00\n", + "Buying ANSS on 2024-07-31 00:00:00\n", + "Buying KO on 2024-07-31 00:00:00\n", + "Buying MSI on 2024-07-31 00:00:00\n", + "Buying MMC on 2024-07-31 00:00:00\n", + "Buying BRK-B on 2024-07-31 00:00:00\n", + "Buying AFL on 2024-07-31 00:00:00\n", + "Buying ICE on 2024-07-31 00:00:00\n", + "Buying SPGI on 2024-07-31 00:00:00\n", + "Buying PM on 2024-07-31 00:00:00\n", + "Buying MSFT on 2024-07-31 00:00:00\n", + "Buying FE on 2024-07-31 00:00:00\n", + "Buying KDP on 2024-07-31 00:00:00\n", + "Buying AVB on 2024-07-31 00:00:00\n", + "Buying DUK on 2024-07-31 00:00:00\n", + "Buying MO on 2024-07-31 00:00:00\n", + "Buying EQR on 2024-07-31 00:00:00\n", + "Buying WELL on 2024-07-31 00:00:00\n", + "Buying GD on 2024-07-31 00:00:00\n", + "Buying OKE on 2024-07-31 00:00:00\n", + "Buying SO on 2024-07-31 00:00:00\n", + "Buying MCK on 2024-07-31 00:00:00\n", + "Buying REGN on 2024-07-31 00:00:00\n", + "Buying FOX on 2024-07-31 00:00:00\n", + "Buying EVRG on 2024-07-31 00:00:00\n", + "Buying PPL on 2024-07-31 00:00:00\n", + "Buying CL on 2024-07-31 00:00:00\n", + "Buying BLK on 2024-07-31 00:00:00\n", + "Buying TJX on 2024-07-31 00:00:00\n", + "Buying FOXA on 2024-07-31 00:00:00\n", + "Buying AEP on 2024-07-31 00:00:00\n", + "Buying VTR on 2024-07-31 00:00:00\n", + "Buying COST on 2024-07-31 00:00:00\n", + "Buying UDR on 2024-07-31 00:00:00\n", + "Buying MA on 2024-07-31 00:00:00\n", + "Buying HOLX on 2024-07-31 00:00:00\n", + "Buying IRM on 2024-07-31 00:00:00\n", + "Buying AVY on 2024-07-31 00:00:00\n", + "Buying MCO on 2024-07-31 00:00:00\n", + "Buying PNW on 2024-07-31 00:00:00\n", + "Buying VRSN on 2024-07-31 00:00:00\n", + "Buying ATO on 2024-07-31 00:00:00\n", + "Buying V on 2024-07-31 00:00:00\n", + "Buying TRMB on 2024-07-31 00:00:00\n", + "Buying PG on 2024-07-31 00:00:00\n", + "Buying MET on 2024-07-31 00:00:00\n", + "Buying RSG on 2024-07-31 00:00:00\n", + "Buying ED on 2024-07-31 00:00:00\n", + "Buying GDDY on 2024-07-31 00:00:00\n", + "Selling DG on 2024-07-31 00:00:00\n", + "Selling BBY on 2024-07-31 00:00:00\n", + "Selling GEN on 2024-07-31 00:00:00\n", + "Selling POOL on 2024-07-31 00:00:00\n", + "Selling AES on 2024-07-31 00:00:00\n", + "Selling WDAY on 2024-07-31 00:00:00\n", + "Selling NRG on 2024-07-31 00:00:00\n", + "Selling DECK on 2024-07-31 00:00:00\n", + "Selling GEV on 2024-07-31 00:00:00\n", + "Selling DAY on 2024-07-31 00:00:00\n", + "Selling WST on 2024-07-31 00:00:00\n", + "Selling DHI on 2024-07-31 00:00:00\n", + "Selling NCLH on 2024-07-31 00:00:00\n", + "Selling MOH on 2024-07-31 00:00:00\n", + "Selling MTCH on 2024-07-31 00:00:00\n", + "Selling FMC on 2024-07-31 00:00:00\n", + "Selling WBD on 2024-07-31 00:00:00\n", + "Selling ON on 2024-07-31 00:00:00\n", + "Selling MTD on 2024-07-31 00:00:00\n", + "Selling AVGO on 2024-07-31 00:00:00\n", + "Selling HPQ on 2024-07-31 00:00:00\n", + "Selling CEG on 2024-07-31 00:00:00\n", + "Selling ALB on 2024-07-31 00:00:00\n", + "Selling CHTR on 2024-07-31 00:00:00\n", + "Selling F on 2024-07-31 00:00:00\n", + "Selling CZR on 2024-07-31 00:00:00\n", + "Selling NKE on 2024-07-31 00:00:00\n", + "Selling NOW on 2024-07-31 00:00:00\n", + "Selling CCL on 2024-07-31 00:00:00\n", + "Selling PARA on 2024-07-31 00:00:00\n", + "Selling TSLA on 2024-07-31 00:00:00\n", + "Selling CRM on 2024-07-31 00:00:00\n", + "Selling MMM on 2024-07-31 00:00:00\n", + "Selling PLTR on 2024-07-31 00:00:00\n", + "Selling NVDA on 2024-07-31 00:00:00\n", + "Selling MHK on 2024-07-31 00:00:00\n", + "Selling SMCI on 2024-07-31 00:00:00\n", + "Selling CRWD on 2024-07-31 00:00:00\n", + "Selling MRNA on 2024-07-31 00:00:00\n", + "Selling TPL on 2024-07-31 00:00:00\n", + "Selling BLDR on 2024-07-31 00:00:00\n", + "Selling LW on 2024-07-31 00:00:00\n", + "Selling VST on 2024-07-31 00:00:00\n", + "Selling WBA on 2024-07-31 00:00:00\n", + "Selling DELL on 2024-07-31 00:00:00\n", + "Selling EPAM on 2024-07-31 00:00:00\n", + "Selling ENPH on 2024-07-31 00:00:00\n", + "Selling FSLR on 2024-07-31 00:00:00\n", + "Selling EW on 2024-07-31 00:00:00\n", + "Selling DXCM on 2024-07-31 00:00:00\n", + "Buying JNPR on 2024-08-31 00:00:00\n", + "Buying ICE on 2024-08-31 00:00:00\n", + "Buying LIN on 2024-08-31 00:00:00\n", + "Buying FE on 2024-08-31 00:00:00\n", + "Buying ANSS on 2024-08-31 00:00:00\n", + "Buying MMC on 2024-08-31 00:00:00\n", + "Buying KO on 2024-08-31 00:00:00\n", + "Buying MSI on 2024-08-31 00:00:00\n", + "Buying PPL on 2024-08-31 00:00:00\n", + "Buying ATO on 2024-08-31 00:00:00\n", + "Buying MSFT on 2024-08-31 00:00:00\n", + "Buying SPGI on 2024-08-31 00:00:00\n", + "Buying BRK-B on 2024-08-31 00:00:00\n", + "Buying EVRG on 2024-08-31 00:00:00\n", + "Buying KDP on 2024-08-31 00:00:00\n", + "Buying BLK on 2024-08-31 00:00:00\n", + "Buying NI on 2024-08-31 00:00:00\n", + "Buying UDR on 2024-08-31 00:00:00\n", + "Buying VTR on 2024-08-31 00:00:00\n", + "Buying DUK on 2024-08-31 00:00:00\n", + "Buying ED on 2024-08-31 00:00:00\n", + "Buying O on 2024-08-31 00:00:00\n", + "Buying GD on 2024-08-31 00:00:00\n", + "Buying EQR on 2024-08-31 00:00:00\n", + "Buying HON on 2024-08-31 00:00:00\n", + "Buying DD on 2024-08-31 00:00:00\n", + "Buying UNP on 2024-08-31 00:00:00\n", + "Buying PM on 2024-08-31 00:00:00\n", + "Buying LNT on 2024-08-31 00:00:00\n", + "Buying AVY on 2024-08-31 00:00:00\n", + "Buying LMT on 2024-08-31 00:00:00\n", + "Buying CME on 2024-08-31 00:00:00\n", + "Buying PEG on 2024-08-31 00:00:00\n", + "Buying WELL on 2024-08-31 00:00:00\n", + "Buying CL on 2024-08-31 00:00:00\n", + "Buying YUM on 2024-08-31 00:00:00\n", + "Buying EA on 2024-08-31 00:00:00\n", + "Buying L on 2024-08-31 00:00:00\n", + "Buying WEC on 2024-08-31 00:00:00\n", + "Buying CTAS on 2024-08-31 00:00:00\n", + "Buying PPG on 2024-08-31 00:00:00\n", + "Buying PEP on 2024-08-31 00:00:00\n", + "Buying SRE on 2024-08-31 00:00:00\n", + "Buying CMS on 2024-08-31 00:00:00\n", + "Buying EIX on 2024-08-31 00:00:00\n", + "Buying COST on 2024-08-31 00:00:00\n", + "Buying SO on 2024-08-31 00:00:00\n", + "Buying ADP on 2024-08-31 00:00:00\n", + "Buying JNJ on 2024-08-31 00:00:00\n", + "Buying AEE on 2024-08-31 00:00:00\n", + "Selling CMG on 2024-08-31 00:00:00\n", + "Selling BBY on 2024-08-31 00:00:00\n", + "Selling MU on 2024-08-31 00:00:00\n", + "Selling K on 2024-08-31 00:00:00\n", + "Selling FMC on 2024-08-31 00:00:00\n", + "Selling ALGN on 2024-08-31 00:00:00\n", + "Selling CRL on 2024-08-31 00:00:00\n", + "Selling MPWR on 2024-08-31 00:00:00\n", + "Selling MOH on 2024-08-31 00:00:00\n", + "Selling NCLH on 2024-08-31 00:00:00\n", + "Selling PODD on 2024-08-31 00:00:00\n", + "Selling MTCH on 2024-08-31 00:00:00\n", + "Selling GEV on 2024-08-31 00:00:00\n", + "Selling UBER on 2024-08-31 00:00:00\n", + "Selling PLTR on 2024-08-31 00:00:00\n", + "Selling AMD on 2024-08-31 00:00:00\n", + "Selling RMD on 2024-08-31 00:00:00\n", + "Selling BLDR on 2024-08-31 00:00:00\n", + "Selling CZR on 2024-08-31 00:00:00\n", + "Selling WST on 2024-08-31 00:00:00\n", + "Selling CCL on 2024-08-31 00:00:00\n", + "Selling NVDA on 2024-08-31 00:00:00\n", + "Selling CHTR on 2024-08-31 00:00:00\n", + "Selling TSLA on 2024-08-31 00:00:00\n", + "Selling F on 2024-08-31 00:00:00\n", + "Selling PARA on 2024-08-31 00:00:00\n", + "Selling CEG on 2024-08-31 00:00:00\n", + "Selling ON on 2024-08-31 00:00:00\n", + "Selling AVGO on 2024-08-31 00:00:00\n", + "Selling AXON on 2024-08-31 00:00:00\n", + "Selling NKE on 2024-08-31 00:00:00\n", + "Selling MMM on 2024-08-31 00:00:00\n", + "Selling VST on 2024-08-31 00:00:00\n", + "Selling WBD on 2024-08-31 00:00:00\n", + "Selling FSLR on 2024-08-31 00:00:00\n", + "Selling ALB on 2024-08-31 00:00:00\n", + "Selling CRWD on 2024-08-31 00:00:00\n", + "Selling MRNA on 2024-08-31 00:00:00\n", + "Selling MHK on 2024-08-31 00:00:00\n", + "Selling INTC on 2024-08-31 00:00:00\n", + "Selling FTNT on 2024-08-31 00:00:00\n", + "Selling TPL on 2024-08-31 00:00:00\n", + "Selling SBUX on 2024-08-31 00:00:00\n", + "Selling WBA on 2024-08-31 00:00:00\n", + "Selling LW on 2024-08-31 00:00:00\n", + "Selling ENPH on 2024-08-31 00:00:00\n", + "Selling EW on 2024-08-31 00:00:00\n", + "Selling DG on 2024-08-31 00:00:00\n", + "Selling SMCI on 2024-08-31 00:00:00\n", + "Selling DXCM on 2024-08-31 00:00:00\n", + "Buying JNPR on 2024-09-30 00:00:00\n", + "Buying LIN on 2024-09-30 00:00:00\n", + "Buying ICE on 2024-09-30 00:00:00\n", + "Buying FE on 2024-09-30 00:00:00\n", + "Buying KDP on 2024-09-30 00:00:00\n", + "Buying ADP on 2024-09-30 00:00:00\n", + "Buying MSI on 2024-09-30 00:00:00\n", + "Buying MSFT on 2024-09-30 00:00:00\n", + "Buying SPGI on 2024-09-30 00:00:00\n", + "Buying ANSS on 2024-09-30 00:00:00\n", + "Buying MMC on 2024-09-30 00:00:00\n", + "Buying PPL on 2024-09-30 00:00:00\n", + "Buying KO on 2024-09-30 00:00:00\n", + "Buying NI on 2024-09-30 00:00:00\n", + "Buying BLK on 2024-09-30 00:00:00\n", + "Buying ATO on 2024-09-30 00:00:00\n", + "Buying EVRG on 2024-09-30 00:00:00\n", + "Buying LNT on 2024-09-30 00:00:00\n", + "Buying CMS on 2024-09-30 00:00:00\n", + "Buying DUK on 2024-09-30 00:00:00\n", + "Buying O on 2024-09-30 00:00:00\n", + "Buying CL on 2024-09-30 00:00:00\n", + "Buying PKG on 2024-09-30 00:00:00\n", + "Buying HON on 2024-09-30 00:00:00\n", + "Buying BALL on 2024-09-30 00:00:00\n", + "Buying MKC on 2024-09-30 00:00:00\n", + "Buying PAYX on 2024-09-30 00:00:00\n", + "Buying WEC on 2024-09-30 00:00:00\n", + "Buying L on 2024-09-30 00:00:00\n", + "Buying VLTO on 2024-09-30 00:00:00\n", + "Buying ED on 2024-09-30 00:00:00\n", + "Buying JCI on 2024-09-30 00:00:00\n", + "Buying BRK-B on 2024-09-30 00:00:00\n", + "Buying GD on 2024-09-30 00:00:00\n", + "Buying ADSK on 2024-09-30 00:00:00\n", + "Buying EIX on 2024-09-30 00:00:00\n", + "Buying EQR on 2024-09-30 00:00:00\n", + "Buying SNA on 2024-09-30 00:00:00\n", + "Buying IFF on 2024-09-30 00:00:00\n", + "Buying PEP on 2024-09-30 00:00:00\n", + "Buying CME on 2024-09-30 00:00:00\n", + "Buying UDR on 2024-09-30 00:00:00\n", + "Buying ITW on 2024-09-30 00:00:00\n", + "Buying LYV on 2024-09-30 00:00:00\n", + "Buying AEE on 2024-09-30 00:00:00\n", + "Buying WAB on 2024-09-30 00:00:00\n", + "Buying FI on 2024-09-30 00:00:00\n", + "Buying CB on 2024-09-30 00:00:00\n", + "Buying TDY on 2024-09-30 00:00:00\n", + "Buying EXC on 2024-09-30 00:00:00\n", + "Selling BEN on 2024-09-30 00:00:00\n", + "Selling AES on 2024-09-30 00:00:00\n", + "Selling MTCH on 2024-09-30 00:00:00\n", + "Selling EL on 2024-09-30 00:00:00\n", + "Selling GEV on 2024-09-30 00:00:00\n", + "Selling K on 2024-09-30 00:00:00\n", + "Selling NOW on 2024-09-30 00:00:00\n", + "Selling AMD on 2024-09-30 00:00:00\n", + "Selling ALGN on 2024-09-30 00:00:00\n", + "Selling AVGO on 2024-09-30 00:00:00\n", + "Selling PODD on 2024-09-30 00:00:00\n", + "Selling LRCX on 2024-09-30 00:00:00\n", + "Selling CRL on 2024-09-30 00:00:00\n", + "Selling UAL on 2024-09-30 00:00:00\n", + "Selling NVDA on 2024-09-30 00:00:00\n", + "Selling CZR on 2024-09-30 00:00:00\n", + "Selling APA on 2024-09-30 00:00:00\n", + "Selling UBER on 2024-09-30 00:00:00\n", + "Selling BLDR on 2024-09-30 00:00:00\n", + "Selling MPWR on 2024-09-30 00:00:00\n", + "Selling WBA on 2024-09-30 00:00:00\n", + "Selling TER on 2024-09-30 00:00:00\n", + "Selling PLTR on 2024-09-30 00:00:00\n", + "Selling TSLA on 2024-09-30 00:00:00\n", + "Selling WST on 2024-09-30 00:00:00\n", + "Selling MOH on 2024-09-30 00:00:00\n", + "Selling F on 2024-09-30 00:00:00\n", + "Selling CHTR on 2024-09-30 00:00:00\n", + "Selling ON on 2024-09-30 00:00:00\n", + "Selling AXON on 2024-09-30 00:00:00\n", + "Selling MU on 2024-09-30 00:00:00\n", + "Selling MMM on 2024-09-30 00:00:00\n", + "Selling MHK on 2024-09-30 00:00:00\n", + "Selling FSLR on 2024-09-30 00:00:00\n", + "Selling CRWD on 2024-09-30 00:00:00\n", + "Selling FTNT on 2024-09-30 00:00:00\n", + "Selling ALB on 2024-09-30 00:00:00\n", + "Selling WBD on 2024-09-30 00:00:00\n", + "Selling SBUX on 2024-09-30 00:00:00\n", + "Selling ENPH on 2024-09-30 00:00:00\n", + "Selling MRNA on 2024-09-30 00:00:00\n", + "Selling INTC on 2024-09-30 00:00:00\n", + "Selling VST on 2024-09-30 00:00:00\n", + "Selling DLTR on 2024-09-30 00:00:00\n", + "Selling LW on 2024-09-30 00:00:00\n", + "Selling CEG on 2024-09-30 00:00:00\n", + "Selling EW on 2024-09-30 00:00:00\n", + "Selling DG on 2024-09-30 00:00:00\n", + "Selling SMCI on 2024-09-30 00:00:00\n", + "Selling DXCM on 2024-09-30 00:00:00\n", + "Buying JNPR on 2024-10-31 00:00:00\n", + "Buying LIN on 2024-10-31 00:00:00\n", + "Buying IT on 2024-10-31 00:00:00\n", + "Buying MSI on 2024-10-31 00:00:00\n", + "Buying WAB on 2024-10-31 00:00:00\n", + "Buying ADP on 2024-10-31 00:00:00\n", + "Buying ECL on 2024-10-31 00:00:00\n", + "Buying FI on 2024-10-31 00:00:00\n", + "Buying JNJ on 2024-10-31 00:00:00\n", + "Buying ROP on 2024-10-31 00:00:00\n", + "Buying ATO on 2024-10-31 00:00:00\n", + "Buying JCI on 2024-10-31 00:00:00\n", + "Buying EVRG on 2024-10-31 00:00:00\n", + "Buying NI on 2024-10-31 00:00:00\n", + "Buying MMC on 2024-10-31 00:00:00\n", + "Buying CTAS on 2024-10-31 00:00:00\n", + "Buying CMS on 2024-10-31 00:00:00\n", + "Buying BSX on 2024-10-31 00:00:00\n", + "Buying BR on 2024-10-31 00:00:00\n", + "Buying VICI on 2024-10-31 00:00:00\n", + "Buying MA on 2024-10-31 00:00:00\n", + "Buying NDAQ on 2024-10-31 00:00:00\n", + "Buying ADSK on 2024-10-31 00:00:00\n", + "Buying FE on 2024-10-31 00:00:00\n", + "Buying BRK-B on 2024-10-31 00:00:00\n", + "Buying PEP on 2024-10-31 00:00:00\n", + "Buying KO on 2024-10-31 00:00:00\n", + "Buying HLT on 2024-10-31 00:00:00\n", + "Buying ITW on 2024-10-31 00:00:00\n", + "Buying BDX on 2024-10-31 00:00:00\n", + "Buying PNW on 2024-10-31 00:00:00\n", + "Buying WEC on 2024-10-31 00:00:00\n", + "Buying CME on 2024-10-31 00:00:00\n", + "Buying AEE on 2024-10-31 00:00:00\n", + "Buying RSG on 2024-10-31 00:00:00\n", + "Buying PG on 2024-10-31 00:00:00\n", + "Buying FIS on 2024-10-31 00:00:00\n", + "Buying PPL on 2024-10-31 00:00:00\n", + "Buying SYK on 2024-10-31 00:00:00\n", + "Buying TEL on 2024-10-31 00:00:00\n", + "Buying SRE on 2024-10-31 00:00:00\n", + "Buying OMC on 2024-10-31 00:00:00\n", + "Buying BK on 2024-10-31 00:00:00\n", + "Buying ORLY on 2024-10-31 00:00:00\n", + "Buying FOX on 2024-10-31 00:00:00\n", + "Buying NOC on 2024-10-31 00:00:00\n", + "Buying DTE on 2024-10-31 00:00:00\n", + "Buying EIX on 2024-10-31 00:00:00\n", + "Buying SPGI on 2024-10-31 00:00:00\n", + "Buying GIS on 2024-10-31 00:00:00\n", + "Selling AMD on 2024-10-31 00:00:00\n", + "Selling UBER on 2024-10-31 00:00:00\n", + "Selling DECK on 2024-10-31 00:00:00\n", + "Selling NRG on 2024-10-31 00:00:00\n", + "Selling BEN on 2024-10-31 00:00:00\n", + "Selling IP on 2024-10-31 00:00:00\n", + "Selling BLDR on 2024-10-31 00:00:00\n", + "Selling CZR on 2024-10-31 00:00:00\n", + "Selling FDX on 2024-10-31 00:00:00\n", + "Selling TER on 2024-10-31 00:00:00\n", + "Selling TPL on 2024-10-31 00:00:00\n", + "Selling BBY on 2024-10-31 00:00:00\n", + "Selling MCK on 2024-10-31 00:00:00\n", + "Selling CNC on 2024-10-31 00:00:00\n", + "Selling LRCX on 2024-10-31 00:00:00\n", + "Selling TPR on 2024-10-31 00:00:00\n", + "Selling MHK on 2024-10-31 00:00:00\n", + "Selling INTC on 2024-10-31 00:00:00\n", + "Selling KLAC on 2024-10-31 00:00:00\n", + "Selling PODD on 2024-10-31 00:00:00\n", + "Selling NEM on 2024-10-31 00:00:00\n", + "Selling MPWR on 2024-10-31 00:00:00\n", + "Selling SW on 2024-10-31 00:00:00\n", + "Selling PLTR on 2024-10-31 00:00:00\n", + "Selling APTV on 2024-10-31 00:00:00\n", + "Selling APA on 2024-10-31 00:00:00\n", + "Selling UAL on 2024-10-31 00:00:00\n", + "Selling NCLH on 2024-10-31 00:00:00\n", + "Selling WST on 2024-10-31 00:00:00\n", + "Selling MRNA on 2024-10-31 00:00:00\n", + "Selling HUM on 2024-10-31 00:00:00\n", + "Selling MU on 2024-10-31 00:00:00\n", + "Selling GPC on 2024-10-31 00:00:00\n", + "Selling FSLR on 2024-10-31 00:00:00\n", + "Selling PAYC on 2024-10-31 00:00:00\n", + "Selling ENPH on 2024-10-31 00:00:00\n", + "Selling EL on 2024-10-31 00:00:00\n", + "Selling SBUX on 2024-10-31 00:00:00\n", + "Selling GRMN on 2024-10-31 00:00:00\n", + "Selling HII on 2024-10-31 00:00:00\n", + "Selling WBD on 2024-10-31 00:00:00\n", + "Selling MOH on 2024-10-31 00:00:00\n", + "Selling ALB on 2024-10-31 00:00:00\n", + "Selling WBA on 2024-10-31 00:00:00\n", + "Selling CEG on 2024-10-31 00:00:00\n", + "Selling VST on 2024-10-31 00:00:00\n", + "Selling DLTR on 2024-10-31 00:00:00\n", + "Selling TSLA on 2024-10-31 00:00:00\n", + "Selling DG on 2024-10-31 00:00:00\n", + "Selling SMCI on 2024-10-31 00:00:00\n", + "Generated 16528 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 BettingAgainstIVOLOrderGenerator\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", + "bai_generator = BettingAgainstIVOLOrderGenerator(lookback_period=60, rebalance_frequency='ME', starting_portfolio_value=100_000)\n", + "orders = bai_generator.generate_orders(sp500_data)\n", + "print(f\"Generated {len(orders)} orders.\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "[{'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'JNJ', 'quantity': 74217}, {'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'L', 'quantity': 74217}, {'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'CLX', 'quantity': 74217}, {'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'XOM', 'quantity': 74217}, {'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'ED', 'quantity': 74217}]\n", + "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 - 2512265.47\n", + "2010-05-04 00:00:00: Portfolio Value - -1131067.93\n", + "2010-05-05 00:00:00: Portfolio Value - -2336708.68\n", + "2010-05-06 00:00:00: Portfolio Value - -7749086.19\n", + "2010-05-07 00:00:00: Portfolio Value - -10058668.68\n", + "2010-05-10 00:00:00: Portfolio Value - -3978519.26\n", + "2010-05-11 00:00:00: Portfolio Value - -3842390.29\n", + "2010-05-12 00:00:00: Portfolio Value - -933764.18\n", + "2010-05-13 00:00:00: Portfolio Value - -2302176.79\n", + "2010-05-14 00:00:00: Portfolio Value - -5050130.42\n", + "2010-05-17 00:00:00: Portfolio Value - -4911785.68\n", + "2010-05-18 00:00:00: Portfolio Value - -7024657.65\n", + "2010-05-19 00:00:00: Portfolio Value - -7858914.95\n", + "2010-05-20 00:00:00: Portfolio Value - -13180130.73\n", + "2010-05-21 00:00:00: Portfolio Value - -11053752.22\n", + "2010-05-24 00:00:00: Portfolio Value - -12657209.95\n", + "2010-05-25 00:00:00: Portfolio Value - -12483747.88\n", + "2010-05-26 00:00:00: Portfolio Value - -13266189.79\n", + "2010-05-27 00:00:00: Portfolio Value - -8485683.72\n", + "2010-05-28 00:00:00: Portfolio Value - -9722297.70\n", + "2010-06-01 00:00:00: Portfolio Value - -12167795.99\n", + "2010-06-02 00:00:00: Portfolio Value - -8360610.08\n", + "2010-06-03 00:00:00: Portfolio Value - -7390581.20\n", + "2010-06-04 00:00:00: Portfolio Value - -12236397.00\n", + "2010-06-07 00:00:00: Portfolio Value - -14667162.88\n", + "2010-06-08 00:00:00: Portfolio Value - -13608083.41\n", + "2010-06-09 00:00:00: Portfolio Value - -14022125.15\n", + "2010-06-10 00:00:00: Portfolio Value - -10674621.48\n", + "2010-06-11 00:00:00: Portfolio Value - -9686116.15\n", + "2010-06-14 00:00:00: Portfolio Value - -9393729.45\n", + "2010-06-15 00:00:00: Portfolio Value - -5796139.66\n", + "2010-06-16 00:00:00: Portfolio Value - -5600948.26\n", + "2010-06-17 00:00:00: Portfolio Value - -4769879.00\n", + "2010-06-18 00:00:00: Portfolio Value - -4911792.80\n", + "2010-06-21 00:00:00: Portfolio Value - -5619749.93\n", + "2010-06-22 00:00:00: Portfolio Value - -8164745.77\n", + "2010-06-23 00:00:00: Portfolio Value - -8513791.36\n", + "2010-06-24 00:00:00: Portfolio Value - -10492689.32\n", + "2010-06-25 00:00:00: Portfolio Value - -9609713.74\n", + "2010-06-28 00:00:00: Portfolio Value - -9801217.28\n", + "2010-06-29 00:00:00: Portfolio Value - -14512397.57\n", + "2010-06-30 00:00:00: Portfolio Value - -15762388.77\n", + "2010-07-01 00:00:00: Portfolio Value - -16017004.50\n", + "2010-07-02 00:00:00: Portfolio Value - -16305526.70\n", + "2010-07-06 00:00:00: Portfolio Value - -15654967.15\n", + "2010-07-07 00:00:00: Portfolio Value - -11067052.41\n", + "2010-07-08 00:00:00: Portfolio Value - -9750019.66\n", + "2010-07-09 00:00:00: Portfolio Value - -8789719.55\n", + "2010-07-12 00:00:00: Portfolio Value - -9475865.35\n", + "2010-07-13 00:00:00: Portfolio Value - -6891811.21\n", + "2010-07-14 00:00:00: Portfolio Value - -6531108.76\n", + "2010-07-15 00:00:00: Portfolio Value - -6288608.77\n", + "2010-07-16 00:00:00: Portfolio Value - -9798155.91\n", + "2010-07-19 00:00:00: Portfolio Value - -9101082.30\n", + "2010-07-20 00:00:00: Portfolio Value - -7280998.04\n", + "2010-07-21 00:00:00: Portfolio Value - -9379353.96\n", + "2010-07-22 00:00:00: Portfolio Value - -6634102.61\n", + "2010-07-23 00:00:00: Portfolio Value - -4913853.31\n", + "2010-07-26 00:00:00: Portfolio Value - -3164462.68\n", + "2010-07-27 00:00:00: Portfolio Value - -3460499.25\n", + "2010-07-28 00:00:00: Portfolio Value - -4489712.86\n", + "2010-07-29 00:00:00: Portfolio Value - -5728108.96\n", + "2010-07-30 00:00:00: Portfolio Value - -6334560.45\n", + "2010-08-02 00:00:00: Portfolio Value - -4263484.36\n", + "2010-08-03 00:00:00: Portfolio Value - -4498334.91\n", + "2010-08-04 00:00:00: Portfolio Value - -3083207.09\n", + "2010-08-05 00:00:00: Portfolio Value - -3629617.54\n", + "2010-08-06 00:00:00: Portfolio Value - -3719272.36\n", + "2010-08-09 00:00:00: Portfolio Value - -2646984.16\n", + "2010-08-10 00:00:00: Portfolio Value - -3565105.71\n", + "2010-08-11 00:00:00: Portfolio Value - -7354797.18\n", + "2010-08-12 00:00:00: Portfolio Value - -7528820.75\n", + "2010-08-13 00:00:00: Portfolio Value - -7887440.78\n", + "2010-08-16 00:00:00: Portfolio Value - -7678019.77\n", + "2010-08-17 00:00:00: Portfolio Value - -5996486.79\n", + "2010-08-18 00:00:00: Portfolio Value - -5941989.35\n", + "2010-08-19 00:00:00: Portfolio Value - -8310654.73\n", + "2010-08-20 00:00:00: Portfolio Value - -7962288.54\n", + "2010-08-23 00:00:00: Portfolio Value - -8523235.48\n", + "2010-08-24 00:00:00: Portfolio Value - -10549407.82\n", + "2010-08-25 00:00:00: Portfolio Value - -9803741.61\n", + "2010-08-26 00:00:00: Portfolio Value - -11004611.27\n", + "2010-08-27 00:00:00: Portfolio Value - -8751472.31\n", + "2010-08-30 00:00:00: Portfolio Value - -11183452.88\n", + "2010-08-31 00:00:00: Portfolio Value - -11081557.81\n", + "2010-09-01 00:00:00: Portfolio Value - -7433667.78\n", + "2010-09-02 00:00:00: Portfolio Value - -5635920.19\n", + "2010-09-03 00:00:00: Portfolio Value - -3364045.47\n", + "2010-09-07 00:00:00: Portfolio Value - -4816088.03\n", + "2010-09-08 00:00:00: Portfolio Value - -3887062.99\n", + "2010-09-09 00:00:00: Portfolio Value - -3217872.55\n", + "2010-09-10 00:00:00: Portfolio Value - -2720104.07\n", + "2010-09-13 00:00:00: Portfolio Value - -890720.06\n", + "2010-09-14 00:00:00: Portfolio Value - -751730.17\n", + "2010-09-15 00:00:00: Portfolio Value - -282255.33\n", + "2010-09-16 00:00:00: Portfolio Value - 124250.20\n", + "2010-09-17 00:00:00: Portfolio Value - 282853.39\n", + "2010-09-20 00:00:00: Portfolio Value - 2398190.10\n", + "2010-09-21 00:00:00: Portfolio Value - 2083021.23\n", + "2010-09-22 00:00:00: Portfolio Value - 868290.15\n", + "2010-09-23 00:00:00: Portfolio Value - -690420.69\n", + "2010-09-24 00:00:00: Portfolio Value - 2566909.90\n", + "2010-09-27 00:00:00: Portfolio Value - 2275478.64\n", + "2010-09-28 00:00:00: Portfolio Value - 3254848.95\n", + "2010-09-29 00:00:00: Portfolio Value - 3167085.30\n", + "2010-09-30 00:00:00: Portfolio Value - 2688391.75\n", + "2010-10-01 00:00:00: Portfolio Value - 3381265.05\n", + "2010-10-04 00:00:00: Portfolio Value - 2349593.05\n", + "2010-10-05 00:00:00: Portfolio Value - 4789501.15\n", + "2010-10-06 00:00:00: Portfolio Value - 4084669.35\n", + "2010-10-07 00:00:00: Portfolio Value - 4201045.99\n", + "2010-10-08 00:00:00: Portfolio Value - 5346243.87\n", + "2010-10-11 00:00:00: Portfolio Value - 5777544.78\n", + "2010-10-12 00:00:00: Portfolio Value - 6430389.81\n", + "2010-10-13 00:00:00: Portfolio Value - 6967325.66\n", + "2010-10-14 00:00:00: Portfolio Value - 6969109.10\n", + "2010-10-15 00:00:00: Portfolio Value - 7428307.11\n", + "2010-10-18 00:00:00: Portfolio Value - 8701582.42\n", + "2010-10-19 00:00:00: Portfolio Value - 6200454.51\n", + "2010-10-20 00:00:00: Portfolio Value - 7917975.46\n", + "2010-10-21 00:00:00: Portfolio Value - 8682508.85\n", + "2010-10-22 00:00:00: Portfolio Value - 8827567.78\n", + "2010-10-25 00:00:00: Portfolio Value - 9249411.20\n", + "2010-10-26 00:00:00: Portfolio Value - 9878191.14\n", + "2010-10-27 00:00:00: Portfolio Value - 9959122.68\n", + "2010-10-28 00:00:00: Portfolio Value - 10368245.91\n", + "2010-10-29 00:00:00: Portfolio Value - 9411900.88\n", + "2010-11-01 00:00:00: Portfolio Value - 8981583.17\n", + "2010-11-02 00:00:00: Portfolio Value - 10703640.89\n", + "2010-11-03 00:00:00: Portfolio Value - 11277352.22\n", + "2010-11-04 00:00:00: Portfolio Value - 13368007.99\n", + "2010-11-05 00:00:00: Portfolio Value - 14236170.36\n", + "2010-11-08 00:00:00: Portfolio Value - 14353008.27\n", + "2010-11-09 00:00:00: Portfolio Value - 12832438.72\n", + "2010-11-10 00:00:00: Portfolio Value - 13408879.25\n", + "2010-11-11 00:00:00: Portfolio Value - 13269362.87\n", + "2010-11-12 00:00:00: Portfolio Value - 11211586.50\n", + "2010-11-15 00:00:00: Portfolio Value - 11322771.50\n", + "2010-11-16 00:00:00: Portfolio Value - 8409876.79\n", + "2010-11-17 00:00:00: Portfolio Value - 7847135.40\n", + "2010-11-18 00:00:00: Portfolio Value - 9935124.80\n", + "2010-11-19 00:00:00: Portfolio Value - 10768475.77\n", + "2010-11-22 00:00:00: Portfolio Value - 11208393.05\n", + "2010-11-23 00:00:00: Portfolio Value - 9156212.47\n", + "2010-11-24 00:00:00: Portfolio Value - 11522063.44\n", + "2010-11-26 00:00:00: Portfolio Value - 10567052.65\n", + "2010-11-29 00:00:00: Portfolio Value - 10175915.72\n", + "2010-11-30 00:00:00: Portfolio Value - 9537740.63\n", + "2010-12-01 00:00:00: Portfolio Value - 12800322.05\n", + "2010-12-02 00:00:00: Portfolio Value - 14226380.10\n", + "2010-12-03 00:00:00: Portfolio Value - 14714236.83\n", + "2010-12-06 00:00:00: Portfolio Value - 14471108.50\n", + "2010-12-07 00:00:00: Portfolio Value - 14331748.86\n", + "2010-12-08 00:00:00: Portfolio Value - 14909333.03\n", + "2010-12-09 00:00:00: Portfolio Value - 15946950.95\n", + "2010-12-10 00:00:00: Portfolio Value - 17156915.08\n", + "2010-12-13 00:00:00: Portfolio Value - 16664199.30\n", + "2010-12-14 00:00:00: Portfolio Value - 16725672.15\n", + "2010-12-15 00:00:00: Portfolio Value - 15815899.37\n", + "2010-12-16 00:00:00: Portfolio Value - 17549503.20\n", + "2010-12-17 00:00:00: Portfolio Value - 18030804.43\n", + "2010-12-20 00:00:00: Portfolio Value - 18388643.19\n", + "2010-12-21 00:00:00: Portfolio Value - 19520547.07\n", + "2010-12-22 00:00:00: Portfolio Value - 19661183.31\n", + "2010-12-23 00:00:00: Portfolio Value - 19183858.85\n", + "2010-12-27 00:00:00: Portfolio Value - 19384176.29\n", + "2010-12-28 00:00:00: Portfolio Value - 19077436.76\n", + "2010-12-29 00:00:00: Portfolio Value - 19080376.01\n", + "2010-12-30 00:00:00: Portfolio Value - 19047037.81\n", + "2010-12-31 00:00:00: Portfolio Value - 18699044.04\n", + "2011-01-03 00:00:00: Portfolio Value - 20881349.71\n", + "2011-01-04 00:00:00: Portfolio Value - 20266805.12\n", + "2011-01-05 00:00:00: Portfolio Value - 21144300.21\n", + "2011-01-06 00:00:00: Portfolio Value - 21246482.31\n", + "2011-01-07 00:00:00: Portfolio Value - 21514708.43\n", + "2011-01-10 00:00:00: Portfolio Value - 21236356.76\n", + "2011-01-11 00:00:00: Portfolio Value - 21700028.71\n", + "2011-01-12 00:00:00: Portfolio Value - 23209173.10\n", + "2011-01-13 00:00:00: Portfolio Value - 23086271.10\n", + "2011-01-14 00:00:00: Portfolio Value - 24393296.43\n", + "2011-01-18 00:00:00: Portfolio Value - 25080852.22\n", + "2011-01-19 00:00:00: Portfolio Value - 22516980.39\n", + "2011-01-20 00:00:00: Portfolio Value - 22545131.61\n", + "2011-01-21 00:00:00: Portfolio Value - 22408279.63\n", + "2011-01-24 00:00:00: Portfolio Value - 23896700.84\n", + "2011-01-25 00:00:00: Portfolio Value - 23070655.29\n", + "2011-01-26 00:00:00: Portfolio Value - 23835322.80\n", + "2011-01-27 00:00:00: Portfolio Value - 24872529.81\n", + "2011-01-28 00:00:00: Portfolio Value - 21621282.56\n", + "2011-01-31 00:00:00: Portfolio Value - 22668621.55\n", + "2011-02-01 00:00:00: Portfolio Value - 25083312.72\n", + "2011-02-02 00:00:00: Portfolio Value - 25243029.41\n", + "2011-02-03 00:00:00: Portfolio Value - 25978969.15\n", + "2011-02-04 00:00:00: Portfolio Value - 26187015.48\n", + "2011-02-07 00:00:00: Portfolio Value - 27565865.99\n", + "2011-02-08 00:00:00: Portfolio Value - 28493188.70\n", + "2011-02-09 00:00:00: Portfolio Value - 27931684.02\n", + "2011-02-10 00:00:00: Portfolio Value - 27615099.02\n", + "2011-02-11 00:00:00: Portfolio Value - 29860587.38\n", + "2011-02-14 00:00:00: Portfolio Value - 30254286.33\n", + "2011-02-15 00:00:00: Portfolio Value - 29754011.77\n", + "2011-02-16 00:00:00: Portfolio Value - 30896568.02\n", + "2011-02-17 00:00:00: Portfolio Value - 31603542.10\n", + "2011-02-18 00:00:00: Portfolio Value - 31512086.56\n", + "2011-02-22 00:00:00: Portfolio Value - 27632080.96\n", + "2011-02-23 00:00:00: Portfolio Value - 25743641.11\n", + "2011-02-24 00:00:00: Portfolio Value - 25907221.38\n", + "2011-02-25 00:00:00: Portfolio Value - 27106879.65\n", + "2011-02-28 00:00:00: Portfolio Value - 26557977.88\n", + "2011-03-01 00:00:00: Portfolio Value - 24345517.35\n", + "2011-03-02 00:00:00: Portfolio Value - 24586797.29\n", + "2011-03-03 00:00:00: Portfolio Value - 27416136.78\n", + "2011-03-04 00:00:00: Portfolio Value - 26509309.71\n", + "2011-03-07 00:00:00: Portfolio Value - 24988842.75\n", + "2011-03-08 00:00:00: Portfolio Value - 27150303.92\n", + "2011-03-09 00:00:00: Portfolio Value - 27307238.11\n", + "2011-03-10 00:00:00: Portfolio Value - 24339356.24\n", + "2011-03-11 00:00:00: Portfolio Value - 25441553.57\n", + "2011-03-14 00:00:00: Portfolio Value - 24763872.88\n", + "2011-03-15 00:00:00: Portfolio Value - 24136387.42\n", + "2011-03-16 00:00:00: Portfolio Value - 21288459.99\n", + "2011-03-17 00:00:00: Portfolio Value - 22432256.38\n", + "2011-03-18 00:00:00: Portfolio Value - 23029929.79\n", + "2011-03-21 00:00:00: Portfolio Value - 25713035.84\n", + "2011-03-22 00:00:00: Portfolio Value - 25011940.28\n", + "2011-03-23 00:00:00: Portfolio Value - 25294270.50\n", + "2011-03-24 00:00:00: Portfolio Value - 27009709.62\n", + "2011-03-25 00:00:00: Portfolio Value - 27712202.48\n", + "2011-03-28 00:00:00: Portfolio Value - 27719375.08\n", + "2011-03-29 00:00:00: Portfolio Value - 29005410.06\n", + "2011-03-30 00:00:00: Portfolio Value - 30149539.27\n", + "2011-03-31 00:00:00: Portfolio Value - 30198021.41\n", + "2011-04-01 00:00:00: Portfolio Value - 31709150.81\n", + "2011-04-04 00:00:00: Portfolio Value - 31688592.14\n", + "2011-04-05 00:00:00: Portfolio Value - 31658165.66\n", + "2011-04-06 00:00:00: Portfolio Value - 32287734.84\n", + "2011-04-07 00:00:00: Portfolio Value - 31882910.17\n", + "2011-04-08 00:00:00: Portfolio Value - 30612412.09\n", + "2011-04-11 00:00:00: Portfolio Value - 30110729.39\n", + "2011-04-12 00:00:00: Portfolio Value - 29381609.84\n", + "2011-04-13 00:00:00: Portfolio Value - 30181499.76\n", + "2011-04-14 00:00:00: Portfolio Value - 29666924.24\n", + "2011-04-15 00:00:00: Portfolio Value - 30790073.90\n", + "2011-04-18 00:00:00: Portfolio Value - 29850154.49\n", + "2011-04-19 00:00:00: Portfolio Value - 29902546.11\n", + "2011-04-20 00:00:00: Portfolio Value - 32262863.35\n", + "2011-04-21 00:00:00: Portfolio Value - 33059101.12\n", + "2011-04-25 00:00:00: Portfolio Value - 32577059.14\n", + "2011-04-26 00:00:00: Portfolio Value - 33787772.27\n", + "2011-04-27 00:00:00: Portfolio Value - 36406706.72\n", + "2011-04-28 00:00:00: Portfolio Value - 35922711.98\n", + "2011-04-29 00:00:00: Portfolio Value - 34945462.69\n", + "2011-05-02 00:00:00: Portfolio Value - 35086722.89\n", + "2011-05-03 00:00:00: Portfolio Value - 34009825.23\n", + "2011-05-04 00:00:00: Portfolio Value - 32196915.59\n", + "2011-05-05 00:00:00: Portfolio Value - 31653654.70\n", + "2011-05-06 00:00:00: Portfolio Value - 32734227.50\n", + "2011-05-09 00:00:00: Portfolio Value - 33458858.86\n", + "2011-05-10 00:00:00: Portfolio Value - 34951587.36\n", + "2011-05-11 00:00:00: Portfolio Value - 33600321.83\n", + "2011-05-12 00:00:00: Portfolio Value - 35229509.03\n", + "2011-05-13 00:00:00: Portfolio Value - 33552113.77\n", + "2011-05-16 00:00:00: Portfolio Value - 32250405.15\n", + "2011-05-17 00:00:00: Portfolio Value - 32488496.23\n", + "2011-05-18 00:00:00: Portfolio Value - 34207489.47\n", + "2011-05-19 00:00:00: Portfolio Value - 34467381.57\n", + "2011-05-20 00:00:00: Portfolio Value - 33333489.33\n", + "2011-05-23 00:00:00: Portfolio Value - 31016388.36\n", + "2011-05-24 00:00:00: Portfolio Value - 30608251.34\n", + "2011-05-25 00:00:00: Portfolio Value - 30783477.34\n", + "2011-05-26 00:00:00: Portfolio Value - 31233860.75\n", + "2011-05-27 00:00:00: Portfolio Value - 32188762.93\n", + "2011-05-31 00:00:00: Portfolio Value - 34157017.51\n", + "2011-06-01 00:00:00: Portfolio Value - 30293724.02\n", + "2011-06-02 00:00:00: Portfolio Value - 29465454.12\n", + "2011-06-03 00:00:00: Portfolio Value - 27649327.90\n", + "2011-06-06 00:00:00: Portfolio Value - 25582101.65\n", + "2011-06-07 00:00:00: Portfolio Value - 25566081.51\n", + "2011-06-08 00:00:00: Portfolio Value - 24699090.90\n", + "2011-06-09 00:00:00: Portfolio Value - 25884609.51\n", + "2011-06-10 00:00:00: Portfolio Value - 24453484.39\n", + "2011-06-13 00:00:00: Portfolio Value - 24764111.00\n", + "2011-06-14 00:00:00: Portfolio Value - 27006117.08\n", + "2011-06-15 00:00:00: Portfolio Value - 24497732.96\n", + "2011-06-16 00:00:00: Portfolio Value - 24938359.45\n", + "2011-06-17 00:00:00: Portfolio Value - 25776076.37\n", + "2011-06-20 00:00:00: Portfolio Value - 27205600.57\n", + "2011-06-21 00:00:00: Portfolio Value - 29521323.18\n", + "2011-06-22 00:00:00: Portfolio Value - 28039429.82\n", + "2011-06-23 00:00:00: Portfolio Value - 27748487.68\n", + "2011-06-24 00:00:00: Portfolio Value - 25534095.95\n", + "2011-06-27 00:00:00: Portfolio Value - 27161982.06\n", + "2011-06-28 00:00:00: Portfolio Value - 29995557.10\n", + "2011-06-29 00:00:00: Portfolio Value - 31277077.43\n", + "2011-06-30 00:00:00: Portfolio Value - 32806080.01\n", + "2011-07-01 00:00:00: Portfolio Value - 35843364.54\n", + "2011-07-05 00:00:00: Portfolio Value - 35908605.47\n", + "2011-07-06 00:00:00: Portfolio Value - 36434238.10\n", + "2011-07-07 00:00:00: Portfolio Value - 38365918.20\n", + "2011-07-08 00:00:00: Portfolio Value - 37802209.49\n", + "2011-07-11 00:00:00: Portfolio Value - 34097073.28\n", + "2011-07-12 00:00:00: Portfolio Value - 33667898.01\n", + "2011-07-13 00:00:00: Portfolio Value - 34222955.83\n", + "2011-07-14 00:00:00: Portfolio Value - 32963162.94\n", + "2011-07-15 00:00:00: Portfolio Value - 33820459.64\n", + "2011-07-18 00:00:00: Portfolio Value - 31958397.54\n", + "2011-07-19 00:00:00: Portfolio Value - 34989030.05\n", + "2011-07-20 00:00:00: Portfolio Value - 35070214.75\n", + "2011-07-21 00:00:00: Portfolio Value - 36780967.68\n", + "2011-07-22 00:00:00: Portfolio Value - 36912011.48\n", + "2011-07-25 00:00:00: Portfolio Value - 35103070.67\n", + "2011-07-26 00:00:00: Portfolio Value - 34231142.31\n", + "2011-07-27 00:00:00: Portfolio Value - 30697961.03\n", + "2011-07-28 00:00:00: Portfolio Value - 29154589.50\n", + "2011-07-29 00:00:00: Portfolio Value - 28328831.75\n", + "2011-08-01 00:00:00: Portfolio Value - 27605635.50\n", + "2011-08-02 00:00:00: Portfolio Value - 22965628.65\n", + "2011-08-03 00:00:00: Portfolio Value - 24054661.90\n", + "2011-08-04 00:00:00: Portfolio Value - 15797659.42\n", + "2011-08-05 00:00:00: Portfolio Value - 15403014.16\n", + "2011-08-08 00:00:00: Portfolio Value - 4482041.81\n", + "2011-08-09 00:00:00: Portfolio Value - 11786892.62\n", + "2011-08-10 00:00:00: Portfolio Value - 5578483.11\n", + "2011-08-11 00:00:00: Portfolio Value - 12956171.44\n", + "2011-08-12 00:00:00: Portfolio Value - 14740698.03\n", + "2011-08-15 00:00:00: Portfolio Value - 18761577.68\n", + "2011-08-16 00:00:00: Portfolio Value - 16972108.82\n", + "2011-08-17 00:00:00: Portfolio Value - 16233284.97\n", + "2011-08-18 00:00:00: Portfolio Value - 8703201.63\n", + "2011-08-19 00:00:00: Portfolio Value - 5959637.95\n", + "2011-08-22 00:00:00: Portfolio Value - 5501885.47\n", + "2011-08-23 00:00:00: Portfolio Value - 11740232.80\n", + "2011-08-24 00:00:00: Portfolio Value - 13862840.78\n", + "2011-08-25 00:00:00: Portfolio Value - 11286315.35\n", + "2011-08-26 00:00:00: Portfolio Value - 14310258.72\n", + "2011-08-29 00:00:00: Portfolio Value - 19381921.32\n", + "2011-08-30 00:00:00: Portfolio Value - 20224248.32\n", + "2011-08-31 00:00:00: Portfolio Value - 20629765.87\n", + "2011-09-01 00:00:00: Portfolio Value - 18574213.86\n", + "2011-09-02 00:00:00: Portfolio Value - 14465514.81\n", + "2011-09-06 00:00:00: Portfolio Value - 13776731.85\n", + "2011-09-07 00:00:00: Portfolio Value - 18528064.22\n", + "2011-09-08 00:00:00: Portfolio Value - 17038166.54\n", + "2011-09-09 00:00:00: Portfolio Value - 13012876.85\n", + "2011-09-12 00:00:00: Portfolio Value - 14186410.24\n", + "2011-09-13 00:00:00: Portfolio Value - 15946730.85\n", + "2011-09-14 00:00:00: Portfolio Value - 17675932.83\n", + "2011-09-15 00:00:00: Portfolio Value - 19074701.21\n", + "2011-09-16 00:00:00: Portfolio Value - 19363252.25\n", + "2011-09-19 00:00:00: Portfolio Value - 18782161.46\n", + "2011-09-20 00:00:00: Portfolio Value - 17536597.86\n", + "2011-09-21 00:00:00: Portfolio Value - 13439187.30\n", + "2011-09-22 00:00:00: Portfolio Value - 8393532.16\n", + "2011-09-23 00:00:00: Portfolio Value - 10168452.83\n", + "2011-09-26 00:00:00: Portfolio Value - 12748745.85\n", + "2011-09-27 00:00:00: Portfolio Value - 14689373.62\n", + "2011-09-28 00:00:00: Portfolio Value - 10602315.60\n", + "2011-09-29 00:00:00: Portfolio Value - 11368165.39\n", + "2011-09-30 00:00:00: Portfolio Value - 7231428.77\n", + "2011-10-03 00:00:00: Portfolio Value - 1638725.18\n", + "2011-10-04 00:00:00: Portfolio Value - 5389088.25\n", + "2011-10-05 00:00:00: Portfolio Value - 8212809.03\n", + "2011-10-06 00:00:00: Portfolio Value - 12214314.66\n", + "2011-10-07 00:00:00: Portfolio Value - 10069976.37\n", + "2011-10-10 00:00:00: Portfolio Value - 15087349.06\n", + "2011-10-11 00:00:00: Portfolio Value - 14183358.41\n", + "2011-10-12 00:00:00: Portfolio Value - 15158210.11\n", + "2011-10-13 00:00:00: Portfolio Value - 14864406.34\n", + "2011-10-14 00:00:00: Portfolio Value - 16549160.84\n", + "2011-10-17 00:00:00: Portfolio Value - 13733528.85\n", + "2011-10-18 00:00:00: Portfolio Value - 16442876.50\n", + "2011-10-19 00:00:00: Portfolio Value - 14556233.02\n", + "2011-10-20 00:00:00: Portfolio Value - 14975047.50\n", + "2011-10-21 00:00:00: Portfolio Value - 18133782.21\n", + "2011-10-24 00:00:00: Portfolio Value - 20938028.62\n", + "2011-10-25 00:00:00: Portfolio Value - 15537447.95\n", + "2011-10-26 00:00:00: Portfolio Value - 17632438.67\n", + "2011-10-27 00:00:00: Portfolio Value - 23264007.41\n", + "2011-10-28 00:00:00: Portfolio Value - 23663386.02\n", + "2011-10-31 00:00:00: Portfolio Value - 19821062.45\n", + "2011-11-01 00:00:00: Portfolio Value - 15462888.64\n", + "2011-11-02 00:00:00: Portfolio Value - 17814022.07\n", + "2011-11-03 00:00:00: Portfolio Value - 19857525.54\n", + "2011-11-04 00:00:00: Portfolio Value - 19859414.08\n", + "2011-11-07 00:00:00: Portfolio Value - 20195541.19\n", + "2011-11-08 00:00:00: Portfolio Value - 21772238.81\n", + "2011-11-09 00:00:00: Portfolio Value - 15671426.71\n", + "2011-11-10 00:00:00: Portfolio Value - 16323314.26\n", + "2011-11-11 00:00:00: Portfolio Value - 19299567.08\n", + "2011-11-14 00:00:00: Portfolio Value - 17832722.43\n", + "2011-11-15 00:00:00: Portfolio Value - 18632410.73\n", + "2011-11-16 00:00:00: Portfolio Value - 15327778.67\n", + "2011-11-17 00:00:00: Portfolio Value - 13203643.53\n", + "2011-11-18 00:00:00: Portfolio Value - 12979167.80\n", + "2011-11-21 00:00:00: Portfolio Value - 10438037.01\n", + "2011-11-22 00:00:00: Portfolio Value - 9863282.45\n", + "2011-11-23 00:00:00: Portfolio Value - 6659965.81\n", + "2011-11-25 00:00:00: Portfolio Value - 6222666.75\n", + "2011-11-28 00:00:00: Portfolio Value - 11281955.65\n", + "2011-11-29 00:00:00: Portfolio Value - 11369962.04\n", + "2011-11-30 00:00:00: Portfolio Value - 18411545.12\n", + "2011-12-01 00:00:00: Portfolio Value - 18064050.20\n", + "2011-12-02 00:00:00: Portfolio Value - 18164381.64\n", + "2011-12-05 00:00:00: Portfolio Value - 19215998.43\n", + "2011-12-06 00:00:00: Portfolio Value - 18866727.29\n", + "2011-12-07 00:00:00: Portfolio Value - 19306140.61\n", + "2011-12-08 00:00:00: Portfolio Value - 15906005.23\n", + "2011-12-09 00:00:00: Portfolio Value - 18832275.15\n", + "2011-12-12 00:00:00: Portfolio Value - 16918854.36\n", + "2011-12-13 00:00:00: Portfolio Value - 14637770.65\n", + "2011-12-14 00:00:00: Portfolio Value - 12069237.34\n", + "2011-12-15 00:00:00: Portfolio Value - 12896065.86\n", + "2011-12-16 00:00:00: Portfolio Value - 13355905.79\n", + "2011-12-19 00:00:00: Portfolio Value - 11455193.90\n", + "2011-12-20 00:00:00: Portfolio Value - 16382120.41\n", + "2011-12-21 00:00:00: Portfolio Value - 16713798.52\n", + "2011-12-22 00:00:00: Portfolio Value - 17838695.48\n", + "2011-12-23 00:00:00: Portfolio Value - 19407702.59\n", + "2011-12-27 00:00:00: Portfolio Value - 19719190.05\n", + "2011-12-28 00:00:00: Portfolio Value - 17357864.00\n", + "2011-12-29 00:00:00: Portfolio Value - 18947420.25\n", + "2011-12-30 00:00:00: Portfolio Value - 18164238.34\n", + "2012-01-03 00:00:00: Portfolio Value - 19695854.52\n", + "2012-01-04 00:00:00: Portfolio Value - 19606471.83\n", + "2012-01-05 00:00:00: Portfolio Value - 20331424.43\n", + "2012-01-06 00:00:00: Portfolio Value - 20005103.48\n", + "2012-01-09 00:00:00: Portfolio Value - 20295558.50\n", + "2012-01-10 00:00:00: Portfolio Value - 23336320.13\n", + "2012-01-11 00:00:00: Portfolio Value - 24894777.23\n", + "2012-01-12 00:00:00: Portfolio Value - 25186499.19\n", + "2012-01-13 00:00:00: Portfolio Value - 24578266.63\n", + "2012-01-17 00:00:00: Portfolio Value - 24995745.70\n", + "2012-01-18 00:00:00: Portfolio Value - 27378506.16\n", + "2012-01-19 00:00:00: Portfolio Value - 27902523.05\n", + "2012-01-20 00:00:00: Portfolio Value - 27973575.33\n", + "2012-01-23 00:00:00: Portfolio Value - 27930409.64\n", + "2012-01-24 00:00:00: Portfolio Value - 28214692.69\n", + "2012-01-25 00:00:00: Portfolio Value - 30508869.25\n", + "2012-01-26 00:00:00: Portfolio Value - 30375208.34\n", + "2012-01-27 00:00:00: Portfolio Value - 31209761.06\n", + "2012-01-30 00:00:00: Portfolio Value - 30547833.87\n", + "2012-01-31 00:00:00: Portfolio Value - 30692306.10\n", + "2012-02-01 00:00:00: Portfolio Value - 32799126.94\n", + "2012-02-02 00:00:00: Portfolio Value - 33503841.72\n", + "2012-02-03 00:00:00: Portfolio Value - 35767030.55\n", + "2012-02-06 00:00:00: Portfolio Value - 35848774.13\n", + "2012-02-07 00:00:00: Portfolio Value - 35853479.66\n", + "2012-02-08 00:00:00: Portfolio Value - 36393453.71\n", + "2012-02-09 00:00:00: Portfolio Value - 36841761.82\n", + "2012-02-10 00:00:00: Portfolio Value - 34970038.23\n", + "2012-02-13 00:00:00: Portfolio Value - 36348206.49\n", + "2012-02-14 00:00:00: Portfolio Value - 35857176.07\n", + "2012-02-15 00:00:00: Portfolio Value - 34926685.57\n", + "2012-02-16 00:00:00: Portfolio Value - 36438647.15\n", + "2012-02-17 00:00:00: Portfolio Value - 36324450.43\n", + "2012-02-21 00:00:00: Portfolio Value - 35600784.78\n", + "2012-02-22 00:00:00: Portfolio Value - 34773948.47\n", + "2012-02-23 00:00:00: Portfolio Value - 35893805.81\n", + "2012-02-24 00:00:00: Portfolio Value - 35959274.89\n", + "2012-02-27 00:00:00: Portfolio Value - 36247541.44\n", + "2012-02-28 00:00:00: Portfolio Value - 36812081.32\n", + "2012-02-29 00:00:00: Portfolio Value - 35796907.21\n", + "2012-03-01 00:00:00: Portfolio Value - 37587475.51\n", + "2012-03-02 00:00:00: Portfolio Value - 37599137.94\n", + "2012-03-05 00:00:00: Portfolio Value - 37040632.19\n", + "2012-03-06 00:00:00: Portfolio Value - 33724993.57\n", + "2012-03-07 00:00:00: Portfolio Value - 35325288.20\n", + "2012-03-08 00:00:00: Portfolio Value - 37214122.82\n", + "2012-03-09 00:00:00: Portfolio Value - 37963284.38\n", + "2012-03-12 00:00:00: Portfolio Value - 38075038.33\n", + "2012-03-13 00:00:00: Portfolio Value - 41331895.28\n", + "2012-03-14 00:00:00: Portfolio Value - 40302514.73\n", + "2012-03-15 00:00:00: Portfolio Value - 42427702.68\n", + "2012-03-16 00:00:00: Portfolio Value - 41713367.50\n", + "2012-03-19 00:00:00: Portfolio Value - 42239781.07\n", + "2012-03-20 00:00:00: Portfolio Value - 41838519.13\n", + "2012-03-21 00:00:00: Portfolio Value - 42103822.37\n", + "2012-03-22 00:00:00: Portfolio Value - 41627951.22\n", + "2012-03-23 00:00:00: Portfolio Value - 42145747.29\n", + "2012-03-26 00:00:00: Portfolio Value - 44722969.96\n", + "2012-03-27 00:00:00: Portfolio Value - 43922715.24\n", + "2012-03-28 00:00:00: Portfolio Value - 42998716.67\n", + "2012-03-29 00:00:00: Portfolio Value - 42524688.05\n", + "2012-03-30 00:00:00: Portfolio Value - 43266311.26\n", + "2012-04-02 00:00:00: Portfolio Value - 44727135.87\n", + "2012-04-03 00:00:00: Portfolio Value - 44881759.74\n", + "2012-04-04 00:00:00: Portfolio Value - 42556866.99\n", + "2012-04-05 00:00:00: Portfolio Value - 42489327.11\n", + "2012-04-09 00:00:00: Portfolio Value - 40281063.91\n", + "2012-04-10 00:00:00: Portfolio Value - 36277526.46\n", + "2012-04-11 00:00:00: Portfolio Value - 38421367.38\n", + "2012-04-12 00:00:00: Portfolio Value - 40668398.99\n", + "2012-04-13 00:00:00: Portfolio Value - 38777843.78\n", + "2012-04-16 00:00:00: Portfolio Value - 39203850.97\n", + "2012-04-17 00:00:00: Portfolio Value - 41697565.91\n", + "2012-04-18 00:00:00: Portfolio Value - 41718011.53\n", + "2012-04-19 00:00:00: Portfolio Value - 41050947.82\n", + "2012-04-20 00:00:00: Portfolio Value - 41603136.87\n", + "2012-04-23 00:00:00: Portfolio Value - 39535346.81\n", + "2012-04-24 00:00:00: Portfolio Value - 39389298.57\n", + "2012-04-25 00:00:00: Portfolio Value - 42171893.51\n", + "2012-04-26 00:00:00: Portfolio Value - 44308613.82\n", + "2012-04-27 00:00:00: Portfolio Value - 44701565.43\n", + "2012-04-30 00:00:00: Portfolio Value - 43922268.57\n", + "2012-05-01 00:00:00: Portfolio Value - 44476025.91\n", + "2012-05-02 00:00:00: Portfolio Value - 44670260.98\n", + "2012-05-03 00:00:00: Portfolio Value - 42875643.22\n", + "2012-05-04 00:00:00: Portfolio Value - 39487305.23\n", + "2012-05-07 00:00:00: Portfolio Value - 39285418.16\n", + "2012-05-08 00:00:00: Portfolio Value - 38300265.05\n", + "2012-05-09 00:00:00: Portfolio Value - 36916161.58\n", + "2012-05-10 00:00:00: Portfolio Value - 37950820.56\n", + "2012-05-11 00:00:00: Portfolio Value - 38034933.21\n", + "2012-05-14 00:00:00: Portfolio Value - 35765491.48\n", + "2012-05-15 00:00:00: Portfolio Value - 35125837.90\n", + "2012-05-16 00:00:00: Portfolio Value - 34615489.51\n", + "2012-05-17 00:00:00: Portfolio Value - 30703177.21\n", + "2012-05-18 00:00:00: Portfolio Value - 28597595.99\n", + "2012-05-21 00:00:00: Portfolio Value - 31937129.67\n", + "2012-05-22 00:00:00: Portfolio Value - 32153290.40\n", + "2012-05-23 00:00:00: Portfolio Value - 32844204.10\n", + "2012-05-24 00:00:00: Portfolio Value - 33629091.53\n", + "2012-05-25 00:00:00: Portfolio Value - 33509011.65\n", + "2012-05-29 00:00:00: Portfolio Value - 35621523.43\n", + "2012-05-30 00:00:00: Portfolio Value - 32852772.01\n", + "2012-05-31 00:00:00: Portfolio Value - 32429147.61\n", + "2012-06-01 00:00:00: Portfolio Value - 27015398.19\n", + "2012-06-04 00:00:00: Portfolio Value - 26871998.93\n", + "2012-06-05 00:00:00: Portfolio Value - 28597128.38\n", + "2012-06-06 00:00:00: Portfolio Value - 33059169.60\n", + "2012-06-07 00:00:00: Portfolio Value - 31941931.37\n", + "2012-06-08 00:00:00: Portfolio Value - 33340445.27\n", + "2012-06-11 00:00:00: Portfolio Value - 30338994.13\n", + "2012-06-12 00:00:00: Portfolio Value - 32374713.00\n", + "2012-06-13 00:00:00: Portfolio Value - 29881822.61\n", + "2012-06-14 00:00:00: Portfolio Value - 31462613.27\n", + "2012-06-15 00:00:00: Portfolio Value - 33861059.30\n", + "2012-06-18 00:00:00: Portfolio Value - 34733672.71\n", + "2012-06-19 00:00:00: Portfolio Value - 36548419.55\n", + "2012-06-20 00:00:00: Portfolio Value - 35999641.91\n", + "2012-06-21 00:00:00: Portfolio Value - 32159612.67\n", + "2012-06-22 00:00:00: Portfolio Value - 33378336.93\n", + "2012-06-25 00:00:00: Portfolio Value - 30877244.34\n", + "2012-06-26 00:00:00: Portfolio Value - 31683209.09\n", + "2012-06-27 00:00:00: Portfolio Value - 32612504.92\n", + "2012-06-28 00:00:00: Portfolio Value - 31898745.68\n", + "2012-06-29 00:00:00: Portfolio Value - 36019023.51\n", + "2012-07-02 00:00:00: Portfolio Value - 37143989.33\n", + "2012-07-03 00:00:00: Portfolio Value - 38203127.14\n", + "2012-07-05 00:00:00: Portfolio Value - 37814878.35\n", + "2012-07-06 00:00:00: Portfolio Value - 36316570.73\n", + "2012-07-09 00:00:00: Portfolio Value - 35643428.44\n", + "2012-07-10 00:00:00: Portfolio Value - 34540907.40\n", + "2012-07-11 00:00:00: Portfolio Value - 33968848.32\n", + "2012-07-12 00:00:00: Portfolio Value - 33656605.41\n", + "2012-07-13 00:00:00: Portfolio Value - 36080465.76\n", + "2012-07-16 00:00:00: Portfolio Value - 35593760.47\n", + "2012-07-17 00:00:00: Portfolio Value - 36781071.99\n", + "2012-07-18 00:00:00: Portfolio Value - 37261157.01\n", + "2012-07-19 00:00:00: Portfolio Value - 37872304.17\n", + "2012-07-20 00:00:00: Portfolio Value - 35807995.18\n", + "2012-07-23 00:00:00: Portfolio Value - 33850615.18\n", + "2012-07-24 00:00:00: Portfolio Value - 32020845.45\n", + "2012-07-25 00:00:00: Portfolio Value - 32535511.08\n", + "2012-07-26 00:00:00: Portfolio Value - 36314561.42\n", + "2012-07-27 00:00:00: Portfolio Value - 39436049.89\n", + "2012-07-30 00:00:00: Portfolio Value - 38919814.89\n", + "2012-07-31 00:00:00: Portfolio Value - 37433171.64\n", + "2012-08-01 00:00:00: Portfolio Value - 36176589.01\n", + "2012-08-02 00:00:00: Portfolio Value - 35215363.57\n", + "2012-08-03 00:00:00: Portfolio Value - 38503547.30\n", + "2012-08-06 00:00:00: Portfolio Value - 39197225.12\n", + "2012-08-07 00:00:00: Portfolio Value - 40660383.51\n", + "2012-08-08 00:00:00: Portfolio Value - 40482559.77\n", + "2012-08-09 00:00:00: Portfolio Value - 40555973.18\n", + "2012-08-10 00:00:00: Portfolio Value - 41101175.04\n", + "2012-08-13 00:00:00: Portfolio Value - 40625526.50\n", + "2012-08-14 00:00:00: Portfolio Value - 40675992.69\n", + "2012-08-15 00:00:00: Portfolio Value - 41617261.85\n", + "2012-08-16 00:00:00: Portfolio Value - 43227368.85\n", + "2012-08-17 00:00:00: Portfolio Value - 44191139.71\n", + "2012-08-20 00:00:00: Portfolio Value - 43865996.50\n", + "2012-08-21 00:00:00: Portfolio Value - 43276512.77\n", + "2012-08-22 00:00:00: Portfolio Value - 43393370.25\n", + "2012-08-23 00:00:00: Portfolio Value - 42407066.51\n", + "2012-08-24 00:00:00: Portfolio Value - 43908234.10\n", + "2012-08-27 00:00:00: Portfolio Value - 44012547.47\n", + "2012-08-28 00:00:00: Portfolio Value - 44274391.13\n", + "2012-08-29 00:00:00: Portfolio Value - 44266497.29\n", + "2012-08-30 00:00:00: Portfolio Value - 42772174.90\n", + "2012-08-31 00:00:00: Portfolio Value - 43822731.97\n", + "2012-09-04 00:00:00: Portfolio Value - 44714173.52\n", + "2012-09-05 00:00:00: Portfolio Value - 44511710.33\n", + "2012-09-06 00:00:00: Portfolio Value - 48419685.18\n", + "2012-09-07 00:00:00: Portfolio Value - 49700253.83\n", + "2012-09-10 00:00:00: Portfolio Value - 48714511.20\n", + "2012-09-11 00:00:00: Portfolio Value - 48956913.27\n", + "2012-09-12 00:00:00: Portfolio Value - 49061653.74\n", + "2012-09-13 00:00:00: Portfolio Value - 51736248.94\n", + "2012-09-14 00:00:00: Portfolio Value - 52321111.52\n", + "2012-09-17 00:00:00: Portfolio Value - 51328653.96\n", + "2012-09-18 00:00:00: Portfolio Value - 50561088.93\n", + "2012-09-19 00:00:00: Portfolio Value - 51190451.13\n", + "2012-09-20 00:00:00: Portfolio Value - 51140471.24\n", + "2012-09-21 00:00:00: Portfolio Value - 51083734.96\n", + "2012-09-24 00:00:00: Portfolio Value - 50878690.96\n", + "2012-09-25 00:00:00: Portfolio Value - 49432652.26\n", + "2012-09-26 00:00:00: Portfolio Value - 48590737.29\n", + "2012-09-27 00:00:00: Portfolio Value - 50463649.65\n", + "2012-09-28 00:00:00: Portfolio Value - 50031107.72\n", + "2012-10-01 00:00:00: Portfolio Value - 50732800.13\n", + "2012-10-02 00:00:00: Portfolio Value - 50613841.12\n", + "2012-10-03 00:00:00: Portfolio Value - 51321501.10\n", + "2012-10-04 00:00:00: Portfolio Value - 53013670.32\n", + "2012-10-05 00:00:00: Portfolio Value - 52682708.42\n", + "2012-10-08 00:00:00: Portfolio Value - 52131435.38\n", + "2012-10-09 00:00:00: Portfolio Value - 49638080.21\n", + "2012-10-10 00:00:00: Portfolio Value - 48658725.04\n", + "2012-10-11 00:00:00: Portfolio Value - 48826375.20\n", + "2012-10-12 00:00:00: Portfolio Value - 48080985.02\n", + "2012-10-15 00:00:00: Portfolio Value - 50237553.88\n", + "2012-10-16 00:00:00: Portfolio Value - 52604210.24\n", + "2012-10-17 00:00:00: Portfolio Value - 53778250.08\n", + "2012-10-18 00:00:00: Portfolio Value - 52631391.77\n", + "2012-10-19 00:00:00: Portfolio Value - 49106555.43\n", + "2012-10-22 00:00:00: Portfolio Value - 49246316.28\n", + "2012-10-23 00:00:00: Portfolio Value - 46601987.99\n", + "2012-10-24 00:00:00: Portfolio Value - 46882078.43\n", + "2012-10-25 00:00:00: Portfolio Value - 47684949.55\n", + "2012-10-26 00:00:00: Portfolio Value - 46898355.63\n", + "2012-10-31 00:00:00: Portfolio Value - 47369292.52\n", + "2012-11-01 00:00:00: Portfolio Value - 49891370.25\n", + "2012-11-02 00:00:00: Portfolio Value - 47391972.48\n", + "2012-11-05 00:00:00: Portfolio Value - 48010320.32\n", + "2012-11-06 00:00:00: Portfolio Value - 49724641.72\n", + "2012-11-07 00:00:00: Portfolio Value - 45561826.47\n", + "2012-11-08 00:00:00: Portfolio Value - 43449637.52\n", + "2012-11-09 00:00:00: Portfolio Value - 43739969.22\n", + "2012-11-12 00:00:00: Portfolio Value - 43923868.82\n", + "2012-11-13 00:00:00: Portfolio Value - 43987772.07\n", + "2012-11-14 00:00:00: Portfolio Value - 41187891.77\n", + "2012-11-15 00:00:00: Portfolio Value - 40505185.67\n", + "2012-11-16 00:00:00: Portfolio Value - 43107365.62\n", + "2012-11-19 00:00:00: Portfolio Value - 45958655.11\n", + "2012-11-20 00:00:00: Portfolio Value - 47115381.69\n", + "2012-11-21 00:00:00: Portfolio Value - 47871868.08\n", + "2012-11-23 00:00:00: Portfolio Value - 50116361.59\n", + "2012-11-26 00:00:00: Portfolio Value - 49762971.56\n", + "2012-11-27 00:00:00: Portfolio Value - 49140105.40\n", + "2012-11-28 00:00:00: Portfolio Value - 50942132.33\n", + "2012-11-29 00:00:00: Portfolio Value - 52280859.46\n", + "2012-11-30 00:00:00: Portfolio Value - 52361279.84\n", + "2012-12-03 00:00:00: Portfolio Value - 52195212.21\n", + "2012-12-04 00:00:00: Portfolio Value - 51921531.66\n", + "2012-12-05 00:00:00: Portfolio Value - 52760566.41\n", + "2012-12-06 00:00:00: Portfolio Value - 54021646.56\n", + "2012-12-07 00:00:00: Portfolio Value - 54190146.33\n", + "2012-12-10 00:00:00: Portfolio Value - 54673790.07\n", + "2012-12-11 00:00:00: Portfolio Value - 55483494.77\n", + "2012-12-12 00:00:00: Portfolio Value - 55169850.23\n", + "2012-12-13 00:00:00: Portfolio Value - 54340955.23\n", + "2012-12-14 00:00:00: Portfolio Value - 53868055.66\n", + "2012-12-17 00:00:00: Portfolio Value - 56157632.55\n", + "2012-12-18 00:00:00: Portfolio Value - 58267090.59\n", + "2012-12-19 00:00:00: Portfolio Value - 56771926.12\n", + "2012-12-20 00:00:00: Portfolio Value - 57816028.82\n", + "2012-12-21 00:00:00: Portfolio Value - 56192270.56\n", + "2012-12-24 00:00:00: Portfolio Value - 55357757.99\n", + "2012-12-26 00:00:00: Portfolio Value - 53715346.45\n", + "2012-12-27 00:00:00: Portfolio Value - 53529629.88\n", + "2012-12-28 00:00:00: Portfolio Value - 51530516.69\n", + "2012-12-31 00:00:00: Portfolio Value - 55004992.82\n", + "2013-01-02 00:00:00: Portfolio Value - 60520473.57\n", + "2013-01-03 00:00:00: Portfolio Value - 61071047.62\n", + "2013-01-04 00:00:00: Portfolio Value - 61913937.78\n", + "2013-01-07 00:00:00: Portfolio Value - 61184219.18\n", + "2013-01-08 00:00:00: Portfolio Value - 60323260.13\n", + "2013-01-09 00:00:00: Portfolio Value - 61546354.51\n", + "2013-01-10 00:00:00: Portfolio Value - 62673047.57\n", + "2013-01-11 00:00:00: Portfolio Value - 62037070.62\n", + "2013-01-14 00:00:00: Portfolio Value - 62477913.04\n", + "2013-01-15 00:00:00: Portfolio Value - 62523765.86\n", + "2013-01-16 00:00:00: Portfolio Value - 61959799.44\n", + "2013-01-17 00:00:00: Portfolio Value - 63104031.14\n", + "2013-01-18 00:00:00: Portfolio Value - 63805485.41\n", + "2013-01-22 00:00:00: Portfolio Value - 65969903.88\n", + "2013-01-23 00:00:00: Portfolio Value - 66304583.89\n", + "2013-01-24 00:00:00: Portfolio Value - 67336454.14\n", + "2013-01-25 00:00:00: Portfolio Value - 69297368.08\n", + "2013-01-28 00:00:00: Portfolio Value - 68436551.57\n", + "2013-01-29 00:00:00: Portfolio Value - 68995216.03\n", + "2013-01-30 00:00:00: Portfolio Value - 68349813.31\n", + "2013-01-31 00:00:00: Portfolio Value - 68365298.82\n", + "2013-02-01 00:00:00: Portfolio Value - 70152526.41\n", + "2013-02-04 00:00:00: Portfolio Value - 68034394.34\n", + "2013-02-05 00:00:00: Portfolio Value - 69727456.89\n", + "2013-02-06 00:00:00: Portfolio Value - 70600339.82\n", + "2013-02-07 00:00:00: Portfolio Value - 69313225.73\n", + "2013-02-08 00:00:00: Portfolio Value - 70622984.01\n", + "2013-02-11 00:00:00: Portfolio Value - 70723194.24\n", + "2013-02-12 00:00:00: Portfolio Value - 71150006.48\n", + "2013-02-13 00:00:00: Portfolio Value - 71356242.63\n", + "2013-02-14 00:00:00: Portfolio Value - 70883605.75\n", + "2013-02-15 00:00:00: Portfolio Value - 70643412.22\n", + "2013-02-19 00:00:00: Portfolio Value - 71525953.54\n", + "2013-02-20 00:00:00: Portfolio Value - 69011418.34\n", + "2013-02-21 00:00:00: Portfolio Value - 67532944.83\n", + "2013-02-22 00:00:00: Portfolio Value - 69822511.71\n", + "2013-02-25 00:00:00: Portfolio Value - 66647842.03\n", + "2013-02-26 00:00:00: Portfolio Value - 67805338.80\n", + "2013-02-27 00:00:00: Portfolio Value - 70630277.03\n", + "2013-02-28 00:00:00: Portfolio Value - 71187230.29\n", + "2013-03-01 00:00:00: Portfolio Value - 72403550.44\n", + "2013-03-04 00:00:00: Portfolio Value - 73584120.70\n", + "2013-03-05 00:00:00: Portfolio Value - 75634308.31\n", + "2013-03-06 00:00:00: Portfolio Value - 75954174.08\n", + "2013-03-07 00:00:00: Portfolio Value - 75544009.88\n", + "2013-03-08 00:00:00: Portfolio Value - 76692112.71\n", + "2013-03-11 00:00:00: Portfolio Value - 76887281.34\n", + "2013-03-12 00:00:00: Portfolio Value - 76587594.70\n", + "2013-03-13 00:00:00: Portfolio Value - 77497782.10\n", + "2013-03-14 00:00:00: Portfolio Value - 78949211.05\n", + "2013-03-15 00:00:00: Portfolio Value - 76903401.41\n", + "2013-03-18 00:00:00: Portfolio Value - 75419250.27\n", + "2013-03-19 00:00:00: Portfolio Value - 75698607.82\n", + "2013-03-20 00:00:00: Portfolio Value - 78273056.79\n", + "2013-03-21 00:00:00: Portfolio Value - 76119863.48\n", + "2013-03-22 00:00:00: Portfolio Value - 77232300.50\n", + "2013-03-25 00:00:00: Portfolio Value - 76447203.30\n", + "2013-03-26 00:00:00: Portfolio Value - 78940974.62\n", + "2013-03-27 00:00:00: Portfolio Value - 79282632.39\n", + "2013-03-28 00:00:00: Portfolio Value - 80979671.86\n", + "2013-04-01 00:00:00: Portfolio Value - 79748798.22\n", + "2013-04-02 00:00:00: Portfolio Value - 80702946.93\n", + "2013-04-03 00:00:00: Portfolio Value - 77911557.91\n", + "2013-04-04 00:00:00: Portfolio Value - 79091134.92\n", + "2013-04-05 00:00:00: Portfolio Value - 78161863.75\n", + "2013-04-08 00:00:00: Portfolio Value - 80270796.08\n", + "2013-04-09 00:00:00: Portfolio Value - 81745311.08\n", + "2013-04-10 00:00:00: Portfolio Value - 84871911.64\n", + "2013-04-11 00:00:00: Portfolio Value - 86753726.95\n", + "2013-04-12 00:00:00: Portfolio Value - 87409941.10\n", + "2013-04-15 00:00:00: Portfolio Value - 81893501.85\n", + "2013-04-16 00:00:00: Portfolio Value - 85552090.12\n", + "2013-04-17 00:00:00: Portfolio Value - 82589822.46\n", + "2013-04-18 00:00:00: Portfolio Value - 80540884.13\n", + "2013-04-19 00:00:00: Portfolio Value - 82822288.14\n", + "2013-04-22 00:00:00: Portfolio Value - 84068636.77\n", + "2013-04-23 00:00:00: Portfolio Value - 87348327.63\n", + "2013-04-24 00:00:00: Portfolio Value - 87323795.54\n", + "2013-04-25 00:00:00: Portfolio Value - 89586835.85\n", + "2013-04-26 00:00:00: Portfolio Value - 89060998.13\n", + "2013-04-29 00:00:00: Portfolio Value - 90359442.26\n", + "2013-04-30 00:00:00: Portfolio Value - 91790604.40\n", + "2013-05-01 00:00:00: Portfolio Value - 91020098.29\n", + "2013-05-02 00:00:00: Portfolio Value - 94303232.94\n", + "2013-05-03 00:00:00: Portfolio Value - 97851252.95\n", + "2013-05-06 00:00:00: Portfolio Value - 97653100.93\n", + "2013-05-07 00:00:00: Portfolio Value - 98859989.28\n", + "2013-05-08 00:00:00: Portfolio Value - 99832695.00\n", + "2013-05-09 00:00:00: Portfolio Value - 98874618.69\n", + "2013-05-10 00:00:00: Portfolio Value - 101785782.02\n", + "2013-05-13 00:00:00: Portfolio Value - 102822305.61\n", + "2013-05-14 00:00:00: Portfolio Value - 105905819.43\n", + "2013-05-15 00:00:00: Portfolio Value - 106072278.25\n", + "2013-05-16 00:00:00: Portfolio Value - 103639931.34\n", + "2013-05-17 00:00:00: Portfolio Value - 106037034.57\n", + "2013-05-20 00:00:00: Portfolio Value - 105418509.03\n", + "2013-05-21 00:00:00: Portfolio Value - 105400783.11\n", + "2013-05-22 00:00:00: Portfolio Value - 102809849.45\n", + "2013-05-23 00:00:00: Portfolio Value - 101945455.59\n", + "2013-05-24 00:00:00: Portfolio Value - 101612962.16\n", + "2013-05-28 00:00:00: Portfolio Value - 102894842.92\n", + "2013-05-29 00:00:00: Portfolio Value - 100241728.03\n", + "2013-05-30 00:00:00: Portfolio Value - 101195786.77\n", + "2013-05-31 00:00:00: Portfolio Value - 97218650.27\n", + "2013-06-03 00:00:00: Portfolio Value - 97622432.32\n", + "2013-06-04 00:00:00: Portfolio Value - 95582251.27\n", + "2013-06-05 00:00:00: Portfolio Value - 92117331.67\n", + "2013-06-06 00:00:00: Portfolio Value - 95435958.78\n", + "2013-06-07 00:00:00: Portfolio Value - 98892348.98\n", + "2013-06-10 00:00:00: Portfolio Value - 99012896.95\n", + "2013-06-11 00:00:00: Portfolio Value - 95129363.64\n", + "2013-06-12 00:00:00: Portfolio Value - 92931551.48\n", + "2013-06-13 00:00:00: Portfolio Value - 96361664.89\n", + "2013-06-14 00:00:00: Portfolio Value - 95066113.57\n", + "2013-06-17 00:00:00: Portfolio Value - 96355585.78\n", + "2013-06-18 00:00:00: Portfolio Value - 98686645.70\n", + "2013-06-19 00:00:00: Portfolio Value - 93930597.53\n", + "2013-06-20 00:00:00: Portfolio Value - 86686304.66\n", + "2013-06-21 00:00:00: Portfolio Value - 86752766.08\n", + "2013-06-24 00:00:00: Portfolio Value - 84922235.08\n", + "2013-06-25 00:00:00: Portfolio Value - 87556409.12\n", + "2013-06-26 00:00:00: Portfolio Value - 90487300.21\n", + "2013-06-27 00:00:00: Portfolio Value - 92970381.52\n", + "2013-06-28 00:00:00: Portfolio Value - 91324932.87\n", + "2013-07-01 00:00:00: Portfolio Value - 93404853.34\n", + "2013-07-02 00:00:00: Portfolio Value - 92401227.24\n", + "2013-07-03 00:00:00: Portfolio Value - 92412572.63\n", + "2013-07-05 00:00:00: Portfolio Value - 94604414.38\n", + "2013-07-08 00:00:00: Portfolio Value - 95578294.84\n", + "2013-07-09 00:00:00: Portfolio Value - 97273258.30\n", + "2013-07-10 00:00:00: Portfolio Value - 97447610.50\n", + "2013-07-11 00:00:00: Portfolio Value - 101633948.79\n", + "2013-07-12 00:00:00: Portfolio Value - 103962481.15\n", + "2013-07-15 00:00:00: Portfolio Value - 105240082.65\n", + "2013-07-16 00:00:00: Portfolio Value - 103835216.24\n", + "2013-07-17 00:00:00: Portfolio Value - 105223963.73\n", + "2013-07-18 00:00:00: Portfolio Value - 106767942.59\n", + "2013-07-19 00:00:00: Portfolio Value - 107833289.01\n", + "2013-07-22 00:00:00: Portfolio Value - 108560579.63\n", + "2013-07-23 00:00:00: Portfolio Value - 106663387.78\n", + "2013-07-24 00:00:00: Portfolio Value - 105100798.09\n", + "2013-07-25 00:00:00: Portfolio Value - 106122515.50\n", + "2013-07-26 00:00:00: Portfolio Value - 106816933.37\n", + "2013-07-29 00:00:00: Portfolio Value - 105915450.59\n", + "2013-07-30 00:00:00: Portfolio Value - 106995848.06\n", + "2013-07-31 00:00:00: Portfolio Value - 107225253.44\n", + "2013-08-01 00:00:00: Portfolio Value - 111107032.83\n", + "2013-08-02 00:00:00: Portfolio Value - 110924275.39\n", + "2013-08-05 00:00:00: Portfolio Value - 110677965.89\n", + "2013-08-06 00:00:00: Portfolio Value - 107769287.50\n", + "2013-08-07 00:00:00: Portfolio Value - 106372489.18\n", + "2013-08-08 00:00:00: Portfolio Value - 107875557.18\n", + "2013-08-09 00:00:00: Portfolio Value - 106974578.50\n", + "2013-08-12 00:00:00: Portfolio Value - 106516451.82\n", + "2013-08-13 00:00:00: Portfolio Value - 106642304.40\n", + "2013-08-14 00:00:00: Portfolio Value - 105058600.53\n", + "2013-08-15 00:00:00: Portfolio Value - 100729498.37\n", + "2013-08-16 00:00:00: Portfolio Value - 99601112.96\n", + "2013-08-19 00:00:00: Portfolio Value - 98324997.49\n", + "2013-08-20 00:00:00: Portfolio Value - 100372608.80\n", + "2013-08-21 00:00:00: Portfolio Value - 99765121.86\n", + "2013-08-22 00:00:00: Portfolio Value - 101936452.48\n", + "2013-08-23 00:00:00: Portfolio Value - 102842931.81\n", + "2013-08-26 00:00:00: Portfolio Value - 102587286.25\n", + "2013-08-27 00:00:00: Portfolio Value - 97595209.32\n", + "2013-08-28 00:00:00: Portfolio Value - 98348495.21\n", + "2013-08-29 00:00:00: Portfolio Value - 99254497.53\n", + "2013-08-30 00:00:00: Portfolio Value - 98045748.50\n", + "2013-09-03 00:00:00: Portfolio Value - 99748123.32\n", + "2013-09-04 00:00:00: Portfolio Value - 101789117.26\n", + "2013-09-05 00:00:00: Portfolio Value - 102803494.33\n", + "2013-09-06 00:00:00: Portfolio Value - 102625519.40\n", + "2013-09-09 00:00:00: Portfolio Value - 107046576.86\n", + "2013-09-10 00:00:00: Portfolio Value - 109617843.86\n", + "2013-09-11 00:00:00: Portfolio Value - 109855044.16\n", + "2013-09-12 00:00:00: Portfolio Value - 108283660.78\n", + "2013-09-13 00:00:00: Portfolio Value - 111980544.34\n", + "2013-09-16 00:00:00: Portfolio Value - 113619700.21\n", + "2013-09-17 00:00:00: Portfolio Value - 114833210.21\n", + "2013-09-18 00:00:00: Portfolio Value - 119222345.76\n", + "2013-09-19 00:00:00: Portfolio Value - 118655603.67\n", + "2013-09-20 00:00:00: Portfolio Value - 116359121.22\n", + "2013-09-23 00:00:00: Portfolio Value - 115108214.97\n", + "2013-09-24 00:00:00: Portfolio Value - 115112110.32\n", + "2013-09-25 00:00:00: Portfolio Value - 114369678.27\n", + "2013-09-26 00:00:00: Portfolio Value - 116230077.46\n", + "2013-09-27 00:00:00: Portfolio Value - 114397503.39\n", + "2013-09-30 00:00:00: Portfolio Value - 114360217.52\n", + "2013-10-01 00:00:00: Portfolio Value - 117041042.83\n", + "2013-10-02 00:00:00: Portfolio Value - 116864297.39\n", + "2013-10-03 00:00:00: Portfolio Value - 114429794.08\n", + "2013-10-04 00:00:00: Portfolio Value - 115685179.53\n", + "2013-10-07 00:00:00: Portfolio Value - 112537595.87\n", + "2013-10-08 00:00:00: Portfolio Value - 108566854.79\n", + "2013-10-09 00:00:00: Portfolio Value - 108319044.14\n", + "2013-10-10 00:00:00: Portfolio Value - 114037761.70\n", + "2013-10-11 00:00:00: Portfolio Value - 115361283.08\n", + "2013-10-14 00:00:00: Portfolio Value - 116751858.42\n", + "2013-10-15 00:00:00: Portfolio Value - 113964562.76\n", + "2013-10-16 00:00:00: Portfolio Value - 119400328.09\n", + "2013-10-17 00:00:00: Portfolio Value - 121130462.04\n", + "2013-10-18 00:00:00: Portfolio Value - 123413838.10\n", + "2013-10-21 00:00:00: Portfolio Value - 122949517.25\n", + "2013-10-22 00:00:00: Portfolio Value - 125099696.81\n", + "2013-10-23 00:00:00: Portfolio Value - 123849395.95\n", + "2013-10-24 00:00:00: Portfolio Value - 125254371.25\n", + "2013-10-25 00:00:00: Portfolio Value - 125364356.34\n", + "2013-10-28 00:00:00: Portfolio Value - 125775177.72\n", + "2013-10-29 00:00:00: Portfolio Value - 127601127.93\n", + "2013-10-30 00:00:00: Portfolio Value - 125150829.81\n", + "2013-10-31 00:00:00: Portfolio Value - 123601781.13\n", + "2013-11-01 00:00:00: Portfolio Value - 124516503.19\n", + "2013-11-04 00:00:00: Portfolio Value - 125923211.29\n", + "2013-11-05 00:00:00: Portfolio Value - 126880735.77\n", + "2013-11-06 00:00:00: Portfolio Value - 126885876.00\n", + "2013-11-07 00:00:00: Portfolio Value - 121997652.66\n", + "2013-11-08 00:00:00: Portfolio Value - 125412925.93\n", + "2013-11-11 00:00:00: Portfolio Value - 126221096.04\n", + "2013-11-12 00:00:00: Portfolio Value - 126685260.68\n", + "2013-11-13 00:00:00: Portfolio Value - 128431898.37\n", + "2013-11-14 00:00:00: Portfolio Value - 130288889.87\n", + "2013-11-15 00:00:00: Portfolio Value - 130358017.53\n", + "2013-11-18 00:00:00: Portfolio Value - 128732125.50\n", + "2013-11-19 00:00:00: Portfolio Value - 127386774.13\n", + "2013-11-20 00:00:00: Portfolio Value - 126351413.08\n", + "2013-11-21 00:00:00: Portfolio Value - 128857926.65\n", + "2013-11-22 00:00:00: Portfolio Value - 131239414.94\n", + "2013-11-25 00:00:00: Portfolio Value - 131359100.72\n", + "2013-11-26 00:00:00: Portfolio Value - 130956893.24\n", + "2013-11-27 00:00:00: Portfolio Value - 131388558.76\n", + "2013-11-29 00:00:00: Portfolio Value - 131038368.19\n", + "2013-12-02 00:00:00: Portfolio Value - 130653405.16\n", + "2013-12-03 00:00:00: Portfolio Value - 129289216.12\n", + "2013-12-04 00:00:00: Portfolio Value - 129055548.04\n", + "2013-12-05 00:00:00: Portfolio Value - 127467305.64\n", + "2013-12-06 00:00:00: Portfolio Value - 128833710.12\n", + "2013-12-09 00:00:00: Portfolio Value - 128988787.35\n", + "2013-12-10 00:00:00: Portfolio Value - 128210005.36\n", + "2013-12-11 00:00:00: Portfolio Value - 124823806.61\n", + "2013-12-12 00:00:00: Portfolio Value - 123785659.44\n", + "2013-12-13 00:00:00: Portfolio Value - 123984906.95\n", + "2013-12-16 00:00:00: Portfolio Value - 125435194.95\n", + "2013-12-17 00:00:00: Portfolio Value - 124288725.98\n", + "2013-12-18 00:00:00: Portfolio Value - 129138484.24\n", + "2013-12-19 00:00:00: Portfolio Value - 128022555.32\n", + "2013-12-20 00:00:00: Portfolio Value - 130656895.21\n", + "2013-12-23 00:00:00: Portfolio Value - 131095001.75\n", + "2013-12-24 00:00:00: Portfolio Value - 131967143.50\n", + "2013-12-26 00:00:00: Portfolio Value - 133059701.33\n", + "2013-12-27 00:00:00: Portfolio Value - 132354969.38\n", + "2013-12-30 00:00:00: Portfolio Value - 133006393.71\n", + "2013-12-31 00:00:00: Portfolio Value - 133348254.16\n", + "2014-01-02 00:00:00: Portfolio Value - 131375078.82\n", + "2014-01-03 00:00:00: Portfolio Value - 131727890.78\n", + "2014-01-06 00:00:00: Portfolio Value - 130409022.49\n", + "2014-01-07 00:00:00: Portfolio Value - 133410693.00\n", + "2014-01-08 00:00:00: Portfolio Value - 133745592.37\n", + "2014-01-09 00:00:00: Portfolio Value - 134223508.04\n", + "2014-01-10 00:00:00: Portfolio Value - 136410573.67\n", + "2014-01-13 00:00:00: Portfolio Value - 131443496.03\n", + "2014-01-14 00:00:00: Portfolio Value - 136753379.21\n", + "2014-01-15 00:00:00: Portfolio Value - 136783436.77\n", + "2014-01-16 00:00:00: Portfolio Value - 136921229.50\n", + "2014-01-17 00:00:00: Portfolio Value - 136919673.31\n", + "2014-01-21 00:00:00: Portfolio Value - 137269957.69\n", + "2014-01-22 00:00:00: Portfolio Value - 137491146.42\n", + "2014-01-23 00:00:00: Portfolio Value - 136050372.64\n", + "2014-01-24 00:00:00: Portfolio Value - 129072008.65\n", + "2014-01-27 00:00:00: Portfolio Value - 126749052.04\n", + "2014-01-28 00:00:00: Portfolio Value - 130033442.99\n", + "2014-01-29 00:00:00: Portfolio Value - 127239761.80\n", + "2014-01-30 00:00:00: Portfolio Value - 131842861.49\n", + "2014-01-31 00:00:00: Portfolio Value - 131323822.96\n", + "2014-02-03 00:00:00: Portfolio Value - 123761986.22\n", + "2014-02-04 00:00:00: Portfolio Value - 125366951.44\n", + "2014-02-05 00:00:00: Portfolio Value - 124505032.50\n", + "2014-02-06 00:00:00: Portfolio Value - 128569845.67\n", + "2014-02-07 00:00:00: Portfolio Value - 132889237.65\n", + "2014-02-10 00:00:00: Portfolio Value - 133838739.83\n", + "2014-02-11 00:00:00: Portfolio Value - 138034844.61\n", + "2014-02-12 00:00:00: Portfolio Value - 137790932.85\n", + "2014-02-13 00:00:00: Portfolio Value - 140025378.55\n", + "2014-02-14 00:00:00: Portfolio Value - 140785388.59\n", + "2014-02-18 00:00:00: Portfolio Value - 142669162.04\n", + "2014-02-19 00:00:00: Portfolio Value - 139956527.53\n", + "2014-02-20 00:00:00: Portfolio Value - 142965147.08\n", + "2014-02-21 00:00:00: Portfolio Value - 143663214.83\n", + "2014-02-24 00:00:00: Portfolio Value - 147117238.48\n", + "2014-02-25 00:00:00: Portfolio Value - 146379492.49\n", + "2014-02-26 00:00:00: Portfolio Value - 145864552.44\n", + "2014-02-27 00:00:00: Portfolio Value - 148179000.86\n", + "2014-02-28 00:00:00: Portfolio Value - 147377457.52\n", + "2014-03-03 00:00:00: Portfolio Value - 145979487.87\n", + "2014-03-04 00:00:00: Portfolio Value - 151222754.03\n", + "2014-03-05 00:00:00: Portfolio Value - 150410563.28\n", + "2014-03-06 00:00:00: Portfolio Value - 149313977.78\n", + "2014-03-07 00:00:00: Portfolio Value - 148334909.53\n", + "2014-03-10 00:00:00: Portfolio Value - 147786502.64\n", + "2014-03-11 00:00:00: Portfolio Value - 146740165.59\n", + "2014-03-12 00:00:00: Portfolio Value - 148320722.27\n", + "2014-03-13 00:00:00: Portfolio Value - 143867704.75\n", + "2014-03-14 00:00:00: Portfolio Value - 144229214.29\n", + "2014-03-17 00:00:00: Portfolio Value - 146569250.56\n", + "2014-03-18 00:00:00: Portfolio Value - 149319418.67\n", + "2014-03-19 00:00:00: Portfolio Value - 147925243.06\n", + "2014-03-20 00:00:00: Portfolio Value - 149384108.46\n", + "2014-03-21 00:00:00: Portfolio Value - 146266468.68\n", + "2014-03-24 00:00:00: Portfolio Value - 144099665.74\n", + "2014-03-25 00:00:00: Portfolio Value - 144399191.65\n", + "2014-03-26 00:00:00: Portfolio Value - 142301480.76\n", + "2014-03-27 00:00:00: Portfolio Value - 142217819.31\n", + "2014-03-28 00:00:00: Portfolio Value - 141951192.89\n", + "2014-03-31 00:00:00: Portfolio Value - 145700982.15\n", + "2014-04-01 00:00:00: Portfolio Value - 148734098.93\n", + "2014-04-02 00:00:00: Portfolio Value - 149279677.49\n", + "2014-04-03 00:00:00: Portfolio Value - 147218358.44\n", + "2014-04-04 00:00:00: Portfolio Value - 142041397.11\n", + "2014-04-07 00:00:00: Portfolio Value - 138514344.42\n", + "2014-04-08 00:00:00: Portfolio Value - 140411321.86\n", + "2014-04-09 00:00:00: Portfolio Value - 145120776.81\n", + "2014-04-10 00:00:00: Portfolio Value - 138157350.84\n", + "2014-04-11 00:00:00: Portfolio Value - 135223782.41\n", + "2014-04-14 00:00:00: Portfolio Value - 137043150.03\n", + "2014-04-15 00:00:00: Portfolio Value - 137532535.73\n", + "2014-04-16 00:00:00: Portfolio Value - 141379436.72\n", + "2014-04-17 00:00:00: Portfolio Value - 141214021.52\n", + "2014-04-21 00:00:00: Portfolio Value - 142024753.58\n", + "2014-04-22 00:00:00: Portfolio Value - 145330344.23\n", + "2014-04-23 00:00:00: Portfolio Value - 142981083.99\n", + "2014-04-24 00:00:00: Portfolio Value - 142639306.75\n", + "2014-04-25 00:00:00: Portfolio Value - 138978090.27\n", + "2014-04-28 00:00:00: Portfolio Value - 137907361.52\n", + "2014-04-29 00:00:00: Portfolio Value - 141773092.53\n", + "2014-04-30 00:00:00: Portfolio Value - 142434213.27\n", + "2014-05-01 00:00:00: Portfolio Value - 141789789.03\n", + "2014-05-02 00:00:00: Portfolio Value - 142194558.15\n", + "2014-05-05 00:00:00: Portfolio Value - 142814114.41\n", + "2014-05-06 00:00:00: Portfolio Value - 139357452.69\n", + "2014-05-07 00:00:00: Portfolio Value - 139534769.39\n", + "2014-05-08 00:00:00: Portfolio Value - 137921105.90\n", + "2014-05-09 00:00:00: Portfolio Value - 138852976.89\n", + "2014-05-12 00:00:00: Portfolio Value - 142686491.09\n", + "2014-05-13 00:00:00: Portfolio Value - 142331915.50\n", + "2014-05-14 00:00:00: Portfolio Value - 141064405.77\n", + "2014-05-15 00:00:00: Portfolio Value - 138405421.80\n", + "2014-05-16 00:00:00: Portfolio Value - 139823989.69\n", + "2014-05-19 00:00:00: Portfolio Value - 140941679.15\n", + "2014-05-20 00:00:00: Portfolio Value - 137954697.88\n", + "2014-05-21 00:00:00: Portfolio Value - 140307061.46\n", + "2014-05-22 00:00:00: Portfolio Value - 142045791.42\n", + "2014-05-23 00:00:00: Portfolio Value - 142978462.95\n", + "2014-05-27 00:00:00: Portfolio Value - 145852160.60\n", + "2014-05-28 00:00:00: Portfolio Value - 145578690.07\n", + "2014-05-29 00:00:00: Portfolio Value - 147202261.58\n", + "2014-05-30 00:00:00: Portfolio Value - 147457356.65\n", + "2014-06-02 00:00:00: Portfolio Value - 148221656.68\n", + "2014-06-03 00:00:00: Portfolio Value - 147833382.35\n", + "2014-06-04 00:00:00: Portfolio Value - 149258619.11\n", + "2014-06-05 00:00:00: Portfolio Value - 150398157.64\n", + "2014-06-06 00:00:00: Portfolio Value - 151701301.85\n", + "2014-06-09 00:00:00: Portfolio Value - 152048137.73\n", + "2014-06-10 00:00:00: Portfolio Value - 151301754.48\n", + "2014-06-11 00:00:00: Portfolio Value - 151116794.72\n", + "2014-06-12 00:00:00: Portfolio Value - 148445111.01\n", + "2014-06-13 00:00:00: Portfolio Value - 149302622.51\n", + "2014-06-16 00:00:00: Portfolio Value - 150252158.49\n", + "2014-06-17 00:00:00: Portfolio Value - 150529826.49\n", + "2014-06-18 00:00:00: Portfolio Value - 153309621.42\n", + "2014-06-19 00:00:00: Portfolio Value - 153327807.12\n", + "2014-06-20 00:00:00: Portfolio Value - 152547694.25\n", + "2014-06-23 00:00:00: Portfolio Value - 151873438.25\n", + "2014-06-24 00:00:00: Portfolio Value - 150290296.69\n", + "2014-06-25 00:00:00: Portfolio Value - 151680744.27\n", + "2014-06-26 00:00:00: Portfolio Value - 151587078.45\n", + "2014-06-27 00:00:00: Portfolio Value - 151584405.64\n", + "2014-06-30 00:00:00: Portfolio Value - 151991596.83\n", + "2014-07-01 00:00:00: Portfolio Value - 156215471.46\n", + "2014-07-02 00:00:00: Portfolio Value - 155845930.50\n", + "2014-07-03 00:00:00: Portfolio Value - 157253109.00\n", + "2014-07-07 00:00:00: Portfolio Value - 155332217.05\n", + "2014-07-08 00:00:00: Portfolio Value - 152646573.75\n", + "2014-07-09 00:00:00: Portfolio Value - 153563363.09\n", + "2014-07-10 00:00:00: Portfolio Value - 153105150.28\n", + "2014-07-11 00:00:00: Portfolio Value - 153084090.66\n", + "2014-07-14 00:00:00: Portfolio Value - 154084649.35\n", + "2014-07-15 00:00:00: Portfolio Value - 152616553.01\n", + "2014-07-16 00:00:00: Portfolio Value - 152825356.58\n", + "2014-07-17 00:00:00: Portfolio Value - 148914038.81\n", + "2014-07-18 00:00:00: Portfolio Value - 152520400.58\n", + "2014-07-21 00:00:00: Portfolio Value - 151875510.18\n", + "2014-07-22 00:00:00: Portfolio Value - 153972821.62\n", + "2014-07-23 00:00:00: Portfolio Value - 154586032.10\n", + "2014-07-24 00:00:00: Portfolio Value - 154607244.73\n", + "2014-07-25 00:00:00: Portfolio Value - 153417836.76\n", + "2014-07-28 00:00:00: Portfolio Value - 153862296.17\n", + "2014-07-29 00:00:00: Portfolio Value - 153748205.23\n", + "2014-07-30 00:00:00: Portfolio Value - 155379827.94\n", + "2014-07-31 00:00:00: Portfolio Value - 148730786.59\n", + "2014-08-01 00:00:00: Portfolio Value - 148333819.04\n", + "2014-08-04 00:00:00: Portfolio Value - 149792638.61\n", + "2014-08-05 00:00:00: Portfolio Value - 148045651.54\n", + "2014-08-06 00:00:00: Portfolio Value - 148539128.83\n", + "2014-08-07 00:00:00: Portfolio Value - 147325715.85\n", + "2014-08-08 00:00:00: Portfolio Value - 150724855.85\n", + "2014-08-11 00:00:00: Portfolio Value - 151915008.24\n", + "2014-08-12 00:00:00: Portfolio Value - 151256182.72\n", + "2014-08-13 00:00:00: Portfolio Value - 153504575.90\n", + "2014-08-14 00:00:00: Portfolio Value - 155163283.65\n", + "2014-08-15 00:00:00: Portfolio Value - 154926413.68\n", + "2014-08-18 00:00:00: Portfolio Value - 158165338.55\n", + "2014-08-19 00:00:00: Portfolio Value - 159394854.96\n", + "2014-08-20 00:00:00: Portfolio Value - 159789839.76\n", + "2014-08-21 00:00:00: Portfolio Value - 159737249.47\n", + "2014-08-22 00:00:00: Portfolio Value - 159298190.64\n", + "2014-08-25 00:00:00: Portfolio Value - 161408423.86\n", + "2014-08-26 00:00:00: Portfolio Value - 162165167.47\n", + "2014-08-27 00:00:00: Portfolio Value - 161577218.65\n", + "2014-08-28 00:00:00: Portfolio Value - 161069479.62\n", + "2014-08-29 00:00:00: Portfolio Value - 161711505.69\n", + "2014-09-02 00:00:00: Portfolio Value - 161990335.93\n", + "2014-09-03 00:00:00: Portfolio Value - 162192289.89\n", + "2014-09-04 00:00:00: Portfolio Value - 161589951.36\n", + "2014-09-05 00:00:00: Portfolio Value - 162811963.93\n", + "2014-09-08 00:00:00: Portfolio Value - 161842001.33\n", + "2014-09-09 00:00:00: Portfolio Value - 159398393.33\n", + "2014-09-10 00:00:00: Portfolio Value - 161040062.80\n", + "2014-09-11 00:00:00: Portfolio Value - 162007559.72\n", + "2014-09-12 00:00:00: Portfolio Value - 161239752.52\n", + "2014-09-15 00:00:00: Portfolio Value - 159864532.86\n", + "2014-09-16 00:00:00: Portfolio Value - 162143822.59\n", + "2014-09-17 00:00:00: Portfolio Value - 162930092.07\n", + "2014-09-18 00:00:00: Portfolio Value - 165422538.53\n", + "2014-09-19 00:00:00: Portfolio Value - 164113746.02\n", + "2014-09-22 00:00:00: Portfolio Value - 161197889.38\n", + "2014-09-23 00:00:00: Portfolio Value - 159478275.83\n", + "2014-09-24 00:00:00: Portfolio Value - 162856082.79\n", + "2014-09-25 00:00:00: Portfolio Value - 157908942.20\n", + "2014-09-26 00:00:00: Portfolio Value - 160162566.58\n", + "2014-09-29 00:00:00: Portfolio Value - 159391122.91\n", + "2014-09-30 00:00:00: Portfolio Value - 159333403.97\n", + "2014-10-01 00:00:00: Portfolio Value - 154874180.75\n", + "2014-10-02 00:00:00: Portfolio Value - 155807054.57\n", + "2014-10-03 00:00:00: Portfolio Value - 160062905.68\n", + "2014-10-06 00:00:00: Portfolio Value - 159463063.97\n", + "2014-10-07 00:00:00: Portfolio Value - 154398829.89\n", + "2014-10-08 00:00:00: Portfolio Value - 159575452.60\n", + "2014-10-09 00:00:00: Portfolio Value - 153305718.39\n", + "2014-10-10 00:00:00: Portfolio Value - 149782050.69\n", + "2014-10-13 00:00:00: Portfolio Value - 144827700.81\n", + "2014-10-14 00:00:00: Portfolio Value - 146442486.19\n", + "2014-10-15 00:00:00: Portfolio Value - 145726882.56\n", + "2014-10-16 00:00:00: Portfolio Value - 146550321.02\n", + "2014-10-17 00:00:00: Portfolio Value - 151901826.78\n", + "2014-10-20 00:00:00: Portfolio Value - 154272787.68\n", + "2014-10-21 00:00:00: Portfolio Value - 159610001.45\n", + "2014-10-22 00:00:00: Portfolio Value - 158476438.92\n", + "2014-10-23 00:00:00: Portfolio Value - 161611967.37\n", + "2014-10-24 00:00:00: Portfolio Value - 164873206.85\n", + "2014-10-27 00:00:00: Portfolio Value - 165614601.82\n", + "2014-10-28 00:00:00: Portfolio Value - 168471775.12\n", + "2014-10-29 00:00:00: Portfolio Value - 167334588.84\n", + "2014-10-30 00:00:00: Portfolio Value - 170431643.04\n", + "2014-10-31 00:00:00: Portfolio Value - 174098224.23\n", + "2014-11-03 00:00:00: Portfolio Value - 174711374.03\n", + "2014-11-04 00:00:00: Portfolio Value - 172591400.20\n", + "2014-11-05 00:00:00: Portfolio Value - 172878247.96\n", + "2014-11-06 00:00:00: Portfolio Value - 174905545.06\n", + "2014-11-07 00:00:00: Portfolio Value - 174641389.68\n", + "2014-11-10 00:00:00: Portfolio Value - 177424691.76\n", + "2014-11-11 00:00:00: Portfolio Value - 178512706.10\n", + "2014-11-12 00:00:00: Portfolio Value - 178553854.59\n", + "2014-11-13 00:00:00: Portfolio Value - 178709005.02\n", + "2014-11-14 00:00:00: Portfolio Value - 177876047.23\n", + "2014-11-17 00:00:00: Portfolio Value - 178265873.28\n", + "2014-11-18 00:00:00: Portfolio Value - 180748662.69\n", + "2014-11-19 00:00:00: Portfolio Value - 180438077.47\n", + "2014-11-20 00:00:00: Portfolio Value - 180212479.18\n", + "2014-11-21 00:00:00: Portfolio Value - 181146470.93\n", + "2014-11-24 00:00:00: Portfolio Value - 182740709.81\n", + "2014-11-25 00:00:00: Portfolio Value - 182616427.75\n", + "2014-11-26 00:00:00: Portfolio Value - 184097509.09\n", + "2014-11-28 00:00:00: Portfolio Value - 185257190.66\n", + "2014-12-01 00:00:00: Portfolio Value - 182110393.13\n", + "2014-12-02 00:00:00: Portfolio Value - 185250281.34\n", + "2014-12-03 00:00:00: Portfolio Value - 185963957.19\n", + "2014-12-04 00:00:00: Portfolio Value - 186047298.50\n", + "2014-12-05 00:00:00: Portfolio Value - 186905682.36\n", + "2014-12-08 00:00:00: Portfolio Value - 186693667.72\n", + "2014-12-09 00:00:00: Portfolio Value - 186482243.74\n", + "2014-12-10 00:00:00: Portfolio Value - 180367511.89\n", + "2014-12-11 00:00:00: Portfolio Value - 183108883.75\n", + "2014-12-12 00:00:00: Portfolio Value - 178069698.89\n", + "2014-12-15 00:00:00: Portfolio Value - 174779672.28\n", + "2014-12-16 00:00:00: Portfolio Value - 171703002.25\n", + "2014-12-17 00:00:00: Portfolio Value - 178650845.21\n", + "2014-12-18 00:00:00: Portfolio Value - 185741449.80\n", + "2014-12-19 00:00:00: Portfolio Value - 187281044.26\n", + "2014-12-22 00:00:00: Portfolio Value - 187358538.24\n", + "2014-12-23 00:00:00: Portfolio Value - 186539640.98\n", + "2014-12-24 00:00:00: Portfolio Value - 187957887.02\n", + "2014-12-26 00:00:00: Portfolio Value - 189782440.97\n", + "2014-12-29 00:00:00: Portfolio Value - 190686720.97\n", + "2014-12-30 00:00:00: Portfolio Value - 188836384.54\n", + "2014-12-31 00:00:00: Portfolio Value - 185838982.95\n", + "2015-01-02 00:00:00: Portfolio Value - 185826430.32\n", + "2015-01-05 00:00:00: Portfolio Value - 181632903.90\n", + "2015-01-06 00:00:00: Portfolio Value - 177732069.85\n", + "2015-01-07 00:00:00: Portfolio Value - 183312558.04\n", + "2015-01-08 00:00:00: Portfolio Value - 187766351.78\n", + "2015-01-09 00:00:00: Portfolio Value - 186107364.76\n", + "2015-01-12 00:00:00: Portfolio Value - 184514064.26\n", + "2015-01-13 00:00:00: Portfolio Value - 184541789.58\n", + "2015-01-14 00:00:00: Portfolio Value - 182420470.14\n", + "2015-01-15 00:00:00: Portfolio Value - 178837344.22\n", + "2015-01-16 00:00:00: Portfolio Value - 182990470.56\n", + "2015-01-20 00:00:00: Portfolio Value - 183807834.86\n", + "2015-01-21 00:00:00: Portfolio Value - 185276719.03\n", + "2015-01-22 00:00:00: Portfolio Value - 190325367.51\n", + "2015-01-23 00:00:00: Portfolio Value - 189943098.43\n", + "2015-01-26 00:00:00: Portfolio Value - 192241696.73\n", + "2015-01-27 00:00:00: Portfolio Value - 188640593.64\n", + "2015-01-28 00:00:00: Portfolio Value - 183915787.29\n", + "2015-01-29 00:00:00: Portfolio Value - 187048556.40\n", + "2015-01-30 00:00:00: Portfolio Value - 180620829.78\n", + "2015-02-02 00:00:00: Portfolio Value - 183365461.97\n", + "2015-02-03 00:00:00: Portfolio Value - 187655081.15\n", + "2015-02-04 00:00:00: Portfolio Value - 185916902.94\n", + "2015-02-05 00:00:00: Portfolio Value - 189065762.58\n", + "2015-02-06 00:00:00: Portfolio Value - 186719887.75\n", + "2015-02-09 00:00:00: Portfolio Value - 184638500.11\n", + "2015-02-10 00:00:00: Portfolio Value - 189101714.34\n", + "2015-02-11 00:00:00: Portfolio Value - 188852857.80\n", + "2015-02-12 00:00:00: Portfolio Value - 191470333.47\n", + "2015-02-13 00:00:00: Portfolio Value - 192345029.32\n", + "2015-02-17 00:00:00: Portfolio Value - 193059315.22\n", + "2015-02-18 00:00:00: Portfolio Value - 194884520.18\n", + "2015-02-19 00:00:00: Portfolio Value - 196048089.35\n", + "2015-02-20 00:00:00: Portfolio Value - 197691840.62\n", + "2015-02-23 00:00:00: Portfolio Value - 197432020.05\n", + "2015-02-24 00:00:00: Portfolio Value - 197390742.54\n", + "2015-02-25 00:00:00: Portfolio Value - 196942722.66\n", + "2015-02-26 00:00:00: Portfolio Value - 196012042.90\n", + "2015-02-27 00:00:00: Portfolio Value - 194463884.06\n", + "2015-03-02 00:00:00: Portfolio Value - 196767815.50\n", + "2015-03-03 00:00:00: Portfolio Value - 194194597.51\n", + "2015-03-04 00:00:00: Portfolio Value - 193055996.31\n", + "2015-03-05 00:00:00: Portfolio Value - 195684616.88\n", + "2015-03-06 00:00:00: Portfolio Value - 189513318.23\n", + "2015-03-09 00:00:00: Portfolio Value - 190643885.77\n", + "2015-03-10 00:00:00: Portfolio Value - 185447391.08\n", + "2015-03-11 00:00:00: Portfolio Value - 185571542.93\n", + "2015-03-12 00:00:00: Portfolio Value - 190582850.82\n", + "2015-03-13 00:00:00: Portfolio Value - 189462324.70\n", + "2015-03-16 00:00:00: Portfolio Value - 194759106.34\n", + "2015-03-17 00:00:00: Portfolio Value - 194943212.76\n", + "2015-03-18 00:00:00: Portfolio Value - 198840429.55\n", + "2015-03-19 00:00:00: Portfolio Value - 200736156.10\n", + "2015-03-20 00:00:00: Portfolio Value - 203256198.87\n", + "2015-03-23 00:00:00: Portfolio Value - 202080384.68\n", + "2015-03-24 00:00:00: Portfolio Value - 200119548.69\n", + "2015-03-25 00:00:00: Portfolio Value - 193330317.42\n", + "2015-03-26 00:00:00: Portfolio Value - 191930022.70\n", + "2015-03-27 00:00:00: Portfolio Value - 194292021.18\n", + "2015-03-30 00:00:00: Portfolio Value - 198349911.86\n", + "2015-03-31 00:00:00: Portfolio Value - 195192689.67\n", + "2015-04-01 00:00:00: Portfolio Value - 193181953.28\n", + "2015-04-02 00:00:00: Portfolio Value - 193858539.05\n", + "2015-04-06 00:00:00: Portfolio Value - 196117315.22\n", + "2015-04-07 00:00:00: Portfolio Value - 194500114.02\n", + "2015-04-08 00:00:00: Portfolio Value - 197092798.04\n", + "2015-04-09 00:00:00: Portfolio Value - 198442106.71\n", + "2015-04-10 00:00:00: Portfolio Value - 200423160.48\n", + "2015-04-13 00:00:00: Portfolio Value - 199922305.30\n", + "2015-04-14 00:00:00: Portfolio Value - 199794889.85\n", + "2015-04-15 00:00:00: Portfolio Value - 200913795.82\n", + "2015-04-16 00:00:00: Portfolio Value - 201689691.71\n", + "2015-04-17 00:00:00: Portfolio Value - 198060870.45\n", + "2015-04-20 00:00:00: Portfolio Value - 201460042.54\n", + "2015-04-21 00:00:00: Portfolio Value - 202449454.04\n", + "2015-04-22 00:00:00: Portfolio Value - 203840520.93\n", + "2015-04-23 00:00:00: Portfolio Value - 205995342.42\n", + "2015-04-24 00:00:00: Portfolio Value - 206364899.16\n", + "2015-04-27 00:00:00: Portfolio Value - 202833646.61\n", + "2015-04-28 00:00:00: Portfolio Value - 202963143.94\n", + "2015-04-29 00:00:00: Portfolio Value - 199658068.20\n", + "2015-04-30 00:00:00: Portfolio Value - 195124519.60\n", + "2015-05-01 00:00:00: Portfolio Value - 199007650.22\n", + "2015-05-04 00:00:00: Portfolio Value - 200888287.76\n", + "2015-05-05 00:00:00: Portfolio Value - 196492941.51\n", + "2015-05-06 00:00:00: Portfolio Value - 195870031.96\n", + "2015-05-07 00:00:00: Portfolio Value - 197400515.38\n", + "2015-05-08 00:00:00: Portfolio Value - 202017151.26\n", + "2015-05-11 00:00:00: Portfolio Value - 200990818.79\n", + "2015-05-12 00:00:00: Portfolio Value - 199832698.89\n", + "2015-05-13 00:00:00: Portfolio Value - 198583647.11\n", + "2015-05-14 00:00:00: Portfolio Value - 202758454.03\n", + "2015-05-15 00:00:00: Portfolio Value - 202961343.68\n", + "2015-05-18 00:00:00: Portfolio Value - 204964892.32\n", + "2015-05-19 00:00:00: Portfolio Value - 205634352.87\n", + "2015-05-20 00:00:00: Portfolio Value - 205531381.08\n", + "2015-05-21 00:00:00: Portfolio Value - 206023099.37\n", + "2015-05-22 00:00:00: Portfolio Value - 205112942.89\n", + "2015-05-26 00:00:00: Portfolio Value - 201371788.82\n", + "2015-05-27 00:00:00: Portfolio Value - 204833714.76\n", + "2015-05-28 00:00:00: Portfolio Value - 204307567.63\n", + "2015-05-29 00:00:00: Portfolio Value - 201906127.35\n", + "2015-06-01 00:00:00: Portfolio Value - 202529429.25\n", + "2015-06-02 00:00:00: Portfolio Value - 201847168.95\n", + "2015-06-03 00:00:00: Portfolio Value - 203331058.38\n", + "2015-06-04 00:00:00: Portfolio Value - 201645151.24\n", + "2015-06-05 00:00:00: Portfolio Value - 203029097.79\n", + "2015-06-08 00:00:00: Portfolio Value - 199041350.36\n", + "2015-06-09 00:00:00: Portfolio Value - 199531050.78\n", + "2015-06-10 00:00:00: Portfolio Value - 201981682.82\n", + "2015-06-11 00:00:00: Portfolio Value - 202409559.90\n", + "2015-06-12 00:00:00: Portfolio Value - 199813538.65\n", + "2015-06-15 00:00:00: Portfolio Value - 198774996.38\n", + "2015-06-16 00:00:00: Portfolio Value - 200472359.39\n", + "2015-06-17 00:00:00: Portfolio Value - 201902323.95\n", + "2015-06-18 00:00:00: Portfolio Value - 206559070.20\n", + "2015-06-19 00:00:00: Portfolio Value - 204688891.80\n", + "2015-06-22 00:00:00: Portfolio Value - 206342645.34\n", + "2015-06-23 00:00:00: Portfolio Value - 206001915.68\n", + "2015-06-24 00:00:00: Portfolio Value - 202827930.31\n", + "2015-06-25 00:00:00: Portfolio Value - 202011366.01\n", + "2015-06-26 00:00:00: Portfolio Value - 202367710.24\n", + "2015-06-29 00:00:00: Portfolio Value - 194823192.38\n", + "2015-06-30 00:00:00: Portfolio Value - 196240378.66\n", + "2015-07-01 00:00:00: Portfolio Value - 197928525.63\n", + "2015-07-02 00:00:00: Portfolio Value - 198261866.78\n", + "2015-07-06 00:00:00: Portfolio Value - 197923665.58\n", + "2015-07-07 00:00:00: Portfolio Value - 202517051.64\n", + "2015-07-08 00:00:00: Portfolio Value - 197002393.58\n", + "2015-07-09 00:00:00: Portfolio Value - 198126904.77\n", + "2015-07-10 00:00:00: Portfolio Value - 203231521.51\n", + "2015-07-13 00:00:00: Portfolio Value - 208092783.07\n", + "2015-07-14 00:00:00: Portfolio Value - 209478010.24\n", + "2015-07-15 00:00:00: Portfolio Value - 208394503.22\n", + "2015-07-16 00:00:00: Portfolio Value - 212547711.34\n", + "2015-07-17 00:00:00: Portfolio Value - 211229499.66\n", + "2015-07-20 00:00:00: Portfolio Value - 211387328.10\n", + "2015-07-21 00:00:00: Portfolio Value - 209874112.31\n", + "2015-07-22 00:00:00: Portfolio Value - 210715521.26\n", + "2015-07-23 00:00:00: Portfolio Value - 208591569.51\n", + "2015-07-24 00:00:00: Portfolio Value - 204407208.05\n", + "2015-07-27 00:00:00: Portfolio Value - 202303065.69\n", + "2015-07-28 00:00:00: Portfolio Value - 206865356.23\n", + "2015-07-29 00:00:00: Portfolio Value - 208082699.79\n", + "2015-07-30 00:00:00: Portfolio Value - 209857986.15\n", + "2015-07-31 00:00:00: Portfolio Value - 211368265.39\n", + "2015-08-03 00:00:00: Portfolio Value - 210294401.76\n", + "2015-08-04 00:00:00: Portfolio Value - 212991262.21\n", + "2015-08-05 00:00:00: Portfolio Value - 216482815.90\n", + "2015-08-06 00:00:00: Portfolio Value - 213253583.13\n", + "2015-08-07 00:00:00: Portfolio Value - 212418445.31\n", + "2015-08-10 00:00:00: Portfolio Value - 215463849.44\n", + "2015-08-11 00:00:00: Portfolio Value - 212529298.27\n", + "2015-08-12 00:00:00: Portfolio Value - 213355216.37\n", + "2015-08-13 00:00:00: Portfolio Value - 213133120.93\n", + "2015-08-14 00:00:00: Portfolio Value - 214450054.78\n", + "2015-08-17 00:00:00: Portfolio Value - 216623868.07\n", + "2015-08-18 00:00:00: Portfolio Value - 215203792.63\n", + "2015-08-19 00:00:00: Portfolio Value - 212799155.84\n", + "2015-08-20 00:00:00: Portfolio Value - 204573175.97\n", + "2015-08-21 00:00:00: Portfolio Value - 194121999.15\n", + "2015-08-24 00:00:00: Portfolio Value - 180035784.59\n", + "2015-08-25 00:00:00: Portfolio Value - 176594768.29\n", + "2015-08-26 00:00:00: Portfolio Value - 189280167.01\n", + "2015-08-27 00:00:00: Portfolio Value - 196423661.51\n", + "2015-08-28 00:00:00: Portfolio Value - 197238142.85\n", + "2015-08-31 00:00:00: Portfolio Value - 193004155.40\n", + "2015-09-01 00:00:00: Portfolio Value - 182764266.45\n", + "2015-09-02 00:00:00: Portfolio Value - 189851579.94\n", + "2015-09-03 00:00:00: Portfolio Value - 189251442.95\n", + "2015-09-04 00:00:00: Portfolio Value - 184603749.43\n", + "2015-09-08 00:00:00: Portfolio Value - 195174227.09\n", + "2015-09-09 00:00:00: Portfolio Value - 190640467.10\n", + "2015-09-10 00:00:00: Portfolio Value - 190924485.22\n", + "2015-09-11 00:00:00: Portfolio Value - 193154820.99\n", + "2015-09-14 00:00:00: Portfolio Value - 191613423.21\n", + "2015-09-15 00:00:00: Portfolio Value - 195875096.29\n", + "2015-09-16 00:00:00: Portfolio Value - 199035959.62\n", + "2015-09-17 00:00:00: Portfolio Value - 200502471.72\n", + "2015-09-18 00:00:00: Portfolio Value - 195549072.22\n", + "2015-09-21 00:00:00: Portfolio Value - 194782113.20\n", + "2015-09-22 00:00:00: Portfolio Value - 190781964.58\n", + "2015-09-23 00:00:00: Portfolio Value - 190906637.00\n", + "2015-09-24 00:00:00: Portfolio Value - 189108145.75\n", + "2015-09-25 00:00:00: Portfolio Value - 186668361.67\n", + "2015-09-28 00:00:00: Portfolio Value - 175201966.13\n", + "2015-09-29 00:00:00: Portfolio Value - 174962056.94\n", + "2015-09-30 00:00:00: Portfolio Value - 181945295.38\n", + "2015-10-01 00:00:00: Portfolio Value - 182475481.53\n", + "2015-10-02 00:00:00: Portfolio Value - 188108775.47\n", + "2015-10-05 00:00:00: Portfolio Value - 192864862.47\n", + "2015-10-06 00:00:00: Portfolio Value - 189056366.21\n", + "2015-10-07 00:00:00: Portfolio Value - 193715095.55\n", + "2015-10-08 00:00:00: Portfolio Value - 196657586.91\n", + "2015-10-09 00:00:00: Portfolio Value - 198611282.17\n", + "2015-10-12 00:00:00: Portfolio Value - 200652430.26\n", + "2015-10-13 00:00:00: Portfolio Value - 196838198.09\n", + "2015-10-14 00:00:00: Portfolio Value - 195133772.29\n", + "2015-10-15 00:00:00: Portfolio Value - 199683066.95\n", + "2015-10-16 00:00:00: Portfolio Value - 200320616.88\n", + "2015-10-19 00:00:00: Portfolio Value - 201595289.13\n", + "2015-10-20 00:00:00: Portfolio Value - 199141702.84\n", + "2015-10-21 00:00:00: Portfolio Value - 197352072.19\n", + "2015-10-22 00:00:00: Portfolio Value - 201843225.94\n", + "2015-10-23 00:00:00: Portfolio Value - 204891584.20\n", + "2015-10-26 00:00:00: Portfolio Value - 206430996.18\n", + "2015-10-27 00:00:00: Portfolio Value - 207435903.75\n", + "2015-10-28 00:00:00: Portfolio Value - 210291828.38\n", + "2015-10-29 00:00:00: Portfolio Value - 208793330.56\n", + "2015-10-30 00:00:00: Portfolio Value - 208558142.87\n", + "2015-11-02 00:00:00: Portfolio Value - 213898672.07\n", + "2015-11-03 00:00:00: Portfolio Value - 214204185.19\n", + "2015-11-04 00:00:00: Portfolio Value - 212922150.47\n", + "2015-11-05 00:00:00: Portfolio Value - 212790092.86\n", + "2015-11-06 00:00:00: Portfolio Value - 211245295.80\n", + "2015-11-09 00:00:00: Portfolio Value - 207748428.74\n", + "2015-11-10 00:00:00: Portfolio Value - 209674404.43\n", + "2015-11-11 00:00:00: Portfolio Value - 208516281.61\n", + "2015-11-12 00:00:00: Portfolio Value - 202486470.63\n", + "2015-11-13 00:00:00: Portfolio Value - 197932382.14\n", + "2015-11-16 00:00:00: Portfolio Value - 203906020.35\n", + "2015-11-17 00:00:00: Portfolio Value - 204941142.37\n", + "2015-11-18 00:00:00: Portfolio Value - 210778732.91\n", + "2015-11-19 00:00:00: Portfolio Value - 210821523.20\n", + "2015-11-20 00:00:00: Portfolio Value - 211820556.48\n", + "2015-11-23 00:00:00: Portfolio Value - 211995536.92\n", + "2015-11-24 00:00:00: Portfolio Value - 211587021.08\n", + "2015-11-25 00:00:00: Portfolio Value - 211705123.71\n", + "2015-11-27 00:00:00: Portfolio Value - 212828010.13\n", + "2015-11-30 00:00:00: Portfolio Value - 209583154.89\n", + "2015-12-01 00:00:00: Portfolio Value - 213149290.22\n", + "2015-12-02 00:00:00: Portfolio Value - 211204582.09\n", + "2015-12-03 00:00:00: Portfolio Value - 205996614.07\n", + "2015-12-04 00:00:00: Portfolio Value - 215484281.75\n", + "2015-12-07 00:00:00: Portfolio Value - 213185687.99\n", + "2015-12-08 00:00:00: Portfolio Value - 212690806.42\n", + "2015-12-09 00:00:00: Portfolio Value - 208897458.36\n", + "2015-12-10 00:00:00: Portfolio Value - 209010183.89\n", + "2015-12-11 00:00:00: Portfolio Value - 202951410.21\n", + "2015-12-14 00:00:00: Portfolio Value - 205282138.32\n", + "2015-12-15 00:00:00: Portfolio Value - 210889245.30\n", + "2015-12-16 00:00:00: Portfolio Value - 216743271.90\n", + "2015-12-17 00:00:00: Portfolio Value - 211972376.95\n", + "2015-12-18 00:00:00: Portfolio Value - 206699183.12\n", + "2015-12-21 00:00:00: Portfolio Value - 208241893.41\n", + "2015-12-22 00:00:00: Portfolio Value - 210084769.11\n", + "2015-12-23 00:00:00: Portfolio Value - 214122796.81\n", + "2015-12-24 00:00:00: Portfolio Value - 214016360.30\n", + "2015-12-28 00:00:00: Portfolio Value - 213963822.67\n", + "2015-12-29 00:00:00: Portfolio Value - 217695126.73\n", + "2015-12-30 00:00:00: Portfolio Value - 215680711.28\n", + "2015-12-31 00:00:00: Portfolio Value - 212082313.29\n", + "2016-01-04 00:00:00: Portfolio Value - 204801809.02\n", + "2016-01-05 00:00:00: Portfolio Value - 205831525.13\n", + "2016-01-06 00:00:00: Portfolio Value - 204056455.82\n", + "2016-01-07 00:00:00: Portfolio Value - 195725642.53\n", + "2016-01-08 00:00:00: Portfolio Value - 192313579.63\n", + "2016-01-11 00:00:00: Portfolio Value - 190709278.43\n", + "2016-01-12 00:00:00: Portfolio Value - 192398992.33\n", + "2016-01-13 00:00:00: Portfolio Value - 183351679.37\n", + "2016-01-14 00:00:00: Portfolio Value - 188344000.19\n", + "2016-01-15 00:00:00: Portfolio Value - 181582996.59\n", + "2016-01-19 00:00:00: Portfolio Value - 182317842.71\n", + "2016-01-20 00:00:00: Portfolio Value - 179860531.31\n", + "2016-01-21 00:00:00: Portfolio Value - 180670848.35\n", + "2016-01-22 00:00:00: Portfolio Value - 188562037.77\n", + "2016-01-25 00:00:00: Portfolio Value - 184065800.45\n", + "2016-01-26 00:00:00: Portfolio Value - 187366711.53\n", + "2016-01-27 00:00:00: Portfolio Value - 182446432.16\n", + "2016-01-28 00:00:00: Portfolio Value - 180732829.39\n", + "2016-01-29 00:00:00: Portfolio Value - 189541304.43\n", + "2016-02-01 00:00:00: Portfolio Value - 190525607.06\n", + "2016-02-02 00:00:00: Portfolio Value - 183387677.95\n", + "2016-02-03 00:00:00: Portfolio Value - 185085201.18\n", + "2016-02-04 00:00:00: Portfolio Value - 183914679.12\n", + "2016-02-05 00:00:00: Portfolio Value - 177753025.66\n", + "2016-02-08 00:00:00: Portfolio Value - 173492645.78\n", + "2016-02-09 00:00:00: Portfolio Value - 172068937.27\n", + "2016-02-10 00:00:00: Portfolio Value - 174474555.16\n", + "2016-02-11 00:00:00: Portfolio Value - 170071907.62\n", + "2016-02-12 00:00:00: Portfolio Value - 176661171.62\n", + "2016-02-16 00:00:00: Portfolio Value - 182831172.15\n", + "2016-02-17 00:00:00: Portfolio Value - 186953081.22\n", + "2016-02-18 00:00:00: Portfolio Value - 185408874.10\n", + "2016-02-19 00:00:00: Portfolio Value - 185719229.74\n", + "2016-02-22 00:00:00: Portfolio Value - 190065661.52\n", + "2016-02-23 00:00:00: Portfolio Value - 187629042.96\n", + "2016-02-24 00:00:00: Portfolio Value - 190545610.45\n", + "2016-02-25 00:00:00: Portfolio Value - 195262708.26\n", + "2016-02-26 00:00:00: Portfolio Value - 193180994.83\n", + "2016-02-29 00:00:00: Portfolio Value - 190818852.53\n", + "2016-03-01 00:00:00: Portfolio Value - 197770641.31\n", + "2016-03-02 00:00:00: Portfolio Value - 198466440.56\n", + "2016-03-03 00:00:00: Portfolio Value - 199093616.47\n", + "2016-03-04 00:00:00: Portfolio Value - 199708068.20\n", + "2016-03-07 00:00:00: Portfolio Value - 198962048.19\n", + "2016-03-08 00:00:00: Portfolio Value - 195507167.41\n", + "2016-03-09 00:00:00: Portfolio Value - 195270180.68\n", + "2016-03-10 00:00:00: Portfolio Value - 196698271.90\n", + "2016-03-11 00:00:00: Portfolio Value - 203027010.72\n", + "2016-03-14 00:00:00: Portfolio Value - 202061898.66\n", + "2016-03-15 00:00:00: Portfolio Value - 199810251.52\n", + "2016-03-16 00:00:00: Portfolio Value - 201849858.68\n", + "2016-03-17 00:00:00: Portfolio Value - 202664960.53\n", + "2016-03-18 00:00:00: Portfolio Value - 205067678.67\n", + "2016-03-21 00:00:00: Portfolio Value - 205361265.94\n", + "2016-03-22 00:00:00: Portfolio Value - 205710150.10\n", + "2016-03-23 00:00:00: Portfolio Value - 203121895.30\n", + "2016-03-24 00:00:00: Portfolio Value - 203201751.61\n", + "2016-03-28 00:00:00: Portfolio Value - 203455510.92\n", + "2016-03-29 00:00:00: Portfolio Value - 207949576.74\n", + "2016-03-30 00:00:00: Portfolio Value - 209017458.02\n", + "2016-03-31 00:00:00: Portfolio Value - 209694638.43\n", + "2016-04-01 00:00:00: Portfolio Value - 215160281.33\n", + "2016-04-04 00:00:00: Portfolio Value - 213871149.16\n", + "2016-04-05 00:00:00: Portfolio Value - 209531110.82\n", + "2016-04-06 00:00:00: Portfolio Value - 214467848.14\n", + "2016-04-07 00:00:00: Portfolio Value - 211402099.52\n", + "2016-04-08 00:00:00: Portfolio Value - 211035020.51\n", + "2016-04-11 00:00:00: Portfolio Value - 209023115.50\n", + "2016-04-12 00:00:00: Portfolio Value - 212303436.50\n", + "2016-04-13 00:00:00: Portfolio Value - 215327872.97\n", + "2016-04-14 00:00:00: Portfolio Value - 214020892.57\n", + "2016-04-15 00:00:00: Portfolio Value - 214071410.53\n", + "2016-04-18 00:00:00: Portfolio Value - 216858343.03\n", + "2016-04-19 00:00:00: Portfolio Value - 215082941.89\n", + "2016-04-20 00:00:00: Portfolio Value - 213786523.67\n", + "2016-04-21 00:00:00: Portfolio Value - 210530839.77\n", + "2016-04-22 00:00:00: Portfolio Value - 210240044.98\n", + "2016-04-25 00:00:00: Portfolio Value - 210463497.50\n", + "2016-04-26 00:00:00: Portfolio Value - 211028539.08\n", + "2016-04-27 00:00:00: Portfolio Value - 211502773.80\n", + "2016-04-28 00:00:00: Portfolio Value - 207646470.01\n", + "2016-04-29 00:00:00: Portfolio Value - 205125364.74\n", + "2016-05-02 00:00:00: Portfolio Value - 209386889.72\n", + "2016-05-03 00:00:00: Portfolio Value - 205597041.31\n", + "2016-05-04 00:00:00: Portfolio Value - 203952849.83\n", + "2016-05-05 00:00:00: Portfolio Value - 204748789.79\n", + "2016-05-06 00:00:00: Portfolio Value - 204900133.71\n", + "2016-05-09 00:00:00: Portfolio Value - 206909949.68\n", + "2016-05-10 00:00:00: Portfolio Value - 211205181.53\n", + "2016-05-11 00:00:00: Portfolio Value - 206891119.06\n", + "2016-05-12 00:00:00: Portfolio Value - 206957858.24\n", + "2016-05-13 00:00:00: Portfolio Value - 205009849.25\n", + "2016-05-16 00:00:00: Portfolio Value - 209559984.02\n", + "2016-05-17 00:00:00: Portfolio Value - 205435829.35\n", + "2016-05-18 00:00:00: Portfolio Value - 205483133.78\n", + "2016-05-19 00:00:00: Portfolio Value - 204571599.92\n", + "2016-05-20 00:00:00: Portfolio Value - 206354433.39\n", + "2016-05-23 00:00:00: Portfolio Value - 206507014.27\n", + "2016-05-24 00:00:00: Portfolio Value - 211588694.89\n", + "2016-05-25 00:00:00: Portfolio Value - 213064504.80\n", + "2016-05-26 00:00:00: Portfolio Value - 214182055.71\n", + "2016-05-27 00:00:00: Portfolio Value - 217700795.18\n", + "2016-05-31 00:00:00: Portfolio Value - 217925262.68\n", + "2016-06-01 00:00:00: Portfolio Value - 219849354.36\n", + "2016-06-02 00:00:00: Portfolio Value - 221752713.27\n", + "2016-06-03 00:00:00: Portfolio Value - 220662367.95\n", + "2016-06-06 00:00:00: Portfolio Value - 222218944.53\n", + "2016-06-07 00:00:00: Portfolio Value - 222125475.50\n", + "2016-06-08 00:00:00: Portfolio Value - 223340970.25\n", + "2016-06-09 00:00:00: Portfolio Value - 224257647.94\n", + "2016-06-10 00:00:00: Portfolio Value - 220521629.86\n", + "2016-06-13 00:00:00: Portfolio Value - 217738860.29\n", + "2016-06-14 00:00:00: Portfolio Value - 217865378.70\n", + "2016-06-15 00:00:00: Portfolio Value - 216959221.59\n", + "2016-06-16 00:00:00: Portfolio Value - 218092381.54\n", + "2016-06-17 00:00:00: Portfolio Value - 216135736.18\n", + "2016-06-20 00:00:00: Portfolio Value - 218340335.07\n", + "2016-06-21 00:00:00: Portfolio Value - 218757351.63\n", + "2016-06-22 00:00:00: Portfolio Value - 218679552.05\n", + "2016-06-23 00:00:00: Portfolio Value - 223472454.59\n", + "2016-06-24 00:00:00: Portfolio Value - 211863002.05\n", + "2016-06-27 00:00:00: Portfolio Value - 205434600.15\n", + "2016-06-28 00:00:00: Portfolio Value - 211090692.77\n", + "2016-06-29 00:00:00: Portfolio Value - 217846580.01\n", + "2016-06-30 00:00:00: Portfolio Value - 224147217.79\n", + "2016-07-01 00:00:00: Portfolio Value - 225544108.15\n", + "2016-07-05 00:00:00: Portfolio Value - 224580258.11\n", + "2016-07-06 00:00:00: Portfolio Value - 226914668.06\n", + "2016-07-07 00:00:00: Portfolio Value - 226937394.74\n", + "2016-07-08 00:00:00: Portfolio Value - 232242602.46\n", + "2016-07-11 00:00:00: Portfolio Value - 233396353.72\n", + "2016-07-12 00:00:00: Portfolio Value - 234539280.93\n", + "2016-07-13 00:00:00: Portfolio Value - 234073361.35\n", + "2016-07-14 00:00:00: Portfolio Value - 235447576.54\n", + "2016-07-15 00:00:00: Portfolio Value - 235716038.67\n", + "2016-07-18 00:00:00: Portfolio Value - 237078723.55\n", + "2016-07-19 00:00:00: Portfolio Value - 235456166.46\n", + "2016-07-20 00:00:00: Portfolio Value - 237424385.84\n", + "2016-07-21 00:00:00: Portfolio Value - 237479810.76\n", + "2016-07-22 00:00:00: Portfolio Value - 240137302.19\n", + "2016-07-25 00:00:00: Portfolio Value - 240299542.66\n", + "2016-07-26 00:00:00: Portfolio Value - 241199550.06\n", + "2016-07-27 00:00:00: Portfolio Value - 239935882.36\n", + "2016-07-28 00:00:00: Portfolio Value - 240237407.49\n", + "2016-07-29 00:00:00: Portfolio Value - 241239979.48\n", + "2016-08-01 00:00:00: Portfolio Value - 242022564.52\n", + "2016-08-02 00:00:00: Portfolio Value - 238964047.83\n", + "2016-08-03 00:00:00: Portfolio Value - 240038907.24\n", + "2016-08-04 00:00:00: Portfolio Value - 240144862.84\n", + "2016-08-05 00:00:00: Portfolio Value - 241610560.68\n", + "2016-08-08 00:00:00: Portfolio Value - 240571146.74\n", + "2016-08-09 00:00:00: Portfolio Value - 240107156.73\n", + "2016-08-10 00:00:00: Portfolio Value - 239381427.17\n", + "2016-08-11 00:00:00: Portfolio Value - 241468457.19\n", + "2016-08-12 00:00:00: Portfolio Value - 241053691.10\n", + "2016-08-15 00:00:00: Portfolio Value - 241547724.21\n", + "2016-08-16 00:00:00: Portfolio Value - 237867560.59\n", + "2016-08-17 00:00:00: Portfolio Value - 237981647.69\n", + "2016-08-18 00:00:00: Portfolio Value - 240111954.79\n", + "2016-08-19 00:00:00: Portfolio Value - 238761436.40\n", + "2016-08-22 00:00:00: Portfolio Value - 240579224.64\n", + "2016-08-23 00:00:00: Portfolio Value - 240385689.14\n", + "2016-08-24 00:00:00: Portfolio Value - 237349909.00\n", + "2016-08-25 00:00:00: Portfolio Value - 236072231.15\n", + "2016-08-26 00:00:00: Portfolio Value - 233960280.45\n", + "2016-08-29 00:00:00: Portfolio Value - 236226466.16\n", + "2016-08-30 00:00:00: Portfolio Value - 234721624.35\n", + "2016-08-31 00:00:00: Portfolio Value - 233931054.87\n", + "2016-09-01 00:00:00: Portfolio Value - 233668180.73\n", + "2016-09-02 00:00:00: Portfolio Value - 234614780.24\n", + "2016-09-06 00:00:00: Portfolio Value - 236303567.12\n", + "2016-09-07 00:00:00: Portfolio Value - 236326712.53\n", + "2016-09-08 00:00:00: Portfolio Value - 235055039.23\n", + "2016-09-09 00:00:00: Portfolio Value - 224409468.92\n", + "2016-09-12 00:00:00: Portfolio Value - 231446563.65\n", + "2016-09-13 00:00:00: Portfolio Value - 225652161.37\n", + "2016-09-14 00:00:00: Portfolio Value - 226542082.76\n", + "2016-09-15 00:00:00: Portfolio Value - 229692426.28\n", + "2016-09-16 00:00:00: Portfolio Value - 229267499.47\n", + "2016-09-19 00:00:00: Portfolio Value - 229383303.93\n", + "2016-09-20 00:00:00: Portfolio Value - 229414527.45\n", + "2016-09-21 00:00:00: Portfolio Value - 233350263.20\n", + "2016-09-22 00:00:00: Portfolio Value - 236046312.18\n", + "2016-09-23 00:00:00: Portfolio Value - 234544720.07\n", + "2016-09-26 00:00:00: Portfolio Value - 231593974.97\n", + "2016-09-27 00:00:00: Portfolio Value - 235305894.99\n", + "2016-09-28 00:00:00: Portfolio Value - 235526444.74\n", + "2016-09-29 00:00:00: Portfolio Value - 230540743.65\n", + "2016-09-30 00:00:00: Portfolio Value - 233023748.76\n", + "2016-10-03 00:00:00: Portfolio Value - 231472364.91\n", + "2016-10-04 00:00:00: Portfolio Value - 228220065.65\n", + "2016-10-05 00:00:00: Portfolio Value - 229001603.13\n", + "2016-10-06 00:00:00: Portfolio Value - 229623739.85\n", + "2016-10-07 00:00:00: Portfolio Value - 228729487.27\n", + "2016-10-10 00:00:00: Portfolio Value - 230965394.36\n", + "2016-10-11 00:00:00: Portfolio Value - 224703457.69\n", + "2016-10-12 00:00:00: Portfolio Value - 224652667.09\n", + "2016-10-13 00:00:00: Portfolio Value - 226356189.55\n", + "2016-10-14 00:00:00: Portfolio Value - 225284012.65\n", + "2016-10-17 00:00:00: Portfolio Value - 223910869.77\n", + "2016-10-18 00:00:00: Portfolio Value - 227429139.64\n", + "2016-10-19 00:00:00: Portfolio Value - 228304523.36\n", + "2016-10-20 00:00:00: Portfolio Value - 228285094.90\n", + "2016-10-21 00:00:00: Portfolio Value - 226734567.36\n", + "2016-10-24 00:00:00: Portfolio Value - 227824217.36\n", + "2016-10-25 00:00:00: Portfolio Value - 226698738.06\n", + "2016-10-26 00:00:00: Portfolio Value - 226048415.26\n", + "2016-10-27 00:00:00: Portfolio Value - 224300469.86\n", + "2016-10-28 00:00:00: Portfolio Value - 225818203.39\n", + "2016-10-31 00:00:00: Portfolio Value - 226703393.91\n", + "2016-11-01 00:00:00: Portfolio Value - 224037611.54\n", + "2016-11-02 00:00:00: Portfolio Value - 221016626.43\n", + "2016-11-03 00:00:00: Portfolio Value - 218197106.84\n", + "2016-11-04 00:00:00: Portfolio Value - 218560190.84\n", + "2016-11-07 00:00:00: Portfolio Value - 227272055.92\n", + "2016-11-08 00:00:00: Portfolio Value - 229917611.18\n", + "2016-11-09 00:00:00: Portfolio Value - 235787888.74\n", + "2016-11-10 00:00:00: Portfolio Value - 234614233.09\n", + "2016-11-11 00:00:00: Portfolio Value - 234530397.63\n", + "2016-11-14 00:00:00: Portfolio Value - 236586093.75\n", + "2016-11-15 00:00:00: Portfolio Value - 238728043.45\n", + "2016-11-16 00:00:00: Portfolio Value - 237426193.40\n", + "2016-11-17 00:00:00: Portfolio Value - 239582450.93\n", + "2016-11-18 00:00:00: Portfolio Value - 238478160.82\n", + "2016-11-21 00:00:00: Portfolio Value - 242133457.26\n", + "2016-11-22 00:00:00: Portfolio Value - 243005416.89\n", + "2016-11-23 00:00:00: Portfolio Value - 243664910.44\n", + "2016-11-25 00:00:00: Portfolio Value - 245709885.14\n", + "2016-11-28 00:00:00: Portfolio Value - 243777116.78\n", + "2016-11-29 00:00:00: Portfolio Value - 244541190.25\n", + "2016-11-30 00:00:00: Portfolio Value - 240641438.31\n", + "2016-12-01 00:00:00: Portfolio Value - 237760859.13\n", + "2016-12-02 00:00:00: Portfolio Value - 238645251.34\n", + "2016-12-05 00:00:00: Portfolio Value - 240467651.57\n", + "2016-12-06 00:00:00: Portfolio Value - 242951045.91\n", + "2016-12-07 00:00:00: Portfolio Value - 246733279.23\n", + "2016-12-08 00:00:00: Portfolio Value - 247464384.37\n", + "2016-12-09 00:00:00: Portfolio Value - 249355859.78\n", + "2016-12-12 00:00:00: Portfolio Value - 250872807.22\n", + "2016-12-13 00:00:00: Portfolio Value - 252439430.66\n", + "2016-12-14 00:00:00: Portfolio Value - 249544026.01\n", + "2016-12-15 00:00:00: Portfolio Value - 251805185.11\n", + "2016-12-16 00:00:00: Portfolio Value - 252136779.64\n", + "2016-12-19 00:00:00: Portfolio Value - 251775447.92\n", + "2016-12-20 00:00:00: Portfolio Value - 253019140.50\n", + "2016-12-21 00:00:00: Portfolio Value - 252283936.78\n", + "2016-12-22 00:00:00: Portfolio Value - 251717438.01\n", + "2016-12-23 00:00:00: Portfolio Value - 253267928.55\n", + "2016-12-27 00:00:00: Portfolio Value - 254351715.21\n", + "2016-12-28 00:00:00: Portfolio Value - 250472672.53\n", + "2016-12-29 00:00:00: Portfolio Value - 251063718.60\n", + "2016-12-30 00:00:00: Portfolio Value - 248529979.26\n", + "2017-01-03 00:00:00: Portfolio Value - 251895316.98\n", + "2017-01-04 00:00:00: Portfolio Value - 255484913.83\n", + "2017-01-05 00:00:00: Portfolio Value - 255451409.33\n", + "2017-01-06 00:00:00: Portfolio Value - 254639492.78\n", + "2017-01-09 00:00:00: Portfolio Value - 253266188.05\n", + "2017-01-10 00:00:00: Portfolio Value - 256183156.00\n", + "2017-01-11 00:00:00: Portfolio Value - 256487319.62\n", + "2017-01-12 00:00:00: Portfolio Value - 255462442.87\n", + "2017-01-13 00:00:00: Portfolio Value - 257114683.69\n", + "2017-01-17 00:00:00: Portfolio Value - 256475590.32\n", + "2017-01-18 00:00:00: Portfolio Value - 257263684.43\n", + "2017-01-19 00:00:00: Portfolio Value - 255401469.28\n", + "2017-01-20 00:00:00: Portfolio Value - 256904451.72\n", + "2017-01-23 00:00:00: Portfolio Value - 254760208.51\n", + "2017-01-24 00:00:00: Portfolio Value - 257434000.63\n", + "2017-01-25 00:00:00: Portfolio Value - 260368881.35\n", + "2017-01-26 00:00:00: Portfolio Value - 260463447.18\n", + "2017-01-27 00:00:00: Portfolio Value - 261157418.16\n", + "2017-01-30 00:00:00: Portfolio Value - 259177820.36\n", + "2017-01-31 00:00:00: Portfolio Value - 261262456.06\n", + "2017-02-01 00:00:00: Portfolio Value - 260313452.86\n", + "2017-02-02 00:00:00: Portfolio Value - 261921700.02\n", + "2017-02-03 00:00:00: Portfolio Value - 264880808.44\n", + "2017-02-06 00:00:00: Portfolio Value - 264205099.25\n", + "2017-02-07 00:00:00: Portfolio Value - 265100058.32\n", + "2017-02-08 00:00:00: Portfolio Value - 265135232.88\n", + "2017-02-09 00:00:00: Portfolio Value - 267949529.03\n", + "2017-02-10 00:00:00: Portfolio Value - 269163538.83\n", + "2017-02-13 00:00:00: Portfolio Value - 271532498.96\n", + "2017-02-14 00:00:00: Portfolio Value - 272959827.87\n", + "2017-02-15 00:00:00: Portfolio Value - 275560697.53\n", + "2017-02-16 00:00:00: Portfolio Value - 274101899.49\n", + "2017-02-17 00:00:00: Portfolio Value - 274556423.05\n", + "2017-02-21 00:00:00: Portfolio Value - 277408137.47\n", + "2017-02-22 00:00:00: Portfolio Value - 276752319.08\n", + "2017-02-23 00:00:00: Portfolio Value - 276257846.54\n", + "2017-02-24 00:00:00: Portfolio Value - 278743290.12\n", + "2017-02-27 00:00:00: Portfolio Value - 280225864.66\n", + "2017-02-28 00:00:00: Portfolio Value - 279307733.60\n", + "2017-03-01 00:00:00: Portfolio Value - 284421634.86\n", + "2017-03-02 00:00:00: Portfolio Value - 282616288.65\n", + "2017-03-03 00:00:00: Portfolio Value - 282497077.06\n", + "2017-03-06 00:00:00: Portfolio Value - 280761755.38\n", + "2017-03-07 00:00:00: Portfolio Value - 278836664.00\n", + "2017-03-08 00:00:00: Portfolio Value - 279051729.93\n", + "2017-03-09 00:00:00: Portfolio Value - 279355133.52\n", + "2017-03-10 00:00:00: Portfolio Value - 282592166.07\n", + "2017-03-13 00:00:00: Portfolio Value - 283770994.98\n", + "2017-03-14 00:00:00: Portfolio Value - 282363652.39\n", + "2017-03-15 00:00:00: Portfolio Value - 287144341.68\n", + "2017-03-16 00:00:00: Portfolio Value - 285068519.77\n", + "2017-03-17 00:00:00: Portfolio Value - 284666399.72\n", + "2017-03-20 00:00:00: Portfolio Value - 283583477.33\n", + "2017-03-21 00:00:00: Portfolio Value - 277730234.36\n", + "2017-03-22 00:00:00: Portfolio Value - 278837932.71\n", + "2017-03-23 00:00:00: Portfolio Value - 278095772.42\n", + "2017-03-24 00:00:00: Portfolio Value - 279009383.90\n", + "2017-03-27 00:00:00: Portfolio Value - 279859801.00\n", + "2017-03-28 00:00:00: Portfolio Value - 281880010.69\n", + "2017-03-29 00:00:00: Portfolio Value - 282472168.60\n", + "2017-03-30 00:00:00: Portfolio Value - 281320555.96\n", + "2017-03-31 00:00:00: Portfolio Value - 280624170.41\n", + "2017-04-03 00:00:00: Portfolio Value - 279706565.01\n", + "2017-04-04 00:00:00: Portfolio Value - 279576355.21\n", + "2017-04-05 00:00:00: Portfolio Value - 278225468.80\n", + "2017-04-06 00:00:00: Portfolio Value - 279435420.34\n", + "2017-04-07 00:00:00: Portfolio Value - 278558019.32\n", + "2017-04-10 00:00:00: Portfolio Value - 278475233.37\n", + "2017-04-11 00:00:00: Portfolio Value - 278206255.48\n", + "2017-04-12 00:00:00: Portfolio Value - 276969295.97\n", + "2017-04-13 00:00:00: Portfolio Value - 274609109.57\n", + "2017-04-17 00:00:00: Portfolio Value - 277032733.31\n", + "2017-04-18 00:00:00: Portfolio Value - 275056359.24\n", + "2017-04-19 00:00:00: Portfolio Value - 274274518.11\n", + "2017-04-20 00:00:00: Portfolio Value - 276471394.54\n", + "2017-04-21 00:00:00: Portfolio Value - 275277215.08\n", + "2017-04-24 00:00:00: Portfolio Value - 278385403.23\n", + "2017-04-25 00:00:00: Portfolio Value - 280807700.70\n", + "2017-04-26 00:00:00: Portfolio Value - 281003171.32\n", + "2017-04-27 00:00:00: Portfolio Value - 281966447.85\n", + "2017-04-28 00:00:00: Portfolio Value - 283938272.33\n", + "2017-05-01 00:00:00: Portfolio Value - 285043336.25\n", + "2017-05-02 00:00:00: Portfolio Value - 286462968.90\n", + "2017-05-03 00:00:00: Portfolio Value - 285829254.06\n", + "2017-05-04 00:00:00: Portfolio Value - 289844275.25\n", + "2017-05-05 00:00:00: Portfolio Value - 290484558.11\n", + "2017-05-08 00:00:00: Portfolio Value - 288018289.52\n", + "2017-05-09 00:00:00: Portfolio Value - 288755935.13\n", + "2017-05-10 00:00:00: Portfolio Value - 289911663.79\n", + "2017-05-11 00:00:00: Portfolio Value - 290039914.61\n", + "2017-05-12 00:00:00: Portfolio Value - 289695937.97\n", + "2017-05-15 00:00:00: Portfolio Value - 292467768.32\n", + "2017-05-16 00:00:00: Portfolio Value - 292115960.80\n", + "2017-05-17 00:00:00: Portfolio Value - 285418724.94\n", + "2017-05-18 00:00:00: Portfolio Value - 289385971.33\n", + "2017-05-19 00:00:00: Portfolio Value - 291100792.58\n", + "2017-05-22 00:00:00: Portfolio Value - 294911178.48\n", + "2017-05-23 00:00:00: Portfolio Value - 295801590.79\n", + "2017-05-24 00:00:00: Portfolio Value - 297364237.78\n", + "2017-05-25 00:00:00: Portfolio Value - 301314775.71\n", + "2017-05-26 00:00:00: Portfolio Value - 301834814.16\n", + "2017-05-30 00:00:00: Portfolio Value - 301400871.86\n", + "2017-05-31 00:00:00: Portfolio Value - 303278111.29\n", + "2017-06-01 00:00:00: Portfolio Value - 308265078.19\n", + "2017-06-02 00:00:00: Portfolio Value - 311795209.25\n", + "2017-06-05 00:00:00: Portfolio Value - 309987363.31\n", + "2017-06-06 00:00:00: Portfolio Value - 308085513.09\n", + "2017-06-07 00:00:00: Portfolio Value - 309418000.42\n", + "2017-06-08 00:00:00: Portfolio Value - 309820585.31\n", + "2017-06-09 00:00:00: Portfolio Value - 306916818.86\n", + "2017-06-12 00:00:00: Portfolio Value - 305456904.41\n", + "2017-06-13 00:00:00: Portfolio Value - 308203078.63\n", + "2017-06-14 00:00:00: Portfolio Value - 309086154.80\n", + "2017-06-15 00:00:00: Portfolio Value - 308162636.64\n", + "2017-06-16 00:00:00: Portfolio Value - 306723694.56\n", + "2017-06-19 00:00:00: Portfolio Value - 310641825.63\n", + "2017-06-20 00:00:00: Portfolio Value - 310201683.01\n", + "2017-06-21 00:00:00: Portfolio Value - 311957499.29\n", + "2017-06-22 00:00:00: Portfolio Value - 311903934.42\n", + "2017-06-23 00:00:00: Portfolio Value - 311986615.64\n", + "2017-06-26 00:00:00: Portfolio Value - 312866832.95\n", + "2017-06-27 00:00:00: Portfolio Value - 306902364.37\n", + "2017-06-28 00:00:00: Portfolio Value - 311077021.62\n", + "2017-06-29 00:00:00: Portfolio Value - 306670338.53\n", + "2017-06-30 00:00:00: Portfolio Value - 305714604.74\n", + "2017-07-03 00:00:00: Portfolio Value - 304774728.43\n", + "2017-07-05 00:00:00: Portfolio Value - 306039709.16\n", + "2017-07-06 00:00:00: Portfolio Value - 301972476.84\n", + "2017-07-07 00:00:00: Portfolio Value - 305975318.44\n", + "2017-07-10 00:00:00: Portfolio Value - 304847739.91\n", + "2017-07-11 00:00:00: Portfolio Value - 303396126.67\n", + "2017-07-12 00:00:00: Portfolio Value - 307666617.60\n", + "2017-07-13 00:00:00: Portfolio Value - 307444910.75\n", + "2017-07-14 00:00:00: Portfolio Value - 309578257.16\n", + "2017-07-17 00:00:00: Portfolio Value - 308807937.93\n", + "2017-07-18 00:00:00: Portfolio Value - 311034552.28\n", + "2017-07-19 00:00:00: Portfolio Value - 312526487.77\n", + "2017-07-20 00:00:00: Portfolio Value - 315051429.06\n", + "2017-07-21 00:00:00: Portfolio Value - 315128374.81\n", + "2017-07-24 00:00:00: Portfolio Value - 315445573.67\n", + "2017-07-25 00:00:00: Portfolio Value - 314085784.51\n", + "2017-07-26 00:00:00: Portfolio Value - 312042484.21\n", + "2017-07-27 00:00:00: Portfolio Value - 310228798.91\n", + "2017-07-28 00:00:00: Portfolio Value - 312162400.33\n", + "2017-07-31 00:00:00: Portfolio Value - 310742481.14\n", + "2017-08-01 00:00:00: Portfolio Value - 310385175.86\n", + "2017-08-02 00:00:00: Portfolio Value - 309152454.89\n", + "2017-08-03 00:00:00: Portfolio Value - 310185769.80\n", + "2017-08-04 00:00:00: Portfolio Value - 310969423.56\n", + "2017-08-07 00:00:00: Portfolio Value - 312804404.25\n", + "2017-08-08 00:00:00: Portfolio Value - 311297903.08\n", + "2017-08-09 00:00:00: Portfolio Value - 311093088.98\n", + "2017-08-10 00:00:00: Portfolio Value - 304341708.19\n", + "2017-08-11 00:00:00: Portfolio Value - 305691578.03\n", + "2017-08-14 00:00:00: Portfolio Value - 310041272.39\n", + "2017-08-15 00:00:00: Portfolio Value - 309490692.96\n", + "2017-08-16 00:00:00: Portfolio Value - 310495832.51\n", + "2017-08-17 00:00:00: Portfolio Value - 304096428.11\n", + "2017-08-18 00:00:00: Portfolio Value - 304287579.64\n", + "2017-08-21 00:00:00: Portfolio Value - 304292231.41\n", + "2017-08-22 00:00:00: Portfolio Value - 308676871.24\n", + "2017-08-23 00:00:00: Portfolio Value - 306270963.30\n", + "2017-08-24 00:00:00: Portfolio Value - 305068049.26\n", + "2017-08-25 00:00:00: Portfolio Value - 303239282.48\n", + "2017-08-28 00:00:00: Portfolio Value - 303908199.61\n", + "2017-08-29 00:00:00: Portfolio Value - 304314558.73\n", + "2017-08-30 00:00:00: Portfolio Value - 307516538.43\n", + "2017-08-31 00:00:00: Portfolio Value - 310911374.01\n", + "2017-09-01 00:00:00: Portfolio Value - 312589715.27\n", + "2017-09-05 00:00:00: Portfolio Value - 309898055.40\n", + "2017-09-06 00:00:00: Portfolio Value - 311763229.40\n", + "2017-09-07 00:00:00: Portfolio Value - 310745565.46\n", + "2017-09-08 00:00:00: Portfolio Value - 311786463.41\n", + "2017-09-11 00:00:00: Portfolio Value - 313295736.39\n", + "2017-09-12 00:00:00: Portfolio Value - 313844736.27\n", + "2017-09-13 00:00:00: Portfolio Value - 312035744.99\n", + "2017-09-14 00:00:00: Portfolio Value - 311719117.71\n", + "2017-09-15 00:00:00: Portfolio Value - 311738018.85\n", + "2017-09-18 00:00:00: Portfolio Value - 312385164.28\n", + "2017-09-19 00:00:00: Portfolio Value - 311725352.94\n", + "2017-09-20 00:00:00: Portfolio Value - 311813476.53\n", + "2017-09-21 00:00:00: Portfolio Value - 309484616.60\n", + "2017-09-22 00:00:00: Portfolio Value - 309750393.17\n", + "2017-09-25 00:00:00: Portfolio Value - 308270658.62\n", + "2017-09-26 00:00:00: Portfolio Value - 308820891.75\n", + "2017-09-27 00:00:00: Portfolio Value - 311265663.97\n", + "2017-09-28 00:00:00: Portfolio Value - 311630629.53\n", + "2017-09-29 00:00:00: Portfolio Value - 314767954.82\n", + "2017-10-02 00:00:00: Portfolio Value - 316553867.47\n", + "2017-10-03 00:00:00: Portfolio Value - 317065632.56\n", + "2017-10-04 00:00:00: Portfolio Value - 318521305.73\n", + "2017-10-05 00:00:00: Portfolio Value - 322133830.91\n", + "2017-10-06 00:00:00: Portfolio Value - 321964606.54\n", + "2017-10-09 00:00:00: Portfolio Value - 320542892.73\n", + "2017-10-10 00:00:00: Portfolio Value - 321459930.86\n", + "2017-10-11 00:00:00: Portfolio Value - 321714830.26\n", + "2017-10-12 00:00:00: Portfolio Value - 319235677.68\n", + "2017-10-13 00:00:00: Portfolio Value - 319926334.25\n", + "2017-10-16 00:00:00: Portfolio Value - 320927792.73\n", + "2017-10-17 00:00:00: Portfolio Value - 320914058.17\n", + "2017-10-18 00:00:00: Portfolio Value - 321292127.13\n", + "2017-10-19 00:00:00: Portfolio Value - 322215526.99\n", + "2017-10-20 00:00:00: Portfolio Value - 323471837.29\n", + "2017-10-23 00:00:00: Portfolio Value - 322764864.71\n", + "2017-10-24 00:00:00: Portfolio Value - 322278713.51\n", + "2017-10-25 00:00:00: Portfolio Value - 319385076.53\n", + "2017-10-26 00:00:00: Portfolio Value - 320726015.41\n", + "2017-10-27 00:00:00: Portfolio Value - 324244555.97\n", + "2017-10-30 00:00:00: Portfolio Value - 320920760.46\n", + "2017-10-31 00:00:00: Portfolio Value - 322196761.07\n", + "2017-11-01 00:00:00: Portfolio Value - 322198118.19\n", + "2017-11-02 00:00:00: Portfolio Value - 323720240.04\n", + "2017-11-03 00:00:00: Portfolio Value - 325816762.28\n", + "2017-11-06 00:00:00: Portfolio Value - 325203222.11\n", + "2017-11-07 00:00:00: Portfolio Value - 325221780.24\n", + "2017-11-08 00:00:00: Portfolio Value - 328344099.08\n", + "2017-11-09 00:00:00: Portfolio Value - 326320449.67\n", + "2017-11-10 00:00:00: Portfolio Value - 326096086.21\n", + "2017-11-13 00:00:00: Portfolio Value - 326859192.56\n", + "2017-11-14 00:00:00: Portfolio Value - 327264991.98\n", + "2017-11-15 00:00:00: Portfolio Value - 324109335.60\n", + "2017-11-16 00:00:00: Portfolio Value - 329781121.32\n", + "2017-11-17 00:00:00: Portfolio Value - 329241196.92\n", + "2017-11-20 00:00:00: Portfolio Value - 329217706.36\n", + "2017-11-21 00:00:00: Portfolio Value - 331367960.87\n", + "2017-11-22 00:00:00: Portfolio Value - 330792390.80\n", + "2017-11-24 00:00:00: Portfolio Value - 330753422.90\n", + "2017-11-27 00:00:00: Portfolio Value - 330081986.77\n", + "2017-11-28 00:00:00: Portfolio Value - 333736174.51\n", + "2017-11-29 00:00:00: Portfolio Value - 333260895.99\n", + "2017-11-30 00:00:00: Portfolio Value - 337222548.48\n", + "2017-12-01 00:00:00: Portfolio Value - 336177343.25\n", + "2017-12-04 00:00:00: Portfolio Value - 334144292.39\n", + "2017-12-05 00:00:00: Portfolio Value - 333237604.09\n", + "2017-12-06 00:00:00: Portfolio Value - 333485281.16\n", + "2017-12-07 00:00:00: Portfolio Value - 335562913.15\n", + "2017-12-08 00:00:00: Portfolio Value - 338904170.10\n", + "2017-12-11 00:00:00: Portfolio Value - 338706898.67\n", + "2017-12-12 00:00:00: Portfolio Value - 337870429.08\n", + "2017-12-13 00:00:00: Portfolio Value - 338698077.36\n", + "2017-12-14 00:00:00: Portfolio Value - 336683086.37\n", + "2017-12-15 00:00:00: Portfolio Value - 341594873.18\n", + "2017-12-18 00:00:00: Portfolio Value - 343366640.20\n", + "2017-12-19 00:00:00: Portfolio Value - 342555277.97\n", + "2017-12-20 00:00:00: Portfolio Value - 341464117.38\n", + "2017-12-21 00:00:00: Portfolio Value - 340788979.76\n", + "2017-12-22 00:00:00: Portfolio Value - 340738393.38\n", + "2017-12-26 00:00:00: Portfolio Value - 340448627.56\n", + "2017-12-27 00:00:00: Portfolio Value - 341219185.08\n", + "2017-12-28 00:00:00: Portfolio Value - 342222452.16\n", + "2017-12-29 00:00:00: Portfolio Value - 339413422.61\n", + "2018-01-02 00:00:00: Portfolio Value - 342539200.61\n", + "2018-01-03 00:00:00: Portfolio Value - 346735463.51\n", + "2018-01-04 00:00:00: Portfolio Value - 347395090.41\n", + "2018-01-05 00:00:00: Portfolio Value - 349917137.34\n", + "2018-01-08 00:00:00: Portfolio Value - 350368577.79\n", + "2018-01-09 00:00:00: Portfolio Value - 349863931.32\n", + "2018-01-10 00:00:00: Portfolio Value - 348142047.29\n", + "2018-01-11 00:00:00: Portfolio Value - 352269786.11\n", + "2018-01-12 00:00:00: Portfolio Value - 355067082.35\n", + "2018-01-16 00:00:00: Portfolio Value - 354443042.32\n", + "2018-01-17 00:00:00: Portfolio Value - 359081889.45\n", + "2018-01-18 00:00:00: Portfolio Value - 358695493.72\n", + "2018-01-19 00:00:00: Portfolio Value - 361254656.32\n", + "2018-01-22 00:00:00: Portfolio Value - 364706916.14\n", + "2018-01-23 00:00:00: Portfolio Value - 367939900.63\n", + "2018-01-24 00:00:00: Portfolio Value - 368753290.20\n", + "2018-01-25 00:00:00: Portfolio Value - 372161909.28\n", + "2018-01-26 00:00:00: Portfolio Value - 373819434.04\n", + "2018-01-29 00:00:00: Portfolio Value - 370863000.20\n", + "2018-01-30 00:00:00: Portfolio Value - 367023464.21\n", + "2018-01-31 00:00:00: Portfolio Value - 363799934.19\n", + "2018-02-01 00:00:00: Portfolio Value - 361364369.95\n", + "2018-02-02 00:00:00: Portfolio Value - 351641934.32\n", + "2018-02-05 00:00:00: Portfolio Value - 332804752.61\n", + "2018-02-06 00:00:00: Portfolio Value - 338871192.10\n", + "2018-02-07 00:00:00: Portfolio Value - 337930508.34\n", + "2018-02-08 00:00:00: Portfolio Value - 319791167.72\n", + "2018-02-09 00:00:00: Portfolio Value - 328357936.99\n", + "2018-02-12 00:00:00: Portfolio Value - 332865674.42\n", + "2018-02-13 00:00:00: Portfolio Value - 332496851.23\n", + "2018-02-14 00:00:00: Portfolio Value - 338730050.51\n", + "2018-02-15 00:00:00: Portfolio Value - 345131443.75\n", + "2018-02-16 00:00:00: Portfolio Value - 345765713.69\n", + "2018-02-20 00:00:00: Portfolio Value - 342264658.86\n", + "2018-02-21 00:00:00: Portfolio Value - 340143091.19\n", + "2018-02-22 00:00:00: Portfolio Value - 340476375.72\n", + "2018-02-23 00:00:00: Portfolio Value - 348443152.61\n", + "2018-02-26 00:00:00: Portfolio Value - 352570633.48\n", + "2018-02-27 00:00:00: Portfolio Value - 347071178.37\n", + "2018-02-28 00:00:00: Portfolio Value - 343565055.62\n", + "2018-03-01 00:00:00: Portfolio Value - 337979730.12\n", + "2018-03-02 00:00:00: Portfolio Value - 341797512.60\n", + "2018-03-05 00:00:00: Portfolio Value - 348838680.10\n", + "2018-03-06 00:00:00: Portfolio Value - 352027456.79\n", + "2018-03-07 00:00:00: Portfolio Value - 351616275.46\n", + "2018-03-08 00:00:00: Portfolio Value - 356600429.24\n", + "2018-03-09 00:00:00: Portfolio Value - 364792574.37\n", + "2018-03-12 00:00:00: Portfolio Value - 364932569.66\n", + "2018-03-13 00:00:00: Portfolio Value - 362113512.92\n", + "2018-03-14 00:00:00: Portfolio Value - 360224721.20\n", + "2018-03-15 00:00:00: Portfolio Value - 359666159.80\n", + "2018-03-16 00:00:00: Portfolio Value - 363323957.47\n", + "2018-03-19 00:00:00: Portfolio Value - 357585212.92\n", + "2018-03-20 00:00:00: Portfolio Value - 359273318.32\n", + "2018-03-21 00:00:00: Portfolio Value - 357036567.65\n", + "2018-03-22 00:00:00: Portfolio Value - 346544524.09\n", + "2018-03-23 00:00:00: Portfolio Value - 336781764.66\n", + "2018-03-26 00:00:00: Portfolio Value - 349589155.10\n", + "2018-03-27 00:00:00: Portfolio Value - 343283955.64\n", + "2018-03-28 00:00:00: Portfolio Value - 342382065.55\n", + "2018-03-29 00:00:00: Portfolio Value - 348845858.74\n", + "2018-04-02 00:00:00: Portfolio Value - 337610526.18\n", + "2018-04-03 00:00:00: Portfolio Value - 342716862.39\n", + "2018-04-04 00:00:00: Portfolio Value - 347884010.46\n", + "2018-04-05 00:00:00: Portfolio Value - 351298269.27\n", + "2018-04-06 00:00:00: Portfolio Value - 340055883.60\n", + "2018-04-09 00:00:00: Portfolio Value - 342656127.42\n", + "2018-04-10 00:00:00: Portfolio Value - 349900582.00\n", + "2018-04-11 00:00:00: Portfolio Value - 346618514.32\n", + "2018-04-12 00:00:00: Portfolio Value - 350975833.77\n", + "2018-04-13 00:00:00: Portfolio Value - 350106988.18\n", + "2018-04-16 00:00:00: Portfolio Value - 355188276.30\n", + "2018-04-17 00:00:00: Portfolio Value - 362024706.41\n", + "2018-04-18 00:00:00: Portfolio Value - 362930443.89\n", + "2018-04-19 00:00:00: Portfolio Value - 356994011.71\n", + "2018-04-20 00:00:00: Portfolio Value - 352411732.42\n", + "2018-04-23 00:00:00: Portfolio Value - 352326480.83\n", + "2018-04-24 00:00:00: Portfolio Value - 345904763.89\n", + "2018-04-25 00:00:00: Portfolio Value - 346946004.87\n", + "2018-04-26 00:00:00: Portfolio Value - 353323547.56\n", + "2018-04-27 00:00:00: Portfolio Value - 353056758.94\n", + "2018-04-30 00:00:00: Portfolio Value - 347913053.79\n", + "2018-05-01 00:00:00: Portfolio Value - 348742633.78\n", + "2018-05-02 00:00:00: Portfolio Value - 344701771.25\n", + "2018-05-03 00:00:00: Portfolio Value - 344568605.01\n", + "2018-05-04 00:00:00: Portfolio Value - 349381643.24\n", + "2018-05-07 00:00:00: Portfolio Value - 350818579.47\n", + "2018-05-08 00:00:00: Portfolio Value - 349000147.80\n", + "2018-05-09 00:00:00: Portfolio Value - 353306464.13\n", + "2018-05-10 00:00:00: Portfolio Value - 358261607.85\n", + "2018-05-11 00:00:00: Portfolio Value - 360637699.19\n", + "2018-05-14 00:00:00: Portfolio Value - 359692593.75\n", + "2018-05-15 00:00:00: Portfolio Value - 356575933.77\n", + "2018-05-16 00:00:00: Portfolio Value - 359445547.08\n", + "2018-05-17 00:00:00: Portfolio Value - 359857960.19\n", + "2018-05-18 00:00:00: Portfolio Value - 358364615.54\n", + "2018-05-21 00:00:00: Portfolio Value - 362491235.03\n", + "2018-05-22 00:00:00: Portfolio Value - 360589552.04\n", + "2018-05-23 00:00:00: Portfolio Value - 363782355.59\n", + "2018-05-24 00:00:00: Portfolio Value - 365277860.32\n", + "2018-05-25 00:00:00: Portfolio Value - 365162945.91\n", + "2018-05-29 00:00:00: Portfolio Value - 361873698.99\n", + "2018-05-30 00:00:00: Portfolio Value - 367915759.95\n", + "2018-05-31 00:00:00: Portfolio Value - 363606670.91\n", + "2018-06-01 00:00:00: Portfolio Value - 367673550.20\n", + "2018-06-04 00:00:00: Portfolio Value - 370729517.26\n", + "2018-06-05 00:00:00: Portfolio Value - 370695399.71\n", + "2018-06-06 00:00:00: Portfolio Value - 373716838.23\n", + "2018-06-07 00:00:00: Portfolio Value - 372289873.63\n", + "2018-06-08 00:00:00: Portfolio Value - 375194987.40\n", + "2018-06-11 00:00:00: Portfolio Value - 376206397.96\n", + "2018-06-12 00:00:00: Portfolio Value - 377901736.35\n", + "2018-06-13 00:00:00: Portfolio Value - 378940938.17\n", + "2018-06-14 00:00:00: Portfolio Value - 382054682.41\n", + "2018-06-15 00:00:00: Portfolio Value - 382662817.96\n", + "2018-06-18 00:00:00: Portfolio Value - 383182706.88\n", + "2018-06-19 00:00:00: Portfolio Value - 383984159.39\n", + "2018-06-20 00:00:00: Portfolio Value - 386340448.06\n", + "2018-06-21 00:00:00: Portfolio Value - 383722541.06\n", + "2018-06-22 00:00:00: Portfolio Value - 385320828.79\n", + "2018-06-25 00:00:00: Portfolio Value - 376017012.52\n", + "2018-06-26 00:00:00: Portfolio Value - 377736894.01\n", + "2018-06-27 00:00:00: Portfolio Value - 371721462.62\n", + "2018-06-28 00:00:00: Portfolio Value - 375872488.08\n", + "2018-06-29 00:00:00: Portfolio Value - 375599839.45\n", + "2018-07-02 00:00:00: Portfolio Value - 376134615.80\n", + "2018-07-03 00:00:00: Portfolio Value - 375204611.47\n", + "2018-07-05 00:00:00: Portfolio Value - 380343517.63\n", + "2018-07-06 00:00:00: Portfolio Value - 386221351.61\n", + "2018-07-09 00:00:00: Portfolio Value - 389800665.02\n", + "2018-07-10 00:00:00: Portfolio Value - 390980204.92\n", + "2018-07-11 00:00:00: Portfolio Value - 389223855.16\n", + "2018-07-12 00:00:00: Portfolio Value - 393007862.78\n", + "2018-07-13 00:00:00: Portfolio Value - 392995928.51\n", + "2018-07-16 00:00:00: Portfolio Value - 392217251.42\n", + "2018-07-17 00:00:00: Portfolio Value - 393550387.95\n", + "2018-07-18 00:00:00: Portfolio Value - 393446521.69\n", + "2018-07-19 00:00:00: Portfolio Value - 392949257.10\n", + "2018-07-20 00:00:00: Portfolio Value - 392226780.30\n", + "2018-07-23 00:00:00: Portfolio Value - 392205843.25\n", + "2018-07-24 00:00:00: Portfolio Value - 389901282.10\n", + "2018-07-25 00:00:00: Portfolio Value - 394663671.86\n", + "2018-07-26 00:00:00: Portfolio Value - 394334363.81\n", + "2018-07-27 00:00:00: Portfolio Value - 388908188.00\n", + "2018-07-30 00:00:00: Portfolio Value - 383357318.83\n", + "2018-07-31 00:00:00: Portfolio Value - 386694111.13\n", + "2018-08-01 00:00:00: Portfolio Value - 383792938.12\n", + "2018-08-02 00:00:00: Portfolio Value - 390768211.91\n", + "2018-08-03 00:00:00: Portfolio Value - 392418396.33\n", + "2018-08-06 00:00:00: Portfolio Value - 394802881.96\n", + "2018-08-07 00:00:00: Portfolio Value - 395445542.42\n", + "2018-08-08 00:00:00: Portfolio Value - 393792031.73\n", + "2018-08-09 00:00:00: Portfolio Value - 393248278.77\n", + "2018-08-10 00:00:00: Portfolio Value - 390760770.57\n", + "2018-08-13 00:00:00: Portfolio Value - 388095877.99\n", + "2018-08-14 00:00:00: Portfolio Value - 391332477.42\n", + "2018-08-15 00:00:00: Portfolio Value - 386518320.58\n", + "2018-08-16 00:00:00: Portfolio Value - 391360461.27\n", + "2018-08-17 00:00:00: Portfolio Value - 393846933.60\n", + "2018-08-20 00:00:00: Portfolio Value - 396958874.11\n", + "2018-08-21 00:00:00: Portfolio Value - 399024021.93\n", + "2018-08-22 00:00:00: Portfolio Value - 399840886.23\n", + "2018-08-23 00:00:00: Portfolio Value - 399295760.39\n", + "2018-08-24 00:00:00: Portfolio Value - 403878448.55\n", + "2018-08-27 00:00:00: Portfolio Value - 408679013.83\n", + "2018-08-28 00:00:00: Portfolio Value - 409666327.38\n", + "2018-08-29 00:00:00: Portfolio Value - 413384852.30\n", + "2018-08-30 00:00:00: Portfolio Value - 412193439.85\n", + "2018-08-31 00:00:00: Portfolio Value - 414737047.11\n", + "2018-09-04 00:00:00: Portfolio Value - 415467937.62\n", + "2018-09-05 00:00:00: Portfolio Value - 412106109.20\n", + "2018-09-06 00:00:00: Portfolio Value - 411244471.54\n", + "2018-09-07 00:00:00: Portfolio Value - 411292653.02\n", + "2018-09-10 00:00:00: Portfolio Value - 413813082.90\n", + "2018-09-11 00:00:00: Portfolio Value - 415554449.88\n", + "2018-09-12 00:00:00: Portfolio Value - 416271347.21\n", + "2018-09-13 00:00:00: Portfolio Value - 418814806.20\n", + "2018-09-14 00:00:00: Portfolio Value - 418577447.94\n", + "2018-09-17 00:00:00: Portfolio Value - 412794152.16\n", + "2018-09-18 00:00:00: Portfolio Value - 417472207.33\n", + "2018-09-19 00:00:00: Portfolio Value - 415673095.63\n", + "2018-09-20 00:00:00: Portfolio Value - 418475906.29\n", + "2018-09-21 00:00:00: Portfolio Value - 418902482.84\n", + "2018-09-24 00:00:00: Portfolio Value - 417570457.69\n", + "2018-09-25 00:00:00: Portfolio Value - 417795844.62\n", + "2018-09-26 00:00:00: Portfolio Value - 416544351.84\n", + "2018-09-27 00:00:00: Portfolio Value - 418472356.85\n", + "2018-09-28 00:00:00: Portfolio Value - 419030263.68\n", + "2018-10-01 00:00:00: Portfolio Value - 417888049.60\n", + "2018-10-02 00:00:00: Portfolio Value - 415581730.93\n", + "2018-10-03 00:00:00: Portfolio Value - 414612759.51\n", + "2018-10-04 00:00:00: Portfolio Value - 406682577.09\n", + "2018-10-05 00:00:00: Portfolio Value - 403310242.29\n", + "2018-10-08 00:00:00: Portfolio Value - 401855593.69\n", + "2018-10-09 00:00:00: Portfolio Value - 401964365.39\n", + "2018-10-10 00:00:00: Portfolio Value - 384382062.68\n", + "2018-10-11 00:00:00: Portfolio Value - 374740766.78\n", + "2018-10-12 00:00:00: Portfolio Value - 383273959.07\n", + "2018-10-15 00:00:00: Portfolio Value - 380813222.40\n", + "2018-10-16 00:00:00: Portfolio Value - 393583953.00\n", + "2018-10-17 00:00:00: Portfolio Value - 395875760.78\n", + "2018-10-18 00:00:00: Portfolio Value - 386026924.61\n", + "2018-10-19 00:00:00: Portfolio Value - 383797242.19\n", + "2018-10-22 00:00:00: Portfolio Value - 381889613.34\n", + "2018-10-23 00:00:00: Portfolio Value - 378087364.89\n", + "2018-10-24 00:00:00: Portfolio Value - 361891115.17\n", + "2018-10-25 00:00:00: Portfolio Value - 363465439.53\n", + "2018-10-26 00:00:00: Portfolio Value - 356200335.17\n", + "2018-10-29 00:00:00: Portfolio Value - 353265724.65\n", + "2018-10-30 00:00:00: Portfolio Value - 362598286.09\n", + "2018-10-31 00:00:00: Portfolio Value - 367250218.91\n", + "2018-11-01 00:00:00: Portfolio Value - 374727829.05\n", + "2018-11-02 00:00:00: Portfolio Value - 373063540.68\n", + "2018-11-05 00:00:00: Portfolio Value - 377086817.92\n", + "2018-11-06 00:00:00: Portfolio Value - 380113597.24\n", + "2018-11-07 00:00:00: Portfolio Value - 390038909.38\n", + "2018-11-08 00:00:00: Portfolio Value - 388674820.64\n", + "2018-11-09 00:00:00: Portfolio Value - 383760108.36\n", + "2018-11-12 00:00:00: Portfolio Value - 373585115.28\n", + "2018-11-13 00:00:00: Portfolio Value - 372974606.05\n", + "2018-11-14 00:00:00: Portfolio Value - 369790953.13\n", + "2018-11-15 00:00:00: Portfolio Value - 373276115.17\n", + "2018-11-16 00:00:00: Portfolio Value - 376291317.59\n", + "2018-11-19 00:00:00: Portfolio Value - 365651064.69\n", + "2018-11-20 00:00:00: Portfolio Value - 358439751.33\n", + "2018-11-21 00:00:00: Portfolio Value - 360418855.01\n", + "2018-11-23 00:00:00: Portfolio Value - 360459378.54\n", + "2018-11-26 00:00:00: Portfolio Value - 367168670.05\n", + "2018-11-27 00:00:00: Portfolio Value - 369040966.63\n", + "2018-11-28 00:00:00: Portfolio Value - 379372395.26\n", + "2018-11-29 00:00:00: Portfolio Value - 378393411.87\n", + "2018-11-30 00:00:00: Portfolio Value - 381393891.57\n", + "2018-12-03 00:00:00: Portfolio Value - 388084706.05\n", + "2018-12-04 00:00:00: Portfolio Value - 371300119.54\n", + "2018-12-06 00:00:00: Portfolio Value - 372225449.45\n", + "2018-12-07 00:00:00: Portfolio Value - 356328474.93\n", + "2018-12-10 00:00:00: Portfolio Value - 358401456.11\n", + "2018-12-11 00:00:00: Portfolio Value - 358784366.81\n", + "2018-12-12 00:00:00: Portfolio Value - 362275534.12\n", + "2018-12-13 00:00:00: Portfolio Value - 361840746.94\n", + "2018-12-14 00:00:00: Portfolio Value - 352585121.16\n", + "2018-12-17 00:00:00: Portfolio Value - 340263670.85\n", + "2018-12-18 00:00:00: Portfolio Value - 340231956.67\n", + "2018-12-19 00:00:00: Portfolio Value - 333811648.07\n", + "2018-12-20 00:00:00: Portfolio Value - 326562403.06\n", + "2018-12-21 00:00:00: Portfolio Value - 318472131.79\n", + "2018-12-24 00:00:00: Portfolio Value - 304830075.31\n", + "2018-12-26 00:00:00: Portfolio Value - 326782714.87\n", + "2018-12-27 00:00:00: Portfolio Value - 331388132.08\n", + "2018-12-28 00:00:00: Portfolio Value - 330260138.58\n", + "2018-12-31 00:00:00: Portfolio Value - 335693890.40\n", + "2019-01-02 00:00:00: Portfolio Value - 333228045.86\n", + "2019-01-03 00:00:00: Portfolio Value - 324794449.72\n", + "2019-01-04 00:00:00: Portfolio Value - 341152732.55\n", + "2019-01-07 00:00:00: Portfolio Value - 347097958.43\n", + "2019-01-08 00:00:00: Portfolio Value - 352337504.51\n", + "2019-01-09 00:00:00: Portfolio Value - 356053825.05\n", + "2019-01-10 00:00:00: Portfolio Value - 358909491.65\n", + "2019-01-11 00:00:00: Portfolio Value - 360067628.45\n", + "2019-01-14 00:00:00: Portfolio Value - 354484903.98\n", + "2019-01-15 00:00:00: Portfolio Value - 361658017.85\n", + "2019-01-16 00:00:00: Portfolio Value - 364518836.40\n", + "2019-01-17 00:00:00: Portfolio Value - 369880128.91\n", + "2019-01-18 00:00:00: Portfolio Value - 376078608.75\n", + "2019-01-22 00:00:00: Portfolio Value - 368524281.32\n", + "2019-01-23 00:00:00: Portfolio Value - 369639875.94\n", + "2019-01-24 00:00:00: Portfolio Value - 372527778.63\n", + "2019-01-25 00:00:00: Portfolio Value - 376106512.68\n", + "2019-01-28 00:00:00: Portfolio Value - 373207207.84\n", + "2019-01-29 00:00:00: Portfolio Value - 371654489.78\n", + "2019-01-30 00:00:00: Portfolio Value - 380427758.67\n", + "2019-01-31 00:00:00: Portfolio Value - 386775179.40\n", + "2019-02-01 00:00:00: Portfolio Value - 388026414.63\n", + "2019-02-04 00:00:00: Portfolio Value - 390907718.09\n", + "2019-02-05 00:00:00: Portfolio Value - 392624181.49\n", + "2019-02-06 00:00:00: Portfolio Value - 389492540.47\n", + "2019-02-07 00:00:00: Portfolio Value - 387073776.84\n", + "2019-02-08 00:00:00: Portfolio Value - 388584662.83\n", + "2019-02-11 00:00:00: Portfolio Value - 389974599.76\n", + "2019-02-12 00:00:00: Portfolio Value - 396828080.05\n", + "2019-02-13 00:00:00: Portfolio Value - 398282731.87\n", + "2019-02-14 00:00:00: Portfolio Value - 397503336.69\n", + "2019-02-15 00:00:00: Portfolio Value - 402651248.46\n", + "2019-02-19 00:00:00: Portfolio Value - 403945957.65\n", + "2019-02-20 00:00:00: Portfolio Value - 404446072.78\n", + "2019-02-21 00:00:00: Portfolio Value - 401910582.50\n", + "2019-02-22 00:00:00: Portfolio Value - 407058036.46\n", + "2019-02-25 00:00:00: Portfolio Value - 407020172.99\n", + "2019-02-26 00:00:00: Portfolio Value - 407465477.71\n", + "2019-02-27 00:00:00: Portfolio Value - 406987270.29\n", + "2019-02-28 00:00:00: Portfolio Value - 406915254.94\n", + "2019-03-01 00:00:00: Portfolio Value - 411362297.45\n", + "2019-03-04 00:00:00: Portfolio Value - 405949839.04\n", + "2019-03-05 00:00:00: Portfolio Value - 403932828.59\n", + "2019-03-06 00:00:00: Portfolio Value - 400710305.75\n", + "2019-03-07 00:00:00: Portfolio Value - 395401007.30\n", + "2019-03-08 00:00:00: Portfolio Value - 395169319.08\n", + "2019-03-11 00:00:00: Portfolio Value - 402322695.86\n", + "2019-03-12 00:00:00: Portfolio Value - 403777419.11\n", + "2019-03-13 00:00:00: Portfolio Value - 406865029.05\n", + "2019-03-14 00:00:00: Portfolio Value - 404380215.07\n", + "2019-03-15 00:00:00: Portfolio Value - 409387599.40\n", + "2019-03-18 00:00:00: Portfolio Value - 410383517.56\n", + "2019-03-19 00:00:00: Portfolio Value - 410077214.40\n", + "2019-03-20 00:00:00: Portfolio Value - 408806552.36\n", + "2019-03-21 00:00:00: Portfolio Value - 416872111.96\n", + "2019-03-22 00:00:00: Portfolio Value - 406247965.48\n", + "2019-03-25 00:00:00: Portfolio Value - 407764989.61\n", + "2019-03-26 00:00:00: Portfolio Value - 411904717.86\n", + "2019-03-27 00:00:00: Portfolio Value - 409139177.41\n", + "2019-03-28 00:00:00: Portfolio Value - 413775320.14\n", + "2019-03-29 00:00:00: Portfolio Value - 418821525.52\n", + "2019-04-01 00:00:00: Portfolio Value - 422754403.31\n", + "2019-04-02 00:00:00: Portfolio Value - 423489253.24\n", + "2019-04-03 00:00:00: Portfolio Value - 424491355.83\n", + "2019-04-04 00:00:00: Portfolio Value - 423857246.48\n", + "2019-04-05 00:00:00: Portfolio Value - 427757924.01\n", + "2019-04-08 00:00:00: Portfolio Value - 426844147.99\n", + "2019-04-09 00:00:00: Portfolio Value - 422835782.35\n", + "2019-04-10 00:00:00: Portfolio Value - 426863880.98\n", + "2019-04-11 00:00:00: Portfolio Value - 427195138.56\n", + "2019-04-12 00:00:00: Portfolio Value - 427040724.30\n", + "2019-04-15 00:00:00: Portfolio Value - 426810382.24\n", + "2019-04-16 00:00:00: Portfolio Value - 424979594.36\n", + "2019-04-17 00:00:00: Portfolio Value - 419179287.99\n", + "2019-04-18 00:00:00: Portfolio Value - 420675867.49\n", + "2019-04-22 00:00:00: Portfolio Value - 421286911.36\n", + "2019-04-23 00:00:00: Portfolio Value - 428313492.72\n", + "2019-04-24 00:00:00: Portfolio Value - 429198802.00\n", + "2019-04-25 00:00:00: Portfolio Value - 429572560.33\n", + "2019-04-26 00:00:00: Portfolio Value - 434510683.63\n", + "2019-04-29 00:00:00: Portfolio Value - 433542637.36\n", + "2019-04-30 00:00:00: Portfolio Value - 436322498.51\n", + "2019-05-01 00:00:00: Portfolio Value - 430336601.47\n", + "2019-05-02 00:00:00: Portfolio Value - 431758976.43\n", + "2019-05-03 00:00:00: Portfolio Value - 439408778.59\n", + "2019-05-06 00:00:00: Portfolio Value - 439499492.97\n", + "2019-05-07 00:00:00: Portfolio Value - 429621303.07\n", + "2019-05-08 00:00:00: Portfolio Value - 430459751.02\n", + "2019-05-09 00:00:00: Portfolio Value - 429391707.36\n", + "2019-05-10 00:00:00: Portfolio Value - 429414757.04\n", + "2019-05-13 00:00:00: Portfolio Value - 416486564.48\n", + "2019-05-14 00:00:00: Portfolio Value - 420595645.47\n", + "2019-05-15 00:00:00: Portfolio Value - 424955321.66\n", + "2019-05-16 00:00:00: Portfolio Value - 430625307.54\n", + "2019-05-17 00:00:00: Portfolio Value - 427145235.52\n", + "2019-05-20 00:00:00: Portfolio Value - 425451137.33\n", + "2019-05-21 00:00:00: Portfolio Value - 430491886.78\n", + "2019-05-22 00:00:00: Portfolio Value - 431503221.39\n", + "2019-05-23 00:00:00: Portfolio Value - 424293166.25\n", + "2019-05-24 00:00:00: Portfolio Value - 424903976.94\n", + "2019-05-28 00:00:00: Portfolio Value - 420279100.75\n", + "2019-05-29 00:00:00: Portfolio Value - 413864430.22\n", + "2019-05-30 00:00:00: Portfolio Value - 417192580.11\n", + "2019-05-31 00:00:00: Portfolio Value - 412493196.54\n", + "2019-06-03 00:00:00: Portfolio Value - 412830806.70\n", + "2019-06-04 00:00:00: Portfolio Value - 424353704.04\n", + "2019-06-05 00:00:00: Portfolio Value - 430479617.57\n", + "2019-06-06 00:00:00: Portfolio Value - 433744490.58\n", + "2019-06-07 00:00:00: Portfolio Value - 438392184.74\n", + "2019-06-10 00:00:00: Portfolio Value - 439968865.43\n", + "2019-06-11 00:00:00: Portfolio Value - 438164942.68\n", + "2019-06-12 00:00:00: Portfolio Value - 439582807.12\n", + "2019-06-13 00:00:00: Portfolio Value - 441544203.83\n", + "2019-06-14 00:00:00: Portfolio Value - 441207809.93\n", + "2019-06-17 00:00:00: Portfolio Value - 440326080.00\n", + "2019-06-18 00:00:00: Portfolio Value - 444880254.70\n", + "2019-06-19 00:00:00: Portfolio Value - 450026208.79\n", + "2019-06-20 00:00:00: Portfolio Value - 454588184.68\n", + "2019-06-21 00:00:00: Portfolio Value - 451560171.86\n", + "2019-06-24 00:00:00: Portfolio Value - 450745729.16\n", + "2019-06-25 00:00:00: Portfolio Value - 446022496.99\n", + "2019-06-26 00:00:00: Portfolio Value - 441034919.15\n", + "2019-06-27 00:00:00: Portfolio Value - 445906685.21\n", + "2019-06-28 00:00:00: Portfolio Value - 449254903.76\n", + "2019-07-01 00:00:00: Portfolio Value - 452117335.20\n", + "2019-07-02 00:00:00: Portfolio Value - 453763276.84\n", + "2019-07-03 00:00:00: Portfolio Value - 460221420.76\n", + "2019-07-05 00:00:00: Portfolio Value - 457807773.84\n", + "2019-07-08 00:00:00: Portfolio Value - 455609579.34\n", + "2019-07-09 00:00:00: Portfolio Value - 456908863.01\n", + "2019-07-10 00:00:00: Portfolio Value - 458339143.66\n", + "2019-07-11 00:00:00: Portfolio Value - 458040843.76\n", + "2019-07-12 00:00:00: Portfolio Value - 460535401.89\n", + "2019-07-15 00:00:00: Portfolio Value - 460535837.84\n", + "2019-07-16 00:00:00: Portfolio Value - 458389406.48\n", + "2019-07-17 00:00:00: Portfolio Value - 457577300.48\n", + "2019-07-18 00:00:00: Portfolio Value - 457594706.33\n", + "2019-07-19 00:00:00: Portfolio Value - 451451351.08\n", + "2019-07-22 00:00:00: Portfolio Value - 449886443.72\n", + "2019-07-23 00:00:00: Portfolio Value - 452971356.88\n", + "2019-07-24 00:00:00: Portfolio Value - 457345442.69\n", + "2019-07-25 00:00:00: Portfolio Value - 449998718.46\n", + "2019-07-26 00:00:00: Portfolio Value - 451810397.09\n", + "2019-07-29 00:00:00: Portfolio Value - 450258226.81\n", + "2019-07-30 00:00:00: Portfolio Value - 449161691.08\n", + "2019-07-31 00:00:00: Portfolio Value - 442583794.30\n", + "2019-08-01 00:00:00: Portfolio Value - 438928291.04\n", + "2019-08-02 00:00:00: Portfolio Value - 434694697.95\n", + "2019-08-05 00:00:00: Portfolio Value - 416896046.55\n", + "2019-08-06 00:00:00: Portfolio Value - 427489474.16\n", + "2019-08-07 00:00:00: Portfolio Value - 429116152.36\n", + "2019-08-08 00:00:00: Portfolio Value - 441158897.57\n", + "2019-08-09 00:00:00: Portfolio Value - 436692941.57\n", + "2019-08-12 00:00:00: Portfolio Value - 428829896.59\n", + "2019-08-13 00:00:00: Portfolio Value - 436261566.22\n", + "2019-08-14 00:00:00: Portfolio Value - 418642061.34\n", + "2019-08-15 00:00:00: Portfolio Value - 421876252.89\n", + "2019-08-16 00:00:00: Portfolio Value - 428979891.55\n", + "2019-08-19 00:00:00: Portfolio Value - 435028468.64\n", + "2019-08-20 00:00:00: Portfolio Value - 430522013.30\n", + "2019-08-21 00:00:00: Portfolio Value - 435090338.24\n", + "2019-08-22 00:00:00: Portfolio Value - 436153539.57\n", + "2019-08-23 00:00:00: Portfolio Value - 421310691.36\n", + "2019-08-26 00:00:00: Portfolio Value - 427199745.18\n", + "2019-08-27 00:00:00: Portfolio Value - 425171525.75\n", + "2019-08-28 00:00:00: Portfolio Value - 429105870.06\n", + "2019-08-29 00:00:00: Portfolio Value - 437153377.25\n", + "2019-08-30 00:00:00: Portfolio Value - 430776237.34\n", + "2019-09-03 00:00:00: Portfolio Value - 427832467.77\n", + "2019-09-04 00:00:00: Portfolio Value - 431952039.31\n", + "2019-09-05 00:00:00: Portfolio Value - 437526139.96\n", + "2019-09-06 00:00:00: Portfolio Value - 439154256.89\n", + "2019-09-09 00:00:00: Portfolio Value - 433680181.93\n", + "2019-09-10 00:00:00: Portfolio Value - 431693860.56\n", + "2019-09-11 00:00:00: Portfolio Value - 433687318.96\n", + "2019-09-12 00:00:00: Portfolio Value - 435610008.38\n", + "2019-09-13 00:00:00: Portfolio Value - 435014296.78\n", + "2019-09-16 00:00:00: Portfolio Value - 433554524.29\n", + "2019-09-17 00:00:00: Portfolio Value - 438830335.31\n", + "2019-09-18 00:00:00: Portfolio Value - 437738912.77\n", + "2019-09-19 00:00:00: Portfolio Value - 437298201.63\n", + "2019-09-20 00:00:00: Portfolio Value - 435024920.58\n", + "2019-09-23 00:00:00: Portfolio Value - 434983823.36\n", + "2019-09-24 00:00:00: Portfolio Value - 432400833.98\n", + "2019-09-25 00:00:00: Portfolio Value - 434680102.09\n", + "2019-09-26 00:00:00: Portfolio Value - 431721271.51\n", + "2019-09-27 00:00:00: Portfolio Value - 427134845.02\n", + "2019-09-30 00:00:00: Portfolio Value - 431291835.45\n", + "2019-10-01 00:00:00: Portfolio Value - 427127041.05\n", + "2019-10-02 00:00:00: Portfolio Value - 418116044.81\n", + "2019-10-03 00:00:00: Portfolio Value - 422485998.34\n", + "2019-10-04 00:00:00: Portfolio Value - 428452239.06\n", + "2019-10-07 00:00:00: Portfolio Value - 425796501.32\n", + "2019-10-08 00:00:00: Portfolio Value - 417912733.76\n", + "2019-10-09 00:00:00: Portfolio Value - 422544047.19\n", + "2019-10-10 00:00:00: Portfolio Value - 427689061.21\n", + "2019-10-11 00:00:00: Portfolio Value - 433208151.17\n", + "2019-10-14 00:00:00: Portfolio Value - 432304591.05\n", + "2019-10-15 00:00:00: Portfolio Value - 435081596.55\n", + "2019-10-16 00:00:00: Portfolio Value - 434905168.71\n", + "2019-10-17 00:00:00: Portfolio Value - 438297131.77\n", + "2019-10-18 00:00:00: Portfolio Value - 435397447.46\n", + "2019-10-21 00:00:00: Portfolio Value - 436384748.03\n", + "2019-10-22 00:00:00: Portfolio Value - 432390586.18\n", + "2019-10-23 00:00:00: Portfolio Value - 433097460.74\n", + "2019-10-24 00:00:00: Portfolio Value - 437266184.63\n", + "2019-10-25 00:00:00: Portfolio Value - 439080166.60\n", + "2019-10-28 00:00:00: Portfolio Value - 441078072.60\n", + "2019-10-29 00:00:00: Portfolio Value - 442677100.40\n", + "2019-10-30 00:00:00: Portfolio Value - 446441079.48\n", + "2019-10-31 00:00:00: Portfolio Value - 442192574.85\n", + "2019-11-01 00:00:00: Portfolio Value - 444964553.50\n", + "2019-11-04 00:00:00: Portfolio Value - 445396845.23\n", + "2019-11-05 00:00:00: Portfolio Value - 444955693.91\n", + "2019-11-06 00:00:00: Portfolio Value - 447056437.35\n", + "2019-11-07 00:00:00: Portfolio Value - 449178766.16\n", + "2019-11-08 00:00:00: Portfolio Value - 452417240.03\n", + "2019-11-11 00:00:00: Portfolio Value - 451729189.06\n", + "2019-11-12 00:00:00: Portfolio Value - 452867948.72\n", + "2019-11-13 00:00:00: Portfolio Value - 455200469.19\n", + "2019-11-14 00:00:00: Portfolio Value - 456098083.54\n", + "2019-11-15 00:00:00: Portfolio Value - 460359801.35\n", + "2019-11-18 00:00:00: Portfolio Value - 462148678.12\n", + "2019-11-19 00:00:00: Portfolio Value - 462731432.87\n", + "2019-11-20 00:00:00: Portfolio Value - 461729831.69\n", + "2019-11-21 00:00:00: Portfolio Value - 460233735.81\n", + "2019-11-22 00:00:00: Portfolio Value - 463268635.50\n", + "2019-11-25 00:00:00: Portfolio Value - 468907644.19\n", + "2019-11-26 00:00:00: Portfolio Value - 470613837.34\n", + "2019-11-27 00:00:00: Portfolio Value - 473846442.35\n", + "2019-11-29 00:00:00: Portfolio Value - 470960584.32\n", + "2019-12-02 00:00:00: Portfolio Value - 466532141.82\n", + "2019-12-03 00:00:00: Portfolio Value - 463558502.36\n", + "2019-12-04 00:00:00: Portfolio Value - 467621063.92\n", + "2019-12-05 00:00:00: Portfolio Value - 467859583.91\n", + "2019-12-06 00:00:00: Portfolio Value - 474073959.34\n", + "2019-12-09 00:00:00: Portfolio Value - 469756221.09\n", + "2019-12-10 00:00:00: Portfolio Value - 468090546.34\n", + "2019-12-11 00:00:00: Portfolio Value - 471167246.52\n", + "2019-12-12 00:00:00: Portfolio Value - 473661862.85\n", + "2019-12-13 00:00:00: Portfolio Value - 473268098.22\n", + "2019-12-16 00:00:00: Portfolio Value - 477280330.10\n", + "2019-12-17 00:00:00: Portfolio Value - 478417926.43\n", + "2019-12-18 00:00:00: Portfolio Value - 478482681.94\n", + "2019-12-19 00:00:00: Portfolio Value - 481948360.28\n", + "2019-12-20 00:00:00: Portfolio Value - 486140335.33\n", + "2019-12-23 00:00:00: Portfolio Value - 484807198.21\n", + "2019-12-24 00:00:00: Portfolio Value - 485769100.42\n", + "2019-12-26 00:00:00: Portfolio Value - 486291577.11\n", + "2019-12-27 00:00:00: Portfolio Value - 486175862.52\n", + "2019-12-30 00:00:00: Portfolio Value - 483495528.84\n", + "2019-12-31 00:00:00: Portfolio Value - 485385565.61\n", + "2020-01-02 00:00:00: Portfolio Value - 488209009.54\n", + "2020-01-03 00:00:00: Portfolio Value - 483744706.32\n", + "2020-01-06 00:00:00: Portfolio Value - 486972148.30\n", + "2020-01-07 00:00:00: Portfolio Value - 485476123.96\n", + "2020-01-08 00:00:00: Portfolio Value - 489893193.64\n", + "2020-01-09 00:00:00: Portfolio Value - 494242192.23\n", + "2020-01-10 00:00:00: Portfolio Value - 492386947.57\n", + "2020-01-13 00:00:00: Portfolio Value - 498172747.20\n", + "2020-01-14 00:00:00: Portfolio Value - 499197869.20\n", + "2020-01-15 00:00:00: Portfolio Value - 500013945.14\n", + "2020-01-16 00:00:00: Portfolio Value - 505390281.28\n", + "2020-01-17 00:00:00: Portfolio Value - 506369118.44\n", + "2020-01-21 00:00:00: Portfolio Value - 502899366.59\n", + "2020-01-22 00:00:00: Portfolio Value - 503271755.97\n", + "2020-01-23 00:00:00: Portfolio Value - 505213034.15\n", + "2020-01-24 00:00:00: Portfolio Value - 500414210.31\n", + "2020-01-27 00:00:00: Portfolio Value - 491993542.82\n", + "2020-01-28 00:00:00: Portfolio Value - 498006630.26\n", + "2020-01-29 00:00:00: Portfolio Value - 496740831.11\n", + "2020-01-30 00:00:00: Portfolio Value - 499904718.69\n", + "2020-01-31 00:00:00: Portfolio Value - 491047114.04\n", + "2020-02-03 00:00:00: Portfolio Value - 496400319.35\n", + "2020-02-04 00:00:00: Portfolio Value - 505450265.54\n", + "2020-02-05 00:00:00: Portfolio Value - 512545770.01\n", + "2020-02-06 00:00:00: Portfolio Value - 514335271.36\n", + "2020-02-07 00:00:00: Portfolio Value - 508692398.55\n", + "2020-02-10 00:00:00: Portfolio Value - 513070212.19\n", + "2020-02-11 00:00:00: Portfolio Value - 517716336.03\n", + "2020-02-12 00:00:00: Portfolio Value - 523089391.18\n", + "2020-02-13 00:00:00: Portfolio Value - 524216308.93\n", + "2020-02-14 00:00:00: Portfolio Value - 527444572.65\n", + "2020-02-18 00:00:00: Portfolio Value - 528694486.82\n", + "2020-02-19 00:00:00: Portfolio Value - 532198952.80\n", + "2020-02-20 00:00:00: Portfolio Value - 535281838.03\n", + "2020-02-21 00:00:00: Portfolio Value - 527311021.12\n", + "2020-02-24 00:00:00: Portfolio Value - 509988954.79\n", + "2020-02-25 00:00:00: Portfolio Value - 495413643.60\n", + "2020-02-26 00:00:00: Portfolio Value - 492132365.48\n", + "2020-02-27 00:00:00: Portfolio Value - 468755715.68\n", + "2020-02-28 00:00:00: Portfolio Value - 458052205.83\n", + "2020-03-02 00:00:00: Portfolio Value - 485777331.61\n", + "2020-03-03 00:00:00: Portfolio Value - 471305282.88\n", + "2020-03-04 00:00:00: Portfolio Value - 498327861.49\n", + "2020-03-05 00:00:00: Portfolio Value - 479791641.30\n", + "2020-03-06 00:00:00: Portfolio Value - 471787562.21\n", + "2020-03-09 00:00:00: Portfolio Value - 432557198.73\n", + "2020-03-10 00:00:00: Portfolio Value - 455214204.66\n", + "2020-03-11 00:00:00: Portfolio Value - 426330708.40\n", + "2020-03-12 00:00:00: Portfolio Value - 375611310.75\n", + "2020-03-13 00:00:00: Portfolio Value - 412962337.23\n", + "2020-03-16 00:00:00: Portfolio Value - 353238499.51\n", + "2020-03-17 00:00:00: Portfolio Value - 387409703.07\n", + "2020-03-18 00:00:00: Portfolio Value - 360060498.00\n", + "2020-03-19 00:00:00: Portfolio Value - 360804714.35\n", + "2020-03-20 00:00:00: Portfolio Value - 338768069.43\n", + "2020-03-23 00:00:00: Portfolio Value - 330455387.56\n", + "2020-03-24 00:00:00: Portfolio Value - 370025196.12\n", + "2020-03-25 00:00:00: Portfolio Value - 372720534.64\n", + "2020-03-26 00:00:00: Portfolio Value - 403515373.05\n", + "2020-03-27 00:00:00: Portfolio Value - 389800873.46\n", + "2020-03-30 00:00:00: Portfolio Value - 408470832.93\n", + "2020-03-31 00:00:00: Portfolio Value - 398632638.78\n", + "2020-04-01 00:00:00: Portfolio Value - 379151977.39\n", + "2020-04-02 00:00:00: Portfolio Value - 391187172.46\n", + "2020-04-03 00:00:00: Portfolio Value - 383088567.03\n", + "2020-04-06 00:00:00: Portfolio Value - 419515375.65\n", + "2020-04-07 00:00:00: Portfolio Value - 415816089.97\n", + "2020-04-08 00:00:00: Portfolio Value - 435014908.30\n", + "2020-04-09 00:00:00: Portfolio Value - 444578685.77\n", + "2020-04-13 00:00:00: Portfolio Value - 439091722.57\n", + "2020-04-14 00:00:00: Portfolio Value - 456569848.14\n", + "2020-04-15 00:00:00: Portfolio Value - 447600794.35\n", + "2020-04-16 00:00:00: Portfolio Value - 455781359.20\n", + "2020-04-17 00:00:00: Portfolio Value - 472090126.00\n", + "2020-04-20 00:00:00: Portfolio Value - 464925213.83\n", + "2020-04-21 00:00:00: Portfolio Value - 447007753.11\n", + "2020-04-22 00:00:00: Portfolio Value - 458445228.08\n", + "2020-04-23 00:00:00: Portfolio Value - 456120772.05\n", + "2020-04-24 00:00:00: Portfolio Value - 461527793.55\n", + "2020-04-27 00:00:00: Portfolio Value - 466374470.54\n", + "2020-04-28 00:00:00: Portfolio Value - 460826314.00\n", + "2020-04-29 00:00:00: Portfolio Value - 470185723.29\n", + "2020-04-30 00:00:00: Portfolio Value - 463560756.19\n", + "2020-05-01 00:00:00: Portfolio Value - 451214448.71\n", + "2020-05-04 00:00:00: Portfolio Value - 456360683.89\n", + "2020-05-05 00:00:00: Portfolio Value - 466238907.09\n", + "2020-05-06 00:00:00: Portfolio Value - 460911543.95\n", + "2020-05-07 00:00:00: Portfolio Value - 468635272.87\n", + "2020-05-08 00:00:00: Portfolio Value - 477112728.24\n", + "2020-05-11 00:00:00: Portfolio Value - 483118716.91\n", + "2020-05-12 00:00:00: Portfolio Value - 471066470.73\n", + "2020-05-13 00:00:00: Portfolio Value - 461403007.68\n", + "2020-05-14 00:00:00: Portfolio Value - 465013244.86\n", + "2020-05-15 00:00:00: Portfolio Value - 469101446.44\n", + "2020-05-18 00:00:00: Portfolio Value - 482617989.84\n", + "2020-05-19 00:00:00: Portfolio Value - 475619687.94\n", + "2020-05-20 00:00:00: Portfolio Value - 482729443.66\n", + "2020-05-21 00:00:00: Portfolio Value - 477160394.32\n", + "2020-05-22 00:00:00: Portfolio Value - 478380650.84\n", + "2020-05-26 00:00:00: Portfolio Value - 479440519.37\n", + "2020-05-27 00:00:00: Portfolio Value - 487142524.80\n", + "2020-05-28 00:00:00: Portfolio Value - 490562230.84\n", + "2020-05-29 00:00:00: Portfolio Value - 500887233.18\n", + "2020-06-01 00:00:00: Portfolio Value - 504013675.38\n", + "2020-06-02 00:00:00: Portfolio Value - 509512945.39\n", + "2020-06-03 00:00:00: Portfolio Value - 514560208.34\n", + "2020-06-04 00:00:00: Portfolio Value - 508298020.52\n", + "2020-06-05 00:00:00: Portfolio Value - 521128761.23\n", + "2020-06-08 00:00:00: Portfolio Value - 529670464.38\n", + "2020-06-09 00:00:00: Portfolio Value - 522661559.93\n", + "2020-06-10 00:00:00: Portfolio Value - 521185000.25\n", + "2020-06-11 00:00:00: Portfolio Value - 486845579.00\n", + "2020-06-12 00:00:00: Portfolio Value - 492227196.83\n", + "2020-06-15 00:00:00: Portfolio Value - 498911183.37\n", + "2020-06-16 00:00:00: Portfolio Value - 508134760.07\n", + "2020-06-17 00:00:00: Portfolio Value - 509409599.05\n", + "2020-06-18 00:00:00: Portfolio Value - 508608998.48\n", + "2020-06-19 00:00:00: Portfolio Value - 509384639.53\n", + "2020-06-22 00:00:00: Portfolio Value - 511460074.54\n", + "2020-06-23 00:00:00: Portfolio Value - 510820209.35\n", + "2020-06-24 00:00:00: Portfolio Value - 494763219.49\n", + "2020-06-25 00:00:00: Portfolio Value - 501576327.51\n", + "2020-06-26 00:00:00: Portfolio Value - 489336232.84\n", + "2020-06-29 00:00:00: Portfolio Value - 497674560.75\n", + "2020-06-30 00:00:00: Portfolio Value - 508599849.28\n", + "2020-07-01 00:00:00: Portfolio Value - 510408044.02\n", + "2020-07-02 00:00:00: Portfolio Value - 514629740.28\n", + "2020-07-06 00:00:00: Portfolio Value - 523596290.62\n", + "2020-07-07 00:00:00: Portfolio Value - 519020952.08\n", + "2020-07-08 00:00:00: Portfolio Value - 525401265.76\n", + "2020-07-09 00:00:00: Portfolio Value - 522559646.71\n", + "2020-07-10 00:00:00: Portfolio Value - 529519727.43\n", + "2020-07-13 00:00:00: Portfolio Value - 521627664.18\n", + "2020-07-14 00:00:00: Portfolio Value - 534919783.72\n", + "2020-07-15 00:00:00: Portfolio Value - 543862699.66\n", + "2020-07-16 00:00:00: Portfolio Value - 540765928.45\n", + "2020-07-17 00:00:00: Portfolio Value - 543197439.69\n", + "2020-07-20 00:00:00: Portfolio Value - 546439239.97\n", + "2020-07-21 00:00:00: Portfolio Value - 546392936.53\n", + "2020-07-22 00:00:00: Portfolio Value - 549950553.20\n", + "2020-07-23 00:00:00: Portfolio Value - 543535314.53\n", + "2020-07-24 00:00:00: Portfolio Value - 539195175.18\n", + "2020-07-27 00:00:00: Portfolio Value - 546545197.42\n", + "2020-07-28 00:00:00: Portfolio Value - 540378672.12\n", + "2020-07-29 00:00:00: Portfolio Value - 544912132.10\n", + "2020-07-30 00:00:00: Portfolio Value - 541160325.26\n", + "2020-07-31 00:00:00: Portfolio Value - 540163657.55\n", + "2020-08-03 00:00:00: Portfolio Value - 545049774.41\n", + "2020-08-04 00:00:00: Portfolio Value - 549952517.28\n", + "2020-08-05 00:00:00: Portfolio Value - 551756492.14\n", + "2020-08-06 00:00:00: Portfolio Value - 550016358.89\n", + "2020-08-07 00:00:00: Portfolio Value - 550885199.39\n", + "2020-08-10 00:00:00: Portfolio Value - 549847301.72\n", + "2020-08-11 00:00:00: Portfolio Value - 541212135.47\n", + "2020-08-12 00:00:00: Portfolio Value - 550469035.13\n", + "2020-08-13 00:00:00: Portfolio Value - 552941722.72\n", + "2020-08-14 00:00:00: Portfolio Value - 551681651.49\n", + "2020-08-17 00:00:00: Portfolio Value - 556368150.33\n", + "2020-08-18 00:00:00: Portfolio Value - 556548640.03\n", + "2020-08-19 00:00:00: Portfolio Value - 553553357.31\n", + "2020-08-20 00:00:00: Portfolio Value - 551479348.33\n", + "2020-08-21 00:00:00: Portfolio Value - 549814322.80\n", + "2020-08-24 00:00:00: Portfolio Value - 552589005.78\n", + "2020-08-25 00:00:00: Portfolio Value - 555649886.45\n", + "2020-08-26 00:00:00: Portfolio Value - 560562829.27\n", + "2020-08-27 00:00:00: Portfolio Value - 562174421.76\n", + "2020-08-28 00:00:00: Portfolio Value - 563613365.48\n", + "2020-08-31 00:00:00: Portfolio Value - 563538473.18\n", + "2020-09-01 00:00:00: Portfolio Value - 565246544.80\n", + "2020-09-02 00:00:00: Portfolio Value - 578596762.08\n", + "2020-09-03 00:00:00: Portfolio Value - 555432337.51\n", + "2020-09-04 00:00:00: Portfolio Value - 547971928.41\n", + "2020-09-08 00:00:00: Portfolio Value - 535260472.65\n", + "2020-09-09 00:00:00: Portfolio Value - 544988711.15\n", + "2020-09-10 00:00:00: Portfolio Value - 534880407.20\n", + "2020-09-11 00:00:00: Portfolio Value - 534458198.76\n", + "2020-09-14 00:00:00: Portfolio Value - 542730281.21\n", + "2020-09-15 00:00:00: Portfolio Value - 546975069.44\n", + "2020-09-16 00:00:00: Portfolio Value - 544874422.35\n", + "2020-09-17 00:00:00: Portfolio Value - 539285474.23\n", + "2020-09-18 00:00:00: Portfolio Value - 534019976.43\n", + "2020-09-21 00:00:00: Portfolio Value - 529749470.25\n", + "2020-09-22 00:00:00: Portfolio Value - 536212774.59\n", + "2020-09-23 00:00:00: Portfolio Value - 524984029.59\n", + "2020-09-24 00:00:00: Portfolio Value - 525068418.91\n", + "2020-09-25 00:00:00: Portfolio Value - 534923711.20\n", + "2020-09-28 00:00:00: Portfolio Value - 544350199.65\n", + "2020-09-29 00:00:00: Portfolio Value - 543026782.01\n", + "2020-09-30 00:00:00: Portfolio Value - 548163173.62\n", + "2020-10-01 00:00:00: Portfolio Value - 553634221.94\n", + "2020-10-02 00:00:00: Portfolio Value - 549234598.67\n", + "2020-10-05 00:00:00: Portfolio Value - 562048686.59\n", + "2020-10-06 00:00:00: Portfolio Value - 554365928.37\n", + "2020-10-07 00:00:00: Portfolio Value - 566370142.70\n", + "2020-10-08 00:00:00: Portfolio Value - 570144435.30\n", + "2020-10-09 00:00:00: Portfolio Value - 574284072.88\n", + "2020-10-12 00:00:00: Portfolio Value - 580550207.93\n", + "2020-10-13 00:00:00: Portfolio Value - 581422772.27\n", + "2020-10-14 00:00:00: Portfolio Value - 576528570.19\n", + "2020-10-15 00:00:00: Portfolio Value - 576238819.65\n", + "2020-10-16 00:00:00: Portfolio Value - 577803984.76\n", + "2020-10-19 00:00:00: Portfolio Value - 566761924.44\n", + "2020-10-20 00:00:00: Portfolio Value - 566191682.93\n", + "2020-10-21 00:00:00: Portfolio Value - 560366285.56\n", + "2020-10-22 00:00:00: Portfolio Value - 572899657.81\n", + "2020-10-23 00:00:00: Portfolio Value - 577310433.39\n", + "2020-10-26 00:00:00: Portfolio Value - 568484455.01\n", + "2020-10-27 00:00:00: Portfolio Value - 564224410.29\n", + "2020-10-28 00:00:00: Portfolio Value - 544534143.74\n", + "2020-10-29 00:00:00: Portfolio Value - 546088159.39\n", + "2020-10-30 00:00:00: Portfolio Value - 538722021.44\n", + "2020-11-02 00:00:00: Portfolio Value - 549944740.54\n", + "2020-11-03 00:00:00: Portfolio Value - 562965516.21\n", + "2020-11-04 00:00:00: Portfolio Value - 574486111.71\n", + "2020-11-05 00:00:00: Portfolio Value - 586877580.06\n", + "2020-11-06 00:00:00: Portfolio Value - 588296970.24\n", + "2020-11-09 00:00:00: Portfolio Value - 586695435.54\n", + "2020-11-10 00:00:00: Portfolio Value - 588807478.08\n", + "2020-11-11 00:00:00: Portfolio Value - 594851299.00\n", + "2020-11-12 00:00:00: Portfolio Value - 585734689.99\n", + "2020-11-13 00:00:00: Portfolio Value - 593780393.61\n", + "2020-11-16 00:00:00: Portfolio Value - 600502717.52\n", + "2020-11-17 00:00:00: Portfolio Value - 596328519.38\n", + "2020-11-18 00:00:00: Portfolio Value - 588848238.17\n", + "2020-11-19 00:00:00: Portfolio Value - 591218016.52\n", + "2020-11-20 00:00:00: Portfolio Value - 590246295.27\n", + "2020-11-23 00:00:00: Portfolio Value - 596453139.69\n", + "2020-11-24 00:00:00: Portfolio Value - 600666761.16\n", + "2020-11-25 00:00:00: Portfolio Value - 599981966.42\n", + "2020-11-27 00:00:00: Portfolio Value - 603155062.78\n", + "2020-11-30 00:00:00: Portfolio Value - 602951231.89\n", + "2020-12-01 00:00:00: Portfolio Value - 611324907.77\n", + "2020-12-02 00:00:00: Portfolio Value - 609408942.40\n", + "2020-12-03 00:00:00: Portfolio Value - 610124409.66\n", + "2020-12-04 00:00:00: Portfolio Value - 614818084.34\n", + "2020-12-07 00:00:00: Portfolio Value - 611954475.79\n", + "2020-12-08 00:00:00: Portfolio Value - 614257182.95\n", + "2020-12-09 00:00:00: Portfolio Value - 608977362.29\n", + "2020-12-10 00:00:00: Portfolio Value - 609160457.14\n", + "2020-12-11 00:00:00: Portfolio Value - 604420418.53\n", + "2020-12-14 00:00:00: Portfolio Value - 607333993.57\n", + "2020-12-15 00:00:00: Portfolio Value - 615055375.91\n", + "2020-12-16 00:00:00: Portfolio Value - 615397856.19\n", + "2020-12-17 00:00:00: Portfolio Value - 625360642.74\n", + "2020-12-18 00:00:00: Portfolio Value - 625189455.83\n", + "2020-12-21 00:00:00: Portfolio Value - 621066987.63\n", + "2020-12-22 00:00:00: Portfolio Value - 619357007.66\n", + "2020-12-23 00:00:00: Portfolio Value - 618849394.90\n", + "2020-12-24 00:00:00: Portfolio Value - 619244929.00\n", + "2020-12-28 00:00:00: Portfolio Value - 620861279.33\n", + "2020-12-29 00:00:00: Portfolio Value - 619176316.87\n", + "2020-12-30 00:00:00: Portfolio Value - 620545009.36\n", + "2020-12-31 00:00:00: Portfolio Value - 628202688.52\n", + "2021-01-04 00:00:00: Portfolio Value - 617174009.98\n", + "2021-01-05 00:00:00: Portfolio Value - 621843849.77\n", + "2021-01-06 00:00:00: Portfolio Value - 627196722.69\n", + "2021-01-07 00:00:00: Portfolio Value - 636126583.92\n", + "2021-01-08 00:00:00: Portfolio Value - 641052086.27\n", + "2021-01-11 00:00:00: Portfolio Value - 636694661.54\n", + "2021-01-12 00:00:00: Portfolio Value - 636254370.49\n", + "2021-01-13 00:00:00: Portfolio Value - 637235842.18\n", + "2021-01-14 00:00:00: Portfolio Value - 635208550.53\n", + "2021-01-15 00:00:00: Portfolio Value - 634797912.01\n", + "2021-01-19 00:00:00: Portfolio Value - 637185415.89\n", + "2021-01-20 00:00:00: Portfolio Value - 651600808.86\n", + "2021-01-21 00:00:00: Portfolio Value - 646756496.82\n", + "2021-01-22 00:00:00: Portfolio Value - 642927775.41\n", + "2021-01-25 00:00:00: Portfolio Value - 644786039.79\n", + "2021-01-26 00:00:00: Portfolio Value - 643285305.32\n", + "2021-01-27 00:00:00: Portfolio Value - 622356701.18\n", + "2021-01-28 00:00:00: Portfolio Value - 628530434.12\n", + "2021-01-29 00:00:00: Portfolio Value - 616930045.41\n", + "2021-02-01 00:00:00: Portfolio Value - 625492648.70\n", + "2021-02-02 00:00:00: Portfolio Value - 635239185.38\n", + "2021-02-03 00:00:00: Portfolio Value - 630550668.29\n", + "2021-02-04 00:00:00: Portfolio Value - 644173511.46\n", + "2021-02-05 00:00:00: Portfolio Value - 650529259.96\n", + "2021-02-08 00:00:00: Portfolio Value - 655723096.16\n", + "2021-02-09 00:00:00: Portfolio Value - 655643426.55\n", + "2021-02-10 00:00:00: Portfolio Value - 654175921.76\n", + "2021-02-11 00:00:00: Portfolio Value - 656001509.99\n", + "2021-02-12 00:00:00: Portfolio Value - 658340269.31\n", + "2021-02-16 00:00:00: Portfolio Value - 654826267.67\n", + "2021-02-17 00:00:00: Portfolio Value - 655549283.43\n", + "2021-02-18 00:00:00: Portfolio Value - 652115818.12\n", + "2021-02-19 00:00:00: Portfolio Value - 650465371.68\n", + "2021-02-22 00:00:00: Portfolio Value - 642851720.00\n", + "2021-02-23 00:00:00: Portfolio Value - 646337199.36\n", + "2021-02-24 00:00:00: Portfolio Value - 650359331.05\n", + "2021-02-25 00:00:00: Portfolio Value - 634466710.09\n", + "2021-02-26 00:00:00: Portfolio Value - 631846868.56\n", + "2021-03-01 00:00:00: Portfolio Value - 644985006.58\n", + "2021-03-02 00:00:00: Portfolio Value - 640232215.51\n", + "2021-03-03 00:00:00: Portfolio Value - 625384677.18\n", + "2021-03-04 00:00:00: Portfolio Value - 611799458.98\n", + "2021-03-05 00:00:00: Portfolio Value - 627390406.85\n", + "2021-03-08 00:00:00: Portfolio Value - 622174877.04\n", + "2021-03-09 00:00:00: Portfolio Value - 631066803.51\n", + "2021-03-10 00:00:00: Portfolio Value - 634805445.71\n", + "2021-03-11 00:00:00: Portfolio Value - 644236442.54\n", + "2021-03-12 00:00:00: Portfolio Value - 645550871.00\n", + "2021-03-15 00:00:00: Portfolio Value - 654226681.22\n", + "2021-03-16 00:00:00: Portfolio Value - 648962312.56\n", + "2021-03-17 00:00:00: Portfolio Value - 651664828.54\n", + "2021-03-18 00:00:00: Portfolio Value - 637170631.77\n", + "2021-03-19 00:00:00: Portfolio Value - 641336526.37\n", + "2021-03-22 00:00:00: Portfolio Value - 647571770.28\n", + "2021-03-23 00:00:00: Portfolio Value - 642471883.18\n", + "2021-03-24 00:00:00: Portfolio Value - 635627520.46\n", + "2021-03-25 00:00:00: Portfolio Value - 640379938.67\n", + "2021-03-26 00:00:00: Portfolio Value - 653943384.53\n", + "2021-03-29 00:00:00: Portfolio Value - 653782014.76\n", + "2021-03-30 00:00:00: Portfolio Value - 652923366.98\n", + "2021-03-31 00:00:00: Portfolio Value - 654192849.05\n", + "2021-04-01 00:00:00: Portfolio Value - 660906933.80\n", + "2021-04-05 00:00:00: Portfolio Value - 669420324.82\n", + "2021-04-06 00:00:00: Portfolio Value - 672065084.52\n", + "2021-04-07 00:00:00: Portfolio Value - 670015818.12\n", + "2021-04-08 00:00:00: Portfolio Value - 675577443.35\n", + "2021-04-09 00:00:00: Portfolio Value - 679886192.26\n", + "2021-04-12 00:00:00: Portfolio Value - 681629229.73\n", + "2021-04-13 00:00:00: Portfolio Value - 683277594.15\n", + "2021-04-14 00:00:00: Portfolio Value - 681596955.00\n", + "2021-04-15 00:00:00: Portfolio Value - 690795812.47\n", + "2021-04-16 00:00:00: Portfolio Value - 695839493.67\n", + "2021-04-19 00:00:00: Portfolio Value - 691978935.42\n", + "2021-04-20 00:00:00: Portfolio Value - 688487375.49\n", + "2021-04-21 00:00:00: Portfolio Value - 693753839.12\n", + "2021-04-22 00:00:00: Portfolio Value - 690232896.57\n", + "2021-04-23 00:00:00: Portfolio Value - 696936956.99\n", + "2021-04-26 00:00:00: Portfolio Value - 698351957.19\n", + "2021-04-27 00:00:00: Portfolio Value - 698589229.45\n", + "2021-04-28 00:00:00: Portfolio Value - 695287088.10\n", + "2021-04-29 00:00:00: Portfolio Value - 700255895.97\n", + "2021-04-30 00:00:00: Portfolio Value - 693594599.36\n", + "2021-05-03 00:00:00: Portfolio Value - 697395218.03\n", + "2021-05-04 00:00:00: Portfolio Value - 690757629.79\n", + "2021-05-05 00:00:00: Portfolio Value - 689204120.84\n", + "2021-05-06 00:00:00: Portfolio Value - 692857022.86\n", + "2021-05-07 00:00:00: Portfolio Value - 698487066.87\n", + "2021-05-10 00:00:00: Portfolio Value - 691854651.08\n", + "2021-05-11 00:00:00: Portfolio Value - 682713860.89\n", + "2021-05-12 00:00:00: Portfolio Value - 666384575.23\n", + "2021-05-13 00:00:00: Portfolio Value - 675894167.97\n", + "2021-05-14 00:00:00: Portfolio Value - 688419005.64\n", + "2021-05-17 00:00:00: Portfolio Value - 686608194.42\n", + "2021-05-18 00:00:00: Portfolio Value - 682127803.23\n", + "2021-05-19 00:00:00: Portfolio Value - 678780661.32\n", + "2021-05-20 00:00:00: Portfolio Value - 688702614.79\n", + "2021-05-21 00:00:00: Portfolio Value - 688109413.90\n", + "2021-05-24 00:00:00: Portfolio Value - 693049998.98\n", + "2021-05-25 00:00:00: Portfolio Value - 691143092.24\n", + "2021-05-26 00:00:00: Portfolio Value - 693928813.10\n", + "2021-05-27 00:00:00: Portfolio Value - 698005884.49\n", + "2021-05-28 00:00:00: Portfolio Value - 698862020.79\n", + "2021-06-01 00:00:00: Portfolio Value - 697700123.73\n", + "2021-06-02 00:00:00: Portfolio Value - 697081436.12\n", + "2021-06-03 00:00:00: Portfolio Value - 694713734.25\n", + "2021-06-04 00:00:00: Portfolio Value - 701292059.77\n", + "2021-06-07 00:00:00: Portfolio Value - 701710533.89\n", + "2021-06-08 00:00:00: Portfolio Value - 702336348.23\n", + "2021-06-09 00:00:00: Portfolio Value - 700933407.58\n", + "2021-06-10 00:00:00: Portfolio Value - 708790611.30\n", + "2021-06-11 00:00:00: Portfolio Value - 710229023.52\n", + "2021-06-14 00:00:00: Portfolio Value - 711017303.00\n", + "2021-06-15 00:00:00: Portfolio Value - 709407325.49\n", + "2021-06-16 00:00:00: Portfolio Value - 704725285.86\n", + "2021-06-17 00:00:00: Portfolio Value - 706973683.00\n", + "2021-06-18 00:00:00: Portfolio Value - 697365805.12\n", + "2021-06-21 00:00:00: Portfolio Value - 708383240.23\n", + "2021-06-22 00:00:00: Portfolio Value - 711426463.20\n", + "2021-06-23 00:00:00: Portfolio Value - 711238830.99\n", + "2021-06-24 00:00:00: Portfolio Value - 719676671.13\n", + "2021-06-25 00:00:00: Portfolio Value - 724124523.85\n", + "2021-06-28 00:00:00: Portfolio Value - 724574387.28\n", + "2021-06-29 00:00:00: Portfolio Value - 725155901.69\n", + "2021-06-30 00:00:00: Portfolio Value - 725507084.01\n", + "2021-07-01 00:00:00: Portfolio Value - 730611807.83\n", + "2021-07-02 00:00:00: Portfolio Value - 735685318.95\n", + "2021-07-06 00:00:00: Portfolio Value - 732457328.50\n", + "2021-07-07 00:00:00: Portfolio Value - 736066890.96\n", + "2021-07-08 00:00:00: Portfolio Value - 728509224.62\n", + "2021-07-09 00:00:00: Portfolio Value - 737424611.66\n", + "2021-07-12 00:00:00: Portfolio Value - 738146332.16\n", + "2021-07-13 00:00:00: Portfolio Value - 734662795.53\n", + "2021-07-14 00:00:00: Portfolio Value - 734589147.32\n", + "2021-07-15 00:00:00: Portfolio Value - 733050949.06\n", + "2021-07-16 00:00:00: Portfolio Value - 729226343.62\n", + "2021-07-19 00:00:00: Portfolio Value - 719086403.07\n", + "2021-07-20 00:00:00: Portfolio Value - 730946901.28\n", + "2021-07-21 00:00:00: Portfolio Value - 733769140.71\n", + "2021-07-22 00:00:00: Portfolio Value - 741071494.90\n", + "2021-07-23 00:00:00: Portfolio Value - 748769401.44\n", + "2021-07-26 00:00:00: Portfolio Value - 749309835.28\n", + "2021-07-27 00:00:00: Portfolio Value - 750375976.97\n", + "2021-07-28 00:00:00: Portfolio Value - 750443774.81\n", + "2021-07-29 00:00:00: Portfolio Value - 758242207.77\n", + "2021-07-30 00:00:00: Portfolio Value - 760179690.70\n", + "2021-08-02 00:00:00: Portfolio Value - 762754629.23\n", + "2021-08-03 00:00:00: Portfolio Value - 769115242.01\n", + "2021-08-04 00:00:00: Portfolio Value - 764477914.62\n", + "2021-08-05 00:00:00: Portfolio Value - 770554556.42\n", + "2021-08-06 00:00:00: Portfolio Value - 771582487.61\n", + "2021-08-09 00:00:00: Portfolio Value - 771497380.03\n", + "2021-08-10 00:00:00: Portfolio Value - 771361692.31\n", + "2021-08-11 00:00:00: Portfolio Value - 774496025.61\n", + "2021-08-12 00:00:00: Portfolio Value - 777843790.16\n", + "2021-08-13 00:00:00: Portfolio Value - 780266308.96\n", + "2021-08-16 00:00:00: Portfolio Value - 783886096.37\n", + "2021-08-17 00:00:00: Portfolio Value - 783119678.36\n", + "2021-08-18 00:00:00: Portfolio Value - 772435986.31\n", + "2021-08-19 00:00:00: Portfolio Value - 776553201.63\n", + "2021-08-20 00:00:00: Portfolio Value - 783002746.91\n", + "2021-08-23 00:00:00: Portfolio Value - 786778291.24\n", + "2021-08-24 00:00:00: Portfolio Value - 788070572.33\n", + "2021-08-25 00:00:00: Portfolio Value - 793174622.58\n", + "2021-08-26 00:00:00: Portfolio Value - 786219102.80\n", + "2021-08-27 00:00:00: Portfolio Value - 792124687.33\n", + "2021-08-30 00:00:00: Portfolio Value - 796293949.75\n", + "2021-08-31 00:00:00: Portfolio Value - 796175930.90\n", + "2021-09-01 00:00:00: Portfolio Value - 799747677.50\n", + "2021-09-02 00:00:00: Portfolio Value - 804205006.75\n", + "2021-09-03 00:00:00: Portfolio Value - 802431694.50\n", + "2021-09-07 00:00:00: Portfolio Value - 798178922.67\n", + "2021-09-08 00:00:00: Portfolio Value - 800137360.16\n", + "2021-09-09 00:00:00: Portfolio Value - 797164977.56\n", + "2021-09-10 00:00:00: Portfolio Value - 791619293.20\n", + "2021-09-13 00:00:00: Portfolio Value - 789094668.17\n", + "2021-09-14 00:00:00: Portfolio Value - 784500036.97\n", + "2021-09-15 00:00:00: Portfolio Value - 787880280.62\n", + "2021-09-16 00:00:00: Portfolio Value - 790232574.20\n", + "2021-09-17 00:00:00: Portfolio Value - 784889023.69\n", + "2021-09-20 00:00:00: Portfolio Value - 772275758.10\n", + "2021-09-21 00:00:00: Portfolio Value - 772497323.51\n", + "2021-09-22 00:00:00: Portfolio Value - 781129154.47\n", + "2021-09-23 00:00:00: Portfolio Value - 787703393.95\n", + "2021-09-24 00:00:00: Portfolio Value - 788774303.27\n", + "2021-09-27 00:00:00: Portfolio Value - 780664591.44\n", + "2021-09-28 00:00:00: Portfolio Value - 761881304.88\n", + "2021-09-29 00:00:00: Portfolio Value - 766567292.92\n", + "2021-09-30 00:00:00: Portfolio Value - 756684612.24\n", + "2021-10-01 00:00:00: Portfolio Value - 760365143.97\n", + "2021-10-04 00:00:00: Portfolio Value - 745813622.55\n", + "2021-10-05 00:00:00: Portfolio Value - 756521018.60\n", + "2021-10-06 00:00:00: Portfolio Value - 759377647.56\n", + "2021-10-07 00:00:00: Portfolio Value - 766446496.19\n", + "2021-10-08 00:00:00: Portfolio Value - 761864715.36\n", + "2021-10-11 00:00:00: Portfolio Value - 756484428.79\n", + "2021-10-12 00:00:00: Portfolio Value - 757271189.26\n", + "2021-10-13 00:00:00: Portfolio Value - 758648079.92\n", + "2021-10-14 00:00:00: Portfolio Value - 771051180.52\n", + "2021-10-15 00:00:00: Portfolio Value - 769421017.33\n", + "2021-10-18 00:00:00: Portfolio Value - 771166538.85\n", + "2021-10-19 00:00:00: Portfolio Value - 775091630.37\n", + "2021-10-20 00:00:00: Portfolio Value - 778474359.58\n", + "2021-10-21 00:00:00: Portfolio Value - 786620153.23\n", + "2021-10-22 00:00:00: Portfolio Value - 790693760.46\n", + "2021-10-25 00:00:00: Portfolio Value - 792148621.20\n", + "2021-10-26 00:00:00: Portfolio Value - 793033654.12\n", + "2021-10-27 00:00:00: Portfolio Value - 789151387.86\n", + "2021-10-28 00:00:00: Portfolio Value - 803745100.72\n", + "2021-10-29 00:00:00: Portfolio Value - 811385035.63\n", + "2021-11-01 00:00:00: Portfolio Value - 813920346.49\n", + "2021-11-02 00:00:00: Portfolio Value - 816442609.42\n", + "2021-11-03 00:00:00: Portfolio Value - 818749750.66\n", + "2021-11-04 00:00:00: Portfolio Value - 820033029.41\n", + "2021-11-05 00:00:00: Portfolio Value - 819158264.26\n", + "2021-11-08 00:00:00: Portfolio Value - 819913967.07\n", + "2021-11-09 00:00:00: Portfolio Value - 822413657.83\n", + "2021-11-10 00:00:00: Portfolio Value - 814722375.22\n", + "2021-11-11 00:00:00: Portfolio Value - 817146889.57\n", + "2021-11-12 00:00:00: Portfolio Value - 822775463.12\n", + "2021-11-15 00:00:00: Portfolio Value - 825799108.60\n", + "2021-11-16 00:00:00: Portfolio Value - 831941593.34\n", + "2021-11-17 00:00:00: Portfolio Value - 827176468.21\n", + "2021-11-18 00:00:00: Portfolio Value - 823593435.71\n", + "2021-11-19 00:00:00: Portfolio Value - 822344657.27\n", + "2021-11-22 00:00:00: Portfolio Value - 818124098.96\n", + "2021-11-23 00:00:00: Portfolio Value - 816498142.34\n", + "2021-11-24 00:00:00: Portfolio Value - 818344090.16\n", + "2021-11-26 00:00:00: Portfolio Value - 803097009.66\n", + "2021-11-29 00:00:00: Portfolio Value - 809221637.57\n", + "2021-11-30 00:00:00: Portfolio Value - 783047070.03\n", + "2021-12-01 00:00:00: Portfolio Value - 771578533.51\n", + "2021-12-02 00:00:00: Portfolio Value - 785566904.98\n", + "2021-12-03 00:00:00: Portfolio Value - 776175708.01\n", + "2021-12-06 00:00:00: Portfolio Value - 786231595.29\n", + "2021-12-07 00:00:00: Portfolio Value - 806442299.48\n", + "2021-12-08 00:00:00: Portfolio Value - 808940778.86\n", + "2021-12-09 00:00:00: Portfolio Value - 800206707.43\n", + "2021-12-10 00:00:00: Portfolio Value - 804612072.46\n", + "2021-12-13 00:00:00: Portfolio Value - 797928924.70\n", + "2021-12-14 00:00:00: Portfolio Value - 788375500.18\n", + "2021-12-15 00:00:00: Portfolio Value - 799078436.88\n", + "2021-12-16 00:00:00: Portfolio Value - 792670897.31\n", + "2021-12-17 00:00:00: Portfolio Value - 785098434.12\n", + "2021-12-20 00:00:00: Portfolio Value - 774934274.25\n", + "2021-12-21 00:00:00: Portfolio Value - 790862023.46\n", + "2021-12-22 00:00:00: Portfolio Value - 800685374.69\n", + "2021-12-23 00:00:00: Portfolio Value - 807341633.84\n", + "2021-12-27 00:00:00: Portfolio Value - 818543067.48\n", + "2021-12-28 00:00:00: Portfolio Value - 816837052.16\n", + "2021-12-29 00:00:00: Portfolio Value - 821435277.90\n", + "2021-12-30 00:00:00: Portfolio Value - 819921081.05\n", + "2021-12-31 00:00:00: Portfolio Value - 817852521.83\n", + "2022-01-03 00:00:00: Portfolio Value - 813945269.45\n", + "2022-01-04 00:00:00: Portfolio Value - 811581541.85\n", + "2022-01-05 00:00:00: Portfolio Value - 788257645.58\n", + "2022-01-06 00:00:00: Portfolio Value - 785764859.58\n", + "2022-01-07 00:00:00: Portfolio Value - 777208423.41\n", + "2022-01-10 00:00:00: Portfolio Value - 771157414.38\n", + "2022-01-11 00:00:00: Portfolio Value - 777906598.41\n", + "2022-01-12 00:00:00: Portfolio Value - 777538057.06\n", + "2022-01-13 00:00:00: Portfolio Value - 766234736.99\n", + "2022-01-14 00:00:00: Portfolio Value - 761366762.16\n", + "2022-01-18 00:00:00: Portfolio Value - 742735029.67\n", + "2022-01-19 00:00:00: Portfolio Value - 741409663.60\n", + "2022-01-20 00:00:00: Portfolio Value - 731826076.63\n", + "2022-01-21 00:00:00: Portfolio Value - 711696136.94\n", + "2022-01-24 00:00:00: Portfolio Value - 718772509.50\n", + "2022-01-25 00:00:00: Portfolio Value - 702518199.03\n", + "2022-01-26 00:00:00: Portfolio Value - 694198349.77\n", + "2022-01-27 00:00:00: Portfolio Value - 694938306.09\n", + "2022-01-28 00:00:00: Portfolio Value - 712192909.14\n", + "2022-01-31 00:00:00: Portfolio Value - 732591350.30\n", + "2022-02-01 00:00:00: Portfolio Value - 742249506.57\n", + "2022-02-02 00:00:00: Portfolio Value - 747034462.05\n", + "2022-02-03 00:00:00: Portfolio Value - 735391134.86\n", + "2022-02-04 00:00:00: Portfolio Value - 734087700.14\n", + "2022-02-07 00:00:00: Portfolio Value - 733744727.03\n", + "2022-02-08 00:00:00: Portfolio Value - 740513646.19\n", + "2022-02-09 00:00:00: Portfolio Value - 755977695.83\n", + "2022-02-10 00:00:00: Portfolio Value - 740820841.83\n", + "2022-02-11 00:00:00: Portfolio Value - 728491881.70\n", + "2022-02-14 00:00:00: Portfolio Value - 721765704.58\n", + "2022-02-15 00:00:00: Portfolio Value - 735288355.50\n", + "2022-02-16 00:00:00: Portfolio Value - 733916561.56\n", + "2022-02-17 00:00:00: Portfolio Value - 718389456.55\n", + "2022-02-18 00:00:00: Portfolio Value - 715913893.26\n", + "2022-02-22 00:00:00: Portfolio Value - 706983411.71\n", + "2022-02-23 00:00:00: Portfolio Value - 693214149.97\n", + "2022-02-24 00:00:00: Portfolio Value - 707965787.39\n", + "2022-02-25 00:00:00: Portfolio Value - 727749023.78\n", + "2022-02-28 00:00:00: Portfolio Value - 724581029.77\n", + "2022-03-01 00:00:00: Portfolio Value - 714211380.91\n", + "2022-03-02 00:00:00: Portfolio Value - 728279109.21\n", + "2022-03-03 00:00:00: Portfolio Value - 722273725.47\n", + "2022-03-04 00:00:00: Portfolio Value - 719752647.07\n", + "2022-03-07 00:00:00: Portfolio Value - 697313399.61\n", + "2022-03-08 00:00:00: Portfolio Value - 683563987.06\n", + "2022-03-09 00:00:00: Portfolio Value - 701689570.95\n", + "2022-03-10 00:00:00: Portfolio Value - 697892757.49\n", + "2022-03-11 00:00:00: Portfolio Value - 686833694.73\n", + "2022-03-14 00:00:00: Portfolio Value - 680491415.92\n", + "2022-03-15 00:00:00: Portfolio Value - 697887952.32\n", + "2022-03-16 00:00:00: Portfolio Value - 719039781.36\n", + "2022-03-17 00:00:00: Portfolio Value - 730978820.36\n", + "2022-03-18 00:00:00: Portfolio Value - 741086475.46\n", + "2022-03-21 00:00:00: Portfolio Value - 736010218.24\n", + "2022-03-22 00:00:00: Portfolio Value - 742730287.10\n", + "2022-03-23 00:00:00: Portfolio Value - 726841677.97\n", + "2022-03-24 00:00:00: Portfolio Value - 736810107.43\n", + "2022-03-25 00:00:00: Portfolio Value - 740699454.74\n", + "2022-03-28 00:00:00: Portfolio Value - 749515757.32\n", + "2022-03-29 00:00:00: Portfolio Value - 763560866.85\n", + "2022-03-30 00:00:00: Portfolio Value - 762146642.83\n", + "2022-03-31 00:00:00: Portfolio Value - 753605973.71\n", + "2022-04-01 00:00:00: Portfolio Value - 760756832.83\n", + "2022-04-04 00:00:00: Portfolio Value - 762480413.37\n", + "2022-04-05 00:00:00: Portfolio Value - 757357674.29\n", + "2022-04-06 00:00:00: Portfolio Value - 755682494.17\n", + "2022-04-07 00:00:00: Portfolio Value - 762694969.83\n", + "2022-04-08 00:00:00: Portfolio Value - 761583559.95\n", + "2022-04-11 00:00:00: Portfolio Value - 748548801.49\n", + "2022-04-12 00:00:00: Portfolio Value - 746367300.20\n", + "2022-04-13 00:00:00: Portfolio Value - 757743935.60\n", + "2022-04-14 00:00:00: Portfolio Value - 753004695.86\n", + "2022-04-18 00:00:00: Portfolio Value - 746698078.10\n", + "2022-04-19 00:00:00: Portfolio Value - 765527946.68\n", + "2022-04-20 00:00:00: Portfolio Value - 762285954.16\n", + "2022-04-21 00:00:00: Portfolio Value - 746072311.61\n", + "2022-04-22 00:00:00: Portfolio Value - 717857859.23\n", + "2022-04-25 00:00:00: Portfolio Value - 720832668.47\n", + "2022-04-26 00:00:00: Portfolio Value - 696400605.42\n", + "2022-04-27 00:00:00: Portfolio Value - 696453938.24\n", + "2022-04-28 00:00:00: Portfolio Value - 705717077.69\n", + "2022-04-29 00:00:00: Portfolio Value - 677317116.86\n", + "2022-05-02 00:00:00: Portfolio Value - 680392543.04\n", + "2022-05-03 00:00:00: Portfolio Value - 682742175.03\n", + "2022-05-04 00:00:00: Portfolio Value - 701653110.79\n", + "2022-05-05 00:00:00: Portfolio Value - 674303250.01\n", + "2022-05-06 00:00:00: Portfolio Value - 663792152.27\n", + "2022-05-09 00:00:00: Portfolio Value - 639521395.45\n", + "2022-05-10 00:00:00: Portfolio Value - 640613789.80\n", + "2022-05-11 00:00:00: Portfolio Value - 630299622.59\n", + "2022-05-12 00:00:00: Portfolio Value - 634458500.92\n", + "2022-05-13 00:00:00: Portfolio Value - 654407198.60\n", + "2022-05-16 00:00:00: Portfolio Value - 653054854.67\n", + "2022-05-17 00:00:00: Portfolio Value - 663536518.57\n", + "2022-05-18 00:00:00: Portfolio Value - 627525140.98\n", + "2022-05-19 00:00:00: Portfolio Value - 626466477.71\n", + "2022-05-20 00:00:00: Portfolio Value - 627827205.53\n", + "2022-05-23 00:00:00: Portfolio Value - 639463371.83\n", + "2022-05-24 00:00:00: Portfolio Value - 637414402.25\n", + "2022-05-25 00:00:00: Portfolio Value - 643730921.78\n", + "2022-05-26 00:00:00: Portfolio Value - 661901952.91\n", + "2022-05-27 00:00:00: Portfolio Value - 682514185.79\n", + "2022-05-31 00:00:00: Portfolio Value - 670861936.30\n", + "2022-06-01 00:00:00: Portfolio Value - 659253975.09\n", + "2022-06-02 00:00:00: Portfolio Value - 674531309.93\n", + "2022-06-03 00:00:00: Portfolio Value - 663967308.50\n", + "2022-06-06 00:00:00: Portfolio Value - 665683650.48\n", + "2022-06-07 00:00:00: Portfolio Value - 675248074.68\n", + "2022-06-08 00:00:00: Portfolio Value - 666771426.41\n", + "2022-06-09 00:00:00: Portfolio Value - 649032983.66\n", + "2022-06-10 00:00:00: Portfolio Value - 631743685.35\n", + "2022-06-13 00:00:00: Portfolio Value - 604130928.83\n", + "2022-06-14 00:00:00: Portfolio Value - 598037624.74\n", + "2022-06-15 00:00:00: Portfolio Value - 608117448.64\n", + "2022-06-16 00:00:00: Portfolio Value - 587151087.82\n", + "2022-06-17 00:00:00: Portfolio Value - 590614048.00\n", + "2022-06-21 00:00:00: Portfolio Value - 603911683.36\n", + "2022-06-22 00:00:00: Portfolio Value - 606778076.46\n", + "2022-06-23 00:00:00: Portfolio Value - 621741776.18\n", + "2022-06-24 00:00:00: Portfolio Value - 643445015.12\n", + "2022-06-27 00:00:00: Portfolio Value - 640360341.22\n", + "2022-06-28 00:00:00: Portfolio Value - 626447799.81\n", + "2022-06-29 00:00:00: Portfolio Value - 628673739.68\n", + "2022-06-30 00:00:00: Portfolio Value - 624565141.97\n", + "2022-07-01 00:00:00: Portfolio Value - 635841908.90\n", + "2022-07-05 00:00:00: Portfolio Value - 636350337.83\n", + "2022-07-06 00:00:00: Portfolio Value - 637966227.64\n", + "2022-07-07 00:00:00: Portfolio Value - 646796292.40\n", + "2022-07-08 00:00:00: Portfolio Value - 646144305.45\n", + "2022-07-11 00:00:00: Portfolio Value - 638856694.70\n", + "2022-07-12 00:00:00: Portfolio Value - 630999547.35\n", + "2022-07-13 00:00:00: Portfolio Value - 630191522.69\n", + "2022-07-14 00:00:00: Portfolio Value - 628744833.07\n", + "2022-07-15 00:00:00: Portfolio Value - 642301342.56\n", + "2022-07-18 00:00:00: Portfolio Value - 634068275.30\n", + "2022-07-19 00:00:00: Portfolio Value - 652733013.87\n", + "2022-07-20 00:00:00: Portfolio Value - 657629299.11\n", + "2022-07-21 00:00:00: Portfolio Value - 665564975.56\n", + "2022-07-22 00:00:00: Portfolio Value - 659847827.34\n", + "2022-07-25 00:00:00: Portfolio Value - 659163878.50\n", + "2022-07-26 00:00:00: Portfolio Value - 653238536.25\n", + "2022-07-27 00:00:00: Portfolio Value - 668824936.03\n", + "2022-07-28 00:00:00: Portfolio Value - 682868922.43\n", + "2022-07-29 00:00:00: Portfolio Value - 689042306.56\n", + "2022-08-01 00:00:00: Portfolio Value - 687702709.52\n", + "2022-08-02 00:00:00: Portfolio Value - 683684590.14\n", + "2022-08-03 00:00:00: Portfolio Value - 691647880.00\n", + "2022-08-04 00:00:00: Portfolio Value - 690717290.02\n", + "2022-08-05 00:00:00: Portfolio Value - 692090441.94\n", + "2022-08-08 00:00:00: Portfolio Value - 696297015.41\n", + "2022-08-09 00:00:00: Portfolio Value - 690044087.04\n", + "2022-08-10 00:00:00: Portfolio Value - 707681393.65\n", + "2022-08-11 00:00:00: Portfolio Value - 705017682.00\n", + "2022-08-12 00:00:00: Portfolio Value - 717171816.08\n", + "2022-08-15 00:00:00: Portfolio Value - 723338924.92\n", + "2022-08-16 00:00:00: Portfolio Value - 725847650.39\n", + "2022-08-17 00:00:00: Portfolio Value - 718731226.64\n", + "2022-08-18 00:00:00: Portfolio Value - 721476611.94\n", + "2022-08-19 00:00:00: Portfolio Value - 711199238.22\n", + "2022-08-22 00:00:00: Portfolio Value - 696043665.08\n", + "2022-08-23 00:00:00: Portfolio Value - 689774300.69\n", + "2022-08-24 00:00:00: Portfolio Value - 695796810.22\n", + "2022-08-25 00:00:00: Portfolio Value - 707779101.97\n", + "2022-08-26 00:00:00: Portfolio Value - 682576558.73\n", + "2022-08-29 00:00:00: Portfolio Value - 678546076.48\n", + "2022-08-30 00:00:00: Portfolio Value - 671023804.59\n", + "2022-08-31 00:00:00: Portfolio Value - 665599871.12\n", + "2022-09-01 00:00:00: Portfolio Value - 672306050.38\n", + "2022-09-02 00:00:00: Portfolio Value - 663876262.52\n", + "2022-09-06 00:00:00: Portfolio Value - 663681392.89\n", + "2022-09-07 00:00:00: Portfolio Value - 684915025.64\n", + "2022-09-08 00:00:00: Portfolio Value - 699595812.20\n", + "2022-09-09 00:00:00: Portfolio Value - 709947639.21\n", + "2022-09-12 00:00:00: Portfolio Value - 714426185.39\n", + "2022-09-13 00:00:00: Portfolio Value - 682816267.39\n", + "2022-09-14 00:00:00: Portfolio Value - 682683645.63\n", + "2022-09-15 00:00:00: Portfolio Value - 679339721.60\n", + "2022-09-16 00:00:00: Portfolio Value - 675563462.96\n", + "2022-09-19 00:00:00: Portfolio Value - 678944165.70\n", + "2022-09-20 00:00:00: Portfolio Value - 668148220.92\n", + "2022-09-21 00:00:00: Portfolio Value - 655207374.83\n", + "2022-09-22 00:00:00: Portfolio Value - 645865453.85\n", + "2022-09-23 00:00:00: Portfolio Value - 636641550.23\n", + "2022-09-26 00:00:00: Portfolio Value - 629037623.89\n", + "2022-09-27 00:00:00: Portfolio Value - 626057206.39\n", + "2022-09-28 00:00:00: Portfolio Value - 644108951.70\n", + "2022-09-29 00:00:00: Portfolio Value - 630367454.20\n", + "2022-09-30 00:00:00: Portfolio Value - 620692216.84\n", + "2022-10-03 00:00:00: Portfolio Value - 642545190.87\n", + "2022-10-04 00:00:00: Portfolio Value - 665100815.98\n", + "2022-10-05 00:00:00: Portfolio Value - 662585218.45\n", + "2022-10-06 00:00:00: Portfolio Value - 652983635.68\n", + "2022-10-07 00:00:00: Portfolio Value - 634880516.89\n", + "2022-10-10 00:00:00: Portfolio Value - 631545573.17\n", + "2022-10-11 00:00:00: Portfolio Value - 629579182.97\n", + "2022-10-12 00:00:00: Portfolio Value - 625469307.80\n", + "2022-10-13 00:00:00: Portfolio Value - 644556946.84\n", + "2022-10-14 00:00:00: Portfolio Value - 627859353.81\n", + "2022-10-17 00:00:00: Portfolio Value - 642622684.39\n", + "2022-10-18 00:00:00: Portfolio Value - 650209181.40\n", + "2022-10-19 00:00:00: Portfolio Value - 643788127.58\n", + "2022-10-20 00:00:00: Portfolio Value - 635605266.27\n", + "2022-10-21 00:00:00: Portfolio Value - 653233822.95\n", + "2022-10-24 00:00:00: Portfolio Value - 664226123.21\n", + "2022-10-25 00:00:00: Portfolio Value - 679297034.24\n", + "2022-10-26 00:00:00: Portfolio Value - 680691000.34\n", + "2022-10-27 00:00:00: Portfolio Value - 678346360.69\n", + "2022-10-28 00:00:00: Portfolio Value - 699584573.62\n", + "2022-10-31 00:00:00: Portfolio Value - 698625654.58\n", + "2022-11-01 00:00:00: Portfolio Value - 699488065.28\n", + "2022-11-02 00:00:00: Portfolio Value - 682393094.26\n", + "2022-11-03 00:00:00: Portfolio Value - 681045082.28\n", + "2022-11-04 00:00:00: Portfolio Value - 693116327.00\n", + "2022-11-07 00:00:00: Portfolio Value - 696123178.67\n", + "2022-11-08 00:00:00: Portfolio Value - 697824267.46\n", + "2022-11-09 00:00:00: Portfolio Value - 688006662.41\n", + "2022-11-10 00:00:00: Portfolio Value - 726593122.40\n", + "2022-11-11 00:00:00: Portfolio Value - 727383817.18\n", + "2022-11-14 00:00:00: Portfolio Value - 722200428.42\n", + "2022-11-15 00:00:00: Portfolio Value - 731139175.39\n", + "2022-11-16 00:00:00: Portfolio Value - 728727854.11\n", + "2022-11-17 00:00:00: Portfolio Value - 726441794.89\n", + "2022-11-18 00:00:00: Portfolio Value - 730970966.99\n", + "2022-11-21 00:00:00: Portfolio Value - 733048362.52\n", + "2022-11-22 00:00:00: Portfolio Value - 741494092.71\n", + "2022-11-23 00:00:00: Portfolio Value - 746117376.89\n", + "2022-11-25 00:00:00: Portfolio Value - 748132277.96\n", + "2022-11-28 00:00:00: Portfolio Value - 738591537.43\n", + "2022-11-29 00:00:00: Portfolio Value - 736259058.61\n", + "2022-11-30 00:00:00: Portfolio Value - 759316152.46\n", + "2022-12-01 00:00:00: Portfolio Value - 759630931.90\n", + "2022-12-02 00:00:00: Portfolio Value - 760752313.65\n", + "2022-12-05 00:00:00: Portfolio Value - 746290671.33\n", + "2022-12-06 00:00:00: Portfolio Value - 736117336.07\n", + "2022-12-07 00:00:00: Portfolio Value - 740942802.01\n", + "2022-12-08 00:00:00: Portfolio Value - 746060775.12\n", + "2022-12-09 00:00:00: Portfolio Value - 733421675.78\n", + "2022-12-12 00:00:00: Portfolio Value - 741460500.51\n", + "2022-12-13 00:00:00: Portfolio Value - 746215053.19\n", + "2022-12-14 00:00:00: Portfolio Value - 744923222.38\n", + "2022-12-15 00:00:00: Portfolio Value - 725305954.86\n", + "2022-12-16 00:00:00: Portfolio Value - 717200401.39\n", + "2022-12-19 00:00:00: Portfolio Value - 710149789.33\n", + "2022-12-20 00:00:00: Portfolio Value - 711027015.52\n", + "2022-12-21 00:00:00: Portfolio Value - 724845389.33\n", + "2022-12-22 00:00:00: Portfolio Value - 716985219.40\n", + "2022-12-23 00:00:00: Portfolio Value - 719120871.58\n", + "2022-12-27 00:00:00: Portfolio Value - 718443419.43\n", + "2022-12-28 00:00:00: Portfolio Value - 707133978.44\n", + "2022-12-29 00:00:00: Portfolio Value - 719365324.81\n", + "2022-12-30 00:00:00: Portfolio Value - 716265525.86\n", + "2023-01-03 00:00:00: Portfolio Value - 715167405.36\n", + "2023-01-04 00:00:00: Portfolio Value - 724602176.15\n", + "2023-01-05 00:00:00: Portfolio Value - 718022147.69\n", + "2023-01-06 00:00:00: Portfolio Value - 736690750.12\n", + "2023-01-09 00:00:00: Portfolio Value - 729150625.86\n", + "2023-01-10 00:00:00: Portfolio Value - 738554394.10\n", + "2023-01-11 00:00:00: Portfolio Value - 746845401.88\n", + "2023-01-12 00:00:00: Portfolio Value - 746445610.75\n", + "2023-01-13 00:00:00: Portfolio Value - 750387777.91\n", + "2023-01-17 00:00:00: Portfolio Value - 748768172.60\n", + "2023-01-18 00:00:00: Portfolio Value - 737226089.33\n", + "2023-01-19 00:00:00: Portfolio Value - 727895744.47\n", + "2023-01-20 00:00:00: Portfolio Value - 740825605.83\n", + "2023-01-23 00:00:00: Portfolio Value - 750481017.58\n", + "2023-01-24 00:00:00: Portfolio Value - 749466469.20\n", + "2023-01-25 00:00:00: Portfolio Value - 750050225.31\n", + "2023-01-26 00:00:00: Portfolio Value - 759478266.03\n", + "2023-01-27 00:00:00: Portfolio Value - 757770830.29\n", + "2023-01-30 00:00:00: Portfolio Value - 749813078.84\n", + "2023-01-31 00:00:00: Portfolio Value - 764159236.17\n", + "2023-02-01 00:00:00: Portfolio Value - 776037370.68\n", + "2023-02-02 00:00:00: Portfolio Value - 783278555.89\n", + "2023-02-03 00:00:00: Portfolio Value - 778980599.81\n", + "2023-02-06 00:00:00: Portfolio Value - 774542838.53\n", + "2023-02-07 00:00:00: Portfolio Value - 780571036.17\n", + "2023-02-08 00:00:00: Portfolio Value - 771195059.10\n", + "2023-02-09 00:00:00: Portfolio Value - 763679204.90\n", + "2023-02-10 00:00:00: Portfolio Value - 766909803.30\n", + "2023-02-13 00:00:00: Portfolio Value - 779097617.00\n", + "2023-02-14 00:00:00: Portfolio Value - 774029293.41\n", + "2023-02-15 00:00:00: Portfolio Value - 779054900.33\n", + "2023-02-16 00:00:00: Portfolio Value - 767409813.38\n", + "2023-02-17 00:00:00: Portfolio Value - 767690950.93\n", + "2023-02-21 00:00:00: Portfolio Value - 753646309.75\n", + "2023-02-22 00:00:00: Portfolio Value - 751083838.68\n", + "2023-02-23 00:00:00: Portfolio Value - 749858593.64\n", + "2023-02-24 00:00:00: Portfolio Value - 740817479.07\n", + "2023-02-27 00:00:00: Portfolio Value - 742200620.82\n", + "2023-02-28 00:00:00: Portfolio Value - 739310785.77\n", + "2023-03-01 00:00:00: Portfolio Value - 740715103.77\n", + "2023-03-02 00:00:00: Portfolio Value - 748101032.78\n", + "2023-03-03 00:00:00: Portfolio Value - 760707188.53\n", + "2023-03-06 00:00:00: Portfolio Value - 760382252.19\n", + "2023-03-07 00:00:00: Portfolio Value - 751365955.87\n", + "2023-03-08 00:00:00: Portfolio Value - 749881571.49\n", + "2023-03-09 00:00:00: Portfolio Value - 737390830.56\n", + "2023-03-10 00:00:00: Portfolio Value - 723360978.13\n", + "2023-03-13 00:00:00: Portfolio Value - 722309213.31\n", + "2023-03-14 00:00:00: Portfolio Value - 735282620.33\n", + "2023-03-15 00:00:00: Portfolio Value - 729350364.33\n", + "2023-03-16 00:00:00: Portfolio Value - 737995332.52\n", + "2023-03-17 00:00:00: Portfolio Value - 726200190.31\n", + "2023-03-20 00:00:00: Portfolio Value - 736417763.47\n", + "2023-03-21 00:00:00: Portfolio Value - 744941340.14\n", + "2023-03-22 00:00:00: Portfolio Value - 729805280.22\n", + "2023-03-23 00:00:00: Portfolio Value - 735937213.61\n", + "2023-03-24 00:00:00: Portfolio Value - 743025265.31\n", + "2023-03-27 00:00:00: Portfolio Value - 747761859.84\n", + "2023-03-28 00:00:00: Portfolio Value - 748931912.74\n", + "2023-03-29 00:00:00: Portfolio Value - 759634647.50\n", + "2023-03-30 00:00:00: Portfolio Value - 762933453.28\n", + "2023-03-31 00:00:00: Portfolio Value - 776776528.90\n", + "2023-04-03 00:00:00: Portfolio Value - 778373756.21\n", + "2023-04-04 00:00:00: Portfolio Value - 772978983.38\n", + "2023-04-05 00:00:00: Portfolio Value - 771024103.77\n", + "2023-04-06 00:00:00: Portfolio Value - 772658624.52\n", + "2023-04-10 00:00:00: Portfolio Value - 775917959.76\n", + "2023-04-11 00:00:00: Portfolio Value - 779570589.42\n", + "2023-04-12 00:00:00: Portfolio Value - 776223265.03\n", + "2023-04-13 00:00:00: Portfolio Value - 786559891.54\n", + "2023-04-14 00:00:00: Portfolio Value - 783593347.15\n", + "2023-04-17 00:00:00: Portfolio Value - 787897522.91\n", + "2023-04-18 00:00:00: Portfolio Value - 788775216.57\n", + "2023-04-19 00:00:00: Portfolio Value - 788876383.32\n", + "2023-04-20 00:00:00: Portfolio Value - 788567923.30\n", + "2023-04-21 00:00:00: Portfolio Value - 791123253.42\n", + "2023-04-24 00:00:00: Portfolio Value - 793992062.06\n", + "2023-04-25 00:00:00: Portfolio Value - 779564769.20\n", + "2023-04-26 00:00:00: Portfolio Value - 772299439.21\n", + "2023-04-27 00:00:00: Portfolio Value - 777116135.65\n", + "2023-04-28 00:00:00: Portfolio Value - 784391372.98\n", + "2023-05-01 00:00:00: Portfolio Value - 783464431.05\n", + "2023-05-02 00:00:00: Portfolio Value - 774165306.99\n", + "2023-05-03 00:00:00: Portfolio Value - 773765151.00\n", + "2023-05-04 00:00:00: Portfolio Value - 762825196.96\n", + "2023-05-05 00:00:00: Portfolio Value - 775336398.22\n", + "2023-05-08 00:00:00: Portfolio Value - 774563570.29\n", + "2023-05-09 00:00:00: Portfolio Value - 772120468.95\n", + "2023-05-10 00:00:00: Portfolio Value - 771470536.81\n", + "2023-05-11 00:00:00: Portfolio Value - 771314118.53\n", + "2023-05-12 00:00:00: Portfolio Value - 774524140.85\n", + "2023-05-15 00:00:00: Portfolio Value - 773709588.97\n", + "2023-05-16 00:00:00: Portfolio Value - 762819122.44\n", + "2023-05-17 00:00:00: Portfolio Value - 767146427.03\n", + "2023-05-18 00:00:00: Portfolio Value - 774677759.93\n", + "2023-05-19 00:00:00: Portfolio Value - 771213918.41\n", + "2023-05-22 00:00:00: Portfolio Value - 767083394.58\n", + "2023-05-23 00:00:00: Portfolio Value - 752707736.02\n", + "2023-05-24 00:00:00: Portfolio Value - 747065323.86\n", + "2023-05-25 00:00:00: Portfolio Value - 744737414.74\n", + "2023-05-26 00:00:00: Portfolio Value - 746096952.45\n", + "2023-05-30 00:00:00: Portfolio Value - 743688468.91\n", + "2023-05-31 00:00:00: Portfolio Value - 741365633.21\n", + "2023-06-01 00:00:00: Portfolio Value - 743134223.96\n", + "2023-06-02 00:00:00: Portfolio Value - 760813127.55\n", + "2023-06-05 00:00:00: Portfolio Value - 761012794.11\n", + "2023-06-06 00:00:00: Portfolio Value - 760490199.06\n", + "2023-06-07 00:00:00: Portfolio Value - 759011981.29\n", + "2023-06-08 00:00:00: Portfolio Value - 764835680.93\n", + "2023-06-09 00:00:00: Portfolio Value - 765999625.69\n", + "2023-06-12 00:00:00: Portfolio Value - 772363789.22\n", + "2023-06-13 00:00:00: Portfolio Value - 780217708.60\n", + "2023-06-14 00:00:00: Portfolio Value - 783211476.87\n", + "2023-06-15 00:00:00: Portfolio Value - 796208282.30\n", + "2023-06-16 00:00:00: Portfolio Value - 792042997.43\n", + "2023-06-20 00:00:00: Portfolio Value - 788635868.66\n", + "2023-06-21 00:00:00: Portfolio Value - 787746834.18\n", + "2023-06-22 00:00:00: Portfolio Value - 787212411.14\n", + "2023-06-23 00:00:00: Portfolio Value - 781269225.97\n", + "2023-06-26 00:00:00: Portfolio Value - 782841564.95\n", + "2023-06-27 00:00:00: Portfolio Value - 785772116.96\n", + "2023-06-28 00:00:00: Portfolio Value - 784340766.25\n", + "2023-06-29 00:00:00: Portfolio Value - 788269623.52\n", + "2023-06-30 00:00:00: Portfolio Value - 799960094.50\n", + "2023-07-03 00:00:00: Portfolio Value - 799043173.72\n", + "2023-07-05 00:00:00: Portfolio Value - 796369476.03\n", + "2023-07-06 00:00:00: Portfolio Value - 786130892.66\n", + "2023-07-07 00:00:00: Portfolio Value - 782718366.51\n", + "2023-07-10 00:00:00: Portfolio Value - 791956303.82\n", + "2023-07-11 00:00:00: Portfolio Value - 798832801.44\n", + "2023-07-12 00:00:00: Portfolio Value - 807142011.48\n", + "2023-07-13 00:00:00: Portfolio Value - 808235451.23\n", + "2023-07-14 00:00:00: Portfolio Value - 807581348.24\n", + "2023-07-17 00:00:00: Portfolio Value - 810301250.86\n", + "2023-07-18 00:00:00: Portfolio Value - 815129535.98\n", + "2023-07-19 00:00:00: Portfolio Value - 814485667.96\n", + "2023-07-20 00:00:00: Portfolio Value - 813902624.95\n", + "2023-07-21 00:00:00: Portfolio Value - 815180775.20\n", + "2023-07-24 00:00:00: Portfolio Value - 815233147.44\n", + "2023-07-25 00:00:00: Portfolio Value - 820825712.46\n", + "2023-07-26 00:00:00: Portfolio Value - 821325849.03\n", + "2023-07-27 00:00:00: Portfolio Value - 820205152.27\n", + "2023-07-28 00:00:00: Portfolio Value - 824251975.51\n", + "2023-07-31 00:00:00: Portfolio Value - 823998055.41\n", + "2023-08-01 00:00:00: Portfolio Value - 821806764.75\n", + "2023-08-02 00:00:00: Portfolio Value - 817084897.11\n", + "2023-08-03 00:00:00: Portfolio Value - 818302354.56\n", + "2023-08-04 00:00:00: Portfolio Value - 812502442.63\n", + "2023-08-07 00:00:00: Portfolio Value - 822549269.61\n", + "2023-08-08 00:00:00: Portfolio Value - 819642312.23\n", + "2023-08-09 00:00:00: Portfolio Value - 822311200.14\n", + "2023-08-10 00:00:00: Portfolio Value - 823285761.37\n", + "2023-08-11 00:00:00: Portfolio Value - 825262587.53\n", + "2023-08-14 00:00:00: Portfolio Value - 828885294.43\n", + "2023-08-15 00:00:00: Portfolio Value - 818413107.25\n", + "2023-08-16 00:00:00: Portfolio Value - 809237344.71\n", + "2023-08-17 00:00:00: Portfolio Value - 795197767.26\n", + "2023-08-18 00:00:00: Portfolio Value - 798369368.66\n", + "2023-08-21 00:00:00: Portfolio Value - 798888670.93\n", + "2023-08-22 00:00:00: Portfolio Value - 795674965.25\n", + "2023-08-23 00:00:00: Portfolio Value - 802380260.80\n", + "2023-08-24 00:00:00: Portfolio Value - 790264141.76\n", + "2023-08-25 00:00:00: Portfolio Value - 794909918.89\n", + "2023-08-28 00:00:00: Portfolio Value - 799093464.22\n", + "2023-08-29 00:00:00: Portfolio Value - 809743055.68\n", + "2023-08-30 00:00:00: Portfolio Value - 815223921.77\n", + "2023-08-31 00:00:00: Portfolio Value - 811074503.03\n", + "2023-09-01 00:00:00: Portfolio Value - 815456338.69\n", + "2023-09-05 00:00:00: Portfolio Value - 805717957.43\n", + "2023-09-06 00:00:00: Portfolio Value - 804333638.70\n", + "2023-09-07 00:00:00: Portfolio Value - 803394618.86\n", + "2023-09-08 00:00:00: Portfolio Value - 803571120.85\n", + "2023-09-11 00:00:00: Portfolio Value - 808484085.36\n", + "2023-09-12 00:00:00: Portfolio Value - 803427437.10\n", + "2023-09-13 00:00:00: Portfolio Value - 801428934.78\n", + "2023-09-14 00:00:00: Portfolio Value - 807485902.12\n", + "2023-09-15 00:00:00: Portfolio Value - 795966914.41\n", + "2023-09-18 00:00:00: Portfolio Value - 794940747.18\n", + "2023-09-19 00:00:00: Portfolio Value - 795766041.63\n", + "2023-09-20 00:00:00: Portfolio Value - 791770201.95\n", + "2023-09-21 00:00:00: Portfolio Value - 773602653.74\n", + "2023-09-22 00:00:00: Portfolio Value - 771322136.72\n", + "2023-09-25 00:00:00: Portfolio Value - 773731851.67\n", + "2023-09-26 00:00:00: Portfolio Value - 764316815.08\n", + "2023-09-27 00:00:00: Portfolio Value - 765182876.94\n", + "2023-09-28 00:00:00: Portfolio Value - 769567904.09\n", + "2023-09-29 00:00:00: Portfolio Value - 764450965.06\n", + "2023-10-02 00:00:00: Portfolio Value - 758299313.75\n", + "2023-10-03 00:00:00: Portfolio Value - 744099468.15\n", + "2023-10-04 00:00:00: Portfolio Value - 750526129.47\n", + "2023-10-05 00:00:00: Portfolio Value - 745874381.86\n", + "2023-10-06 00:00:00: Portfolio Value - 752170118.94\n", + "2023-10-09 00:00:00: Portfolio Value - 757003410.54\n", + "2023-10-10 00:00:00: Portfolio Value - 764162706.18\n", + "2023-10-11 00:00:00: Portfolio Value - 762608135.44\n", + "2023-10-12 00:00:00: Portfolio Value - 750630955.63\n", + "2023-10-13 00:00:00: Portfolio Value - 751779276.17\n", + "2023-10-16 00:00:00: Portfolio Value - 764821410.29\n", + "2023-10-17 00:00:00: Portfolio Value - 766417891.73\n", + "2023-10-18 00:00:00: Portfolio Value - 755973398.47\n", + "2023-10-19 00:00:00: Portfolio Value - 750145360.36\n", + "2023-10-20 00:00:00: Portfolio Value - 742621618.57\n", + "2023-10-23 00:00:00: Portfolio Value - 739978882.24\n", + "2023-10-24 00:00:00: Portfolio Value - 746187150.33\n", + "2023-10-25 00:00:00: Portfolio Value - 738023692.33\n", + "2023-10-26 00:00:00: Portfolio Value - 727413403.16\n", + "2023-10-27 00:00:00: Portfolio Value - 716725691.49\n", + "2023-10-30 00:00:00: Portfolio Value - 724088392.86\n", + "2023-10-31 00:00:00: Portfolio Value - 727139326.37\n", + "2023-11-01 00:00:00: Portfolio Value - 733254790.87\n", + "2023-11-02 00:00:00: Portfolio Value - 752836334.25\n", + "2023-11-03 00:00:00: Portfolio Value - 765599164.99\n", + "2023-11-06 00:00:00: Portfolio Value - 768636937.39\n", + "2023-11-07 00:00:00: Portfolio Value - 770469508.61\n", + "2023-11-08 00:00:00: Portfolio Value - 770516489.13\n", + "2023-11-09 00:00:00: Portfolio Value - 759244418.38\n", + "2023-11-10 00:00:00: Portfolio Value - 769889724.75\n", + "2023-11-13 00:00:00: Portfolio Value - 772398248.25\n", + "2023-11-14 00:00:00: Portfolio Value - 790723170.82\n", + "2023-11-15 00:00:00: Portfolio Value - 792236951.78\n", + "2023-11-16 00:00:00: Portfolio Value - 791546375.74\n", + "2023-11-17 00:00:00: Portfolio Value - 792976828.48\n", + "2023-11-20 00:00:00: Portfolio Value - 798029502.86\n", + "2023-11-21 00:00:00: Portfolio Value - 797462277.64\n", + "2023-11-22 00:00:00: Portfolio Value - 802076996.94\n", + "2023-11-24 00:00:00: Portfolio Value - 805869627.58\n", + "2023-11-27 00:00:00: Portfolio Value - 805281222.58\n", + "2023-11-28 00:00:00: Portfolio Value - 802842595.17\n", + "2023-11-29 00:00:00: Portfolio Value - 805668293.26\n", + "2023-11-30 00:00:00: Portfolio Value - 813092364.85\n", + "2023-12-01 00:00:00: Portfolio Value - 825936932.21\n", + "2023-12-04 00:00:00: Portfolio Value - 825921835.79\n", + "2023-12-05 00:00:00: Portfolio Value - 819830038.82\n", + "2023-12-06 00:00:00: Portfolio Value - 821725176.84\n", + "2023-12-07 00:00:00: Portfolio Value - 826370672.41\n", + "2023-12-08 00:00:00: Portfolio Value - 828912383.69\n", + "2023-12-11 00:00:00: Portfolio Value - 837189240.51\n", + "2023-12-12 00:00:00: Portfolio Value - 845382941.46\n", + "2023-12-13 00:00:00: Portfolio Value - 865577800.26\n", + "2023-12-14 00:00:00: Portfolio Value - 866432376.12\n", + "2023-12-15 00:00:00: Portfolio Value - 861455090.69\n", + "2023-12-18 00:00:00: Portfolio Value - 866530651.84\n", + "2023-12-19 00:00:00: Portfolio Value - 873543919.18\n", + "2023-12-20 00:00:00: Portfolio Value - 856943388.16\n", + "2023-12-21 00:00:00: Portfolio Value - 868508453.26\n", + "2023-12-22 00:00:00: Portfolio Value - 871016583.02\n", + "2023-12-26 00:00:00: Portfolio Value - 875172329.95\n", + "2023-12-27 00:00:00: Portfolio Value - 879897575.23\n", + "2023-12-28 00:00:00: Portfolio Value - 881655478.45\n", + "2023-12-29 00:00:00: Portfolio Value - 880049586.40\n", + "2024-01-02 00:00:00: Portfolio Value - 879509378.24\n", + "2024-01-03 00:00:00: Portfolio Value - 869821032.53\n", + "2024-01-04 00:00:00: Portfolio Value - 871391371.87\n", + "2024-01-05 00:00:00: Portfolio Value - 869990827.09\n", + "2024-01-08 00:00:00: Portfolio Value - 880907081.54\n", + "2024-01-09 00:00:00: Portfolio Value - 878129647.33\n", + "2024-01-10 00:00:00: Portfolio Value - 880041625.47\n", + "2024-01-11 00:00:00: Portfolio Value - 882064207.39\n", + "2024-01-12 00:00:00: Portfolio Value - 884482251.89\n", + "2024-01-16 00:00:00: Portfolio Value - 879517144.24\n", + "2024-01-17 00:00:00: Portfolio Value - 874396191.13\n", + "2024-01-18 00:00:00: Portfolio Value - 881095041.42\n", + "2024-01-19 00:00:00: Portfolio Value - 888570866.29\n", + "2024-01-22 00:00:00: Portfolio Value - 894500723.02\n", + "2024-01-23 00:00:00: Portfolio Value - 894172984.68\n", + "2024-01-24 00:00:00: Portfolio Value - 893184397.92\n", + "2024-01-25 00:00:00: Portfolio Value - 906719004.67\n", + "2024-01-26 00:00:00: Portfolio Value - 906534494.41\n", + "2024-01-29 00:00:00: Portfolio Value - 916882526.08\n", + "2024-01-30 00:00:00: Portfolio Value - 920518652.17\n", + "2024-01-31 00:00:00: Portfolio Value - 911373371.24\n", + "2024-02-01 00:00:00: Portfolio Value - 926308210.01\n", + "2024-02-02 00:00:00: Portfolio Value - 925541389.51\n", + "2024-02-05 00:00:00: Portfolio Value - 919847502.01\n", + "2024-02-06 00:00:00: Portfolio Value - 924859965.81\n", + "2024-02-07 00:00:00: Portfolio Value - 931286053.46\n", + "2024-02-08 00:00:00: Portfolio Value - 936711912.71\n", + "2024-02-09 00:00:00: Portfolio Value - 938714888.53\n", + "2024-02-12 00:00:00: Portfolio Value - 941699445.71\n", + "2024-02-13 00:00:00: Portfolio Value - 928399822.53\n", + "2024-02-14 00:00:00: Portfolio Value - 939589581.87\n", + "2024-02-15 00:00:00: Portfolio Value - 949468584.42\n", + "2024-02-16 00:00:00: Portfolio Value - 944203135.94\n", + "2024-02-20 00:00:00: Portfolio Value - 939818311.36\n", + "2024-02-21 00:00:00: Portfolio Value - 938664459.10\n", + "2024-02-22 00:00:00: Portfolio Value - 956042358.16\n", + "2024-02-23 00:00:00: Portfolio Value - 958321533.42\n", + "2024-02-26 00:00:00: Portfolio Value - 959823167.31\n", + "2024-02-27 00:00:00: Portfolio Value - 963415071.97\n", + "2024-02-28 00:00:00: Portfolio Value - 966736761.76\n", + "2024-02-29 00:00:00: Portfolio Value - 965254546.61\n", + "2024-03-01 00:00:00: Portfolio Value - 974229249.17\n", + "2024-03-04 00:00:00: Portfolio Value - 978556102.83\n", + "2024-03-05 00:00:00: Portfolio Value - 968483982.04\n", + "2024-03-06 00:00:00: Portfolio Value - 974934942.23\n", + "2024-03-07 00:00:00: Portfolio Value - 983673135.57\n", + "2024-03-08 00:00:00: Portfolio Value - 975973090.75\n", + "2024-03-11 00:00:00: Portfolio Value - 971595862.65\n", + "2024-03-12 00:00:00: Portfolio Value - 982994429.49\n", + "2024-03-13 00:00:00: Portfolio Value - 981310529.95\n", + "2024-03-14 00:00:00: Portfolio Value - 974203752.22\n", + "2024-03-15 00:00:00: Portfolio Value - 967942009.58\n", + "2024-03-18 00:00:00: Portfolio Value - 971873914.45\n", + "2024-03-19 00:00:00: Portfolio Value - 979568739.82\n", + "2024-03-20 00:00:00: Portfolio Value - 986047405.97\n", + "2024-03-21 00:00:00: Portfolio Value - 992773219.10\n", + "2024-03-22 00:00:00: Portfolio Value - 982943610.42\n", + "2024-03-25 00:00:00: Portfolio Value - 978996185.45\n", + "2024-03-26 00:00:00: Portfolio Value - 982670125.98\n", + "2024-03-27 00:00:00: Portfolio Value - 995046333.86\n", + "2024-03-28 00:00:00: Portfolio Value - 997173031.81\n", + "2024-04-01 00:00:00: Portfolio Value - 990754796.58\n", + "2024-04-02 00:00:00: Portfolio Value - 978661373.69\n", + "2024-04-03 00:00:00: Portfolio Value - 975038618.02\n", + "2024-04-04 00:00:00: Portfolio Value - 961652832.42\n", + "2024-04-05 00:00:00: Portfolio Value - 972383733.98\n", + "2024-04-08 00:00:00: Portfolio Value - 973429341.46\n", + "2024-04-09 00:00:00: Portfolio Value - 974521697.10\n", + "2024-04-10 00:00:00: Portfolio Value - 962956625.56\n", + "2024-04-11 00:00:00: Portfolio Value - 961721530.16\n", + "2024-04-12 00:00:00: Portfolio Value - 944868844.19\n", + "2024-04-15 00:00:00: Portfolio Value - 933515213.35\n", + "2024-04-16 00:00:00: Portfolio Value - 930275986.09\n", + "2024-04-17 00:00:00: Portfolio Value - 928868164.96\n", + "2024-04-18 00:00:00: Portfolio Value - 926697117.48\n", + "2024-04-19 00:00:00: Portfolio Value - 919774524.42\n", + "2024-04-22 00:00:00: Portfolio Value - 928053031.67\n", + "2024-04-23 00:00:00: Portfolio Value - 938606281.37\n", + "2024-04-24 00:00:00: Portfolio Value - 938223963.48\n", + "2024-04-25 00:00:00: Portfolio Value - 934630015.64\n", + "2024-04-26 00:00:00: Portfolio Value - 936924435.75\n", + "2024-04-29 00:00:00: Portfolio Value - 944457613.07\n", + "2024-04-30 00:00:00: Portfolio Value - 934135602.26\n", + "2024-05-01 00:00:00: Portfolio Value - 931625399.45\n", + "2024-05-02 00:00:00: Portfolio Value - 937907776.89\n", + "2024-05-03 00:00:00: Portfolio Value - 944741320.74\n", + "2024-05-06 00:00:00: Portfolio Value - 958749235.48\n", + "2024-05-07 00:00:00: Portfolio Value - 959912313.34\n", + "2024-05-08 00:00:00: Portfolio Value - 954163524.47\n", + "2024-05-09 00:00:00: Portfolio Value - 964729618.05\n", + "2024-05-10 00:00:00: Portfolio Value - 964457331.47\n", + "2024-05-13 00:00:00: Portfolio Value - 960928739.98\n", + "2024-05-14 00:00:00: Portfolio Value - 963697745.06\n", + "2024-05-15 00:00:00: Portfolio Value - 975021032.52\n", + "2024-05-16 00:00:00: Portfolio Value - 970781612.60\n", + "2024-05-17 00:00:00: Portfolio Value - 973155029.34\n", + "2024-05-20 00:00:00: Portfolio Value - 974866850.64\n", + "2024-05-21 00:00:00: Portfolio Value - 977261796.74\n", + "2024-05-22 00:00:00: Portfolio Value - 971431579.99\n", + "2024-05-23 00:00:00: Portfolio Value - 956971229.73\n", + "2024-05-24 00:00:00: Portfolio Value - 968588959.38\n", + "2024-05-28 00:00:00: Portfolio Value - 962143957.43\n", + "2024-05-29 00:00:00: Portfolio Value - 952774669.17\n", + "2024-05-30 00:00:00: Portfolio Value - 955546646.47\n", + "2024-05-31 00:00:00: Portfolio Value - 965435526.70\n", + "2024-06-03 00:00:00: Portfolio Value - 961815039.07\n", + "2024-06-04 00:00:00: Portfolio Value - 961989555.64\n", + "2024-06-05 00:00:00: Portfolio Value - 970511532.98\n", + "2024-06-06 00:00:00: Portfolio Value - 969858353.30\n", + "2024-06-07 00:00:00: Portfolio Value - 968018810.08\n", + "2024-06-10 00:00:00: Portfolio Value - 971805987.99\n", + "2024-06-11 00:00:00: Portfolio Value - 969739655.12\n", + "2024-06-12 00:00:00: Portfolio Value - 975247657.18\n", + "2024-06-13 00:00:00: Portfolio Value - 975597567.99\n", + "2024-06-14 00:00:00: Portfolio Value - 971864592.66\n", + "2024-06-17 00:00:00: Portfolio Value - 979225269.12\n", + "2024-06-18 00:00:00: Portfolio Value - 981846504.54\n", + "2024-06-20 00:00:00: Portfolio Value - 979151873.08\n", + "2024-06-21 00:00:00: Portfolio Value - 980002198.96\n", + "2024-06-24 00:00:00: Portfolio Value - 982798421.14\n", + "2024-06-25 00:00:00: Portfolio Value - 980061090.29\n", + "2024-06-26 00:00:00: Portfolio Value - 976129316.65\n", + "2024-06-27 00:00:00: Portfolio Value - 976076682.88\n", + "2024-06-28 00:00:00: Portfolio Value - 972164526.23\n", + "2024-07-01 00:00:00: Portfolio Value - 967037466.96\n", + "2024-07-02 00:00:00: Portfolio Value - 969325443.72\n", + "2024-07-03 00:00:00: Portfolio Value - 968835818.59\n", + "2024-07-05 00:00:00: Portfolio Value - 971743784.49\n", + "2024-07-08 00:00:00: Portfolio Value - 975119270.30\n", + "2024-07-09 00:00:00: Portfolio Value - 971205345.32\n", + "2024-07-10 00:00:00: Portfolio Value - 978423635.47\n", + "2024-07-11 00:00:00: Portfolio Value - 982588290.92\n", + "2024-07-12 00:00:00: Portfolio Value - 993265063.86\n", + "2024-07-15 00:00:00: Portfolio Value - 991878925.83\n", + "2024-07-16 00:00:00: Portfolio Value - 1009110298.23\n", + "2024-07-17 00:00:00: Portfolio Value - 1000503549.06\n", + "2024-07-18 00:00:00: Portfolio Value - 981970716.10\n", + "2024-07-19 00:00:00: Portfolio Value - 977446901.05\n", + "2024-07-22 00:00:00: Portfolio Value - 988280422.81\n", + "2024-07-23 00:00:00: Portfolio Value - 990628915.13\n", + "2024-07-24 00:00:00: Portfolio Value - 977847133.70\n", + "2024-07-25 00:00:00: Portfolio Value - 969494232.51\n", + "2024-07-26 00:00:00: Portfolio Value - 978466654.79\n", + "2024-07-29 00:00:00: Portfolio Value - 981385084.00\n", + "2024-07-30 00:00:00: Portfolio Value - 983692570.45\n", + "2024-07-31 00:00:00: Portfolio Value - 987670120.10\n", + "2024-08-01 00:00:00: Portfolio Value - 982288081.66\n", + "2024-08-02 00:00:00: Portfolio Value - 966921917.87\n", + "2024-08-05 00:00:00: Portfolio Value - 941162552.56\n", + "2024-08-06 00:00:00: Portfolio Value - 952129051.92\n", + "2024-08-07 00:00:00: Portfolio Value - 945202017.92\n", + "2024-08-08 00:00:00: Portfolio Value - 973504832.91\n", + "2024-08-09 00:00:00: Portfolio Value - 981124365.09\n", + "2024-08-12 00:00:00: Portfolio Value - 978780102.17\n", + "2024-08-13 00:00:00: Portfolio Value - 995099008.40\n", + "2024-08-14 00:00:00: Portfolio Value - 1000487521.69\n", + "2024-08-15 00:00:00: Portfolio Value - 1017465600.31\n", + "2024-08-16 00:00:00: Portfolio Value - 1020547098.61\n", + "2024-08-19 00:00:00: Portfolio Value - 1028336468.25\n", + "2024-08-20 00:00:00: Portfolio Value - 1025756858.93\n", + "2024-08-21 00:00:00: Portfolio Value - 1032454653.41\n", + "2024-08-22 00:00:00: Portfolio Value - 1028933530.28\n", + "2024-08-23 00:00:00: Portfolio Value - 1040584661.96\n", + "2024-08-26 00:00:00: Portfolio Value - 1039635010.07\n", + "2024-08-27 00:00:00: Portfolio Value - 1044928474.02\n", + "2024-08-28 00:00:00: Portfolio Value - 1035846380.70\n", + "2024-08-29 00:00:00: Portfolio Value - 1034088432.19\n", + "2024-08-30 00:00:00: Portfolio Value - 1042284061.65\n", + "2024-09-03 00:00:00: Portfolio Value - 1026131130.46\n", + "2024-09-04 00:00:00: Portfolio Value - 1028711989.10\n", + "2024-09-05 00:00:00: Portfolio Value - 1021288071.88\n", + "2024-09-06 00:00:00: Portfolio Value - 1010126818.37\n", + "2024-09-09 00:00:00: Portfolio Value - 1024012262.21\n", + "2024-09-10 00:00:00: Portfolio Value - 1023463191.55\n", + "2024-09-11 00:00:00: Portfolio Value - 1027766099.32\n", + "2024-09-12 00:00:00: Portfolio Value - 1038612814.11\n", + "2024-09-13 00:00:00: Portfolio Value - 1046896663.81\n", + "2024-09-16 00:00:00: Portfolio Value - 1054766771.23\n", + "2024-09-17 00:00:00: Portfolio Value - 1054720472.52\n", + "2024-09-18 00:00:00: Portfolio Value - 1050245808.14\n", + "2024-09-19 00:00:00: Portfolio Value - 1060383228.29\n", + "2024-09-20 00:00:00: Portfolio Value - 1056697486.17\n", + "2024-09-23 00:00:00: Portfolio Value - 1059966461.21\n", + "2024-09-24 00:00:00: Portfolio Value - 1057232992.62\n", + "2024-09-25 00:00:00: Portfolio Value - 1051757561.07\n", + "2024-09-26 00:00:00: Portfolio Value - 1058190896.90\n", + "2024-09-27 00:00:00: Portfolio Value - 1059437916.84\n", + "2024-09-30 00:00:00: Portfolio Value - 1060009023.22\n", + "2024-10-01 00:00:00: Portfolio Value - 1053494567.75\n", + "2024-10-02 00:00:00: Portfolio Value - 1051476653.77\n", + "2024-10-03 00:00:00: Portfolio Value - 1045306814.14\n", + "2024-10-04 00:00:00: Portfolio Value - 1052811007.52\n", + "2024-10-07 00:00:00: Portfolio Value - 1041548533.18\n", + "2024-10-08 00:00:00: Portfolio Value - 1051446271.10\n", + "2024-10-09 00:00:00: Portfolio Value - 1061009599.43\n", + "2024-10-10 00:00:00: Portfolio Value - 1052367198.81\n", + "2024-10-11 00:00:00: Portfolio Value - 1065112619.52\n", + "2024-10-14 00:00:00: Portfolio Value - 1070967984.28\n", + "2024-10-15 00:00:00: Portfolio Value - 1068277394.51\n", + "2024-10-16 00:00:00: Portfolio Value - 1071618263.44\n", + "2024-10-17 00:00:00: Portfolio Value - 1065465159.68\n", + "2024-10-18 00:00:00: Portfolio Value - 1074113899.60\n", + "2024-10-21 00:00:00: Portfolio Value - 1065742340.62\n", + "2024-10-22 00:00:00: Portfolio Value - 1063954471.41\n", + "2024-10-23 00:00:00: Portfolio Value - 1054435767.73\n", + "2024-10-24 00:00:00: Portfolio Value - 1051204932.57\n", + "2024-10-25 00:00:00: Portfolio Value - 1049142827.40\n", + "2024-10-28 00:00:00: Portfolio Value - 1054365617.25\n", + "2024-10-29 00:00:00: Portfolio Value - 1049974076.04\n", + "2024-10-30 00:00:00: Portfolio Value - 1039625309.83\n", + "2024-10-31 00:00:00: Portfolio Value - 1023244108.51\n", + "2024-11-01 00:00:00: Portfolio Value - 1025959579.74\n", + "2024-11-04 00:00:00: Portfolio Value - 1025088139.75\n", + "2024-11-05 00:00:00: Portfolio Value - 1035447509.84\n", + "2024-11-06 00:00:00: Portfolio Value - 1055130603.95\n", + "2024-11-07 00:00:00: Portfolio Value - 1059756737.89\n", + "2024-11-08 00:00:00: Portfolio Value - 1082212734.04\n", + "2024-11-11 00:00:00: Portfolio Value - 1085559406.27\n", + "2024-11-12 00:00:00: Portfolio Value - 1078559561.65\n", + "2024-11-13 00:00:00: Portfolio Value - 1076404985.60\n", + "2024-11-14 00:00:00: Portfolio Value - 1067976223.15\n", + "2024-11-15 00:00:00: Portfolio Value - 1053234618.63\n", + "2024-11-18 00:00:00: Portfolio Value - 1058824128.98\n", + "2024-11-19 00:00:00: Portfolio Value - 1057295693.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": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Performance Metrics:\n", + "Daily Return: 0.011304602342248102\n", + "Cumulative Return: 10571.956938341258\n", + "Log Return: 0.002619796868665878\n", + "Volatility: 6.90262720118047\n", + "Sharpe Ratio: 0.4120546724238712\n", + "Max Drawdown: -7.490367704932934\n", + "VaR 5%: -0.041154272985632206\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\peter_\\anaconda3\\envs\\data-quality\\Lib\\site-packages\\pandas\\core\\arraylike.py:399: RuntimeWarning: invalid value encountered in log\n", + " result = getattr(ufunc, method)(*inputs, **kwargs)\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0kAAAH9CAYAAADPvTcKAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvc2/+5QAAAAlwSFlzAAAPYQAAD2EBqD+naQAAYHJJREFUeJzt3Qd4VFX6x/E3PSSQAKGEEjpIb0oV6UVQFFEXyy5lUddVXBXboiJixXVFdFcXe1v528vaEKQKAgKCNEF6D6Glk0Jy/897wgwzKZDATO5M5vt5nnGSOyVnTsbh/nLOeU+QZVmWAAAAAACM4IIrAAAAAIAiJAEAAACAC0ISAAAAALggJAEAAACAC0ISAAAAALggJAEAAACAC0ISAAAAALggJAEAAACAC0ISAAAAALggJAEAvG7lypXSs2dPiY6OlqCgIFm7dm2pH/v222+bx+zatct5rG/fvuYCAIA3EJIAoAJzBAzHJTIyUlq0aCETJkyQQ4cOefRnPfXUU/LFF18UOZ6bmyvXXnutHDt2TJ5//nl57733pGHDhuJLNHC59lOlSpWkffv2MmPGDMnPzz+n55w1a5Z5PADA/4Ta3QAAgPc99thj0rhxY8nKypIlS5bIf/7zH/n2229lw4YNEhUV5bGQdM0118iIESPcjm/fvl12794tr732mtx0000e+Vlz5swRT6tfv748/fTT5usjR46YkHP33XfL4cOH5cknnyzz8+njtX/vuusuj7cVAOBdhCQACABDhw6Viy66yHytQSUuLk6mT58uX375pVx//fXn/LyWZZngpSMvJUlKSjLXVatWFU8JDw8XT4uNjZU//vGPzu9vvfVWadmypfzrX/8yITMkJER8QWZmpseCLQCgeEy3A4AA1L9/f3O9c+dOc33y5El5/PHHpWnTphIRESGNGjWSBx98ULKzs90ep8cvv/xy+f77703o0nD0yiuvmClqGRkZ8s477zinrI0dO9Zc+vTpYx6rU+70uOtaovnz58sll1xi1ippiLryyivlt99+O2v7i1uTpGFs/PjxUrt2bTOtsEOHDqY950qfo0uXLpKWluYMeg7//e9/5cILLzSvv3r16nLdddfJ3r173dr3zTffmBE0R39o35W0xkotXLjQHNdr1+dp27atrF69Wnr37m3Ckf5e9LF633/+85/y6quvOn9v2l5d/+Uq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cu2115qvR44cKaGhofLss89K/fr1vdk+AAAAAPDNkKTlvqOiopx7I+mmsnXq1PFm2wAAAADAt6vb6Tok3Q9JnTx5Ut5++22pUaOG233+9re/ebaFAAAAAOCLIalBgwby2muvOb+Pj4+X9957z+0+OsJESAIAAAAQECFp165d3m0JAAAAAPjbPkkAAAAAUNERkvxE05rR5rpr4+p2NwUAAACo0AhJfqJD/armelCr2nY3BQAAAKjQCEl+wrK7AQAAAECAICT5maAgu1sAAAAAVGznFJK2b98uDz/8sFx//fWSlJRkjn333XeyceNGT7cPp1gWY0kAAACAT4akRYsWSbt27WTFihXy2WefSXp6ujn+66+/ypQpU7zRRgAAAADw3ZD097//XZ544gmZO3euhIeHO4/3799fli9f7un24RTGkQAAAAAfDUnr16+Xq666qsjxWrVqyZEjRzzVLpQgiEVJAAAAgG+FpKpVq8rBgweLHF+zZo3Uq1fPU+1CISxJAgAAAHw0JF133XXywAMPSGJiohnVyM/Pl6VLl8q9994ro0eP9k4r4cQ4EgAAAOBjIempp56Sli1bSkJCgina0Lp1a+ndu7f07NnTVLyDdzCQBAAAAJSP0LI+QIs1vPbaazJ58mTZsGGDCUqdOnWS5s2be6eFcMOSJAAAAMDHQtKSJUukV69e0qBBA3NB+WCfJAAAAMBHp9tpqe/GjRvLgw8+KJs2bfJOq1AiBpIAAAAAHwtJBw4ckHvuucdsKtu2bVvp2LGjPPvss7Jv3z7vtBAG40gAAACAj4akGjVqyIQJE0xFu+3bt8u1114r77zzjjRq1MiMMsG72CcJAAAA8LGQ5Eqn3f3973+XadOmSbt27czoEryEoSQAAADAt0OSjiTddtttUqdOHbnhhhvM1LtvvvnGs61DEQwkAQAAAD5W3W7SpEnywQcfmLVJgwYNkhdeeEGuvPJKiYqK8k4LAQAAAMCXR5IWL14s9913n+zfv1++/vpruf766885ID399NPSpUsXqVKlitSqVUtGjBghW7ZscbtPVlaW3H777RIXFyeVK1eWq6++Wg4dOiSBxjo1346BJAAAAMDHQpJjmp0WcDhfuoZJA9Dy5ctl7ty5kpubK4MHD5aMjAznfe6++2756quv5OOPPzb31xGskSNHnvfPBgAAAIBznm73v//9T4YO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6bHvvvvOat26tfXuu+86j//3v/+1oqOjrb1799rSbn+nfVmrVi2ra9euVs2aNa2LL77Y+vTTT81tv/zyi+nvadOmWdnZ2c7HJCYmWldccYX1pz/9ycaWV8y+1/8PlH6Ou37u79q1y3zub9u2zcYWB0bfOz7v4+Pjne/7u+++2/w7W6lSJWvVqlU2tjywMJJ0Bu+//7489dRTZsGujmBMmzbNHHesvdDRDC0c8Msvv5i1Akr/Aqa367C0Tr9LT0+3+VVUnH53reziOsVC561rP+uohoOuFYPn+t7xl13967q+9zt37mzWZ+hc6X//+98yatQoiYqKMn9t1N8NRRw8/77Xz5QBAwaY9Xf6l0bX9Rg65VePMxXG85/1Do0aNTJTv/T3oX/NdYw06dQvHc3W6XcoPf2M0HUWTz/9tOl7HS3Sdb1NmzaV119/3awB088X7d/PPvvMrWBA7dq1zegGlQU93/e6zlFHKfRz3PUzZuHChebaMbqkjh07ZttrqMh9r/T936dPH/Pe1yUG7733ngwcOFAaNmzo/OyhiIP38QlTDMcbTyuo6UnJM888I1dccYX5kHB8UDimVmhpUp0vrRW+XPcsSUpKMh8mlStXtulVVMx+L+5DQQOqhlU9iVyzZo3069fP/F6Y5uj5vtd/NDWQamlSnVqnJzCbNm0yUzMGDRokN9xwg7kvJcE92/d6Eq70+J/+9CczzU6naDgClK6L6dixo7nAe585esKo/w/o57vjBF2n3OkfDXSKEkpPp27pmiNdXzpu3DgT8nv27GnWwuj6Osd7furUqebfWz2B1CqDDnoSqWvC4Pm+d/0jl+MPknoir+tQK1WqZAo7DB48WB5//HGmOnq47x3nlvq5owVLdF2Yo7Kmfj7pH2scFZQpCV4O7B7K8iW///57kalCjukWGzZsMMP7w4YNK3Lbjz/+aA0dOtSqWrWqde+991o33nijVb16devrr782tzP9yLP97npfnQ5w5ZVXWs8++6w1YcIEKzg42Bo9erSVk5NTjq8gcPre0a9fffWVtXLlSrfHff/999bjjz9uno/3vOf73jHtTqf56ntcp3jptLvrr7/efN688sor5nb63vN975h2NHfuXKtPnz5W27ZtrZkzZ5pp1dr3zz//fDm/gorR72vWrHG+rx19/P7771sdO3Z0m1738ccfW5dcconVsGFD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", + "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)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "data-quality", + "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 +} diff --git a/backtester/order_generator.py b/backtester/order_generator.py index 91f915c..e7dd890 100644 --- a/backtester/order_generator.py +++ b/backtester/order_generator.py @@ -1,5 +1,6 @@ from abc import ABC, abstractmethod import pandas as pd +import numpy as np from typing import List, Dict, Any class OrderGenerator(ABC): @@ -243,7 +244,6 @@ def generate_orders(self, data: Dict[str, pd.DataFrame]) -> List[Dict[str, Any]] spy_data = data.get('SPY') if spy_data is None: raise ValueError("SPY data is required for IVOL calculation.") - spy_returns = spy_data['Adj Close'].pct_change() spy_returns = spy_returns.dropna() @@ -264,9 +264,4 @@ def generate_orders(self, data: Dict[str, pd.DataFrame]) -> List[Dict[str, Any]] all_orders.extend(orders) - return pd.DataFrame(all_orders) - - - - - + return all_orders From 509a7a1ce077c4efe62d08591800dc51493f3468 Mon Sep 17 00:00:00 2001 From: PeterSoojongHa Date: Mon, 24 Mar 2025 23:45:31 -0400 Subject: [PATCH 3/4] modified bai to have less leverage and max drawdown --- backtester/bai.ipynb | 7364 ++++++++++++++++----------------- backtester/order_generator.py | 17 +- 2 files changed, 3690 insertions(+), 3691 deletions(-) diff --git a/backtester/bai.ipynb b/backtester/bai.ipynb index 6ce6e7b..30977ef 100644 --- a/backtester/bai.ipynb +++ b/backtester/bai.ipynb @@ -4753,8 +4753,8 @@ "Buying ECL on 2014-09-30 00:00:00\n", "Buying L on 2014-09-30 00:00:00\n", "Buying WFC on 2014-09-30 00:00:00\n", - "Buying BDX on 2014-09-30 00:00:00\n", "Buying AXP on 2014-09-30 00:00:00\n", + "Buying BDX on 2014-09-30 00:00:00\n", "Buying ITW on 2014-09-30 00:00:00\n", "Buying CB on 2014-09-30 00:00:00\n", "Buying RSG on 2014-09-30 00:00:00\n", @@ -5993,8 +5993,8 @@ "Buying HD on 2015-10-31 00:00:00\n", "Buying HSIC on 2015-10-31 00:00:00\n", "Buying WM on 2015-10-31 00:00:00\n", - "Buying JKHY on 2015-10-31 00:00:00\n", "Buying CMCSA on 2015-10-31 00:00:00\n", + "Buying JKHY on 2015-10-31 00:00:00\n", "Buying K on 2015-10-31 00:00:00\n", "Buying TRV on 2015-10-31 00:00:00\n", "Buying AIG on 2015-10-31 00:00:00\n", @@ -10003,8 +10003,8 @@ "Buying SO on 2019-04-30 00:00:00\n", "Buying WM on 2019-04-30 00:00:00\n", "Buying RTX on 2019-04-30 00:00:00\n", - "Buying NWS on 2019-04-30 00:00:00\n", "Buying EXC on 2019-04-30 00:00:00\n", + "Buying NWS on 2019-04-30 00:00:00\n", "Buying AJG on 2019-04-30 00:00:00\n", "Buying RSG on 2019-04-30 00:00:00\n", "Buying USB on 2019-04-30 00:00:00\n", @@ -14392,8 +14392,8 @@ "Buying KMB on 2023-01-31 00:00:00\n", "Buying PM on 2023-01-31 00:00:00\n", "Buying EA on 2023-01-31 00:00:00\n", - "Buying IEX on 2023-01-31 00:00:00\n", "Buying LKQ on 2023-01-31 00:00:00\n", + "Buying IEX on 2023-01-31 00:00:00\n", "Buying DUK on 2023-01-31 00:00:00\n", "Buying WAB on 2023-01-31 00:00:00\n", "Buying SNA on 2023-01-31 00:00:00\n", @@ -16593,15 +16593,13 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "\n", - "[{'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'JNJ', 'quantity': 74217}, {'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'L', 'quantity': 74217}, {'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'CLX', 'quantity': 74217}, {'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'XOM', 'quantity': 74217}, {'date': Timestamp('2010-04-30 00:00:00'), 'type': 'BUY', 'ticker': 'ED', 'quantity': 74217}]\n", "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", @@ -16684,3670 +16682,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 - 2512265.47\n", - "2010-05-04 00:00:00: Portfolio Value - -1131067.93\n", - "2010-05-05 00:00:00: Portfolio Value - -2336708.68\n", - "2010-05-06 00:00:00: Portfolio Value - -7749086.19\n", - "2010-05-07 00:00:00: Portfolio Value - -10058668.68\n", - "2010-05-10 00:00:00: Portfolio Value - -3978519.26\n", - "2010-05-11 00:00:00: Portfolio Value - -3842390.29\n", - "2010-05-12 00:00:00: Portfolio Value - -933764.18\n", - "2010-05-13 00:00:00: Portfolio Value - -2302176.79\n", - "2010-05-14 00:00:00: Portfolio Value - -5050130.42\n", - "2010-05-17 00:00:00: Portfolio Value - -4911785.68\n", - "2010-05-18 00:00:00: Portfolio Value - -7024657.65\n", - "2010-05-19 00:00:00: Portfolio Value - -7858914.95\n", - "2010-05-20 00:00:00: Portfolio Value - -13180130.73\n", - "2010-05-21 00:00:00: Portfolio Value - -11053752.22\n", - "2010-05-24 00:00:00: Portfolio Value - -12657209.95\n", - "2010-05-25 00:00:00: Portfolio Value - -12483747.88\n", - "2010-05-26 00:00:00: Portfolio Value - -13266189.79\n", - "2010-05-27 00:00:00: Portfolio Value - -8485683.72\n", - "2010-05-28 00:00:00: Portfolio Value - -9722297.70\n", - "2010-06-01 00:00:00: Portfolio Value - -12167795.99\n", - "2010-06-02 00:00:00: Portfolio Value - -8360610.08\n", - "2010-06-03 00:00:00: Portfolio Value - -7390581.20\n", - "2010-06-04 00:00:00: Portfolio Value - -12236397.00\n", - "2010-06-07 00:00:00: Portfolio Value - -14667162.88\n", - "2010-06-08 00:00:00: Portfolio Value - -13608083.41\n", - "2010-06-09 00:00:00: Portfolio Value - -14022125.15\n", - "2010-06-10 00:00:00: Portfolio Value - -10674621.48\n", - "2010-06-11 00:00:00: Portfolio Value - -9686116.15\n", - "2010-06-14 00:00:00: Portfolio Value - -9393729.45\n", - "2010-06-15 00:00:00: Portfolio Value - -5796139.66\n", - "2010-06-16 00:00:00: Portfolio Value - -5600948.26\n", - "2010-06-17 00:00:00: Portfolio Value - -4769879.00\n", - "2010-06-18 00:00:00: Portfolio Value - -4911792.80\n", - "2010-06-21 00:00:00: Portfolio Value - -5619749.93\n", - "2010-06-22 00:00:00: Portfolio Value - -8164745.77\n", - "2010-06-23 00:00:00: Portfolio Value - -8513791.36\n", - "2010-06-24 00:00:00: Portfolio Value - -10492689.32\n", - "2010-06-25 00:00:00: Portfolio Value - -9609713.74\n", - "2010-06-28 00:00:00: Portfolio Value - -9801217.28\n", - "2010-06-29 00:00:00: Portfolio Value - -14512397.57\n", - "2010-06-30 00:00:00: Portfolio Value - -15762388.77\n", - "2010-07-01 00:00:00: Portfolio Value - -16017004.50\n", - "2010-07-02 00:00:00: Portfolio Value - -16305526.70\n", - "2010-07-06 00:00:00: Portfolio Value - -15654967.15\n", - "2010-07-07 00:00:00: Portfolio Value - -11067052.41\n", - "2010-07-08 00:00:00: Portfolio Value - -9750019.66\n", - "2010-07-09 00:00:00: Portfolio Value - -8789719.55\n", - "2010-07-12 00:00:00: Portfolio Value - -9475865.35\n", - "2010-07-13 00:00:00: Portfolio Value - -6891811.21\n", - "2010-07-14 00:00:00: Portfolio Value - -6531108.76\n", - "2010-07-15 00:00:00: Portfolio Value - -6288608.77\n", - "2010-07-16 00:00:00: Portfolio Value - -9798155.91\n", - "2010-07-19 00:00:00: Portfolio Value - -9101082.30\n", - "2010-07-20 00:00:00: Portfolio Value - -7280998.04\n", - "2010-07-21 00:00:00: Portfolio Value - -9379353.96\n", - "2010-07-22 00:00:00: Portfolio Value - -6634102.61\n", - "2010-07-23 00:00:00: Portfolio Value - -4913853.31\n", - "2010-07-26 00:00:00: Portfolio Value - -3164462.68\n", - "2010-07-27 00:00:00: Portfolio Value - -3460499.25\n", - "2010-07-28 00:00:00: Portfolio Value - -4489712.86\n", - "2010-07-29 00:00:00: Portfolio Value - -5728108.96\n", - "2010-07-30 00:00:00: Portfolio Value - -6334560.45\n", - "2010-08-02 00:00:00: Portfolio Value - -4263484.36\n", - "2010-08-03 00:00:00: Portfolio Value - -4498334.91\n", - "2010-08-04 00:00:00: Portfolio Value - -3083207.09\n", - "2010-08-05 00:00:00: Portfolio Value - -3629617.54\n", - "2010-08-06 00:00:00: Portfolio Value - -3719272.36\n", - "2010-08-09 00:00:00: Portfolio Value - -2646984.16\n", - "2010-08-10 00:00:00: Portfolio Value - -3565105.71\n", - "2010-08-11 00:00:00: Portfolio Value - -7354797.18\n", - "2010-08-12 00:00:00: Portfolio Value - -7528820.75\n", - "2010-08-13 00:00:00: Portfolio Value - -7887440.78\n", - "2010-08-16 00:00:00: Portfolio Value - -7678019.77\n", - "2010-08-17 00:00:00: Portfolio Value - -5996486.79\n", - "2010-08-18 00:00:00: Portfolio Value - -5941989.35\n", - "2010-08-19 00:00:00: Portfolio Value - -8310654.73\n", - "2010-08-20 00:00:00: Portfolio Value - -7962288.54\n", - "2010-08-23 00:00:00: Portfolio Value - -8523235.48\n", - "2010-08-24 00:00:00: Portfolio Value - -10549407.82\n", - "2010-08-25 00:00:00: Portfolio Value - -9803741.61\n", - "2010-08-26 00:00:00: Portfolio Value - -11004611.27\n", - "2010-08-27 00:00:00: Portfolio Value - -8751472.31\n", - "2010-08-30 00:00:00: Portfolio Value - -11183452.88\n", - "2010-08-31 00:00:00: Portfolio Value - -11081557.81\n", - "2010-09-01 00:00:00: Portfolio Value - -7433667.78\n", - "2010-09-02 00:00:00: Portfolio Value - -5635920.19\n", - "2010-09-03 00:00:00: Portfolio Value - -3364045.47\n", - "2010-09-07 00:00:00: Portfolio Value - -4816088.03\n", - "2010-09-08 00:00:00: Portfolio Value - -3887062.99\n", - "2010-09-09 00:00:00: Portfolio Value - -3217872.55\n", - "2010-09-10 00:00:00: Portfolio Value - -2720104.07\n", - "2010-09-13 00:00:00: Portfolio Value - -890720.06\n", - "2010-09-14 00:00:00: Portfolio Value - -751730.17\n", - "2010-09-15 00:00:00: Portfolio Value - -282255.33\n", - "2010-09-16 00:00:00: Portfolio Value - 124250.20\n", - "2010-09-17 00:00:00: Portfolio Value - 282853.39\n", - "2010-09-20 00:00:00: Portfolio Value - 2398190.10\n", - "2010-09-21 00:00:00: Portfolio Value - 2083021.23\n", - "2010-09-22 00:00:00: Portfolio Value - 868290.15\n", - "2010-09-23 00:00:00: Portfolio Value - -690420.69\n", - "2010-09-24 00:00:00: Portfolio Value - 2566909.90\n", - "2010-09-27 00:00:00: Portfolio Value - 2275478.64\n", - "2010-09-28 00:00:00: Portfolio Value - 3254848.95\n", - "2010-09-29 00:00:00: Portfolio Value - 3167085.30\n", - "2010-09-30 00:00:00: Portfolio Value - 2688391.75\n", - "2010-10-01 00:00:00: Portfolio Value - 3381265.05\n", - "2010-10-04 00:00:00: Portfolio Value - 2349593.05\n", - "2010-10-05 00:00:00: Portfolio Value - 4789501.15\n", - "2010-10-06 00:00:00: Portfolio Value - 4084669.35\n", - "2010-10-07 00:00:00: Portfolio Value - 4201045.99\n", - "2010-10-08 00:00:00: Portfolio Value - 5346243.87\n", - "2010-10-11 00:00:00: Portfolio Value - 5777544.78\n", - "2010-10-12 00:00:00: Portfolio Value - 6430389.81\n", - "2010-10-13 00:00:00: Portfolio Value - 6967325.66\n", - "2010-10-14 00:00:00: Portfolio Value - 6969109.10\n", - "2010-10-15 00:00:00: Portfolio Value - 7428307.11\n", - "2010-10-18 00:00:00: Portfolio Value - 8701582.42\n", - "2010-10-19 00:00:00: Portfolio Value - 6200454.51\n", - "2010-10-20 00:00:00: Portfolio Value - 7917975.46\n", - "2010-10-21 00:00:00: Portfolio Value - 8682508.85\n", - "2010-10-22 00:00:00: Portfolio Value - 8827567.78\n", - "2010-10-25 00:00:00: Portfolio Value - 9249411.20\n", - "2010-10-26 00:00:00: Portfolio Value - 9878191.14\n", - "2010-10-27 00:00:00: Portfolio Value - 9959122.68\n", - "2010-10-28 00:00:00: Portfolio Value - 10368245.91\n", - "2010-10-29 00:00:00: Portfolio Value - 9411900.88\n", - "2010-11-01 00:00:00: Portfolio Value - 8981583.17\n", - "2010-11-02 00:00:00: Portfolio Value - 10703640.89\n", - "2010-11-03 00:00:00: Portfolio Value - 11277352.22\n", - "2010-11-04 00:00:00: Portfolio Value - 13368007.99\n", - "2010-11-05 00:00:00: Portfolio Value - 14236170.36\n", - "2010-11-08 00:00:00: Portfolio Value - 14353008.27\n", - "2010-11-09 00:00:00: Portfolio Value - 12832438.72\n", - "2010-11-10 00:00:00: Portfolio Value - 13408879.25\n", - "2010-11-11 00:00:00: Portfolio Value - 13269362.87\n", - "2010-11-12 00:00:00: Portfolio Value - 11211586.50\n", - "2010-11-15 00:00:00: Portfolio Value - 11322771.50\n", - "2010-11-16 00:00:00: Portfolio Value - 8409876.79\n", - "2010-11-17 00:00:00: Portfolio Value - 7847135.40\n", - "2010-11-18 00:00:00: Portfolio Value - 9935124.80\n", - "2010-11-19 00:00:00: Portfolio Value - 10768475.77\n", - "2010-11-22 00:00:00: Portfolio Value - 11208393.05\n", - "2010-11-23 00:00:00: Portfolio Value - 9156212.47\n", - "2010-11-24 00:00:00: Portfolio Value - 11522063.44\n", - "2010-11-26 00:00:00: Portfolio Value - 10567052.65\n", - "2010-11-29 00:00:00: Portfolio Value - 10175915.72\n", - "2010-11-30 00:00:00: Portfolio Value - 9537740.63\n", - "2010-12-01 00:00:00: Portfolio Value - 12800322.05\n", - "2010-12-02 00:00:00: Portfolio Value - 14226380.10\n", - "2010-12-03 00:00:00: Portfolio Value - 14714236.83\n", - "2010-12-06 00:00:00: Portfolio Value - 14471108.50\n", - "2010-12-07 00:00:00: Portfolio Value - 14331748.86\n", - "2010-12-08 00:00:00: Portfolio Value - 14909333.03\n", - "2010-12-09 00:00:00: Portfolio Value - 15946950.95\n", - "2010-12-10 00:00:00: Portfolio Value - 17156915.08\n", - "2010-12-13 00:00:00: Portfolio Value - 16664199.30\n", - "2010-12-14 00:00:00: Portfolio Value - 16725672.15\n", - "2010-12-15 00:00:00: Portfolio Value - 15815899.37\n", - "2010-12-16 00:00:00: Portfolio Value - 17549503.20\n", - "2010-12-17 00:00:00: Portfolio Value - 18030804.43\n", - "2010-12-20 00:00:00: Portfolio Value - 18388643.19\n", - "2010-12-21 00:00:00: Portfolio Value - 19520547.07\n", - "2010-12-22 00:00:00: Portfolio Value - 19661183.31\n", - "2010-12-23 00:00:00: Portfolio Value - 19183858.85\n", - "2010-12-27 00:00:00: Portfolio Value - 19384176.29\n", - "2010-12-28 00:00:00: Portfolio Value - 19077436.76\n", - "2010-12-29 00:00:00: Portfolio Value - 19080376.01\n", - "2010-12-30 00:00:00: Portfolio Value - 19047037.81\n", - "2010-12-31 00:00:00: Portfolio Value - 18699044.04\n", - "2011-01-03 00:00:00: Portfolio Value - 20881349.71\n", - "2011-01-04 00:00:00: Portfolio Value - 20266805.12\n", - "2011-01-05 00:00:00: Portfolio Value - 21144300.21\n", - "2011-01-06 00:00:00: Portfolio Value - 21246482.31\n", - "2011-01-07 00:00:00: Portfolio Value - 21514708.43\n", - "2011-01-10 00:00:00: Portfolio Value - 21236356.76\n", - "2011-01-11 00:00:00: Portfolio Value - 21700028.71\n", - "2011-01-12 00:00:00: Portfolio Value - 23209173.10\n", - "2011-01-13 00:00:00: Portfolio Value - 23086271.10\n", - "2011-01-14 00:00:00: Portfolio Value - 24393296.43\n", - "2011-01-18 00:00:00: Portfolio Value - 25080852.22\n", - "2011-01-19 00:00:00: Portfolio Value - 22516980.39\n", - "2011-01-20 00:00:00: Portfolio Value - 22545131.61\n", - "2011-01-21 00:00:00: Portfolio Value - 22408279.63\n", - "2011-01-24 00:00:00: Portfolio Value - 23896700.84\n", - "2011-01-25 00:00:00: Portfolio Value - 23070655.29\n", - "2011-01-26 00:00:00: Portfolio Value - 23835322.80\n", - "2011-01-27 00:00:00: Portfolio Value - 24872529.81\n", - "2011-01-28 00:00:00: Portfolio Value - 21621282.56\n", - "2011-01-31 00:00:00: Portfolio Value - 22668621.55\n", - "2011-02-01 00:00:00: Portfolio Value - 25083312.72\n", - "2011-02-02 00:00:00: Portfolio Value - 25243029.41\n", - "2011-02-03 00:00:00: Portfolio Value - 25978969.15\n", - "2011-02-04 00:00:00: Portfolio Value - 26187015.48\n", - "2011-02-07 00:00:00: Portfolio Value - 27565865.99\n", - "2011-02-08 00:00:00: Portfolio Value - 28493188.70\n", - "2011-02-09 00:00:00: Portfolio Value - 27931684.02\n", - "2011-02-10 00:00:00: Portfolio Value - 27615099.02\n", - "2011-02-11 00:00:00: Portfolio Value - 29860587.38\n", - "2011-02-14 00:00:00: Portfolio Value - 30254286.33\n", - "2011-02-15 00:00:00: Portfolio Value - 29754011.77\n", - "2011-02-16 00:00:00: Portfolio Value - 30896568.02\n", - "2011-02-17 00:00:00: Portfolio Value - 31603542.10\n", - "2011-02-18 00:00:00: Portfolio Value - 31512086.56\n", - "2011-02-22 00:00:00: Portfolio Value - 27632080.96\n", - "2011-02-23 00:00:00: Portfolio Value - 25743641.11\n", - "2011-02-24 00:00:00: Portfolio Value - 25907221.38\n", - "2011-02-25 00:00:00: Portfolio Value - 27106879.65\n", - "2011-02-28 00:00:00: Portfolio Value - 26557977.88\n", - "2011-03-01 00:00:00: Portfolio Value - 24345517.35\n", - "2011-03-02 00:00:00: Portfolio Value - 24586797.29\n", - "2011-03-03 00:00:00: Portfolio Value - 27416136.78\n", - "2011-03-04 00:00:00: Portfolio Value - 26509309.71\n", - "2011-03-07 00:00:00: Portfolio Value - 24988842.75\n", - "2011-03-08 00:00:00: Portfolio Value - 27150303.92\n", - "2011-03-09 00:00:00: Portfolio Value - 27307238.11\n", - "2011-03-10 00:00:00: Portfolio Value - 24339356.24\n", - "2011-03-11 00:00:00: Portfolio Value - 25441553.57\n", - "2011-03-14 00:00:00: Portfolio Value - 24763872.88\n", - "2011-03-15 00:00:00: Portfolio Value - 24136387.42\n", - "2011-03-16 00:00:00: Portfolio Value - 21288459.99\n", - "2011-03-17 00:00:00: Portfolio Value - 22432256.38\n", - "2011-03-18 00:00:00: Portfolio Value - 23029929.79\n", - "2011-03-21 00:00:00: Portfolio Value - 25713035.84\n", - "2011-03-22 00:00:00: Portfolio Value - 25011940.28\n", - "2011-03-23 00:00:00: Portfolio Value - 25294270.50\n", - "2011-03-24 00:00:00: Portfolio Value - 27009709.62\n", - "2011-03-25 00:00:00: Portfolio Value - 27712202.48\n", - "2011-03-28 00:00:00: Portfolio Value - 27719375.08\n", - "2011-03-29 00:00:00: Portfolio Value - 29005410.06\n", - "2011-03-30 00:00:00: Portfolio Value - 30149539.27\n", - "2011-03-31 00:00:00: Portfolio Value - 30198021.41\n", - "2011-04-01 00:00:00: Portfolio Value - 31709150.81\n", - "2011-04-04 00:00:00: Portfolio Value - 31688592.14\n", - "2011-04-05 00:00:00: Portfolio Value - 31658165.66\n", - "2011-04-06 00:00:00: Portfolio Value - 32287734.84\n", - "2011-04-07 00:00:00: Portfolio Value - 31882910.17\n", - "2011-04-08 00:00:00: Portfolio Value - 30612412.09\n", - "2011-04-11 00:00:00: Portfolio Value - 30110729.39\n", - "2011-04-12 00:00:00: Portfolio Value - 29381609.84\n", - "2011-04-13 00:00:00: Portfolio Value - 30181499.76\n", - "2011-04-14 00:00:00: Portfolio Value - 29666924.24\n", - "2011-04-15 00:00:00: Portfolio Value - 30790073.90\n", - "2011-04-18 00:00:00: Portfolio Value - 29850154.49\n", - "2011-04-19 00:00:00: Portfolio Value - 29902546.11\n", - "2011-04-20 00:00:00: Portfolio Value - 32262863.35\n", - "2011-04-21 00:00:00: Portfolio Value - 33059101.12\n", - "2011-04-25 00:00:00: Portfolio Value - 32577059.14\n", - "2011-04-26 00:00:00: Portfolio Value - 33787772.27\n", - "2011-04-27 00:00:00: Portfolio Value - 36406706.72\n", - "2011-04-28 00:00:00: Portfolio Value - 35922711.98\n", - "2011-04-29 00:00:00: Portfolio Value - 34945462.69\n", - "2011-05-02 00:00:00: Portfolio Value - 35086722.89\n", - "2011-05-03 00:00:00: Portfolio Value - 34009825.23\n", - "2011-05-04 00:00:00: Portfolio Value - 32196915.59\n", - "2011-05-05 00:00:00: Portfolio Value - 31653654.70\n", - "2011-05-06 00:00:00: Portfolio Value - 32734227.50\n", - "2011-05-09 00:00:00: Portfolio Value - 33458858.86\n", - "2011-05-10 00:00:00: Portfolio Value - 34951587.36\n", - "2011-05-11 00:00:00: Portfolio Value - 33600321.83\n", - "2011-05-12 00:00:00: Portfolio Value - 35229509.03\n", - "2011-05-13 00:00:00: Portfolio Value - 33552113.77\n", - "2011-05-16 00:00:00: Portfolio Value - 32250405.15\n", - "2011-05-17 00:00:00: Portfolio Value - 32488496.23\n", - "2011-05-18 00:00:00: Portfolio Value - 34207489.47\n", - "2011-05-19 00:00:00: Portfolio Value - 34467381.57\n", - "2011-05-20 00:00:00: Portfolio Value - 33333489.33\n", - "2011-05-23 00:00:00: Portfolio Value - 31016388.36\n", - "2011-05-24 00:00:00: Portfolio Value - 30608251.34\n", - "2011-05-25 00:00:00: Portfolio Value - 30783477.34\n", - "2011-05-26 00:00:00: Portfolio Value - 31233860.75\n", - "2011-05-27 00:00:00: Portfolio Value - 32188762.93\n", - "2011-05-31 00:00:00: Portfolio Value - 34157017.51\n", - "2011-06-01 00:00:00: Portfolio Value - 30293724.02\n", - "2011-06-02 00:00:00: Portfolio Value - 29465454.12\n", - "2011-06-03 00:00:00: Portfolio Value - 27649327.90\n", - "2011-06-06 00:00:00: Portfolio Value - 25582101.65\n", - "2011-06-07 00:00:00: Portfolio Value - 25566081.51\n", - "2011-06-08 00:00:00: Portfolio Value - 24699090.90\n", - "2011-06-09 00:00:00: Portfolio Value - 25884609.51\n", - "2011-06-10 00:00:00: Portfolio Value - 24453484.39\n", - "2011-06-13 00:00:00: Portfolio Value - 24764111.00\n", - "2011-06-14 00:00:00: Portfolio Value - 27006117.08\n", - "2011-06-15 00:00:00: Portfolio Value - 24497732.96\n", - "2011-06-16 00:00:00: Portfolio Value - 24938359.45\n", - "2011-06-17 00:00:00: Portfolio Value - 25776076.37\n", - "2011-06-20 00:00:00: Portfolio Value - 27205600.57\n", - "2011-06-21 00:00:00: Portfolio Value - 29521323.18\n", - "2011-06-22 00:00:00: Portfolio Value - 28039429.82\n", - "2011-06-23 00:00:00: Portfolio Value - 27748487.68\n", - "2011-06-24 00:00:00: Portfolio Value - 25534095.95\n", - "2011-06-27 00:00:00: Portfolio Value - 27161982.06\n", - "2011-06-28 00:00:00: Portfolio Value - 29995557.10\n", - "2011-06-29 00:00:00: Portfolio Value - 31277077.43\n", - "2011-06-30 00:00:00: Portfolio Value - 32806080.01\n", - "2011-07-01 00:00:00: Portfolio Value - 35843364.54\n", - "2011-07-05 00:00:00: Portfolio Value - 35908605.47\n", - "2011-07-06 00:00:00: Portfolio Value - 36434238.10\n", - "2011-07-07 00:00:00: Portfolio Value - 38365918.20\n", - "2011-07-08 00:00:00: Portfolio Value - 37802209.49\n", - "2011-07-11 00:00:00: Portfolio Value - 34097073.28\n", - "2011-07-12 00:00:00: Portfolio Value - 33667898.01\n", - "2011-07-13 00:00:00: Portfolio Value - 34222955.83\n", - "2011-07-14 00:00:00: Portfolio Value - 32963162.94\n", - "2011-07-15 00:00:00: Portfolio Value - 33820459.64\n", - "2011-07-18 00:00:00: Portfolio Value - 31958397.54\n", - "2011-07-19 00:00:00: Portfolio Value - 34989030.05\n", - "2011-07-20 00:00:00: Portfolio Value - 35070214.75\n", - "2011-07-21 00:00:00: Portfolio Value - 36780967.68\n", - "2011-07-22 00:00:00: Portfolio Value - 36912011.48\n", - "2011-07-25 00:00:00: Portfolio Value - 35103070.67\n", - "2011-07-26 00:00:00: Portfolio Value - 34231142.31\n", - "2011-07-27 00:00:00: Portfolio Value - 30697961.03\n", - "2011-07-28 00:00:00: Portfolio Value - 29154589.50\n", - "2011-07-29 00:00:00: Portfolio Value - 28328831.75\n", - "2011-08-01 00:00:00: Portfolio Value - 27605635.50\n", - "2011-08-02 00:00:00: Portfolio Value - 22965628.65\n", - "2011-08-03 00:00:00: Portfolio Value - 24054661.90\n", - "2011-08-04 00:00:00: Portfolio Value - 15797659.42\n", - "2011-08-05 00:00:00: Portfolio Value - 15403014.16\n", - "2011-08-08 00:00:00: Portfolio Value - 4482041.81\n", - "2011-08-09 00:00:00: Portfolio Value - 11786892.62\n", - "2011-08-10 00:00:00: Portfolio Value - 5578483.11\n", - "2011-08-11 00:00:00: Portfolio Value - 12956171.44\n", - "2011-08-12 00:00:00: Portfolio Value - 14740698.03\n", - "2011-08-15 00:00:00: Portfolio Value - 18761577.68\n", - "2011-08-16 00:00:00: Portfolio Value - 16972108.82\n", - "2011-08-17 00:00:00: Portfolio Value - 16233284.97\n", - "2011-08-18 00:00:00: Portfolio Value - 8703201.63\n", - "2011-08-19 00:00:00: Portfolio Value - 5959637.95\n", - "2011-08-22 00:00:00: Portfolio Value - 5501885.47\n", - "2011-08-23 00:00:00: Portfolio Value - 11740232.80\n", - "2011-08-24 00:00:00: Portfolio Value - 13862840.78\n", - "2011-08-25 00:00:00: Portfolio Value - 11286315.35\n", - "2011-08-26 00:00:00: Portfolio Value - 14310258.72\n", - "2011-08-29 00:00:00: Portfolio Value - 19381921.32\n", - "2011-08-30 00:00:00: Portfolio Value - 20224248.32\n", - "2011-08-31 00:00:00: Portfolio Value - 20629765.87\n", - "2011-09-01 00:00:00: Portfolio Value - 18574213.86\n", - "2011-09-02 00:00:00: Portfolio Value - 14465514.81\n", - "2011-09-06 00:00:00: Portfolio Value - 13776731.85\n", - "2011-09-07 00:00:00: Portfolio Value - 18528064.22\n", - "2011-09-08 00:00:00: Portfolio Value - 17038166.54\n", - "2011-09-09 00:00:00: Portfolio Value - 13012876.85\n", - "2011-09-12 00:00:00: Portfolio Value - 14186410.24\n", - "2011-09-13 00:00:00: Portfolio Value - 15946730.85\n", - "2011-09-14 00:00:00: Portfolio Value - 17675932.83\n", - "2011-09-15 00:00:00: Portfolio Value - 19074701.21\n", - "2011-09-16 00:00:00: Portfolio Value - 19363252.25\n", - "2011-09-19 00:00:00: Portfolio Value - 18782161.46\n", - "2011-09-20 00:00:00: Portfolio Value - 17536597.86\n", - "2011-09-21 00:00:00: Portfolio Value - 13439187.30\n", - "2011-09-22 00:00:00: Portfolio Value - 8393532.16\n", - "2011-09-23 00:00:00: Portfolio Value - 10168452.83\n", - "2011-09-26 00:00:00: Portfolio Value - 12748745.85\n", - "2011-09-27 00:00:00: Portfolio Value - 14689373.62\n", - "2011-09-28 00:00:00: Portfolio Value - 10602315.60\n", - "2011-09-29 00:00:00: Portfolio Value - 11368165.39\n", - "2011-09-30 00:00:00: Portfolio Value - 7231428.77\n", - "2011-10-03 00:00:00: Portfolio Value - 1638725.18\n", - "2011-10-04 00:00:00: Portfolio Value - 5389088.25\n", - "2011-10-05 00:00:00: Portfolio Value - 8212809.03\n", - "2011-10-06 00:00:00: Portfolio Value - 12214314.66\n", - "2011-10-07 00:00:00: Portfolio Value - 10069976.37\n", - "2011-10-10 00:00:00: Portfolio Value - 15087349.06\n", - "2011-10-11 00:00:00: Portfolio Value - 14183358.41\n", - "2011-10-12 00:00:00: Portfolio Value - 15158210.11\n", - "2011-10-13 00:00:00: Portfolio Value - 14864406.34\n", - "2011-10-14 00:00:00: Portfolio Value - 16549160.84\n", - "2011-10-17 00:00:00: Portfolio Value - 13733528.85\n", - "2011-10-18 00:00:00: Portfolio Value - 16442876.50\n", - "2011-10-19 00:00:00: Portfolio Value - 14556233.02\n", - "2011-10-20 00:00:00: Portfolio Value - 14975047.50\n", - "2011-10-21 00:00:00: Portfolio Value - 18133782.21\n", - "2011-10-24 00:00:00: Portfolio Value - 20938028.62\n", - "2011-10-25 00:00:00: Portfolio Value - 15537447.95\n", - "2011-10-26 00:00:00: Portfolio Value - 17632438.67\n", - "2011-10-27 00:00:00: Portfolio Value - 23264007.41\n", - "2011-10-28 00:00:00: Portfolio Value - 23663386.02\n", - "2011-10-31 00:00:00: Portfolio Value - 19821062.45\n", - "2011-11-01 00:00:00: Portfolio Value - 15462888.64\n", - "2011-11-02 00:00:00: Portfolio Value - 17814022.07\n", - "2011-11-03 00:00:00: Portfolio Value - 19857525.54\n", - "2011-11-04 00:00:00: Portfolio Value - 19859414.08\n", - "2011-11-07 00:00:00: Portfolio Value - 20195541.19\n", - "2011-11-08 00:00:00: Portfolio Value - 21772238.81\n", - "2011-11-09 00:00:00: Portfolio Value - 15671426.71\n", - "2011-11-10 00:00:00: Portfolio Value - 16323314.26\n", - "2011-11-11 00:00:00: Portfolio Value - 19299567.08\n", - "2011-11-14 00:00:00: Portfolio Value - 17832722.43\n", - "2011-11-15 00:00:00: Portfolio Value - 18632410.73\n", - "2011-11-16 00:00:00: Portfolio Value - 15327778.67\n", - "2011-11-17 00:00:00: Portfolio Value - 13203643.53\n", - "2011-11-18 00:00:00: Portfolio Value - 12979167.80\n", - "2011-11-21 00:00:00: Portfolio Value - 10438037.01\n", - "2011-11-22 00:00:00: Portfolio Value - 9863282.45\n", - "2011-11-23 00:00:00: Portfolio Value - 6659965.81\n", - "2011-11-25 00:00:00: Portfolio Value - 6222666.75\n", - "2011-11-28 00:00:00: Portfolio Value - 11281955.65\n", - "2011-11-29 00:00:00: Portfolio Value - 11369962.04\n", - "2011-11-30 00:00:00: Portfolio Value - 18411545.12\n", - "2011-12-01 00:00:00: Portfolio Value - 18064050.20\n", - "2011-12-02 00:00:00: Portfolio Value - 18164381.64\n", - "2011-12-05 00:00:00: Portfolio Value - 19215998.43\n", - "2011-12-06 00:00:00: Portfolio Value - 18866727.29\n", - "2011-12-07 00:00:00: Portfolio Value - 19306140.61\n", - "2011-12-08 00:00:00: Portfolio Value - 15906005.23\n", - "2011-12-09 00:00:00: Portfolio Value - 18832275.15\n", - "2011-12-12 00:00:00: Portfolio Value - 16918854.36\n", - "2011-12-13 00:00:00: Portfolio Value - 14637770.65\n", - "2011-12-14 00:00:00: Portfolio Value - 12069237.34\n", - "2011-12-15 00:00:00: Portfolio Value - 12896065.86\n", - "2011-12-16 00:00:00: Portfolio Value - 13355905.79\n", - "2011-12-19 00:00:00: Portfolio Value - 11455193.90\n", - "2011-12-20 00:00:00: Portfolio Value - 16382120.41\n", - "2011-12-21 00:00:00: Portfolio Value - 16713798.52\n", - "2011-12-22 00:00:00: Portfolio Value - 17838695.48\n", - "2011-12-23 00:00:00: Portfolio Value - 19407702.59\n", - "2011-12-27 00:00:00: Portfolio Value - 19719190.05\n", - "2011-12-28 00:00:00: Portfolio Value - 17357864.00\n", - "2011-12-29 00:00:00: Portfolio Value - 18947420.25\n", - "2011-12-30 00:00:00: Portfolio Value - 18164238.34\n", - "2012-01-03 00:00:00: Portfolio Value - 19695854.52\n", - "2012-01-04 00:00:00: Portfolio Value - 19606471.83\n", - "2012-01-05 00:00:00: Portfolio Value - 20331424.43\n", - "2012-01-06 00:00:00: Portfolio Value - 20005103.48\n", - "2012-01-09 00:00:00: Portfolio Value - 20295558.50\n", - "2012-01-10 00:00:00: Portfolio Value - 23336320.13\n", - "2012-01-11 00:00:00: Portfolio Value - 24894777.23\n", - "2012-01-12 00:00:00: Portfolio Value - 25186499.19\n", - "2012-01-13 00:00:00: Portfolio Value - 24578266.63\n", - "2012-01-17 00:00:00: Portfolio Value - 24995745.70\n", - "2012-01-18 00:00:00: Portfolio Value - 27378506.16\n", - "2012-01-19 00:00:00: Portfolio Value - 27902523.05\n", - "2012-01-20 00:00:00: Portfolio Value - 27973575.33\n", - "2012-01-23 00:00:00: Portfolio Value - 27930409.64\n", - "2012-01-24 00:00:00: Portfolio Value - 28214692.69\n", - "2012-01-25 00:00:00: Portfolio Value - 30508869.25\n", - "2012-01-26 00:00:00: Portfolio Value - 30375208.34\n", - "2012-01-27 00:00:00: Portfolio Value - 31209761.06\n", - "2012-01-30 00:00:00: Portfolio Value - 30547833.87\n", - "2012-01-31 00:00:00: Portfolio Value - 30692306.10\n", - "2012-02-01 00:00:00: Portfolio Value - 32799126.94\n", - "2012-02-02 00:00:00: Portfolio Value - 33503841.72\n", - "2012-02-03 00:00:00: Portfolio Value - 35767030.55\n", - "2012-02-06 00:00:00: Portfolio Value - 35848774.13\n", - "2012-02-07 00:00:00: Portfolio Value - 35853479.66\n", - "2012-02-08 00:00:00: Portfolio Value - 36393453.71\n", - "2012-02-09 00:00:00: Portfolio Value - 36841761.82\n", - "2012-02-10 00:00:00: Portfolio Value - 34970038.23\n", - "2012-02-13 00:00:00: Portfolio Value - 36348206.49\n", - "2012-02-14 00:00:00: Portfolio Value - 35857176.07\n", - "2012-02-15 00:00:00: Portfolio Value - 34926685.57\n", - "2012-02-16 00:00:00: Portfolio Value - 36438647.15\n", - "2012-02-17 00:00:00: Portfolio Value - 36324450.43\n", - "2012-02-21 00:00:00: Portfolio Value - 35600784.78\n", - "2012-02-22 00:00:00: Portfolio Value - 34773948.47\n", - "2012-02-23 00:00:00: Portfolio Value - 35893805.81\n", - "2012-02-24 00:00:00: Portfolio Value - 35959274.89\n", - "2012-02-27 00:00:00: Portfolio Value - 36247541.44\n", - "2012-02-28 00:00:00: Portfolio Value - 36812081.32\n", - "2012-02-29 00:00:00: Portfolio Value - 35796907.21\n", - "2012-03-01 00:00:00: Portfolio Value - 37587475.51\n", - "2012-03-02 00:00:00: Portfolio Value - 37599137.94\n", - "2012-03-05 00:00:00: Portfolio Value - 37040632.19\n", - "2012-03-06 00:00:00: Portfolio Value - 33724993.57\n", - "2012-03-07 00:00:00: Portfolio Value - 35325288.20\n", - "2012-03-08 00:00:00: Portfolio Value - 37214122.82\n", - "2012-03-09 00:00:00: Portfolio Value - 37963284.38\n", - "2012-03-12 00:00:00: Portfolio Value - 38075038.33\n", - "2012-03-13 00:00:00: Portfolio Value - 41331895.28\n", - "2012-03-14 00:00:00: Portfolio Value - 40302514.73\n", - "2012-03-15 00:00:00: Portfolio Value - 42427702.68\n", - "2012-03-16 00:00:00: Portfolio Value - 41713367.50\n", - "2012-03-19 00:00:00: Portfolio Value - 42239781.07\n", - "2012-03-20 00:00:00: Portfolio Value - 41838519.13\n", - "2012-03-21 00:00:00: Portfolio Value - 42103822.37\n", - "2012-03-22 00:00:00: Portfolio Value - 41627951.22\n", - "2012-03-23 00:00:00: Portfolio Value - 42145747.29\n", - "2012-03-26 00:00:00: Portfolio Value - 44722969.96\n", - "2012-03-27 00:00:00: Portfolio Value - 43922715.24\n", - "2012-03-28 00:00:00: Portfolio Value - 42998716.67\n", - "2012-03-29 00:00:00: Portfolio Value - 42524688.05\n", - "2012-03-30 00:00:00: Portfolio Value - 43266311.26\n", - "2012-04-02 00:00:00: Portfolio Value - 44727135.87\n", - "2012-04-03 00:00:00: Portfolio Value - 44881759.74\n", - "2012-04-04 00:00:00: Portfolio Value - 42556866.99\n", - "2012-04-05 00:00:00: Portfolio Value - 42489327.11\n", - "2012-04-09 00:00:00: Portfolio Value - 40281063.91\n", - "2012-04-10 00:00:00: Portfolio Value - 36277526.46\n", - "2012-04-11 00:00:00: Portfolio Value - 38421367.38\n", - "2012-04-12 00:00:00: Portfolio Value - 40668398.99\n", - "2012-04-13 00:00:00: Portfolio Value - 38777843.78\n", - "2012-04-16 00:00:00: Portfolio Value - 39203850.97\n", - "2012-04-17 00:00:00: Portfolio Value - 41697565.91\n", - "2012-04-18 00:00:00: Portfolio Value - 41718011.53\n", - "2012-04-19 00:00:00: Portfolio Value - 41050947.82\n", - "2012-04-20 00:00:00: Portfolio Value - 41603136.87\n", - "2012-04-23 00:00:00: Portfolio Value - 39535346.81\n", - "2012-04-24 00:00:00: Portfolio Value - 39389298.57\n", - "2012-04-25 00:00:00: Portfolio Value - 42171893.51\n", - "2012-04-26 00:00:00: Portfolio Value - 44308613.82\n", - "2012-04-27 00:00:00: Portfolio Value - 44701565.43\n", - "2012-04-30 00:00:00: Portfolio Value - 43922268.57\n", - "2012-05-01 00:00:00: Portfolio Value - 44476025.91\n", - "2012-05-02 00:00:00: Portfolio Value - 44670260.98\n", - "2012-05-03 00:00:00: Portfolio Value - 42875643.22\n", - "2012-05-04 00:00:00: Portfolio Value - 39487305.23\n", - "2012-05-07 00:00:00: Portfolio Value - 39285418.16\n", - "2012-05-08 00:00:00: Portfolio Value - 38300265.05\n", - "2012-05-09 00:00:00: Portfolio Value - 36916161.58\n", - "2012-05-10 00:00:00: Portfolio Value - 37950820.56\n", - "2012-05-11 00:00:00: Portfolio Value - 38034933.21\n", - "2012-05-14 00:00:00: Portfolio Value - 35765491.48\n", - "2012-05-15 00:00:00: Portfolio Value - 35125837.90\n", - "2012-05-16 00:00:00: Portfolio Value - 34615489.51\n", - "2012-05-17 00:00:00: Portfolio Value - 30703177.21\n", - "2012-05-18 00:00:00: Portfolio Value - 28597595.99\n", - "2012-05-21 00:00:00: Portfolio Value - 31937129.67\n", - "2012-05-22 00:00:00: Portfolio Value - 32153290.40\n", - "2012-05-23 00:00:00: Portfolio Value - 32844204.10\n", - "2012-05-24 00:00:00: Portfolio Value - 33629091.53\n", - "2012-05-25 00:00:00: Portfolio Value - 33509011.65\n", - "2012-05-29 00:00:00: Portfolio Value - 35621523.43\n", - "2012-05-30 00:00:00: Portfolio Value - 32852772.01\n", - "2012-05-31 00:00:00: Portfolio Value - 32429147.61\n", - "2012-06-01 00:00:00: Portfolio Value - 27015398.19\n", - "2012-06-04 00:00:00: Portfolio Value - 26871998.93\n", - "2012-06-05 00:00:00: Portfolio Value - 28597128.38\n", - "2012-06-06 00:00:00: Portfolio Value - 33059169.60\n", - "2012-06-07 00:00:00: Portfolio Value - 31941931.37\n", - "2012-06-08 00:00:00: Portfolio Value - 33340445.27\n", - "2012-06-11 00:00:00: Portfolio Value - 30338994.13\n", - "2012-06-12 00:00:00: Portfolio Value - 32374713.00\n", - "2012-06-13 00:00:00: Portfolio Value - 29881822.61\n", - "2012-06-14 00:00:00: Portfolio Value - 31462613.27\n", - "2012-06-15 00:00:00: Portfolio Value - 33861059.30\n", - "2012-06-18 00:00:00: Portfolio Value - 34733672.71\n", - "2012-06-19 00:00:00: Portfolio Value - 36548419.55\n", - "2012-06-20 00:00:00: Portfolio Value - 35999641.91\n", - "2012-06-21 00:00:00: Portfolio Value - 32159612.67\n", - "2012-06-22 00:00:00: Portfolio Value - 33378336.93\n", - "2012-06-25 00:00:00: Portfolio Value - 30877244.34\n", - "2012-06-26 00:00:00: Portfolio Value - 31683209.09\n", - "2012-06-27 00:00:00: Portfolio Value - 32612504.92\n", - "2012-06-28 00:00:00: Portfolio Value - 31898745.68\n", - "2012-06-29 00:00:00: Portfolio Value - 36019023.51\n", - "2012-07-02 00:00:00: Portfolio Value - 37143989.33\n", - "2012-07-03 00:00:00: Portfolio Value - 38203127.14\n", - "2012-07-05 00:00:00: Portfolio Value - 37814878.35\n", - "2012-07-06 00:00:00: Portfolio Value - 36316570.73\n", - "2012-07-09 00:00:00: Portfolio Value - 35643428.44\n", - "2012-07-10 00:00:00: Portfolio Value - 34540907.40\n", - "2012-07-11 00:00:00: Portfolio Value - 33968848.32\n", - "2012-07-12 00:00:00: Portfolio Value - 33656605.41\n", - "2012-07-13 00:00:00: Portfolio Value - 36080465.76\n", - "2012-07-16 00:00:00: Portfolio Value - 35593760.47\n", - "2012-07-17 00:00:00: Portfolio Value - 36781071.99\n", - "2012-07-18 00:00:00: Portfolio Value - 37261157.01\n", - "2012-07-19 00:00:00: Portfolio Value - 37872304.17\n", - "2012-07-20 00:00:00: Portfolio Value - 35807995.18\n", - "2012-07-23 00:00:00: Portfolio Value - 33850615.18\n", - "2012-07-24 00:00:00: Portfolio Value - 32020845.45\n", - "2012-07-25 00:00:00: Portfolio Value - 32535511.08\n", - "2012-07-26 00:00:00: Portfolio Value - 36314561.42\n", - "2012-07-27 00:00:00: Portfolio Value - 39436049.89\n", - "2012-07-30 00:00:00: Portfolio Value - 38919814.89\n", - "2012-07-31 00:00:00: Portfolio Value - 37433171.64\n", - "2012-08-01 00:00:00: Portfolio Value - 36176589.01\n", - "2012-08-02 00:00:00: Portfolio Value - 35215363.57\n", - "2012-08-03 00:00:00: Portfolio Value - 38503547.30\n", - "2012-08-06 00:00:00: Portfolio Value - 39197225.12\n", - "2012-08-07 00:00:00: Portfolio Value - 40660383.51\n", - "2012-08-08 00:00:00: Portfolio Value - 40482559.77\n", - "2012-08-09 00:00:00: Portfolio Value - 40555973.18\n", - "2012-08-10 00:00:00: Portfolio Value - 41101175.04\n", - "2012-08-13 00:00:00: Portfolio Value - 40625526.50\n", - "2012-08-14 00:00:00: Portfolio Value - 40675992.69\n", - "2012-08-15 00:00:00: Portfolio Value - 41617261.85\n", - "2012-08-16 00:00:00: Portfolio Value - 43227368.85\n", - "2012-08-17 00:00:00: Portfolio Value - 44191139.71\n", - "2012-08-20 00:00:00: Portfolio Value - 43865996.50\n", - "2012-08-21 00:00:00: Portfolio Value - 43276512.77\n", - "2012-08-22 00:00:00: Portfolio Value - 43393370.25\n", - "2012-08-23 00:00:00: Portfolio Value - 42407066.51\n", - "2012-08-24 00:00:00: Portfolio Value - 43908234.10\n", - "2012-08-27 00:00:00: Portfolio Value - 44012547.47\n", - "2012-08-28 00:00:00: Portfolio Value - 44274391.13\n", - "2012-08-29 00:00:00: Portfolio Value - 44266497.29\n", - "2012-08-30 00:00:00: Portfolio Value - 42772174.90\n", - "2012-08-31 00:00:00: Portfolio Value - 43822731.97\n", - "2012-09-04 00:00:00: Portfolio Value - 44714173.52\n", - "2012-09-05 00:00:00: Portfolio Value - 44511710.33\n", - "2012-09-06 00:00:00: Portfolio Value - 48419685.18\n", - "2012-09-07 00:00:00: Portfolio Value - 49700253.83\n", - "2012-09-10 00:00:00: Portfolio Value - 48714511.20\n", - "2012-09-11 00:00:00: Portfolio Value - 48956913.27\n", - "2012-09-12 00:00:00: Portfolio Value - 49061653.74\n", - "2012-09-13 00:00:00: Portfolio Value - 51736248.94\n", - "2012-09-14 00:00:00: Portfolio Value - 52321111.52\n", - "2012-09-17 00:00:00: Portfolio Value - 51328653.96\n", - "2012-09-18 00:00:00: Portfolio Value - 50561088.93\n", - "2012-09-19 00:00:00: Portfolio Value - 51190451.13\n", - "2012-09-20 00:00:00: Portfolio Value - 51140471.24\n", - "2012-09-21 00:00:00: Portfolio Value - 51083734.96\n", - "2012-09-24 00:00:00: Portfolio Value - 50878690.96\n", - "2012-09-25 00:00:00: Portfolio Value - 49432652.26\n", - "2012-09-26 00:00:00: Portfolio Value - 48590737.29\n", - "2012-09-27 00:00:00: Portfolio Value - 50463649.65\n", - "2012-09-28 00:00:00: Portfolio Value - 50031107.72\n", - "2012-10-01 00:00:00: Portfolio Value - 50732800.13\n", - "2012-10-02 00:00:00: Portfolio Value - 50613841.12\n", - "2012-10-03 00:00:00: Portfolio Value - 51321501.10\n", - "2012-10-04 00:00:00: Portfolio Value - 53013670.32\n", - "2012-10-05 00:00:00: Portfolio Value - 52682708.42\n", - "2012-10-08 00:00:00: Portfolio Value - 52131435.38\n", - "2012-10-09 00:00:00: Portfolio Value - 49638080.21\n", - "2012-10-10 00:00:00: Portfolio Value - 48658725.04\n", - "2012-10-11 00:00:00: Portfolio Value - 48826375.20\n", - "2012-10-12 00:00:00: Portfolio Value - 48080985.02\n", - "2012-10-15 00:00:00: Portfolio Value - 50237553.88\n", - "2012-10-16 00:00:00: Portfolio Value - 52604210.24\n", - "2012-10-17 00:00:00: Portfolio Value - 53778250.08\n", - "2012-10-18 00:00:00: Portfolio Value - 52631391.77\n", - "2012-10-19 00:00:00: Portfolio Value - 49106555.43\n", - "2012-10-22 00:00:00: Portfolio Value - 49246316.28\n", - "2012-10-23 00:00:00: Portfolio Value - 46601987.99\n", - "2012-10-24 00:00:00: Portfolio Value - 46882078.43\n", - "2012-10-25 00:00:00: Portfolio Value - 47684949.55\n", - "2012-10-26 00:00:00: Portfolio Value - 46898355.63\n", - "2012-10-31 00:00:00: Portfolio Value - 47369292.52\n", - "2012-11-01 00:00:00: Portfolio Value - 49891370.25\n", - "2012-11-02 00:00:00: Portfolio Value - 47391972.48\n", - "2012-11-05 00:00:00: Portfolio Value - 48010320.32\n", - "2012-11-06 00:00:00: Portfolio Value - 49724641.72\n", - "2012-11-07 00:00:00: Portfolio Value - 45561826.47\n", - "2012-11-08 00:00:00: Portfolio Value - 43449637.52\n", - "2012-11-09 00:00:00: Portfolio Value - 43739969.22\n", - "2012-11-12 00:00:00: Portfolio Value - 43923868.82\n", - "2012-11-13 00:00:00: Portfolio Value - 43987772.07\n", - "2012-11-14 00:00:00: Portfolio Value - 41187891.77\n", - "2012-11-15 00:00:00: Portfolio Value - 40505185.67\n", - "2012-11-16 00:00:00: Portfolio Value - 43107365.62\n", - "2012-11-19 00:00:00: Portfolio Value - 45958655.11\n", - "2012-11-20 00:00:00: Portfolio Value - 47115381.69\n", - "2012-11-21 00:00:00: Portfolio Value - 47871868.08\n", - "2012-11-23 00:00:00: Portfolio Value - 50116361.59\n", - "2012-11-26 00:00:00: Portfolio Value - 49762971.56\n", - "2012-11-27 00:00:00: Portfolio Value - 49140105.40\n", - "2012-11-28 00:00:00: Portfolio Value - 50942132.33\n", - "2012-11-29 00:00:00: Portfolio Value - 52280859.46\n", - "2012-11-30 00:00:00: Portfolio Value - 52361279.84\n", - "2012-12-03 00:00:00: Portfolio Value - 52195212.21\n", - "2012-12-04 00:00:00: Portfolio Value - 51921531.66\n", - "2012-12-05 00:00:00: Portfolio Value - 52760566.41\n", - "2012-12-06 00:00:00: Portfolio Value - 54021646.56\n", - "2012-12-07 00:00:00: Portfolio Value - 54190146.33\n", - "2012-12-10 00:00:00: Portfolio Value - 54673790.07\n", - "2012-12-11 00:00:00: Portfolio Value - 55483494.77\n", - "2012-12-12 00:00:00: Portfolio Value - 55169850.23\n", - "2012-12-13 00:00:00: Portfolio Value - 54340955.23\n", - "2012-12-14 00:00:00: Portfolio Value - 53868055.66\n", - "2012-12-17 00:00:00: Portfolio Value - 56157632.55\n", - "2012-12-18 00:00:00: Portfolio Value - 58267090.59\n", - "2012-12-19 00:00:00: Portfolio Value - 56771926.12\n", - "2012-12-20 00:00:00: Portfolio Value - 57816028.82\n", - "2012-12-21 00:00:00: Portfolio Value - 56192270.56\n", - "2012-12-24 00:00:00: Portfolio Value - 55357757.99\n", - "2012-12-26 00:00:00: Portfolio Value - 53715346.45\n", - "2012-12-27 00:00:00: Portfolio Value - 53529629.88\n", - "2012-12-28 00:00:00: Portfolio Value - 51530516.69\n", - "2012-12-31 00:00:00: Portfolio Value - 55004992.82\n", - "2013-01-02 00:00:00: Portfolio Value - 60520473.57\n", - "2013-01-03 00:00:00: Portfolio Value - 61071047.62\n", - "2013-01-04 00:00:00: Portfolio Value - 61913937.78\n", - "2013-01-07 00:00:00: Portfolio Value - 61184219.18\n", - "2013-01-08 00:00:00: Portfolio Value - 60323260.13\n", - "2013-01-09 00:00:00: Portfolio Value - 61546354.51\n", - "2013-01-10 00:00:00: Portfolio Value - 62673047.57\n", - "2013-01-11 00:00:00: Portfolio Value - 62037070.62\n", - "2013-01-14 00:00:00: Portfolio Value - 62477913.04\n", - "2013-01-15 00:00:00: Portfolio Value - 62523765.86\n", - "2013-01-16 00:00:00: Portfolio Value - 61959799.44\n", - "2013-01-17 00:00:00: Portfolio Value - 63104031.14\n", - "2013-01-18 00:00:00: Portfolio Value - 63805485.41\n", - "2013-01-22 00:00:00: Portfolio Value - 65969903.88\n", - "2013-01-23 00:00:00: Portfolio Value - 66304583.89\n", - "2013-01-24 00:00:00: Portfolio Value - 67336454.14\n", - "2013-01-25 00:00:00: Portfolio Value - 69297368.08\n", - "2013-01-28 00:00:00: Portfolio Value - 68436551.57\n", - "2013-01-29 00:00:00: Portfolio Value - 68995216.03\n", - "2013-01-30 00:00:00: Portfolio Value - 68349813.31\n", - "2013-01-31 00:00:00: Portfolio Value - 68365298.82\n", - "2013-02-01 00:00:00: Portfolio Value - 70152526.41\n", - "2013-02-04 00:00:00: Portfolio Value - 68034394.34\n", - "2013-02-05 00:00:00: Portfolio Value - 69727456.89\n", - "2013-02-06 00:00:00: Portfolio Value - 70600339.82\n", - "2013-02-07 00:00:00: Portfolio Value - 69313225.73\n", - "2013-02-08 00:00:00: Portfolio Value - 70622984.01\n", - "2013-02-11 00:00:00: Portfolio Value - 70723194.24\n", - "2013-02-12 00:00:00: Portfolio Value - 71150006.48\n", - "2013-02-13 00:00:00: Portfolio Value - 71356242.63\n", - "2013-02-14 00:00:00: Portfolio Value - 70883605.75\n", - "2013-02-15 00:00:00: Portfolio Value - 70643412.22\n", - "2013-02-19 00:00:00: Portfolio Value - 71525953.54\n", - "2013-02-20 00:00:00: Portfolio Value - 69011418.34\n", - "2013-02-21 00:00:00: Portfolio Value - 67532944.83\n", - "2013-02-22 00:00:00: Portfolio Value - 69822511.71\n", - "2013-02-25 00:00:00: Portfolio Value - 66647842.03\n", - "2013-02-26 00:00:00: Portfolio Value - 67805338.80\n", - "2013-02-27 00:00:00: Portfolio Value - 70630277.03\n", - "2013-02-28 00:00:00: Portfolio Value - 71187230.29\n", - "2013-03-01 00:00:00: Portfolio Value - 72403550.44\n", - "2013-03-04 00:00:00: Portfolio Value - 73584120.70\n", - "2013-03-05 00:00:00: Portfolio Value - 75634308.31\n", - "2013-03-06 00:00:00: Portfolio Value - 75954174.08\n", - "2013-03-07 00:00:00: Portfolio Value - 75544009.88\n", - "2013-03-08 00:00:00: Portfolio Value - 76692112.71\n", - "2013-03-11 00:00:00: Portfolio Value - 76887281.34\n", - "2013-03-12 00:00:00: Portfolio Value - 76587594.70\n", - "2013-03-13 00:00:00: Portfolio Value - 77497782.10\n", - "2013-03-14 00:00:00: Portfolio Value - 78949211.05\n", - "2013-03-15 00:00:00: Portfolio Value - 76903401.41\n", - "2013-03-18 00:00:00: Portfolio Value - 75419250.27\n", - "2013-03-19 00:00:00: Portfolio Value - 75698607.82\n", - "2013-03-20 00:00:00: Portfolio Value - 78273056.79\n", - "2013-03-21 00:00:00: Portfolio Value - 76119863.48\n", - "2013-03-22 00:00:00: Portfolio Value - 77232300.50\n", - "2013-03-25 00:00:00: Portfolio Value - 76447203.30\n", - "2013-03-26 00:00:00: Portfolio Value - 78940974.62\n", - "2013-03-27 00:00:00: Portfolio Value - 79282632.39\n", - "2013-03-28 00:00:00: Portfolio Value - 80979671.86\n", - "2013-04-01 00:00:00: Portfolio Value - 79748798.22\n", - "2013-04-02 00:00:00: Portfolio Value - 80702946.93\n", - "2013-04-03 00:00:00: Portfolio Value - 77911557.91\n", - "2013-04-04 00:00:00: Portfolio Value - 79091134.92\n", - "2013-04-05 00:00:00: Portfolio Value - 78161863.75\n", - "2013-04-08 00:00:00: Portfolio Value - 80270796.08\n", - "2013-04-09 00:00:00: Portfolio Value - 81745311.08\n", - "2013-04-10 00:00:00: Portfolio Value - 84871911.64\n", - "2013-04-11 00:00:00: Portfolio Value - 86753726.95\n", - "2013-04-12 00:00:00: Portfolio Value - 87409941.10\n", - "2013-04-15 00:00:00: Portfolio Value - 81893501.85\n", - "2013-04-16 00:00:00: Portfolio Value - 85552090.12\n", - "2013-04-17 00:00:00: Portfolio Value - 82589822.46\n", - "2013-04-18 00:00:00: Portfolio Value - 80540884.13\n", - "2013-04-19 00:00:00: Portfolio Value - 82822288.14\n", - "2013-04-22 00:00:00: Portfolio Value - 84068636.77\n", - "2013-04-23 00:00:00: Portfolio Value - 87348327.63\n", - "2013-04-24 00:00:00: Portfolio Value - 87323795.54\n", - "2013-04-25 00:00:00: Portfolio Value - 89586835.85\n", - "2013-04-26 00:00:00: Portfolio Value - 89060998.13\n", - "2013-04-29 00:00:00: Portfolio Value - 90359442.26\n", - "2013-04-30 00:00:00: Portfolio Value - 91790604.40\n", - "2013-05-01 00:00:00: Portfolio Value - 91020098.29\n", - "2013-05-02 00:00:00: Portfolio Value - 94303232.94\n", - "2013-05-03 00:00:00: Portfolio Value - 97851252.95\n", - "2013-05-06 00:00:00: Portfolio Value - 97653100.93\n", - "2013-05-07 00:00:00: Portfolio Value - 98859989.28\n", - "2013-05-08 00:00:00: Portfolio Value - 99832695.00\n", - "2013-05-09 00:00:00: Portfolio Value - 98874618.69\n", - "2013-05-10 00:00:00: Portfolio Value - 101785782.02\n", - "2013-05-13 00:00:00: Portfolio Value - 102822305.61\n", - "2013-05-14 00:00:00: Portfolio Value - 105905819.43\n", - "2013-05-15 00:00:00: Portfolio Value - 106072278.25\n", - "2013-05-16 00:00:00: Portfolio Value - 103639931.34\n", - "2013-05-17 00:00:00: Portfolio Value - 106037034.57\n", - "2013-05-20 00:00:00: Portfolio Value - 105418509.03\n", - "2013-05-21 00:00:00: Portfolio Value - 105400783.11\n", - "2013-05-22 00:00:00: Portfolio Value - 102809849.45\n", - "2013-05-23 00:00:00: Portfolio Value - 101945455.59\n", - "2013-05-24 00:00:00: Portfolio Value - 101612962.16\n", - "2013-05-28 00:00:00: Portfolio Value - 102894842.92\n", - "2013-05-29 00:00:00: Portfolio Value - 100241728.03\n", - "2013-05-30 00:00:00: Portfolio Value - 101195786.77\n", - "2013-05-31 00:00:00: Portfolio Value - 97218650.27\n", - "2013-06-03 00:00:00: Portfolio Value - 97622432.32\n", - "2013-06-04 00:00:00: Portfolio Value - 95582251.27\n", - "2013-06-05 00:00:00: Portfolio Value - 92117331.67\n", - "2013-06-06 00:00:00: Portfolio Value - 95435958.78\n", - "2013-06-07 00:00:00: Portfolio Value - 98892348.98\n", - "2013-06-10 00:00:00: Portfolio Value - 99012896.95\n", - "2013-06-11 00:00:00: Portfolio Value - 95129363.64\n", - "2013-06-12 00:00:00: Portfolio Value - 92931551.48\n", - "2013-06-13 00:00:00: Portfolio Value - 96361664.89\n", - "2013-06-14 00:00:00: Portfolio Value - 95066113.57\n", - "2013-06-17 00:00:00: Portfolio Value - 96355585.78\n", - "2013-06-18 00:00:00: Portfolio Value - 98686645.70\n", - "2013-06-19 00:00:00: Portfolio Value - 93930597.53\n", - "2013-06-20 00:00:00: Portfolio Value - 86686304.66\n", - "2013-06-21 00:00:00: Portfolio Value - 86752766.08\n", - "2013-06-24 00:00:00: Portfolio Value - 84922235.08\n", - "2013-06-25 00:00:00: Portfolio Value - 87556409.12\n", - "2013-06-26 00:00:00: Portfolio Value - 90487300.21\n", - "2013-06-27 00:00:00: Portfolio Value - 92970381.52\n", - "2013-06-28 00:00:00: Portfolio Value - 91324932.87\n", - "2013-07-01 00:00:00: Portfolio Value - 93404853.34\n", - "2013-07-02 00:00:00: Portfolio Value - 92401227.24\n", - "2013-07-03 00:00:00: Portfolio Value - 92412572.63\n", - "2013-07-05 00:00:00: Portfolio Value - 94604414.38\n", - "2013-07-08 00:00:00: Portfolio Value - 95578294.84\n", - "2013-07-09 00:00:00: Portfolio Value - 97273258.30\n", - "2013-07-10 00:00:00: Portfolio Value - 97447610.50\n", - "2013-07-11 00:00:00: Portfolio Value - 101633948.79\n", - "2013-07-12 00:00:00: Portfolio Value - 103962481.15\n", - "2013-07-15 00:00:00: Portfolio Value - 105240082.65\n", - "2013-07-16 00:00:00: Portfolio Value - 103835216.24\n", - "2013-07-17 00:00:00: Portfolio Value - 105223963.73\n", - "2013-07-18 00:00:00: Portfolio Value - 106767942.59\n", - "2013-07-19 00:00:00: Portfolio Value - 107833289.01\n", - "2013-07-22 00:00:00: Portfolio Value - 108560579.63\n", - "2013-07-23 00:00:00: Portfolio Value - 106663387.78\n", - "2013-07-24 00:00:00: Portfolio Value - 105100798.09\n", - "2013-07-25 00:00:00: Portfolio Value - 106122515.50\n", - "2013-07-26 00:00:00: Portfolio Value - 106816933.37\n", - "2013-07-29 00:00:00: Portfolio Value - 105915450.59\n", - "2013-07-30 00:00:00: Portfolio Value - 106995848.06\n", - "2013-07-31 00:00:00: Portfolio Value - 107225253.44\n", - "2013-08-01 00:00:00: Portfolio Value - 111107032.83\n", - "2013-08-02 00:00:00: Portfolio Value - 110924275.39\n", - "2013-08-05 00:00:00: Portfolio Value - 110677965.89\n", - "2013-08-06 00:00:00: Portfolio Value - 107769287.50\n", - "2013-08-07 00:00:00: Portfolio Value - 106372489.18\n", - "2013-08-08 00:00:00: Portfolio Value - 107875557.18\n", - "2013-08-09 00:00:00: Portfolio Value - 106974578.50\n", - "2013-08-12 00:00:00: Portfolio Value - 106516451.82\n", - "2013-08-13 00:00:00: Portfolio Value - 106642304.40\n", - "2013-08-14 00:00:00: Portfolio Value - 105058600.53\n", - "2013-08-15 00:00:00: Portfolio Value - 100729498.37\n", - "2013-08-16 00:00:00: Portfolio Value - 99601112.96\n", - "2013-08-19 00:00:00: Portfolio Value - 98324997.49\n", - "2013-08-20 00:00:00: Portfolio Value - 100372608.80\n", - "2013-08-21 00:00:00: Portfolio Value - 99765121.86\n", - "2013-08-22 00:00:00: Portfolio Value - 101936452.48\n", - "2013-08-23 00:00:00: Portfolio Value - 102842931.81\n", - "2013-08-26 00:00:00: Portfolio Value - 102587286.25\n", - "2013-08-27 00:00:00: Portfolio Value - 97595209.32\n", - "2013-08-28 00:00:00: Portfolio Value - 98348495.21\n", - "2013-08-29 00:00:00: Portfolio Value - 99254497.53\n", - "2013-08-30 00:00:00: Portfolio Value - 98045748.50\n", - "2013-09-03 00:00:00: Portfolio Value - 99748123.32\n", - "2013-09-04 00:00:00: Portfolio Value - 101789117.26\n", - "2013-09-05 00:00:00: Portfolio Value - 102803494.33\n", - "2013-09-06 00:00:00: Portfolio Value - 102625519.40\n", - "2013-09-09 00:00:00: Portfolio Value - 107046576.86\n", - "2013-09-10 00:00:00: Portfolio Value - 109617843.86\n", - "2013-09-11 00:00:00: Portfolio Value - 109855044.16\n", - "2013-09-12 00:00:00: Portfolio Value - 108283660.78\n", - "2013-09-13 00:00:00: Portfolio Value - 111980544.34\n", - "2013-09-16 00:00:00: Portfolio Value - 113619700.21\n", - "2013-09-17 00:00:00: Portfolio Value - 114833210.21\n", - "2013-09-18 00:00:00: Portfolio Value - 119222345.76\n", - "2013-09-19 00:00:00: Portfolio Value - 118655603.67\n", - "2013-09-20 00:00:00: Portfolio Value - 116359121.22\n", - "2013-09-23 00:00:00: Portfolio Value - 115108214.97\n", - "2013-09-24 00:00:00: Portfolio Value - 115112110.32\n", - "2013-09-25 00:00:00: Portfolio Value - 114369678.27\n", - "2013-09-26 00:00:00: Portfolio Value - 116230077.46\n", - "2013-09-27 00:00:00: Portfolio Value - 114397503.39\n", - "2013-09-30 00:00:00: Portfolio Value - 114360217.52\n", - "2013-10-01 00:00:00: Portfolio Value - 117041042.83\n", - "2013-10-02 00:00:00: Portfolio Value - 116864297.39\n", - "2013-10-03 00:00:00: Portfolio Value - 114429794.08\n", - "2013-10-04 00:00:00: Portfolio Value - 115685179.53\n", - "2013-10-07 00:00:00: Portfolio Value - 112537595.87\n", - "2013-10-08 00:00:00: Portfolio Value - 108566854.79\n", - "2013-10-09 00:00:00: Portfolio Value - 108319044.14\n", - "2013-10-10 00:00:00: Portfolio Value - 114037761.70\n", - "2013-10-11 00:00:00: Portfolio Value - 115361283.08\n", - "2013-10-14 00:00:00: Portfolio Value - 116751858.42\n", - "2013-10-15 00:00:00: Portfolio Value - 113964562.76\n", - "2013-10-16 00:00:00: Portfolio Value - 119400328.09\n", - "2013-10-17 00:00:00: Portfolio Value - 121130462.04\n", - "2013-10-18 00:00:00: Portfolio Value - 123413838.10\n", - "2013-10-21 00:00:00: Portfolio Value - 122949517.25\n", - "2013-10-22 00:00:00: Portfolio Value - 125099696.81\n", - "2013-10-23 00:00:00: Portfolio Value - 123849395.95\n", - "2013-10-24 00:00:00: Portfolio Value - 125254371.25\n", - "2013-10-25 00:00:00: Portfolio Value - 125364356.34\n", - "2013-10-28 00:00:00: Portfolio Value - 125775177.72\n", - "2013-10-29 00:00:00: Portfolio Value - 127601127.93\n", - "2013-10-30 00:00:00: Portfolio Value - 125150829.81\n", - "2013-10-31 00:00:00: Portfolio Value - 123601781.13\n", - "2013-11-01 00:00:00: Portfolio Value - 124516503.19\n", - "2013-11-04 00:00:00: Portfolio Value - 125923211.29\n", - "2013-11-05 00:00:00: Portfolio Value - 126880735.77\n", - "2013-11-06 00:00:00: Portfolio Value - 126885876.00\n", - "2013-11-07 00:00:00: Portfolio Value - 121997652.66\n", - "2013-11-08 00:00:00: Portfolio Value - 125412925.93\n", - "2013-11-11 00:00:00: Portfolio Value - 126221096.04\n", - "2013-11-12 00:00:00: Portfolio Value - 126685260.68\n", - "2013-11-13 00:00:00: Portfolio Value - 128431898.37\n", - "2013-11-14 00:00:00: Portfolio Value - 130288889.87\n", - "2013-11-15 00:00:00: Portfolio Value - 130358017.53\n", - "2013-11-18 00:00:00: Portfolio Value - 128732125.50\n", - "2013-11-19 00:00:00: Portfolio Value - 127386774.13\n", - "2013-11-20 00:00:00: Portfolio Value - 126351413.08\n", - "2013-11-21 00:00:00: Portfolio Value - 128857926.65\n", - "2013-11-22 00:00:00: Portfolio Value - 131239414.94\n", - "2013-11-25 00:00:00: Portfolio Value - 131359100.72\n", - "2013-11-26 00:00:00: Portfolio Value - 130956893.24\n", - "2013-11-27 00:00:00: Portfolio Value - 131388558.76\n", - "2013-11-29 00:00:00: Portfolio Value - 131038368.19\n", - "2013-12-02 00:00:00: Portfolio Value - 130653405.16\n", - "2013-12-03 00:00:00: Portfolio Value - 129289216.12\n", - "2013-12-04 00:00:00: Portfolio Value - 129055548.04\n", - "2013-12-05 00:00:00: Portfolio Value - 127467305.64\n", - "2013-12-06 00:00:00: Portfolio Value - 128833710.12\n", - "2013-12-09 00:00:00: Portfolio Value - 128988787.35\n", - "2013-12-10 00:00:00: Portfolio Value - 128210005.36\n", - "2013-12-11 00:00:00: Portfolio Value - 124823806.61\n", - "2013-12-12 00:00:00: Portfolio Value - 123785659.44\n", - "2013-12-13 00:00:00: Portfolio Value - 123984906.95\n", - "2013-12-16 00:00:00: Portfolio Value - 125435194.95\n", - "2013-12-17 00:00:00: Portfolio Value - 124288725.98\n", - "2013-12-18 00:00:00: Portfolio Value - 129138484.24\n", - "2013-12-19 00:00:00: Portfolio Value - 128022555.32\n", - "2013-12-20 00:00:00: Portfolio Value - 130656895.21\n", - "2013-12-23 00:00:00: Portfolio Value - 131095001.75\n", - "2013-12-24 00:00:00: Portfolio Value - 131967143.50\n", - "2013-12-26 00:00:00: Portfolio Value - 133059701.33\n", - "2013-12-27 00:00:00: Portfolio Value - 132354969.38\n", - "2013-12-30 00:00:00: Portfolio Value - 133006393.71\n", - "2013-12-31 00:00:00: Portfolio Value - 133348254.16\n", - "2014-01-02 00:00:00: Portfolio Value - 131375078.82\n", - "2014-01-03 00:00:00: Portfolio Value - 131727890.78\n", - "2014-01-06 00:00:00: Portfolio Value - 130409022.49\n", - "2014-01-07 00:00:00: Portfolio Value - 133410693.00\n", - "2014-01-08 00:00:00: Portfolio Value - 133745592.37\n", - "2014-01-09 00:00:00: Portfolio Value - 134223508.04\n", - "2014-01-10 00:00:00: Portfolio Value - 136410573.67\n", - "2014-01-13 00:00:00: Portfolio Value - 131443496.03\n", - "2014-01-14 00:00:00: Portfolio Value - 136753379.21\n", - "2014-01-15 00:00:00: Portfolio Value - 136783436.77\n", - "2014-01-16 00:00:00: Portfolio Value - 136921229.50\n", - "2014-01-17 00:00:00: Portfolio Value - 136919673.31\n", - "2014-01-21 00:00:00: Portfolio Value - 137269957.69\n", - "2014-01-22 00:00:00: Portfolio Value - 137491146.42\n", - "2014-01-23 00:00:00: Portfolio Value - 136050372.64\n", - "2014-01-24 00:00:00: Portfolio Value - 129072008.65\n", - "2014-01-27 00:00:00: Portfolio Value - 126749052.04\n", - "2014-01-28 00:00:00: Portfolio Value - 130033442.99\n", - "2014-01-29 00:00:00: Portfolio Value - 127239761.80\n", - "2014-01-30 00:00:00: Portfolio Value - 131842861.49\n", - "2014-01-31 00:00:00: Portfolio Value - 131323822.96\n", - "2014-02-03 00:00:00: Portfolio Value - 123761986.22\n", - "2014-02-04 00:00:00: Portfolio Value - 125366951.44\n", - "2014-02-05 00:00:00: Portfolio Value - 124505032.50\n", - "2014-02-06 00:00:00: Portfolio Value - 128569845.67\n", - "2014-02-07 00:00:00: Portfolio Value - 132889237.65\n", - "2014-02-10 00:00:00: Portfolio Value - 133838739.83\n", - "2014-02-11 00:00:00: Portfolio Value - 138034844.61\n", - "2014-02-12 00:00:00: Portfolio Value - 137790932.85\n", - "2014-02-13 00:00:00: Portfolio Value - 140025378.55\n", - "2014-02-14 00:00:00: Portfolio Value - 140785388.59\n", - "2014-02-18 00:00:00: Portfolio Value - 142669162.04\n", - "2014-02-19 00:00:00: Portfolio Value - 139956527.53\n", - "2014-02-20 00:00:00: Portfolio Value - 142965147.08\n", - "2014-02-21 00:00:00: Portfolio Value - 143663214.83\n", - "2014-02-24 00:00:00: Portfolio Value - 147117238.48\n", - "2014-02-25 00:00:00: Portfolio Value - 146379492.49\n", - "2014-02-26 00:00:00: Portfolio Value - 145864552.44\n", - "2014-02-27 00:00:00: Portfolio Value - 148179000.86\n", - "2014-02-28 00:00:00: Portfolio Value - 147377457.52\n", - "2014-03-03 00:00:00: Portfolio Value - 145979487.87\n", - "2014-03-04 00:00:00: Portfolio Value - 151222754.03\n", - "2014-03-05 00:00:00: Portfolio Value - 150410563.28\n", - "2014-03-06 00:00:00: Portfolio Value - 149313977.78\n", - "2014-03-07 00:00:00: Portfolio Value - 148334909.53\n", - "2014-03-10 00:00:00: Portfolio Value - 147786502.64\n", - "2014-03-11 00:00:00: Portfolio Value - 146740165.59\n", - "2014-03-12 00:00:00: Portfolio Value - 148320722.27\n", - "2014-03-13 00:00:00: Portfolio Value - 143867704.75\n", - "2014-03-14 00:00:00: Portfolio Value - 144229214.29\n", - "2014-03-17 00:00:00: Portfolio Value - 146569250.56\n", - "2014-03-18 00:00:00: Portfolio Value - 149319418.67\n", - "2014-03-19 00:00:00: Portfolio Value - 147925243.06\n", - "2014-03-20 00:00:00: Portfolio Value - 149384108.46\n", - "2014-03-21 00:00:00: Portfolio Value - 146266468.68\n", - "2014-03-24 00:00:00: Portfolio Value - 144099665.74\n", - "2014-03-25 00:00:00: Portfolio Value - 144399191.65\n", - "2014-03-26 00:00:00: Portfolio Value - 142301480.76\n", - "2014-03-27 00:00:00: Portfolio Value - 142217819.31\n", - "2014-03-28 00:00:00: Portfolio Value - 141951192.89\n", - "2014-03-31 00:00:00: Portfolio Value - 145700982.15\n", - "2014-04-01 00:00:00: Portfolio Value - 148734098.93\n", - "2014-04-02 00:00:00: Portfolio Value - 149279677.49\n", - "2014-04-03 00:00:00: Portfolio Value - 147218358.44\n", - "2014-04-04 00:00:00: Portfolio Value - 142041397.11\n", - "2014-04-07 00:00:00: Portfolio Value - 138514344.42\n", - "2014-04-08 00:00:00: Portfolio Value - 140411321.86\n", - "2014-04-09 00:00:00: Portfolio Value - 145120776.81\n", - "2014-04-10 00:00:00: Portfolio Value - 138157350.84\n", - "2014-04-11 00:00:00: Portfolio Value - 135223782.41\n", - "2014-04-14 00:00:00: Portfolio Value - 137043150.03\n", - "2014-04-15 00:00:00: Portfolio Value - 137532535.73\n", - "2014-04-16 00:00:00: Portfolio Value - 141379436.72\n", - "2014-04-17 00:00:00: Portfolio Value - 141214021.52\n", - "2014-04-21 00:00:00: Portfolio Value - 142024753.58\n", - "2014-04-22 00:00:00: Portfolio Value - 145330344.23\n", - "2014-04-23 00:00:00: Portfolio Value - 142981083.99\n", - "2014-04-24 00:00:00: Portfolio Value - 142639306.75\n", - "2014-04-25 00:00:00: Portfolio Value - 138978090.27\n", - "2014-04-28 00:00:00: Portfolio Value - 137907361.52\n", - "2014-04-29 00:00:00: Portfolio Value - 141773092.53\n", - "2014-04-30 00:00:00: Portfolio Value - 142434213.27\n", - "2014-05-01 00:00:00: Portfolio Value - 141789789.03\n", - "2014-05-02 00:00:00: Portfolio Value - 142194558.15\n", - "2014-05-05 00:00:00: Portfolio Value - 142814114.41\n", - "2014-05-06 00:00:00: Portfolio Value - 139357452.69\n", - "2014-05-07 00:00:00: Portfolio Value - 139534769.39\n", - "2014-05-08 00:00:00: Portfolio Value - 137921105.90\n", - "2014-05-09 00:00:00: Portfolio Value - 138852976.89\n", - "2014-05-12 00:00:00: Portfolio Value - 142686491.09\n", - "2014-05-13 00:00:00: Portfolio Value - 142331915.50\n", - "2014-05-14 00:00:00: Portfolio Value - 141064405.77\n", - "2014-05-15 00:00:00: Portfolio Value - 138405421.80\n", - "2014-05-16 00:00:00: Portfolio Value - 139823989.69\n", - "2014-05-19 00:00:00: Portfolio Value - 140941679.15\n", - "2014-05-20 00:00:00: Portfolio Value - 137954697.88\n", - "2014-05-21 00:00:00: Portfolio Value - 140307061.46\n", - "2014-05-22 00:00:00: Portfolio Value - 142045791.42\n", - "2014-05-23 00:00:00: Portfolio Value - 142978462.95\n", - "2014-05-27 00:00:00: Portfolio Value - 145852160.60\n", - "2014-05-28 00:00:00: Portfolio Value - 145578690.07\n", - "2014-05-29 00:00:00: Portfolio Value - 147202261.58\n", - "2014-05-30 00:00:00: Portfolio Value - 147457356.65\n", - "2014-06-02 00:00:00: Portfolio Value - 148221656.68\n", - "2014-06-03 00:00:00: Portfolio Value - 147833382.35\n", - "2014-06-04 00:00:00: Portfolio Value - 149258619.11\n", - "2014-06-05 00:00:00: Portfolio Value - 150398157.64\n", - "2014-06-06 00:00:00: Portfolio Value - 151701301.85\n", - "2014-06-09 00:00:00: Portfolio Value - 152048137.73\n", - "2014-06-10 00:00:00: Portfolio Value - 151301754.48\n", - "2014-06-11 00:00:00: Portfolio Value - 151116794.72\n", - "2014-06-12 00:00:00: Portfolio Value - 148445111.01\n", - "2014-06-13 00:00:00: Portfolio Value - 149302622.51\n", - "2014-06-16 00:00:00: Portfolio Value - 150252158.49\n", - "2014-06-17 00:00:00: Portfolio Value - 150529826.49\n", - "2014-06-18 00:00:00: Portfolio Value - 153309621.42\n", - "2014-06-19 00:00:00: Portfolio Value - 153327807.12\n", - "2014-06-20 00:00:00: Portfolio Value - 152547694.25\n", - "2014-06-23 00:00:00: Portfolio Value - 151873438.25\n", - "2014-06-24 00:00:00: Portfolio Value - 150290296.69\n", - "2014-06-25 00:00:00: Portfolio Value - 151680744.27\n", - "2014-06-26 00:00:00: Portfolio Value - 151587078.45\n", - "2014-06-27 00:00:00: Portfolio Value - 151584405.64\n", - "2014-06-30 00:00:00: Portfolio Value - 151991596.83\n", - "2014-07-01 00:00:00: Portfolio Value - 156215471.46\n", - "2014-07-02 00:00:00: Portfolio Value - 155845930.50\n", - "2014-07-03 00:00:00: Portfolio Value - 157253109.00\n", - "2014-07-07 00:00:00: Portfolio Value - 155332217.05\n", - "2014-07-08 00:00:00: Portfolio Value - 152646573.75\n", - "2014-07-09 00:00:00: Portfolio Value - 153563363.09\n", - "2014-07-10 00:00:00: Portfolio Value - 153105150.28\n", - "2014-07-11 00:00:00: Portfolio Value - 153084090.66\n", - "2014-07-14 00:00:00: Portfolio Value - 154084649.35\n", - "2014-07-15 00:00:00: Portfolio Value - 152616553.01\n", - "2014-07-16 00:00:00: Portfolio Value - 152825356.58\n", - "2014-07-17 00:00:00: Portfolio Value - 148914038.81\n", - "2014-07-18 00:00:00: Portfolio Value - 152520400.58\n", - "2014-07-21 00:00:00: Portfolio Value - 151875510.18\n", - "2014-07-22 00:00:00: Portfolio Value - 153972821.62\n", - "2014-07-23 00:00:00: Portfolio Value - 154586032.10\n", - "2014-07-24 00:00:00: Portfolio Value - 154607244.73\n", - "2014-07-25 00:00:00: Portfolio Value - 153417836.76\n", - "2014-07-28 00:00:00: Portfolio Value - 153862296.17\n", - "2014-07-29 00:00:00: Portfolio Value - 153748205.23\n", - "2014-07-30 00:00:00: Portfolio Value - 155379827.94\n", - "2014-07-31 00:00:00: Portfolio Value - 148730786.59\n", - "2014-08-01 00:00:00: Portfolio Value - 148333819.04\n", - "2014-08-04 00:00:00: Portfolio Value - 149792638.61\n", - "2014-08-05 00:00:00: Portfolio Value - 148045651.54\n", - "2014-08-06 00:00:00: Portfolio Value - 148539128.83\n", - "2014-08-07 00:00:00: Portfolio Value - 147325715.85\n", - "2014-08-08 00:00:00: Portfolio Value - 150724855.85\n", - "2014-08-11 00:00:00: Portfolio Value - 151915008.24\n", - "2014-08-12 00:00:00: Portfolio Value - 151256182.72\n", - "2014-08-13 00:00:00: Portfolio Value - 153504575.90\n", - "2014-08-14 00:00:00: Portfolio Value - 155163283.65\n", - "2014-08-15 00:00:00: Portfolio Value - 154926413.68\n", - "2014-08-18 00:00:00: Portfolio Value - 158165338.55\n", - "2014-08-19 00:00:00: Portfolio Value - 159394854.96\n", - "2014-08-20 00:00:00: Portfolio Value - 159789839.76\n", - "2014-08-21 00:00:00: Portfolio Value - 159737249.47\n", - "2014-08-22 00:00:00: Portfolio Value - 159298190.64\n", - "2014-08-25 00:00:00: Portfolio Value - 161408423.86\n", - "2014-08-26 00:00:00: Portfolio Value - 162165167.47\n", - "2014-08-27 00:00:00: Portfolio Value - 161577218.65\n", - "2014-08-28 00:00:00: Portfolio Value - 161069479.62\n", - "2014-08-29 00:00:00: Portfolio Value - 161711505.69\n", - "2014-09-02 00:00:00: Portfolio Value - 161990335.93\n", - "2014-09-03 00:00:00: Portfolio Value - 162192289.89\n", - "2014-09-04 00:00:00: Portfolio Value - 161589951.36\n", - "2014-09-05 00:00:00: Portfolio Value - 162811963.93\n", - "2014-09-08 00:00:00: Portfolio Value - 161842001.33\n", - "2014-09-09 00:00:00: Portfolio Value - 159398393.33\n", - "2014-09-10 00:00:00: Portfolio Value - 161040062.80\n", - "2014-09-11 00:00:00: Portfolio Value - 162007559.72\n", - "2014-09-12 00:00:00: Portfolio Value - 161239752.52\n", - "2014-09-15 00:00:00: Portfolio Value - 159864532.86\n", - "2014-09-16 00:00:00: Portfolio Value - 162143822.59\n", - "2014-09-17 00:00:00: Portfolio Value - 162930092.07\n", - "2014-09-18 00:00:00: Portfolio Value - 165422538.53\n", - "2014-09-19 00:00:00: Portfolio Value - 164113746.02\n", - "2014-09-22 00:00:00: Portfolio Value - 161197889.38\n", - "2014-09-23 00:00:00: Portfolio Value - 159478275.83\n", - "2014-09-24 00:00:00: Portfolio Value - 162856082.79\n", - "2014-09-25 00:00:00: Portfolio Value - 157908942.20\n", - "2014-09-26 00:00:00: Portfolio Value - 160162566.58\n", - "2014-09-29 00:00:00: Portfolio Value - 159391122.91\n", - "2014-09-30 00:00:00: Portfolio Value - 159333403.97\n", - "2014-10-01 00:00:00: Portfolio Value - 154874180.75\n", - "2014-10-02 00:00:00: Portfolio Value - 155807054.57\n", - "2014-10-03 00:00:00: Portfolio Value - 160062905.68\n", - "2014-10-06 00:00:00: Portfolio Value - 159463063.97\n", - "2014-10-07 00:00:00: Portfolio Value - 154398829.89\n", - "2014-10-08 00:00:00: Portfolio Value - 159575452.60\n", - "2014-10-09 00:00:00: Portfolio Value - 153305718.39\n", - "2014-10-10 00:00:00: Portfolio Value - 149782050.69\n", - "2014-10-13 00:00:00: Portfolio Value - 144827700.81\n", - "2014-10-14 00:00:00: Portfolio Value - 146442486.19\n", - "2014-10-15 00:00:00: Portfolio Value - 145726882.56\n", - "2014-10-16 00:00:00: Portfolio Value - 146550321.02\n", - "2014-10-17 00:00:00: Portfolio Value - 151901826.78\n", - "2014-10-20 00:00:00: Portfolio Value - 154272787.68\n", - "2014-10-21 00:00:00: Portfolio Value - 159610001.45\n", - "2014-10-22 00:00:00: Portfolio Value - 158476438.92\n", - "2014-10-23 00:00:00: Portfolio Value - 161611967.37\n", - "2014-10-24 00:00:00: Portfolio Value - 164873206.85\n", - "2014-10-27 00:00:00: Portfolio Value - 165614601.82\n", - "2014-10-28 00:00:00: Portfolio Value - 168471775.12\n", - "2014-10-29 00:00:00: Portfolio Value - 167334588.84\n", - "2014-10-30 00:00:00: Portfolio Value - 170431643.04\n", - "2014-10-31 00:00:00: Portfolio Value - 174098224.23\n", - "2014-11-03 00:00:00: Portfolio Value - 174711374.03\n", - "2014-11-04 00:00:00: Portfolio Value - 172591400.20\n", - "2014-11-05 00:00:00: Portfolio Value - 172878247.96\n", - "2014-11-06 00:00:00: Portfolio Value - 174905545.06\n", - "2014-11-07 00:00:00: Portfolio Value - 174641389.68\n", - "2014-11-10 00:00:00: Portfolio Value - 177424691.76\n", - "2014-11-11 00:00:00: Portfolio Value - 178512706.10\n", - "2014-11-12 00:00:00: Portfolio Value - 178553854.59\n", - "2014-11-13 00:00:00: Portfolio Value - 178709005.02\n", - "2014-11-14 00:00:00: Portfolio Value - 177876047.23\n", - "2014-11-17 00:00:00: Portfolio Value - 178265873.28\n", - "2014-11-18 00:00:00: Portfolio Value - 180748662.69\n", - "2014-11-19 00:00:00: Portfolio Value - 180438077.47\n", - "2014-11-20 00:00:00: Portfolio Value - 180212479.18\n", - "2014-11-21 00:00:00: Portfolio Value - 181146470.93\n", - "2014-11-24 00:00:00: Portfolio Value - 182740709.81\n", - "2014-11-25 00:00:00: Portfolio Value - 182616427.75\n", - "2014-11-26 00:00:00: Portfolio Value - 184097509.09\n", - "2014-11-28 00:00:00: Portfolio Value - 185257190.66\n", - "2014-12-01 00:00:00: Portfolio Value - 182110393.13\n", - "2014-12-02 00:00:00: Portfolio Value - 185250281.34\n", - "2014-12-03 00:00:00: Portfolio Value - 185963957.19\n", - "2014-12-04 00:00:00: Portfolio Value - 186047298.50\n", - "2014-12-05 00:00:00: Portfolio Value - 186905682.36\n", - "2014-12-08 00:00:00: Portfolio Value - 186693667.72\n", - "2014-12-09 00:00:00: Portfolio Value - 186482243.74\n", - "2014-12-10 00:00:00: Portfolio Value - 180367511.89\n", - "2014-12-11 00:00:00: Portfolio Value - 183108883.75\n", - "2014-12-12 00:00:00: Portfolio Value - 178069698.89\n", - "2014-12-15 00:00:00: Portfolio Value - 174779672.28\n", - "2014-12-16 00:00:00: Portfolio Value - 171703002.25\n", - "2014-12-17 00:00:00: Portfolio Value - 178650845.21\n", - "2014-12-18 00:00:00: Portfolio Value - 185741449.80\n", - "2014-12-19 00:00:00: Portfolio Value - 187281044.26\n", - "2014-12-22 00:00:00: Portfolio Value - 187358538.24\n", - "2014-12-23 00:00:00: Portfolio Value - 186539640.98\n", - "2014-12-24 00:00:00: Portfolio Value - 187957887.02\n", - "2014-12-26 00:00:00: Portfolio Value - 189782440.97\n", - "2014-12-29 00:00:00: Portfolio Value - 190686720.97\n", - "2014-12-30 00:00:00: Portfolio Value - 188836384.54\n", - "2014-12-31 00:00:00: Portfolio Value - 185838982.95\n", - "2015-01-02 00:00:00: Portfolio Value - 185826430.32\n", - "2015-01-05 00:00:00: Portfolio Value - 181632903.90\n", - "2015-01-06 00:00:00: Portfolio Value - 177732069.85\n", - "2015-01-07 00:00:00: Portfolio Value - 183312558.04\n", - "2015-01-08 00:00:00: Portfolio Value - 187766351.78\n", - "2015-01-09 00:00:00: Portfolio Value - 186107364.76\n", - "2015-01-12 00:00:00: Portfolio Value - 184514064.26\n", - "2015-01-13 00:00:00: Portfolio Value - 184541789.58\n", - "2015-01-14 00:00:00: Portfolio Value - 182420470.14\n", - "2015-01-15 00:00:00: Portfolio Value - 178837344.22\n", - "2015-01-16 00:00:00: Portfolio Value - 182990470.56\n", - "2015-01-20 00:00:00: Portfolio Value - 183807834.86\n", - "2015-01-21 00:00:00: Portfolio Value - 185276719.03\n", - "2015-01-22 00:00:00: Portfolio Value - 190325367.51\n", - "2015-01-23 00:00:00: Portfolio Value - 189943098.43\n", - "2015-01-26 00:00:00: Portfolio Value - 192241696.73\n", - "2015-01-27 00:00:00: Portfolio Value - 188640593.64\n", - "2015-01-28 00:00:00: Portfolio Value - 183915787.29\n", - "2015-01-29 00:00:00: Portfolio Value - 187048556.40\n", - "2015-01-30 00:00:00: Portfolio Value - 180620829.78\n", - "2015-02-02 00:00:00: Portfolio Value - 183365461.97\n", - "2015-02-03 00:00:00: Portfolio Value - 187655081.15\n", - "2015-02-04 00:00:00: Portfolio Value - 185916902.94\n", - "2015-02-05 00:00:00: Portfolio Value - 189065762.58\n", - "2015-02-06 00:00:00: Portfolio Value - 186719887.75\n", - "2015-02-09 00:00:00: Portfolio Value - 184638500.11\n", - "2015-02-10 00:00:00: Portfolio Value - 189101714.34\n", - "2015-02-11 00:00:00: Portfolio Value - 188852857.80\n", - "2015-02-12 00:00:00: Portfolio Value - 191470333.47\n", - "2015-02-13 00:00:00: Portfolio Value - 192345029.32\n", - "2015-02-17 00:00:00: Portfolio Value - 193059315.22\n", - "2015-02-18 00:00:00: Portfolio Value - 194884520.18\n", - "2015-02-19 00:00:00: Portfolio Value - 196048089.35\n", - "2015-02-20 00:00:00: Portfolio Value - 197691840.62\n", - "2015-02-23 00:00:00: Portfolio Value - 197432020.05\n", - "2015-02-24 00:00:00: Portfolio Value - 197390742.54\n", - "2015-02-25 00:00:00: Portfolio Value - 196942722.66\n", - "2015-02-26 00:00:00: Portfolio Value - 196012042.90\n", - "2015-02-27 00:00:00: Portfolio Value - 194463884.06\n", - "2015-03-02 00:00:00: Portfolio Value - 196767815.50\n", - "2015-03-03 00:00:00: Portfolio Value - 194194597.51\n", - "2015-03-04 00:00:00: Portfolio Value - 193055996.31\n", - "2015-03-05 00:00:00: Portfolio Value - 195684616.88\n", - "2015-03-06 00:00:00: Portfolio Value - 189513318.23\n", - "2015-03-09 00:00:00: Portfolio Value - 190643885.77\n", - "2015-03-10 00:00:00: Portfolio Value - 185447391.08\n", - "2015-03-11 00:00:00: Portfolio Value - 185571542.93\n", - "2015-03-12 00:00:00: Portfolio Value - 190582850.82\n", - "2015-03-13 00:00:00: Portfolio Value - 189462324.70\n", - "2015-03-16 00:00:00: Portfolio Value - 194759106.34\n", - "2015-03-17 00:00:00: Portfolio Value - 194943212.76\n", - "2015-03-18 00:00:00: Portfolio Value - 198840429.55\n", - "2015-03-19 00:00:00: Portfolio Value - 200736156.10\n", - "2015-03-20 00:00:00: Portfolio Value - 203256198.87\n", - "2015-03-23 00:00:00: Portfolio Value - 202080384.68\n", - "2015-03-24 00:00:00: Portfolio Value - 200119548.69\n", - "2015-03-25 00:00:00: Portfolio Value - 193330317.42\n", - "2015-03-26 00:00:00: Portfolio Value - 191930022.70\n", - "2015-03-27 00:00:00: Portfolio Value - 194292021.18\n", - "2015-03-30 00:00:00: Portfolio Value - 198349911.86\n", - "2015-03-31 00:00:00: Portfolio Value - 195192689.67\n", - "2015-04-01 00:00:00: Portfolio Value - 193181953.28\n", - "2015-04-02 00:00:00: Portfolio Value - 193858539.05\n", - "2015-04-06 00:00:00: Portfolio Value - 196117315.22\n", - "2015-04-07 00:00:00: Portfolio Value - 194500114.02\n", - "2015-04-08 00:00:00: Portfolio Value - 197092798.04\n", - "2015-04-09 00:00:00: Portfolio Value - 198442106.71\n", - "2015-04-10 00:00:00: Portfolio Value - 200423160.48\n", - "2015-04-13 00:00:00: Portfolio Value - 199922305.30\n", - "2015-04-14 00:00:00: Portfolio Value - 199794889.85\n", - "2015-04-15 00:00:00: Portfolio Value - 200913795.82\n", - "2015-04-16 00:00:00: Portfolio Value - 201689691.71\n", - "2015-04-17 00:00:00: Portfolio Value - 198060870.45\n", - "2015-04-20 00:00:00: Portfolio Value - 201460042.54\n", - "2015-04-21 00:00:00: Portfolio Value - 202449454.04\n", - "2015-04-22 00:00:00: Portfolio Value - 203840520.93\n", - "2015-04-23 00:00:00: Portfolio Value - 205995342.42\n", - "2015-04-24 00:00:00: Portfolio Value - 206364899.16\n", - "2015-04-27 00:00:00: Portfolio Value - 202833646.61\n", - "2015-04-28 00:00:00: Portfolio Value - 202963143.94\n", - "2015-04-29 00:00:00: Portfolio Value - 199658068.20\n", - "2015-04-30 00:00:00: Portfolio Value - 195124519.60\n", - "2015-05-01 00:00:00: Portfolio Value - 199007650.22\n", - "2015-05-04 00:00:00: Portfolio Value - 200888287.76\n", - "2015-05-05 00:00:00: Portfolio Value - 196492941.51\n", - "2015-05-06 00:00:00: Portfolio Value - 195870031.96\n", - "2015-05-07 00:00:00: Portfolio Value - 197400515.38\n", - "2015-05-08 00:00:00: Portfolio Value - 202017151.26\n", - "2015-05-11 00:00:00: Portfolio Value - 200990818.79\n", - "2015-05-12 00:00:00: Portfolio Value - 199832698.89\n", - "2015-05-13 00:00:00: Portfolio Value - 198583647.11\n", - "2015-05-14 00:00:00: Portfolio Value - 202758454.03\n", - "2015-05-15 00:00:00: Portfolio Value - 202961343.68\n", - "2015-05-18 00:00:00: Portfolio Value - 204964892.32\n", - "2015-05-19 00:00:00: Portfolio Value - 205634352.87\n", - "2015-05-20 00:00:00: Portfolio Value - 205531381.08\n", - "2015-05-21 00:00:00: Portfolio Value - 206023099.37\n", - "2015-05-22 00:00:00: Portfolio Value - 205112942.89\n", - "2015-05-26 00:00:00: Portfolio Value - 201371788.82\n", - "2015-05-27 00:00:00: Portfolio Value - 204833714.76\n", - "2015-05-28 00:00:00: Portfolio Value - 204307567.63\n", - "2015-05-29 00:00:00: Portfolio Value - 201906127.35\n", - "2015-06-01 00:00:00: Portfolio Value - 202529429.25\n", - "2015-06-02 00:00:00: Portfolio Value - 201847168.95\n", - "2015-06-03 00:00:00: Portfolio Value - 203331058.38\n", - "2015-06-04 00:00:00: Portfolio Value - 201645151.24\n", - "2015-06-05 00:00:00: Portfolio Value - 203029097.79\n", - "2015-06-08 00:00:00: Portfolio Value - 199041350.36\n", - "2015-06-09 00:00:00: Portfolio Value - 199531050.78\n", - "2015-06-10 00:00:00: Portfolio Value - 201981682.82\n", - "2015-06-11 00:00:00: Portfolio Value - 202409559.90\n", - "2015-06-12 00:00:00: Portfolio Value - 199813538.65\n", - "2015-06-15 00:00:00: Portfolio Value - 198774996.38\n", - "2015-06-16 00:00:00: Portfolio Value - 200472359.39\n", - "2015-06-17 00:00:00: Portfolio Value - 201902323.95\n", - "2015-06-18 00:00:00: Portfolio Value - 206559070.20\n", - "2015-06-19 00:00:00: Portfolio Value - 204688891.80\n", - "2015-06-22 00:00:00: Portfolio Value - 206342645.34\n", - "2015-06-23 00:00:00: Portfolio Value - 206001915.68\n", - "2015-06-24 00:00:00: Portfolio Value - 202827930.31\n", - "2015-06-25 00:00:00: Portfolio Value - 202011366.01\n", - "2015-06-26 00:00:00: Portfolio Value - 202367710.24\n", - "2015-06-29 00:00:00: Portfolio Value - 194823192.38\n", - "2015-06-30 00:00:00: Portfolio Value - 196240378.66\n", - "2015-07-01 00:00:00: Portfolio Value - 197928525.63\n", - "2015-07-02 00:00:00: Portfolio Value - 198261866.78\n", - "2015-07-06 00:00:00: Portfolio Value - 197923665.58\n", - "2015-07-07 00:00:00: Portfolio Value - 202517051.64\n", - "2015-07-08 00:00:00: Portfolio Value - 197002393.58\n", - "2015-07-09 00:00:00: Portfolio Value - 198126904.77\n", - "2015-07-10 00:00:00: Portfolio Value - 203231521.51\n", - "2015-07-13 00:00:00: Portfolio Value - 208092783.07\n", - "2015-07-14 00:00:00: Portfolio Value - 209478010.24\n", - "2015-07-15 00:00:00: Portfolio Value - 208394503.22\n", - "2015-07-16 00:00:00: Portfolio Value - 212547711.34\n", - "2015-07-17 00:00:00: Portfolio Value - 211229499.66\n", - "2015-07-20 00:00:00: Portfolio Value - 211387328.10\n", - "2015-07-21 00:00:00: Portfolio Value - 209874112.31\n", - "2015-07-22 00:00:00: Portfolio Value - 210715521.26\n", - "2015-07-23 00:00:00: Portfolio Value - 208591569.51\n", - "2015-07-24 00:00:00: Portfolio Value - 204407208.05\n", - "2015-07-27 00:00:00: Portfolio Value - 202303065.69\n", - "2015-07-28 00:00:00: Portfolio Value - 206865356.23\n", - "2015-07-29 00:00:00: Portfolio Value - 208082699.79\n", - "2015-07-30 00:00:00: Portfolio Value - 209857986.15\n", - "2015-07-31 00:00:00: Portfolio Value - 211368265.39\n", - "2015-08-03 00:00:00: Portfolio Value - 210294401.76\n", - "2015-08-04 00:00:00: Portfolio Value - 212991262.21\n", - "2015-08-05 00:00:00: Portfolio Value - 216482815.90\n", - "2015-08-06 00:00:00: Portfolio Value - 213253583.13\n", - "2015-08-07 00:00:00: Portfolio Value - 212418445.31\n", - "2015-08-10 00:00:00: Portfolio Value - 215463849.44\n", - "2015-08-11 00:00:00: Portfolio Value - 212529298.27\n", - "2015-08-12 00:00:00: Portfolio Value - 213355216.37\n", - "2015-08-13 00:00:00: Portfolio Value - 213133120.93\n", - "2015-08-14 00:00:00: Portfolio Value - 214450054.78\n", - "2015-08-17 00:00:00: Portfolio Value - 216623868.07\n", - "2015-08-18 00:00:00: Portfolio Value - 215203792.63\n", - "2015-08-19 00:00:00: Portfolio Value - 212799155.84\n", - "2015-08-20 00:00:00: Portfolio Value - 204573175.97\n", - "2015-08-21 00:00:00: Portfolio Value - 194121999.15\n", - "2015-08-24 00:00:00: Portfolio Value - 180035784.59\n", - "2015-08-25 00:00:00: Portfolio Value - 176594768.29\n", - "2015-08-26 00:00:00: Portfolio Value - 189280167.01\n", - "2015-08-27 00:00:00: Portfolio Value - 196423661.51\n", - "2015-08-28 00:00:00: Portfolio Value - 197238142.85\n", - "2015-08-31 00:00:00: Portfolio Value - 193004155.40\n", - "2015-09-01 00:00:00: Portfolio Value - 182764266.45\n", - "2015-09-02 00:00:00: Portfolio Value - 189851579.94\n", - "2015-09-03 00:00:00: Portfolio Value - 189251442.95\n", - "2015-09-04 00:00:00: Portfolio Value - 184603749.43\n", - "2015-09-08 00:00:00: Portfolio Value - 195174227.09\n", - "2015-09-09 00:00:00: Portfolio Value - 190640467.10\n", - "2015-09-10 00:00:00: Portfolio Value - 190924485.22\n", - "2015-09-11 00:00:00: Portfolio Value - 193154820.99\n", - "2015-09-14 00:00:00: Portfolio Value - 191613423.21\n", - "2015-09-15 00:00:00: Portfolio Value - 195875096.29\n", - "2015-09-16 00:00:00: Portfolio Value - 199035959.62\n", - "2015-09-17 00:00:00: Portfolio Value - 200502471.72\n", - "2015-09-18 00:00:00: Portfolio Value - 195549072.22\n", - "2015-09-21 00:00:00: Portfolio Value - 194782113.20\n", - "2015-09-22 00:00:00: Portfolio Value - 190781964.58\n", - "2015-09-23 00:00:00: Portfolio Value - 190906637.00\n", - "2015-09-24 00:00:00: Portfolio Value - 189108145.75\n", - "2015-09-25 00:00:00: Portfolio Value - 186668361.67\n", - "2015-09-28 00:00:00: Portfolio Value - 175201966.13\n", - "2015-09-29 00:00:00: Portfolio Value - 174962056.94\n", - "2015-09-30 00:00:00: Portfolio Value - 181945295.38\n", - "2015-10-01 00:00:00: Portfolio Value - 182475481.53\n", - "2015-10-02 00:00:00: Portfolio Value - 188108775.47\n", - "2015-10-05 00:00:00: Portfolio Value - 192864862.47\n", - "2015-10-06 00:00:00: Portfolio Value - 189056366.21\n", - "2015-10-07 00:00:00: Portfolio Value - 193715095.55\n", - "2015-10-08 00:00:00: Portfolio Value - 196657586.91\n", - "2015-10-09 00:00:00: Portfolio Value - 198611282.17\n", - "2015-10-12 00:00:00: Portfolio Value - 200652430.26\n", - "2015-10-13 00:00:00: Portfolio Value - 196838198.09\n", - "2015-10-14 00:00:00: Portfolio Value - 195133772.29\n", - "2015-10-15 00:00:00: Portfolio Value - 199683066.95\n", - "2015-10-16 00:00:00: Portfolio Value - 200320616.88\n", - "2015-10-19 00:00:00: Portfolio Value - 201595289.13\n", - "2015-10-20 00:00:00: Portfolio Value - 199141702.84\n", - "2015-10-21 00:00:00: Portfolio Value - 197352072.19\n", - "2015-10-22 00:00:00: Portfolio Value - 201843225.94\n", - "2015-10-23 00:00:00: Portfolio Value - 204891584.20\n", - "2015-10-26 00:00:00: Portfolio Value - 206430996.18\n", - "2015-10-27 00:00:00: Portfolio Value - 207435903.75\n", - "2015-10-28 00:00:00: Portfolio Value - 210291828.38\n", - "2015-10-29 00:00:00: Portfolio Value - 208793330.56\n", - "2015-10-30 00:00:00: Portfolio Value - 208558142.87\n", - "2015-11-02 00:00:00: Portfolio Value - 213898672.07\n", - "2015-11-03 00:00:00: Portfolio Value - 214204185.19\n", - "2015-11-04 00:00:00: Portfolio Value - 212922150.47\n", - "2015-11-05 00:00:00: Portfolio Value - 212790092.86\n", - "2015-11-06 00:00:00: Portfolio Value - 211245295.80\n", - "2015-11-09 00:00:00: Portfolio Value - 207748428.74\n", - "2015-11-10 00:00:00: Portfolio Value - 209674404.43\n", - "2015-11-11 00:00:00: Portfolio Value - 208516281.61\n", - "2015-11-12 00:00:00: Portfolio Value - 202486470.63\n", - "2015-11-13 00:00:00: Portfolio Value - 197932382.14\n", - "2015-11-16 00:00:00: Portfolio Value - 203906020.35\n", - "2015-11-17 00:00:00: Portfolio Value - 204941142.37\n", - "2015-11-18 00:00:00: Portfolio Value - 210778732.91\n", - "2015-11-19 00:00:00: Portfolio Value - 210821523.20\n", - "2015-11-20 00:00:00: Portfolio Value - 211820556.48\n", - "2015-11-23 00:00:00: Portfolio Value - 211995536.92\n", - "2015-11-24 00:00:00: Portfolio Value - 211587021.08\n", - "2015-11-25 00:00:00: Portfolio Value - 211705123.71\n", - "2015-11-27 00:00:00: Portfolio Value - 212828010.13\n", - "2015-11-30 00:00:00: Portfolio Value - 209583154.89\n", - "2015-12-01 00:00:00: Portfolio Value - 213149290.22\n", - "2015-12-02 00:00:00: Portfolio Value - 211204582.09\n", - "2015-12-03 00:00:00: Portfolio Value - 205996614.07\n", - "2015-12-04 00:00:00: Portfolio Value - 215484281.75\n", - "2015-12-07 00:00:00: Portfolio Value - 213185687.99\n", - "2015-12-08 00:00:00: Portfolio Value - 212690806.42\n", - "2015-12-09 00:00:00: Portfolio Value - 208897458.36\n", - "2015-12-10 00:00:00: Portfolio Value - 209010183.89\n", - "2015-12-11 00:00:00: Portfolio Value - 202951410.21\n", - "2015-12-14 00:00:00: Portfolio Value - 205282138.32\n", - "2015-12-15 00:00:00: Portfolio Value - 210889245.30\n", - "2015-12-16 00:00:00: Portfolio Value - 216743271.90\n", - "2015-12-17 00:00:00: Portfolio Value - 211972376.95\n", - "2015-12-18 00:00:00: Portfolio Value - 206699183.12\n", - "2015-12-21 00:00:00: Portfolio Value - 208241893.41\n", - "2015-12-22 00:00:00: Portfolio Value - 210084769.11\n", - "2015-12-23 00:00:00: Portfolio Value - 214122796.81\n", - "2015-12-24 00:00:00: Portfolio Value - 214016360.30\n", - "2015-12-28 00:00:00: Portfolio Value - 213963822.67\n", - "2015-12-29 00:00:00: Portfolio Value - 217695126.73\n", - "2015-12-30 00:00:00: Portfolio Value - 215680711.28\n", - "2015-12-31 00:00:00: Portfolio Value - 212082313.29\n", - "2016-01-04 00:00:00: Portfolio Value - 204801809.02\n", - "2016-01-05 00:00:00: Portfolio Value - 205831525.13\n", - "2016-01-06 00:00:00: Portfolio Value - 204056455.82\n", - "2016-01-07 00:00:00: Portfolio Value - 195725642.53\n", - "2016-01-08 00:00:00: Portfolio Value - 192313579.63\n", - "2016-01-11 00:00:00: Portfolio Value - 190709278.43\n", - "2016-01-12 00:00:00: Portfolio Value - 192398992.33\n", - "2016-01-13 00:00:00: Portfolio Value - 183351679.37\n", - "2016-01-14 00:00:00: Portfolio Value - 188344000.19\n", - "2016-01-15 00:00:00: Portfolio Value - 181582996.59\n", - "2016-01-19 00:00:00: Portfolio Value - 182317842.71\n", - "2016-01-20 00:00:00: Portfolio Value - 179860531.31\n", - "2016-01-21 00:00:00: Portfolio Value - 180670848.35\n", - "2016-01-22 00:00:00: Portfolio Value - 188562037.77\n", - "2016-01-25 00:00:00: Portfolio Value - 184065800.45\n", - "2016-01-26 00:00:00: Portfolio Value - 187366711.53\n", - "2016-01-27 00:00:00: Portfolio Value - 182446432.16\n", - "2016-01-28 00:00:00: Portfolio Value - 180732829.39\n", - "2016-01-29 00:00:00: Portfolio Value - 189541304.43\n", - "2016-02-01 00:00:00: Portfolio Value - 190525607.06\n", - "2016-02-02 00:00:00: Portfolio Value - 183387677.95\n", - "2016-02-03 00:00:00: Portfolio Value - 185085201.18\n", - "2016-02-04 00:00:00: Portfolio Value - 183914679.12\n", - "2016-02-05 00:00:00: Portfolio Value - 177753025.66\n", - "2016-02-08 00:00:00: Portfolio Value - 173492645.78\n", - "2016-02-09 00:00:00: Portfolio Value - 172068937.27\n", - "2016-02-10 00:00:00: Portfolio Value - 174474555.16\n", - "2016-02-11 00:00:00: Portfolio Value - 170071907.62\n", - "2016-02-12 00:00:00: Portfolio Value - 176661171.62\n", - "2016-02-16 00:00:00: Portfolio Value - 182831172.15\n", - "2016-02-17 00:00:00: Portfolio Value - 186953081.22\n", - "2016-02-18 00:00:00: Portfolio Value - 185408874.10\n", - "2016-02-19 00:00:00: Portfolio Value - 185719229.74\n", - "2016-02-22 00:00:00: Portfolio Value - 190065661.52\n", - "2016-02-23 00:00:00: Portfolio Value - 187629042.96\n", - "2016-02-24 00:00:00: Portfolio Value - 190545610.45\n", - "2016-02-25 00:00:00: Portfolio Value - 195262708.26\n", - "2016-02-26 00:00:00: Portfolio Value - 193180994.83\n", - "2016-02-29 00:00:00: Portfolio Value - 190818852.53\n", - "2016-03-01 00:00:00: Portfolio Value - 197770641.31\n", - "2016-03-02 00:00:00: Portfolio Value - 198466440.56\n", - "2016-03-03 00:00:00: Portfolio Value - 199093616.47\n", - "2016-03-04 00:00:00: Portfolio Value - 199708068.20\n", - "2016-03-07 00:00:00: Portfolio Value - 198962048.19\n", - "2016-03-08 00:00:00: Portfolio Value - 195507167.41\n", - "2016-03-09 00:00:00: Portfolio Value - 195270180.68\n", - "2016-03-10 00:00:00: Portfolio Value - 196698271.90\n", - "2016-03-11 00:00:00: Portfolio Value - 203027010.72\n", - "2016-03-14 00:00:00: Portfolio Value - 202061898.66\n", - "2016-03-15 00:00:00: Portfolio Value - 199810251.52\n", - "2016-03-16 00:00:00: Portfolio Value - 201849858.68\n", - "2016-03-17 00:00:00: Portfolio Value - 202664960.53\n", - "2016-03-18 00:00:00: Portfolio Value - 205067678.67\n", - "2016-03-21 00:00:00: Portfolio Value - 205361265.94\n", - "2016-03-22 00:00:00: Portfolio Value - 205710150.10\n", - "2016-03-23 00:00:00: Portfolio Value - 203121895.30\n", - "2016-03-24 00:00:00: Portfolio Value - 203201751.61\n", - "2016-03-28 00:00:00: Portfolio Value - 203455510.92\n", - "2016-03-29 00:00:00: Portfolio Value - 207949576.74\n", - "2016-03-30 00:00:00: Portfolio Value - 209017458.02\n", - "2016-03-31 00:00:00: Portfolio Value - 209694638.43\n", - "2016-04-01 00:00:00: Portfolio Value - 215160281.33\n", - "2016-04-04 00:00:00: Portfolio Value - 213871149.16\n", - "2016-04-05 00:00:00: Portfolio Value - 209531110.82\n", - "2016-04-06 00:00:00: Portfolio Value - 214467848.14\n", - "2016-04-07 00:00:00: Portfolio Value - 211402099.52\n", - "2016-04-08 00:00:00: Portfolio Value - 211035020.51\n", - "2016-04-11 00:00:00: Portfolio Value - 209023115.50\n", - "2016-04-12 00:00:00: Portfolio Value - 212303436.50\n", - "2016-04-13 00:00:00: Portfolio Value - 215327872.97\n", - "2016-04-14 00:00:00: Portfolio Value - 214020892.57\n", - "2016-04-15 00:00:00: Portfolio Value - 214071410.53\n", - "2016-04-18 00:00:00: Portfolio Value - 216858343.03\n", - "2016-04-19 00:00:00: Portfolio Value - 215082941.89\n", - "2016-04-20 00:00:00: Portfolio Value - 213786523.67\n", - "2016-04-21 00:00:00: Portfolio Value - 210530839.77\n", - "2016-04-22 00:00:00: Portfolio Value - 210240044.98\n", - "2016-04-25 00:00:00: Portfolio Value - 210463497.50\n", - "2016-04-26 00:00:00: Portfolio Value - 211028539.08\n", - "2016-04-27 00:00:00: Portfolio Value - 211502773.80\n", - "2016-04-28 00:00:00: Portfolio Value - 207646470.01\n", - "2016-04-29 00:00:00: Portfolio Value - 205125364.74\n", - "2016-05-02 00:00:00: Portfolio Value - 209386889.72\n", - "2016-05-03 00:00:00: Portfolio Value - 205597041.31\n", - "2016-05-04 00:00:00: Portfolio Value - 203952849.83\n", - "2016-05-05 00:00:00: Portfolio Value - 204748789.79\n", - "2016-05-06 00:00:00: Portfolio Value - 204900133.71\n", - "2016-05-09 00:00:00: Portfolio Value - 206909949.68\n", - "2016-05-10 00:00:00: Portfolio Value - 211205181.53\n", - "2016-05-11 00:00:00: Portfolio Value - 206891119.06\n", - "2016-05-12 00:00:00: Portfolio Value - 206957858.24\n", - "2016-05-13 00:00:00: Portfolio Value - 205009849.25\n", - "2016-05-16 00:00:00: Portfolio Value - 209559984.02\n", - "2016-05-17 00:00:00: Portfolio Value - 205435829.35\n", - "2016-05-18 00:00:00: Portfolio Value - 205483133.78\n", - "2016-05-19 00:00:00: Portfolio Value - 204571599.92\n", - "2016-05-20 00:00:00: Portfolio Value - 206354433.39\n", - "2016-05-23 00:00:00: Portfolio Value - 206507014.27\n", - "2016-05-24 00:00:00: Portfolio Value - 211588694.89\n", - "2016-05-25 00:00:00: Portfolio Value - 213064504.80\n", - "2016-05-26 00:00:00: Portfolio Value - 214182055.71\n", - "2016-05-27 00:00:00: Portfolio Value - 217700795.18\n", - "2016-05-31 00:00:00: Portfolio Value - 217925262.68\n", - "2016-06-01 00:00:00: Portfolio Value - 219849354.36\n", - "2016-06-02 00:00:00: Portfolio Value - 221752713.27\n", - "2016-06-03 00:00:00: Portfolio Value - 220662367.95\n", - "2016-06-06 00:00:00: Portfolio Value - 222218944.53\n", - "2016-06-07 00:00:00: Portfolio Value - 222125475.50\n", - "2016-06-08 00:00:00: Portfolio Value - 223340970.25\n", - "2016-06-09 00:00:00: Portfolio Value - 224257647.94\n", - "2016-06-10 00:00:00: Portfolio Value - 220521629.86\n", - "2016-06-13 00:00:00: Portfolio Value - 217738860.29\n", - "2016-06-14 00:00:00: Portfolio Value - 217865378.70\n", - "2016-06-15 00:00:00: Portfolio Value - 216959221.59\n", - "2016-06-16 00:00:00: Portfolio Value - 218092381.54\n", - "2016-06-17 00:00:00: Portfolio Value - 216135736.18\n", - "2016-06-20 00:00:00: Portfolio Value - 218340335.07\n", - "2016-06-21 00:00:00: Portfolio Value - 218757351.63\n", - "2016-06-22 00:00:00: Portfolio Value - 218679552.05\n", - "2016-06-23 00:00:00: Portfolio Value - 223472454.59\n", - "2016-06-24 00:00:00: Portfolio Value - 211863002.05\n", - "2016-06-27 00:00:00: Portfolio Value - 205434600.15\n", - "2016-06-28 00:00:00: Portfolio Value - 211090692.77\n", - "2016-06-29 00:00:00: Portfolio Value - 217846580.01\n", - "2016-06-30 00:00:00: Portfolio Value - 224147217.79\n", - "2016-07-01 00:00:00: Portfolio Value - 225544108.15\n", - "2016-07-05 00:00:00: Portfolio Value - 224580258.11\n", - "2016-07-06 00:00:00: Portfolio Value - 226914668.06\n", - "2016-07-07 00:00:00: Portfolio Value - 226937394.74\n", - "2016-07-08 00:00:00: Portfolio Value - 232242602.46\n", - "2016-07-11 00:00:00: Portfolio Value - 233396353.72\n", - "2016-07-12 00:00:00: Portfolio Value - 234539280.93\n", - "2016-07-13 00:00:00: Portfolio Value - 234073361.35\n", - "2016-07-14 00:00:00: Portfolio Value - 235447576.54\n", - "2016-07-15 00:00:00: Portfolio Value - 235716038.67\n", - "2016-07-18 00:00:00: Portfolio Value - 237078723.55\n", - "2016-07-19 00:00:00: Portfolio Value - 235456166.46\n", - "2016-07-20 00:00:00: Portfolio Value - 237424385.84\n", - "2016-07-21 00:00:00: Portfolio Value - 237479810.76\n", - "2016-07-22 00:00:00: Portfolio Value - 240137302.19\n", - "2016-07-25 00:00:00: Portfolio Value - 240299542.66\n", - "2016-07-26 00:00:00: Portfolio Value - 241199550.06\n", - "2016-07-27 00:00:00: Portfolio Value - 239935882.36\n", - "2016-07-28 00:00:00: Portfolio Value - 240237407.49\n", - "2016-07-29 00:00:00: Portfolio Value - 241239979.48\n", - "2016-08-01 00:00:00: Portfolio Value - 242022564.52\n", - "2016-08-02 00:00:00: Portfolio Value - 238964047.83\n", - "2016-08-03 00:00:00: Portfolio Value - 240038907.24\n", - "2016-08-04 00:00:00: Portfolio Value - 240144862.84\n", - "2016-08-05 00:00:00: Portfolio Value - 241610560.68\n", - "2016-08-08 00:00:00: Portfolio Value - 240571146.74\n", - "2016-08-09 00:00:00: Portfolio Value - 240107156.73\n", - "2016-08-10 00:00:00: Portfolio Value - 239381427.17\n", - "2016-08-11 00:00:00: Portfolio Value - 241468457.19\n", - "2016-08-12 00:00:00: Portfolio Value - 241053691.10\n", - "2016-08-15 00:00:00: Portfolio Value - 241547724.21\n", - "2016-08-16 00:00:00: Portfolio Value - 237867560.59\n", - "2016-08-17 00:00:00: Portfolio Value - 237981647.69\n", - "2016-08-18 00:00:00: Portfolio Value - 240111954.79\n", - "2016-08-19 00:00:00: Portfolio Value - 238761436.40\n", - "2016-08-22 00:00:00: Portfolio Value - 240579224.64\n", - "2016-08-23 00:00:00: Portfolio Value - 240385689.14\n", - "2016-08-24 00:00:00: Portfolio Value - 237349909.00\n", - "2016-08-25 00:00:00: Portfolio Value - 236072231.15\n", - "2016-08-26 00:00:00: Portfolio Value - 233960280.45\n", - "2016-08-29 00:00:00: Portfolio Value - 236226466.16\n", - "2016-08-30 00:00:00: Portfolio Value - 234721624.35\n", - "2016-08-31 00:00:00: Portfolio Value - 233931054.87\n", - "2016-09-01 00:00:00: Portfolio Value - 233668180.73\n", - "2016-09-02 00:00:00: Portfolio Value - 234614780.24\n", - "2016-09-06 00:00:00: Portfolio Value - 236303567.12\n", - "2016-09-07 00:00:00: Portfolio Value - 236326712.53\n", - "2016-09-08 00:00:00: Portfolio Value - 235055039.23\n", - "2016-09-09 00:00:00: Portfolio Value - 224409468.92\n", - "2016-09-12 00:00:00: Portfolio Value - 231446563.65\n", - "2016-09-13 00:00:00: Portfolio Value - 225652161.37\n", - "2016-09-14 00:00:00: Portfolio Value - 226542082.76\n", - "2016-09-15 00:00:00: Portfolio Value - 229692426.28\n", - "2016-09-16 00:00:00: Portfolio Value - 229267499.47\n", - "2016-09-19 00:00:00: Portfolio Value - 229383303.93\n", - "2016-09-20 00:00:00: Portfolio Value - 229414527.45\n", - "2016-09-21 00:00:00: Portfolio Value - 233350263.20\n", - "2016-09-22 00:00:00: Portfolio Value - 236046312.18\n", - "2016-09-23 00:00:00: Portfolio Value - 234544720.07\n", - "2016-09-26 00:00:00: Portfolio Value - 231593974.97\n", - "2016-09-27 00:00:00: Portfolio Value - 235305894.99\n", - "2016-09-28 00:00:00: Portfolio Value - 235526444.74\n", - "2016-09-29 00:00:00: Portfolio Value - 230540743.65\n", - "2016-09-30 00:00:00: Portfolio Value - 233023748.76\n", - "2016-10-03 00:00:00: Portfolio Value - 231472364.91\n", - "2016-10-04 00:00:00: Portfolio Value - 228220065.65\n", - "2016-10-05 00:00:00: Portfolio Value - 229001603.13\n", - "2016-10-06 00:00:00: Portfolio Value - 229623739.85\n", - "2016-10-07 00:00:00: Portfolio Value - 228729487.27\n", - "2016-10-10 00:00:00: Portfolio Value - 230965394.36\n", - "2016-10-11 00:00:00: Portfolio Value - 224703457.69\n", - "2016-10-12 00:00:00: Portfolio Value - 224652667.09\n", - "2016-10-13 00:00:00: Portfolio Value - 226356189.55\n", - "2016-10-14 00:00:00: Portfolio Value - 225284012.65\n", - "2016-10-17 00:00:00: Portfolio Value - 223910869.77\n", - "2016-10-18 00:00:00: Portfolio Value - 227429139.64\n", - "2016-10-19 00:00:00: Portfolio Value - 228304523.36\n", - "2016-10-20 00:00:00: Portfolio Value - 228285094.90\n", - "2016-10-21 00:00:00: Portfolio Value - 226734567.36\n", - "2016-10-24 00:00:00: Portfolio Value - 227824217.36\n", - "2016-10-25 00:00:00: Portfolio Value - 226698738.06\n", - "2016-10-26 00:00:00: Portfolio Value - 226048415.26\n", - "2016-10-27 00:00:00: Portfolio Value - 224300469.86\n", - "2016-10-28 00:00:00: Portfolio Value - 225818203.39\n", - "2016-10-31 00:00:00: Portfolio Value - 226703393.91\n", - "2016-11-01 00:00:00: Portfolio Value - 224037611.54\n", - "2016-11-02 00:00:00: Portfolio Value - 221016626.43\n", - "2016-11-03 00:00:00: Portfolio Value - 218197106.84\n", - "2016-11-04 00:00:00: Portfolio Value - 218560190.84\n", - "2016-11-07 00:00:00: Portfolio Value - 227272055.92\n", - "2016-11-08 00:00:00: Portfolio Value - 229917611.18\n", - "2016-11-09 00:00:00: Portfolio Value - 235787888.74\n", - "2016-11-10 00:00:00: Portfolio Value - 234614233.09\n", - "2016-11-11 00:00:00: Portfolio Value - 234530397.63\n", - "2016-11-14 00:00:00: Portfolio Value - 236586093.75\n", - "2016-11-15 00:00:00: Portfolio Value - 238728043.45\n", - "2016-11-16 00:00:00: Portfolio Value - 237426193.40\n", - "2016-11-17 00:00:00: Portfolio Value - 239582450.93\n", - "2016-11-18 00:00:00: Portfolio Value - 238478160.82\n", - "2016-11-21 00:00:00: Portfolio Value - 242133457.26\n", - "2016-11-22 00:00:00: Portfolio Value - 243005416.89\n", - "2016-11-23 00:00:00: Portfolio Value - 243664910.44\n", - "2016-11-25 00:00:00: Portfolio Value - 245709885.14\n", - "2016-11-28 00:00:00: Portfolio Value - 243777116.78\n", - "2016-11-29 00:00:00: Portfolio Value - 244541190.25\n", - "2016-11-30 00:00:00: Portfolio Value - 240641438.31\n", - "2016-12-01 00:00:00: Portfolio Value - 237760859.13\n", - "2016-12-02 00:00:00: Portfolio Value - 238645251.34\n", - "2016-12-05 00:00:00: Portfolio Value - 240467651.57\n", - "2016-12-06 00:00:00: Portfolio Value - 242951045.91\n", - "2016-12-07 00:00:00: Portfolio Value - 246733279.23\n", - "2016-12-08 00:00:00: Portfolio Value - 247464384.37\n", - "2016-12-09 00:00:00: Portfolio Value - 249355859.78\n", - "2016-12-12 00:00:00: Portfolio Value - 250872807.22\n", - "2016-12-13 00:00:00: Portfolio Value - 252439430.66\n", - "2016-12-14 00:00:00: Portfolio Value - 249544026.01\n", - "2016-12-15 00:00:00: Portfolio Value - 251805185.11\n", - "2016-12-16 00:00:00: Portfolio Value - 252136779.64\n", - "2016-12-19 00:00:00: Portfolio Value - 251775447.92\n", - "2016-12-20 00:00:00: Portfolio Value - 253019140.50\n", - "2016-12-21 00:00:00: Portfolio Value - 252283936.78\n", - "2016-12-22 00:00:00: Portfolio Value - 251717438.01\n", - "2016-12-23 00:00:00: Portfolio Value - 253267928.55\n", - "2016-12-27 00:00:00: Portfolio Value - 254351715.21\n", - "2016-12-28 00:00:00: Portfolio Value - 250472672.53\n", - "2016-12-29 00:00:00: Portfolio Value - 251063718.60\n", - "2016-12-30 00:00:00: Portfolio Value - 248529979.26\n", - "2017-01-03 00:00:00: Portfolio Value - 251895316.98\n", - "2017-01-04 00:00:00: Portfolio Value - 255484913.83\n", - "2017-01-05 00:00:00: Portfolio Value - 255451409.33\n", - "2017-01-06 00:00:00: Portfolio Value - 254639492.78\n", - "2017-01-09 00:00:00: Portfolio Value - 253266188.05\n", - "2017-01-10 00:00:00: Portfolio Value - 256183156.00\n", - "2017-01-11 00:00:00: Portfolio Value - 256487319.62\n", - "2017-01-12 00:00:00: Portfolio Value - 255462442.87\n", - "2017-01-13 00:00:00: Portfolio Value - 257114683.69\n", - "2017-01-17 00:00:00: Portfolio Value - 256475590.32\n", - "2017-01-18 00:00:00: Portfolio Value - 257263684.43\n", - "2017-01-19 00:00:00: Portfolio Value - 255401469.28\n", - "2017-01-20 00:00:00: Portfolio Value - 256904451.72\n", - "2017-01-23 00:00:00: Portfolio Value - 254760208.51\n", - "2017-01-24 00:00:00: Portfolio Value - 257434000.63\n", - "2017-01-25 00:00:00: Portfolio Value - 260368881.35\n", - "2017-01-26 00:00:00: Portfolio Value - 260463447.18\n", - "2017-01-27 00:00:00: Portfolio Value - 261157418.16\n", - "2017-01-30 00:00:00: Portfolio Value - 259177820.36\n", - "2017-01-31 00:00:00: Portfolio Value - 261262456.06\n", - "2017-02-01 00:00:00: Portfolio Value - 260313452.86\n", - "2017-02-02 00:00:00: Portfolio Value - 261921700.02\n", - "2017-02-03 00:00:00: Portfolio Value - 264880808.44\n", - "2017-02-06 00:00:00: Portfolio Value - 264205099.25\n", - "2017-02-07 00:00:00: Portfolio Value - 265100058.32\n", - "2017-02-08 00:00:00: Portfolio Value - 265135232.88\n", - "2017-02-09 00:00:00: Portfolio Value - 267949529.03\n", - "2017-02-10 00:00:00: Portfolio Value - 269163538.83\n", - "2017-02-13 00:00:00: Portfolio Value - 271532498.96\n", - "2017-02-14 00:00:00: Portfolio Value - 272959827.87\n", - "2017-02-15 00:00:00: Portfolio Value - 275560697.53\n", - "2017-02-16 00:00:00: Portfolio Value - 274101899.49\n", - "2017-02-17 00:00:00: Portfolio Value - 274556423.05\n", - "2017-02-21 00:00:00: Portfolio Value - 277408137.47\n", - "2017-02-22 00:00:00: Portfolio Value - 276752319.08\n", - "2017-02-23 00:00:00: Portfolio Value - 276257846.54\n", - "2017-02-24 00:00:00: Portfolio Value - 278743290.12\n", - "2017-02-27 00:00:00: Portfolio Value - 280225864.66\n", - "2017-02-28 00:00:00: Portfolio Value - 279307733.60\n", - "2017-03-01 00:00:00: Portfolio Value - 284421634.86\n", - "2017-03-02 00:00:00: Portfolio Value - 282616288.65\n", - "2017-03-03 00:00:00: Portfolio Value - 282497077.06\n", - "2017-03-06 00:00:00: Portfolio Value - 280761755.38\n", - "2017-03-07 00:00:00: Portfolio Value - 278836664.00\n", - "2017-03-08 00:00:00: Portfolio Value - 279051729.93\n", - "2017-03-09 00:00:00: Portfolio Value - 279355133.52\n", - "2017-03-10 00:00:00: Portfolio Value - 282592166.07\n", - "2017-03-13 00:00:00: Portfolio Value - 283770994.98\n", - "2017-03-14 00:00:00: Portfolio Value - 282363652.39\n", - "2017-03-15 00:00:00: Portfolio Value - 287144341.68\n", - "2017-03-16 00:00:00: Portfolio Value - 285068519.77\n", - "2017-03-17 00:00:00: Portfolio Value - 284666399.72\n", - "2017-03-20 00:00:00: Portfolio Value - 283583477.33\n", - "2017-03-21 00:00:00: Portfolio Value - 277730234.36\n", - "2017-03-22 00:00:00: Portfolio Value - 278837932.71\n", - "2017-03-23 00:00:00: Portfolio Value - 278095772.42\n", - "2017-03-24 00:00:00: Portfolio Value - 279009383.90\n", - "2017-03-27 00:00:00: Portfolio Value - 279859801.00\n", - "2017-03-28 00:00:00: Portfolio Value - 281880010.69\n", - "2017-03-29 00:00:00: Portfolio Value - 282472168.60\n", - "2017-03-30 00:00:00: Portfolio Value - 281320555.96\n", - "2017-03-31 00:00:00: Portfolio Value - 280624170.41\n", - "2017-04-03 00:00:00: Portfolio Value - 279706565.01\n", - "2017-04-04 00:00:00: Portfolio Value - 279576355.21\n", - "2017-04-05 00:00:00: Portfolio Value - 278225468.80\n", - "2017-04-06 00:00:00: Portfolio Value - 279435420.34\n", - "2017-04-07 00:00:00: Portfolio Value - 278558019.32\n", - "2017-04-10 00:00:00: Portfolio Value - 278475233.37\n", - "2017-04-11 00:00:00: Portfolio Value - 278206255.48\n", - "2017-04-12 00:00:00: Portfolio Value - 276969295.97\n", - "2017-04-13 00:00:00: Portfolio Value - 274609109.57\n", - "2017-04-17 00:00:00: Portfolio Value - 277032733.31\n", - "2017-04-18 00:00:00: Portfolio Value - 275056359.24\n", - "2017-04-19 00:00:00: Portfolio Value - 274274518.11\n", - "2017-04-20 00:00:00: Portfolio Value - 276471394.54\n", - "2017-04-21 00:00:00: Portfolio Value - 275277215.08\n", - "2017-04-24 00:00:00: Portfolio Value - 278385403.23\n", - "2017-04-25 00:00:00: Portfolio Value - 280807700.70\n", - "2017-04-26 00:00:00: Portfolio Value - 281003171.32\n", - "2017-04-27 00:00:00: Portfolio Value - 281966447.85\n", - "2017-04-28 00:00:00: Portfolio Value - 283938272.33\n", - "2017-05-01 00:00:00: Portfolio Value - 285043336.25\n", - "2017-05-02 00:00:00: Portfolio Value - 286462968.90\n", - "2017-05-03 00:00:00: Portfolio Value - 285829254.06\n", - "2017-05-04 00:00:00: Portfolio Value - 289844275.25\n", - "2017-05-05 00:00:00: Portfolio Value - 290484558.11\n", - "2017-05-08 00:00:00: Portfolio Value - 288018289.52\n", - "2017-05-09 00:00:00: Portfolio Value - 288755935.13\n", - "2017-05-10 00:00:00: Portfolio Value - 289911663.79\n", - "2017-05-11 00:00:00: Portfolio Value - 290039914.61\n", - "2017-05-12 00:00:00: Portfolio Value - 289695937.97\n", - "2017-05-15 00:00:00: Portfolio Value - 292467768.32\n", - "2017-05-16 00:00:00: Portfolio Value - 292115960.80\n", - "2017-05-17 00:00:00: Portfolio Value - 285418724.94\n", - "2017-05-18 00:00:00: Portfolio Value - 289385971.33\n", - "2017-05-19 00:00:00: Portfolio Value - 291100792.58\n", - "2017-05-22 00:00:00: Portfolio Value - 294911178.48\n", - "2017-05-23 00:00:00: Portfolio Value - 295801590.79\n", - "2017-05-24 00:00:00: Portfolio Value - 297364237.78\n", - "2017-05-25 00:00:00: Portfolio Value - 301314775.71\n", - "2017-05-26 00:00:00: Portfolio Value - 301834814.16\n", - "2017-05-30 00:00:00: Portfolio Value - 301400871.86\n", - "2017-05-31 00:00:00: Portfolio Value - 303278111.29\n", - "2017-06-01 00:00:00: Portfolio Value - 308265078.19\n", - "2017-06-02 00:00:00: Portfolio Value - 311795209.25\n", - "2017-06-05 00:00:00: Portfolio Value - 309987363.31\n", - "2017-06-06 00:00:00: Portfolio Value - 308085513.09\n", - "2017-06-07 00:00:00: Portfolio Value - 309418000.42\n", - "2017-06-08 00:00:00: Portfolio Value - 309820585.31\n", - "2017-06-09 00:00:00: Portfolio Value - 306916818.86\n", - "2017-06-12 00:00:00: Portfolio Value - 305456904.41\n", - "2017-06-13 00:00:00: Portfolio Value - 308203078.63\n", - "2017-06-14 00:00:00: Portfolio Value - 309086154.80\n", - "2017-06-15 00:00:00: Portfolio Value - 308162636.64\n", - "2017-06-16 00:00:00: Portfolio Value - 306723694.56\n", - "2017-06-19 00:00:00: Portfolio Value - 310641825.63\n", - "2017-06-20 00:00:00: Portfolio Value - 310201683.01\n", - "2017-06-21 00:00:00: Portfolio Value - 311957499.29\n", - "2017-06-22 00:00:00: Portfolio Value - 311903934.42\n", - "2017-06-23 00:00:00: Portfolio Value - 311986615.64\n", - "2017-06-26 00:00:00: Portfolio Value - 312866832.95\n", - "2017-06-27 00:00:00: Portfolio Value - 306902364.37\n", - "2017-06-28 00:00:00: Portfolio Value - 311077021.62\n", - "2017-06-29 00:00:00: Portfolio Value - 306670338.53\n", - "2017-06-30 00:00:00: Portfolio Value - 305714604.74\n", - "2017-07-03 00:00:00: Portfolio Value - 304774728.43\n", - "2017-07-05 00:00:00: Portfolio Value - 306039709.16\n", - "2017-07-06 00:00:00: Portfolio Value - 301972476.84\n", - "2017-07-07 00:00:00: Portfolio Value - 305975318.44\n", - "2017-07-10 00:00:00: Portfolio Value - 304847739.91\n", - "2017-07-11 00:00:00: Portfolio Value - 303396126.67\n", - "2017-07-12 00:00:00: Portfolio Value - 307666617.60\n", - "2017-07-13 00:00:00: Portfolio Value - 307444910.75\n", - "2017-07-14 00:00:00: Portfolio Value - 309578257.16\n", - "2017-07-17 00:00:00: Portfolio Value - 308807937.93\n", - "2017-07-18 00:00:00: Portfolio Value - 311034552.28\n", - "2017-07-19 00:00:00: Portfolio Value - 312526487.77\n", - "2017-07-20 00:00:00: Portfolio Value - 315051429.06\n", - "2017-07-21 00:00:00: Portfolio Value - 315128374.81\n", - "2017-07-24 00:00:00: Portfolio Value - 315445573.67\n", - "2017-07-25 00:00:00: Portfolio Value - 314085784.51\n", - "2017-07-26 00:00:00: Portfolio Value - 312042484.21\n", - "2017-07-27 00:00:00: Portfolio Value - 310228798.91\n", - "2017-07-28 00:00:00: Portfolio Value - 312162400.33\n", - "2017-07-31 00:00:00: Portfolio Value - 310742481.14\n", - "2017-08-01 00:00:00: Portfolio Value - 310385175.86\n", - "2017-08-02 00:00:00: Portfolio Value - 309152454.89\n", - "2017-08-03 00:00:00: Portfolio Value - 310185769.80\n", - "2017-08-04 00:00:00: Portfolio Value - 310969423.56\n", - "2017-08-07 00:00:00: Portfolio Value - 312804404.25\n", - "2017-08-08 00:00:00: Portfolio Value - 311297903.08\n", - "2017-08-09 00:00:00: Portfolio Value - 311093088.98\n", - "2017-08-10 00:00:00: Portfolio Value - 304341708.19\n", - "2017-08-11 00:00:00: Portfolio Value - 305691578.03\n", - "2017-08-14 00:00:00: Portfolio Value - 310041272.39\n", - "2017-08-15 00:00:00: Portfolio Value - 309490692.96\n", - "2017-08-16 00:00:00: Portfolio Value - 310495832.51\n", - "2017-08-17 00:00:00: Portfolio Value - 304096428.11\n", - "2017-08-18 00:00:00: Portfolio Value - 304287579.64\n", - "2017-08-21 00:00:00: Portfolio Value - 304292231.41\n", - "2017-08-22 00:00:00: Portfolio Value - 308676871.24\n", - "2017-08-23 00:00:00: Portfolio Value - 306270963.30\n", - "2017-08-24 00:00:00: Portfolio Value - 305068049.26\n", - "2017-08-25 00:00:00: Portfolio Value - 303239282.48\n", - "2017-08-28 00:00:00: Portfolio Value - 303908199.61\n", - "2017-08-29 00:00:00: Portfolio Value - 304314558.73\n", - "2017-08-30 00:00:00: Portfolio Value - 307516538.43\n", - "2017-08-31 00:00:00: Portfolio Value - 310911374.01\n", - "2017-09-01 00:00:00: Portfolio Value - 312589715.27\n", - "2017-09-05 00:00:00: Portfolio Value - 309898055.40\n", - "2017-09-06 00:00:00: Portfolio Value - 311763229.40\n", - "2017-09-07 00:00:00: Portfolio Value - 310745565.46\n", - "2017-09-08 00:00:00: Portfolio Value - 311786463.41\n", - "2017-09-11 00:00:00: Portfolio Value - 313295736.39\n", - "2017-09-12 00:00:00: Portfolio Value - 313844736.27\n", - "2017-09-13 00:00:00: Portfolio Value - 312035744.99\n", - "2017-09-14 00:00:00: Portfolio Value - 311719117.71\n", - "2017-09-15 00:00:00: Portfolio Value - 311738018.85\n", - "2017-09-18 00:00:00: Portfolio Value - 312385164.28\n", - "2017-09-19 00:00:00: Portfolio Value - 311725352.94\n", - "2017-09-20 00:00:00: Portfolio Value - 311813476.53\n", - "2017-09-21 00:00:00: Portfolio Value - 309484616.60\n", - "2017-09-22 00:00:00: Portfolio Value - 309750393.17\n", - "2017-09-25 00:00:00: Portfolio Value - 308270658.62\n", - "2017-09-26 00:00:00: Portfolio Value - 308820891.75\n", - "2017-09-27 00:00:00: Portfolio Value - 311265663.97\n", - "2017-09-28 00:00:00: Portfolio Value - 311630629.53\n", - "2017-09-29 00:00:00: Portfolio Value - 314767954.82\n", - "2017-10-02 00:00:00: Portfolio Value - 316553867.47\n", - "2017-10-03 00:00:00: Portfolio Value - 317065632.56\n", - "2017-10-04 00:00:00: Portfolio Value - 318521305.73\n", - "2017-10-05 00:00:00: Portfolio Value - 322133830.91\n", - "2017-10-06 00:00:00: Portfolio Value - 321964606.54\n", - "2017-10-09 00:00:00: Portfolio Value - 320542892.73\n", - "2017-10-10 00:00:00: Portfolio Value - 321459930.86\n", - "2017-10-11 00:00:00: Portfolio Value - 321714830.26\n", - "2017-10-12 00:00:00: Portfolio Value - 319235677.68\n", - "2017-10-13 00:00:00: Portfolio Value - 319926334.25\n", - "2017-10-16 00:00:00: Portfolio Value - 320927792.73\n", - "2017-10-17 00:00:00: Portfolio Value - 320914058.17\n", - "2017-10-18 00:00:00: Portfolio Value - 321292127.13\n", - "2017-10-19 00:00:00: Portfolio Value - 322215526.99\n", - "2017-10-20 00:00:00: Portfolio Value - 323471837.29\n", - "2017-10-23 00:00:00: Portfolio Value - 322764864.71\n", - "2017-10-24 00:00:00: Portfolio Value - 322278713.51\n", - "2017-10-25 00:00:00: Portfolio Value - 319385076.53\n", - "2017-10-26 00:00:00: Portfolio Value - 320726015.41\n", - "2017-10-27 00:00:00: Portfolio Value - 324244555.97\n", - "2017-10-30 00:00:00: Portfolio Value - 320920760.46\n", - "2017-10-31 00:00:00: Portfolio Value - 322196761.07\n", - "2017-11-01 00:00:00: Portfolio Value - 322198118.19\n", - "2017-11-02 00:00:00: Portfolio Value - 323720240.04\n", - "2017-11-03 00:00:00: Portfolio Value - 325816762.28\n", - "2017-11-06 00:00:00: Portfolio Value - 325203222.11\n", - "2017-11-07 00:00:00: Portfolio Value - 325221780.24\n", - "2017-11-08 00:00:00: Portfolio Value - 328344099.08\n", - "2017-11-09 00:00:00: Portfolio Value - 326320449.67\n", - "2017-11-10 00:00:00: Portfolio Value - 326096086.21\n", - "2017-11-13 00:00:00: Portfolio Value - 326859192.56\n", - "2017-11-14 00:00:00: Portfolio Value - 327264991.98\n", - "2017-11-15 00:00:00: Portfolio Value - 324109335.60\n", - "2017-11-16 00:00:00: Portfolio Value - 329781121.32\n", - "2017-11-17 00:00:00: Portfolio Value - 329241196.92\n", - "2017-11-20 00:00:00: Portfolio Value - 329217706.36\n", - "2017-11-21 00:00:00: Portfolio Value - 331367960.87\n", - "2017-11-22 00:00:00: Portfolio Value - 330792390.80\n", - "2017-11-24 00:00:00: Portfolio Value - 330753422.90\n", - "2017-11-27 00:00:00: Portfolio Value - 330081986.77\n", - "2017-11-28 00:00:00: Portfolio Value - 333736174.51\n", - "2017-11-29 00:00:00: Portfolio Value - 333260895.99\n", - "2017-11-30 00:00:00: Portfolio Value - 337222548.48\n", - "2017-12-01 00:00:00: Portfolio Value - 336177343.25\n", - "2017-12-04 00:00:00: Portfolio Value - 334144292.39\n", - "2017-12-05 00:00:00: Portfolio Value - 333237604.09\n", - "2017-12-06 00:00:00: Portfolio Value - 333485281.16\n", - "2017-12-07 00:00:00: Portfolio Value - 335562913.15\n", - "2017-12-08 00:00:00: Portfolio Value - 338904170.10\n", - "2017-12-11 00:00:00: Portfolio Value - 338706898.67\n", - "2017-12-12 00:00:00: Portfolio Value - 337870429.08\n", - "2017-12-13 00:00:00: Portfolio Value - 338698077.36\n", - "2017-12-14 00:00:00: Portfolio Value - 336683086.37\n", - "2017-12-15 00:00:00: Portfolio Value - 341594873.18\n", - "2017-12-18 00:00:00: Portfolio Value - 343366640.20\n", - "2017-12-19 00:00:00: Portfolio Value - 342555277.97\n", - "2017-12-20 00:00:00: Portfolio Value - 341464117.38\n", - "2017-12-21 00:00:00: Portfolio Value - 340788979.76\n", - "2017-12-22 00:00:00: Portfolio Value - 340738393.38\n", - "2017-12-26 00:00:00: Portfolio Value - 340448627.56\n", - "2017-12-27 00:00:00: Portfolio Value - 341219185.08\n", - "2017-12-28 00:00:00: Portfolio Value - 342222452.16\n", - "2017-12-29 00:00:00: Portfolio Value - 339413422.61\n", - "2018-01-02 00:00:00: Portfolio Value - 342539200.61\n", - "2018-01-03 00:00:00: Portfolio Value - 346735463.51\n", - "2018-01-04 00:00:00: Portfolio Value - 347395090.41\n", - "2018-01-05 00:00:00: Portfolio Value - 349917137.34\n", - "2018-01-08 00:00:00: Portfolio Value - 350368577.79\n", - "2018-01-09 00:00:00: Portfolio Value - 349863931.32\n", - "2018-01-10 00:00:00: Portfolio Value - 348142047.29\n", - "2018-01-11 00:00:00: Portfolio Value - 352269786.11\n", - "2018-01-12 00:00:00: Portfolio Value - 355067082.35\n", - "2018-01-16 00:00:00: Portfolio Value - 354443042.32\n", - "2018-01-17 00:00:00: Portfolio Value - 359081889.45\n", - "2018-01-18 00:00:00: Portfolio Value - 358695493.72\n", - "2018-01-19 00:00:00: Portfolio Value - 361254656.32\n", - "2018-01-22 00:00:00: Portfolio Value - 364706916.14\n", - "2018-01-23 00:00:00: Portfolio Value - 367939900.63\n", - "2018-01-24 00:00:00: Portfolio Value - 368753290.20\n", - "2018-01-25 00:00:00: Portfolio Value - 372161909.28\n", - "2018-01-26 00:00:00: Portfolio Value - 373819434.04\n", - "2018-01-29 00:00:00: Portfolio Value - 370863000.20\n", - "2018-01-30 00:00:00: Portfolio Value - 367023464.21\n", - "2018-01-31 00:00:00: Portfolio Value - 363799934.19\n", - "2018-02-01 00:00:00: Portfolio Value - 361364369.95\n", - "2018-02-02 00:00:00: Portfolio Value - 351641934.32\n", - "2018-02-05 00:00:00: Portfolio Value - 332804752.61\n", - "2018-02-06 00:00:00: Portfolio Value - 338871192.10\n", - "2018-02-07 00:00:00: Portfolio Value - 337930508.34\n", - "2018-02-08 00:00:00: Portfolio Value - 319791167.72\n", - "2018-02-09 00:00:00: Portfolio Value - 328357936.99\n", - "2018-02-12 00:00:00: Portfolio Value - 332865674.42\n", - "2018-02-13 00:00:00: Portfolio Value - 332496851.23\n", - "2018-02-14 00:00:00: Portfolio Value - 338730050.51\n", - "2018-02-15 00:00:00: Portfolio Value - 345131443.75\n", - "2018-02-16 00:00:00: Portfolio Value - 345765713.69\n", - "2018-02-20 00:00:00: Portfolio Value - 342264658.86\n", - "2018-02-21 00:00:00: Portfolio Value - 340143091.19\n", - "2018-02-22 00:00:00: Portfolio Value - 340476375.72\n", - "2018-02-23 00:00:00: Portfolio Value - 348443152.61\n", - "2018-02-26 00:00:00: Portfolio Value - 352570633.48\n", - "2018-02-27 00:00:00: Portfolio Value - 347071178.37\n", - "2018-02-28 00:00:00: Portfolio Value - 343565055.62\n", - "2018-03-01 00:00:00: Portfolio Value - 337979730.12\n", - "2018-03-02 00:00:00: Portfolio Value - 341797512.60\n", - "2018-03-05 00:00:00: Portfolio Value - 348838680.10\n", - "2018-03-06 00:00:00: Portfolio Value - 352027456.79\n", - "2018-03-07 00:00:00: Portfolio Value - 351616275.46\n", - "2018-03-08 00:00:00: Portfolio Value - 356600429.24\n", - "2018-03-09 00:00:00: Portfolio Value - 364792574.37\n", - "2018-03-12 00:00:00: Portfolio Value - 364932569.66\n", - "2018-03-13 00:00:00: Portfolio Value - 362113512.92\n", - "2018-03-14 00:00:00: Portfolio Value - 360224721.20\n", - "2018-03-15 00:00:00: Portfolio Value - 359666159.80\n", - "2018-03-16 00:00:00: Portfolio Value - 363323957.47\n", - "2018-03-19 00:00:00: Portfolio Value - 357585212.92\n", - "2018-03-20 00:00:00: Portfolio Value - 359273318.32\n", - "2018-03-21 00:00:00: Portfolio Value - 357036567.65\n", - "2018-03-22 00:00:00: Portfolio Value - 346544524.09\n", - "2018-03-23 00:00:00: Portfolio Value - 336781764.66\n", - "2018-03-26 00:00:00: Portfolio Value - 349589155.10\n", - "2018-03-27 00:00:00: Portfolio Value - 343283955.64\n", - "2018-03-28 00:00:00: Portfolio Value - 342382065.55\n", - "2018-03-29 00:00:00: Portfolio Value - 348845858.74\n", - "2018-04-02 00:00:00: Portfolio Value - 337610526.18\n", - "2018-04-03 00:00:00: Portfolio Value - 342716862.39\n", - "2018-04-04 00:00:00: Portfolio Value - 347884010.46\n", - "2018-04-05 00:00:00: Portfolio Value - 351298269.27\n", - "2018-04-06 00:00:00: Portfolio Value - 340055883.60\n", - "2018-04-09 00:00:00: Portfolio Value - 342656127.42\n", - "2018-04-10 00:00:00: Portfolio Value - 349900582.00\n", - "2018-04-11 00:00:00: Portfolio Value - 346618514.32\n", - "2018-04-12 00:00:00: Portfolio Value - 350975833.77\n", - "2018-04-13 00:00:00: Portfolio Value - 350106988.18\n", - "2018-04-16 00:00:00: Portfolio Value - 355188276.30\n", - "2018-04-17 00:00:00: Portfolio Value - 362024706.41\n", - "2018-04-18 00:00:00: Portfolio Value - 362930443.89\n", - "2018-04-19 00:00:00: Portfolio Value - 356994011.71\n", - "2018-04-20 00:00:00: Portfolio Value - 352411732.42\n", - "2018-04-23 00:00:00: Portfolio Value - 352326480.83\n", - "2018-04-24 00:00:00: Portfolio Value - 345904763.89\n", - "2018-04-25 00:00:00: Portfolio Value - 346946004.87\n", - "2018-04-26 00:00:00: Portfolio Value - 353323547.56\n", - "2018-04-27 00:00:00: Portfolio Value - 353056758.94\n", - "2018-04-30 00:00:00: Portfolio Value - 347913053.79\n", - "2018-05-01 00:00:00: Portfolio Value - 348742633.78\n", - "2018-05-02 00:00:00: Portfolio Value - 344701771.25\n", - "2018-05-03 00:00:00: Portfolio Value - 344568605.01\n", - "2018-05-04 00:00:00: Portfolio Value - 349381643.24\n", - "2018-05-07 00:00:00: Portfolio Value - 350818579.47\n", - "2018-05-08 00:00:00: Portfolio Value - 349000147.80\n", - "2018-05-09 00:00:00: Portfolio Value - 353306464.13\n", - "2018-05-10 00:00:00: Portfolio Value - 358261607.85\n", - "2018-05-11 00:00:00: Portfolio Value - 360637699.19\n", - "2018-05-14 00:00:00: Portfolio Value - 359692593.75\n", - "2018-05-15 00:00:00: Portfolio Value - 356575933.77\n", - "2018-05-16 00:00:00: Portfolio Value - 359445547.08\n", - "2018-05-17 00:00:00: Portfolio Value - 359857960.19\n", - "2018-05-18 00:00:00: Portfolio Value - 358364615.54\n", - "2018-05-21 00:00:00: Portfolio Value - 362491235.03\n", - "2018-05-22 00:00:00: Portfolio Value - 360589552.04\n", - "2018-05-23 00:00:00: Portfolio Value - 363782355.59\n", - "2018-05-24 00:00:00: Portfolio Value - 365277860.32\n", - "2018-05-25 00:00:00: Portfolio Value - 365162945.91\n", - "2018-05-29 00:00:00: Portfolio Value - 361873698.99\n", - "2018-05-30 00:00:00: Portfolio Value - 367915759.95\n", - "2018-05-31 00:00:00: Portfolio Value - 363606670.91\n", - "2018-06-01 00:00:00: Portfolio Value - 367673550.20\n", - "2018-06-04 00:00:00: Portfolio Value - 370729517.26\n", - "2018-06-05 00:00:00: Portfolio Value - 370695399.71\n", - "2018-06-06 00:00:00: Portfolio Value - 373716838.23\n", - "2018-06-07 00:00:00: Portfolio Value - 372289873.63\n", - "2018-06-08 00:00:00: Portfolio Value - 375194987.40\n", - "2018-06-11 00:00:00: Portfolio Value - 376206397.96\n", - "2018-06-12 00:00:00: Portfolio Value - 377901736.35\n", - "2018-06-13 00:00:00: Portfolio Value - 378940938.17\n", - "2018-06-14 00:00:00: Portfolio Value - 382054682.41\n", - "2018-06-15 00:00:00: Portfolio Value - 382662817.96\n", - "2018-06-18 00:00:00: Portfolio Value - 383182706.88\n", - "2018-06-19 00:00:00: Portfolio Value - 383984159.39\n", - "2018-06-20 00:00:00: Portfolio Value - 386340448.06\n", - "2018-06-21 00:00:00: Portfolio Value - 383722541.06\n", - "2018-06-22 00:00:00: Portfolio Value - 385320828.79\n", - "2018-06-25 00:00:00: Portfolio Value - 376017012.52\n", - "2018-06-26 00:00:00: Portfolio Value - 377736894.01\n", - "2018-06-27 00:00:00: Portfolio Value - 371721462.62\n", - "2018-06-28 00:00:00: Portfolio Value - 375872488.08\n", - "2018-06-29 00:00:00: Portfolio Value - 375599839.45\n", - "2018-07-02 00:00:00: Portfolio Value - 376134615.80\n", - "2018-07-03 00:00:00: Portfolio Value - 375204611.47\n", - "2018-07-05 00:00:00: Portfolio Value - 380343517.63\n", - "2018-07-06 00:00:00: Portfolio Value - 386221351.61\n", - "2018-07-09 00:00:00: Portfolio Value - 389800665.02\n", - "2018-07-10 00:00:00: Portfolio Value - 390980204.92\n", - "2018-07-11 00:00:00: Portfolio Value - 389223855.16\n", - "2018-07-12 00:00:00: Portfolio Value - 393007862.78\n", - "2018-07-13 00:00:00: Portfolio Value - 392995928.51\n", - "2018-07-16 00:00:00: Portfolio Value - 392217251.42\n", - "2018-07-17 00:00:00: Portfolio Value - 393550387.95\n", - "2018-07-18 00:00:00: Portfolio Value - 393446521.69\n", - "2018-07-19 00:00:00: Portfolio Value - 392949257.10\n", - "2018-07-20 00:00:00: Portfolio Value - 392226780.30\n", - "2018-07-23 00:00:00: Portfolio Value - 392205843.25\n", - "2018-07-24 00:00:00: Portfolio Value - 389901282.10\n", - "2018-07-25 00:00:00: Portfolio Value - 394663671.86\n", - "2018-07-26 00:00:00: Portfolio Value - 394334363.81\n", - "2018-07-27 00:00:00: Portfolio Value - 388908188.00\n", - "2018-07-30 00:00:00: Portfolio Value - 383357318.83\n", - "2018-07-31 00:00:00: Portfolio Value - 386694111.13\n", - "2018-08-01 00:00:00: Portfolio Value - 383792938.12\n", - "2018-08-02 00:00:00: Portfolio Value - 390768211.91\n", - "2018-08-03 00:00:00: Portfolio Value - 392418396.33\n", - "2018-08-06 00:00:00: Portfolio Value - 394802881.96\n", - "2018-08-07 00:00:00: Portfolio Value - 395445542.42\n", - "2018-08-08 00:00:00: Portfolio Value - 393792031.73\n", - "2018-08-09 00:00:00: Portfolio Value - 393248278.77\n", - "2018-08-10 00:00:00: Portfolio Value - 390760770.57\n", - "2018-08-13 00:00:00: Portfolio Value - 388095877.99\n", - "2018-08-14 00:00:00: Portfolio Value - 391332477.42\n", - "2018-08-15 00:00:00: Portfolio Value - 386518320.58\n", - "2018-08-16 00:00:00: Portfolio Value - 391360461.27\n", - "2018-08-17 00:00:00: Portfolio Value - 393846933.60\n", - "2018-08-20 00:00:00: Portfolio Value - 396958874.11\n", - "2018-08-21 00:00:00: Portfolio Value - 399024021.93\n", - "2018-08-22 00:00:00: Portfolio Value - 399840886.23\n", - "2018-08-23 00:00:00: Portfolio Value - 399295760.39\n", - "2018-08-24 00:00:00: Portfolio Value - 403878448.55\n", - "2018-08-27 00:00:00: Portfolio Value - 408679013.83\n", - "2018-08-28 00:00:00: Portfolio Value - 409666327.38\n", - "2018-08-29 00:00:00: Portfolio Value - 413384852.30\n", - "2018-08-30 00:00:00: Portfolio Value - 412193439.85\n", - "2018-08-31 00:00:00: Portfolio Value - 414737047.11\n", - "2018-09-04 00:00:00: Portfolio Value - 415467937.62\n", - "2018-09-05 00:00:00: Portfolio Value - 412106109.20\n", - "2018-09-06 00:00:00: Portfolio Value - 411244471.54\n", - "2018-09-07 00:00:00: Portfolio Value - 411292653.02\n", - "2018-09-10 00:00:00: Portfolio Value - 413813082.90\n", - "2018-09-11 00:00:00: Portfolio Value - 415554449.88\n", - "2018-09-12 00:00:00: Portfolio Value - 416271347.21\n", - "2018-09-13 00:00:00: Portfolio Value - 418814806.20\n", - "2018-09-14 00:00:00: Portfolio Value - 418577447.94\n", - "2018-09-17 00:00:00: Portfolio Value - 412794152.16\n", - "2018-09-18 00:00:00: Portfolio Value - 417472207.33\n", - "2018-09-19 00:00:00: Portfolio Value - 415673095.63\n", - "2018-09-20 00:00:00: Portfolio Value - 418475906.29\n", - "2018-09-21 00:00:00: Portfolio Value - 418902482.84\n", - "2018-09-24 00:00:00: Portfolio Value - 417570457.69\n", - "2018-09-25 00:00:00: Portfolio Value - 417795844.62\n", - "2018-09-26 00:00:00: Portfolio Value - 416544351.84\n", - "2018-09-27 00:00:00: Portfolio Value - 418472356.85\n", - "2018-09-28 00:00:00: Portfolio Value - 419030263.68\n", - "2018-10-01 00:00:00: Portfolio Value - 417888049.60\n", - "2018-10-02 00:00:00: Portfolio Value - 415581730.93\n", - "2018-10-03 00:00:00: Portfolio Value - 414612759.51\n", - "2018-10-04 00:00:00: Portfolio Value - 406682577.09\n", - "2018-10-05 00:00:00: Portfolio Value - 403310242.29\n", - "2018-10-08 00:00:00: Portfolio Value - 401855593.69\n", - "2018-10-09 00:00:00: Portfolio Value - 401964365.39\n", - "2018-10-10 00:00:00: Portfolio Value - 384382062.68\n", - "2018-10-11 00:00:00: Portfolio Value - 374740766.78\n", - "2018-10-12 00:00:00: Portfolio Value - 383273959.07\n", - "2018-10-15 00:00:00: Portfolio Value - 380813222.40\n", - "2018-10-16 00:00:00: Portfolio Value - 393583953.00\n", - "2018-10-17 00:00:00: Portfolio Value - 395875760.78\n", - "2018-10-18 00:00:00: Portfolio Value - 386026924.61\n", - "2018-10-19 00:00:00: Portfolio Value - 383797242.19\n", - "2018-10-22 00:00:00: Portfolio Value - 381889613.34\n", - "2018-10-23 00:00:00: Portfolio Value - 378087364.89\n", - "2018-10-24 00:00:00: Portfolio Value - 361891115.17\n", - "2018-10-25 00:00:00: Portfolio Value - 363465439.53\n", - "2018-10-26 00:00:00: Portfolio Value - 356200335.17\n", - "2018-10-29 00:00:00: Portfolio Value - 353265724.65\n", - "2018-10-30 00:00:00: Portfolio Value - 362598286.09\n", - "2018-10-31 00:00:00: Portfolio Value - 367250218.91\n", - "2018-11-01 00:00:00: Portfolio Value - 374727829.05\n", - "2018-11-02 00:00:00: Portfolio Value - 373063540.68\n", - "2018-11-05 00:00:00: Portfolio Value - 377086817.92\n", - "2018-11-06 00:00:00: Portfolio Value - 380113597.24\n", - "2018-11-07 00:00:00: Portfolio Value - 390038909.38\n", - "2018-11-08 00:00:00: Portfolio Value - 388674820.64\n", - "2018-11-09 00:00:00: Portfolio Value - 383760108.36\n", - "2018-11-12 00:00:00: Portfolio Value - 373585115.28\n", - "2018-11-13 00:00:00: Portfolio Value - 372974606.05\n", - "2018-11-14 00:00:00: Portfolio Value - 369790953.13\n", - "2018-11-15 00:00:00: Portfolio Value - 373276115.17\n", - "2018-11-16 00:00:00: Portfolio Value - 376291317.59\n", - "2018-11-19 00:00:00: Portfolio Value - 365651064.69\n", - "2018-11-20 00:00:00: Portfolio Value - 358439751.33\n", - "2018-11-21 00:00:00: Portfolio Value - 360418855.01\n", - "2018-11-23 00:00:00: Portfolio Value - 360459378.54\n", - "2018-11-26 00:00:00: Portfolio Value - 367168670.05\n", - "2018-11-27 00:00:00: Portfolio Value - 369040966.63\n", - "2018-11-28 00:00:00: Portfolio Value - 379372395.26\n", - "2018-11-29 00:00:00: Portfolio Value - 378393411.87\n", - "2018-11-30 00:00:00: Portfolio Value - 381393891.57\n", - "2018-12-03 00:00:00: Portfolio Value - 388084706.05\n", - "2018-12-04 00:00:00: Portfolio Value - 371300119.54\n", - "2018-12-06 00:00:00: Portfolio Value - 372225449.45\n", - "2018-12-07 00:00:00: Portfolio Value - 356328474.93\n", - "2018-12-10 00:00:00: Portfolio Value - 358401456.11\n", - "2018-12-11 00:00:00: Portfolio Value - 358784366.81\n", - "2018-12-12 00:00:00: Portfolio Value - 362275534.12\n", - "2018-12-13 00:00:00: Portfolio Value - 361840746.94\n", - "2018-12-14 00:00:00: Portfolio Value - 352585121.16\n", - "2018-12-17 00:00:00: Portfolio Value - 340263670.85\n", - "2018-12-18 00:00:00: Portfolio Value - 340231956.67\n", - "2018-12-19 00:00:00: Portfolio Value - 333811648.07\n", - "2018-12-20 00:00:00: Portfolio Value - 326562403.06\n", - "2018-12-21 00:00:00: Portfolio Value - 318472131.79\n", - "2018-12-24 00:00:00: Portfolio Value - 304830075.31\n", - "2018-12-26 00:00:00: Portfolio Value - 326782714.87\n", - "2018-12-27 00:00:00: Portfolio Value - 331388132.08\n", - "2018-12-28 00:00:00: Portfolio Value - 330260138.58\n", - "2018-12-31 00:00:00: Portfolio Value - 335693890.40\n", - "2019-01-02 00:00:00: Portfolio Value - 333228045.86\n", - "2019-01-03 00:00:00: Portfolio Value - 324794449.72\n", - "2019-01-04 00:00:00: Portfolio Value - 341152732.55\n", - "2019-01-07 00:00:00: Portfolio Value - 347097958.43\n", - "2019-01-08 00:00:00: Portfolio Value - 352337504.51\n", - "2019-01-09 00:00:00: Portfolio Value - 356053825.05\n", - "2019-01-10 00:00:00: Portfolio Value - 358909491.65\n", - "2019-01-11 00:00:00: Portfolio Value - 360067628.45\n", - "2019-01-14 00:00:00: Portfolio Value - 354484903.98\n", - "2019-01-15 00:00:00: Portfolio Value - 361658017.85\n", - "2019-01-16 00:00:00: Portfolio Value - 364518836.40\n", - "2019-01-17 00:00:00: Portfolio Value - 369880128.91\n", - "2019-01-18 00:00:00: Portfolio Value - 376078608.75\n", - "2019-01-22 00:00:00: Portfolio Value - 368524281.32\n", - "2019-01-23 00:00:00: Portfolio Value - 369639875.94\n", - "2019-01-24 00:00:00: Portfolio Value - 372527778.63\n", - "2019-01-25 00:00:00: Portfolio Value - 376106512.68\n", - "2019-01-28 00:00:00: Portfolio Value - 373207207.84\n", - "2019-01-29 00:00:00: Portfolio Value - 371654489.78\n", - "2019-01-30 00:00:00: Portfolio Value - 380427758.67\n", - "2019-01-31 00:00:00: Portfolio Value - 386775179.40\n", - "2019-02-01 00:00:00: Portfolio Value - 388026414.63\n", - "2019-02-04 00:00:00: Portfolio Value - 390907718.09\n", - "2019-02-05 00:00:00: Portfolio Value - 392624181.49\n", - "2019-02-06 00:00:00: Portfolio Value - 389492540.47\n", - "2019-02-07 00:00:00: Portfolio Value - 387073776.84\n", - "2019-02-08 00:00:00: Portfolio Value - 388584662.83\n", - "2019-02-11 00:00:00: Portfolio Value - 389974599.76\n", - "2019-02-12 00:00:00: Portfolio Value - 396828080.05\n", - "2019-02-13 00:00:00: Portfolio Value - 398282731.87\n", - "2019-02-14 00:00:00: Portfolio Value - 397503336.69\n", - "2019-02-15 00:00:00: Portfolio Value - 402651248.46\n", - "2019-02-19 00:00:00: Portfolio Value - 403945957.65\n", - "2019-02-20 00:00:00: Portfolio Value - 404446072.78\n", - "2019-02-21 00:00:00: Portfolio Value - 401910582.50\n", - "2019-02-22 00:00:00: Portfolio Value - 407058036.46\n", - "2019-02-25 00:00:00: Portfolio Value - 407020172.99\n", - "2019-02-26 00:00:00: Portfolio Value - 407465477.71\n", - "2019-02-27 00:00:00: Portfolio Value - 406987270.29\n", - "2019-02-28 00:00:00: Portfolio Value - 406915254.94\n", - "2019-03-01 00:00:00: Portfolio Value - 411362297.45\n", - "2019-03-04 00:00:00: Portfolio Value - 405949839.04\n", - "2019-03-05 00:00:00: Portfolio Value - 403932828.59\n", - "2019-03-06 00:00:00: Portfolio Value - 400710305.75\n", - "2019-03-07 00:00:00: Portfolio Value - 395401007.30\n", - "2019-03-08 00:00:00: Portfolio Value - 395169319.08\n", - "2019-03-11 00:00:00: Portfolio Value - 402322695.86\n", - "2019-03-12 00:00:00: Portfolio Value - 403777419.11\n", - "2019-03-13 00:00:00: Portfolio Value - 406865029.05\n", - "2019-03-14 00:00:00: Portfolio Value - 404380215.07\n", - "2019-03-15 00:00:00: Portfolio Value - 409387599.40\n", - "2019-03-18 00:00:00: Portfolio Value - 410383517.56\n", - "2019-03-19 00:00:00: Portfolio Value - 410077214.40\n", - "2019-03-20 00:00:00: Portfolio Value - 408806552.36\n", - "2019-03-21 00:00:00: Portfolio Value - 416872111.96\n", - "2019-03-22 00:00:00: Portfolio Value - 406247965.48\n", - "2019-03-25 00:00:00: Portfolio Value - 407764989.61\n", - "2019-03-26 00:00:00: Portfolio Value - 411904717.86\n", - "2019-03-27 00:00:00: Portfolio Value - 409139177.41\n", - "2019-03-28 00:00:00: Portfolio Value - 413775320.14\n", - "2019-03-29 00:00:00: Portfolio Value - 418821525.52\n", - "2019-04-01 00:00:00: Portfolio Value - 422754403.31\n", - "2019-04-02 00:00:00: Portfolio Value - 423489253.24\n", - "2019-04-03 00:00:00: Portfolio Value - 424491355.83\n", - "2019-04-04 00:00:00: Portfolio Value - 423857246.48\n", - "2019-04-05 00:00:00: Portfolio Value - 427757924.01\n", - "2019-04-08 00:00:00: Portfolio Value - 426844147.99\n", - "2019-04-09 00:00:00: Portfolio Value - 422835782.35\n", - "2019-04-10 00:00:00: Portfolio Value - 426863880.98\n", - "2019-04-11 00:00:00: Portfolio Value - 427195138.56\n", - "2019-04-12 00:00:00: Portfolio Value - 427040724.30\n", - "2019-04-15 00:00:00: Portfolio Value - 426810382.24\n", - "2019-04-16 00:00:00: Portfolio Value - 424979594.36\n", - "2019-04-17 00:00:00: Portfolio Value - 419179287.99\n", - "2019-04-18 00:00:00: Portfolio Value - 420675867.49\n", - "2019-04-22 00:00:00: Portfolio Value - 421286911.36\n", - "2019-04-23 00:00:00: Portfolio Value - 428313492.72\n", - "2019-04-24 00:00:00: Portfolio Value - 429198802.00\n", - "2019-04-25 00:00:00: Portfolio Value - 429572560.33\n", - "2019-04-26 00:00:00: Portfolio Value - 434510683.63\n", - "2019-04-29 00:00:00: Portfolio Value - 433542637.36\n", - "2019-04-30 00:00:00: Portfolio Value - 436322498.51\n", - "2019-05-01 00:00:00: Portfolio Value - 430336601.47\n", - "2019-05-02 00:00:00: Portfolio Value - 431758976.43\n", - "2019-05-03 00:00:00: Portfolio Value - 439408778.59\n", - "2019-05-06 00:00:00: Portfolio Value - 439499492.97\n", - "2019-05-07 00:00:00: Portfolio Value - 429621303.07\n", - "2019-05-08 00:00:00: Portfolio Value - 430459751.02\n", - "2019-05-09 00:00:00: Portfolio Value - 429391707.36\n", - "2019-05-10 00:00:00: Portfolio Value - 429414757.04\n", - "2019-05-13 00:00:00: Portfolio Value - 416486564.48\n", - "2019-05-14 00:00:00: Portfolio Value - 420595645.47\n", - "2019-05-15 00:00:00: Portfolio Value - 424955321.66\n", - "2019-05-16 00:00:00: Portfolio Value - 430625307.54\n", - "2019-05-17 00:00:00: Portfolio Value - 427145235.52\n", - "2019-05-20 00:00:00: Portfolio Value - 425451137.33\n", - "2019-05-21 00:00:00: Portfolio Value - 430491886.78\n", - "2019-05-22 00:00:00: Portfolio Value - 431503221.39\n", - "2019-05-23 00:00:00: Portfolio Value - 424293166.25\n", - "2019-05-24 00:00:00: Portfolio Value - 424903976.94\n", - "2019-05-28 00:00:00: Portfolio Value - 420279100.75\n", - "2019-05-29 00:00:00: Portfolio Value - 413864430.22\n", - "2019-05-30 00:00:00: Portfolio Value - 417192580.11\n", - "2019-05-31 00:00:00: Portfolio Value - 412493196.54\n", - "2019-06-03 00:00:00: Portfolio Value - 412830806.70\n", - "2019-06-04 00:00:00: Portfolio Value - 424353704.04\n", - "2019-06-05 00:00:00: Portfolio Value - 430479617.57\n", - "2019-06-06 00:00:00: Portfolio Value - 433744490.58\n", - "2019-06-07 00:00:00: Portfolio Value - 438392184.74\n", - "2019-06-10 00:00:00: Portfolio Value - 439968865.43\n", - "2019-06-11 00:00:00: Portfolio Value - 438164942.68\n", - "2019-06-12 00:00:00: Portfolio Value - 439582807.12\n", - "2019-06-13 00:00:00: Portfolio Value - 441544203.83\n", - "2019-06-14 00:00:00: Portfolio Value - 441207809.93\n", - "2019-06-17 00:00:00: Portfolio Value - 440326080.00\n", - "2019-06-18 00:00:00: Portfolio Value - 444880254.70\n", - "2019-06-19 00:00:00: Portfolio Value - 450026208.79\n", - "2019-06-20 00:00:00: Portfolio Value - 454588184.68\n", - "2019-06-21 00:00:00: Portfolio Value - 451560171.86\n", - "2019-06-24 00:00:00: Portfolio Value - 450745729.16\n", - "2019-06-25 00:00:00: Portfolio Value - 446022496.99\n", - "2019-06-26 00:00:00: Portfolio Value - 441034919.15\n", - "2019-06-27 00:00:00: Portfolio Value - 445906685.21\n", - "2019-06-28 00:00:00: Portfolio Value - 449254903.76\n", - "2019-07-01 00:00:00: Portfolio Value - 452117335.20\n", - "2019-07-02 00:00:00: Portfolio Value - 453763276.84\n", - "2019-07-03 00:00:00: Portfolio Value - 460221420.76\n", - "2019-07-05 00:00:00: Portfolio Value - 457807773.84\n", - "2019-07-08 00:00:00: Portfolio Value - 455609579.34\n", - "2019-07-09 00:00:00: Portfolio Value - 456908863.01\n", - "2019-07-10 00:00:00: Portfolio Value - 458339143.66\n", - "2019-07-11 00:00:00: Portfolio Value - 458040843.76\n", - "2019-07-12 00:00:00: Portfolio Value - 460535401.89\n", - "2019-07-15 00:00:00: Portfolio Value - 460535837.84\n", - "2019-07-16 00:00:00: Portfolio Value - 458389406.48\n", - "2019-07-17 00:00:00: Portfolio Value - 457577300.48\n", - "2019-07-18 00:00:00: Portfolio Value - 457594706.33\n", - "2019-07-19 00:00:00: Portfolio Value - 451451351.08\n", - "2019-07-22 00:00:00: Portfolio Value - 449886443.72\n", - "2019-07-23 00:00:00: Portfolio Value - 452971356.88\n", - "2019-07-24 00:00:00: Portfolio Value - 457345442.69\n", - "2019-07-25 00:00:00: Portfolio Value - 449998718.46\n", - "2019-07-26 00:00:00: Portfolio Value - 451810397.09\n", - "2019-07-29 00:00:00: Portfolio Value - 450258226.81\n", - "2019-07-30 00:00:00: Portfolio Value - 449161691.08\n", - "2019-07-31 00:00:00: Portfolio Value - 442583794.30\n", - "2019-08-01 00:00:00: Portfolio Value - 438928291.04\n", - "2019-08-02 00:00:00: Portfolio Value - 434694697.95\n", - "2019-08-05 00:00:00: Portfolio Value - 416896046.55\n", - "2019-08-06 00:00:00: Portfolio Value - 427489474.16\n", - "2019-08-07 00:00:00: Portfolio Value - 429116152.36\n", - "2019-08-08 00:00:00: Portfolio Value - 441158897.57\n", - "2019-08-09 00:00:00: Portfolio Value - 436692941.57\n", - "2019-08-12 00:00:00: Portfolio Value - 428829896.59\n", - "2019-08-13 00:00:00: Portfolio Value - 436261566.22\n", - "2019-08-14 00:00:00: Portfolio Value - 418642061.34\n", - "2019-08-15 00:00:00: Portfolio Value - 421876252.89\n", - "2019-08-16 00:00:00: Portfolio Value - 428979891.55\n", - "2019-08-19 00:00:00: Portfolio Value - 435028468.64\n", - "2019-08-20 00:00:00: Portfolio Value - 430522013.30\n", - "2019-08-21 00:00:00: Portfolio Value - 435090338.24\n", - "2019-08-22 00:00:00: Portfolio Value - 436153539.57\n", - "2019-08-23 00:00:00: Portfolio Value - 421310691.36\n", - "2019-08-26 00:00:00: Portfolio Value - 427199745.18\n", - "2019-08-27 00:00:00: Portfolio Value - 425171525.75\n", - "2019-08-28 00:00:00: Portfolio Value - 429105870.06\n", - "2019-08-29 00:00:00: Portfolio Value - 437153377.25\n", - "2019-08-30 00:00:00: Portfolio Value - 430776237.34\n", - "2019-09-03 00:00:00: Portfolio Value - 427832467.77\n", - "2019-09-04 00:00:00: Portfolio Value - 431952039.31\n", - "2019-09-05 00:00:00: Portfolio Value - 437526139.96\n", - "2019-09-06 00:00:00: Portfolio Value - 439154256.89\n", - "2019-09-09 00:00:00: Portfolio Value - 433680181.93\n", - "2019-09-10 00:00:00: Portfolio Value - 431693860.56\n", - "2019-09-11 00:00:00: Portfolio Value - 433687318.96\n", - "2019-09-12 00:00:00: Portfolio Value - 435610008.38\n", - "2019-09-13 00:00:00: Portfolio Value - 435014296.78\n", - "2019-09-16 00:00:00: Portfolio Value - 433554524.29\n", - "2019-09-17 00:00:00: Portfolio Value - 438830335.31\n", - "2019-09-18 00:00:00: Portfolio Value - 437738912.77\n", - "2019-09-19 00:00:00: Portfolio Value - 437298201.63\n", - "2019-09-20 00:00:00: Portfolio Value - 435024920.58\n", - "2019-09-23 00:00:00: Portfolio Value - 434983823.36\n", - "2019-09-24 00:00:00: Portfolio Value - 432400833.98\n", - "2019-09-25 00:00:00: Portfolio Value - 434680102.09\n", - "2019-09-26 00:00:00: Portfolio Value - 431721271.51\n", - "2019-09-27 00:00:00: Portfolio Value - 427134845.02\n", - "2019-09-30 00:00:00: Portfolio Value - 431291835.45\n", - "2019-10-01 00:00:00: Portfolio Value - 427127041.05\n", - "2019-10-02 00:00:00: Portfolio Value - 418116044.81\n", - "2019-10-03 00:00:00: Portfolio Value - 422485998.34\n", - "2019-10-04 00:00:00: Portfolio Value - 428452239.06\n", - "2019-10-07 00:00:00: Portfolio Value - 425796501.32\n", - "2019-10-08 00:00:00: Portfolio Value - 417912733.76\n", - "2019-10-09 00:00:00: Portfolio Value - 422544047.19\n", - "2019-10-10 00:00:00: Portfolio Value - 427689061.21\n", - "2019-10-11 00:00:00: Portfolio Value - 433208151.17\n", - "2019-10-14 00:00:00: Portfolio Value - 432304591.05\n", - "2019-10-15 00:00:00: Portfolio Value - 435081596.55\n", - "2019-10-16 00:00:00: Portfolio Value - 434905168.71\n", - "2019-10-17 00:00:00: Portfolio Value - 438297131.77\n", - "2019-10-18 00:00:00: Portfolio Value - 435397447.46\n", - "2019-10-21 00:00:00: Portfolio Value - 436384748.03\n", - "2019-10-22 00:00:00: Portfolio Value - 432390586.18\n", - "2019-10-23 00:00:00: Portfolio Value - 433097460.74\n", - "2019-10-24 00:00:00: Portfolio Value - 437266184.63\n", - "2019-10-25 00:00:00: Portfolio Value - 439080166.60\n", - "2019-10-28 00:00:00: Portfolio Value - 441078072.60\n", - "2019-10-29 00:00:00: Portfolio Value - 442677100.40\n", - "2019-10-30 00:00:00: Portfolio Value - 446441079.48\n", - "2019-10-31 00:00:00: Portfolio Value - 442192574.85\n", - "2019-11-01 00:00:00: Portfolio Value - 444964553.50\n", - "2019-11-04 00:00:00: Portfolio Value - 445396845.23\n", - "2019-11-05 00:00:00: Portfolio Value - 444955693.91\n", - "2019-11-06 00:00:00: Portfolio Value - 447056437.35\n", - "2019-11-07 00:00:00: Portfolio Value - 449178766.16\n", - "2019-11-08 00:00:00: Portfolio Value - 452417240.03\n", - "2019-11-11 00:00:00: Portfolio Value - 451729189.06\n", - "2019-11-12 00:00:00: Portfolio Value - 452867948.72\n", - "2019-11-13 00:00:00: Portfolio Value - 455200469.19\n", - "2019-11-14 00:00:00: Portfolio Value - 456098083.54\n", - "2019-11-15 00:00:00: Portfolio Value - 460359801.35\n", - "2019-11-18 00:00:00: Portfolio Value - 462148678.12\n", - "2019-11-19 00:00:00: Portfolio Value - 462731432.87\n", - "2019-11-20 00:00:00: Portfolio Value - 461729831.69\n", - "2019-11-21 00:00:00: Portfolio Value - 460233735.81\n", - "2019-11-22 00:00:00: Portfolio Value - 463268635.50\n", - "2019-11-25 00:00:00: Portfolio Value - 468907644.19\n", - "2019-11-26 00:00:00: Portfolio Value - 470613837.34\n", - "2019-11-27 00:00:00: Portfolio Value - 473846442.35\n", - "2019-11-29 00:00:00: Portfolio Value - 470960584.32\n", - "2019-12-02 00:00:00: Portfolio Value - 466532141.82\n", - "2019-12-03 00:00:00: Portfolio Value - 463558502.36\n", - "2019-12-04 00:00:00: Portfolio Value - 467621063.92\n", - "2019-12-05 00:00:00: Portfolio Value - 467859583.91\n", - "2019-12-06 00:00:00: Portfolio Value - 474073959.34\n", - "2019-12-09 00:00:00: Portfolio Value - 469756221.09\n", - "2019-12-10 00:00:00: Portfolio Value - 468090546.34\n", - "2019-12-11 00:00:00: Portfolio Value - 471167246.52\n", - "2019-12-12 00:00:00: Portfolio Value - 473661862.85\n", - "2019-12-13 00:00:00: Portfolio Value - 473268098.22\n", - "2019-12-16 00:00:00: Portfolio Value - 477280330.10\n", - "2019-12-17 00:00:00: Portfolio Value - 478417926.43\n", - "2019-12-18 00:00:00: Portfolio Value - 478482681.94\n", - "2019-12-19 00:00:00: Portfolio Value - 481948360.28\n", - "2019-12-20 00:00:00: Portfolio Value - 486140335.33\n", - "2019-12-23 00:00:00: Portfolio Value - 484807198.21\n", - "2019-12-24 00:00:00: Portfolio Value - 485769100.42\n", - "2019-12-26 00:00:00: Portfolio Value - 486291577.11\n", - "2019-12-27 00:00:00: Portfolio Value - 486175862.52\n", - "2019-12-30 00:00:00: Portfolio Value - 483495528.84\n", - "2019-12-31 00:00:00: Portfolio Value - 485385565.61\n", - "2020-01-02 00:00:00: Portfolio Value - 488209009.54\n", - "2020-01-03 00:00:00: Portfolio Value - 483744706.32\n", - "2020-01-06 00:00:00: Portfolio Value - 486972148.30\n", - "2020-01-07 00:00:00: Portfolio Value - 485476123.96\n", - "2020-01-08 00:00:00: Portfolio Value - 489893193.64\n", - "2020-01-09 00:00:00: Portfolio Value - 494242192.23\n", - "2020-01-10 00:00:00: Portfolio Value - 492386947.57\n", - "2020-01-13 00:00:00: Portfolio Value - 498172747.20\n", - "2020-01-14 00:00:00: Portfolio Value - 499197869.20\n", - "2020-01-15 00:00:00: Portfolio Value - 500013945.14\n", - "2020-01-16 00:00:00: Portfolio Value - 505390281.28\n", - "2020-01-17 00:00:00: Portfolio Value - 506369118.44\n", - "2020-01-21 00:00:00: Portfolio Value - 502899366.59\n", - "2020-01-22 00:00:00: Portfolio Value - 503271755.97\n", - "2020-01-23 00:00:00: Portfolio Value - 505213034.15\n", - "2020-01-24 00:00:00: Portfolio Value - 500414210.31\n", - "2020-01-27 00:00:00: Portfolio Value - 491993542.82\n", - "2020-01-28 00:00:00: Portfolio Value - 498006630.26\n", - "2020-01-29 00:00:00: Portfolio Value - 496740831.11\n", - "2020-01-30 00:00:00: Portfolio Value - 499904718.69\n", - "2020-01-31 00:00:00: Portfolio Value - 491047114.04\n", - "2020-02-03 00:00:00: Portfolio Value - 496400319.35\n", - "2020-02-04 00:00:00: Portfolio Value - 505450265.54\n", - "2020-02-05 00:00:00: Portfolio Value - 512545770.01\n", - "2020-02-06 00:00:00: Portfolio Value - 514335271.36\n", - "2020-02-07 00:00:00: Portfolio Value - 508692398.55\n", - "2020-02-10 00:00:00: Portfolio Value - 513070212.19\n", - "2020-02-11 00:00:00: Portfolio Value - 517716336.03\n", - "2020-02-12 00:00:00: Portfolio Value - 523089391.18\n", - "2020-02-13 00:00:00: Portfolio Value - 524216308.93\n", - "2020-02-14 00:00:00: Portfolio Value - 527444572.65\n", - "2020-02-18 00:00:00: Portfolio Value - 528694486.82\n", - "2020-02-19 00:00:00: Portfolio Value - 532198952.80\n", - "2020-02-20 00:00:00: Portfolio Value - 535281838.03\n", - "2020-02-21 00:00:00: Portfolio Value - 527311021.12\n", - "2020-02-24 00:00:00: Portfolio Value - 509988954.79\n", - "2020-02-25 00:00:00: Portfolio Value - 495413643.60\n", - "2020-02-26 00:00:00: Portfolio Value - 492132365.48\n", - "2020-02-27 00:00:00: Portfolio Value - 468755715.68\n", - "2020-02-28 00:00:00: Portfolio Value - 458052205.83\n", - "2020-03-02 00:00:00: Portfolio Value - 485777331.61\n", - "2020-03-03 00:00:00: Portfolio Value - 471305282.88\n", - "2020-03-04 00:00:00: Portfolio Value - 498327861.49\n", - "2020-03-05 00:00:00: Portfolio Value - 479791641.30\n", - "2020-03-06 00:00:00: Portfolio Value - 471787562.21\n", - "2020-03-09 00:00:00: Portfolio Value - 432557198.73\n", - "2020-03-10 00:00:00: Portfolio Value - 455214204.66\n", - "2020-03-11 00:00:00: Portfolio Value - 426330708.40\n", - "2020-03-12 00:00:00: Portfolio Value - 375611310.75\n", - "2020-03-13 00:00:00: Portfolio Value - 412962337.23\n", - "2020-03-16 00:00:00: Portfolio Value - 353238499.51\n", - "2020-03-17 00:00:00: Portfolio Value - 387409703.07\n", - "2020-03-18 00:00:00: Portfolio Value - 360060498.00\n", - "2020-03-19 00:00:00: Portfolio Value - 360804714.35\n", - "2020-03-20 00:00:00: Portfolio Value - 338768069.43\n", - "2020-03-23 00:00:00: Portfolio Value - 330455387.56\n", - "2020-03-24 00:00:00: Portfolio Value - 370025196.12\n", - "2020-03-25 00:00:00: Portfolio Value - 372720534.64\n", - "2020-03-26 00:00:00: Portfolio Value - 403515373.05\n", - "2020-03-27 00:00:00: Portfolio Value - 389800873.46\n", - "2020-03-30 00:00:00: Portfolio Value - 408470832.93\n", - "2020-03-31 00:00:00: Portfolio Value - 398632638.78\n", - "2020-04-01 00:00:00: Portfolio Value - 379151977.39\n", - "2020-04-02 00:00:00: Portfolio Value - 391187172.46\n", - "2020-04-03 00:00:00: Portfolio Value - 383088567.03\n", - "2020-04-06 00:00:00: Portfolio Value - 419515375.65\n", - "2020-04-07 00:00:00: Portfolio Value - 415816089.97\n", - "2020-04-08 00:00:00: Portfolio Value - 435014908.30\n", - "2020-04-09 00:00:00: Portfolio Value - 444578685.77\n", - "2020-04-13 00:00:00: Portfolio Value - 439091722.57\n", - "2020-04-14 00:00:00: Portfolio Value - 456569848.14\n", - "2020-04-15 00:00:00: Portfolio Value - 447600794.35\n", - "2020-04-16 00:00:00: Portfolio Value - 455781359.20\n", - "2020-04-17 00:00:00: Portfolio Value - 472090126.00\n", - "2020-04-20 00:00:00: Portfolio Value - 464925213.83\n", - "2020-04-21 00:00:00: Portfolio Value - 447007753.11\n", - "2020-04-22 00:00:00: Portfolio Value - 458445228.08\n", - "2020-04-23 00:00:00: Portfolio Value - 456120772.05\n", - "2020-04-24 00:00:00: Portfolio Value - 461527793.55\n", - "2020-04-27 00:00:00: Portfolio Value - 466374470.54\n", - "2020-04-28 00:00:00: Portfolio Value - 460826314.00\n", - "2020-04-29 00:00:00: Portfolio Value - 470185723.29\n", - "2020-04-30 00:00:00: Portfolio Value - 463560756.19\n", - "2020-05-01 00:00:00: Portfolio Value - 451214448.71\n", - "2020-05-04 00:00:00: Portfolio Value - 456360683.89\n", - "2020-05-05 00:00:00: Portfolio Value - 466238907.09\n", - "2020-05-06 00:00:00: Portfolio Value - 460911543.95\n", - "2020-05-07 00:00:00: Portfolio Value - 468635272.87\n", - "2020-05-08 00:00:00: Portfolio Value - 477112728.24\n", - "2020-05-11 00:00:00: Portfolio Value - 483118716.91\n", - "2020-05-12 00:00:00: Portfolio Value - 471066470.73\n", - "2020-05-13 00:00:00: Portfolio Value - 461403007.68\n", - "2020-05-14 00:00:00: Portfolio Value - 465013244.86\n", - "2020-05-15 00:00:00: Portfolio Value - 469101446.44\n", - "2020-05-18 00:00:00: Portfolio Value - 482617989.84\n", - "2020-05-19 00:00:00: Portfolio Value - 475619687.94\n", - "2020-05-20 00:00:00: Portfolio Value - 482729443.66\n", - "2020-05-21 00:00:00: Portfolio Value - 477160394.32\n", - "2020-05-22 00:00:00: Portfolio Value - 478380650.84\n", - "2020-05-26 00:00:00: Portfolio Value - 479440519.37\n", - "2020-05-27 00:00:00: Portfolio Value - 487142524.80\n", - "2020-05-28 00:00:00: Portfolio Value - 490562230.84\n", - "2020-05-29 00:00:00: Portfolio Value - 500887233.18\n", - "2020-06-01 00:00:00: Portfolio Value - 504013675.38\n", - "2020-06-02 00:00:00: Portfolio Value - 509512945.39\n", - "2020-06-03 00:00:00: Portfolio Value - 514560208.34\n", - "2020-06-04 00:00:00: Portfolio Value - 508298020.52\n", - "2020-06-05 00:00:00: Portfolio Value - 521128761.23\n", - "2020-06-08 00:00:00: Portfolio Value - 529670464.38\n", - "2020-06-09 00:00:00: Portfolio Value - 522661559.93\n", - "2020-06-10 00:00:00: Portfolio Value - 521185000.25\n", - "2020-06-11 00:00:00: Portfolio Value - 486845579.00\n", - "2020-06-12 00:00:00: Portfolio Value - 492227196.83\n", - "2020-06-15 00:00:00: Portfolio Value - 498911183.37\n", - "2020-06-16 00:00:00: Portfolio Value - 508134760.07\n", - "2020-06-17 00:00:00: Portfolio Value - 509409599.05\n", - "2020-06-18 00:00:00: Portfolio Value - 508608998.48\n", - "2020-06-19 00:00:00: Portfolio Value - 509384639.53\n", - "2020-06-22 00:00:00: Portfolio Value - 511460074.54\n", - "2020-06-23 00:00:00: Portfolio Value - 510820209.35\n", - "2020-06-24 00:00:00: Portfolio Value - 494763219.49\n", - "2020-06-25 00:00:00: Portfolio Value - 501576327.51\n", - "2020-06-26 00:00:00: Portfolio Value - 489336232.84\n", - "2020-06-29 00:00:00: Portfolio Value - 497674560.75\n", - "2020-06-30 00:00:00: Portfolio Value - 508599849.28\n", - "2020-07-01 00:00:00: Portfolio Value - 510408044.02\n", - "2020-07-02 00:00:00: Portfolio Value - 514629740.28\n", - "2020-07-06 00:00:00: Portfolio Value - 523596290.62\n", - "2020-07-07 00:00:00: Portfolio Value - 519020952.08\n", - "2020-07-08 00:00:00: Portfolio Value - 525401265.76\n", - "2020-07-09 00:00:00: Portfolio Value - 522559646.71\n", - "2020-07-10 00:00:00: Portfolio Value - 529519727.43\n", - "2020-07-13 00:00:00: Portfolio Value - 521627664.18\n", - "2020-07-14 00:00:00: Portfolio Value - 534919783.72\n", - "2020-07-15 00:00:00: Portfolio Value - 543862699.66\n", - "2020-07-16 00:00:00: Portfolio Value - 540765928.45\n", - "2020-07-17 00:00:00: Portfolio Value - 543197439.69\n", - "2020-07-20 00:00:00: Portfolio Value - 546439239.97\n", - "2020-07-21 00:00:00: Portfolio Value - 546392936.53\n", - "2020-07-22 00:00:00: Portfolio Value - 549950553.20\n", - "2020-07-23 00:00:00: Portfolio Value - 543535314.53\n", - "2020-07-24 00:00:00: Portfolio Value - 539195175.18\n", - "2020-07-27 00:00:00: Portfolio Value - 546545197.42\n", - "2020-07-28 00:00:00: Portfolio Value - 540378672.12\n", - "2020-07-29 00:00:00: Portfolio Value - 544912132.10\n", - "2020-07-30 00:00:00: Portfolio Value - 541160325.26\n", - "2020-07-31 00:00:00: Portfolio Value - 540163657.55\n", - "2020-08-03 00:00:00: Portfolio Value - 545049774.41\n", - "2020-08-04 00:00:00: Portfolio Value - 549952517.28\n", - "2020-08-05 00:00:00: Portfolio Value - 551756492.14\n", - "2020-08-06 00:00:00: Portfolio Value - 550016358.89\n", - "2020-08-07 00:00:00: Portfolio Value - 550885199.39\n", - "2020-08-10 00:00:00: Portfolio Value - 549847301.72\n", - "2020-08-11 00:00:00: Portfolio Value - 541212135.47\n", - "2020-08-12 00:00:00: Portfolio Value - 550469035.13\n", - "2020-08-13 00:00:00: Portfolio Value - 552941722.72\n", - "2020-08-14 00:00:00: Portfolio Value - 551681651.49\n", - "2020-08-17 00:00:00: Portfolio Value - 556368150.33\n", - "2020-08-18 00:00:00: Portfolio Value - 556548640.03\n", - "2020-08-19 00:00:00: Portfolio Value - 553553357.31\n", - "2020-08-20 00:00:00: Portfolio Value - 551479348.33\n", - "2020-08-21 00:00:00: Portfolio Value - 549814322.80\n", - "2020-08-24 00:00:00: Portfolio Value - 552589005.78\n", - "2020-08-25 00:00:00: Portfolio Value - 555649886.45\n", - "2020-08-26 00:00:00: Portfolio Value - 560562829.27\n", - "2020-08-27 00:00:00: Portfolio Value - 562174421.76\n", - "2020-08-28 00:00:00: Portfolio Value - 563613365.48\n", - "2020-08-31 00:00:00: Portfolio Value - 563538473.18\n", - "2020-09-01 00:00:00: Portfolio Value - 565246544.80\n", - "2020-09-02 00:00:00: Portfolio Value - 578596762.08\n", - "2020-09-03 00:00:00: Portfolio Value - 555432337.51\n", - "2020-09-04 00:00:00: Portfolio Value - 547971928.41\n", - "2020-09-08 00:00:00: Portfolio Value - 535260472.65\n", - "2020-09-09 00:00:00: Portfolio Value - 544988711.15\n", - "2020-09-10 00:00:00: Portfolio Value - 534880407.20\n", - "2020-09-11 00:00:00: Portfolio Value - 534458198.76\n", - "2020-09-14 00:00:00: Portfolio Value - 542730281.21\n", - "2020-09-15 00:00:00: Portfolio Value - 546975069.44\n", - "2020-09-16 00:00:00: Portfolio Value - 544874422.35\n", - "2020-09-17 00:00:00: Portfolio Value - 539285474.23\n", - "2020-09-18 00:00:00: Portfolio Value - 534019976.43\n", - "2020-09-21 00:00:00: Portfolio Value - 529749470.25\n", - "2020-09-22 00:00:00: Portfolio Value - 536212774.59\n", - "2020-09-23 00:00:00: Portfolio Value - 524984029.59\n", - "2020-09-24 00:00:00: Portfolio Value - 525068418.91\n", - "2020-09-25 00:00:00: Portfolio Value - 534923711.20\n", - "2020-09-28 00:00:00: Portfolio Value - 544350199.65\n", - "2020-09-29 00:00:00: Portfolio Value - 543026782.01\n", - "2020-09-30 00:00:00: Portfolio Value - 548163173.62\n", - "2020-10-01 00:00:00: Portfolio Value - 553634221.94\n", - "2020-10-02 00:00:00: Portfolio Value - 549234598.67\n", - "2020-10-05 00:00:00: Portfolio Value - 562048686.59\n", - "2020-10-06 00:00:00: Portfolio Value - 554365928.37\n", - "2020-10-07 00:00:00: Portfolio Value - 566370142.70\n", - "2020-10-08 00:00:00: Portfolio Value - 570144435.30\n", - "2020-10-09 00:00:00: Portfolio Value - 574284072.88\n", - "2020-10-12 00:00:00: Portfolio Value - 580550207.93\n", - "2020-10-13 00:00:00: Portfolio Value - 581422772.27\n", - "2020-10-14 00:00:00: Portfolio Value - 576528570.19\n", - "2020-10-15 00:00:00: Portfolio Value - 576238819.65\n", - "2020-10-16 00:00:00: Portfolio Value - 577803984.76\n", - "2020-10-19 00:00:00: Portfolio Value - 566761924.44\n", - "2020-10-20 00:00:00: Portfolio Value - 566191682.93\n", - "2020-10-21 00:00:00: Portfolio Value - 560366285.56\n", - "2020-10-22 00:00:00: Portfolio Value - 572899657.81\n", - "2020-10-23 00:00:00: Portfolio Value - 577310433.39\n", - "2020-10-26 00:00:00: Portfolio Value - 568484455.01\n", - "2020-10-27 00:00:00: Portfolio Value - 564224410.29\n", - "2020-10-28 00:00:00: Portfolio Value - 544534143.74\n", - "2020-10-29 00:00:00: Portfolio Value - 546088159.39\n", - "2020-10-30 00:00:00: Portfolio Value - 538722021.44\n", - "2020-11-02 00:00:00: Portfolio Value - 549944740.54\n", - "2020-11-03 00:00:00: Portfolio Value - 562965516.21\n", - "2020-11-04 00:00:00: Portfolio Value - 574486111.71\n", - "2020-11-05 00:00:00: Portfolio Value - 586877580.06\n", - "2020-11-06 00:00:00: Portfolio Value - 588296970.24\n", - "2020-11-09 00:00:00: Portfolio Value - 586695435.54\n", - "2020-11-10 00:00:00: Portfolio Value - 588807478.08\n", - "2020-11-11 00:00:00: Portfolio Value - 594851299.00\n", - "2020-11-12 00:00:00: Portfolio Value - 585734689.99\n", - "2020-11-13 00:00:00: Portfolio Value - 593780393.61\n", - "2020-11-16 00:00:00: Portfolio Value - 600502717.52\n", - "2020-11-17 00:00:00: Portfolio Value - 596328519.38\n", - "2020-11-18 00:00:00: Portfolio Value - 588848238.17\n", - "2020-11-19 00:00:00: Portfolio Value - 591218016.52\n", - "2020-11-20 00:00:00: Portfolio Value - 590246295.27\n", - "2020-11-23 00:00:00: Portfolio Value - 596453139.69\n", - "2020-11-24 00:00:00: Portfolio Value - 600666761.16\n", - "2020-11-25 00:00:00: Portfolio Value - 599981966.42\n", - "2020-11-27 00:00:00: Portfolio Value - 603155062.78\n", - "2020-11-30 00:00:00: Portfolio Value - 602951231.89\n", - "2020-12-01 00:00:00: Portfolio Value - 611324907.77\n", - "2020-12-02 00:00:00: Portfolio Value - 609408942.40\n", - "2020-12-03 00:00:00: Portfolio Value - 610124409.66\n", - "2020-12-04 00:00:00: Portfolio Value - 614818084.34\n", - "2020-12-07 00:00:00: Portfolio Value - 611954475.79\n", - "2020-12-08 00:00:00: Portfolio Value - 614257182.95\n", - "2020-12-09 00:00:00: Portfolio Value - 608977362.29\n", - "2020-12-10 00:00:00: Portfolio Value - 609160457.14\n", - "2020-12-11 00:00:00: Portfolio Value - 604420418.53\n", - "2020-12-14 00:00:00: Portfolio Value - 607333993.57\n", - "2020-12-15 00:00:00: Portfolio Value - 615055375.91\n", - "2020-12-16 00:00:00: Portfolio Value - 615397856.19\n", - "2020-12-17 00:00:00: Portfolio Value - 625360642.74\n", - "2020-12-18 00:00:00: Portfolio Value - 625189455.83\n", - "2020-12-21 00:00:00: Portfolio Value - 621066987.63\n", - "2020-12-22 00:00:00: Portfolio Value - 619357007.66\n", - "2020-12-23 00:00:00: Portfolio Value - 618849394.90\n", - "2020-12-24 00:00:00: Portfolio Value - 619244929.00\n", - "2020-12-28 00:00:00: Portfolio Value - 620861279.33\n", - "2020-12-29 00:00:00: Portfolio Value - 619176316.87\n", - "2020-12-30 00:00:00: Portfolio Value - 620545009.36\n", - "2020-12-31 00:00:00: Portfolio Value - 628202688.52\n", - "2021-01-04 00:00:00: Portfolio Value - 617174009.98\n", - "2021-01-05 00:00:00: Portfolio Value - 621843849.77\n", - "2021-01-06 00:00:00: Portfolio Value - 627196722.69\n", - "2021-01-07 00:00:00: Portfolio Value - 636126583.92\n", - "2021-01-08 00:00:00: Portfolio Value - 641052086.27\n", - "2021-01-11 00:00:00: Portfolio Value - 636694661.54\n", - "2021-01-12 00:00:00: Portfolio Value - 636254370.49\n", - "2021-01-13 00:00:00: Portfolio Value - 637235842.18\n", - "2021-01-14 00:00:00: Portfolio Value - 635208550.53\n", - "2021-01-15 00:00:00: Portfolio Value - 634797912.01\n", - "2021-01-19 00:00:00: Portfolio Value - 637185415.89\n", - "2021-01-20 00:00:00: Portfolio Value - 651600808.86\n", - "2021-01-21 00:00:00: Portfolio Value - 646756496.82\n", - "2021-01-22 00:00:00: Portfolio Value - 642927775.41\n", - "2021-01-25 00:00:00: Portfolio Value - 644786039.79\n", - "2021-01-26 00:00:00: Portfolio Value - 643285305.32\n", - "2021-01-27 00:00:00: Portfolio Value - 622356701.18\n", - "2021-01-28 00:00:00: Portfolio Value - 628530434.12\n", - "2021-01-29 00:00:00: Portfolio Value - 616930045.41\n", - "2021-02-01 00:00:00: Portfolio Value - 625492648.70\n", - "2021-02-02 00:00:00: Portfolio Value - 635239185.38\n", - "2021-02-03 00:00:00: Portfolio Value - 630550668.29\n", - "2021-02-04 00:00:00: Portfolio Value - 644173511.46\n", - "2021-02-05 00:00:00: Portfolio Value - 650529259.96\n", - "2021-02-08 00:00:00: Portfolio Value - 655723096.16\n", - "2021-02-09 00:00:00: Portfolio Value - 655643426.55\n", - "2021-02-10 00:00:00: Portfolio Value - 654175921.76\n", - "2021-02-11 00:00:00: Portfolio Value - 656001509.99\n", - "2021-02-12 00:00:00: Portfolio Value - 658340269.31\n", - "2021-02-16 00:00:00: Portfolio Value - 654826267.67\n", - "2021-02-17 00:00:00: Portfolio Value - 655549283.43\n", - "2021-02-18 00:00:00: Portfolio Value - 652115818.12\n", - "2021-02-19 00:00:00: Portfolio Value - 650465371.68\n", - "2021-02-22 00:00:00: Portfolio Value - 642851720.00\n", - "2021-02-23 00:00:00: Portfolio Value - 646337199.36\n", - "2021-02-24 00:00:00: Portfolio Value - 650359331.05\n", - "2021-02-25 00:00:00: Portfolio Value - 634466710.09\n", - "2021-02-26 00:00:00: Portfolio Value - 631846868.56\n", - "2021-03-01 00:00:00: Portfolio Value - 644985006.58\n", - "2021-03-02 00:00:00: Portfolio Value - 640232215.51\n", - "2021-03-03 00:00:00: Portfolio Value - 625384677.18\n", - "2021-03-04 00:00:00: Portfolio Value - 611799458.98\n", - "2021-03-05 00:00:00: Portfolio Value - 627390406.85\n", - "2021-03-08 00:00:00: Portfolio Value - 622174877.04\n", - "2021-03-09 00:00:00: Portfolio Value - 631066803.51\n", - "2021-03-10 00:00:00: Portfolio Value - 634805445.71\n", - "2021-03-11 00:00:00: Portfolio Value - 644236442.54\n", - "2021-03-12 00:00:00: Portfolio Value - 645550871.00\n", - "2021-03-15 00:00:00: Portfolio Value - 654226681.22\n", - "2021-03-16 00:00:00: Portfolio Value - 648962312.56\n", - "2021-03-17 00:00:00: Portfolio Value - 651664828.54\n", - "2021-03-18 00:00:00: Portfolio Value - 637170631.77\n", - "2021-03-19 00:00:00: Portfolio Value - 641336526.37\n", - "2021-03-22 00:00:00: Portfolio Value - 647571770.28\n", - "2021-03-23 00:00:00: Portfolio Value - 642471883.18\n", - "2021-03-24 00:00:00: Portfolio Value - 635627520.46\n", - "2021-03-25 00:00:00: Portfolio Value - 640379938.67\n", - "2021-03-26 00:00:00: Portfolio Value - 653943384.53\n", - "2021-03-29 00:00:00: Portfolio Value - 653782014.76\n", - "2021-03-30 00:00:00: Portfolio Value - 652923366.98\n", - "2021-03-31 00:00:00: Portfolio Value - 654192849.05\n", - "2021-04-01 00:00:00: Portfolio Value - 660906933.80\n", - "2021-04-05 00:00:00: Portfolio Value - 669420324.82\n", - "2021-04-06 00:00:00: Portfolio Value - 672065084.52\n", - "2021-04-07 00:00:00: Portfolio Value - 670015818.12\n", - "2021-04-08 00:00:00: Portfolio Value - 675577443.35\n", - "2021-04-09 00:00:00: Portfolio Value - 679886192.26\n", - "2021-04-12 00:00:00: Portfolio Value - 681629229.73\n", - "2021-04-13 00:00:00: Portfolio Value - 683277594.15\n", - "2021-04-14 00:00:00: Portfolio Value - 681596955.00\n", - "2021-04-15 00:00:00: Portfolio Value - 690795812.47\n", - "2021-04-16 00:00:00: Portfolio Value - 695839493.67\n", - "2021-04-19 00:00:00: Portfolio Value - 691978935.42\n", - "2021-04-20 00:00:00: Portfolio Value - 688487375.49\n", - "2021-04-21 00:00:00: Portfolio Value - 693753839.12\n", - "2021-04-22 00:00:00: Portfolio Value - 690232896.57\n", - "2021-04-23 00:00:00: Portfolio Value - 696936956.99\n", - "2021-04-26 00:00:00: Portfolio Value - 698351957.19\n", - "2021-04-27 00:00:00: Portfolio Value - 698589229.45\n", - "2021-04-28 00:00:00: Portfolio Value - 695287088.10\n", - "2021-04-29 00:00:00: Portfolio Value - 700255895.97\n", - "2021-04-30 00:00:00: Portfolio Value - 693594599.36\n", - "2021-05-03 00:00:00: Portfolio Value - 697395218.03\n", - "2021-05-04 00:00:00: Portfolio Value - 690757629.79\n", - "2021-05-05 00:00:00: Portfolio Value - 689204120.84\n", - "2021-05-06 00:00:00: Portfolio Value - 692857022.86\n", - "2021-05-07 00:00:00: Portfolio Value - 698487066.87\n", - "2021-05-10 00:00:00: Portfolio Value - 691854651.08\n", - "2021-05-11 00:00:00: Portfolio Value - 682713860.89\n", - "2021-05-12 00:00:00: Portfolio Value - 666384575.23\n", - "2021-05-13 00:00:00: Portfolio Value - 675894167.97\n", - "2021-05-14 00:00:00: Portfolio Value - 688419005.64\n", - "2021-05-17 00:00:00: Portfolio Value - 686608194.42\n", - "2021-05-18 00:00:00: Portfolio Value - 682127803.23\n", - "2021-05-19 00:00:00: Portfolio Value - 678780661.32\n", - "2021-05-20 00:00:00: Portfolio Value - 688702614.79\n", - "2021-05-21 00:00:00: Portfolio Value - 688109413.90\n", - "2021-05-24 00:00:00: Portfolio Value - 693049998.98\n", - "2021-05-25 00:00:00: Portfolio Value - 691143092.24\n", - "2021-05-26 00:00:00: Portfolio Value - 693928813.10\n", - "2021-05-27 00:00:00: Portfolio Value - 698005884.49\n", - "2021-05-28 00:00:00: Portfolio Value - 698862020.79\n", - "2021-06-01 00:00:00: Portfolio Value - 697700123.73\n", - "2021-06-02 00:00:00: Portfolio Value - 697081436.12\n", - "2021-06-03 00:00:00: Portfolio Value - 694713734.25\n", - "2021-06-04 00:00:00: Portfolio Value - 701292059.77\n", - "2021-06-07 00:00:00: Portfolio Value - 701710533.89\n", - "2021-06-08 00:00:00: Portfolio Value - 702336348.23\n", - "2021-06-09 00:00:00: Portfolio Value - 700933407.58\n", - "2021-06-10 00:00:00: Portfolio Value - 708790611.30\n", - "2021-06-11 00:00:00: Portfolio Value - 710229023.52\n", - "2021-06-14 00:00:00: Portfolio Value - 711017303.00\n", - "2021-06-15 00:00:00: Portfolio Value - 709407325.49\n", - "2021-06-16 00:00:00: Portfolio Value - 704725285.86\n", - "2021-06-17 00:00:00: Portfolio Value - 706973683.00\n", - "2021-06-18 00:00:00: Portfolio Value - 697365805.12\n", - "2021-06-21 00:00:00: Portfolio Value - 708383240.23\n", - "2021-06-22 00:00:00: Portfolio Value - 711426463.20\n", - "2021-06-23 00:00:00: Portfolio Value - 711238830.99\n", - "2021-06-24 00:00:00: Portfolio Value - 719676671.13\n", - "2021-06-25 00:00:00: Portfolio Value - 724124523.85\n", - "2021-06-28 00:00:00: Portfolio Value - 724574387.28\n", - "2021-06-29 00:00:00: Portfolio Value - 725155901.69\n", - "2021-06-30 00:00:00: Portfolio Value - 725507084.01\n", - "2021-07-01 00:00:00: Portfolio Value - 730611807.83\n", - "2021-07-02 00:00:00: Portfolio Value - 735685318.95\n", - "2021-07-06 00:00:00: Portfolio Value - 732457328.50\n", - "2021-07-07 00:00:00: Portfolio Value - 736066890.96\n", - "2021-07-08 00:00:00: Portfolio Value - 728509224.62\n", - "2021-07-09 00:00:00: Portfolio Value - 737424611.66\n", - "2021-07-12 00:00:00: Portfolio Value - 738146332.16\n", - "2021-07-13 00:00:00: Portfolio Value - 734662795.53\n", - "2021-07-14 00:00:00: Portfolio Value - 734589147.32\n", - "2021-07-15 00:00:00: Portfolio Value - 733050949.06\n", - "2021-07-16 00:00:00: Portfolio Value - 729226343.62\n", - "2021-07-19 00:00:00: Portfolio Value - 719086403.07\n", - "2021-07-20 00:00:00: Portfolio Value - 730946901.28\n", - "2021-07-21 00:00:00: Portfolio Value - 733769140.71\n", - "2021-07-22 00:00:00: Portfolio Value - 741071494.90\n", - "2021-07-23 00:00:00: Portfolio Value - 748769401.44\n", - "2021-07-26 00:00:00: Portfolio Value - 749309835.28\n", - "2021-07-27 00:00:00: Portfolio Value - 750375976.97\n", - "2021-07-28 00:00:00: Portfolio Value - 750443774.81\n", - "2021-07-29 00:00:00: Portfolio Value - 758242207.77\n", - "2021-07-30 00:00:00: Portfolio Value - 760179690.70\n", - "2021-08-02 00:00:00: Portfolio Value - 762754629.23\n", - "2021-08-03 00:00:00: Portfolio Value - 769115242.01\n", - "2021-08-04 00:00:00: Portfolio Value - 764477914.62\n", - "2021-08-05 00:00:00: Portfolio Value - 770554556.42\n", - "2021-08-06 00:00:00: Portfolio Value - 771582487.61\n", - "2021-08-09 00:00:00: Portfolio Value - 771497380.03\n", - "2021-08-10 00:00:00: Portfolio Value - 771361692.31\n", - "2021-08-11 00:00:00: Portfolio Value - 774496025.61\n", - "2021-08-12 00:00:00: Portfolio Value - 777843790.16\n", - "2021-08-13 00:00:00: Portfolio Value - 780266308.96\n", - "2021-08-16 00:00:00: Portfolio Value - 783886096.37\n", - "2021-08-17 00:00:00: Portfolio Value - 783119678.36\n", - "2021-08-18 00:00:00: Portfolio Value - 772435986.31\n", - "2021-08-19 00:00:00: Portfolio Value - 776553201.63\n", - "2021-08-20 00:00:00: Portfolio Value - 783002746.91\n", - "2021-08-23 00:00:00: Portfolio Value - 786778291.24\n", - "2021-08-24 00:00:00: Portfolio Value - 788070572.33\n", - "2021-08-25 00:00:00: Portfolio Value - 793174622.58\n", - "2021-08-26 00:00:00: Portfolio Value - 786219102.80\n", - "2021-08-27 00:00:00: Portfolio Value - 792124687.33\n", - "2021-08-30 00:00:00: Portfolio Value - 796293949.75\n", - "2021-08-31 00:00:00: Portfolio Value - 796175930.90\n", - "2021-09-01 00:00:00: Portfolio Value - 799747677.50\n", - "2021-09-02 00:00:00: Portfolio Value - 804205006.75\n", - "2021-09-03 00:00:00: Portfolio Value - 802431694.50\n", - "2021-09-07 00:00:00: Portfolio Value - 798178922.67\n", - "2021-09-08 00:00:00: Portfolio Value - 800137360.16\n", - "2021-09-09 00:00:00: Portfolio Value - 797164977.56\n", - "2021-09-10 00:00:00: Portfolio Value - 791619293.20\n", - "2021-09-13 00:00:00: Portfolio Value - 789094668.17\n", - "2021-09-14 00:00:00: Portfolio Value - 784500036.97\n", - "2021-09-15 00:00:00: Portfolio Value - 787880280.62\n", - "2021-09-16 00:00:00: Portfolio Value - 790232574.20\n", - "2021-09-17 00:00:00: Portfolio Value - 784889023.69\n", - "2021-09-20 00:00:00: Portfolio Value - 772275758.10\n", - "2021-09-21 00:00:00: Portfolio Value - 772497323.51\n", - "2021-09-22 00:00:00: Portfolio Value - 781129154.47\n", - "2021-09-23 00:00:00: Portfolio Value - 787703393.95\n", - "2021-09-24 00:00:00: Portfolio Value - 788774303.27\n", - "2021-09-27 00:00:00: Portfolio Value - 780664591.44\n", - "2021-09-28 00:00:00: Portfolio Value - 761881304.88\n", - "2021-09-29 00:00:00: Portfolio Value - 766567292.92\n", - "2021-09-30 00:00:00: Portfolio Value - 756684612.24\n", - "2021-10-01 00:00:00: Portfolio Value - 760365143.97\n", - "2021-10-04 00:00:00: Portfolio Value - 745813622.55\n", - "2021-10-05 00:00:00: Portfolio Value - 756521018.60\n", - "2021-10-06 00:00:00: Portfolio Value - 759377647.56\n", - "2021-10-07 00:00:00: Portfolio Value - 766446496.19\n", - "2021-10-08 00:00:00: Portfolio Value - 761864715.36\n", - "2021-10-11 00:00:00: Portfolio Value - 756484428.79\n", - "2021-10-12 00:00:00: Portfolio Value - 757271189.26\n", - "2021-10-13 00:00:00: Portfolio Value - 758648079.92\n", - "2021-10-14 00:00:00: Portfolio Value - 771051180.52\n", - "2021-10-15 00:00:00: Portfolio Value - 769421017.33\n", - "2021-10-18 00:00:00: Portfolio Value - 771166538.85\n", - "2021-10-19 00:00:00: Portfolio Value - 775091630.37\n", - "2021-10-20 00:00:00: Portfolio Value - 778474359.58\n", - "2021-10-21 00:00:00: Portfolio Value - 786620153.23\n", - "2021-10-22 00:00:00: Portfolio Value - 790693760.46\n", - "2021-10-25 00:00:00: Portfolio Value - 792148621.20\n", - "2021-10-26 00:00:00: Portfolio Value - 793033654.12\n", - "2021-10-27 00:00:00: Portfolio Value - 789151387.86\n", - "2021-10-28 00:00:00: Portfolio Value - 803745100.72\n", - "2021-10-29 00:00:00: Portfolio Value - 811385035.63\n", - "2021-11-01 00:00:00: Portfolio Value - 813920346.49\n", - "2021-11-02 00:00:00: Portfolio Value - 816442609.42\n", - "2021-11-03 00:00:00: Portfolio Value - 818749750.66\n", - "2021-11-04 00:00:00: Portfolio Value - 820033029.41\n", - "2021-11-05 00:00:00: Portfolio Value - 819158264.26\n", - "2021-11-08 00:00:00: Portfolio Value - 819913967.07\n", - "2021-11-09 00:00:00: Portfolio Value - 822413657.83\n", - "2021-11-10 00:00:00: Portfolio Value - 814722375.22\n", - "2021-11-11 00:00:00: Portfolio Value - 817146889.57\n", - "2021-11-12 00:00:00: Portfolio Value - 822775463.12\n", - "2021-11-15 00:00:00: Portfolio Value - 825799108.60\n", - "2021-11-16 00:00:00: Portfolio Value - 831941593.34\n", - "2021-11-17 00:00:00: Portfolio Value - 827176468.21\n", - "2021-11-18 00:00:00: Portfolio Value - 823593435.71\n", - "2021-11-19 00:00:00: Portfolio Value - 822344657.27\n", - "2021-11-22 00:00:00: Portfolio Value - 818124098.96\n", - "2021-11-23 00:00:00: Portfolio Value - 816498142.34\n", - "2021-11-24 00:00:00: Portfolio Value - 818344090.16\n", - "2021-11-26 00:00:00: Portfolio Value - 803097009.66\n", - "2021-11-29 00:00:00: Portfolio Value - 809221637.57\n", - "2021-11-30 00:00:00: Portfolio Value - 783047070.03\n", - "2021-12-01 00:00:00: Portfolio Value - 771578533.51\n", - "2021-12-02 00:00:00: Portfolio Value - 785566904.98\n", - "2021-12-03 00:00:00: Portfolio Value - 776175708.01\n", - "2021-12-06 00:00:00: Portfolio Value - 786231595.29\n", - "2021-12-07 00:00:00: Portfolio Value - 806442299.48\n", - "2021-12-08 00:00:00: Portfolio Value - 808940778.86\n", - "2021-12-09 00:00:00: Portfolio Value - 800206707.43\n", - "2021-12-10 00:00:00: Portfolio Value - 804612072.46\n", - "2021-12-13 00:00:00: Portfolio Value - 797928924.70\n", - "2021-12-14 00:00:00: Portfolio Value - 788375500.18\n", - "2021-12-15 00:00:00: Portfolio Value - 799078436.88\n", - "2021-12-16 00:00:00: Portfolio Value - 792670897.31\n", - "2021-12-17 00:00:00: Portfolio Value - 785098434.12\n", - "2021-12-20 00:00:00: Portfolio Value - 774934274.25\n", - "2021-12-21 00:00:00: Portfolio Value - 790862023.46\n", - "2021-12-22 00:00:00: Portfolio Value - 800685374.69\n", - "2021-12-23 00:00:00: Portfolio Value - 807341633.84\n", - "2021-12-27 00:00:00: Portfolio Value - 818543067.48\n", - "2021-12-28 00:00:00: Portfolio Value - 816837052.16\n", - "2021-12-29 00:00:00: Portfolio Value - 821435277.90\n", - "2021-12-30 00:00:00: Portfolio Value - 819921081.05\n", - "2021-12-31 00:00:00: Portfolio Value - 817852521.83\n", - "2022-01-03 00:00:00: Portfolio Value - 813945269.45\n", - "2022-01-04 00:00:00: Portfolio Value - 811581541.85\n", - "2022-01-05 00:00:00: Portfolio Value - 788257645.58\n", - "2022-01-06 00:00:00: Portfolio Value - 785764859.58\n", - "2022-01-07 00:00:00: Portfolio Value - 777208423.41\n", - "2022-01-10 00:00:00: Portfolio Value - 771157414.38\n", - "2022-01-11 00:00:00: Portfolio Value - 777906598.41\n", - "2022-01-12 00:00:00: Portfolio Value - 777538057.06\n", - "2022-01-13 00:00:00: Portfolio Value - 766234736.99\n", - "2022-01-14 00:00:00: Portfolio Value - 761366762.16\n", - "2022-01-18 00:00:00: Portfolio Value - 742735029.67\n", - "2022-01-19 00:00:00: Portfolio Value - 741409663.60\n", - "2022-01-20 00:00:00: Portfolio Value - 731826076.63\n", - "2022-01-21 00:00:00: Portfolio Value - 711696136.94\n", - "2022-01-24 00:00:00: Portfolio Value - 718772509.50\n", - "2022-01-25 00:00:00: Portfolio Value - 702518199.03\n", - "2022-01-26 00:00:00: Portfolio Value - 694198349.77\n", - "2022-01-27 00:00:00: Portfolio Value - 694938306.09\n", - "2022-01-28 00:00:00: Portfolio Value - 712192909.14\n", - "2022-01-31 00:00:00: Portfolio Value - 732591350.30\n", - "2022-02-01 00:00:00: Portfolio Value - 742249506.57\n", - "2022-02-02 00:00:00: Portfolio Value - 747034462.05\n", - "2022-02-03 00:00:00: Portfolio Value - 735391134.86\n", - "2022-02-04 00:00:00: Portfolio Value - 734087700.14\n", - "2022-02-07 00:00:00: Portfolio Value - 733744727.03\n", - "2022-02-08 00:00:00: Portfolio Value - 740513646.19\n", - "2022-02-09 00:00:00: Portfolio Value - 755977695.83\n", - "2022-02-10 00:00:00: Portfolio Value - 740820841.83\n", - "2022-02-11 00:00:00: Portfolio Value - 728491881.70\n", - "2022-02-14 00:00:00: Portfolio Value - 721765704.58\n", - "2022-02-15 00:00:00: Portfolio Value - 735288355.50\n", - "2022-02-16 00:00:00: Portfolio Value - 733916561.56\n", - "2022-02-17 00:00:00: Portfolio Value - 718389456.55\n", - "2022-02-18 00:00:00: Portfolio Value - 715913893.26\n", - "2022-02-22 00:00:00: Portfolio Value - 706983411.71\n", - "2022-02-23 00:00:00: Portfolio Value - 693214149.97\n", - "2022-02-24 00:00:00: Portfolio Value - 707965787.39\n", - "2022-02-25 00:00:00: Portfolio Value - 727749023.78\n", - "2022-02-28 00:00:00: Portfolio Value - 724581029.77\n", - "2022-03-01 00:00:00: Portfolio Value - 714211380.91\n", - "2022-03-02 00:00:00: Portfolio Value - 728279109.21\n", - "2022-03-03 00:00:00: Portfolio Value - 722273725.47\n", - "2022-03-04 00:00:00: Portfolio Value - 719752647.07\n", - "2022-03-07 00:00:00: Portfolio Value - 697313399.61\n", - "2022-03-08 00:00:00: Portfolio Value - 683563987.06\n", - "2022-03-09 00:00:00: Portfolio Value - 701689570.95\n", - "2022-03-10 00:00:00: Portfolio Value - 697892757.49\n", - "2022-03-11 00:00:00: Portfolio Value - 686833694.73\n", - "2022-03-14 00:00:00: Portfolio Value - 680491415.92\n", - "2022-03-15 00:00:00: Portfolio Value - 697887952.32\n", - "2022-03-16 00:00:00: Portfolio Value - 719039781.36\n", - "2022-03-17 00:00:00: Portfolio Value - 730978820.36\n", - "2022-03-18 00:00:00: Portfolio Value - 741086475.46\n", - "2022-03-21 00:00:00: Portfolio Value - 736010218.24\n", - "2022-03-22 00:00:00: Portfolio Value - 742730287.10\n", - "2022-03-23 00:00:00: Portfolio Value - 726841677.97\n", - "2022-03-24 00:00:00: Portfolio Value - 736810107.43\n", - "2022-03-25 00:00:00: Portfolio Value - 740699454.74\n", - "2022-03-28 00:00:00: Portfolio Value - 749515757.32\n", - "2022-03-29 00:00:00: Portfolio Value - 763560866.85\n", - "2022-03-30 00:00:00: Portfolio Value - 762146642.83\n", - "2022-03-31 00:00:00: Portfolio Value - 753605973.71\n", - "2022-04-01 00:00:00: Portfolio Value - 760756832.83\n", - "2022-04-04 00:00:00: Portfolio Value - 762480413.37\n", - "2022-04-05 00:00:00: Portfolio Value - 757357674.29\n", - "2022-04-06 00:00:00: Portfolio Value - 755682494.17\n", - "2022-04-07 00:00:00: Portfolio Value - 762694969.83\n", - "2022-04-08 00:00:00: Portfolio Value - 761583559.95\n", - "2022-04-11 00:00:00: Portfolio Value - 748548801.49\n", - "2022-04-12 00:00:00: Portfolio Value - 746367300.20\n", - "2022-04-13 00:00:00: Portfolio Value - 757743935.60\n", - "2022-04-14 00:00:00: Portfolio Value - 753004695.86\n", - "2022-04-18 00:00:00: Portfolio Value - 746698078.10\n", - "2022-04-19 00:00:00: Portfolio Value - 765527946.68\n", - "2022-04-20 00:00:00: Portfolio Value - 762285954.16\n", - "2022-04-21 00:00:00: Portfolio Value - 746072311.61\n", - "2022-04-22 00:00:00: Portfolio Value - 717857859.23\n", - "2022-04-25 00:00:00: Portfolio Value - 720832668.47\n", - "2022-04-26 00:00:00: Portfolio Value - 696400605.42\n", - "2022-04-27 00:00:00: Portfolio Value - 696453938.24\n", - "2022-04-28 00:00:00: Portfolio Value - 705717077.69\n", - "2022-04-29 00:00:00: Portfolio Value - 677317116.86\n", - "2022-05-02 00:00:00: Portfolio Value - 680392543.04\n", - "2022-05-03 00:00:00: Portfolio Value - 682742175.03\n", - "2022-05-04 00:00:00: Portfolio Value - 701653110.79\n", - "2022-05-05 00:00:00: Portfolio Value - 674303250.01\n", - "2022-05-06 00:00:00: Portfolio Value - 663792152.27\n", - "2022-05-09 00:00:00: Portfolio Value - 639521395.45\n", - "2022-05-10 00:00:00: Portfolio Value - 640613789.80\n", - "2022-05-11 00:00:00: Portfolio Value - 630299622.59\n", - "2022-05-12 00:00:00: Portfolio Value - 634458500.92\n", - "2022-05-13 00:00:00: Portfolio Value - 654407198.60\n", - "2022-05-16 00:00:00: Portfolio Value - 653054854.67\n", - "2022-05-17 00:00:00: Portfolio Value - 663536518.57\n", - "2022-05-18 00:00:00: Portfolio Value - 627525140.98\n", - "2022-05-19 00:00:00: Portfolio Value - 626466477.71\n", - "2022-05-20 00:00:00: Portfolio Value - 627827205.53\n", - "2022-05-23 00:00:00: Portfolio Value - 639463371.83\n", - "2022-05-24 00:00:00: Portfolio Value - 637414402.25\n", - "2022-05-25 00:00:00: Portfolio Value - 643730921.78\n", - "2022-05-26 00:00:00: Portfolio Value - 661901952.91\n", - "2022-05-27 00:00:00: Portfolio Value - 682514185.79\n", - "2022-05-31 00:00:00: Portfolio Value - 670861936.30\n", - "2022-06-01 00:00:00: Portfolio Value - 659253975.09\n", - "2022-06-02 00:00:00: Portfolio Value - 674531309.93\n", - "2022-06-03 00:00:00: Portfolio Value - 663967308.50\n", - "2022-06-06 00:00:00: Portfolio Value - 665683650.48\n", - "2022-06-07 00:00:00: Portfolio Value - 675248074.68\n", - "2022-06-08 00:00:00: Portfolio Value - 666771426.41\n", - "2022-06-09 00:00:00: Portfolio Value - 649032983.66\n", - "2022-06-10 00:00:00: Portfolio Value - 631743685.35\n", - "2022-06-13 00:00:00: Portfolio Value - 604130928.83\n", - "2022-06-14 00:00:00: Portfolio Value - 598037624.74\n", - "2022-06-15 00:00:00: Portfolio Value - 608117448.64\n", - "2022-06-16 00:00:00: Portfolio Value - 587151087.82\n", - "2022-06-17 00:00:00: Portfolio Value - 590614048.00\n", - "2022-06-21 00:00:00: Portfolio Value - 603911683.36\n", - "2022-06-22 00:00:00: Portfolio Value - 606778076.46\n", - "2022-06-23 00:00:00: Portfolio Value - 621741776.18\n", - "2022-06-24 00:00:00: Portfolio Value - 643445015.12\n", - "2022-06-27 00:00:00: Portfolio Value - 640360341.22\n", - "2022-06-28 00:00:00: Portfolio Value - 626447799.81\n", - "2022-06-29 00:00:00: Portfolio Value - 628673739.68\n", - "2022-06-30 00:00:00: Portfolio Value - 624565141.97\n", - "2022-07-01 00:00:00: Portfolio Value - 635841908.90\n", - "2022-07-05 00:00:00: Portfolio Value - 636350337.83\n", - "2022-07-06 00:00:00: Portfolio Value - 637966227.64\n", - "2022-07-07 00:00:00: Portfolio Value - 646796292.40\n", - "2022-07-08 00:00:00: Portfolio Value - 646144305.45\n", - "2022-07-11 00:00:00: Portfolio Value - 638856694.70\n", - "2022-07-12 00:00:00: Portfolio Value - 630999547.35\n", - "2022-07-13 00:00:00: Portfolio Value - 630191522.69\n", - "2022-07-14 00:00:00: Portfolio Value - 628744833.07\n", - "2022-07-15 00:00:00: Portfolio Value - 642301342.56\n", - "2022-07-18 00:00:00: Portfolio Value - 634068275.30\n", - "2022-07-19 00:00:00: Portfolio Value - 652733013.87\n", - "2022-07-20 00:00:00: Portfolio Value - 657629299.11\n", - "2022-07-21 00:00:00: Portfolio Value - 665564975.56\n", - "2022-07-22 00:00:00: Portfolio Value - 659847827.34\n", - "2022-07-25 00:00:00: Portfolio Value - 659163878.50\n", - "2022-07-26 00:00:00: Portfolio Value - 653238536.25\n", - "2022-07-27 00:00:00: Portfolio Value - 668824936.03\n", - "2022-07-28 00:00:00: Portfolio Value - 682868922.43\n", - "2022-07-29 00:00:00: Portfolio Value - 689042306.56\n", - "2022-08-01 00:00:00: Portfolio Value - 687702709.52\n", - "2022-08-02 00:00:00: Portfolio Value - 683684590.14\n", - "2022-08-03 00:00:00: Portfolio Value - 691647880.00\n", - "2022-08-04 00:00:00: Portfolio Value - 690717290.02\n", - "2022-08-05 00:00:00: Portfolio Value - 692090441.94\n", - "2022-08-08 00:00:00: Portfolio Value - 696297015.41\n", - "2022-08-09 00:00:00: Portfolio Value - 690044087.04\n", - "2022-08-10 00:00:00: Portfolio Value - 707681393.65\n", - "2022-08-11 00:00:00: Portfolio Value - 705017682.00\n", - "2022-08-12 00:00:00: Portfolio Value - 717171816.08\n", - "2022-08-15 00:00:00: Portfolio Value - 723338924.92\n", - "2022-08-16 00:00:00: Portfolio Value - 725847650.39\n", - "2022-08-17 00:00:00: Portfolio Value - 718731226.64\n", - "2022-08-18 00:00:00: Portfolio Value - 721476611.94\n", - "2022-08-19 00:00:00: Portfolio Value - 711199238.22\n", - "2022-08-22 00:00:00: Portfolio Value - 696043665.08\n", - "2022-08-23 00:00:00: Portfolio Value - 689774300.69\n", - "2022-08-24 00:00:00: Portfolio Value - 695796810.22\n", - "2022-08-25 00:00:00: Portfolio Value - 707779101.97\n", - "2022-08-26 00:00:00: Portfolio Value - 682576558.73\n", - "2022-08-29 00:00:00: Portfolio Value - 678546076.48\n", - "2022-08-30 00:00:00: Portfolio Value - 671023804.59\n", - "2022-08-31 00:00:00: Portfolio Value - 665599871.12\n", - "2022-09-01 00:00:00: Portfolio Value - 672306050.38\n", - "2022-09-02 00:00:00: Portfolio Value - 663876262.52\n", - "2022-09-06 00:00:00: Portfolio Value - 663681392.89\n", - "2022-09-07 00:00:00: Portfolio Value - 684915025.64\n", - "2022-09-08 00:00:00: Portfolio Value - 699595812.20\n", - "2022-09-09 00:00:00: Portfolio Value - 709947639.21\n", - "2022-09-12 00:00:00: Portfolio Value - 714426185.39\n", - "2022-09-13 00:00:00: Portfolio Value - 682816267.39\n", - "2022-09-14 00:00:00: Portfolio Value - 682683645.63\n", - "2022-09-15 00:00:00: Portfolio Value - 679339721.60\n", - "2022-09-16 00:00:00: Portfolio Value - 675563462.96\n", - "2022-09-19 00:00:00: Portfolio Value - 678944165.70\n", - "2022-09-20 00:00:00: Portfolio Value - 668148220.92\n", - "2022-09-21 00:00:00: Portfolio Value - 655207374.83\n", - "2022-09-22 00:00:00: Portfolio Value - 645865453.85\n", - "2022-09-23 00:00:00: Portfolio Value - 636641550.23\n", - "2022-09-26 00:00:00: Portfolio Value - 629037623.89\n", - "2022-09-27 00:00:00: Portfolio Value - 626057206.39\n", - "2022-09-28 00:00:00: Portfolio Value - 644108951.70\n", - "2022-09-29 00:00:00: Portfolio Value - 630367454.20\n", - "2022-09-30 00:00:00: Portfolio Value - 620692216.84\n", - "2022-10-03 00:00:00: Portfolio Value - 642545190.87\n", - "2022-10-04 00:00:00: Portfolio Value - 665100815.98\n", - "2022-10-05 00:00:00: Portfolio Value - 662585218.45\n", - "2022-10-06 00:00:00: Portfolio Value - 652983635.68\n", - "2022-10-07 00:00:00: Portfolio Value - 634880516.89\n", - "2022-10-10 00:00:00: Portfolio Value - 631545573.17\n", - "2022-10-11 00:00:00: Portfolio Value - 629579182.97\n", - "2022-10-12 00:00:00: Portfolio Value - 625469307.80\n", - "2022-10-13 00:00:00: Portfolio Value - 644556946.84\n", - "2022-10-14 00:00:00: Portfolio Value - 627859353.81\n", - "2022-10-17 00:00:00: Portfolio Value - 642622684.39\n", - "2022-10-18 00:00:00: Portfolio Value - 650209181.40\n", - "2022-10-19 00:00:00: Portfolio Value - 643788127.58\n", - "2022-10-20 00:00:00: Portfolio Value - 635605266.27\n", - "2022-10-21 00:00:00: Portfolio Value - 653233822.95\n", - "2022-10-24 00:00:00: Portfolio Value - 664226123.21\n", - "2022-10-25 00:00:00: Portfolio Value - 679297034.24\n", - "2022-10-26 00:00:00: Portfolio Value - 680691000.34\n", - "2022-10-27 00:00:00: Portfolio Value - 678346360.69\n", - "2022-10-28 00:00:00: Portfolio Value - 699584573.62\n", - "2022-10-31 00:00:00: Portfolio Value - 698625654.58\n", - "2022-11-01 00:00:00: Portfolio Value - 699488065.28\n", - "2022-11-02 00:00:00: Portfolio Value - 682393094.26\n", - "2022-11-03 00:00:00: Portfolio Value - 681045082.28\n", - "2022-11-04 00:00:00: Portfolio Value - 693116327.00\n", - "2022-11-07 00:00:00: Portfolio Value - 696123178.67\n", - "2022-11-08 00:00:00: Portfolio Value - 697824267.46\n", - "2022-11-09 00:00:00: Portfolio Value - 688006662.41\n", - "2022-11-10 00:00:00: Portfolio Value - 726593122.40\n", - "2022-11-11 00:00:00: Portfolio Value - 727383817.18\n", - "2022-11-14 00:00:00: Portfolio Value - 722200428.42\n", - "2022-11-15 00:00:00: Portfolio Value - 731139175.39\n", - "2022-11-16 00:00:00: Portfolio Value - 728727854.11\n", - "2022-11-17 00:00:00: Portfolio Value - 726441794.89\n", - "2022-11-18 00:00:00: Portfolio Value - 730970966.99\n", - "2022-11-21 00:00:00: Portfolio Value - 733048362.52\n", - "2022-11-22 00:00:00: Portfolio Value - 741494092.71\n", - "2022-11-23 00:00:00: Portfolio Value - 746117376.89\n", - "2022-11-25 00:00:00: Portfolio Value - 748132277.96\n", - "2022-11-28 00:00:00: Portfolio Value - 738591537.43\n", - "2022-11-29 00:00:00: Portfolio Value - 736259058.61\n", - "2022-11-30 00:00:00: Portfolio Value - 759316152.46\n", - "2022-12-01 00:00:00: Portfolio Value - 759630931.90\n", - "2022-12-02 00:00:00: Portfolio Value - 760752313.65\n", - "2022-12-05 00:00:00: Portfolio Value - 746290671.33\n", - "2022-12-06 00:00:00: Portfolio Value - 736117336.07\n", - "2022-12-07 00:00:00: Portfolio Value - 740942802.01\n", - "2022-12-08 00:00:00: Portfolio Value - 746060775.12\n", - "2022-12-09 00:00:00: Portfolio Value - 733421675.78\n", - "2022-12-12 00:00:00: Portfolio Value - 741460500.51\n", - "2022-12-13 00:00:00: Portfolio Value - 746215053.19\n", - "2022-12-14 00:00:00: Portfolio Value - 744923222.38\n", - "2022-12-15 00:00:00: Portfolio Value - 725305954.86\n", - "2022-12-16 00:00:00: Portfolio Value - 717200401.39\n", - "2022-12-19 00:00:00: Portfolio Value - 710149789.33\n", - "2022-12-20 00:00:00: Portfolio Value - 711027015.52\n", - "2022-12-21 00:00:00: Portfolio Value - 724845389.33\n", - "2022-12-22 00:00:00: Portfolio Value - 716985219.40\n", - "2022-12-23 00:00:00: Portfolio Value - 719120871.58\n", - "2022-12-27 00:00:00: Portfolio Value - 718443419.43\n", - "2022-12-28 00:00:00: Portfolio Value - 707133978.44\n", - "2022-12-29 00:00:00: Portfolio Value - 719365324.81\n", - "2022-12-30 00:00:00: Portfolio Value - 716265525.86\n", - "2023-01-03 00:00:00: Portfolio Value - 715167405.36\n", - "2023-01-04 00:00:00: Portfolio Value - 724602176.15\n", - "2023-01-05 00:00:00: Portfolio Value - 718022147.69\n", - "2023-01-06 00:00:00: Portfolio Value - 736690750.12\n", - "2023-01-09 00:00:00: Portfolio Value - 729150625.86\n", - "2023-01-10 00:00:00: Portfolio Value - 738554394.10\n", - "2023-01-11 00:00:00: Portfolio Value - 746845401.88\n", - "2023-01-12 00:00:00: Portfolio Value - 746445610.75\n", - "2023-01-13 00:00:00: Portfolio Value - 750387777.91\n", - "2023-01-17 00:00:00: Portfolio Value - 748768172.60\n", - "2023-01-18 00:00:00: Portfolio Value - 737226089.33\n", - "2023-01-19 00:00:00: Portfolio Value - 727895744.47\n", - "2023-01-20 00:00:00: Portfolio Value - 740825605.83\n", - "2023-01-23 00:00:00: Portfolio Value - 750481017.58\n", - "2023-01-24 00:00:00: Portfolio Value - 749466469.20\n", - "2023-01-25 00:00:00: Portfolio Value - 750050225.31\n", - "2023-01-26 00:00:00: Portfolio Value - 759478266.03\n", - "2023-01-27 00:00:00: Portfolio Value - 757770830.29\n", - "2023-01-30 00:00:00: Portfolio Value - 749813078.84\n", - "2023-01-31 00:00:00: Portfolio Value - 764159236.17\n", - "2023-02-01 00:00:00: Portfolio Value - 776037370.68\n", - "2023-02-02 00:00:00: Portfolio Value - 783278555.89\n", - "2023-02-03 00:00:00: Portfolio Value - 778980599.81\n", - "2023-02-06 00:00:00: Portfolio Value - 774542838.53\n", - "2023-02-07 00:00:00: Portfolio Value - 780571036.17\n", - "2023-02-08 00:00:00: Portfolio Value - 771195059.10\n", - "2023-02-09 00:00:00: Portfolio Value - 763679204.90\n", - "2023-02-10 00:00:00: Portfolio Value - 766909803.30\n", - "2023-02-13 00:00:00: Portfolio Value - 779097617.00\n", - "2023-02-14 00:00:00: Portfolio Value - 774029293.41\n", - "2023-02-15 00:00:00: Portfolio Value - 779054900.33\n", - "2023-02-16 00:00:00: Portfolio Value - 767409813.38\n", - "2023-02-17 00:00:00: Portfolio Value - 767690950.93\n", - "2023-02-21 00:00:00: Portfolio Value - 753646309.75\n", - "2023-02-22 00:00:00: Portfolio Value - 751083838.68\n", - "2023-02-23 00:00:00: Portfolio Value - 749858593.64\n", - "2023-02-24 00:00:00: Portfolio Value - 740817479.07\n", - "2023-02-27 00:00:00: Portfolio Value - 742200620.82\n", - "2023-02-28 00:00:00: Portfolio Value - 739310785.77\n", - "2023-03-01 00:00:00: Portfolio Value - 740715103.77\n", - "2023-03-02 00:00:00: Portfolio Value - 748101032.78\n", - "2023-03-03 00:00:00: Portfolio Value - 760707188.53\n", - "2023-03-06 00:00:00: Portfolio Value - 760382252.19\n", - "2023-03-07 00:00:00: Portfolio Value - 751365955.87\n", - "2023-03-08 00:00:00: Portfolio Value - 749881571.49\n", - "2023-03-09 00:00:00: Portfolio Value - 737390830.56\n", - "2023-03-10 00:00:00: Portfolio Value - 723360978.13\n", - "2023-03-13 00:00:00: Portfolio Value - 722309213.31\n", - "2023-03-14 00:00:00: Portfolio Value - 735282620.33\n", - "2023-03-15 00:00:00: Portfolio Value - 729350364.33\n", - "2023-03-16 00:00:00: Portfolio Value - 737995332.52\n", - "2023-03-17 00:00:00: Portfolio Value - 726200190.31\n", - "2023-03-20 00:00:00: Portfolio Value - 736417763.47\n", - "2023-03-21 00:00:00: Portfolio Value - 744941340.14\n", - "2023-03-22 00:00:00: Portfolio Value - 729805280.22\n", - "2023-03-23 00:00:00: Portfolio Value - 735937213.61\n", - "2023-03-24 00:00:00: Portfolio Value - 743025265.31\n", - "2023-03-27 00:00:00: Portfolio Value - 747761859.84\n", - "2023-03-28 00:00:00: Portfolio Value - 748931912.74\n", - "2023-03-29 00:00:00: Portfolio Value - 759634647.50\n", - "2023-03-30 00:00:00: Portfolio Value - 762933453.28\n", - "2023-03-31 00:00:00: Portfolio Value - 776776528.90\n", - "2023-04-03 00:00:00: Portfolio Value - 778373756.21\n", - "2023-04-04 00:00:00: Portfolio Value - 772978983.38\n", - "2023-04-05 00:00:00: Portfolio Value - 771024103.77\n", - "2023-04-06 00:00:00: Portfolio Value - 772658624.52\n", - "2023-04-10 00:00:00: Portfolio Value - 775917959.76\n", - "2023-04-11 00:00:00: Portfolio Value - 779570589.42\n", - "2023-04-12 00:00:00: Portfolio Value - 776223265.03\n", - "2023-04-13 00:00:00: Portfolio Value - 786559891.54\n", - "2023-04-14 00:00:00: Portfolio Value - 783593347.15\n", - "2023-04-17 00:00:00: Portfolio Value - 787897522.91\n", - "2023-04-18 00:00:00: Portfolio Value - 788775216.57\n", - "2023-04-19 00:00:00: Portfolio Value - 788876383.32\n", - "2023-04-20 00:00:00: Portfolio Value - 788567923.30\n", - "2023-04-21 00:00:00: Portfolio Value - 791123253.42\n", - "2023-04-24 00:00:00: Portfolio Value - 793992062.06\n", - "2023-04-25 00:00:00: Portfolio Value - 779564769.20\n", - "2023-04-26 00:00:00: Portfolio Value - 772299439.21\n", - "2023-04-27 00:00:00: Portfolio Value - 777116135.65\n", - "2023-04-28 00:00:00: Portfolio Value - 784391372.98\n", - "2023-05-01 00:00:00: Portfolio Value - 783464431.05\n", - "2023-05-02 00:00:00: Portfolio Value - 774165306.99\n", - "2023-05-03 00:00:00: Portfolio Value - 773765151.00\n", - "2023-05-04 00:00:00: Portfolio Value - 762825196.96\n", - "2023-05-05 00:00:00: Portfolio Value - 775336398.22\n", - "2023-05-08 00:00:00: Portfolio Value - 774563570.29\n", - "2023-05-09 00:00:00: Portfolio Value - 772120468.95\n", - "2023-05-10 00:00:00: Portfolio Value - 771470536.81\n", - "2023-05-11 00:00:00: Portfolio Value - 771314118.53\n", - "2023-05-12 00:00:00: Portfolio Value - 774524140.85\n", - "2023-05-15 00:00:00: Portfolio Value - 773709588.97\n", - "2023-05-16 00:00:00: Portfolio Value - 762819122.44\n", - "2023-05-17 00:00:00: Portfolio Value - 767146427.03\n", - "2023-05-18 00:00:00: Portfolio Value - 774677759.93\n", - "2023-05-19 00:00:00: Portfolio Value - 771213918.41\n", - "2023-05-22 00:00:00: Portfolio Value - 767083394.58\n", - "2023-05-23 00:00:00: Portfolio Value - 752707736.02\n", - "2023-05-24 00:00:00: Portfolio Value - 747065323.86\n", - "2023-05-25 00:00:00: Portfolio Value - 744737414.74\n", - "2023-05-26 00:00:00: Portfolio Value - 746096952.45\n", - "2023-05-30 00:00:00: Portfolio Value - 743688468.91\n", - "2023-05-31 00:00:00: Portfolio Value - 741365633.21\n", - "2023-06-01 00:00:00: Portfolio Value - 743134223.96\n", - "2023-06-02 00:00:00: Portfolio Value - 760813127.55\n", - "2023-06-05 00:00:00: Portfolio Value - 761012794.11\n", - "2023-06-06 00:00:00: Portfolio Value - 760490199.06\n", - "2023-06-07 00:00:00: Portfolio Value - 759011981.29\n", - "2023-06-08 00:00:00: Portfolio Value - 764835680.93\n", - "2023-06-09 00:00:00: Portfolio Value - 765999625.69\n", - "2023-06-12 00:00:00: Portfolio Value - 772363789.22\n", - "2023-06-13 00:00:00: Portfolio Value - 780217708.60\n", - "2023-06-14 00:00:00: Portfolio Value - 783211476.87\n", - "2023-06-15 00:00:00: Portfolio Value - 796208282.30\n", - "2023-06-16 00:00:00: Portfolio Value - 792042997.43\n", - "2023-06-20 00:00:00: Portfolio Value - 788635868.66\n", - "2023-06-21 00:00:00: Portfolio Value - 787746834.18\n", - "2023-06-22 00:00:00: Portfolio Value - 787212411.14\n", - "2023-06-23 00:00:00: Portfolio Value - 781269225.97\n", - "2023-06-26 00:00:00: Portfolio Value - 782841564.95\n", - "2023-06-27 00:00:00: Portfolio Value - 785772116.96\n", - "2023-06-28 00:00:00: Portfolio Value - 784340766.25\n", - "2023-06-29 00:00:00: Portfolio Value - 788269623.52\n", - "2023-06-30 00:00:00: Portfolio Value - 799960094.50\n", - "2023-07-03 00:00:00: Portfolio Value - 799043173.72\n", - "2023-07-05 00:00:00: Portfolio Value - 796369476.03\n", - "2023-07-06 00:00:00: Portfolio Value - 786130892.66\n", - "2023-07-07 00:00:00: Portfolio Value - 782718366.51\n", - "2023-07-10 00:00:00: Portfolio Value - 791956303.82\n", - "2023-07-11 00:00:00: Portfolio Value - 798832801.44\n", - "2023-07-12 00:00:00: Portfolio Value - 807142011.48\n", - "2023-07-13 00:00:00: Portfolio Value - 808235451.23\n", - "2023-07-14 00:00:00: Portfolio Value - 807581348.24\n", - "2023-07-17 00:00:00: Portfolio Value - 810301250.86\n", - "2023-07-18 00:00:00: Portfolio Value - 815129535.98\n", - "2023-07-19 00:00:00: Portfolio Value - 814485667.96\n", - "2023-07-20 00:00:00: Portfolio Value - 813902624.95\n", - "2023-07-21 00:00:00: Portfolio Value - 815180775.20\n", - "2023-07-24 00:00:00: Portfolio Value - 815233147.44\n", - "2023-07-25 00:00:00: Portfolio Value - 820825712.46\n", - "2023-07-26 00:00:00: Portfolio Value - 821325849.03\n", - "2023-07-27 00:00:00: Portfolio Value - 820205152.27\n", - "2023-07-28 00:00:00: Portfolio Value - 824251975.51\n", - "2023-07-31 00:00:00: Portfolio Value - 823998055.41\n", - "2023-08-01 00:00:00: Portfolio Value - 821806764.75\n", - "2023-08-02 00:00:00: Portfolio Value - 817084897.11\n", - "2023-08-03 00:00:00: Portfolio Value - 818302354.56\n", - "2023-08-04 00:00:00: Portfolio Value - 812502442.63\n", - "2023-08-07 00:00:00: Portfolio Value - 822549269.61\n", - "2023-08-08 00:00:00: Portfolio Value - 819642312.23\n", - "2023-08-09 00:00:00: Portfolio Value - 822311200.14\n", - "2023-08-10 00:00:00: Portfolio Value - 823285761.37\n", - "2023-08-11 00:00:00: Portfolio Value - 825262587.53\n", - "2023-08-14 00:00:00: Portfolio Value - 828885294.43\n", - "2023-08-15 00:00:00: Portfolio Value - 818413107.25\n", - "2023-08-16 00:00:00: Portfolio Value - 809237344.71\n", - "2023-08-17 00:00:00: Portfolio Value - 795197767.26\n", - "2023-08-18 00:00:00: Portfolio Value - 798369368.66\n", - "2023-08-21 00:00:00: Portfolio Value - 798888670.93\n", - "2023-08-22 00:00:00: Portfolio Value - 795674965.25\n", - "2023-08-23 00:00:00: Portfolio Value - 802380260.80\n", - "2023-08-24 00:00:00: Portfolio Value - 790264141.76\n", - "2023-08-25 00:00:00: Portfolio Value - 794909918.89\n", - "2023-08-28 00:00:00: Portfolio Value - 799093464.22\n", - "2023-08-29 00:00:00: Portfolio Value - 809743055.68\n", - "2023-08-30 00:00:00: Portfolio Value - 815223921.77\n", - "2023-08-31 00:00:00: Portfolio Value - 811074503.03\n", - "2023-09-01 00:00:00: Portfolio Value - 815456338.69\n", - "2023-09-05 00:00:00: Portfolio Value - 805717957.43\n", - "2023-09-06 00:00:00: Portfolio Value - 804333638.70\n", - "2023-09-07 00:00:00: Portfolio Value - 803394618.86\n", - "2023-09-08 00:00:00: Portfolio Value - 803571120.85\n", - "2023-09-11 00:00:00: Portfolio Value - 808484085.36\n", - "2023-09-12 00:00:00: Portfolio Value - 803427437.10\n", - "2023-09-13 00:00:00: Portfolio Value - 801428934.78\n", - "2023-09-14 00:00:00: Portfolio Value - 807485902.12\n", - "2023-09-15 00:00:00: Portfolio Value - 795966914.41\n", - "2023-09-18 00:00:00: Portfolio Value - 794940747.18\n", - "2023-09-19 00:00:00: Portfolio Value - 795766041.63\n", - "2023-09-20 00:00:00: Portfolio Value - 791770201.95\n", - "2023-09-21 00:00:00: Portfolio Value - 773602653.74\n", - "2023-09-22 00:00:00: Portfolio Value - 771322136.72\n", - "2023-09-25 00:00:00: Portfolio Value - 773731851.67\n", - "2023-09-26 00:00:00: Portfolio Value - 764316815.08\n", - "2023-09-27 00:00:00: Portfolio Value - 765182876.94\n", - "2023-09-28 00:00:00: Portfolio Value - 769567904.09\n", - "2023-09-29 00:00:00: Portfolio Value - 764450965.06\n", - "2023-10-02 00:00:00: Portfolio Value - 758299313.75\n", - "2023-10-03 00:00:00: Portfolio Value - 744099468.15\n", - "2023-10-04 00:00:00: Portfolio Value - 750526129.47\n", - "2023-10-05 00:00:00: Portfolio Value - 745874381.86\n", - "2023-10-06 00:00:00: Portfolio Value - 752170118.94\n", - "2023-10-09 00:00:00: Portfolio Value - 757003410.54\n", - "2023-10-10 00:00:00: Portfolio Value - 764162706.18\n", - "2023-10-11 00:00:00: Portfolio Value - 762608135.44\n", - "2023-10-12 00:00:00: Portfolio Value - 750630955.63\n", - "2023-10-13 00:00:00: Portfolio Value - 751779276.17\n", - "2023-10-16 00:00:00: Portfolio Value - 764821410.29\n", - "2023-10-17 00:00:00: Portfolio Value - 766417891.73\n", - "2023-10-18 00:00:00: Portfolio Value - 755973398.47\n", - "2023-10-19 00:00:00: Portfolio Value - 750145360.36\n", - "2023-10-20 00:00:00: Portfolio Value - 742621618.57\n", - "2023-10-23 00:00:00: Portfolio Value - 739978882.24\n", - "2023-10-24 00:00:00: Portfolio Value - 746187150.33\n", - "2023-10-25 00:00:00: Portfolio Value - 738023692.33\n", - "2023-10-26 00:00:00: Portfolio Value - 727413403.16\n", - "2023-10-27 00:00:00: Portfolio Value - 716725691.49\n", - "2023-10-30 00:00:00: Portfolio Value - 724088392.86\n", - "2023-10-31 00:00:00: Portfolio Value - 727139326.37\n", - "2023-11-01 00:00:00: Portfolio Value - 733254790.87\n", - "2023-11-02 00:00:00: Portfolio Value - 752836334.25\n", - "2023-11-03 00:00:00: Portfolio Value - 765599164.99\n", - "2023-11-06 00:00:00: Portfolio Value - 768636937.39\n", - "2023-11-07 00:00:00: Portfolio Value - 770469508.61\n", - "2023-11-08 00:00:00: Portfolio Value - 770516489.13\n", - "2023-11-09 00:00:00: Portfolio Value - 759244418.38\n", - "2023-11-10 00:00:00: Portfolio Value - 769889724.75\n", - "2023-11-13 00:00:00: Portfolio Value - 772398248.25\n", - "2023-11-14 00:00:00: Portfolio Value - 790723170.82\n", - "2023-11-15 00:00:00: Portfolio Value - 792236951.78\n", - "2023-11-16 00:00:00: Portfolio Value - 791546375.74\n", - "2023-11-17 00:00:00: Portfolio Value - 792976828.48\n", - "2023-11-20 00:00:00: Portfolio Value - 798029502.86\n", - "2023-11-21 00:00:00: Portfolio Value - 797462277.64\n", - "2023-11-22 00:00:00: Portfolio Value - 802076996.94\n", - "2023-11-24 00:00:00: Portfolio Value - 805869627.58\n", - "2023-11-27 00:00:00: Portfolio Value - 805281222.58\n", - "2023-11-28 00:00:00: Portfolio Value - 802842595.17\n", - "2023-11-29 00:00:00: Portfolio Value - 805668293.26\n", - "2023-11-30 00:00:00: Portfolio Value - 813092364.85\n", - "2023-12-01 00:00:00: Portfolio Value - 825936932.21\n", - "2023-12-04 00:00:00: Portfolio Value - 825921835.79\n", - "2023-12-05 00:00:00: Portfolio Value - 819830038.82\n", - "2023-12-06 00:00:00: Portfolio Value - 821725176.84\n", - "2023-12-07 00:00:00: Portfolio Value - 826370672.41\n", - "2023-12-08 00:00:00: Portfolio Value - 828912383.69\n", - "2023-12-11 00:00:00: Portfolio Value - 837189240.51\n", - "2023-12-12 00:00:00: Portfolio Value - 845382941.46\n", - "2023-12-13 00:00:00: Portfolio Value - 865577800.26\n", - "2023-12-14 00:00:00: Portfolio Value - 866432376.12\n", - "2023-12-15 00:00:00: Portfolio Value - 861455090.69\n", - "2023-12-18 00:00:00: Portfolio Value - 866530651.84\n", - "2023-12-19 00:00:00: Portfolio Value - 873543919.18\n", - "2023-12-20 00:00:00: Portfolio Value - 856943388.16\n", - "2023-12-21 00:00:00: Portfolio Value - 868508453.26\n", - "2023-12-22 00:00:00: Portfolio Value - 871016583.02\n", - "2023-12-26 00:00:00: Portfolio Value - 875172329.95\n", - "2023-12-27 00:00:00: Portfolio Value - 879897575.23\n", - "2023-12-28 00:00:00: Portfolio Value - 881655478.45\n", - "2023-12-29 00:00:00: Portfolio Value - 880049586.40\n", - "2024-01-02 00:00:00: Portfolio Value - 879509378.24\n", - "2024-01-03 00:00:00: Portfolio Value - 869821032.53\n", - "2024-01-04 00:00:00: Portfolio Value - 871391371.87\n", - "2024-01-05 00:00:00: Portfolio Value - 869990827.09\n", - "2024-01-08 00:00:00: Portfolio Value - 880907081.54\n", - "2024-01-09 00:00:00: Portfolio Value - 878129647.33\n", - "2024-01-10 00:00:00: Portfolio Value - 880041625.47\n", - "2024-01-11 00:00:00: Portfolio Value - 882064207.39\n", - "2024-01-12 00:00:00: Portfolio Value - 884482251.89\n", - "2024-01-16 00:00:00: Portfolio Value - 879517144.24\n", - "2024-01-17 00:00:00: Portfolio Value - 874396191.13\n", - "2024-01-18 00:00:00: Portfolio Value - 881095041.42\n", - "2024-01-19 00:00:00: Portfolio Value - 888570866.29\n", - "2024-01-22 00:00:00: Portfolio Value - 894500723.02\n", - "2024-01-23 00:00:00: Portfolio Value - 894172984.68\n", - "2024-01-24 00:00:00: Portfolio Value - 893184397.92\n", - "2024-01-25 00:00:00: Portfolio Value - 906719004.67\n", - "2024-01-26 00:00:00: Portfolio Value - 906534494.41\n", - "2024-01-29 00:00:00: Portfolio Value - 916882526.08\n", - "2024-01-30 00:00:00: Portfolio Value - 920518652.17\n", - "2024-01-31 00:00:00: Portfolio Value - 911373371.24\n", - "2024-02-01 00:00:00: Portfolio Value - 926308210.01\n", - "2024-02-02 00:00:00: Portfolio Value - 925541389.51\n", - "2024-02-05 00:00:00: Portfolio Value - 919847502.01\n", - "2024-02-06 00:00:00: Portfolio Value - 924859965.81\n", - "2024-02-07 00:00:00: Portfolio Value - 931286053.46\n", - "2024-02-08 00:00:00: Portfolio Value - 936711912.71\n", - "2024-02-09 00:00:00: Portfolio Value - 938714888.53\n", - "2024-02-12 00:00:00: Portfolio Value - 941699445.71\n", - "2024-02-13 00:00:00: Portfolio Value - 928399822.53\n", - "2024-02-14 00:00:00: Portfolio Value - 939589581.87\n", - "2024-02-15 00:00:00: Portfolio Value - 949468584.42\n", - "2024-02-16 00:00:00: Portfolio Value - 944203135.94\n", - "2024-02-20 00:00:00: Portfolio Value - 939818311.36\n", - "2024-02-21 00:00:00: Portfolio Value - 938664459.10\n", - "2024-02-22 00:00:00: Portfolio Value - 956042358.16\n", - "2024-02-23 00:00:00: Portfolio Value - 958321533.42\n", - "2024-02-26 00:00:00: Portfolio Value - 959823167.31\n", - "2024-02-27 00:00:00: Portfolio Value - 963415071.97\n", - "2024-02-28 00:00:00: Portfolio Value - 966736761.76\n", - "2024-02-29 00:00:00: Portfolio Value - 965254546.61\n", - "2024-03-01 00:00:00: Portfolio Value - 974229249.17\n", - "2024-03-04 00:00:00: Portfolio Value - 978556102.83\n", - "2024-03-05 00:00:00: Portfolio Value - 968483982.04\n", - "2024-03-06 00:00:00: Portfolio Value - 974934942.23\n", - "2024-03-07 00:00:00: Portfolio Value - 983673135.57\n", - "2024-03-08 00:00:00: Portfolio Value - 975973090.75\n", - "2024-03-11 00:00:00: Portfolio Value - 971595862.65\n", - "2024-03-12 00:00:00: Portfolio Value - 982994429.49\n", - "2024-03-13 00:00:00: Portfolio Value - 981310529.95\n", - "2024-03-14 00:00:00: Portfolio Value - 974203752.22\n", - "2024-03-15 00:00:00: Portfolio Value - 967942009.58\n", - "2024-03-18 00:00:00: Portfolio Value - 971873914.45\n", - "2024-03-19 00:00:00: Portfolio Value - 979568739.82\n", - "2024-03-20 00:00:00: Portfolio Value - 986047405.97\n", - "2024-03-21 00:00:00: Portfolio Value - 992773219.10\n", - "2024-03-22 00:00:00: Portfolio Value - 982943610.42\n", - "2024-03-25 00:00:00: Portfolio Value - 978996185.45\n", - "2024-03-26 00:00:00: Portfolio Value - 982670125.98\n", - "2024-03-27 00:00:00: Portfolio Value - 995046333.86\n", - "2024-03-28 00:00:00: Portfolio Value - 997173031.81\n", - "2024-04-01 00:00:00: Portfolio Value - 990754796.58\n", - "2024-04-02 00:00:00: Portfolio Value - 978661373.69\n", - "2024-04-03 00:00:00: Portfolio Value - 975038618.02\n", - "2024-04-04 00:00:00: Portfolio Value - 961652832.42\n", - "2024-04-05 00:00:00: Portfolio Value - 972383733.98\n", - "2024-04-08 00:00:00: Portfolio Value - 973429341.46\n", - "2024-04-09 00:00:00: Portfolio Value - 974521697.10\n", - "2024-04-10 00:00:00: Portfolio Value - 962956625.56\n", - "2024-04-11 00:00:00: Portfolio Value - 961721530.16\n", - "2024-04-12 00:00:00: Portfolio Value - 944868844.19\n", - "2024-04-15 00:00:00: Portfolio Value - 933515213.35\n", - "2024-04-16 00:00:00: Portfolio Value - 930275986.09\n", - "2024-04-17 00:00:00: Portfolio Value - 928868164.96\n", - "2024-04-18 00:00:00: Portfolio Value - 926697117.48\n", - "2024-04-19 00:00:00: Portfolio Value - 919774524.42\n", - "2024-04-22 00:00:00: Portfolio Value - 928053031.67\n", - "2024-04-23 00:00:00: Portfolio Value - 938606281.37\n", - "2024-04-24 00:00:00: Portfolio Value - 938223963.48\n", - "2024-04-25 00:00:00: Portfolio Value - 934630015.64\n", - "2024-04-26 00:00:00: Portfolio Value - 936924435.75\n", - "2024-04-29 00:00:00: Portfolio Value - 944457613.07\n", - "2024-04-30 00:00:00: Portfolio Value - 934135602.26\n", - "2024-05-01 00:00:00: Portfolio Value - 931625399.45\n", - "2024-05-02 00:00:00: Portfolio Value - 937907776.89\n", - "2024-05-03 00:00:00: Portfolio Value - 944741320.74\n", - "2024-05-06 00:00:00: Portfolio Value - 958749235.48\n", - "2024-05-07 00:00:00: Portfolio Value - 959912313.34\n", - "2024-05-08 00:00:00: Portfolio Value - 954163524.47\n", - "2024-05-09 00:00:00: Portfolio Value - 964729618.05\n", - "2024-05-10 00:00:00: Portfolio Value - 964457331.47\n", - "2024-05-13 00:00:00: Portfolio Value - 960928739.98\n", - "2024-05-14 00:00:00: Portfolio Value - 963697745.06\n", - "2024-05-15 00:00:00: Portfolio Value - 975021032.52\n", - "2024-05-16 00:00:00: Portfolio Value - 970781612.60\n", - "2024-05-17 00:00:00: Portfolio Value - 973155029.34\n", - "2024-05-20 00:00:00: Portfolio Value - 974866850.64\n", - "2024-05-21 00:00:00: Portfolio Value - 977261796.74\n", - "2024-05-22 00:00:00: Portfolio Value - 971431579.99\n", - "2024-05-23 00:00:00: Portfolio Value - 956971229.73\n", - "2024-05-24 00:00:00: Portfolio Value - 968588959.38\n", - "2024-05-28 00:00:00: Portfolio Value - 962143957.43\n", - "2024-05-29 00:00:00: Portfolio Value - 952774669.17\n", - "2024-05-30 00:00:00: Portfolio Value - 955546646.47\n", - "2024-05-31 00:00:00: Portfolio Value - 965435526.70\n", - "2024-06-03 00:00:00: Portfolio Value - 961815039.07\n", - "2024-06-04 00:00:00: Portfolio Value - 961989555.64\n", - "2024-06-05 00:00:00: Portfolio Value - 970511532.98\n", - "2024-06-06 00:00:00: Portfolio Value - 969858353.30\n", - "2024-06-07 00:00:00: Portfolio Value - 968018810.08\n", - "2024-06-10 00:00:00: Portfolio Value - 971805987.99\n", - "2024-06-11 00:00:00: Portfolio Value - 969739655.12\n", - "2024-06-12 00:00:00: Portfolio Value - 975247657.18\n", - "2024-06-13 00:00:00: Portfolio Value - 975597567.99\n", - "2024-06-14 00:00:00: Portfolio Value - 971864592.66\n", - "2024-06-17 00:00:00: Portfolio Value - 979225269.12\n", - "2024-06-18 00:00:00: Portfolio Value - 981846504.54\n", - "2024-06-20 00:00:00: Portfolio Value - 979151873.08\n", - "2024-06-21 00:00:00: Portfolio Value - 980002198.96\n", - "2024-06-24 00:00:00: Portfolio Value - 982798421.14\n", - "2024-06-25 00:00:00: Portfolio Value - 980061090.29\n", - "2024-06-26 00:00:00: Portfolio Value - 976129316.65\n", - "2024-06-27 00:00:00: Portfolio Value - 976076682.88\n", - "2024-06-28 00:00:00: Portfolio Value - 972164526.23\n", - "2024-07-01 00:00:00: Portfolio Value - 967037466.96\n", - "2024-07-02 00:00:00: Portfolio Value - 969325443.72\n", - "2024-07-03 00:00:00: Portfolio Value - 968835818.59\n", - "2024-07-05 00:00:00: Portfolio Value - 971743784.49\n", - "2024-07-08 00:00:00: Portfolio Value - 975119270.30\n", - "2024-07-09 00:00:00: Portfolio Value - 971205345.32\n", - "2024-07-10 00:00:00: Portfolio Value - 978423635.47\n", - "2024-07-11 00:00:00: Portfolio Value - 982588290.92\n", - "2024-07-12 00:00:00: Portfolio Value - 993265063.86\n", - "2024-07-15 00:00:00: Portfolio Value - 991878925.83\n", - "2024-07-16 00:00:00: Portfolio Value - 1009110298.23\n", - "2024-07-17 00:00:00: Portfolio Value - 1000503549.06\n", - "2024-07-18 00:00:00: Portfolio Value - 981970716.10\n", - "2024-07-19 00:00:00: Portfolio Value - 977446901.05\n", - "2024-07-22 00:00:00: Portfolio Value - 988280422.81\n", - "2024-07-23 00:00:00: Portfolio Value - 990628915.13\n", - "2024-07-24 00:00:00: Portfolio Value - 977847133.70\n", - "2024-07-25 00:00:00: Portfolio Value - 969494232.51\n", - "2024-07-26 00:00:00: Portfolio Value - 978466654.79\n", - "2024-07-29 00:00:00: Portfolio Value - 981385084.00\n", - "2024-07-30 00:00:00: Portfolio Value - 983692570.45\n", - "2024-07-31 00:00:00: Portfolio Value - 987670120.10\n", - "2024-08-01 00:00:00: Portfolio Value - 982288081.66\n", - "2024-08-02 00:00:00: Portfolio Value - 966921917.87\n", - "2024-08-05 00:00:00: Portfolio Value - 941162552.56\n", - "2024-08-06 00:00:00: Portfolio Value - 952129051.92\n", - "2024-08-07 00:00:00: Portfolio Value - 945202017.92\n", - "2024-08-08 00:00:00: Portfolio Value - 973504832.91\n", - "2024-08-09 00:00:00: Portfolio Value - 981124365.09\n", - "2024-08-12 00:00:00: Portfolio Value - 978780102.17\n", - "2024-08-13 00:00:00: Portfolio Value - 995099008.40\n", - "2024-08-14 00:00:00: Portfolio Value - 1000487521.69\n", - "2024-08-15 00:00:00: Portfolio Value - 1017465600.31\n", - "2024-08-16 00:00:00: Portfolio Value - 1020547098.61\n", - "2024-08-19 00:00:00: Portfolio Value - 1028336468.25\n", - "2024-08-20 00:00:00: Portfolio Value - 1025756858.93\n", - "2024-08-21 00:00:00: Portfolio Value - 1032454653.41\n", - "2024-08-22 00:00:00: Portfolio Value - 1028933530.28\n", - "2024-08-23 00:00:00: Portfolio Value - 1040584661.96\n", - "2024-08-26 00:00:00: Portfolio Value - 1039635010.07\n", - "2024-08-27 00:00:00: Portfolio Value - 1044928474.02\n", - "2024-08-28 00:00:00: Portfolio Value - 1035846380.70\n", - "2024-08-29 00:00:00: Portfolio Value - 1034088432.19\n", - "2024-08-30 00:00:00: Portfolio Value - 1042284061.65\n", - "2024-09-03 00:00:00: Portfolio Value - 1026131130.46\n", - "2024-09-04 00:00:00: Portfolio Value - 1028711989.10\n", - "2024-09-05 00:00:00: Portfolio Value - 1021288071.88\n", - "2024-09-06 00:00:00: Portfolio Value - 1010126818.37\n", - "2024-09-09 00:00:00: Portfolio Value - 1024012262.21\n", - "2024-09-10 00:00:00: Portfolio Value - 1023463191.55\n", - "2024-09-11 00:00:00: Portfolio Value - 1027766099.32\n", - "2024-09-12 00:00:00: Portfolio Value - 1038612814.11\n", - "2024-09-13 00:00:00: Portfolio Value - 1046896663.81\n", - "2024-09-16 00:00:00: Portfolio Value - 1054766771.23\n", - "2024-09-17 00:00:00: Portfolio Value - 1054720472.52\n", - "2024-09-18 00:00:00: Portfolio Value - 1050245808.14\n", - "2024-09-19 00:00:00: Portfolio Value - 1060383228.29\n", - "2024-09-20 00:00:00: Portfolio Value - 1056697486.17\n", - "2024-09-23 00:00:00: Portfolio Value - 1059966461.21\n", - "2024-09-24 00:00:00: Portfolio Value - 1057232992.62\n", - "2024-09-25 00:00:00: Portfolio Value - 1051757561.07\n", - "2024-09-26 00:00:00: Portfolio Value - 1058190896.90\n", - "2024-09-27 00:00:00: Portfolio Value - 1059437916.84\n", - "2024-09-30 00:00:00: Portfolio Value - 1060009023.22\n", - "2024-10-01 00:00:00: Portfolio Value - 1053494567.75\n", - "2024-10-02 00:00:00: Portfolio Value - 1051476653.77\n", - "2024-10-03 00:00:00: Portfolio Value - 1045306814.14\n", - "2024-10-04 00:00:00: Portfolio Value - 1052811007.52\n", - "2024-10-07 00:00:00: Portfolio Value - 1041548533.18\n", - "2024-10-08 00:00:00: Portfolio Value - 1051446271.10\n", - "2024-10-09 00:00:00: Portfolio Value - 1061009599.43\n", - "2024-10-10 00:00:00: Portfolio Value - 1052367198.81\n", - "2024-10-11 00:00:00: Portfolio Value - 1065112619.52\n", - "2024-10-14 00:00:00: Portfolio Value - 1070967984.28\n", - "2024-10-15 00:00:00: Portfolio Value - 1068277394.51\n", - "2024-10-16 00:00:00: Portfolio Value - 1071618263.44\n", - "2024-10-17 00:00:00: Portfolio Value - 1065465159.68\n", - "2024-10-18 00:00:00: Portfolio Value - 1074113899.60\n", - "2024-10-21 00:00:00: Portfolio Value - 1065742340.62\n", - "2024-10-22 00:00:00: Portfolio Value - 1063954471.41\n", - "2024-10-23 00:00:00: Portfolio Value - 1054435767.73\n", - "2024-10-24 00:00:00: Portfolio Value - 1051204932.57\n", - "2024-10-25 00:00:00: Portfolio Value - 1049142827.40\n", - "2024-10-28 00:00:00: Portfolio Value - 1054365617.25\n", - "2024-10-29 00:00:00: Portfolio Value - 1049974076.04\n", - "2024-10-30 00:00:00: Portfolio Value - 1039625309.83\n", - "2024-10-31 00:00:00: Portfolio Value - 1023244108.51\n", - "2024-11-01 00:00:00: Portfolio Value - 1025959579.74\n", - "2024-11-04 00:00:00: Portfolio Value - 1025088139.75\n", - "2024-11-05 00:00:00: Portfolio Value - 1035447509.84\n", - "2024-11-06 00:00:00: Portfolio Value - 1055130603.95\n", - "2024-11-07 00:00:00: Portfolio Value - 1059756737.89\n", - "2024-11-08 00:00:00: Portfolio Value - 1082212734.04\n", - "2024-11-11 00:00:00: Portfolio Value - 1085559406.27\n", - "2024-11-12 00:00:00: Portfolio Value - 1078559561.65\n", - "2024-11-13 00:00:00: Portfolio Value - 1076404985.60\n", - "2024-11-14 00:00:00: Portfolio Value - 1067976223.15\n", - "2024-11-15 00:00:00: Portfolio Value - 1053234618.63\n", - "2024-11-18 00:00:00: Portfolio Value - 1058824128.98\n", - "2024-11-19 00:00:00: Portfolio Value - 1057295693.83\n" + "2010-05-03 00:00:00: Portfolio Value - 101202.61\n", + "2010-05-04 00:00:00: Portfolio Value - 99386.27\n", + "2010-05-05 00:00:00: Portfolio Value - 98785.21\n", + "2010-05-06 00:00:00: Portfolio Value - 96086.93\n", + "2010-05-07 00:00:00: Portfolio Value - 94935.52\n", + "2010-05-10 00:00:00: Portfolio Value - 97966.70\n", + "2010-05-11 00:00:00: Portfolio Value - 98034.57\n", + "2010-05-12 00:00:00: Portfolio Value - 99484.63\n", + "2010-05-13 00:00:00: Portfolio Value - 98802.42\n", + "2010-05-14 00:00:00: Portfolio Value - 97432.46\n", + "2010-05-17 00:00:00: Portfolio Value - 97501.43\n", + "2010-05-18 00:00:00: Portfolio Value - 96448.09\n", + "2010-05-19 00:00:00: Portfolio Value - 96032.18\n", + "2010-05-20 00:00:00: Portfolio Value - 93379.35\n", + "2010-05-21 00:00:00: Portfolio Value - 94439.43\n", + "2010-05-24 00:00:00: Portfolio Value - 93640.05\n", + "2010-05-25 00:00:00: Portfolio Value - 93726.52\n", + "2010-05-26 00:00:00: Portfolio Value - 93336.45\n", + "2010-05-27 00:00:00: Portfolio Value - 95719.71\n", + "2010-05-28 00:00:00: Portfolio Value - 95103.21\n", + "2010-06-01 00:00:00: Portfolio Value - 93884.04\n", + "2010-06-02 00:00:00: Portfolio Value - 95782.06\n", + "2010-06-03 00:00:00: Portfolio Value - 96265.66\n", + "2010-06-04 00:00:00: Portfolio Value - 93849.84\n", + "2010-06-07 00:00:00: Portfolio Value - 92638.01\n", + "2010-06-08 00:00:00: Portfolio Value - 93166.00\n", + "2010-06-09 00:00:00: Portfolio Value - 92959.58\n", + "2010-06-10 00:00:00: Portfolio Value - 94628.44\n", + "2010-06-11 00:00:00: Portfolio Value - 95121.25\n", + "2010-06-14 00:00:00: Portfolio Value - 95267.01\n", + "2010-06-15 00:00:00: Portfolio Value - 97060.55\n", + "2010-06-16 00:00:00: Portfolio Value - 97157.86\n", + "2010-06-17 00:00:00: Portfolio Value - 97572.18\n", + "2010-06-18 00:00:00: Portfolio Value - 97501.43\n", + "2010-06-21 00:00:00: Portfolio Value - 97148.49\n", + "2010-06-22 00:00:00: Portfolio Value - 95879.71\n", + "2010-06-23 00:00:00: Portfolio Value - 95705.70\n", + "2010-06-24 00:00:00: Portfolio Value - 94719.14\n", + "2010-06-25 00:00:00: Portfolio Value - 95159.34\n", + "2010-06-28 00:00:00: Portfolio Value - 95063.87\n", + "2010-06-29 00:00:00: Portfolio Value - 92715.16\n", + "2010-06-30 00:00:00: Portfolio Value - 92092.00\n", + "2010-07-01 00:00:00: Portfolio Value - 91965.06\n", + "2010-07-02 00:00:00: Portfolio Value - 91821.22\n", + "2010-07-06 00:00:00: Portfolio Value - 92145.55\n", + "2010-07-07 00:00:00: Portfolio Value - 94432.80\n", + "2010-07-08 00:00:00: Portfolio Value - 95089.39\n", + "2010-07-09 00:00:00: Portfolio Value - 95568.14\n", + "2010-07-12 00:00:00: Portfolio Value - 95226.07\n", + "2010-07-13 00:00:00: Portfolio Value - 96514.32\n", + "2010-07-14 00:00:00: Portfolio Value - 96694.14\n", + "2010-07-15 00:00:00: Portfolio Value - 96815.04\n", + "2010-07-16 00:00:00: Portfolio Value - 95065.39\n", + "2010-07-19 00:00:00: Portfolio Value - 95412.91\n", + "2010-07-20 00:00:00: Portfolio Value - 96320.29\n", + "2010-07-21 00:00:00: Portfolio Value - 95274.18\n", + "2010-07-22 00:00:00: Portfolio Value - 96642.79\n", + "2010-07-23 00:00:00: Portfolio Value - 97500.40\n", + "2010-07-26 00:00:00: Portfolio Value - 98372.54\n", + "2010-07-27 00:00:00: Portfolio Value - 98224.96\n", + "2010-07-28 00:00:00: Portfolio Value - 97711.85\n", + "2010-07-29 00:00:00: Portfolio Value - 97094.47\n", + "2010-07-30 00:00:00: Portfolio Value - 96792.13\n", + "2010-08-02 00:00:00: Portfolio Value - 97824.64\n", + "2010-08-03 00:00:00: Portfolio Value - 97707.55\n", + "2010-08-04 00:00:00: Portfolio Value - 98413.05\n", + "2010-08-05 00:00:00: Portfolio Value - 98140.64\n", + "2010-08-06 00:00:00: Portfolio Value - 98095.95\n", + "2010-08-09 00:00:00: Portfolio Value - 98630.52\n", + "2010-08-10 00:00:00: Portfolio Value - 98172.81\n", + "2010-08-11 00:00:00: Portfolio Value - 96283.50\n", + "2010-08-12 00:00:00: Portfolio Value - 96196.74\n", + "2010-08-13 00:00:00: Portfolio Value - 96017.96\n", + "2010-08-16 00:00:00: Portfolio Value - 96122.36\n", + "2010-08-17 00:00:00: Portfolio Value - 96960.67\n", + "2010-08-18 00:00:00: Portfolio Value - 96987.84\n", + "2010-08-19 00:00:00: Portfolio Value - 95806.97\n", + "2010-08-20 00:00:00: Portfolio Value - 95980.64\n", + "2010-08-23 00:00:00: Portfolio Value - 95700.99\n", + "2010-08-24 00:00:00: Portfolio Value - 94690.86\n", + "2010-08-25 00:00:00: Portfolio Value - 95062.61\n", + "2010-08-26 00:00:00: Portfolio Value - 94463.93\n", + "2010-08-27 00:00:00: Portfolio Value - 95587.20\n", + "2010-08-30 00:00:00: Portfolio Value - 94374.77\n", + "2010-08-31 00:00:00: Portfolio Value - 94425.57\n", + "2010-09-01 00:00:00: Portfolio Value - 96244.18\n", + "2010-09-02 00:00:00: Portfolio Value - 97140.43\n", + "2010-09-03 00:00:00: Portfolio Value - 98273.04\n", + "2010-09-07 00:00:00: Portfolio Value - 97549.14\n", + "2010-09-08 00:00:00: Portfolio Value - 98012.30\n", + "2010-09-09 00:00:00: Portfolio Value - 98345.91\n", + "2010-09-10 00:00:00: Portfolio Value - 98594.07\n", + "2010-09-13 00:00:00: Portfolio Value - 99506.09\n", + "2010-09-14 00:00:00: Portfolio Value - 99575.38\n", + "2010-09-15 00:00:00: Portfolio Value - 99809.43\n", + "2010-09-16 00:00:00: Portfolio Value - 100012.09\n", + "2010-09-17 00:00:00: Portfolio Value - 100091.16\n", + "2010-09-20 00:00:00: Portfolio Value - 101145.74\n", + "2010-09-21 00:00:00: Portfolio Value - 100988.61\n", + "2010-09-22 00:00:00: Portfolio Value - 100383.02\n", + "2010-09-23 00:00:00: Portfolio Value - 99605.95\n", + "2010-09-24 00:00:00: Portfolio Value - 101229.85\n", + "2010-09-27 00:00:00: Portfolio Value - 101084.56\n", + "2010-09-28 00:00:00: Portfolio Value - 101572.81\n", + "2010-09-29 00:00:00: Portfolio Value - 101529.06\n", + "2010-09-30 00:00:00: Portfolio Value - 101290.41\n", + "2010-10-01 00:00:00: Portfolio Value - 101635.84\n", + "2010-10-04 00:00:00: Portfolio Value - 101121.51\n", + "2010-10-05 00:00:00: Portfolio Value - 102337.89\n", + "2010-10-06 00:00:00: Portfolio Value - 101986.51\n", + "2010-10-07 00:00:00: Portfolio Value - 102044.53\n", + "2010-10-08 00:00:00: Portfolio Value - 102615.45\n", + "2010-10-11 00:00:00: Portfolio Value - 102830.47\n", + "2010-10-12 00:00:00: Portfolio Value - 103155.94\n", + "2010-10-13 00:00:00: Portfolio Value - 103423.62\n", + "2010-10-14 00:00:00: Portfolio Value - 103424.51\n", + "2010-10-15 00:00:00: Portfolio Value - 103653.44\n", + "2010-10-18 00:00:00: Portfolio Value - 104288.22\n", + "2010-10-19 00:00:00: Portfolio Value - 103041.31\n", + "2010-10-20 00:00:00: Portfolio Value - 103897.56\n", + "2010-10-21 00:00:00: Portfolio Value - 104278.71\n", + "2010-10-22 00:00:00: Portfolio Value - 104351.02\n", + "2010-10-25 00:00:00: Portfolio Value - 104561.33\n", + "2010-10-26 00:00:00: Portfolio Value - 104874.80\n", + "2010-10-27 00:00:00: Portfolio Value - 104915.15\n", + "2010-10-28 00:00:00: Portfolio Value - 105119.11\n", + "2010-10-29 00:00:00: Portfolio Value - 104642.34\n", + "2010-11-01 00:00:00: Portfolio Value - 104427.81\n", + "2010-11-02 00:00:00: Portfolio Value - 105286.32\n", + "2010-11-03 00:00:00: Portfolio Value - 105572.34\n", + "2010-11-04 00:00:00: Portfolio Value - 106614.61\n", + "2010-11-05 00:00:00: Portfolio Value - 107047.42\n", + "2010-11-08 00:00:00: Portfolio Value - 107105.67\n", + "2010-11-09 00:00:00: Portfolio Value - 106347.61\n", + "2010-11-10 00:00:00: Portfolio Value - 106634.98\n", + "2010-11-11 00:00:00: Portfolio Value - 106565.43\n", + "2010-11-12 00:00:00: Portfolio Value - 105539.55\n", + "2010-11-15 00:00:00: Portfolio Value - 105594.98\n", + "2010-11-16 00:00:00: Portfolio Value - 104142.79\n", + "2010-11-17 00:00:00: Portfolio Value - 103862.24\n", + "2010-11-18 00:00:00: Portfolio Value - 104903.18\n", + "2010-11-19 00:00:00: Portfolio Value - 105318.64\n", + "2010-11-22 00:00:00: Portfolio Value - 105537.96\n", + "2010-11-23 00:00:00: Portfolio Value - 104514.87\n", + "2010-11-24 00:00:00: Portfolio Value - 105694.33\n", + "2010-11-26 00:00:00: Portfolio Value - 105218.22\n", + "2010-11-29 00:00:00: Portfolio Value - 105023.23\n", + "2010-11-30 00:00:00: Portfolio Value - 104705.07\n", + "2010-12-01 00:00:00: Portfolio Value - 106331.59\n", + "2010-12-02 00:00:00: Portfolio Value - 107042.54\n", + "2010-12-03 00:00:00: Portfolio Value - 107285.75\n", + "2010-12-06 00:00:00: Portfolio Value - 107164.54\n", + "2010-12-07 00:00:00: Portfolio Value - 107095.07\n", + "2010-12-08 00:00:00: Portfolio Value - 107383.02\n", + "2010-12-09 00:00:00: Portfolio Value - 107900.31\n", + "2010-12-10 00:00:00: Portfolio Value - 108503.52\n", + "2010-12-13 00:00:00: Portfolio Value - 108257.88\n", + "2010-12-14 00:00:00: Portfolio Value - 108288.53\n", + "2010-12-15 00:00:00: Portfolio Value - 107834.97\n", + "2010-12-16 00:00:00: Portfolio Value - 108699.24\n", + "2010-12-17 00:00:00: Portfolio Value - 108939.19\n", + "2010-12-20 00:00:00: Portfolio Value - 109117.58\n", + "2010-12-21 00:00:00: Portfolio Value - 109681.88\n", + "2010-12-22 00:00:00: Portfolio Value - 109751.99\n", + "2010-12-23 00:00:00: Portfolio Value - 109514.03\n", + "2010-12-27 00:00:00: Portfolio Value - 109613.90\n", + "2010-12-28 00:00:00: Portfolio Value - 109460.97\n", + "2010-12-29 00:00:00: Portfolio Value - 109462.44\n", + "2010-12-30 00:00:00: Portfolio Value - 109445.82\n", + "2010-12-31 00:00:00: Portfolio Value - 109272.33\n", + "2011-01-03 00:00:00: Portfolio Value - 110360.29\n", + "2011-01-04 00:00:00: Portfolio Value - 110053.92\n", + "2011-01-05 00:00:00: Portfolio Value - 110491.38\n", + "2011-01-06 00:00:00: Portfolio Value - 110542.33\n", + "2011-01-07 00:00:00: Portfolio Value - 110676.05\n", + "2011-01-10 00:00:00: Portfolio Value - 110537.28\n", + "2011-01-11 00:00:00: Portfolio Value - 110768.44\n", + "2011-01-12 00:00:00: Portfolio Value - 111520.80\n", + "2011-01-13 00:00:00: Portfolio Value - 111459.53\n", + "2011-01-14 00:00:00: Portfolio Value - 112111.13\n", + "2011-01-18 00:00:00: Portfolio Value - 112453.91\n", + "2011-01-19 00:00:00: Portfolio Value - 111175.72\n", + "2011-01-20 00:00:00: Portfolio Value - 111189.75\n", + "2011-01-21 00:00:00: Portfolio Value - 111121.53\n", + "2011-01-24 00:00:00: Portfolio Value - 111863.56\n", + "2011-01-25 00:00:00: Portfolio Value - 111451.75\n", + "2011-01-26 00:00:00: Portfolio Value - 111832.96\n", + "2011-01-27 00:00:00: Portfolio Value - 112350.05\n", + "2011-01-28 00:00:00: Portfolio Value - 110729.18\n", + "2011-01-31 00:00:00: Portfolio Value - 111251.32\n", + "2011-02-01 00:00:00: Portfolio Value - 112455.13\n", + "2011-02-02 00:00:00: Portfolio Value - 112534.76\n", + "2011-02-03 00:00:00: Portfolio Value - 112901.65\n", + "2011-02-04 00:00:00: Portfolio Value - 113005.37\n", + "2011-02-07 00:00:00: Portfolio Value - 113692.78\n", + "2011-02-08 00:00:00: Portfolio Value - 114155.09\n", + "2011-02-09 00:00:00: Portfolio Value - 113875.15\n", + "2011-02-10 00:00:00: Portfolio Value - 113717.32\n", + "2011-02-11 00:00:00: Portfolio Value - 114836.79\n", + "2011-02-14 00:00:00: Portfolio Value - 115033.06\n", + "2011-02-15 00:00:00: Portfolio Value - 114783.65\n", + "2011-02-16 00:00:00: Portfolio Value - 115353.26\n", + "2011-02-17 00:00:00: Portfolio Value - 115705.72\n", + "2011-02-18 00:00:00: Portfolio Value - 115660.12\n", + "2011-02-22 00:00:00: Portfolio Value - 113725.79\n", + "2011-02-23 00:00:00: Portfolio Value - 112784.33\n", + "2011-02-24 00:00:00: Portfolio Value - 112865.88\n", + "2011-02-25 00:00:00: Portfolio Value - 113463.96\n", + "2011-02-28 00:00:00: Portfolio Value - 113190.31\n", + "2011-03-01 00:00:00: Portfolio Value - 112087.31\n", + "2011-03-02 00:00:00: Portfolio Value - 112207.60\n", + "2011-03-03 00:00:00: Portfolio Value - 113618.13\n", + "2011-03-04 00:00:00: Portfolio Value - 113166.05\n", + "2011-03-07 00:00:00: Portfolio Value - 112408.04\n", + "2011-03-08 00:00:00: Portfolio Value - 113485.61\n", + "2011-03-09 00:00:00: Portfolio Value - 113563.84\n", + "2011-03-10 00:00:00: Portfolio Value - 112084.24\n", + "2011-03-11 00:00:00: Portfolio Value - 112633.73\n", + "2011-03-14 00:00:00: Portfolio Value - 112295.88\n", + "2011-03-15 00:00:00: Portfolio Value - 111983.05\n", + "2011-03-16 00:00:00: Portfolio Value - 110563.25\n", + "2011-03-17 00:00:00: Portfolio Value - 111133.48\n", + "2011-03-18 00:00:00: Portfolio Value - 111431.44\n", + "2011-03-21 00:00:00: Portfolio Value - 112769.07\n", + "2011-03-22 00:00:00: Portfolio Value - 112419.55\n", + "2011-03-23 00:00:00: Portfolio Value - 112560.30\n", + "2011-03-24 00:00:00: Portfolio Value - 113415.51\n", + "2011-03-25 00:00:00: Portfolio Value - 113765.73\n", + "2011-03-28 00:00:00: Portfolio Value - 113769.31\n", + "2011-03-29 00:00:00: Portfolio Value - 114410.45\n", + "2011-03-30 00:00:00: Portfolio Value - 114980.84\n", + "2011-03-31 00:00:00: Portfolio Value - 115005.01\n", + "2011-04-01 00:00:00: Portfolio Value - 115758.37\n", + "2011-04-04 00:00:00: Portfolio Value - 115748.12\n", + "2011-04-05 00:00:00: Portfolio Value - 115732.95\n", + "2011-04-06 00:00:00: Portfolio Value - 116046.81\n", + "2011-04-07 00:00:00: Portfolio Value - 115844.99\n", + "2011-04-08 00:00:00: Portfolio Value - 115211.60\n", + "2011-04-11 00:00:00: Portfolio Value - 114961.49\n", + "2011-04-12 00:00:00: Portfolio Value - 114598.00\n", + "2011-04-13 00:00:00: Portfolio Value - 114996.77\n", + "2011-04-14 00:00:00: Portfolio Value - 114740.24\n", + "2011-04-15 00:00:00: Portfolio Value - 115300.17\n", + "2011-04-18 00:00:00: Portfolio Value - 114831.58\n", + "2011-04-19 00:00:00: Portfolio Value - 114857.70\n", + "2011-04-20 00:00:00: Portfolio Value - 116034.41\n", + "2011-04-21 00:00:00: Portfolio Value - 116431.37\n", + "2011-04-25 00:00:00: Portfolio Value - 116191.05\n", + "2011-04-26 00:00:00: Portfolio Value - 116794.64\n", + "2011-04-27 00:00:00: Portfolio Value - 118100.28\n", + "2011-04-28 00:00:00: Portfolio Value - 117858.99\n", + "2011-04-29 00:00:00: Portfolio Value - 117371.79\n", + "2011-05-02 00:00:00: Portfolio Value - 117442.21\n", + "2011-05-03 00:00:00: Portfolio Value - 116905.34\n", + "2011-05-04 00:00:00: Portfolio Value - 116001.53\n", + "2011-05-05 00:00:00: Portfolio Value - 115730.70\n", + "2011-05-06 00:00:00: Portfolio Value - 116269.40\n", + "2011-05-09 00:00:00: Portfolio Value - 116630.66\n", + "2011-05-10 00:00:00: Portfolio Value - 117374.84\n", + "2011-05-11 00:00:00: Portfolio Value - 116701.19\n", + "2011-05-12 00:00:00: Portfolio Value - 117513.40\n", + "2011-05-13 00:00:00: Portfolio Value - 116677.15\n", + "2011-05-16 00:00:00: Portfolio Value - 116028.20\n", + "2011-05-17 00:00:00: Portfolio Value - 116146.90\n", + "2011-05-18 00:00:00: Portfolio Value - 117003.88\n", + "2011-05-19 00:00:00: Portfolio Value - 117133.45\n", + "2011-05-20 00:00:00: Portfolio Value - 116568.16\n", + "2011-05-23 00:00:00: Portfolio Value - 115413.00\n", + "2011-05-24 00:00:00: Portfolio Value - 115209.52\n", + "2011-05-25 00:00:00: Portfolio Value - 115296.88\n", + "2011-05-26 00:00:00: Portfolio Value - 115521.41\n", + "2011-05-27 00:00:00: Portfolio Value - 115997.47\n", + "2011-05-31 00:00:00: Portfolio Value - 116978.72\n", + "2011-06-01 00:00:00: Portfolio Value - 115052.72\n", + "2011-06-02 00:00:00: Portfolio Value - 114639.80\n", + "2011-06-03 00:00:00: Portfolio Value - 113734.39\n", + "2011-06-06 00:00:00: Portfolio Value - 112703.80\n", + "2011-06-07 00:00:00: Portfolio Value - 112695.81\n", + "2011-06-08 00:00:00: Portfolio Value - 112263.58\n", + "2011-06-09 00:00:00: Portfolio Value - 112854.61\n", + "2011-06-10 00:00:00: Portfolio Value - 112141.14\n", + "2011-06-13 00:00:00: Portfolio Value - 112296.00\n", + "2011-06-14 00:00:00: Portfolio Value - 113413.72\n", + "2011-06-15 00:00:00: Portfolio Value - 112163.20\n", + "2011-06-16 00:00:00: Portfolio Value - 112382.87\n", + "2011-06-17 00:00:00: Portfolio Value - 112800.50\n", + "2011-06-20 00:00:00: Portfolio Value - 113513.17\n", + "2011-06-21 00:00:00: Portfolio Value - 114667.65\n", + "2011-06-22 00:00:00: Portfolio Value - 113928.87\n", + "2011-06-23 00:00:00: Portfolio Value - 113783.82\n", + "2011-06-24 00:00:00: Portfolio Value - 112679.87\n", + "2011-06-27 00:00:00: Portfolio Value - 113491.43\n", + "2011-06-28 00:00:00: Portfolio Value - 114904.07\n", + "2011-06-29 00:00:00: Portfolio Value - 115542.96\n", + "2011-06-30 00:00:00: Portfolio Value - 116305.23\n", + "2011-07-01 00:00:00: Portfolio Value - 117819.43\n", + "2011-07-05 00:00:00: Portfolio Value - 117851.95\n", + "2011-07-06 00:00:00: Portfolio Value - 118114.00\n", + "2011-07-07 00:00:00: Portfolio Value - 119077.02\n", + "2011-07-08 00:00:00: Portfolio Value - 118795.99\n", + "2011-07-11 00:00:00: Portfolio Value - 116948.84\n", + "2011-07-12 00:00:00: Portfolio Value - 116734.88\n", + "2011-07-13 00:00:00: Portfolio Value - 117011.59\n", + "2011-07-14 00:00:00: Portfolio Value - 116383.54\n", + "2011-07-15 00:00:00: Portfolio Value - 116810.93\n", + "2011-07-18 00:00:00: Portfolio Value - 115882.62\n", + "2011-07-19 00:00:00: Portfolio Value - 117393.51\n", + "2011-07-20 00:00:00: Portfolio Value - 117433.98\n", + "2011-07-21 00:00:00: Portfolio Value - 118286.86\n", + "2011-07-22 00:00:00: Portfolio Value - 118352.19\n", + "2011-07-25 00:00:00: Portfolio Value - 117450.36\n", + "2011-07-26 00:00:00: Portfolio Value - 117015.67\n", + "2011-07-27 00:00:00: Portfolio Value - 115254.25\n", + "2011-07-28 00:00:00: Portfolio Value - 114484.82\n", + "2011-07-29 00:00:00: Portfolio Value - 114073.15\n", + "2011-08-01 00:00:00: Portfolio Value - 113712.61\n", + "2011-08-02 00:00:00: Portfolio Value - 111399.39\n", + "2011-08-03 00:00:00: Portfolio Value - 111942.31\n", + "2011-08-04 00:00:00: Portfolio Value - 107825.88\n", + "2011-08-05 00:00:00: Portfolio Value - 107629.14\n", + "2011-08-08 00:00:00: Portfolio Value - 102184.61\n", + "2011-08-09 00:00:00: Portfolio Value - 105826.36\n", + "2011-08-10 00:00:00: Portfolio Value - 102731.23\n", + "2011-08-11 00:00:00: Portfolio Value - 106409.29\n", + "2011-08-12 00:00:00: Portfolio Value - 107298.95\n", + "2011-08-15 00:00:00: Portfolio Value - 109303.51\n", + "2011-08-16 00:00:00: Portfolio Value - 108411.39\n", + "2011-08-17 00:00:00: Portfolio Value - 108043.06\n", + "2011-08-18 00:00:00: Portfolio Value - 104289.02\n", + "2011-08-19 00:00:00: Portfolio Value - 102921.25\n", + "2011-08-22 00:00:00: Portfolio Value - 102693.05\n", + "2011-08-23 00:00:00: Portfolio Value - 105803.10\n", + "2011-08-24 00:00:00: Portfolio Value - 106861.30\n", + "2011-08-25 00:00:00: Portfolio Value - 105576.80\n", + "2011-08-26 00:00:00: Portfolio Value - 107084.35\n", + "2011-08-29 00:00:00: Portfolio Value - 109612.77\n", + "2011-08-30 00:00:00: Portfolio Value - 110032.70\n", + "2011-08-31 00:00:00: Portfolio Value - 110234.87\n", + "2011-09-01 00:00:00: Portfolio Value - 109210.10\n", + "2011-09-02 00:00:00: Portfolio Value - 107161.76\n", + "2011-09-06 00:00:00: Portfolio Value - 106818.37\n", + "2011-09-07 00:00:00: Portfolio Value - 109187.09\n", + "2011-09-08 00:00:00: Portfolio Value - 108444.32\n", + "2011-09-09 00:00:00: Portfolio Value - 106437.56\n", + "2011-09-12 00:00:00: Portfolio Value - 107022.61\n", + "2011-09-13 00:00:00: Portfolio Value - 107900.20\n", + "2011-09-14 00:00:00: Portfolio Value - 108762.27\n", + "2011-09-15 00:00:00: Portfolio Value - 109459.61\n", + "2011-09-16 00:00:00: Portfolio Value - 109603.46\n", + "2011-09-19 00:00:00: Portfolio Value - 109313.77\n", + "2011-09-20 00:00:00: Portfolio Value - 108692.81\n", + "2011-09-21 00:00:00: Portfolio Value - 106650.09\n", + "2011-09-22 00:00:00: Portfolio Value - 104134.64\n", + "2011-09-23 00:00:00: Portfolio Value - 105019.51\n", + "2011-09-26 00:00:00: Portfolio Value - 106305.88\n", + "2011-09-27 00:00:00: Portfolio Value - 107273.36\n", + "2011-09-28 00:00:00: Portfolio Value - 105235.80\n", + "2011-09-29 00:00:00: Portfolio Value - 105617.61\n", + "2011-09-30 00:00:00: Portfolio Value - 103555.29\n", + "2011-10-03 00:00:00: Portfolio Value - 100767.11\n", + "2011-10-04 00:00:00: Portfolio Value - 102636.81\n", + "2011-10-05 00:00:00: Portfolio Value - 104044.54\n", + "2011-10-06 00:00:00: Portfolio Value - 106039.45\n", + "2011-10-07 00:00:00: Portfolio Value - 104970.41\n", + "2011-10-10 00:00:00: Portfolio Value - 107471.76\n", + "2011-10-11 00:00:00: Portfolio Value - 107021.09\n", + "2011-10-12 00:00:00: Portfolio Value - 107507.09\n", + "2011-10-13 00:00:00: Portfolio Value - 107360.62\n", + "2011-10-14 00:00:00: Portfolio Value - 108200.53\n", + "2011-10-17 00:00:00: Portfolio Value - 106796.83\n", + "2011-10-18 00:00:00: Portfolio Value - 108147.55\n", + "2011-10-19 00:00:00: Portfolio Value - 107206.98\n", + "2011-10-20 00:00:00: Portfolio Value - 107415.78\n", + "2011-10-21 00:00:00: Portfolio Value - 108990.53\n", + "2011-10-24 00:00:00: Portfolio Value - 110388.55\n", + "2011-10-25 00:00:00: Portfolio Value - 107696.16\n", + "2011-10-26 00:00:00: Portfolio Value - 108740.59\n", + "2011-10-27 00:00:00: Portfolio Value - 111548.14\n", + "2011-10-28 00:00:00: Portfolio Value - 111747.25\n", + "2011-10-31 00:00:00: Portfolio Value - 109831.70\n", + "2011-11-01 00:00:00: Portfolio Value - 107658.98\n", + "2011-11-02 00:00:00: Portfolio Value - 108831.11\n", + "2011-11-03 00:00:00: Portfolio Value - 109849.88\n", + "2011-11-04 00:00:00: Portfolio Value - 109850.82\n", + "2011-11-07 00:00:00: Portfolio Value - 110018.39\n", + "2011-11-08 00:00:00: Portfolio Value - 110804.44\n", + "2011-11-09 00:00:00: Portfolio Value - 107762.95\n", + "2011-11-10 00:00:00: Portfolio Value - 108087.94\n", + "2011-11-11 00:00:00: Portfolio Value - 109571.72\n", + "2011-11-14 00:00:00: Portfolio Value - 108840.44\n", + "2011-11-15 00:00:00: Portfolio Value - 109239.11\n", + "2011-11-16 00:00:00: Portfolio Value - 107591.63\n", + "2011-11-17 00:00:00: Portfolio Value - 106532.67\n", + "2011-11-18 00:00:00: Portfolio Value - 106420.76\n", + "2011-11-21 00:00:00: Portfolio Value - 105153.91\n", + "2011-11-22 00:00:00: Portfolio Value - 104867.37\n", + "2011-11-23 00:00:00: Portfolio Value - 103270.39\n", + "2011-11-25 00:00:00: Portfolio Value - 103052.38\n", + "2011-11-28 00:00:00: Portfolio Value - 105574.63\n", + "2011-11-29 00:00:00: Portfolio Value - 105618.51\n", + "2011-11-30 00:00:00: Portfolio Value - 109129.00\n", + "2011-12-01 00:00:00: Portfolio Value - 108955.76\n", + "2011-12-02 00:00:00: Portfolio Value - 109005.78\n", + "2011-12-05 00:00:00: Portfolio Value - 109530.05\n", + "2011-12-06 00:00:00: Portfolio Value - 109355.93\n", + "2011-12-07 00:00:00: Portfolio Value - 109574.99\n", + "2011-12-08 00:00:00: Portfolio Value - 107879.90\n", + "2011-12-09 00:00:00: Portfolio Value - 109338.75\n", + "2011-12-12 00:00:00: Portfolio Value - 108384.84\n", + "2011-12-13 00:00:00: Portfolio Value - 107247.63\n", + "2011-12-14 00:00:00: Portfolio Value - 105967.12\n", + "2011-12-15 00:00:00: Portfolio Value - 106379.33\n", + "2011-12-16 00:00:00: Portfolio Value - 106608.57\n", + "2011-12-19 00:00:00: Portfolio Value - 105661.00\n", + "2011-12-20 00:00:00: Portfolio Value - 108117.26\n", + "2011-12-21 00:00:00: Portfolio Value - 108282.61\n", + "2011-12-22 00:00:00: Portfolio Value - 108843.42\n", + "2011-12-23 00:00:00: Portfolio Value - 109625.62\n", + "2011-12-27 00:00:00: Portfolio Value - 109780.91\n", + "2011-12-28 00:00:00: Portfolio Value - 108603.70\n", + "2011-12-29 00:00:00: Portfolio Value - 109396.16\n", + "2011-12-30 00:00:00: Portfolio Value - 109005.71\n", + "2012-01-03 00:00:00: Portfolio Value - 109769.28\n", + "2012-01-04 00:00:00: Portfolio Value - 109724.72\n", + "2012-01-05 00:00:00: Portfolio Value - 110086.14\n", + "2012-01-06 00:00:00: Portfolio Value - 109923.45\n", + "2012-01-09 00:00:00: Portfolio Value - 110068.25\n", + "2012-01-10 00:00:00: Portfolio Value - 111584.19\n", + "2012-01-11 00:00:00: Portfolio Value - 112361.14\n", + "2012-01-12 00:00:00: Portfolio Value - 112506.57\n", + "2012-01-13 00:00:00: Portfolio Value - 112203.35\n", + "2012-01-17 00:00:00: Portfolio Value - 112411.48\n", + "2012-01-18 00:00:00: Portfolio Value - 113599.37\n", + "2012-01-19 00:00:00: Portfolio Value - 113860.62\n", + "2012-01-20 00:00:00: Portfolio Value - 113896.04\n", + "2012-01-23 00:00:00: Portfolio Value - 113874.52\n", + "2012-01-24 00:00:00: Portfolio Value - 114016.24\n", + "2012-01-25 00:00:00: Portfolio Value - 115159.98\n", + "2012-01-26 00:00:00: Portfolio Value - 115093.34\n", + "2012-01-27 00:00:00: Portfolio Value - 115509.40\n", + "2012-01-30 00:00:00: Portfolio Value - 115179.40\n", + "2012-01-31 00:00:00: Portfolio Value - 115251.43\n", + "2012-02-01 00:00:00: Portfolio Value - 116301.76\n", + "2012-02-02 00:00:00: Portfolio Value - 116653.09\n", + "2012-02-03 00:00:00: Portfolio Value - 117781.37\n", + "2012-02-06 00:00:00: Portfolio Value - 117822.12\n", + "2012-02-07 00:00:00: Portfolio Value - 117824.47\n", + "2012-02-08 00:00:00: Portfolio Value - 118093.67\n", + "2012-02-09 00:00:00: Portfolio Value - 118317.17\n", + "2012-02-10 00:00:00: Portfolio Value - 117384.04\n", + "2012-02-13 00:00:00: Portfolio Value - 118071.11\n", + "2012-02-14 00:00:00: Portfolio Value - 117826.31\n", + "2012-02-15 00:00:00: Portfolio Value - 117362.43\n", + "2012-02-16 00:00:00: Portfolio Value - 118116.20\n", + "2012-02-17 00:00:00: Portfolio Value - 118059.27\n", + "2012-02-21 00:00:00: Portfolio Value - 117698.49\n", + "2012-02-22 00:00:00: Portfolio Value - 117286.28\n", + "2012-02-23 00:00:00: Portfolio Value - 117844.57\n", + "2012-02-24 00:00:00: Portfolio Value - 117877.21\n", + "2012-02-27 00:00:00: Portfolio Value - 118020.93\n", + "2012-02-28 00:00:00: Portfolio Value - 118302.37\n", + "2012-02-29 00:00:00: Portfolio Value - 117796.27\n", + "2012-03-01 00:00:00: Portfolio Value - 118688.93\n", + "2012-03-02 00:00:00: Portfolio Value - 118694.75\n", + "2012-03-05 00:00:00: Portfolio Value - 118416.31\n", + "2012-03-06 00:00:00: Portfolio Value - 116763.34\n", + "2012-03-07 00:00:00: Portfolio Value - 117561.15\n", + "2012-03-08 00:00:00: Portfolio Value - 118502.80\n", + "2012-03-09 00:00:00: Portfolio Value - 118876.29\n", + "2012-03-12 00:00:00: Portfolio Value - 118932.00\n", + "2012-03-13 00:00:00: Portfolio Value - 120555.67\n", + "2012-03-14 00:00:00: Portfolio Value - 120042.48\n", + "2012-03-15 00:00:00: Portfolio Value - 121101.97\n", + "2012-03-16 00:00:00: Portfolio Value - 120745.85\n", + "2012-03-19 00:00:00: Portfolio Value - 121008.29\n", + "2012-03-20 00:00:00: Portfolio Value - 120808.24\n", + "2012-03-21 00:00:00: Portfolio Value - 120940.50\n", + "2012-03-22 00:00:00: Portfolio Value - 120703.26\n", + "2012-03-23 00:00:00: Portfolio Value - 120961.41\n", + "2012-03-26 00:00:00: Portfolio Value - 122246.25\n", + "2012-03-27 00:00:00: Portfolio Value - 121847.29\n", + "2012-03-28 00:00:00: Portfolio Value - 121386.64\n", + "2012-03-29 00:00:00: Portfolio Value - 121150.32\n", + "2012-03-30 00:00:00: Portfolio Value - 121520.05\n", + "2012-04-02 00:00:00: Portfolio Value - 122248.33\n", + "2012-04-03 00:00:00: Portfolio Value - 122325.41\n", + "2012-04-04 00:00:00: Portfolio Value - 121166.36\n", + "2012-04-05 00:00:00: Portfolio Value - 121132.69\n", + "2012-04-09 00:00:00: Portfolio Value - 120031.79\n", + "2012-04-10 00:00:00: Portfolio Value - 118035.87\n", + "2012-04-11 00:00:00: Portfolio Value - 119104.66\n", + "2012-04-12 00:00:00: Portfolio Value - 120224.89\n", + "2012-04-13 00:00:00: Portfolio Value - 119282.38\n", + "2012-04-16 00:00:00: Portfolio Value - 119494.76\n", + "2012-04-17 00:00:00: Portfolio Value - 120737.97\n", + "2012-04-18 00:00:00: Portfolio Value - 120748.16\n", + "2012-04-19 00:00:00: Portfolio Value - 120415.61\n", + "2012-04-20 00:00:00: Portfolio Value - 120690.89\n", + "2012-04-23 00:00:00: Portfolio Value - 119660.02\n", + "2012-04-24 00:00:00: Portfolio Value - 119587.21\n", + "2012-04-25 00:00:00: Portfolio Value - 120974.44\n", + "2012-04-26 00:00:00: Portfolio Value - 122039.68\n", + "2012-04-27 00:00:00: Portfolio Value - 122235.58\n", + "2012-04-30 00:00:00: Portfolio Value - 121847.07\n", + "2012-05-01 00:00:00: Portfolio Value - 122123.14\n", + "2012-05-02 00:00:00: Portfolio Value - 122219.97\n", + "2012-05-03 00:00:00: Portfolio Value - 121325.29\n", + "2012-05-04 00:00:00: Portfolio Value - 119636.07\n", + "2012-05-07 00:00:00: Portfolio Value - 119535.42\n", + "2012-05-08 00:00:00: Portfolio Value - 119044.29\n", + "2012-05-09 00:00:00: Portfolio Value - 118354.26\n", + "2012-05-10 00:00:00: Portfolio Value - 118870.08\n", + "2012-05-11 00:00:00: Portfolio Value - 118912.01\n", + "2012-05-14 00:00:00: Portfolio Value - 117780.61\n", + "2012-05-15 00:00:00: Portfolio Value - 117461.71\n", + "2012-05-16 00:00:00: Portfolio Value - 117207.29\n", + "2012-05-17 00:00:00: Portfolio Value - 115256.85\n", + "2012-05-18 00:00:00: Portfolio Value - 114207.14\n", + "2012-05-21 00:00:00: Portfolio Value - 115872.02\n", + "2012-05-22 00:00:00: Portfolio Value - 115979.79\n", + "2012-05-23 00:00:00: Portfolio Value - 116324.23\n", + "2012-05-24 00:00:00: Portfolio Value - 116715.53\n", + "2012-05-25 00:00:00: Portfolio Value - 116655.66\n", + "2012-05-29 00:00:00: Portfolio Value - 117708.83\n", + "2012-05-30 00:00:00: Portfolio Value - 116328.50\n", + "2012-05-31 00:00:00: Portfolio Value - 116117.31\n", + "2012-06-01 00:00:00: Portfolio Value - 113418.35\n", + "2012-06-04 00:00:00: Portfolio Value - 113346.86\n", + "2012-06-05 00:00:00: Portfolio Value - 114206.90\n", + "2012-06-06 00:00:00: Portfolio Value - 116431.40\n", + "2012-06-07 00:00:00: Portfolio Value - 115874.42\n", + "2012-06-08 00:00:00: Portfolio Value - 116571.63\n", + "2012-06-11 00:00:00: Portfolio Value - 115075.29\n", + "2012-06-12 00:00:00: Portfolio Value - 116090.17\n", + "2012-06-13 00:00:00: Portfolio Value - 114847.37\n", + "2012-06-14 00:00:00: Portfolio Value - 115635.46\n", + "2012-06-15 00:00:00: Portfolio Value - 116831.17\n", + "2012-06-18 00:00:00: Portfolio Value - 117266.20\n", + "2012-06-19 00:00:00: Portfolio Value - 118170.92\n", + "2012-06-20 00:00:00: Portfolio Value - 117897.34\n", + "2012-06-21 00:00:00: Portfolio Value - 115982.94\n", + "2012-06-22 00:00:00: Portfolio Value - 116590.52\n", + "2012-06-25 00:00:00: Portfolio Value - 115343.63\n", + "2012-06-26 00:00:00: Portfolio Value - 115745.43\n", + "2012-06-27 00:00:00: Portfolio Value - 116208.72\n", + "2012-06-28 00:00:00: Portfolio Value - 115852.89\n", + "2012-06-29 00:00:00: Portfolio Value - 117907.00\n", + "2012-07-02 00:00:00: Portfolio Value - 118467.84\n", + "2012-07-03 00:00:00: Portfolio Value - 118995.86\n", + "2012-07-05 00:00:00: Portfolio Value - 118802.30\n", + "2012-07-06 00:00:00: Portfolio Value - 118055.34\n", + "2012-07-09 00:00:00: Portfolio Value - 117719.75\n", + "2012-07-10 00:00:00: Portfolio Value - 117170.10\n", + "2012-07-11 00:00:00: Portfolio Value - 116884.91\n", + "2012-07-12 00:00:00: Portfolio Value - 116729.25\n", + "2012-07-13 00:00:00: Portfolio Value - 117937.63\n", + "2012-07-16 00:00:00: Portfolio Value - 117694.99\n", + "2012-07-17 00:00:00: Portfolio Value - 118286.91\n", + "2012-07-18 00:00:00: Portfolio Value - 118526.25\n", + "2012-07-19 00:00:00: Portfolio Value - 118830.93\n", + "2012-07-20 00:00:00: Portfolio Value - 117801.80\n", + "2012-07-23 00:00:00: Portfolio Value - 116825.97\n", + "2012-07-24 00:00:00: Portfolio Value - 115913.76\n", + "2012-07-25 00:00:00: Portfolio Value - 116170.34\n", + "2012-07-26 00:00:00: Portfolio Value - 118054.34\n", + "2012-07-27 00:00:00: Portfolio Value - 119610.52\n", + "2012-07-30 00:00:00: Portfolio Value - 119353.16\n", + "2012-07-31 00:00:00: Portfolio Value - 118612.01\n", + "2012-08-01 00:00:00: Portfolio Value - 117985.55\n", + "2012-08-02 00:00:00: Portfolio Value - 117506.35\n", + "2012-08-03 00:00:00: Portfolio Value - 119145.63\n", + "2012-08-06 00:00:00: Portfolio Value - 119491.46\n", + "2012-08-07 00:00:00: Portfolio Value - 120220.90\n", + "2012-08-08 00:00:00: Portfolio Value - 120132.24\n", + "2012-08-09 00:00:00: Portfolio Value - 120168.84\n", + "2012-08-10 00:00:00: Portfolio Value - 120440.65\n", + "2012-08-13 00:00:00: Portfolio Value - 120203.52\n", + "2012-08-14 00:00:00: Portfolio Value - 120228.68\n", + "2012-08-15 00:00:00: Portfolio Value - 120697.94\n", + "2012-08-16 00:00:00: Portfolio Value - 121500.64\n", + "2012-08-17 00:00:00: Portfolio Value - 121981.11\n", + "2012-08-20 00:00:00: Portfolio Value - 121819.02\n", + "2012-08-21 00:00:00: Portfolio Value - 121525.14\n", + "2012-08-22 00:00:00: Portfolio Value - 121583.39\n", + "2012-08-23 00:00:00: Portfolio Value - 121091.68\n", + "2012-08-24 00:00:00: Portfolio Value - 121840.07\n", + "2012-08-27 00:00:00: Portfolio Value - 121892.08\n", + "2012-08-28 00:00:00: Portfolio Value - 122022.62\n", + "2012-08-29 00:00:00: Portfolio Value - 122018.68\n", + "2012-08-30 00:00:00: Portfolio Value - 121273.70\n", + "2012-08-31 00:00:00: Portfolio Value - 121797.45\n", + "2012-09-04 00:00:00: Portfolio Value - 122241.86\n", + "2012-09-05 00:00:00: Portfolio Value - 122140.93\n", + "2012-09-06 00:00:00: Portfolio Value - 124089.20\n", + "2012-09-07 00:00:00: Portfolio Value - 124727.61\n", + "2012-09-10 00:00:00: Portfolio Value - 124236.18\n", + "2012-09-11 00:00:00: Portfolio Value - 124357.03\n", + "2012-09-12 00:00:00: Portfolio Value - 124409.25\n", + "2012-09-13 00:00:00: Portfolio Value - 125742.64\n", + "2012-09-14 00:00:00: Portfolio Value - 126034.21\n", + "2012-09-17 00:00:00: Portfolio Value - 125539.43\n", + "2012-09-18 00:00:00: Portfolio Value - 125156.77\n", + "2012-09-19 00:00:00: Portfolio Value - 125470.53\n", + "2012-09-20 00:00:00: Portfolio Value - 125445.62\n", + "2012-09-21 00:00:00: Portfolio Value - 125417.33\n", + "2012-09-24 00:00:00: Portfolio Value - 125315.11\n", + "2012-09-25 00:00:00: Portfolio Value - 124594.21\n", + "2012-09-26 00:00:00: Portfolio Value - 124174.48\n", + "2012-09-27 00:00:00: Portfolio Value - 125108.20\n", + "2012-09-28 00:00:00: Portfolio Value - 124892.56\n", + "2012-10-01 00:00:00: Portfolio Value - 125242.38\n", + "2012-10-02 00:00:00: Portfolio Value - 125183.07\n", + "2012-10-03 00:00:00: Portfolio Value - 125535.87\n", + "2012-10-04 00:00:00: Portfolio Value - 126379.48\n", + "2012-10-05 00:00:00: Portfolio Value - 126214.48\n", + "2012-10-08 00:00:00: Portfolio Value - 125939.65\n", + "2012-10-09 00:00:00: Portfolio Value - 124696.62\n", + "2012-10-10 00:00:00: Portfolio Value - 124208.37\n", + "2012-10-11 00:00:00: Portfolio Value - 124291.95\n", + "2012-10-12 00:00:00: Portfolio Value - 123920.35\n", + "2012-10-15 00:00:00: Portfolio Value - 124995.48\n", + "2012-10-16 00:00:00: Portfolio Value - 126175.35\n", + "2012-10-17 00:00:00: Portfolio Value - 126760.65\n", + "2012-10-18 00:00:00: Portfolio Value - 126188.90\n", + "2012-10-19 00:00:00: Portfolio Value - 124431.63\n", + "2012-10-22 00:00:00: Portfolio Value - 124501.31\n", + "2012-10-23 00:00:00: Portfolio Value - 123183.01\n", + "2012-10-24 00:00:00: Portfolio Value - 123322.65\n", + "2012-10-25 00:00:00: Portfolio Value - 123722.91\n", + "2012-10-26 00:00:00: Portfolio Value - 123330.76\n", + "2012-10-31 00:00:00: Portfolio Value - 123565.54\n", + "2012-11-01 00:00:00: Portfolio Value - 124822.89\n", + "2012-11-02 00:00:00: Portfolio Value - 123576.85\n", + "2012-11-05 00:00:00: Portfolio Value - 123885.12\n", + "2012-11-06 00:00:00: Portfolio Value - 124739.77\n", + "2012-11-07 00:00:00: Portfolio Value - 122664.45\n", + "2012-11-08 00:00:00: Portfolio Value - 121611.44\n", + "2012-11-09 00:00:00: Portfolio Value - 121756.19\n", + "2012-11-12 00:00:00: Portfolio Value - 121847.87\n", + "2012-11-13 00:00:00: Portfolio Value - 121879.73\n", + "2012-11-14 00:00:00: Portfolio Value - 120483.88\n", + "2012-11-15 00:00:00: Portfolio Value - 120143.52\n", + "2012-11-16 00:00:00: Portfolio Value - 121440.81\n", + "2012-11-19 00:00:00: Portfolio Value - 122862.29\n", + "2012-11-20 00:00:00: Portfolio Value - 123438.96\n", + "2012-11-21 00:00:00: Portfolio Value - 123816.09\n", + "2012-11-23 00:00:00: Portfolio Value - 124935.06\n", + "2012-11-26 00:00:00: Portfolio Value - 124758.88\n", + "2012-11-27 00:00:00: Portfolio Value - 124448.36\n", + "2012-11-28 00:00:00: Portfolio Value - 125346.74\n", + "2012-11-29 00:00:00: Portfolio Value - 126014.15\n", + "2012-11-30 00:00:00: Portfolio Value - 126054.24\n", + "2012-12-03 00:00:00: Portfolio Value - 125971.45\n", + "2012-12-04 00:00:00: Portfolio Value - 125835.01\n", + "2012-12-05 00:00:00: Portfolio Value - 126253.30\n", + "2012-12-06 00:00:00: Portfolio Value - 126881.99\n", + "2012-12-07 00:00:00: Portfolio Value - 126966.00\n", + "2012-12-10 00:00:00: Portfolio Value - 127207.11\n", + "2012-12-11 00:00:00: Portfolio Value - 127610.78\n", + "2012-12-12 00:00:00: Portfolio Value - 127454.42\n", + "2012-12-13 00:00:00: Portfolio Value - 127041.18\n", + "2012-12-14 00:00:00: Portfolio Value - 126805.42\n", + "2012-12-17 00:00:00: Portfolio Value - 127946.86\n", + "2012-12-18 00:00:00: Portfolio Value - 128998.51\n", + "2012-12-19 00:00:00: Portfolio Value - 128253.11\n", + "2012-12-20 00:00:00: Portfolio Value - 128773.64\n", + "2012-12-21 00:00:00: Portfolio Value - 127964.13\n", + "2012-12-24 00:00:00: Portfolio Value - 127548.10\n", + "2012-12-26 00:00:00: Portfolio Value - 126729.29\n", + "2012-12-27 00:00:00: Portfolio Value - 126636.70\n", + "2012-12-28 00:00:00: Portfolio Value - 125640.07\n", + "2012-12-31 00:00:00: Portfolio Value - 127372.23\n", + "2013-01-02 00:00:00: Portfolio Value - 130121.91\n", + "2013-01-03 00:00:00: Portfolio Value - 130396.39\n", + "2013-01-04 00:00:00: Portfolio Value - 130816.60\n", + "2013-01-07 00:00:00: Portfolio Value - 130452.81\n", + "2013-01-08 00:00:00: Portfolio Value - 130023.59\n", + "2013-01-09 00:00:00: Portfolio Value - 130633.35\n", + "2013-01-10 00:00:00: Portfolio Value - 131195.05\n", + "2013-01-11 00:00:00: Portfolio Value - 130877.99\n", + "2013-01-14 00:00:00: Portfolio Value - 131097.76\n", + "2013-01-15 00:00:00: Portfolio Value - 131120.62\n", + "2013-01-16 00:00:00: Portfolio Value - 130839.47\n", + "2013-01-17 00:00:00: Portfolio Value - 131409.91\n", + "2013-01-18 00:00:00: Portfolio Value - 131759.61\n", + "2013-01-22 00:00:00: Portfolio Value - 132838.65\n", + "2013-01-23 00:00:00: Portfolio Value - 133005.51\n", + "2013-01-24 00:00:00: Portfolio Value - 133519.93\n", + "2013-01-25 00:00:00: Portfolio Value - 134497.52\n", + "2013-01-28 00:00:00: Portfolio Value - 134068.37\n", + "2013-01-29 00:00:00: Portfolio Value - 134346.89\n", + "2013-01-30 00:00:00: Portfolio Value - 134025.13\n", + "2013-01-31 00:00:00: Portfolio Value - 134032.85\n", + "2013-02-01 00:00:00: Portfolio Value - 134923.85\n", + "2013-02-04 00:00:00: Portfolio Value - 133867.88\n", + "2013-02-05 00:00:00: Portfolio Value - 134711.94\n", + "2013-02-06 00:00:00: Portfolio Value - 135147.10\n", + "2013-02-07 00:00:00: Portfolio Value - 134505.43\n", + "2013-02-08 00:00:00: Portfolio Value - 135158.39\n", + "2013-02-11 00:00:00: Portfolio Value - 135208.35\n", + "2013-02-12 00:00:00: Portfolio Value - 135421.13\n", + "2013-02-13 00:00:00: Portfolio Value - 135523.95\n", + "2013-02-14 00:00:00: Portfolio Value - 135288.32\n", + "2013-02-15 00:00:00: Portfolio Value - 135168.58\n", + "2013-02-19 00:00:00: Portfolio Value - 135608.56\n", + "2013-02-20 00:00:00: Portfolio Value - 134354.97\n", + "2013-02-21 00:00:00: Portfolio Value - 133617.89\n", + "2013-02-22 00:00:00: Portfolio Value - 134759.33\n", + "2013-02-25 00:00:00: Portfolio Value - 133176.63\n", + "2013-02-26 00:00:00: Portfolio Value - 133753.69\n", + "2013-02-27 00:00:00: Portfolio Value - 135162.03\n", + "2013-02-28 00:00:00: Portfolio Value - 135439.69\n", + "2013-03-01 00:00:00: Portfolio Value - 136046.07\n", + "2013-03-04 00:00:00: Portfolio Value - 136634.63\n", + "2013-03-05 00:00:00: Portfolio Value - 137656.73\n", + "2013-03-06 00:00:00: Portfolio Value - 137816.19\n", + "2013-03-07 00:00:00: Portfolio Value - 137611.71\n", + "2013-03-08 00:00:00: Portfolio Value - 138184.08\n", + "2013-03-11 00:00:00: Portfolio Value - 138281.38\n", + "2013-03-12 00:00:00: Portfolio Value - 138131.98\n", + "2013-03-13 00:00:00: Portfolio Value - 138585.74\n", + "2013-03-14 00:00:00: Portfolio Value - 139309.33\n", + "2013-03-15 00:00:00: Portfolio Value - 138289.42\n", + "2013-03-18 00:00:00: Portfolio Value - 137549.51\n", + "2013-03-19 00:00:00: Portfolio Value - 137688.78\n", + "2013-03-20 00:00:00: Portfolio Value - 138972.24\n", + "2013-03-21 00:00:00: Portfolio Value - 137898.80\n", + "2013-03-22 00:00:00: Portfolio Value - 138453.39\n", + "2013-03-25 00:00:00: Portfolio Value - 138061.99\n", + "2013-03-26 00:00:00: Portfolio Value - 139305.23\n", + "2013-03-27 00:00:00: Portfolio Value - 139475.56\n", + "2013-03-28 00:00:00: Portfolio Value - 140321.60\n", + "2013-04-01 00:00:00: Portfolio Value - 139707.96\n", + "2013-04-02 00:00:00: Portfolio Value - 140183.64\n", + "2013-04-03 00:00:00: Portfolio Value - 138792.02\n", + "2013-04-04 00:00:00: Portfolio Value - 139380.09\n", + "2013-04-05 00:00:00: Portfolio Value - 138916.81\n", + "2013-04-08 00:00:00: Portfolio Value - 139968.19\n", + "2013-04-09 00:00:00: Portfolio Value - 140703.30\n", + "2013-04-10 00:00:00: Portfolio Value - 142262.03\n", + "2013-04-11 00:00:00: Portfolio Value - 143200.18\n", + "2013-04-12 00:00:00: Portfolio Value - 143527.33\n", + "2013-04-15 00:00:00: Portfolio Value - 140777.17\n", + "2013-04-16 00:00:00: Portfolio Value - 142601.12\n", + "2013-04-17 00:00:00: Portfolio Value - 141124.32\n", + "2013-04-18 00:00:00: Portfolio Value - 140102.84\n", + "2013-04-19 00:00:00: Portfolio Value - 141240.21\n", + "2013-04-22 00:00:00: Portfolio Value - 141861.56\n", + "2013-04-23 00:00:00: Portfolio Value - 143496.61\n", + "2013-04-24 00:00:00: Portfolio Value - 143484.38\n", + "2013-04-25 00:00:00: Portfolio Value - 144612.59\n", + "2013-04-26 00:00:00: Portfolio Value - 144350.44\n", + "2013-04-29 00:00:00: Portfolio Value - 144997.77\n", + "2013-04-30 00:00:00: Portfolio Value - 145711.26\n", + "2013-05-01 00:00:00: Portfolio Value - 145327.13\n", + "2013-05-02 00:00:00: Portfolio Value - 146963.90\n", + "2013-05-03 00:00:00: Portfolio Value - 148732.72\n", + "2013-05-06 00:00:00: Portfolio Value - 148633.93\n", + "2013-05-07 00:00:00: Portfolio Value - 149235.61\n", + "2013-05-08 00:00:00: Portfolio Value - 149720.55\n", + "2013-05-09 00:00:00: Portfolio Value - 149242.91\n", + "2013-05-10 00:00:00: Portfolio Value - 150694.23\n", + "2013-05-13 00:00:00: Portfolio Value - 151210.98\n", + "2013-05-14 00:00:00: Portfolio Value - 152748.23\n", + "2013-05-15 00:00:00: Portfolio Value - 152831.22\n", + "2013-05-16 00:00:00: Portfolio Value - 151618.60\n", + "2013-05-17 00:00:00: Portfolio Value - 152813.64\n", + "2013-05-20 00:00:00: Portfolio Value - 152505.29\n", + "2013-05-21 00:00:00: Portfolio Value - 152496.45\n", + "2013-05-22 00:00:00: Portfolio Value - 151204.77\n", + "2013-05-23 00:00:00: Portfolio Value - 150773.84\n", + "2013-05-24 00:00:00: Portfolio Value - 150608.08\n", + "2013-05-28 00:00:00: Portfolio Value - 151247.14\n", + "2013-05-29 00:00:00: Portfolio Value - 149924.46\n", + "2013-05-30 00:00:00: Portfolio Value - 150400.10\n", + "2013-05-31 00:00:00: Portfolio Value - 148417.34\n", + "2013-06-03 00:00:00: Portfolio Value - 148618.65\n", + "2013-06-04 00:00:00: Portfolio Value - 147601.54\n", + "2013-06-05 00:00:00: Portfolio Value - 145874.14\n", + "2013-06-06 00:00:00: Portfolio Value - 147528.60\n", + "2013-06-07 00:00:00: Portfolio Value - 149251.75\n", + "2013-06-10 00:00:00: Portfolio Value - 149311.84\n", + "2013-06-11 00:00:00: Portfolio Value - 147375.76\n", + "2013-06-12 00:00:00: Portfolio Value - 146280.06\n", + "2013-06-13 00:00:00: Portfolio Value - 147990.10\n", + "2013-06-14 00:00:00: Portfolio Value - 147344.22\n", + "2013-06-17 00:00:00: Portfolio Value - 147987.07\n", + "2013-06-18 00:00:00: Portfolio Value - 149149.20\n", + "2013-06-19 00:00:00: Portfolio Value - 146778.13\n", + "2013-06-20 00:00:00: Portfolio Value - 143166.57\n", + "2013-06-21 00:00:00: Portfolio Value - 143199.70\n", + "2013-06-24 00:00:00: Portfolio Value - 142287.11\n", + "2013-06-25 00:00:00: Portfolio Value - 143600.35\n", + "2013-06-26 00:00:00: Portfolio Value - 145061.51\n", + "2013-06-27 00:00:00: Portfolio Value - 146299.42\n", + "2013-06-28 00:00:00: Portfolio Value - 145479.10\n", + "2013-07-01 00:00:00: Portfolio Value - 146516.02\n", + "2013-07-02 00:00:00: Portfolio Value - 146015.68\n", + "2013-07-03 00:00:00: Portfolio Value - 146021.33\n", + "2013-07-05 00:00:00: Portfolio Value - 147114.05\n", + "2013-07-08 00:00:00: Portfolio Value - 147599.56\n", + "2013-07-09 00:00:00: Portfolio Value - 148444.57\n", + "2013-07-10 00:00:00: Portfolio Value - 148531.49\n", + "2013-07-11 00:00:00: Portfolio Value - 150618.54\n", + "2013-07-12 00:00:00: Portfolio Value - 151779.40\n", + "2013-07-15 00:00:00: Portfolio Value - 152416.33\n", + "2013-07-16 00:00:00: Portfolio Value - 151715.95\n", + "2013-07-17 00:00:00: Portfolio Value - 152408.30\n", + "2013-07-18 00:00:00: Portfolio Value - 153178.03\n", + "2013-07-19 00:00:00: Portfolio Value - 153709.15\n", + "2013-07-22 00:00:00: Portfolio Value - 154071.73\n", + "2013-07-23 00:00:00: Portfolio Value - 153125.91\n", + "2013-07-24 00:00:00: Portfolio Value - 152346.90\n", + "2013-07-25 00:00:00: Portfolio Value - 152856.26\n", + "2013-07-26 00:00:00: Portfolio Value - 153202.45\n", + "2013-07-29 00:00:00: Portfolio Value - 152753.03\n", + "2013-07-30 00:00:00: Portfolio Value - 153291.65\n", + "2013-07-31 00:00:00: Portfolio Value - 153406.02\n", + "2013-08-01 00:00:00: Portfolio Value - 155341.23\n", + "2013-08-02 00:00:00: Portfolio Value - 155250.12\n", + "2013-08-05 00:00:00: Portfolio Value - 155127.33\n", + "2013-08-06 00:00:00: Portfolio Value - 153677.24\n", + "2013-08-07 00:00:00: Portfolio Value - 152980.88\n", + "2013-08-08 00:00:00: Portfolio Value - 153730.22\n", + "2013-08-09 00:00:00: Portfolio Value - 153281.05\n", + "2013-08-12 00:00:00: Portfolio Value - 153052.65\n", + "2013-08-13 00:00:00: Portfolio Value - 153115.39\n", + "2013-08-14 00:00:00: Portfolio Value - 152325.86\n", + "2013-08-15 00:00:00: Portfolio Value - 150167.64\n", + "2013-08-16 00:00:00: Portfolio Value - 149605.09\n", + "2013-08-19 00:00:00: Portfolio Value - 148968.90\n", + "2013-08-20 00:00:00: Portfolio Value - 149989.71\n", + "2013-08-21 00:00:00: Portfolio Value - 149686.86\n", + "2013-08-22 00:00:00: Portfolio Value - 150769.35\n", + "2013-08-23 00:00:00: Portfolio Value - 151221.26\n", + "2013-08-26 00:00:00: Portfolio Value - 151093.81\n", + "2013-08-27 00:00:00: Portfolio Value - 148605.07\n", + "2013-08-28 00:00:00: Portfolio Value - 148980.62\n", + "2013-08-29 00:00:00: Portfolio Value - 149432.29\n", + "2013-08-30 00:00:00: Portfolio Value - 148829.68\n", + "2013-09-03 00:00:00: Portfolio Value - 149678.38\n", + "2013-09-04 00:00:00: Portfolio Value - 150695.90\n", + "2013-09-05 00:00:00: Portfolio Value - 151201.60\n", + "2013-09-06 00:00:00: Portfolio Value - 151112.87\n", + "2013-09-09 00:00:00: Portfolio Value - 153316.94\n", + "2013-09-10 00:00:00: Portfolio Value - 154598.81\n", + "2013-09-11 00:00:00: Portfolio Value - 154717.07\n", + "2013-09-12 00:00:00: Portfolio Value - 153933.67\n", + "2013-09-13 00:00:00: Portfolio Value - 155776.71\n", + "2013-09-16 00:00:00: Portfolio Value - 156593.89\n", + "2013-09-17 00:00:00: Portfolio Value - 157198.87\n", + "2013-09-18 00:00:00: Portfolio Value - 159387.02\n", + "2013-09-19 00:00:00: Portfolio Value - 159104.48\n", + "2013-09-20 00:00:00: Portfolio Value - 157959.60\n", + "2013-09-23 00:00:00: Portfolio Value - 157335.97\n", + "2013-09-24 00:00:00: Portfolio Value - 157337.92\n", + "2013-09-25 00:00:00: Portfolio Value - 156967.78\n", + "2013-09-26 00:00:00: Portfolio Value - 157895.26\n", + "2013-09-27 00:00:00: Portfolio Value - 156981.66\n", + "2013-09-30 00:00:00: Portfolio Value - 156963.07\n", + "2013-10-01 00:00:00: Portfolio Value - 158299.56\n", + "2013-10-02 00:00:00: Portfolio Value - 158211.45\n", + "2013-10-03 00:00:00: Portfolio Value - 156997.75\n", + "2013-10-04 00:00:00: Portfolio Value - 157623.61\n", + "2013-10-07 00:00:00: Portfolio Value - 156054.42\n", + "2013-10-08 00:00:00: Portfolio Value - 154074.86\n", + "2013-10-09 00:00:00: Portfolio Value - 153951.31\n", + "2013-10-10 00:00:00: Portfolio Value - 156802.31\n", + "2013-10-11 00:00:00: Portfolio Value - 157462.14\n", + "2013-10-14 00:00:00: Portfolio Value - 158155.39\n", + "2013-10-15 00:00:00: Portfolio Value - 156765.82\n", + "2013-10-16 00:00:00: Portfolio Value - 159475.76\n", + "2013-10-17 00:00:00: Portfolio Value - 160338.29\n", + "2013-10-18 00:00:00: Portfolio Value - 161476.64\n", + "2013-10-21 00:00:00: Portfolio Value - 161245.16\n", + "2013-10-22 00:00:00: Portfolio Value - 162317.11\n", + "2013-10-23 00:00:00: Portfolio Value - 161693.79\n", + "2013-10-24 00:00:00: Portfolio Value - 162394.22\n", + "2013-10-25 00:00:00: Portfolio Value - 162449.05\n", + "2013-10-28 00:00:00: Portfolio Value - 162653.86\n", + "2013-10-29 00:00:00: Portfolio Value - 163564.17\n", + "2013-10-30 00:00:00: Portfolio Value - 162342.60\n", + "2013-10-31 00:00:00: Portfolio Value - 161570.34\n", + "2013-11-01 00:00:00: Portfolio Value - 162026.36\n", + "2013-11-04 00:00:00: Portfolio Value - 162727.66\n", + "2013-11-05 00:00:00: Portfolio Value - 163205.02\n", + "2013-11-06 00:00:00: Portfolio Value - 163207.59\n", + "2013-11-07 00:00:00: Portfolio Value - 160770.62\n", + "2013-11-08 00:00:00: Portfolio Value - 162473.26\n", + "2013-11-11 00:00:00: Portfolio Value - 162876.17\n", + "2013-11-12 00:00:00: Portfolio Value - 163107.57\n", + "2013-11-13 00:00:00: Portfolio Value - 163978.34\n", + "2013-11-14 00:00:00: Portfolio Value - 164904.12\n", + "2013-11-15 00:00:00: Portfolio Value - 164938.58\n", + "2013-11-18 00:00:00: Portfolio Value - 164128.01\n", + "2013-11-19 00:00:00: Portfolio Value - 163457.30\n", + "2013-11-20 00:00:00: Portfolio Value - 162941.14\n", + "2013-11-21 00:00:00: Portfolio Value - 164190.73\n", + "2013-11-22 00:00:00: Portfolio Value - 165377.99\n", + "2013-11-25 00:00:00: Portfolio Value - 165437.66\n", + "2013-11-26 00:00:00: Portfolio Value - 165237.14\n", + "2013-11-27 00:00:00: Portfolio Value - 165452.34\n", + "2013-11-29 00:00:00: Portfolio Value - 165277.76\n", + "2013-12-02 00:00:00: Portfolio Value - 165085.84\n", + "2013-12-03 00:00:00: Portfolio Value - 164405.74\n", + "2013-12-04 00:00:00: Portfolio Value - 164289.25\n", + "2013-12-05 00:00:00: Portfolio Value - 163497.45\n", + "2013-12-06 00:00:00: Portfolio Value - 164178.66\n", + "2013-12-09 00:00:00: Portfolio Value - 164255.97\n", + "2013-12-10 00:00:00: Portfolio Value - 163867.71\n", + "2013-12-11 00:00:00: Portfolio Value - 162179.57\n", + "2013-12-12 00:00:00: Portfolio Value - 161662.01\n", + "2013-12-13 00:00:00: Portfolio Value - 161761.34\n", + "2013-12-16 00:00:00: Portfolio Value - 162484.37\n", + "2013-12-17 00:00:00: Portfolio Value - 161912.81\n", + "2013-12-18 00:00:00: Portfolio Value - 164330.60\n", + "2013-12-19 00:00:00: Portfolio Value - 163774.26\n", + "2013-12-20 00:00:00: Portfolio Value - 165087.58\n", + "2013-12-23 00:00:00: Portfolio Value - 165306.00\n", + "2013-12-24 00:00:00: Portfolio Value - 165740.79\n", + "2013-12-26 00:00:00: Portfolio Value - 166285.47\n", + "2013-12-27 00:00:00: Portfolio Value - 165934.14\n", + "2013-12-30 00:00:00: Portfolio Value - 166258.90\n", + "2013-12-31 00:00:00: Portfolio Value - 166429.33\n", + "2014-01-02 00:00:00: Portfolio Value - 165445.62\n", + "2014-01-03 00:00:00: Portfolio Value - 165621.51\n", + "2014-01-06 00:00:00: Portfolio Value - 164964.01\n", + "2014-01-07 00:00:00: Portfolio Value - 166460.46\n", + "2014-01-08 00:00:00: Portfolio Value - 166627.42\n", + "2014-01-09 00:00:00: Portfolio Value - 166865.67\n", + "2014-01-10 00:00:00: Portfolio Value - 167956.01\n", + "2014-01-13 00:00:00: Portfolio Value - 165479.73\n", + "2014-01-14 00:00:00: Portfolio Value - 168126.91\n", + "2014-01-15 00:00:00: Portfolio Value - 168141.90\n", + "2014-01-16 00:00:00: Portfolio Value - 168210.59\n", + "2014-01-17 00:00:00: Portfolio Value - 168209.82\n", + "2014-01-21 00:00:00: Portfolio Value - 168384.45\n", + "2014-01-22 00:00:00: Portfolio Value - 168494.72\n", + "2014-01-23 00:00:00: Portfolio Value - 167776.44\n", + "2014-01-24 00:00:00: Portfolio Value - 164297.46\n", + "2014-01-27 00:00:00: Portfolio Value - 163139.37\n", + "2014-01-28 00:00:00: Portfolio Value - 164776.77\n", + "2014-01-29 00:00:00: Portfolio Value - 163384.01\n", + "2014-01-30 00:00:00: Portfolio Value - 165678.83\n", + "2014-01-31 00:00:00: Portfolio Value - 165420.07\n", + "2014-02-03 00:00:00: Portfolio Value - 161650.21\n", + "2014-02-04 00:00:00: Portfolio Value - 162450.34\n", + "2014-02-05 00:00:00: Portfolio Value - 162020.64\n", + "2014-02-06 00:00:00: Portfolio Value - 164047.11\n", + "2014-02-07 00:00:00: Portfolio Value - 166200.49\n", + "2014-02-10 00:00:00: Portfolio Value - 166673.85\n", + "2014-02-11 00:00:00: Portfolio Value - 168765.77\n", + "2014-02-12 00:00:00: Portfolio Value - 168644.17\n", + "2014-02-13 00:00:00: Portfolio Value - 169758.13\n", + "2014-02-14 00:00:00: Portfolio Value - 170137.02\n", + "2014-02-18 00:00:00: Portfolio Value - 171076.15\n", + "2014-02-19 00:00:00: Portfolio Value - 169723.80\n", + "2014-02-20 00:00:00: Portfolio Value - 171223.71\n", + "2014-02-21 00:00:00: Portfolio Value - 171571.73\n", + "2014-02-24 00:00:00: Portfolio Value - 173293.69\n", + "2014-02-25 00:00:00: Portfolio Value - 172925.90\n", + "2014-02-26 00:00:00: Portfolio Value - 172669.18\n", + "2014-02-27 00:00:00: Portfolio Value - 173823.02\n", + "2014-02-28 00:00:00: Portfolio Value - 173423.42\n", + "2014-03-03 00:00:00: Portfolio Value - 172726.48\n", + "2014-03-04 00:00:00: Portfolio Value - 175340.45\n", + "2014-03-05 00:00:00: Portfolio Value - 174935.54\n", + "2014-03-06 00:00:00: Portfolio Value - 174388.85\n", + "2014-03-07 00:00:00: Portfolio Value - 173900.75\n", + "2014-03-10 00:00:00: Portfolio Value - 173627.34\n", + "2014-03-11 00:00:00: Portfolio Value - 173105.71\n", + "2014-03-12 00:00:00: Portfolio Value - 173893.67\n", + "2014-03-13 00:00:00: Portfolio Value - 171673.67\n", + "2014-03-14 00:00:00: Portfolio Value - 171853.90\n", + "2014-03-17 00:00:00: Portfolio Value - 173020.50\n", + "2014-03-18 00:00:00: Portfolio Value - 174391.56\n", + "2014-03-19 00:00:00: Portfolio Value - 173696.51\n", + "2014-03-20 00:00:00: Portfolio Value - 174423.81\n", + "2014-03-21 00:00:00: Portfolio Value - 172869.55\n", + "2014-03-24 00:00:00: Portfolio Value - 171789.32\n", + "2014-03-25 00:00:00: Portfolio Value - 171938.64\n", + "2014-03-26 00:00:00: Portfolio Value - 170892.85\n", + "2014-03-27 00:00:00: Portfolio Value - 170851.14\n", + "2014-03-28 00:00:00: Portfolio Value - 170718.22\n", + "2014-03-31 00:00:00: Portfolio Value - 172587.63\n", + "2014-04-01 00:00:00: Portfolio Value - 174099.76\n", + "2014-04-02 00:00:00: Portfolio Value - 174371.75\n", + "2014-04-03 00:00:00: Portfolio Value - 173344.10\n", + "2014-04-04 00:00:00: Portfolio Value - 170763.19\n", + "2014-04-07 00:00:00: Portfolio Value - 169004.82\n", + "2014-04-08 00:00:00: Portfolio Value - 169950.54\n", + "2014-04-09 00:00:00: Portfolio Value - 172298.38\n", + "2014-04-10 00:00:00: Portfolio Value - 168826.85\n", + "2014-04-11 00:00:00: Portfolio Value - 167364.35\n", + "2014-04-14 00:00:00: Portfolio Value - 168271.37\n", + "2014-04-15 00:00:00: Portfolio Value - 168515.35\n", + "2014-04-16 00:00:00: Portfolio Value - 170433.18\n", + "2014-04-17 00:00:00: Portfolio Value - 170350.71\n", + "2014-04-21 00:00:00: Portfolio Value - 170754.89\n", + "2014-04-22 00:00:00: Portfolio Value - 172402.86\n", + "2014-04-23 00:00:00: Portfolio Value - 171231.66\n", + "2014-04-24 00:00:00: Portfolio Value - 171061.27\n", + "2014-04-25 00:00:00: Portfolio Value - 169236.02\n", + "2014-04-28 00:00:00: Portfolio Value - 168702.22\n", + "2014-04-29 00:00:00: Portfolio Value - 170629.43\n", + "2014-04-30 00:00:00: Portfolio Value - 170959.02\n", + "2014-05-01 00:00:00: Portfolio Value - 170637.75\n", + "2014-05-02 00:00:00: Portfolio Value - 170839.55\n", + "2014-05-05 00:00:00: Portfolio Value - 171148.42\n", + "2014-05-06 00:00:00: Portfolio Value - 169425.14\n", + "2014-05-07 00:00:00: Portfolio Value - 169513.54\n", + "2014-05-08 00:00:00: Portfolio Value - 168709.07\n", + "2014-05-09 00:00:00: Portfolio Value - 169173.64\n", + "2014-05-12 00:00:00: Portfolio Value - 171084.79\n", + "2014-05-13 00:00:00: Portfolio Value - 170908.02\n", + "2014-05-14 00:00:00: Portfolio Value - 170276.12\n", + "2014-05-15 00:00:00: Portfolio Value - 168950.52\n", + "2014-05-16 00:00:00: Portfolio Value - 169657.73\n", + "2014-05-19 00:00:00: Portfolio Value - 170214.94\n", + "2014-05-20 00:00:00: Portfolio Value - 168725.82\n", + "2014-05-21 00:00:00: Portfolio Value - 169898.56\n", + "2014-05-22 00:00:00: Portfolio Value - 170765.38\n", + "2014-05-23 00:00:00: Portfolio Value - 171230.35\n", + "2014-05-27 00:00:00: Portfolio Value - 172663.00\n", + "2014-05-28 00:00:00: Portfolio Value - 172526.67\n", + "2014-05-29 00:00:00: Portfolio Value - 173336.08\n", + "2014-05-30 00:00:00: Portfolio Value - 173463.25\n", + "2014-06-02 00:00:00: Portfolio Value - 173844.28\n", + "2014-06-03 00:00:00: Portfolio Value - 173650.72\n", + "2014-06-04 00:00:00: Portfolio Value - 174361.25\n", + "2014-06-05 00:00:00: Portfolio Value - 174929.35\n", + "2014-06-06 00:00:00: Portfolio Value - 175579.02\n", + "2014-06-09 00:00:00: Portfolio Value - 175751.93\n", + "2014-06-10 00:00:00: Portfolio Value - 175379.83\n", + "2014-06-11 00:00:00: Portfolio Value - 175287.62\n", + "2014-06-12 00:00:00: Portfolio Value - 173955.69\n", + "2014-06-13 00:00:00: Portfolio Value - 174383.19\n", + "2014-06-16 00:00:00: Portfolio Value - 174856.57\n", + "2014-06-17 00:00:00: Portfolio Value - 174995.00\n", + "2014-06-18 00:00:00: Portfolio Value - 176380.83\n", + "2014-06-19 00:00:00: Portfolio Value - 176389.90\n", + "2014-06-20 00:00:00: Portfolio Value - 176000.98\n", + "2014-06-23 00:00:00: Portfolio Value - 175664.84\n", + "2014-06-24 00:00:00: Portfolio Value - 174875.58\n", + "2014-06-25 00:00:00: Portfolio Value - 175568.77\n", + "2014-06-26 00:00:00: Portfolio Value - 175522.08\n", + "2014-06-27 00:00:00: Portfolio Value - 175520.74\n", + "2014-06-30 00:00:00: Portfolio Value - 175723.74\n", + "2014-07-01 00:00:00: Portfolio Value - 177829.51\n", + "2014-07-02 00:00:00: Portfolio Value - 177645.28\n", + "2014-07-03 00:00:00: Portfolio Value - 178346.81\n", + "2014-07-07 00:00:00: Portfolio Value - 177389.17\n", + "2014-07-08 00:00:00: Portfolio Value - 176050.27\n", + "2014-07-09 00:00:00: Portfolio Value - 176507.33\n", + "2014-07-10 00:00:00: Portfolio Value - 176278.89\n", + "2014-07-11 00:00:00: Portfolio Value - 176268.39\n", + "2014-07-14 00:00:00: Portfolio Value - 176767.21\n", + "2014-07-15 00:00:00: Portfolio Value - 176035.31\n", + "2014-07-16 00:00:00: Portfolio Value - 176139.40\n", + "2014-07-17 00:00:00: Portfolio Value - 174189.46\n", + "2014-07-18 00:00:00: Portfolio Value - 175987.37\n", + "2014-07-21 00:00:00: Portfolio Value - 175665.87\n", + "2014-07-22 00:00:00: Portfolio Value - 176711.46\n", + "2014-07-23 00:00:00: Portfolio Value - 177017.17\n", + "2014-07-24 00:00:00: Portfolio Value - 177027.74\n", + "2014-07-25 00:00:00: Portfolio Value - 176434.78\n", + "2014-07-28 00:00:00: Portfolio Value - 176656.36\n", + "2014-07-29 00:00:00: Portfolio Value - 176599.48\n", + "2014-07-30 00:00:00: Portfolio Value - 177412.91\n", + "2014-07-31 00:00:00: Portfolio Value - 174098.11\n", + "2014-08-01 00:00:00: Portfolio Value - 173900.20\n", + "2014-08-04 00:00:00: Portfolio Value - 174627.48\n", + "2014-08-05 00:00:00: Portfolio Value - 173756.54\n", + "2014-08-06 00:00:00: Portfolio Value - 174002.56\n", + "2014-08-07 00:00:00: Portfolio Value - 173397.62\n", + "2014-08-08 00:00:00: Portfolio Value - 175092.23\n", + "2014-08-11 00:00:00: Portfolio Value - 175685.56\n", + "2014-08-12 00:00:00: Portfolio Value - 175357.11\n", + "2014-08-13 00:00:00: Portfolio Value - 176478.02\n", + "2014-08-14 00:00:00: Portfolio Value - 177304.95\n", + "2014-08-15 00:00:00: Portfolio Value - 177186.86\n", + "2014-08-18 00:00:00: Portfolio Value - 178801.59\n", + "2014-08-19 00:00:00: Portfolio Value - 179414.55\n", + "2014-08-20 00:00:00: Portfolio Value - 179611.46\n", + "2014-08-21 00:00:00: Portfolio Value - 179585.25\n", + "2014-08-22 00:00:00: Portfolio Value - 179366.36\n", + "2014-08-25 00:00:00: Portfolio Value - 180418.39\n", + "2014-08-26 00:00:00: Portfolio Value - 180795.66\n", + "2014-08-27 00:00:00: Portfolio Value - 180502.54\n", + "2014-08-28 00:00:00: Portfolio Value - 180249.41\n", + "2014-08-29 00:00:00: Portfolio Value - 180569.49\n", + "2014-09-02 00:00:00: Portfolio Value - 180708.50\n", + "2014-09-03 00:00:00: Portfolio Value - 180809.18\n", + "2014-09-04 00:00:00: Portfolio Value - 180508.89\n", + "2014-09-05 00:00:00: Portfolio Value - 181118.11\n", + "2014-09-08 00:00:00: Portfolio Value - 180634.55\n", + "2014-09-09 00:00:00: Portfolio Value - 179416.31\n", + "2014-09-10 00:00:00: Portfolio Value - 180234.75\n", + "2014-09-11 00:00:00: Portfolio Value - 180717.08\n", + "2014-09-12 00:00:00: Portfolio Value - 180334.30\n", + "2014-09-15 00:00:00: Portfolio Value - 179648.70\n", + "2014-09-16 00:00:00: Portfolio Value - 180785.01\n", + "2014-09-17 00:00:00: Portfolio Value - 181177.00\n", + "2014-09-18 00:00:00: Portfolio Value - 182419.58\n", + "2014-09-19 00:00:00: Portfolio Value - 181767.10\n", + "2014-09-22 00:00:00: Portfolio Value - 180313.43\n", + "2014-09-23 00:00:00: Portfolio Value - 179456.14\n", + "2014-09-24 00:00:00: Portfolio Value - 181140.10\n", + "2014-09-25 00:00:00: Portfolio Value - 178673.77\n", + "2014-09-26 00:00:00: Portfolio Value - 179797.28\n", + "2014-09-29 00:00:00: Portfolio Value - 179412.69\n", + "2014-09-30 00:00:00: Portfolio Value - 179383.91\n", + "2014-10-01 00:00:00: Portfolio Value - 177160.82\n", + "2014-10-02 00:00:00: Portfolio Value - 177625.89\n", + "2014-10-03 00:00:00: Portfolio Value - 179747.60\n", + "2014-10-06 00:00:00: Portfolio Value - 179448.55\n", + "2014-10-07 00:00:00: Portfolio Value - 176923.84\n", + "2014-10-08 00:00:00: Portfolio Value - 179504.58\n", + "2014-10-09 00:00:00: Portfolio Value - 176378.88\n", + "2014-10-10 00:00:00: Portfolio Value - 174622.20\n", + "2014-10-13 00:00:00: Portfolio Value - 172152.27\n", + "2014-10-14 00:00:00: Portfolio Value - 172957.30\n", + "2014-10-15 00:00:00: Portfolio Value - 172600.55\n", + "2014-10-16 00:00:00: Portfolio Value - 173011.06\n", + "2014-10-17 00:00:00: Portfolio Value - 175678.99\n", + "2014-10-20 00:00:00: Portfolio Value - 176861.00\n", + "2014-10-21 00:00:00: Portfolio Value - 179521.81\n", + "2014-10-22 00:00:00: Portfolio Value - 178956.68\n", + "2014-10-23 00:00:00: Portfolio Value - 180519.86\n", + "2014-10-24 00:00:00: Portfolio Value - 182145.72\n", + "2014-10-27 00:00:00: Portfolio Value - 182515.33\n", + "2014-10-28 00:00:00: Portfolio Value - 183939.74\n", + "2014-10-29 00:00:00: Portfolio Value - 183372.81\n", + "2014-10-30 00:00:00: Portfolio Value - 184916.81\n", + "2014-10-31 00:00:00: Portfolio Value - 186744.74\n", + "2014-11-03 00:00:00: Portfolio Value - 187050.42\n", + "2014-11-04 00:00:00: Portfolio Value - 185993.53\n", + "2014-11-05 00:00:00: Portfolio Value - 186136.53\n", + "2014-11-06 00:00:00: Portfolio Value - 187147.22\n", + "2014-11-07 00:00:00: Portfolio Value - 187015.53\n", + "2014-11-10 00:00:00: Portfolio Value - 188403.11\n", + "2014-11-11 00:00:00: Portfolio Value - 188945.53\n", + "2014-11-12 00:00:00: Portfolio Value - 188966.04\n", + "2014-11-13 00:00:00: Portfolio Value - 189043.39\n", + "2014-11-14 00:00:00: Portfolio Value - 188628.13\n", + "2014-11-17 00:00:00: Portfolio Value - 188822.47\n", + "2014-11-18 00:00:00: Portfolio Value - 190060.24\n", + "2014-11-19 00:00:00: Portfolio Value - 189905.40\n", + "2014-11-20 00:00:00: Portfolio Value - 189792.93\n", + "2014-11-21 00:00:00: Portfolio Value - 190258.56\n", + "2014-11-24 00:00:00: Portfolio Value - 191053.35\n", + "2014-11-25 00:00:00: Portfolio Value - 190991.39\n", + "2014-11-26 00:00:00: Portfolio Value - 191729.76\n", + "2014-11-28 00:00:00: Portfolio Value - 192307.91\n", + "2014-12-01 00:00:00: Portfolio Value - 190739.11\n", + "2014-12-02 00:00:00: Portfolio Value - 192304.46\n", + "2014-12-03 00:00:00: Portfolio Value - 192660.26\n", + "2014-12-04 00:00:00: Portfolio Value - 192701.81\n", + "2014-12-05 00:00:00: Portfolio Value - 193129.74\n", + "2014-12-08 00:00:00: Portfolio Value - 193024.05\n", + "2014-12-09 00:00:00: Portfolio Value - 192918.64\n", + "2014-12-10 00:00:00: Portfolio Value - 189870.22\n", + "2014-12-11 00:00:00: Portfolio Value - 191236.90\n", + "2014-12-12 00:00:00: Portfolio Value - 188724.67\n", + "2014-12-15 00:00:00: Portfolio Value - 187084.47\n", + "2014-12-16 00:00:00: Portfolio Value - 185550.63\n", + "2014-12-17 00:00:00: Portfolio Value - 189014.39\n", + "2014-12-18 00:00:00: Portfolio Value - 192549.33\n", + "2014-12-19 00:00:00: Portfolio Value - 193316.88\n", + "2014-12-22 00:00:00: Portfolio Value - 193355.51\n", + "2014-12-23 00:00:00: Portfolio Value - 192947.26\n", + "2014-12-24 00:00:00: Portfolio Value - 193654.31\n", + "2014-12-26 00:00:00: Portfolio Value - 194563.92\n", + "2014-12-29 00:00:00: Portfolio Value - 195014.74\n", + "2014-12-30 00:00:00: Portfolio Value - 194092.27\n", + "2014-12-31 00:00:00: Portfolio Value - 192597.95\n", + "2015-01-02 00:00:00: Portfolio Value - 192591.70\n", + "2015-01-05 00:00:00: Portfolio Value - 190501.06\n", + "2015-01-06 00:00:00: Portfolio Value - 188556.35\n", + "2015-01-07 00:00:00: Portfolio Value - 191338.44\n", + "2015-01-08 00:00:00: Portfolio Value - 193558.82\n", + "2015-01-09 00:00:00: Portfolio Value - 192731.75\n", + "2015-01-12 00:00:00: Portfolio Value - 191937.43\n", + "2015-01-13 00:00:00: Portfolio Value - 191951.25\n", + "2015-01-14 00:00:00: Portfolio Value - 190893.70\n", + "2015-01-15 00:00:00: Portfolio Value - 189107.37\n", + "2015-01-16 00:00:00: Portfolio Value - 191177.86\n", + "2015-01-20 00:00:00: Portfolio Value - 191585.35\n", + "2015-01-21 00:00:00: Portfolio Value - 192317.64\n", + "2015-01-22 00:00:00: Portfolio Value - 194834.59\n", + "2015-01-23 00:00:00: Portfolio Value - 194644.01\n", + "2015-01-26 00:00:00: Portfolio Value - 195789.95\n", + "2015-01-27 00:00:00: Portfolio Value - 193994.66\n", + "2015-01-28 00:00:00: Portfolio Value - 191639.17\n", + "2015-01-29 00:00:00: Portfolio Value - 193200.97\n", + "2015-01-30 00:00:00: Portfolio Value - 189996.51\n", + "2015-02-02 00:00:00: Portfolio Value - 191364.81\n", + "2015-02-03 00:00:00: Portfolio Value - 193503.35\n", + "2015-02-04 00:00:00: Portfolio Value - 192636.80\n", + "2015-02-05 00:00:00: Portfolio Value - 194206.63\n", + "2015-02-06 00:00:00: Portfolio Value - 193037.12\n", + "2015-02-09 00:00:00: Portfolio Value - 191999.47\n", + "2015-02-10 00:00:00: Portfolio Value - 194224.55\n", + "2015-02-11 00:00:00: Portfolio Value - 194100.49\n", + "2015-02-12 00:00:00: Portfolio Value - 195405.40\n", + "2015-02-13 00:00:00: Portfolio Value - 195841.47\n", + "2015-02-17 00:00:00: Portfolio Value - 196197.56\n", + "2015-02-18 00:00:00: Portfolio Value - 197107.50\n", + "2015-02-19 00:00:00: Portfolio Value - 197687.58\n", + "2015-02-20 00:00:00: Portfolio Value - 198507.06\n", + "2015-02-23 00:00:00: Portfolio Value - 198377.52\n", + "2015-02-24 00:00:00: Portfolio Value - 198356.95\n", + "2015-02-25 00:00:00: Portfolio Value - 198133.59\n", + "2015-02-26 00:00:00: Portfolio Value - 197669.61\n", + "2015-02-27 00:00:00: Portfolio Value - 196897.80\n", + "2015-03-02 00:00:00: Portfolio Value - 198046.39\n", + "2015-03-03 00:00:00: Portfolio Value - 196763.55\n", + "2015-03-04 00:00:00: Portfolio Value - 196195.91\n", + "2015-03-05 00:00:00: Portfolio Value - 197506.38\n", + "2015-03-06 00:00:00: Portfolio Value - 194429.75\n", + "2015-03-09 00:00:00: Portfolio Value - 194993.38\n", + "2015-03-10 00:00:00: Portfolio Value - 192402.73\n", + "2015-03-11 00:00:00: Portfolio Value - 192464.63\n", + "2015-03-12 00:00:00: Portfolio Value - 194962.95\n", + "2015-03-13 00:00:00: Portfolio Value - 194404.33\n", + "2015-03-16 00:00:00: Portfolio Value - 197044.98\n", + "2015-03-17 00:00:00: Portfolio Value - 197136.76\n", + "2015-03-18 00:00:00: Portfolio Value - 199079.67\n", + "2015-03-19 00:00:00: Portfolio Value - 200024.76\n", + "2015-03-20 00:00:00: Portfolio Value - 201281.10\n", + "2015-03-23 00:00:00: Portfolio Value - 200694.91\n", + "2015-03-24 00:00:00: Portfolio Value - 199717.36\n", + "2015-03-25 00:00:00: Portfolio Value - 196332.67\n", + "2015-03-26 00:00:00: Portfolio Value - 195634.57\n", + "2015-03-27 00:00:00: Portfolio Value - 196812.12\n", + "2015-03-30 00:00:00: Portfolio Value - 198835.13\n", + "2015-03-31 00:00:00: Portfolio Value - 197261.13\n", + "2015-04-01 00:00:00: Portfolio Value - 196258.70\n", + "2015-04-02 00:00:00: Portfolio Value - 196596.01\n", + "2015-04-06 00:00:00: Portfolio Value - 197722.09\n", + "2015-04-07 00:00:00: Portfolio Value - 196915.86\n", + "2015-04-08 00:00:00: Portfolio Value - 198208.41\n", + "2015-04-09 00:00:00: Portfolio Value - 198881.09\n", + "2015-04-10 00:00:00: Portfolio Value - 199868.72\n", + "2015-04-13 00:00:00: Portfolio Value - 199619.03\n", + "2015-04-14 00:00:00: Portfolio Value - 199555.51\n", + "2015-04-15 00:00:00: Portfolio Value - 200113.32\n", + "2015-04-16 00:00:00: Portfolio Value - 200500.14\n", + "2015-04-17 00:00:00: Portfolio Value - 198691.03\n", + "2015-04-20 00:00:00: Portfolio Value - 200385.65\n", + "2015-04-21 00:00:00: Portfolio Value - 200878.91\n", + "2015-04-22 00:00:00: Portfolio Value - 201572.41\n", + "2015-04-23 00:00:00: Portfolio Value - 202646.67\n", + "2015-04-24 00:00:00: Portfolio Value - 202830.90\n", + "2015-04-27 00:00:00: Portfolio Value - 201070.44\n", + "2015-04-28 00:00:00: Portfolio Value - 201135.00\n", + "2015-04-29 00:00:00: Portfolio Value - 199487.29\n", + "2015-04-30 00:00:00: Portfolio Value - 197227.15\n", + "2015-05-01 00:00:00: Portfolio Value - 199163.04\n", + "2015-05-04 00:00:00: Portfolio Value - 200100.61\n", + "2015-05-05 00:00:00: Portfolio Value - 197909.36\n", + "2015-05-06 00:00:00: Portfolio Value - 197598.81\n", + "2015-05-07 00:00:00: Portfolio Value - 198361.82\n", + "2015-05-08 00:00:00: Portfolio Value - 200663.39\n", + "2015-05-11 00:00:00: Portfolio Value - 200151.72\n", + "2015-05-12 00:00:00: Portfolio Value - 199574.35\n", + "2015-05-13 00:00:00: Portfolio Value - 198951.65\n", + "2015-05-14 00:00:00: Portfolio Value - 201032.95\n", + "2015-05-15 00:00:00: Portfolio Value - 201134.10\n", + "2015-05-18 00:00:00: Portfolio Value - 202132.95\n", + "2015-05-19 00:00:00: Portfolio Value - 202466.70\n", + "2015-05-20 00:00:00: Portfolio Value - 202415.36\n", + "2015-05-21 00:00:00: Portfolio Value - 202660.50\n", + "2015-05-22 00:00:00: Portfolio Value - 202206.76\n", + "2015-05-26 00:00:00: Portfolio Value - 200341.65\n", + "2015-05-27 00:00:00: Portfolio Value - 202067.55\n", + "2015-05-28 00:00:00: Portfolio Value - 201805.25\n", + "2015-05-29 00:00:00: Portfolio Value - 200608.04\n", + "2015-06-01 00:00:00: Portfolio Value - 200918.78\n", + "2015-06-02 00:00:00: Portfolio Value - 200578.64\n", + "2015-06-03 00:00:00: Portfolio Value - 201318.42\n", + "2015-06-04 00:00:00: Portfolio Value - 200477.93\n", + "2015-06-05 00:00:00: Portfolio Value - 201167.88\n", + "2015-06-08 00:00:00: Portfolio Value - 199179.84\n", + "2015-06-09 00:00:00: Portfolio Value - 199423.97\n", + "2015-06-10 00:00:00: Portfolio Value - 200645.70\n", + "2015-06-11 00:00:00: Portfolio Value - 200859.02\n", + "2015-06-12 00:00:00: Portfolio Value - 199564.80\n", + "2015-06-15 00:00:00: Portfolio Value - 199047.05\n", + "2015-06-16 00:00:00: Portfolio Value - 199893.25\n", + "2015-06-17 00:00:00: Portfolio Value - 200606.14\n", + "2015-06-18 00:00:00: Portfolio Value - 202927.71\n", + "2015-06-19 00:00:00: Portfolio Value - 201995.35\n", + "2015-06-22 00:00:00: Portfolio Value - 202819.81\n", + "2015-06-23 00:00:00: Portfolio Value - 202649.94\n", + "2015-06-24 00:00:00: Portfolio Value - 201067.59\n", + "2015-06-25 00:00:00: Portfolio Value - 200660.50\n", + "2015-06-26 00:00:00: Portfolio Value - 200838.15\n", + "2015-06-29 00:00:00: Portfolio Value - 197076.92\n", + "2015-06-30 00:00:00: Portfolio Value - 197783.45\n", + "2015-07-01 00:00:00: Portfolio Value - 198625.05\n", + "2015-07-02 00:00:00: Portfolio Value - 198791.23\n", + "2015-07-06 00:00:00: Portfolio Value - 198622.63\n", + "2015-07-07 00:00:00: Portfolio Value - 200912.61\n", + "2015-07-08 00:00:00: Portfolio Value - 198163.34\n", + "2015-07-09 00:00:00: Portfolio Value - 198723.95\n", + "2015-07-10 00:00:00: Portfolio Value - 201268.80\n", + "2015-07-13 00:00:00: Portfolio Value - 203692.32\n", + "2015-07-14 00:00:00: Portfolio Value - 204382.91\n", + "2015-07-15 00:00:00: Portfolio Value - 203842.74\n", + "2015-07-16 00:00:00: Portfolio Value - 205913.27\n", + "2015-07-17 00:00:00: Portfolio Value - 205256.09\n", + "2015-07-20 00:00:00: Portfolio Value - 205334.78\n", + "2015-07-21 00:00:00: Portfolio Value - 204580.38\n", + "2015-07-22 00:00:00: Portfolio Value - 204999.86\n", + "2015-07-23 00:00:00: Portfolio Value - 203940.98\n", + "2015-07-24 00:00:00: Portfolio Value - 201854.92\n", + "2015-07-27 00:00:00: Portfolio Value - 200805.93\n", + "2015-07-28 00:00:00: Portfolio Value - 203080.40\n", + "2015-07-29 00:00:00: Portfolio Value - 203687.29\n", + "2015-07-30 00:00:00: Portfolio Value - 204572.34\n", + "2015-07-31 00:00:00: Portfolio Value - 205325.27\n", + "2015-08-03 00:00:00: Portfolio Value - 204789.91\n", + "2015-08-04 00:00:00: Portfolio Value - 206134.40\n", + "2015-08-05 00:00:00: Portfolio Value - 207875.07\n", + "2015-08-06 00:00:00: Portfolio Value - 206265.18\n", + "2015-08-07 00:00:00: Portfolio Value - 205848.83\n", + "2015-08-10 00:00:00: Portfolio Value - 207367.08\n", + "2015-08-11 00:00:00: Portfolio Value - 205904.09\n", + "2015-08-12 00:00:00: Portfolio Value - 206315.84\n", + "2015-08-13 00:00:00: Portfolio Value - 206205.12\n", + "2015-08-14 00:00:00: Portfolio Value - 206861.66\n", + "2015-08-17 00:00:00: Portfolio Value - 207945.39\n", + "2015-08-18 00:00:00: Portfolio Value - 207237.43\n", + "2015-08-19 00:00:00: Portfolio Value - 206038.63\n", + "2015-08-20 00:00:00: Portfolio Value - 201937.66\n", + "2015-08-21 00:00:00: Portfolio Value - 196727.35\n", + "2015-08-24 00:00:00: Portfolio Value - 189704.84\n", + "2015-08-25 00:00:00: Portfolio Value - 187989.36\n", + "2015-08-26 00:00:00: Portfolio Value - 194313.52\n", + "2015-08-27 00:00:00: Portfolio Value - 197874.82\n", + "2015-08-28 00:00:00: Portfolio Value - 198280.87\n", + "2015-08-31 00:00:00: Portfolio Value - 196170.07\n", + "2015-09-01 00:00:00: Portfolio Value - 191065.09\n", + "2015-09-02 00:00:00: Portfolio Value - 194598.39\n", + "2015-09-03 00:00:00: Portfolio Value - 194299.20\n", + "2015-09-04 00:00:00: Portfolio Value - 191982.14\n", + "2015-09-08 00:00:00: Portfolio Value - 197251.93\n", + "2015-09-09 00:00:00: Portfolio Value - 194991.68\n", + "2015-09-10 00:00:00: Portfolio Value - 195133.27\n", + "2015-09-11 00:00:00: Portfolio Value - 196245.18\n", + "2015-09-14 00:00:00: Portfolio Value - 195476.73\n", + "2015-09-15 00:00:00: Portfolio Value - 197601.34\n", + "2015-09-16 00:00:00: Portfolio Value - 199177.15\n", + "2015-09-17 00:00:00: Portfolio Value - 199908.26\n", + "2015-09-18 00:00:00: Portfolio Value - 197438.80\n", + "2015-09-21 00:00:00: Portfolio Value - 197056.45\n", + "2015-09-22 00:00:00: Portfolio Value - 195062.22\n", + "2015-09-23 00:00:00: Portfolio Value - 195124.37\n", + "2015-09-24 00:00:00: Portfolio Value - 194227.76\n", + "2015-09-25 00:00:00: Portfolio Value - 193011.43\n", + "2015-09-28 00:00:00: Portfolio Value - 187295.00\n", + "2015-09-29 00:00:00: Portfolio Value - 187175.39\n", + "2015-09-30 00:00:00: Portfolio Value - 190656.80\n", + "2015-10-01 00:00:00: Portfolio Value - 190921.12\n", + "2015-10-02 00:00:00: Portfolio Value - 193729.53\n", + "2015-10-05 00:00:00: Portfolio Value - 196100.62\n", + "2015-10-06 00:00:00: Portfolio Value - 194201.94\n", + "2015-10-07 00:00:00: Portfolio Value - 196524.50\n", + "2015-10-08 00:00:00: Portfolio Value - 197991.44\n", + "2015-10-09 00:00:00: Portfolio Value - 198965.43\n", + "2015-10-12 00:00:00: Portfolio Value - 199983.02\n", + "2015-10-13 00:00:00: Portfolio Value - 198081.48\n", + "2015-10-14 00:00:00: Portfolio Value - 197231.76\n", + "2015-10-15 00:00:00: Portfolio Value - 199499.76\n", + "2015-10-16 00:00:00: Portfolio Value - 199817.60\n", + "2015-10-19 00:00:00: Portfolio Value - 200453.07\n", + "2015-10-20 00:00:00: Portfolio Value - 199229.87\n", + "2015-10-21 00:00:00: Portfolio Value - 198337.67\n", + "2015-10-22 00:00:00: Portfolio Value - 200576.68\n", + "2015-10-23 00:00:00: Portfolio Value - 202096.40\n", + "2015-10-26 00:00:00: Portfolio Value - 202863.86\n", + "2015-10-27 00:00:00: Portfolio Value - 203364.84\n", + "2015-10-28 00:00:00: Portfolio Value - 204788.63\n", + "2015-10-29 00:00:00: Portfolio Value - 204041.57\n", + "2015-10-30 00:00:00: Portfolio Value - 203924.32\n", + "2015-11-02 00:00:00: Portfolio Value - 206586.78\n", + "2015-11-03 00:00:00: Portfolio Value - 206739.09\n", + "2015-11-04 00:00:00: Portfolio Value - 206099.94\n", + "2015-11-05 00:00:00: Portfolio Value - 206034.11\n", + "2015-11-06 00:00:00: Portfolio Value - 205263.97\n", + "2015-11-09 00:00:00: Portfolio Value - 203520.65\n", + "2015-11-10 00:00:00: Portfolio Value - 204480.82\n", + "2015-11-11 00:00:00: Portfolio Value - 203903.45\n", + "2015-11-12 00:00:00: Portfolio Value - 200897.36\n", + "2015-11-13 00:00:00: Portfolio Value - 198626.97\n", + "2015-11-16 00:00:00: Portfolio Value - 201605.06\n", + "2015-11-17 00:00:00: Portfolio Value - 202121.11\n", + "2015-11-18 00:00:00: Portfolio Value - 205031.37\n", + "2015-11-19 00:00:00: Portfolio Value - 205052.70\n", + "2015-11-20 00:00:00: Portfolio Value - 205550.76\n", + "2015-11-23 00:00:00: Portfolio Value - 205637.99\n", + "2015-11-24 00:00:00: Portfolio Value - 205434.33\n", + "2015-11-25 00:00:00: Portfolio Value - 205493.21\n", + "2015-11-27 00:00:00: Portfolio Value - 206053.01\n", + "2015-11-30 00:00:00: Portfolio Value - 204435.33\n", + "2015-12-01 00:00:00: Portfolio Value - 206213.18\n", + "2015-12-02 00:00:00: Portfolio Value - 205243.67\n", + "2015-12-03 00:00:00: Portfolio Value - 202647.30\n", + "2015-12-04 00:00:00: Portfolio Value - 207377.26\n", + "2015-12-07 00:00:00: Portfolio Value - 206231.33\n", + "2015-12-08 00:00:00: Portfolio Value - 205984.61\n", + "2015-12-09 00:00:00: Portfolio Value - 204093.48\n", + "2015-12-10 00:00:00: Portfolio Value - 204149.68\n", + "2015-12-11 00:00:00: Portfolio Value - 201129.15\n", + "2015-12-14 00:00:00: Portfolio Value - 202291.11\n", + "2015-12-15 00:00:00: Portfolio Value - 205086.46\n", + "2015-12-16 00:00:00: Portfolio Value - 208004.92\n", + "2015-12-17 00:00:00: Portfolio Value - 205626.45\n", + "2015-12-18 00:00:00: Portfolio Value - 202997.56\n", + "2015-12-21 00:00:00: Portfolio Value - 203766.66\n", + "2015-12-22 00:00:00: Portfolio Value - 204685.40\n", + "2015-12-23 00:00:00: Portfolio Value - 206698.51\n", + "2015-12-24 00:00:00: Portfolio Value - 206645.45\n", + "2015-12-28 00:00:00: Portfolio Value - 206619.26\n", + "2015-12-29 00:00:00: Portfolio Value - 208479.45\n", + "2015-12-30 00:00:00: Portfolio Value - 207475.19\n", + "2015-12-31 00:00:00: Portfolio Value - 205681.25\n", + "2016-01-04 00:00:00: Portfolio Value - 202051.64\n", + "2016-01-05 00:00:00: Portfolio Value - 202565.00\n", + "2016-01-06 00:00:00: Portfolio Value - 201680.06\n", + "2016-01-07 00:00:00: Portfolio Value - 197526.83\n", + "2016-01-08 00:00:00: Portfolio Value - 195825.79\n", + "2016-01-11 00:00:00: Portfolio Value - 195025.98\n", + "2016-01-12 00:00:00: Portfolio Value - 195868.37\n", + "2016-01-13 00:00:00: Portfolio Value - 191357.94\n", + "2016-01-14 00:00:00: Portfolio Value - 193846.80\n", + "2016-01-15 00:00:00: Portfolio Value - 190476.18\n", + "2016-01-19 00:00:00: Portfolio Value - 190842.53\n", + "2016-01-20 00:00:00: Portfolio Value - 189617.47\n", + "2016-01-21 00:00:00: Portfolio Value - 190021.44\n", + "2016-01-22 00:00:00: Portfolio Value - 193955.50\n", + "2016-01-25 00:00:00: Portfolio Value - 191713.96\n", + "2016-01-26 00:00:00: Portfolio Value - 193359.59\n", + "2016-01-27 00:00:00: Portfolio Value - 190906.64\n", + "2016-01-28 00:00:00: Portfolio Value - 190052.34\n", + "2016-01-29 00:00:00: Portfolio Value - 194443.70\n", + "2016-02-01 00:00:00: Portfolio Value - 194934.41\n", + "2016-02-02 00:00:00: Portfolio Value - 191375.89\n", + "2016-02-03 00:00:00: Portfolio Value - 192222.17\n", + "2016-02-04 00:00:00: Portfolio Value - 191638.62\n", + "2016-02-05 00:00:00: Portfolio Value - 188566.80\n", + "2016-02-08 00:00:00: Portfolio Value - 186442.84\n", + "2016-02-09 00:00:00: Portfolio Value - 185733.06\n", + "2016-02-10 00:00:00: Portfolio Value - 186932.35\n", + "2016-02-11 00:00:00: Portfolio Value - 184737.47\n", + "2016-02-12 00:00:00: Portfolio Value - 188022.47\n", + "2016-02-16 00:00:00: Portfolio Value - 191098.45\n", + "2016-02-17 00:00:00: Portfolio Value - 193153.37\n", + "2016-02-18 00:00:00: Portfolio Value - 192383.53\n", + "2016-02-19 00:00:00: Portfolio Value - 192538.25\n", + "2016-02-22 00:00:00: Portfolio Value - 194705.11\n", + "2016-02-23 00:00:00: Portfolio Value - 193490.37\n", + "2016-02-24 00:00:00: Portfolio Value - 194944.39\n", + "2016-02-25 00:00:00: Portfolio Value - 197296.04\n", + "2016-02-26 00:00:00: Portfolio Value - 196258.23\n", + "2016-02-29 00:00:00: Portfolio Value - 195080.61\n", + "2016-03-01 00:00:00: Portfolio Value - 198546.34\n", + "2016-03-02 00:00:00: Portfolio Value - 198893.22\n", + "2016-03-03 00:00:00: Portfolio Value - 199205.89\n", + "2016-03-04 00:00:00: Portfolio Value - 199512.22\n", + "2016-03-07 00:00:00: Portfolio Value - 199140.30\n", + "2016-03-08 00:00:00: Portfolio Value - 197417.91\n", + "2016-03-09 00:00:00: Portfolio Value - 197299.77\n", + "2016-03-10 00:00:00: Portfolio Value - 198011.72\n", + "2016-03-11 00:00:00: Portfolio Value - 201166.84\n", + "2016-03-14 00:00:00: Portfolio Value - 200685.70\n", + "2016-03-15 00:00:00: Portfolio Value - 199563.16\n", + "2016-03-16 00:00:00: Portfolio Value - 200579.99\n", + "2016-03-17 00:00:00: Portfolio Value - 200986.34\n", + "2016-03-18 00:00:00: Portfolio Value - 202184.19\n", + "2016-03-21 00:00:00: Portfolio Value - 202330.56\n", + "2016-03-22 00:00:00: Portfolio Value - 202504.49\n", + "2016-03-23 00:00:00: Portfolio Value - 201214.14\n", + "2016-03-24 00:00:00: Portfolio Value - 201253.96\n", + "2016-03-28 00:00:00: Portfolio Value - 201380.46\n", + "2016-03-29 00:00:00: Portfolio Value - 203620.93\n", + "2016-03-30 00:00:00: Portfolio Value - 204153.31\n", + "2016-03-31 00:00:00: Portfolio Value - 204490.91\n", + "2016-04-01 00:00:00: Portfolio Value - 207215.74\n", + "2016-04-04 00:00:00: Portfolio Value - 206573.06\n", + "2016-04-05 00:00:00: Portfolio Value - 204409.38\n", + "2016-04-06 00:00:00: Portfolio Value - 206870.53\n", + "2016-04-07 00:00:00: Portfolio Value - 205342.14\n", + "2016-04-08 00:00:00: Portfolio Value - 205159.14\n", + "2016-04-11 00:00:00: Portfolio Value - 204156.13\n", + "2016-04-12 00:00:00: Portfolio Value - 205791.49\n", + "2016-04-13 00:00:00: Portfolio Value - 207299.29\n", + "2016-04-14 00:00:00: Portfolio Value - 206647.71\n", + "2016-04-15 00:00:00: Portfolio Value - 206672.89\n", + "2016-04-18 00:00:00: Portfolio Value - 208062.29\n", + "2016-04-19 00:00:00: Portfolio Value - 207177.18\n", + "2016-04-20 00:00:00: Portfolio Value - 206530.87\n", + "2016-04-21 00:00:00: Portfolio Value - 204907.78\n", + "2016-04-22 00:00:00: Portfolio Value - 204762.81\n", + "2016-04-25 00:00:00: Portfolio Value - 204874.21\n", + "2016-04-26 00:00:00: Portfolio Value - 205155.91\n", + "2016-04-27 00:00:00: Portfolio Value - 205392.33\n", + "2016-04-28 00:00:00: Portfolio Value - 203469.82\n", + "2016-04-29 00:00:00: Portfolio Value - 202212.95\n", + "2016-05-02 00:00:00: Portfolio Value - 204337.48\n", + "2016-05-03 00:00:00: Portfolio Value - 202448.10\n", + "2016-05-04 00:00:00: Portfolio Value - 201628.41\n", + "2016-05-05 00:00:00: Portfolio Value - 202025.21\n", + "2016-05-06 00:00:00: Portfolio Value - 202100.66\n", + "2016-05-09 00:00:00: Portfolio Value - 203102.63\n", + "2016-05-10 00:00:00: Portfolio Value - 205243.97\n", + "2016-05-11 00:00:00: Portfolio Value - 203093.25\n", + "2016-05-12 00:00:00: Portfolio Value - 203126.52\n", + "2016-05-13 00:00:00: Portfolio Value - 202155.36\n", + "2016-05-16 00:00:00: Portfolio Value - 204423.78\n", + "2016-05-17 00:00:00: Portfolio Value - 202367.73\n", + "2016-05-18 00:00:00: Portfolio Value - 202391.31\n", + "2016-05-19 00:00:00: Portfolio Value - 201936.88\n", + "2016-05-20 00:00:00: Portfolio Value - 202825.69\n", + "2016-05-23 00:00:00: Portfolio Value - 202901.75\n", + "2016-05-24 00:00:00: Portfolio Value - 205435.17\n", + "2016-05-25 00:00:00: Portfolio Value - 206170.91\n", + "2016-05-26 00:00:00: Portfolio Value - 206728.06\n", + "2016-05-27 00:00:00: Portfolio Value - 208482.28\n", + "2016-05-31 00:00:00: Portfolio Value - 208594.19\n", + "2016-06-01 00:00:00: Portfolio Value - 209553.42\n", + "2016-06-02 00:00:00: Portfolio Value - 210502.32\n", + "2016-06-03 00:00:00: Portfolio Value - 209958.74\n", + "2016-06-06 00:00:00: Portfolio Value - 210734.75\n", + "2016-06-07 00:00:00: Portfolio Value - 210688.15\n", + "2016-06-08 00:00:00: Portfolio Value - 211294.12\n", + "2016-06-09 00:00:00: Portfolio Value - 211751.12\n", + "2016-06-10 00:00:00: Portfolio Value - 209888.57\n", + "2016-06-13 00:00:00: Portfolio Value - 208501.26\n", + "2016-06-14 00:00:00: Portfolio Value - 208564.33\n", + "2016-06-15 00:00:00: Portfolio Value - 208112.58\n", + "2016-06-16 00:00:00: Portfolio Value - 208677.50\n", + "2016-06-17 00:00:00: Portfolio Value - 207702.04\n", + "2016-06-20 00:00:00: Portfolio Value - 208801.12\n", + "2016-06-21 00:00:00: Portfolio Value - 209009.01\n", + "2016-06-22 00:00:00: Portfolio Value - 208970.23\n", + "2016-06-23 00:00:00: Portfolio Value - 211359.67\n", + "2016-06-24 00:00:00: Portfolio Value - 205571.92\n", + "2016-06-27 00:00:00: Portfolio Value - 202367.12\n", + "2016-06-28 00:00:00: Portfolio Value - 205186.89\n", + "2016-06-29 00:00:00: Portfolio Value - 208554.96\n", + "2016-06-30 00:00:00: Portfolio Value - 211696.07\n", + "2016-07-01 00:00:00: Portfolio Value - 212392.47\n", + "2016-07-05 00:00:00: Portfolio Value - 211911.95\n", + "2016-07-06 00:00:00: Portfolio Value - 213075.75\n", + "2016-07-07 00:00:00: Portfolio Value - 213087.08\n", + "2016-07-08 00:00:00: Portfolio Value - 215731.93\n", + "2016-07-11 00:00:00: Portfolio Value - 216307.11\n", + "2016-07-12 00:00:00: Portfolio Value - 216876.91\n", + "2016-07-13 00:00:00: Portfolio Value - 216644.63\n", + "2016-07-14 00:00:00: Portfolio Value - 217329.73\n", + "2016-07-15 00:00:00: Portfolio Value - 217463.57\n", + "2016-07-18 00:00:00: Portfolio Value - 218142.92\n", + "2016-07-19 00:00:00: Portfolio Value - 217334.01\n", + "2016-07-20 00:00:00: Portfolio Value - 218315.24\n", + "2016-07-21 00:00:00: Portfolio Value - 218342.87\n", + "2016-07-22 00:00:00: Portfolio Value - 219667.73\n", + "2016-07-25 00:00:00: Portfolio Value - 219748.62\n", + "2016-07-26 00:00:00: Portfolio Value - 220197.30\n", + "2016-07-27 00:00:00: Portfolio Value - 219567.32\n", + "2016-07-28 00:00:00: Portfolio Value - 219717.64\n", + "2016-07-29 00:00:00: Portfolio Value - 220217.46\n", + "2016-08-01 00:00:00: Portfolio Value - 220607.61\n", + "2016-08-02 00:00:00: Portfolio Value - 219082.82\n", + "2016-08-03 00:00:00: Portfolio Value - 219618.68\n", + "2016-08-04 00:00:00: Portfolio Value - 219671.50\n", + "2016-08-05 00:00:00: Portfolio Value - 220402.21\n", + "2016-08-08 00:00:00: Portfolio Value - 219884.02\n", + "2016-08-09 00:00:00: Portfolio Value - 219652.70\n", + "2016-08-10 00:00:00: Portfolio Value - 219290.90\n", + "2016-08-11 00:00:00: Portfolio Value - 220331.36\n", + "2016-08-12 00:00:00: Portfolio Value - 220124.59\n", + "2016-08-15 00:00:00: Portfolio Value - 220370.88\n", + "2016-08-16 00:00:00: Portfolio Value - 218536.18\n", + "2016-08-17 00:00:00: Portfolio Value - 218593.06\n", + "2016-08-18 00:00:00: Portfolio Value - 219655.10\n", + "2016-08-19 00:00:00: Portfolio Value - 218981.81\n", + "2016-08-22 00:00:00: Portfolio Value - 219888.05\n", + "2016-08-23 00:00:00: Portfolio Value - 219791.56\n", + "2016-08-24 00:00:00: Portfolio Value - 218278.11\n", + "2016-08-25 00:00:00: Portfolio Value - 217641.14\n", + "2016-08-26 00:00:00: Portfolio Value - 216588.25\n", + "2016-08-29 00:00:00: Portfolio Value - 217718.03\n", + "2016-08-30 00:00:00: Portfolio Value - 216967.81\n", + "2016-08-31 00:00:00: Portfolio Value - 216573.68\n", + "2016-09-01 00:00:00: Portfolio Value - 216442.63\n", + "2016-09-02 00:00:00: Portfolio Value - 216914.55\n", + "2016-09-06 00:00:00: Portfolio Value - 217756.47\n", + "2016-09-07 00:00:00: Portfolio Value - 217768.01\n", + "2016-09-08 00:00:00: Portfolio Value - 217134.03\n", + "2016-09-09 00:00:00: Portfolio Value - 211826.81\n", + "2016-09-12 00:00:00: Portfolio Value - 215335.07\n", + "2016-09-13 00:00:00: Portfolio Value - 212446.34\n", + "2016-09-14 00:00:00: Portfolio Value - 212890.00\n", + "2016-09-15 00:00:00: Portfolio Value - 214460.57\n", + "2016-09-16 00:00:00: Portfolio Value - 214248.72\n", + "2016-09-19 00:00:00: Portfolio Value - 214306.46\n", + "2016-09-20 00:00:00: Portfolio Value - 214322.02\n", + "2016-09-21 00:00:00: Portfolio Value - 216284.14\n", + "2016-09-22 00:00:00: Portfolio Value - 217628.22\n", + "2016-09-23 00:00:00: Portfolio Value - 216879.62\n", + "2016-09-26 00:00:00: Portfolio Value - 215408.56\n", + "2016-09-27 00:00:00: Portfolio Value - 217259.09\n", + "2016-09-28 00:00:00: Portfolio Value - 217369.05\n", + "2016-09-29 00:00:00: Portfolio Value - 214883.48\n", + "2016-09-30 00:00:00: Portfolio Value - 216121.36\n", + "2016-10-03 00:00:00: Portfolio Value - 215347.93\n", + "2016-10-04 00:00:00: Portfolio Value - 213726.54\n", + "2016-10-05 00:00:00: Portfolio Value - 214116.16\n", + "2016-10-06 00:00:00: Portfolio Value - 214426.32\n", + "2016-10-07 00:00:00: Portfolio Value - 213980.50\n", + "2016-10-10 00:00:00: Portfolio Value - 215095.19\n", + "2016-10-11 00:00:00: Portfolio Value - 211973.37\n", + "2016-10-12 00:00:00: Portfolio Value - 211948.05\n", + "2016-10-13 00:00:00: Portfolio Value - 212797.32\n", + "2016-10-14 00:00:00: Portfolio Value - 212262.80\n", + "2016-10-17 00:00:00: Portfolio Value - 211578.24\n", + "2016-10-18 00:00:00: Portfolio Value - 213332.23\n", + "2016-10-19 00:00:00: Portfolio Value - 213768.64\n", + "2016-10-20 00:00:00: Portfolio Value - 213758.96\n", + "2016-10-21 00:00:00: Portfolio Value - 212985.96\n", + "2016-10-24 00:00:00: Portfolio Value - 213529.19\n", + "2016-10-25 00:00:00: Portfolio Value - 212968.10\n", + "2016-10-26 00:00:00: Portfolio Value - 212643.89\n", + "2016-10-27 00:00:00: Portfolio Value - 211772.47\n", + "2016-10-28 00:00:00: Portfolio Value - 212529.12\n", + "2016-10-31 00:00:00: Portfolio Value - 212970.42\n", + "2016-11-01 00:00:00: Portfolio Value - 211641.42\n", + "2016-11-02 00:00:00: Portfolio Value - 210135.35\n", + "2016-11-03 00:00:00: Portfolio Value - 208729.71\n", + "2016-11-04 00:00:00: Portfolio Value - 208910.72\n", + "2016-11-07 00:00:00: Portfolio Value - 213253.92\n", + "2016-11-08 00:00:00: Portfolio Value - 214572.83\n", + "2016-11-09 00:00:00: Portfolio Value - 217499.39\n", + "2016-11-10 00:00:00: Portfolio Value - 216914.27\n", + "2016-11-11 00:00:00: Portfolio Value - 216872.48\n", + "2016-11-14 00:00:00: Portfolio Value - 217897.32\n", + "2016-11-15 00:00:00: Portfolio Value - 218965.16\n", + "2016-11-16 00:00:00: Portfolio Value - 218316.14\n", + "2016-11-17 00:00:00: Portfolio Value - 219391.12\n", + "2016-11-18 00:00:00: Portfolio Value - 218840.59\n", + "2016-11-21 00:00:00: Portfolio Value - 220662.89\n", + "2016-11-22 00:00:00: Portfolio Value - 221097.60\n", + "2016-11-23 00:00:00: Portfolio Value - 221426.38\n", + "2016-11-25 00:00:00: Portfolio Value - 222445.88\n", + "2016-11-28 00:00:00: Portfolio Value - 221482.32\n", + "2016-11-29 00:00:00: Portfolio Value - 221863.24\n", + "2016-11-30 00:00:00: Portfolio Value - 219919.06\n", + "2016-12-01 00:00:00: Portfolio Value - 218482.99\n", + "2016-12-02 00:00:00: Portfolio Value - 218923.89\n", + "2016-12-05 00:00:00: Portfolio Value - 219832.43\n", + "2016-12-06 00:00:00: Portfolio Value - 221070.49\n", + "2016-12-07 00:00:00: Portfolio Value - 222956.08\n", + "2016-12-08 00:00:00: Portfolio Value - 223320.56\n", + "2016-12-09 00:00:00: Portfolio Value - 224263.54\n", + "2016-12-12 00:00:00: Portfolio Value - 225019.79\n", + "2016-12-13 00:00:00: Portfolio Value - 225800.81\n", + "2016-12-14 00:00:00: Portfolio Value - 224357.34\n", + "2016-12-15 00:00:00: Portfolio Value - 225484.62\n", + "2016-12-16 00:00:00: Portfolio Value - 225649.93\n", + "2016-12-19 00:00:00: Portfolio Value - 225469.79\n", + "2016-12-20 00:00:00: Portfolio Value - 226089.82\n", + "2016-12-21 00:00:00: Portfolio Value - 225723.29\n", + "2016-12-22 00:00:00: Portfolio Value - 225440.87\n", + "2016-12-23 00:00:00: Portfolio Value - 226213.85\n", + "2016-12-27 00:00:00: Portfolio Value - 226754.16\n", + "2016-12-28 00:00:00: Portfolio Value - 224820.31\n", + "2016-12-29 00:00:00: Portfolio Value - 225114.97\n", + "2016-12-30 00:00:00: Portfolio Value - 223851.80\n", + "2017-01-03 00:00:00: Portfolio Value - 225529.55\n", + "2017-01-04 00:00:00: Portfolio Value - 227319.10\n", + "2017-01-05 00:00:00: Portfolio Value - 227302.40\n", + "2017-01-06 00:00:00: Portfolio Value - 226897.63\n", + "2017-01-09 00:00:00: Portfolio Value - 226212.98\n", + "2017-01-10 00:00:00: Portfolio Value - 227667.20\n", + "2017-01-11 00:00:00: Portfolio Value - 227818.84\n", + "2017-01-12 00:00:00: Portfolio Value - 227307.90\n", + "2017-01-13 00:00:00: Portfolio Value - 228131.60\n", + "2017-01-17 00:00:00: Portfolio Value - 227812.99\n", + "2017-01-18 00:00:00: Portfolio Value - 228205.89\n", + "2017-01-19 00:00:00: Portfolio Value - 227277.50\n", + "2017-01-20 00:00:00: Portfolio Value - 228026.80\n", + "2017-01-23 00:00:00: Portfolio Value - 226957.81\n", + "2017-01-24 00:00:00: Portfolio Value - 228290.80\n", + "2017-01-25 00:00:00: Portfolio Value - 229753.95\n", + "2017-01-26 00:00:00: Portfolio Value - 229801.09\n", + "2017-01-27 00:00:00: Portfolio Value - 230147.06\n", + "2017-01-30 00:00:00: Portfolio Value - 229160.16\n", + "2017-01-31 00:00:00: Portfolio Value - 230199.43\n", + "2017-02-01 00:00:00: Portfolio Value - 229726.31\n", + "2017-02-02 00:00:00: Portfolio Value - 230528.09\n", + "2017-02-03 00:00:00: Portfolio Value - 232003.31\n", + "2017-02-06 00:00:00: Portfolio Value - 231666.45\n", + "2017-02-07 00:00:00: Portfolio Value - 232112.62\n", + "2017-02-08 00:00:00: Portfolio Value - 232130.15\n", + "2017-02-09 00:00:00: Portfolio Value - 233533.19\n", + "2017-02-10 00:00:00: Portfolio Value - 234138.42\n", + "2017-02-13 00:00:00: Portfolio Value - 235319.43\n", + "2017-02-14 00:00:00: Portfolio Value - 236031.01\n", + "2017-02-15 00:00:00: Portfolio Value - 237327.64\n", + "2017-02-16 00:00:00: Portfolio Value - 236600.38\n", + "2017-02-17 00:00:00: Portfolio Value - 236826.98\n", + "2017-02-21 00:00:00: Portfolio Value - 238248.66\n", + "2017-02-22 00:00:00: Portfolio Value - 237921.71\n", + "2017-02-23 00:00:00: Portfolio Value - 237675.20\n", + "2017-02-24 00:00:00: Portfolio Value - 238914.29\n", + "2017-02-27 00:00:00: Portfolio Value - 239653.41\n", + "2017-02-28 00:00:00: Portfolio Value - 239195.68\n", + "2017-03-01 00:00:00: Portfolio Value - 241745.16\n", + "2017-03-02 00:00:00: Portfolio Value - 240845.13\n", + "2017-03-03 00:00:00: Portfolio Value - 240785.69\n", + "2017-03-06 00:00:00: Portfolio Value - 239920.57\n", + "2017-03-07 00:00:00: Portfolio Value - 238960.84\n", + "2017-03-08 00:00:00: Portfolio Value - 239068.06\n", + "2017-03-09 00:00:00: Portfolio Value - 239219.32\n", + "2017-03-10 00:00:00: Portfolio Value - 240833.10\n", + "2017-03-13 00:00:00: Portfolio Value - 241420.79\n", + "2017-03-14 00:00:00: Portfolio Value - 240719.18\n", + "2017-03-15 00:00:00: Portfolio Value - 243102.53\n", + "2017-03-16 00:00:00: Portfolio Value - 242067.66\n", + "2017-03-17 00:00:00: Portfolio Value - 241867.18\n", + "2017-03-20 00:00:00: Portfolio Value - 241327.31\n", + "2017-03-21 00:00:00: Portfolio Value - 238409.24\n", + "2017-03-22 00:00:00: Portfolio Value - 238961.47\n", + "2017-03-23 00:00:00: Portfolio Value - 238591.48\n", + "2017-03-24 00:00:00: Portfolio Value - 239046.95\n", + "2017-03-27 00:00:00: Portfolio Value - 239470.91\n", + "2017-03-28 00:00:00: Portfolio Value - 240478.06\n", + "2017-03-29 00:00:00: Portfolio Value - 240773.28\n", + "2017-03-30 00:00:00: Portfolio Value - 240199.15\n", + "2017-03-31 00:00:00: Portfolio Value - 239851.98\n", + "2017-04-03 00:00:00: Portfolio Value - 239394.52\n", + "2017-04-04 00:00:00: Portfolio Value - 239329.60\n", + "2017-04-05 00:00:00: Portfolio Value - 238656.13\n", + "2017-04-06 00:00:00: Portfolio Value - 239259.34\n", + "2017-04-07 00:00:00: Portfolio Value - 238821.92\n", + "2017-04-10 00:00:00: Portfolio Value - 238780.65\n", + "2017-04-11 00:00:00: Portfolio Value - 238646.56\n", + "2017-04-12 00:00:00: Portfolio Value - 238029.88\n", + "2017-04-13 00:00:00: Portfolio Value - 236853.24\n", + "2017-04-17 00:00:00: Portfolio Value - 238061.51\n", + "2017-04-18 00:00:00: Portfolio Value - 237076.21\n", + "2017-04-19 00:00:00: Portfolio Value - 236686.44\n", + "2017-04-20 00:00:00: Portfolio Value - 237781.66\n", + "2017-04-21 00:00:00: Portfolio Value - 237186.32\n", + "2017-04-24 00:00:00: Portfolio Value - 238735.87\n", + "2017-04-25 00:00:00: Portfolio Value - 239943.48\n", + "2017-04-26 00:00:00: Portfolio Value - 240040.93\n", + "2017-04-27 00:00:00: Portfolio Value - 240521.16\n", + "2017-04-28 00:00:00: Portfolio Value - 241504.18\n", + "2017-05-01 00:00:00: Portfolio Value - 242055.10\n", + "2017-05-02 00:00:00: Portfolio Value - 242762.84\n", + "2017-05-03 00:00:00: Portfolio Value - 242446.91\n", + "2017-05-04 00:00:00: Portfolio Value - 244448.55\n", + "2017-05-05 00:00:00: Portfolio Value - 244767.76\n", + "2017-05-08 00:00:00: Portfolio Value - 243538.23\n", + "2017-05-09 00:00:00: Portfolio Value - 243905.97\n", + "2017-05-10 00:00:00: Portfolio Value - 244482.15\n", + "2017-05-11 00:00:00: Portfolio Value - 244546.09\n", + "2017-05-12 00:00:00: Portfolio Value - 244374.60\n", + "2017-05-15 00:00:00: Portfolio Value - 245756.46\n", + "2017-05-16 00:00:00: Portfolio Value - 245581.07\n", + "2017-05-17 00:00:00: Portfolio Value - 242242.25\n", + "2017-05-18 00:00:00: Portfolio Value - 244220.07\n", + "2017-05-19 00:00:00: Portfolio Value - 245074.97\n", + "2017-05-22 00:00:00: Portfolio Value - 246974.60\n", + "2017-05-23 00:00:00: Portfolio Value - 247418.50\n", + "2017-05-24 00:00:00: Portfolio Value - 248197.54\n", + "2017-05-25 00:00:00: Portfolio Value - 250167.03\n", + "2017-05-26 00:00:00: Portfolio Value - 250426.29\n", + "2017-05-30 00:00:00: Portfolio Value - 250209.96\n", + "2017-05-31 00:00:00: Portfolio Value - 251145.83\n", + "2017-06-01 00:00:00: Portfolio Value - 253632.02\n", + "2017-06-02 00:00:00: Portfolio Value - 255391.93\n", + "2017-06-05 00:00:00: Portfolio Value - 254490.65\n", + "2017-06-06 00:00:00: Portfolio Value - 253542.50\n", + "2017-06-07 00:00:00: Portfolio Value - 254206.80\n", + "2017-06-08 00:00:00: Portfolio Value - 254407.50\n", + "2017-06-09 00:00:00: Portfolio Value - 252959.86\n", + "2017-06-12 00:00:00: Portfolio Value - 252232.04\n", + "2017-06-13 00:00:00: Portfolio Value - 253601.11\n", + "2017-06-14 00:00:00: Portfolio Value - 254041.36\n", + "2017-06-15 00:00:00: Portfolio Value - 253580.95\n", + "2017-06-16 00:00:00: Portfolio Value - 252863.59\n", + "2017-06-19 00:00:00: Portfolio Value - 254816.92\n", + "2017-06-20 00:00:00: Portfolio Value - 254597.49\n", + "2017-06-21 00:00:00: Portfolio Value - 255472.84\n", + "2017-06-22 00:00:00: Portfolio Value - 255446.13\n", + "2017-06-23 00:00:00: Portfolio Value - 255487.35\n", + "2017-06-26 00:00:00: Portfolio Value - 255926.17\n", + "2017-06-27 00:00:00: Portfolio Value - 252952.66\n", + "2017-06-28 00:00:00: Portfolio Value - 255033.88\n", + "2017-06-29 00:00:00: Portfolio Value - 252836.99\n", + "2017-06-30 00:00:00: Portfolio Value - 252360.52\n", + "2017-07-03 00:00:00: Portfolio Value - 251891.95\n", + "2017-07-05 00:00:00: Portfolio Value - 252522.59\n", + "2017-07-06 00:00:00: Portfolio Value - 250494.92\n", + "2017-07-07 00:00:00: Portfolio Value - 252490.49\n", + "2017-07-10 00:00:00: Portfolio Value - 251928.35\n", + "2017-07-11 00:00:00: Portfolio Value - 251204.67\n", + "2017-07-12 00:00:00: Portfolio Value - 253333.67\n", + "2017-07-13 00:00:00: Portfolio Value - 253223.14\n", + "2017-07-14 00:00:00: Portfolio Value - 254286.69\n", + "2017-07-17 00:00:00: Portfolio Value - 253902.66\n", + "2017-07-18 00:00:00: Portfolio Value - 255012.71\n", + "2017-07-19 00:00:00: Portfolio Value - 255756.50\n", + "2017-07-20 00:00:00: Portfolio Value - 257015.28\n", + "2017-07-21 00:00:00: Portfolio Value - 257053.64\n", + "2017-07-24 00:00:00: Portfolio Value - 257211.77\n", + "2017-07-25 00:00:00: Portfolio Value - 256533.87\n", + "2017-07-26 00:00:00: Portfolio Value - 255515.20\n", + "2017-07-27 00:00:00: Portfolio Value - 254611.01\n", + "2017-07-28 00:00:00: Portfolio Value - 255574.99\n", + "2017-07-31 00:00:00: Portfolio Value - 254867.10\n", + "2017-08-01 00:00:00: Portfolio Value - 254688.97\n", + "2017-08-02 00:00:00: Portfolio Value - 254074.41\n", + "2017-08-03 00:00:00: Portfolio Value - 254589.56\n", + "2017-08-04 00:00:00: Portfolio Value - 254980.24\n", + "2017-08-07 00:00:00: Portfolio Value - 255895.05\n", + "2017-08-08 00:00:00: Portfolio Value - 255144.00\n", + "2017-08-09 00:00:00: Portfolio Value - 255041.89\n", + "2017-08-10 00:00:00: Portfolio Value - 251676.07\n", + "2017-08-11 00:00:00: Portfolio Value - 252349.04\n", + "2017-08-14 00:00:00: Portfolio Value - 254517.52\n", + "2017-08-15 00:00:00: Portfolio Value - 254243.04\n", + "2017-08-16 00:00:00: Portfolio Value - 254744.14\n", + "2017-08-17 00:00:00: Portfolio Value - 251553.79\n", + "2017-08-18 00:00:00: Portfolio Value - 251649.09\n", + "2017-08-21 00:00:00: Portfolio Value - 251651.41\n", + "2017-08-22 00:00:00: Portfolio Value - 253837.32\n", + "2017-08-23 00:00:00: Portfolio Value - 252637.88\n", + "2017-08-24 00:00:00: Portfolio Value - 252038.18\n", + "2017-08-25 00:00:00: Portfolio Value - 251126.47\n", + "2017-08-28 00:00:00: Portfolio Value - 251459.95\n", + "2017-08-29 00:00:00: Portfolio Value - 251662.54\n", + "2017-08-30 00:00:00: Portfolio Value - 253258.85\n", + "2017-08-31 00:00:00: Portfolio Value - 254951.30\n", + "2017-09-01 00:00:00: Portfolio Value - 255788.02\n", + "2017-09-05 00:00:00: Portfolio Value - 254446.12\n", + "2017-09-06 00:00:00: Portfolio Value - 255375.99\n", + "2017-09-07 00:00:00: Portfolio Value - 254868.64\n", + "2017-09-08 00:00:00: Portfolio Value - 255387.57\n", + "2017-09-11 00:00:00: Portfolio Value - 256140.00\n", + "2017-09-12 00:00:00: Portfolio Value - 256413.70\n", + "2017-09-13 00:00:00: Portfolio Value - 255511.84\n", + "2017-09-14 00:00:00: Portfolio Value - 255353.99\n", + "2017-09-15 00:00:00: Portfolio Value - 255363.42\n", + "2017-09-18 00:00:00: Portfolio Value - 255686.04\n", + "2017-09-19 00:00:00: Portfolio Value - 255357.10\n", + "2017-09-20 00:00:00: Portfolio Value - 255401.04\n", + "2017-09-21 00:00:00: Portfolio Value - 254240.01\n", + "2017-09-22 00:00:00: Portfolio Value - 254372.51\n", + "2017-09-25 00:00:00: Portfolio Value - 253634.81\n", + "2017-09-26 00:00:00: Portfolio Value - 253909.12\n", + "2017-09-27 00:00:00: Portfolio Value - 255127.93\n", + "2017-09-28 00:00:00: Portfolio Value - 255309.88\n", + "2017-09-29 00:00:00: Portfolio Value - 256873.96\n", + "2017-10-02 00:00:00: Portfolio Value - 257764.30\n", + "2017-10-03 00:00:00: Portfolio Value - 258019.43\n", + "2017-10-04 00:00:00: Portfolio Value - 258745.14\n", + "2017-10-05 00:00:00: Portfolio Value - 260546.12\n", + "2017-10-06 00:00:00: Portfolio Value - 260461.76\n", + "2017-10-09 00:00:00: Portfolio Value - 259752.98\n", + "2017-10-10 00:00:00: Portfolio Value - 260210.16\n", + "2017-10-11 00:00:00: Portfolio Value - 260337.24\n", + "2017-10-12 00:00:00: Portfolio Value - 259101.29\n", + "2017-10-13 00:00:00: Portfolio Value - 259445.60\n", + "2017-10-16 00:00:00: Portfolio Value - 259944.87\n", + "2017-10-17 00:00:00: Portfolio Value - 259938.02\n", + "2017-10-18 00:00:00: Portfolio Value - 260126.50\n", + "2017-10-19 00:00:00: Portfolio Value - 260586.85\n", + "2017-10-20 00:00:00: Portfolio Value - 261213.17\n", + "2017-10-23 00:00:00: Portfolio Value - 260860.72\n", + "2017-10-24 00:00:00: Portfolio Value - 260618.35\n", + "2017-10-25 00:00:00: Portfolio Value - 259175.77\n", + "2017-10-26 00:00:00: Portfolio Value - 259844.28\n", + "2017-10-27 00:00:00: Portfolio Value - 261598.40\n", + "2017-10-30 00:00:00: Portfolio Value - 259941.36\n", + "2017-10-31 00:00:00: Portfolio Value - 260577.50\n", + "2017-11-01 00:00:00: Portfolio Value - 260578.17\n", + "2017-11-02 00:00:00: Portfolio Value - 261337.01\n", + "2017-11-03 00:00:00: Portfolio Value - 262382.21\n", + "2017-11-06 00:00:00: Portfolio Value - 262076.33\n", + "2017-11-07 00:00:00: Portfolio Value - 262085.59\n", + "2017-11-08 00:00:00: Portfolio Value - 263642.18\n", + "2017-11-09 00:00:00: Portfolio Value - 262633.31\n", + "2017-11-10 00:00:00: Portfolio Value - 262521.46\n", + "2017-11-13 00:00:00: Portfolio Value - 262901.90\n", + "2017-11-14 00:00:00: Portfolio Value - 263104.20\n", + "2017-11-15 00:00:00: Portfolio Value - 261530.99\n", + "2017-11-16 00:00:00: Portfolio Value - 264358.59\n", + "2017-11-17 00:00:00: Portfolio Value - 264089.42\n", + "2017-11-20 00:00:00: Portfolio Value - 264077.71\n", + "2017-11-21 00:00:00: Portfolio Value - 265149.69\n", + "2017-11-22 00:00:00: Portfolio Value - 264862.75\n", + "2017-11-24 00:00:00: Portfolio Value - 264843.32\n", + "2017-11-27 00:00:00: Portfolio Value - 264508.58\n", + "2017-11-28 00:00:00: Portfolio Value - 266330.33\n", + "2017-11-29 00:00:00: Portfolio Value - 266093.39\n", + "2017-11-30 00:00:00: Portfolio Value - 268068.42\n", + "2017-12-01 00:00:00: Portfolio Value - 267547.35\n", + "2017-12-04 00:00:00: Portfolio Value - 266533.80\n", + "2017-12-05 00:00:00: Portfolio Value - 266081.78\n", + "2017-12-06 00:00:00: Portfolio Value - 266205.25\n", + "2017-12-07 00:00:00: Portfolio Value - 267241.03\n", + "2017-12-08 00:00:00: Portfolio Value - 268906.78\n", + "2017-12-11 00:00:00: Portfolio Value - 268808.43\n", + "2017-12-12 00:00:00: Portfolio Value - 268391.42\n", + "2017-12-13 00:00:00: Portfolio Value - 268804.03\n", + "2017-12-14 00:00:00: Portfolio Value - 267799.48\n", + "2017-12-15 00:00:00: Portfolio Value - 270248.20\n", + "2017-12-18 00:00:00: Portfolio Value - 271131.49\n", + "2017-12-19 00:00:00: Portfolio Value - 270726.99\n", + "2017-12-20 00:00:00: Portfolio Value - 270183.01\n", + "2017-12-21 00:00:00: Portfolio Value - 269846.43\n", + "2017-12-22 00:00:00: Portfolio Value - 269821.21\n", + "2017-12-26 00:00:00: Portfolio Value - 269676.75\n", + "2017-12-27 00:00:00: Portfolio Value - 270060.90\n", + "2017-12-28 00:00:00: Portfolio Value - 270561.07\n", + "2017-12-29 00:00:00: Portfolio Value - 269160.66\n", + "2018-01-02 00:00:00: Portfolio Value - 270718.98\n", + "2018-01-03 00:00:00: Portfolio Value - 272810.98\n", + "2018-01-04 00:00:00: Portfolio Value - 273139.82\n", + "2018-01-05 00:00:00: Portfolio Value - 274397.16\n", + "2018-01-08 00:00:00: Portfolio Value - 274622.22\n", + "2018-01-09 00:00:00: Portfolio Value - 274370.64\n", + "2018-01-10 00:00:00: Portfolio Value - 273512.21\n", + "2018-01-11 00:00:00: Portfolio Value - 275570.05\n", + "2018-01-12 00:00:00: Portfolio Value - 276964.60\n", + "2018-01-16 00:00:00: Portfolio Value - 276653.50\n", + "2018-01-17 00:00:00: Portfolio Value - 278966.14\n", + "2018-01-18 00:00:00: Portfolio Value - 278773.51\n", + "2018-01-19 00:00:00: Portfolio Value - 280049.35\n", + "2018-01-22 00:00:00: Portfolio Value - 281770.43\n", + "2018-01-23 00:00:00: Portfolio Value - 283382.19\n", + "2018-01-24 00:00:00: Portfolio Value - 283787.70\n", + "2018-01-25 00:00:00: Portfolio Value - 285487.03\n", + "2018-01-26 00:00:00: Portfolio Value - 286313.37\n", + "2018-01-29 00:00:00: Portfolio Value - 284839.47\n", + "2018-01-30 00:00:00: Portfolio Value - 282925.32\n", + "2018-01-31 00:00:00: Portfolio Value - 281318.26\n", + "2018-02-01 00:00:00: Portfolio Value - 280104.04\n", + "2018-02-02 00:00:00: Portfolio Value - 275257.04\n", + "2018-02-05 00:00:00: Portfolio Value - 265865.99\n", + "2018-02-06 00:00:00: Portfolio Value - 268890.34\n", + "2018-02-07 00:00:00: Portfolio Value - 268421.37\n", + "2018-02-08 00:00:00: Portfolio Value - 259378.22\n", + "2018-02-09 00:00:00: Portfolio Value - 263649.08\n", + "2018-02-12 00:00:00: Portfolio Value - 265896.36\n", + "2018-02-13 00:00:00: Portfolio Value - 265712.48\n", + "2018-02-14 00:00:00: Portfolio Value - 268819.97\n", + "2018-02-15 00:00:00: Portfolio Value - 272011.31\n", + "2018-02-16 00:00:00: Portfolio Value - 272327.52\n", + "2018-02-20 00:00:00: Portfolio Value - 270582.11\n", + "2018-02-21 00:00:00: Portfolio Value - 269524.43\n", + "2018-02-22 00:00:00: Portfolio Value - 269690.58\n", + "2018-02-23 00:00:00: Portfolio Value - 273662.32\n", + "2018-02-26 00:00:00: Portfolio Value - 275720.03\n", + "2018-02-27 00:00:00: Portfolio Value - 272978.34\n", + "2018-02-28 00:00:00: Portfolio Value - 271230.41\n", + "2018-03-01 00:00:00: Portfolio Value - 268445.91\n", + "2018-03-02 00:00:00: Portfolio Value - 270349.22\n", + "2018-03-05 00:00:00: Portfolio Value - 273859.51\n", + "2018-03-06 00:00:00: Portfolio Value - 275449.24\n", + "2018-03-07 00:00:00: Portfolio Value - 275244.25\n", + "2018-03-08 00:00:00: Portfolio Value - 277729.04\n", + "2018-03-09 00:00:00: Portfolio Value - 281813.13\n", + "2018-03-12 00:00:00: Portfolio Value - 281882.93\n", + "2018-03-13 00:00:00: Portfolio Value - 280477.52\n", + "2018-03-14 00:00:00: Portfolio Value - 279535.88\n", + "2018-03-15 00:00:00: Portfolio Value - 279257.42\n", + "2018-03-16 00:00:00: Portfolio Value - 281080.97\n", + "2018-03-19 00:00:00: Portfolio Value - 278219.99\n", + "2018-03-20 00:00:00: Portfolio Value - 279061.57\n", + "2018-03-21 00:00:00: Portfolio Value - 277946.47\n", + "2018-03-22 00:00:00: Portfolio Value - 272715.78\n", + "2018-03-23 00:00:00: Portfolio Value - 267848.68\n", + "2018-03-26 00:00:00: Portfolio Value - 274233.65\n", + "2018-03-27 00:00:00: Portfolio Value - 271090.27\n", + "2018-03-28 00:00:00: Portfolio Value - 270640.64\n", + "2018-03-29 00:00:00: Portfolio Value - 273863.09\n", + "2018-04-02 00:00:00: Portfolio Value - 268261.85\n", + "2018-04-03 00:00:00: Portfolio Value - 270807.55\n", + "2018-04-04 00:00:00: Portfolio Value - 273383.57\n", + "2018-04-05 00:00:00: Portfolio Value - 275085.71\n", + "2018-04-06 00:00:00: Portfolio Value - 269480.95\n", + "2018-04-09 00:00:00: Portfolio Value - 270777.27\n", + "2018-04-10 00:00:00: Portfolio Value - 274388.91\n", + "2018-04-11 00:00:00: Portfolio Value - 272752.67\n", + "2018-04-12 00:00:00: Portfolio Value - 274924.96\n", + "2018-04-13 00:00:00: Portfolio Value - 274491.81\n", + "2018-04-16 00:00:00: Portfolio Value - 277025.02\n", + "2018-04-17 00:00:00: Portfolio Value - 280433.24\n", + "2018-04-18 00:00:00: Portfolio Value - 280884.79\n", + "2018-04-19 00:00:00: Portfolio Value - 277925.25\n", + "2018-04-20 00:00:00: Portfolio Value - 275640.81\n", + "2018-04-23 00:00:00: Portfolio Value - 275598.31\n", + "2018-04-24 00:00:00: Portfolio Value - 272396.84\n", + "2018-04-25 00:00:00: Portfolio Value - 272915.94\n", + "2018-04-26 00:00:00: Portfolio Value - 276095.39\n", + "2018-04-27 00:00:00: Portfolio Value - 275962.38\n", + "2018-04-30 00:00:00: Portfolio Value - 273398.05\n", + "2018-05-01 00:00:00: Portfolio Value - 273811.63\n", + "2018-05-02 00:00:00: Portfolio Value - 271797.10\n", + "2018-05-03 00:00:00: Portfolio Value - 271730.71\n", + "2018-05-04 00:00:00: Portfolio Value - 274130.20\n", + "2018-05-07 00:00:00: Portfolio Value - 274846.56\n", + "2018-05-08 00:00:00: Portfolio Value - 273940.01\n", + "2018-05-09 00:00:00: Portfolio Value - 276086.87\n", + "2018-05-10 00:00:00: Portfolio Value - 278557.20\n", + "2018-05-11 00:00:00: Portfolio Value - 279741.77\n", + "2018-05-14 00:00:00: Portfolio Value - 279270.60\n", + "2018-05-15 00:00:00: Portfolio Value - 277716.82\n", + "2018-05-16 00:00:00: Portfolio Value - 279147.44\n", + "2018-05-17 00:00:00: Portfolio Value - 279353.04\n", + "2018-05-18 00:00:00: Portfolio Value - 278608.55\n", + "2018-05-21 00:00:00: Portfolio Value - 280665.83\n", + "2018-05-22 00:00:00: Portfolio Value - 279717.77\n", + "2018-05-23 00:00:00: Portfolio Value - 281309.50\n", + "2018-05-24 00:00:00: Portfolio Value - 282055.07\n", + "2018-05-25 00:00:00: Portfolio Value - 281997.78\n", + "2018-05-29 00:00:00: Portfolio Value - 280357.96\n", + "2018-05-30 00:00:00: Portfolio Value - 283370.16\n", + "2018-05-31 00:00:00: Portfolio Value - 281221.91\n", + "2018-06-01 00:00:00: Portfolio Value - 283249.41\n", + "2018-06-04 00:00:00: Portfolio Value - 284772.92\n", + "2018-06-05 00:00:00: Portfolio Value - 284755.92\n", + "2018-06-06 00:00:00: Portfolio Value - 286262.22\n", + "2018-06-07 00:00:00: Portfolio Value - 285550.82\n", + "2018-06-08 00:00:00: Portfolio Value - 286999.13\n", + "2018-06-11 00:00:00: Portfolio Value - 287503.36\n", + "2018-06-12 00:00:00: Portfolio Value - 288348.55\n", + "2018-06-13 00:00:00: Portfolio Value - 288866.63\n", + "2018-06-14 00:00:00: Portfolio Value - 290418.95\n", + "2018-06-15 00:00:00: Portfolio Value - 290722.13\n", + "2018-06-18 00:00:00: Portfolio Value - 290981.31\n", + "2018-06-19 00:00:00: Portfolio Value - 291380.87\n", + "2018-06-20 00:00:00: Portfolio Value - 292555.57\n", + "2018-06-21 00:00:00: Portfolio Value - 291250.44\n", + "2018-06-22 00:00:00: Portfolio Value - 292047.25\n", + "2018-06-25 00:00:00: Portfolio Value - 287408.94\n", + "2018-06-26 00:00:00: Portfolio Value - 288266.37\n", + "2018-06-27 00:00:00: Portfolio Value - 285267.45\n", + "2018-06-28 00:00:00: Portfolio Value - 287336.89\n", + "2018-06-29 00:00:00: Portfolio Value - 287200.97\n", + "2018-07-02 00:00:00: Portfolio Value - 287467.57\n", + "2018-07-03 00:00:00: Portfolio Value - 287003.93\n", + "2018-07-05 00:00:00: Portfolio Value - 289565.87\n", + "2018-07-06 00:00:00: Portfolio Value - 292496.19\n", + "2018-07-09 00:00:00: Portfolio Value - 294280.62\n", + "2018-07-10 00:00:00: Portfolio Value - 294868.66\n", + "2018-07-11 00:00:00: Portfolio Value - 293993.06\n", + "2018-07-12 00:00:00: Portfolio Value - 295879.53\n", + "2018-07-13 00:00:00: Portfolio Value - 295873.58\n", + "2018-07-16 00:00:00: Portfolio Value - 295485.38\n", + "2018-07-17 00:00:00: Portfolio Value - 296150.00\n", + "2018-07-18 00:00:00: Portfolio Value - 296098.22\n", + "2018-07-19 00:00:00: Portfolio Value - 295850.31\n", + "2018-07-20 00:00:00: Portfolio Value - 295490.13\n", + "2018-07-23 00:00:00: Portfolio Value - 295479.69\n", + "2018-07-24 00:00:00: Portfolio Value - 294330.78\n", + "2018-07-25 00:00:00: Portfolio Value - 296705.01\n", + "2018-07-26 00:00:00: Portfolio Value - 296540.84\n", + "2018-07-27 00:00:00: Portfolio Value - 293835.68\n", + "2018-07-30 00:00:00: Portfolio Value - 291068.36\n", + "2018-07-31 00:00:00: Portfolio Value - 292731.88\n", + "2018-08-01 00:00:00: Portfolio Value - 291285.54\n", + "2018-08-02 00:00:00: Portfolio Value - 294762.98\n", + "2018-08-03 00:00:00: Portfolio Value - 295585.66\n", + "2018-08-06 00:00:00: Portfolio Value - 296774.41\n", + "2018-08-07 00:00:00: Portfolio Value - 297094.80\n", + "2018-08-08 00:00:00: Portfolio Value - 296270.47\n", + "2018-08-09 00:00:00: Portfolio Value - 295999.38\n", + "2018-08-10 00:00:00: Portfolio Value - 294759.27\n", + "2018-08-13 00:00:00: Portfolio Value - 293430.72\n", + "2018-08-14 00:00:00: Portfolio Value - 295044.28\n", + "2018-08-15 00:00:00: Portfolio Value - 292644.24\n", + "2018-08-16 00:00:00: Portfolio Value - 295058.24\n", + "2018-08-17 00:00:00: Portfolio Value - 296297.84\n", + "2018-08-20 00:00:00: Portfolio Value - 297849.26\n", + "2018-08-21 00:00:00: Portfolio Value - 298878.81\n", + "2018-08-22 00:00:00: Portfolio Value - 299286.05\n", + "2018-08-23 00:00:00: Portfolio Value - 299014.28\n", + "2018-08-24 00:00:00: Portfolio Value - 301298.93\n", + "2018-08-27 00:00:00: Portfolio Value - 303692.19\n", + "2018-08-28 00:00:00: Portfolio Value - 304184.41\n", + "2018-08-29 00:00:00: Portfolio Value - 306038.23\n", + "2018-08-30 00:00:00: Portfolio Value - 305444.27\n", + "2018-08-31 00:00:00: Portfolio Value - 306712.35\n", + "2018-09-04 00:00:00: Portfolio Value - 307076.73\n", + "2018-09-05 00:00:00: Portfolio Value - 305400.73\n", + "2018-09-06 00:00:00: Portfolio Value - 304971.17\n", + "2018-09-07 00:00:00: Portfolio Value - 304995.19\n", + "2018-09-10 00:00:00: Portfolio Value - 306251.72\n", + "2018-09-11 00:00:00: Portfolio Value - 307119.86\n", + "2018-09-12 00:00:00: Portfolio Value - 307477.26\n", + "2018-09-13 00:00:00: Portfolio Value - 308745.27\n", + "2018-09-14 00:00:00: Portfolio Value - 308626.94\n", + "2018-09-17 00:00:00: Portfolio Value - 305743.75\n", + "2018-09-18 00:00:00: Portfolio Value - 308075.94\n", + "2018-09-19 00:00:00: Portfolio Value - 307179.01\n", + "2018-09-20 00:00:00: Portfolio Value - 308576.32\n", + "2018-09-21 00:00:00: Portfolio Value - 308788.98\n", + "2018-09-24 00:00:00: Portfolio Value - 308124.92\n", + "2018-09-25 00:00:00: Portfolio Value - 308237.28\n", + "2018-09-26 00:00:00: Portfolio Value - 307613.36\n", + "2018-09-27 00:00:00: Portfolio Value - 308574.55\n", + "2018-09-28 00:00:00: Portfolio Value - 308852.69\n", + "2018-10-01 00:00:00: Portfolio Value - 308283.25\n", + "2018-10-02 00:00:00: Portfolio Value - 307133.46\n", + "2018-10-03 00:00:00: Portfolio Value - 306650.39\n", + "2018-10-04 00:00:00: Portfolio Value - 302696.89\n", + "2018-10-05 00:00:00: Portfolio Value - 301015.66\n", + "2018-10-08 00:00:00: Portfolio Value - 300290.46\n", + "2018-10-09 00:00:00: Portfolio Value - 300344.69\n", + "2018-10-10 00:00:00: Portfolio Value - 291579.24\n", + "2018-10-11 00:00:00: Portfolio Value - 286772.69\n", + "2018-10-12 00:00:00: Portfolio Value - 291026.81\n", + "2018-10-15 00:00:00: Portfolio Value - 289800.04\n", + "2018-10-16 00:00:00: Portfolio Value - 296166.73\n", + "2018-10-17 00:00:00: Portfolio Value - 297309.28\n", + "2018-10-18 00:00:00: Portfolio Value - 292399.26\n", + "2018-10-19 00:00:00: Portfolio Value - 291287.68\n", + "2018-10-22 00:00:00: Portfolio Value - 290336.66\n", + "2018-10-23 00:00:00: Portfolio Value - 288441.09\n", + "2018-10-24 00:00:00: Portfolio Value - 280366.64\n", + "2018-10-25 00:00:00: Portfolio Value - 281151.51\n", + "2018-10-26 00:00:00: Portfolio Value - 277529.57\n", + "2018-10-29 00:00:00: Portfolio Value - 276066.56\n", + "2018-10-30 00:00:00: Portfolio Value - 280719.20\n", + "2018-10-31 00:00:00: Portfolio Value - 283038.36\n", + "2018-11-01 00:00:00: Portfolio Value - 286766.24\n", + "2018-11-02 00:00:00: Portfolio Value - 285936.52\n", + "2018-11-05 00:00:00: Portfolio Value - 287942.28\n", + "2018-11-06 00:00:00: Portfolio Value - 289451.25\n", + "2018-11-07 00:00:00: Portfolio Value - 294399.39\n", + "2018-11-08 00:00:00: Portfolio Value - 293719.34\n", + "2018-11-09 00:00:00: Portfolio Value - 291269.17\n", + "2018-11-12 00:00:00: Portfolio Value - 286196.55\n", + "2018-11-13 00:00:00: Portfolio Value - 285892.19\n", + "2018-11-14 00:00:00: Portfolio Value - 284305.01\n", + "2018-11-15 00:00:00: Portfolio Value - 286042.50\n", + "2018-11-16 00:00:00: Portfolio Value - 287545.69\n", + "2018-11-19 00:00:00: Portfolio Value - 282241.12\n", + "2018-11-20 00:00:00: Portfolio Value - 278646.01\n", + "2018-11-21 00:00:00: Portfolio Value - 279632.67\n", + "2018-11-23 00:00:00: Portfolio Value - 279652.87\n", + "2018-11-26 00:00:00: Portfolio Value - 282997.71\n", + "2018-11-27 00:00:00: Portfolio Value - 283931.12\n", + "2018-11-28 00:00:00: Portfolio Value - 289081.73\n", + "2018-11-29 00:00:00: Portfolio Value - 288593.67\n", + "2018-11-30 00:00:00: Portfolio Value - 290089.52\n", + "2018-12-03 00:00:00: Portfolio Value - 293425.15\n", + "2018-12-04 00:00:00: Portfolio Value - 285057.39\n", + "2018-12-06 00:00:00: Portfolio Value - 285518.70\n", + "2018-12-07 00:00:00: Portfolio Value - 277593.46\n", + "2018-12-10 00:00:00: Portfolio Value - 278626.92\n", + "2018-12-11 00:00:00: Portfolio Value - 278817.81\n", + "2018-12-12 00:00:00: Portfolio Value - 280558.29\n", + "2018-12-13 00:00:00: Portfolio Value - 280341.53\n", + "2018-12-14 00:00:00: Portfolio Value - 275727.25\n", + "2018-12-17 00:00:00: Portfolio Value - 269584.54\n", + "2018-12-18 00:00:00: Portfolio Value - 269568.73\n", + "2018-12-19 00:00:00: Portfolio Value - 266367.96\n", + "2018-12-20 00:00:00: Portfolio Value - 262753.94\n", + "2018-12-21 00:00:00: Portfolio Value - 258720.63\n", + "2018-12-24 00:00:00: Portfolio Value - 251919.54\n", + "2018-12-26 00:00:00: Portfolio Value - 262863.77\n", + "2018-12-27 00:00:00: Portfolio Value - 265159.75\n", + "2018-12-28 00:00:00: Portfolio Value - 264597.40\n", + "2018-12-31 00:00:00: Portfolio Value - 267306.33\n", + "2019-01-02 00:00:00: Portfolio Value - 266077.01\n", + "2019-01-03 00:00:00: Portfolio Value - 261872.54\n", + "2019-01-04 00:00:00: Portfolio Value - 270027.77\n", + "2019-01-07 00:00:00: Portfolio Value - 272991.69\n", + "2019-01-08 00:00:00: Portfolio Value - 275603.81\n", + "2019-01-09 00:00:00: Portfolio Value - 277456.53\n", + "2019-01-10 00:00:00: Portfolio Value - 278880.19\n", + "2019-01-11 00:00:00: Portfolio Value - 279457.57\n", + "2019-01-14 00:00:00: Portfolio Value - 276674.37\n", + "2019-01-15 00:00:00: Portfolio Value - 280250.44\n", + "2019-01-16 00:00:00: Portfolio Value - 281676.66\n", + "2019-01-17 00:00:00: Portfolio Value - 284349.47\n", + "2019-01-18 00:00:00: Portfolio Value - 287439.65\n", + "2019-01-22 00:00:00: Portfolio Value - 283673.53\n", + "2019-01-23 00:00:00: Portfolio Value - 284229.70\n", + "2019-01-24 00:00:00: Portfolio Value - 285669.43\n", + "2019-01-25 00:00:00: Portfolio Value - 287453.56\n", + "2019-01-28 00:00:00: Portfolio Value - 286008.15\n", + "2019-01-29 00:00:00: Portfolio Value - 285234.06\n", + "2019-01-30 00:00:00: Portfolio Value - 289607.87\n", + "2019-01-31 00:00:00: Portfolio Value - 292772.30\n", + "2019-02-01 00:00:00: Portfolio Value - 293396.09\n", + "2019-02-04 00:00:00: Portfolio Value - 294832.53\n", + "2019-02-05 00:00:00: Portfolio Value - 295688.25\n", + "2019-02-06 00:00:00: Portfolio Value - 294127.01\n", + "2019-02-07 00:00:00: Portfolio Value - 292921.16\n", + "2019-02-08 00:00:00: Portfolio Value - 293674.39\n", + "2019-02-11 00:00:00: Portfolio Value - 294367.33\n", + "2019-02-12 00:00:00: Portfolio Value - 297784.05\n", + "2019-02-13 00:00:00: Portfolio Value - 298509.25\n", + "2019-02-14 00:00:00: Portfolio Value - 298120.69\n", + "2019-02-15 00:00:00: Portfolio Value - 300687.12\n", + "2019-02-19 00:00:00: Portfolio Value - 301332.58\n", + "2019-02-20 00:00:00: Portfolio Value - 301581.91\n", + "2019-02-21 00:00:00: Portfolio Value - 300317.87\n", + "2019-02-22 00:00:00: Portfolio Value - 302884.07\n", + "2019-02-25 00:00:00: Portfolio Value - 302865.20\n", + "2019-02-26 00:00:00: Portfolio Value - 303087.20\n", + "2019-02-27 00:00:00: Portfolio Value - 302848.79\n", + "2019-02-28 00:00:00: Portfolio Value - 302812.89\n", + "2019-03-01 00:00:00: Portfolio Value - 305029.91\n", + "2019-03-04 00:00:00: Portfolio Value - 302331.60\n", + "2019-03-05 00:00:00: Portfolio Value - 301326.04\n", + "2019-03-06 00:00:00: Portfolio Value - 299719.49\n", + "2019-03-07 00:00:00: Portfolio Value - 297072.60\n", + "2019-03-08 00:00:00: Portfolio Value - 296957.10\n", + "2019-03-11 00:00:00: Portfolio Value - 300523.33\n", + "2019-03-12 00:00:00: Portfolio Value - 301248.56\n", + "2019-03-13 00:00:00: Portfolio Value - 302787.85\n", + "2019-03-14 00:00:00: Portfolio Value - 301549.08\n", + "2019-03-15 00:00:00: Portfolio Value - 304045.45\n", + "2019-03-18 00:00:00: Portfolio Value - 304541.95\n", + "2019-03-19 00:00:00: Portfolio Value - 304389.25\n", + "2019-03-20 00:00:00: Portfolio Value - 303755.78\n", + "2019-03-21 00:00:00: Portfolio Value - 307776.76\n", + "2019-03-22 00:00:00: Portfolio Value - 302480.22\n", + "2019-03-25 00:00:00: Portfolio Value - 303236.52\n", + "2019-03-26 00:00:00: Portfolio Value - 305300.33\n", + "2019-03-27 00:00:00: Portfolio Value - 303921.60\n", + "2019-03-28 00:00:00: Portfolio Value - 306232.90\n", + "2019-03-29 00:00:00: Portfolio Value - 308748.62\n", + "2019-04-01 00:00:00: Portfolio Value - 310709.31\n", + "2019-04-02 00:00:00: Portfolio Value - 311075.66\n", + "2019-04-03 00:00:00: Portfolio Value - 311575.25\n", + "2019-04-04 00:00:00: Portfolio Value - 311259.12\n", + "2019-04-05 00:00:00: Portfolio Value - 313203.76\n", + "2019-04-08 00:00:00: Portfolio Value - 312748.20\n", + "2019-04-09 00:00:00: Portfolio Value - 310749.88\n", + "2019-04-10 00:00:00: Portfolio Value - 312758.04\n", + "2019-04-11 00:00:00: Portfolio Value - 312923.19\n", + "2019-04-12 00:00:00: Portfolio Value - 312846.21\n", + "2019-04-15 00:00:00: Portfolio Value - 312731.37\n", + "2019-04-16 00:00:00: Portfolio Value - 311818.65\n", + "2019-04-17 00:00:00: Portfolio Value - 308926.98\n", + "2019-04-18 00:00:00: Portfolio Value - 309673.08\n", + "2019-04-22 00:00:00: Portfolio Value - 309977.71\n", + "2019-04-23 00:00:00: Portfolio Value - 313480.73\n", + "2019-04-24 00:00:00: Portfolio Value - 313922.09\n", + "2019-04-25 00:00:00: Portfolio Value - 314108.42\n", + "2019-04-26 00:00:00: Portfolio Value - 316570.26\n", + "2019-04-29 00:00:00: Portfolio Value - 316087.66\n", + "2019-04-30 00:00:00: Portfolio Value - 317473.52\n", + "2019-05-01 00:00:00: Portfolio Value - 314489.33\n", + "2019-05-02 00:00:00: Portfolio Value - 315198.43\n", + "2019-05-03 00:00:00: Portfolio Value - 319012.15\n", + "2019-05-06 00:00:00: Portfolio Value - 319057.38\n", + "2019-05-07 00:00:00: Portfolio Value - 314132.72\n", + "2019-05-08 00:00:00: Portfolio Value - 314550.72\n", + "2019-05-09 00:00:00: Portfolio Value - 314018.26\n", + "2019-05-10 00:00:00: Portfolio Value - 314029.75\n", + "2019-05-13 00:00:00: Portfolio Value - 307584.55\n", + "2019-05-14 00:00:00: Portfolio Value - 309633.09\n", + "2019-05-15 00:00:00: Portfolio Value - 311806.55\n", + "2019-05-16 00:00:00: Portfolio Value - 314633.26\n", + "2019-05-17 00:00:00: Portfolio Value - 312898.31\n", + "2019-05-20 00:00:00: Portfolio Value - 312053.74\n", + "2019-05-21 00:00:00: Portfolio Value - 314566.74\n", + "2019-05-22 00:00:00: Portfolio Value - 315070.93\n", + "2019-05-23 00:00:00: Portfolio Value - 311476.44\n", + "2019-05-24 00:00:00: Portfolio Value - 311780.96\n", + "2019-05-28 00:00:00: Portfolio Value - 309475.28\n", + "2019-05-29 00:00:00: Portfolio Value - 306277.32\n", + "2019-05-30 00:00:00: Portfolio Value - 307936.53\n", + "2019-05-31 00:00:00: Portfolio Value - 305593.71\n", + "2019-06-03 00:00:00: Portfolio Value - 305762.02\n", + "2019-06-04 00:00:00: Portfolio Value - 311506.62\n", + "2019-06-05 00:00:00: Portfolio Value - 314560.62\n", + "2019-06-06 00:00:00: Portfolio Value - 316188.29\n", + "2019-06-07 00:00:00: Portfolio Value - 318505.34\n", + "2019-06-10 00:00:00: Portfolio Value - 319291.38\n", + "2019-06-11 00:00:00: Portfolio Value - 318392.05\n", + "2019-06-12 00:00:00: Portfolio Value - 319098.91\n", + "2019-06-13 00:00:00: Portfolio Value - 320076.74\n", + "2019-06-14 00:00:00: Portfolio Value - 319909.04\n", + "2019-06-17 00:00:00: Portfolio Value - 319469.46\n", + "2019-06-18 00:00:00: Portfolio Value - 321739.89\n", + "2019-06-19 00:00:00: Portfolio Value - 324305.34\n", + "2019-06-20 00:00:00: Portfolio Value - 326579.66\n", + "2019-06-21 00:00:00: Portfolio Value - 325070.08\n", + "2019-06-24 00:00:00: Portfolio Value - 324664.05\n", + "2019-06-25 00:00:00: Portfolio Value - 322309.34\n", + "2019-06-26 00:00:00: Portfolio Value - 319822.84\n", + "2019-06-27 00:00:00: Portfolio Value - 322251.60\n", + "2019-06-28 00:00:00: Portfolio Value - 323920.82\n", + "2019-07-01 00:00:00: Portfolio Value - 325347.85\n", + "2019-07-02 00:00:00: Portfolio Value - 326168.41\n", + "2019-07-03 00:00:00: Portfolio Value - 329388.05\n", + "2019-07-05 00:00:00: Portfolio Value - 328184.75\n", + "2019-07-08 00:00:00: Portfolio Value - 327088.87\n", + "2019-07-09 00:00:00: Portfolio Value - 327736.61\n", + "2019-07-10 00:00:00: Portfolio Value - 328449.66\n", + "2019-07-11 00:00:00: Portfolio Value - 328300.94\n", + "2019-07-12 00:00:00: Portfolio Value - 329544.58\n", + "2019-07-15 00:00:00: Portfolio Value - 329544.79\n", + "2019-07-16 00:00:00: Portfolio Value - 328474.72\n", + "2019-07-17 00:00:00: Portfolio Value - 328069.85\n", + "2019-07-18 00:00:00: Portfolio Value - 328078.53\n", + "2019-07-19 00:00:00: Portfolio Value - 325015.83\n", + "2019-07-22 00:00:00: Portfolio Value - 324235.67\n", + "2019-07-23 00:00:00: Portfolio Value - 325773.61\n", + "2019-07-24 00:00:00: Portfolio Value - 327954.26\n", + "2019-07-25 00:00:00: Portfolio Value - 324291.64\n", + "2019-07-26 00:00:00: Portfolio Value - 325194.83\n", + "2019-07-29 00:00:00: Portfolio Value - 324421.01\n", + "2019-07-30 00:00:00: Portfolio Value - 323874.35\n", + "2019-07-31 00:00:00: Portfolio Value - 320595.02\n", + "2019-08-01 00:00:00: Portfolio Value - 318772.61\n", + "2019-08-02 00:00:00: Portfolio Value - 316662.00\n", + "2019-08-05 00:00:00: Portfolio Value - 307788.70\n", + "2019-08-06 00:00:00: Portfolio Value - 313069.92\n", + "2019-08-07 00:00:00: Portfolio Value - 313880.88\n", + "2019-08-08 00:00:00: Portfolio Value - 319884.65\n", + "2019-08-09 00:00:00: Portfolio Value - 317658.20\n", + "2019-08-12 00:00:00: Portfolio Value - 313738.18\n", + "2019-08-13 00:00:00: Portfolio Value - 317443.15\n", + "2019-08-14 00:00:00: Portfolio Value - 308659.15\n", + "2019-08-15 00:00:00: Portfolio Value - 310271.52\n", + "2019-08-16 00:00:00: Portfolio Value - 313812.95\n", + "2019-08-19 00:00:00: Portfolio Value - 316828.40\n", + "2019-08-20 00:00:00: Portfolio Value - 314581.76\n", + "2019-08-21 00:00:00: Portfolio Value - 316859.24\n", + "2019-08-22 00:00:00: Portfolio Value - 317389.29\n", + "2019-08-23 00:00:00: Portfolio Value - 309989.57\n", + "2019-08-26 00:00:00: Portfolio Value - 312925.48\n", + "2019-08-27 00:00:00: Portfolio Value - 311914.34\n", + "2019-08-28 00:00:00: Portfolio Value - 313875.76\n", + "2019-08-29 00:00:00: Portfolio Value - 317887.75\n", + "2019-08-30 00:00:00: Portfolio Value - 314708.50\n", + "2019-09-03 00:00:00: Portfolio Value - 313240.92\n", + "2019-09-04 00:00:00: Portfolio Value - 315294.68\n", + "2019-09-05 00:00:00: Portfolio Value - 318073.58\n", + "2019-09-06 00:00:00: Portfolio Value - 318885.26\n", + "2019-09-09 00:00:00: Portfolio Value - 316156.23\n", + "2019-09-10 00:00:00: Portfolio Value - 315165.97\n", + "2019-09-11 00:00:00: Portfolio Value - 316159.79\n", + "2019-09-12 00:00:00: Portfolio Value - 317118.32\n", + "2019-09-13 00:00:00: Portfolio Value - 316821.33\n", + "2019-09-16 00:00:00: Portfolio Value - 316093.58\n", + "2019-09-17 00:00:00: Portfolio Value - 318723.77\n", + "2019-09-18 00:00:00: Portfolio Value - 318179.66\n", + "2019-09-19 00:00:00: Portfolio Value - 317959.95\n", + "2019-09-20 00:00:00: Portfolio Value - 316826.63\n", + "2019-09-23 00:00:00: Portfolio Value - 316806.14\n", + "2019-09-24 00:00:00: Portfolio Value - 315518.42\n", + "2019-09-25 00:00:00: Portfolio Value - 316654.73\n", + "2019-09-26 00:00:00: Portfolio Value - 315179.64\n", + "2019-09-27 00:00:00: Portfolio Value - 312893.13\n", + "2019-09-30 00:00:00: Portfolio Value - 314965.55\n", + "2019-10-01 00:00:00: Portfolio Value - 312889.24\n", + "2019-10-02 00:00:00: Portfolio Value - 308396.91\n", + "2019-10-03 00:00:00: Portfolio Value - 310575.50\n", + "2019-10-04 00:00:00: Portfolio Value - 313549.90\n", + "2019-10-07 00:00:00: Portfolio Value - 312225.91\n", + "2019-10-08 00:00:00: Portfolio Value - 308295.55\n", + "2019-10-09 00:00:00: Portfolio Value - 310604.44\n", + "2019-10-10 00:00:00: Portfolio Value - 313169.43\n", + "2019-10-11 00:00:00: Portfolio Value - 315920.90\n", + "2019-10-14 00:00:00: Portfolio Value - 315470.44\n", + "2019-10-15 00:00:00: Portfolio Value - 316854.89\n", + "2019-10-16 00:00:00: Portfolio Value - 316766.93\n", + "2019-10-17 00:00:00: Portfolio Value - 318457.95\n", + "2019-10-18 00:00:00: Portfolio Value - 317012.35\n", + "2019-10-21 00:00:00: Portfolio Value - 317504.56\n", + "2019-10-22 00:00:00: Portfolio Value - 315513.31\n", + "2019-10-23 00:00:00: Portfolio Value - 315865.72\n", + "2019-10-24 00:00:00: Portfolio Value - 317943.99\n", + "2019-10-25 00:00:00: Portfolio Value - 318848.33\n", + "2019-10-28 00:00:00: Portfolio Value - 319844.36\n", + "2019-10-29 00:00:00: Portfolio Value - 320641.53\n", + "2019-10-30 00:00:00: Portfolio Value - 322518.02\n", + "2019-10-31 00:00:00: Portfolio Value - 320399.98\n", + "2019-11-01 00:00:00: Portfolio Value - 321781.92\n", + "2019-11-04 00:00:00: Portfolio Value - 321997.43\n", + "2019-11-05 00:00:00: Portfolio Value - 321777.50\n", + "2019-11-06 00:00:00: Portfolio Value - 322824.80\n", + "2019-11-07 00:00:00: Portfolio Value - 323882.86\n", + "2019-11-08 00:00:00: Portfolio Value - 325497.36\n", + "2019-11-11 00:00:00: Portfolio Value - 325154.34\n", + "2019-11-12 00:00:00: Portfolio Value - 325722.06\n", + "2019-11-13 00:00:00: Portfolio Value - 326884.91\n", + "2019-11-14 00:00:00: Portfolio Value - 327332.40\n", + "2019-11-15 00:00:00: Portfolio Value - 329457.03\n", + "2019-11-18 00:00:00: Portfolio Value - 330348.86\n", + "2019-11-19 00:00:00: Portfolio Value - 330639.38\n", + "2019-11-20 00:00:00: Portfolio Value - 330140.05\n", + "2019-11-21 00:00:00: Portfolio Value - 329394.18\n", + "2019-11-22 00:00:00: Portfolio Value - 330907.20\n", + "2019-11-25 00:00:00: Portfolio Value - 333718.46\n", + "2019-11-26 00:00:00: Portfolio Value - 334569.06\n", + "2019-11-27 00:00:00: Portfolio Value - 336180.64\n", + "2019-11-29 00:00:00: Portfolio Value - 334741.93\n", + "2019-12-02 00:00:00: Portfolio Value - 332534.18\n", + "2019-12-03 00:00:00: Portfolio Value - 331051.71\n", + "2019-12-04 00:00:00: Portfolio Value - 333077.05\n", + "2019-12-05 00:00:00: Portfolio Value - 333195.96\n", + "2019-12-06 00:00:00: Portfolio Value - 336294.06\n", + "2019-12-09 00:00:00: Portfolio Value - 334141.51\n", + "2019-12-10 00:00:00: Portfolio Value - 333311.10\n", + "2019-12-11 00:00:00: Portfolio Value - 334844.96\n", + "2019-12-12 00:00:00: Portfolio Value - 336088.62\n", + "2019-12-13 00:00:00: Portfolio Value - 335892.31\n", + "2019-12-16 00:00:00: Portfolio Value - 337892.56\n", + "2019-12-17 00:00:00: Portfolio Value - 338459.70\n", + "2019-12-18 00:00:00: Portfolio Value - 338491.98\n", + "2019-12-19 00:00:00: Portfolio Value - 340219.75\n", + "2019-12-20 00:00:00: Portfolio Value - 342309.61\n", + "2019-12-23 00:00:00: Portfolio Value - 341644.99\n", + "2019-12-24 00:00:00: Portfolio Value - 342124.54\n", + "2019-12-26 00:00:00: Portfolio Value - 342385.01\n", + "2019-12-27 00:00:00: Portfolio Value - 342327.32\n", + "2019-12-30 00:00:00: Portfolio Value - 340991.07\n", + "2019-12-31 00:00:00: Portfolio Value - 341933.33\n", + "2020-01-02 00:00:00: Portfolio Value - 343340.92\n", + "2020-01-03 00:00:00: Portfolio Value - 341115.30\n", + "2020-01-06 00:00:00: Portfolio Value - 342724.30\n", + "2020-01-07 00:00:00: Portfolio Value - 341978.48\n", + "2020-01-08 00:00:00: Portfolio Value - 344180.55\n", + "2020-01-09 00:00:00: Portfolio Value - 346348.70\n", + "2020-01-10 00:00:00: Portfolio Value - 345423.79\n", + "2020-01-13 00:00:00: Portfolio Value - 348308.23\n", + "2020-01-14 00:00:00: Portfolio Value - 348819.29\n", + "2020-01-15 00:00:00: Portfolio Value - 349226.13\n", + "2020-01-16 00:00:00: Portfolio Value - 351906.44\n", + "2020-01-17 00:00:00: Portfolio Value - 352394.43\n", + "2020-01-21 00:00:00: Portfolio Value - 350664.63\n", + "2020-01-22 00:00:00: Portfolio Value - 350850.28\n", + "2020-01-23 00:00:00: Portfolio Value - 351818.08\n", + "2020-01-24 00:00:00: Portfolio Value - 349425.68\n", + "2020-01-27 00:00:00: Portfolio Value - 345227.66\n", + "2020-01-28 00:00:00: Portfolio Value - 348225.41\n", + "2020-01-29 00:00:00: Portfolio Value - 347594.36\n", + "2020-01-30 00:00:00: Portfolio Value - 349171.68\n", + "2020-01-31 00:00:00: Portfolio Value - 344755.83\n", + "2020-02-03 00:00:00: Portfolio Value - 347424.60\n", + "2020-02-04 00:00:00: Portfolio Value - 351936.35\n", + "2020-02-05 00:00:00: Portfolio Value - 355473.73\n", + "2020-02-06 00:00:00: Portfolio Value - 356365.86\n", + "2020-02-07 00:00:00: Portfolio Value - 353552.67\n", + "2020-02-10 00:00:00: Portfolio Value - 355735.18\n", + "2020-02-11 00:00:00: Portfolio Value - 358051.45\n", + "2020-02-12 00:00:00: Portfolio Value - 360730.12\n", + "2020-02-13 00:00:00: Portfolio Value - 361291.93\n", + "2020-02-14 00:00:00: Portfolio Value - 362901.35\n", + "2020-02-18 00:00:00: Portfolio Value - 363524.48\n", + "2020-02-19 00:00:00: Portfolio Value - 365271.59\n", + "2020-02-20 00:00:00: Portfolio Value - 366808.52\n", + "2020-02-21 00:00:00: Portfolio Value - 362834.77\n", + "2020-02-24 00:00:00: Portfolio Value - 354199.06\n", + "2020-02-25 00:00:00: Portfolio Value - 346932.71\n", + "2020-02-26 00:00:00: Portfolio Value - 345296.87\n", + "2020-02-27 00:00:00: Portfolio Value - 333642.72\n", + "2020-02-28 00:00:00: Portfolio Value - 328306.61\n", + "2020-03-02 00:00:00: Portfolio Value - 342128.64\n", + "2020-03-03 00:00:00: Portfolio Value - 334913.77\n", + "2020-03-04 00:00:00: Portfolio Value - 348385.56\n", + "2020-03-05 00:00:00: Portfolio Value - 339144.55\n", + "2020-03-06 00:00:00: Portfolio Value - 335154.21\n", + "2020-03-09 00:00:00: Portfolio Value - 315596.38\n", + "2020-03-10 00:00:00: Portfolio Value - 326891.76\n", + "2020-03-11 00:00:00: Portfolio Value - 312492.24\n", + "2020-03-12 00:00:00: Portfolio Value - 287206.68\n", + "2020-03-13 00:00:00: Portfolio Value - 305827.59\n", + "2020-03-16 00:00:00: Portfolio Value - 276052.99\n", + "2020-03-17 00:00:00: Portfolio Value - 293088.63\n", + "2020-03-18 00:00:00: Portfolio Value - 279454.01\n", + "2020-03-19 00:00:00: Portfolio Value - 279825.03\n", + "2020-03-20 00:00:00: Portfolio Value - 268838.93\n", + "2020-03-23 00:00:00: Portfolio Value - 264694.74\n", + "2020-03-24 00:00:00: Portfolio Value - 284421.79\n", + "2020-03-25 00:00:00: Portfolio Value - 285765.52\n", + "2020-03-26 00:00:00: Portfolio Value - 301117.92\n", + "2020-03-27 00:00:00: Portfolio Value - 294280.72\n", + "2020-03-30 00:00:00: Portfolio Value - 303588.41\n", + "2020-03-31 00:00:00: Portfolio Value - 298683.69\n", + "2020-04-01 00:00:00: Portfolio Value - 288971.84\n", + "2020-04-02 00:00:00: Portfolio Value - 294971.84\n", + "2020-04-03 00:00:00: Portfolio Value - 290934.38\n", + "2020-04-06 00:00:00: Portfolio Value - 309094.53\n", + "2020-04-07 00:00:00: Portfolio Value - 307250.30\n", + "2020-04-08 00:00:00: Portfolio Value - 316821.64\n", + "2020-04-09 00:00:00: Portfolio Value - 321589.55\n", + "2020-04-13 00:00:00: Portfolio Value - 318854.09\n", + "2020-04-14 00:00:00: Portfolio Value - 327567.60\n", + "2020-04-15 00:00:00: Portfolio Value - 323096.18\n", + "2020-04-16 00:00:00: Portfolio Value - 327174.51\n", + "2020-04-17 00:00:00: Portfolio Value - 335305.05\n", + "2020-04-20 00:00:00: Portfolio Value - 331733.07\n", + "2020-04-21 00:00:00: Portfolio Value - 322800.53\n", + "2020-04-22 00:00:00: Portfolio Value - 328502.55\n", + "2020-04-23 00:00:00: Portfolio Value - 327343.72\n", + "2020-04-24 00:00:00: Portfolio Value - 330039.32\n", + "2020-04-27 00:00:00: Portfolio Value - 332455.58\n", + "2020-04-28 00:00:00: Portfolio Value - 329689.61\n", + "2020-04-29 00:00:00: Portfolio Value - 334355.63\n", + "2020-04-30 00:00:00: Portfolio Value - 331052.83\n", + "2020-05-01 00:00:00: Portfolio Value - 324897.73\n", + "2020-05-04 00:00:00: Portfolio Value - 327463.32\n", + "2020-05-05 00:00:00: Portfolio Value - 332387.99\n", + "2020-05-06 00:00:00: Portfolio Value - 329732.10\n", + "2020-05-07 00:00:00: Portfolio Value - 333582.67\n", + "2020-05-08 00:00:00: Portfolio Value - 337809.01\n", + "2020-05-11 00:00:00: Portfolio Value - 340803.22\n", + "2020-05-12 00:00:00: Portfolio Value - 334794.72\n", + "2020-05-13 00:00:00: Portfolio Value - 329977.11\n", + "2020-05-14 00:00:00: Portfolio Value - 331776.95\n", + "2020-05-15 00:00:00: Portfolio Value - 333815.08\n", + "2020-05-18 00:00:00: Portfolio Value - 340553.59\n", + "2020-05-19 00:00:00: Portfolio Value - 337064.67\n", + "2020-05-20 00:00:00: Portfolio Value - 340609.15\n", + "2020-05-21 00:00:00: Portfolio Value - 337832.77\n", + "2020-05-22 00:00:00: Portfolio Value - 338441.11\n", + "2020-05-26 00:00:00: Portfolio Value - 338969.50\n", + "2020-05-27 00:00:00: Portfolio Value - 342809.24\n", + "2020-05-28 00:00:00: Portfolio Value - 344514.09\n", + "2020-05-29 00:00:00: Portfolio Value - 349661.50\n", + "2020-06-01 00:00:00: Portfolio Value - 351220.15\n", + "2020-06-02 00:00:00: Portfolio Value - 353961.75\n", + "2020-06-03 00:00:00: Portfolio Value - 356478.00\n", + "2020-06-04 00:00:00: Portfolio Value - 353356.06\n", + "2020-06-05 00:00:00: Portfolio Value - 359752.67\n", + "2020-06-08 00:00:00: Portfolio Value - 364011.04\n", + "2020-06-09 00:00:00: Portfolio Value - 360516.83\n", + "2020-06-10 00:00:00: Portfolio Value - 359780.71\n", + "2020-06-11 00:00:00: Portfolio Value - 342661.20\n", + "2020-06-12 00:00:00: Portfolio Value - 345344.14\n", + "2020-06-15 00:00:00: Portfolio Value - 348676.37\n", + "2020-06-16 00:00:00: Portfolio Value - 353274.67\n", + "2020-06-17 00:00:00: Portfolio Value - 353910.22\n", + "2020-06-18 00:00:00: Portfolio Value - 353511.10\n", + "2020-06-19 00:00:00: Portfolio Value - 353897.78\n", + "2020-06-22 00:00:00: Portfolio Value - 354932.47\n", + "2020-06-23 00:00:00: Portfolio Value - 354613.47\n", + "2020-06-24 00:00:00: Portfolio Value - 346608.45\n", + "2020-06-25 00:00:00: Portfolio Value - 350005.04\n", + "2020-06-26 00:00:00: Portfolio Value - 343902.89\n", + "2020-06-29 00:00:00: Portfolio Value - 348059.86\n", + "2020-06-30 00:00:00: Portfolio Value - 353506.53\n", + "2020-07-01 00:00:00: Portfolio Value - 354407.99\n", + "2020-07-02 00:00:00: Portfolio Value - 356512.66\n", + "2020-07-06 00:00:00: Portfolio Value - 360982.83\n", + "2020-07-07 00:00:00: Portfolio Value - 358701.85\n", + "2020-07-08 00:00:00: Portfolio Value - 361882.68\n", + "2020-07-09 00:00:00: Portfolio Value - 360466.02\n", + "2020-07-10 00:00:00: Portfolio Value - 363935.89\n", + "2020-07-13 00:00:00: Portfolio Value - 360001.40\n", + "2020-07-14 00:00:00: Portfolio Value - 366628.02\n", + "2020-07-15 00:00:00: Portfolio Value - 371086.41\n", + "2020-07-16 00:00:00: Portfolio Value - 369542.55\n", + "2020-07-17 00:00:00: Portfolio Value - 370754.75\n", + "2020-07-20 00:00:00: Portfolio Value - 372370.91\n", + "2020-07-21 00:00:00: Portfolio Value - 372347.83\n", + "2020-07-22 00:00:00: Portfolio Value - 374121.43\n", + "2020-07-23 00:00:00: Portfolio Value - 370923.19\n", + "2020-07-24 00:00:00: Portfolio Value - 368759.47\n", + "2020-07-27 00:00:00: Portfolio Value - 372423.73\n", + "2020-07-28 00:00:00: Portfolio Value - 369349.49\n", + "2020-07-29 00:00:00: Portfolio Value - 371609.59\n", + "2020-07-30 00:00:00: Portfolio Value - 369739.17\n", + "2020-07-31 00:00:00: Portfolio Value - 369242.29\n", + "2020-08-03 00:00:00: Portfolio Value - 371678.21\n", + "2020-08-04 00:00:00: Portfolio Value - 374122.41\n", + "2020-08-05 00:00:00: Portfolio Value - 375021.76\n", + "2020-08-06 00:00:00: Portfolio Value - 374154.24\n", + "2020-08-07 00:00:00: Portfolio Value - 374587.39\n", + "2020-08-10 00:00:00: Portfolio Value - 374069.96\n", + "2020-08-11 00:00:00: Portfolio Value - 369765.00\n", + "2020-08-12 00:00:00: Portfolio Value - 374379.92\n", + "2020-08-13 00:00:00: Portfolio Value - 375612.65\n", + "2020-08-14 00:00:00: Portfolio Value - 374984.45\n", + "2020-08-17 00:00:00: Portfolio Value - 377320.85\n", + "2020-08-18 00:00:00: Portfolio Value - 377410.83\n", + "2020-08-19 00:00:00: Portfolio Value - 375917.57\n", + "2020-08-20 00:00:00: Portfolio Value - 374883.60\n", + "2020-08-21 00:00:00: Portfolio Value - 374053.52\n", + "2020-08-24 00:00:00: Portfolio Value - 375436.80\n", + "2020-08-25 00:00:00: Portfolio Value - 376962.77\n", + "2020-08-26 00:00:00: Portfolio Value - 379412.06\n", + "2020-08-27 00:00:00: Portfolio Value - 380215.50\n", + "2020-08-28 00:00:00: Portfolio Value - 380932.87\n", + "2020-08-31 00:00:00: Portfolio Value - 380895.53\n", + "2020-09-01 00:00:00: Portfolio Value - 381747.07\n", + "2020-09-02 00:00:00: Portfolio Value - 388402.66\n", + "2020-09-03 00:00:00: Portfolio Value - 376854.31\n", + "2020-09-04 00:00:00: Portfolio Value - 373135.01\n", + "2020-09-08 00:00:00: Portfolio Value - 366797.87\n", + "2020-09-09 00:00:00: Portfolio Value - 371647.77\n", + "2020-09-10 00:00:00: Portfolio Value - 366608.39\n", + "2020-09-11 00:00:00: Portfolio Value - 366397.91\n", + "2020-09-14 00:00:00: Portfolio Value - 370521.85\n", + "2020-09-15 00:00:00: Portfolio Value - 372638.04\n", + "2020-09-16 00:00:00: Portfolio Value - 371590.79\n", + "2020-09-17 00:00:00: Portfolio Value - 368804.49\n", + "2020-09-18 00:00:00: Portfolio Value - 366179.44\n", + "2020-09-21 00:00:00: Portfolio Value - 364050.43\n", + "2020-09-22 00:00:00: Portfolio Value - 367272.63\n", + "2020-09-23 00:00:00: Portfolio Value - 361674.67\n", + "2020-09-24 00:00:00: Portfolio Value - 361716.74\n", + "2020-09-25 00:00:00: Portfolio Value - 366629.98\n", + "2020-09-28 00:00:00: Portfolio Value - 371329.44\n", + "2020-09-29 00:00:00: Portfolio Value - 370669.67\n", + "2020-09-30 00:00:00: Portfolio Value - 373230.36\n", + "2020-10-01 00:00:00: Portfolio Value - 375957.88\n", + "2020-10-02 00:00:00: Portfolio Value - 373764.50\n", + "2020-10-05 00:00:00: Portfolio Value - 380152.81\n", + "2020-10-06 00:00:00: Portfolio Value - 376322.67\n", + "2020-10-07 00:00:00: Portfolio Value - 382307.22\n", + "2020-10-08 00:00:00: Portfolio Value - 384188.85\n", + "2020-10-09 00:00:00: Portfolio Value - 386252.62\n", + "2020-10-12 00:00:00: Portfolio Value - 389376.53\n", + "2020-10-13 00:00:00: Portfolio Value - 389811.53\n", + "2020-10-14 00:00:00: Portfolio Value - 387371.59\n", + "2020-10-15 00:00:00: Portfolio Value - 387227.14\n", + "2020-10-16 00:00:00: Portfolio Value - 388007.43\n", + "2020-10-19 00:00:00: Portfolio Value - 382502.54\n", + "2020-10-20 00:00:00: Portfolio Value - 382218.26\n", + "2020-10-21 00:00:00: Portfolio Value - 379314.07\n", + "2020-10-22 00:00:00: Portfolio Value - 385562.44\n", + "2020-10-23 00:00:00: Portfolio Value - 387761.38\n", + "2020-10-26 00:00:00: Portfolio Value - 383361.29\n", + "2020-10-27 00:00:00: Portfolio Value - 381237.50\n", + "2020-10-28 00:00:00: Portfolio Value - 371421.15\n", + "2020-10-29 00:00:00: Portfolio Value - 372195.88\n", + "2020-10-30 00:00:00: Portfolio Value - 368523.58\n", + "2020-11-02 00:00:00: Portfolio Value - 374118.54\n", + "2020-11-03 00:00:00: Portfolio Value - 380609.89\n", + "2020-11-04 00:00:00: Portfolio Value - 386353.34\n", + "2020-11-05 00:00:00: Portfolio Value - 392530.96\n", + "2020-11-06 00:00:00: Portfolio Value - 393238.58\n", + "2020-11-09 00:00:00: Portfolio Value - 392440.16\n", + "2020-11-10 00:00:00: Portfolio Value - 393493.09\n", + "2020-11-11 00:00:00: Portfolio Value - 396506.17\n", + "2020-11-12 00:00:00: Portfolio Value - 391961.19\n", + "2020-11-13 00:00:00: Portfolio Value - 395972.28\n", + "2020-11-16 00:00:00: Portfolio Value - 399323.61\n", + "2020-11-17 00:00:00: Portfolio Value - 397242.62\n", + "2020-11-18 00:00:00: Portfolio Value - 393513.41\n", + "2020-11-19 00:00:00: Portfolio Value - 394694.84\n", + "2020-11-20 00:00:00: Portfolio Value - 394210.40\n", + "2020-11-23 00:00:00: Portfolio Value - 397304.74\n", + "2020-11-24 00:00:00: Portfolio Value - 399405.39\n", + "2020-11-25 00:00:00: Portfolio Value - 399064.00\n", + "2020-11-27 00:00:00: Portfolio Value - 400645.91\n", + "2020-11-30 00:00:00: Portfolio Value - 400544.29\n", + "2020-12-01 00:00:00: Portfolio Value - 404718.89\n", + "2020-12-02 00:00:00: Portfolio Value - 403763.70\n", + "2020-12-03 00:00:00: Portfolio Value - 404120.39\n", + "2020-12-04 00:00:00: Portfolio Value - 406460.37\n", + "2020-12-07 00:00:00: Portfolio Value - 405032.75\n", + "2020-12-08 00:00:00: Portfolio Value - 406180.74\n", + "2020-12-09 00:00:00: Portfolio Value - 403548.55\n", + "2020-12-10 00:00:00: Portfolio Value - 403639.83\n", + "2020-12-11 00:00:00: Portfolio Value - 401276.74\n", + "2020-12-14 00:00:00: Portfolio Value - 402729.26\n", + "2020-12-15 00:00:00: Portfolio Value - 406578.67\n", + "2020-12-16 00:00:00: Portfolio Value - 406749.41\n", + "2020-12-17 00:00:00: Portfolio Value - 411716.23\n", + "2020-12-18 00:00:00: Portfolio Value - 411630.89\n", + "2020-12-21 00:00:00: Portfolio Value - 409575.68\n", + "2020-12-22 00:00:00: Portfolio Value - 408723.19\n", + "2020-12-23 00:00:00: Portfolio Value - 408470.13\n", + "2020-12-24 00:00:00: Portfolio Value - 408667.32\n", + "2020-12-28 00:00:00: Portfolio Value - 409473.13\n", + "2020-12-29 00:00:00: Portfolio Value - 408633.11\n", + "2020-12-30 00:00:00: Portfolio Value - 409315.46\n", + "2020-12-31 00:00:00: Portfolio Value - 413133.10\n", + "2021-01-04 00:00:00: Portfolio Value - 407634.89\n", + "2021-01-05 00:00:00: Portfolio Value - 409962.98\n", + "2021-01-06 00:00:00: Portfolio Value - 412631.59\n", + "2021-01-07 00:00:00: Portfolio Value - 417083.47\n", + "2021-01-08 00:00:00: Portfolio Value - 419539.02\n", + "2021-01-11 00:00:00: Portfolio Value - 417366.67\n", + "2021-01-12 00:00:00: Portfolio Value - 417147.17\n", + "2021-01-13 00:00:00: Portfolio Value - 417636.47\n", + "2021-01-14 00:00:00: Portfolio Value - 416625.79\n", + "2021-01-15 00:00:00: Portfolio Value - 416421.07\n", + "2021-01-19 00:00:00: Portfolio Value - 417611.33\n", + "2021-01-20 00:00:00: Portfolio Value - 424797.96\n", + "2021-01-21 00:00:00: Portfolio Value - 422382.88\n", + "2021-01-22 00:00:00: Portfolio Value - 420474.12\n", + "2021-01-25 00:00:00: Portfolio Value - 421400.53\n", + "2021-01-26 00:00:00: Portfolio Value - 420652.36\n", + "2021-01-27 00:00:00: Portfolio Value - 410218.66\n", + "2021-01-28 00:00:00: Portfolio Value - 413296.50\n", + "2021-01-29 00:00:00: Portfolio Value - 407513.26\n", + "2021-02-01 00:00:00: Portfolio Value - 411782.04\n", + "2021-02-02 00:00:00: Portfolio Value - 416641.06\n", + "2021-02-03 00:00:00: Portfolio Value - 414303.66\n", + "2021-02-04 00:00:00: Portfolio Value - 421095.17\n", + "2021-02-05 00:00:00: Portfolio Value - 424263.75\n", + "2021-02-08 00:00:00: Portfolio Value - 426853.07\n", + "2021-02-09 00:00:00: Portfolio Value - 426813.36\n", + "2021-02-10 00:00:00: Portfolio Value - 426081.75\n", + "2021-02-11 00:00:00: Portfolio Value - 426991.87\n", + "2021-02-12 00:00:00: Portfolio Value - 428157.83\n", + "2021-02-16 00:00:00: Portfolio Value - 426405.97\n", + "2021-02-17 00:00:00: Portfolio Value - 426766.42\n", + "2021-02-18 00:00:00: Portfolio Value - 425054.71\n", + "2021-02-19 00:00:00: Portfolio Value - 424231.90\n", + "2021-02-22 00:00:00: Portfolio Value - 420436.20\n", + "2021-02-23 00:00:00: Portfolio Value - 422173.85\n", + "2021-02-24 00:00:00: Portfolio Value - 424179.03\n", + "2021-02-25 00:00:00: Portfolio Value - 416255.96\n", + "2021-02-26 00:00:00: Portfolio Value - 414949.87\n", + "2021-03-01 00:00:00: Portfolio Value - 421499.73\n", + "2021-03-02 00:00:00: Portfolio Value - 419130.28\n", + "2021-03-03 00:00:00: Portfolio Value - 411728.22\n", + "2021-03-04 00:00:00: Portfolio Value - 404955.47\n", + "2021-03-05 00:00:00: Portfolio Value - 412728.15\n", + "2021-03-08 00:00:00: Portfolio Value - 410128.01\n", + "2021-03-09 00:00:00: Portfolio Value - 414560.97\n", + "2021-03-10 00:00:00: Portfolio Value - 416424.83\n", + "2021-03-11 00:00:00: Portfolio Value - 421126.54\n", + "2021-03-12 00:00:00: Portfolio Value - 421781.83\n", + "2021-03-15 00:00:00: Portfolio Value - 426107.05\n", + "2021-03-16 00:00:00: Portfolio Value - 423482.57\n", + "2021-03-17 00:00:00: Portfolio Value - 424829.87\n", + "2021-03-18 00:00:00: Portfolio Value - 417603.96\n", + "2021-03-19 00:00:00: Portfolio Value - 419680.82\n", + "2021-03-22 00:00:00: Portfolio Value - 422789.33\n", + "2021-03-23 00:00:00: Portfolio Value - 420246.84\n", + "2021-03-24 00:00:00: Portfolio Value - 416834.66\n", + "2021-03-25 00:00:00: Portfolio Value - 419203.93\n", + "2021-03-26 00:00:00: Portfolio Value - 425965.82\n", + "2021-03-29 00:00:00: Portfolio Value - 425885.37\n", + "2021-03-30 00:00:00: Portfolio Value - 425457.30\n", + "2021-03-31 00:00:00: Portfolio Value - 426090.19\n", + "2021-04-01 00:00:00: Portfolio Value - 429437.41\n", + "2021-04-05 00:00:00: Portfolio Value - 433681.66\n", + "2021-04-06 00:00:00: Portfolio Value - 435000.18\n", + "2021-04-07 00:00:00: Portfolio Value - 433978.54\n", + "2021-04-08 00:00:00: Portfolio Value - 436751.22\n", + "2021-04-09 00:00:00: Portfolio Value - 438899.30\n", + "2021-04-12 00:00:00: Portfolio Value - 439768.27\n", + "2021-04-13 00:00:00: Portfolio Value - 440590.04\n", + "2021-04-14 00:00:00: Portfolio Value - 439752.18\n", + "2021-04-15 00:00:00: Portfolio Value - 444338.16\n", + "2021-04-16 00:00:00: Portfolio Value - 446852.62\n", + "2021-04-19 00:00:00: Portfolio Value - 444927.99\n", + "2021-04-20 00:00:00: Portfolio Value - 443187.31\n", + "2021-04-21 00:00:00: Portfolio Value - 445812.85\n", + "2021-04-22 00:00:00: Portfolio Value - 444057.52\n", + "2021-04-23 00:00:00: Portfolio Value - 447399.75\n", + "2021-04-26 00:00:00: Portfolio Value - 448105.18\n", + "2021-04-27 00:00:00: Portfolio Value - 448223.47\n", + "2021-04-28 00:00:00: Portfolio Value - 446577.23\n", + "2021-04-29 00:00:00: Portfolio Value - 449054.37\n", + "2021-04-30 00:00:00: Portfolio Value - 445733.46\n", + "2021-05-03 00:00:00: Portfolio Value - 447628.21\n", + "2021-05-04 00:00:00: Portfolio Value - 444319.12\n", + "2021-05-05 00:00:00: Portfolio Value - 443544.64\n", + "2021-05-06 00:00:00: Portfolio Value - 445365.75\n", + "2021-05-07 00:00:00: Portfolio Value - 448172.54\n", + "2021-05-10 00:00:00: Portfolio Value - 444866.03\n", + "2021-05-11 00:00:00: Portfolio Value - 440309.00\n", + "2021-05-12 00:00:00: Portfolio Value - 432168.23\n", + "2021-05-13 00:00:00: Portfolio Value - 436909.12\n", + "2021-05-14 00:00:00: Portfolio Value - 443153.23\n", + "2021-05-17 00:00:00: Portfolio Value - 442250.47\n", + "2021-05-18 00:00:00: Portfolio Value - 440016.83\n", + "2021-05-19 00:00:00: Portfolio Value - 438348.15\n", + "2021-05-20 00:00:00: Portfolio Value - 443294.62\n", + "2021-05-21 00:00:00: Portfolio Value - 442998.89\n", + "2021-05-24 00:00:00: Portfolio Value - 445461.96\n", + "2021-05-25 00:00:00: Portfolio Value - 444511.29\n", + "2021-05-26 00:00:00: Portfolio Value - 445900.08\n", + "2021-05-27 00:00:00: Portfolio Value - 447932.65\n", + "2021-05-28 00:00:00: Portfolio Value - 448359.47\n", + "2021-06-01 00:00:00: Portfolio Value - 447780.22\n", + "2021-06-02 00:00:00: Portfolio Value - 447471.78\n", + "2021-06-03 00:00:00: Portfolio Value - 446291.39\n", + "2021-06-04 00:00:00: Portfolio Value - 449570.94\n", + "2021-06-07 00:00:00: Portfolio Value - 449779.56\n", + "2021-06-08 00:00:00: Portfolio Value - 450091.55\n", + "2021-06-09 00:00:00: Portfolio Value - 449392.13\n", + "2021-06-10 00:00:00: Portfolio Value - 453309.25\n", + "2021-06-11 00:00:00: Portfolio Value - 454026.35\n", + "2021-06-14 00:00:00: Portfolio Value - 454419.34\n", + "2021-06-15 00:00:00: Portfolio Value - 453616.71\n", + "2021-06-16 00:00:00: Portfolio Value - 451282.53\n", + "2021-06-17 00:00:00: Portfolio Value - 452403.44\n", + "2021-06-18 00:00:00: Portfolio Value - 447613.55\n", + "2021-06-21 00:00:00: Portfolio Value - 453106.16\n", + "2021-06-22 00:00:00: Portfolio Value - 454623.32\n", + "2021-06-23 00:00:00: Portfolio Value - 454529.78\n", + "2021-06-24 00:00:00: Portfolio Value - 458736.37\n", + "2021-06-25 00:00:00: Portfolio Value - 460953.79\n", + "2021-06-28 00:00:00: Portfolio Value - 461178.06\n", + "2021-06-29 00:00:00: Portfolio Value - 461467.97\n", + "2021-06-30 00:00:00: Portfolio Value - 461643.05\n", + "2021-07-01 00:00:00: Portfolio Value - 464187.95\n", + "2021-07-02 00:00:00: Portfolio Value - 466717.29\n", + "2021-07-06 00:00:00: Portfolio Value - 465108.01\n", + "2021-07-07 00:00:00: Portfolio Value - 466907.51\n", + "2021-07-08 00:00:00: Portfolio Value - 463139.73\n", + "2021-07-09 00:00:00: Portfolio Value - 467584.39\n", + "2021-07-12 00:00:00: Portfolio Value - 467944.19\n", + "2021-07-13 00:00:00: Portfolio Value - 466207.52\n", + "2021-07-14 00:00:00: Portfolio Value - 466170.80\n", + "2021-07-15 00:00:00: Portfolio Value - 465403.95\n", + "2021-07-16 00:00:00: Portfolio Value - 463497.24\n", + "2021-07-19 00:00:00: Portfolio Value - 458442.09\n", + "2021-07-20 00:00:00: Portfolio Value - 464355.00\n", + "2021-07-21 00:00:00: Portfolio Value - 465762.00\n", + "2021-07-22 00:00:00: Portfolio Value - 469402.50\n", + "2021-07-23 00:00:00: Portfolio Value - 473240.20\n", + "2021-07-26 00:00:00: Portfolio Value - 473509.63\n", + "2021-07-27 00:00:00: Portfolio Value - 474041.14\n", + "2021-07-28 00:00:00: Portfolio Value - 474074.94\n", + "2021-07-29 00:00:00: Portfolio Value - 477962.75\n", + "2021-07-30 00:00:00: Portfolio Value - 478928.66\n", + "2021-08-02 00:00:00: Portfolio Value - 480212.37\n", + "2021-08-03 00:00:00: Portfolio Value - 483383.38\n", + "2021-08-04 00:00:00: Portfolio Value - 481071.49\n", + "2021-08-05 00:00:00: Portfolio Value - 484100.93\n", + "2021-08-06 00:00:00: Portfolio Value - 484613.39\n", + "2021-08-09 00:00:00: Portfolio Value - 484570.96\n", + "2021-08-10 00:00:00: Portfolio Value - 484503.32\n", + "2021-08-11 00:00:00: Portfolio Value - 486065.90\n", + "2021-08-12 00:00:00: Portfolio Value - 487734.89\n", + "2021-08-13 00:00:00: Portfolio Value - 488942.61\n", + "2021-08-16 00:00:00: Portfolio Value - 490747.21\n", + "2021-08-17 00:00:00: Portfolio Value - 490365.12\n", + "2021-08-18 00:00:00: Portfolio Value - 485038.89\n", + "2021-08-19 00:00:00: Portfolio Value - 487091.48\n", + "2021-08-20 00:00:00: Portfolio Value - 490306.83\n", + "2021-08-23 00:00:00: Portfolio Value - 492189.08\n", + "2021-08-24 00:00:00: Portfolio Value - 492833.33\n", + "2021-08-25 00:00:00: Portfolio Value - 495377.89\n", + "2021-08-26 00:00:00: Portfolio Value - 491910.30\n", + "2021-08-27 00:00:00: Portfolio Value - 494854.46\n", + "2021-08-30 00:00:00: Portfolio Value - 496933.00\n", + "2021-08-31 00:00:00: Portfolio Value - 496874.16\n", + "2021-09-01 00:00:00: Portfolio Value - 498654.81\n", + "2021-09-02 00:00:00: Portfolio Value - 500876.96\n", + "2021-09-03 00:00:00: Portfolio Value - 499992.90\n", + "2021-09-07 00:00:00: Portfolio Value - 497872.73\n", + "2021-09-08 00:00:00: Portfolio Value - 498849.08\n", + "2021-09-09 00:00:00: Portfolio Value - 497367.24\n", + "2021-09-10 00:00:00: Portfolio Value - 494602.50\n", + "2021-09-13 00:00:00: Portfolio Value - 493343.88\n", + "2021-09-14 00:00:00: Portfolio Value - 491053.28\n", + "2021-09-15 00:00:00: Portfolio Value - 492738.46\n", + "2021-09-16 00:00:00: Portfolio Value - 493911.17\n", + "2021-09-17 00:00:00: Portfolio Value - 491247.21\n", + "2021-09-20 00:00:00: Portfolio Value - 484959.01\n", + "2021-09-21 00:00:00: Portfolio Value - 485069.47\n", + "2021-09-22 00:00:00: Portfolio Value - 489372.77\n", + "2021-09-23 00:00:00: Portfolio Value - 492650.28\n", + "2021-09-24 00:00:00: Portfolio Value - 493184.17\n", + "2021-09-27 00:00:00: Portfolio Value - 489141.17\n", + "2021-09-28 00:00:00: Portfolio Value - 479776.98\n", + "2021-09-29 00:00:00: Portfolio Value - 482113.13\n", + "2021-09-30 00:00:00: Portfolio Value - 477186.23\n", + "2021-10-01 00:00:00: Portfolio Value - 479021.12\n", + "2021-10-04 00:00:00: Portfolio Value - 471766.63\n", + "2021-10-05 00:00:00: Portfolio Value - 477104.68\n", + "2021-10-06 00:00:00: Portfolio Value - 478528.81\n", + "2021-10-07 00:00:00: Portfolio Value - 482052.90\n", + "2021-10-08 00:00:00: Portfolio Value - 479768.71\n", + "2021-10-11 00:00:00: Portfolio Value - 477086.43\n", + "2021-10-12 00:00:00: Portfolio Value - 477478.66\n", + "2021-10-13 00:00:00: Portfolio Value - 478165.10\n", + "2021-10-14 00:00:00: Portfolio Value - 484348.51\n", + "2021-10-15 00:00:00: Portfolio Value - 483535.82\n", + "2021-10-18 00:00:00: Portfolio Value - 484406.02\n", + "2021-10-19 00:00:00: Portfolio Value - 486362.83\n", + "2021-10-20 00:00:00: Portfolio Value - 488049.25\n", + "2021-10-21 00:00:00: Portfolio Value - 492110.24\n", + "2021-10-22 00:00:00: Portfolio Value - 494141.09\n", + "2021-10-25 00:00:00: Portfolio Value - 494866.39\n", + "2021-10-26 00:00:00: Portfolio Value - 495307.61\n", + "2021-10-27 00:00:00: Portfolio Value - 493372.16\n", + "2021-10-28 00:00:00: Portfolio Value - 500647.68\n", + "2021-10-29 00:00:00: Portfolio Value - 504456.48\n", + "2021-11-01 00:00:00: Portfolio Value - 505720.43\n", + "2021-11-02 00:00:00: Portfolio Value - 506977.87\n", + "2021-11-03 00:00:00: Portfolio Value - 508128.07\n", + "2021-11-04 00:00:00: Portfolio Value - 508767.83\n", + "2021-11-05 00:00:00: Portfolio Value - 508331.73\n", + "2021-11-08 00:00:00: Portfolio Value - 508708.47\n", + "2021-11-09 00:00:00: Portfolio Value - 509954.66\n", + "2021-11-10 00:00:00: Portfolio Value - 506120.27\n", + "2021-11-11 00:00:00: Portfolio Value - 507328.98\n", + "2021-11-12 00:00:00: Portfolio Value - 510135.04\n", + "2021-11-15 00:00:00: Portfolio Value - 511642.44\n", + "2021-11-16 00:00:00: Portfolio Value - 514704.70\n", + "2021-11-17 00:00:00: Portfolio Value - 512329.11\n", + "2021-11-18 00:00:00: Portfolio Value - 510542.83\n", + "2021-11-19 00:00:00: Portfolio Value - 509920.27\n", + "2021-11-22 00:00:00: Portfolio Value - 507816.16\n", + "2021-11-23 00:00:00: Portfolio Value - 507005.55\n", + "2021-11-24 00:00:00: Portfolio Value - 507925.83\n", + "2021-11-26 00:00:00: Portfolio Value - 500324.58\n", + "2021-11-29 00:00:00: Portfolio Value - 503377.94\n", + "2021-11-30 00:00:00: Portfolio Value - 490328.92\n", + "2021-12-01 00:00:00: Portfolio Value - 484611.42\n", + "2021-12-02 00:00:00: Portfolio Value - 491585.16\n", + "2021-12-03 00:00:00: Portfolio Value - 486903.29\n", + "2021-12-06 00:00:00: Portfolio Value - 491916.53\n", + "2021-12-07 00:00:00: Portfolio Value - 501992.33\n", + "2021-12-08 00:00:00: Portfolio Value - 503237.92\n", + "2021-12-09 00:00:00: Portfolio Value - 498883.65\n", + "2021-12-10 00:00:00: Portfolio Value - 501079.90\n", + "2021-12-13 00:00:00: Portfolio Value - 497748.09\n", + "2021-12-14 00:00:00: Portfolio Value - 492985.35\n", + "2021-12-15 00:00:00: Portfolio Value - 498321.17\n", + "2021-12-16 00:00:00: Portfolio Value - 495126.77\n", + "2021-12-17 00:00:00: Portfolio Value - 491351.60\n", + "2021-12-20 00:00:00: Portfolio Value - 486284.38\n", + "2021-12-21 00:00:00: Portfolio Value - 494224.97\n", + "2021-12-22 00:00:00: Portfolio Value - 499122.29\n", + "2021-12-23 00:00:00: Portfolio Value - 502440.69\n", + "2021-12-27 00:00:00: Portfolio Value - 508025.03\n", + "2021-12-28 00:00:00: Portfolio Value - 507174.51\n", + "2021-12-29 00:00:00: Portfolio Value - 509466.90\n", + "2021-12-30 00:00:00: Portfolio Value - 508712.02\n", + "2021-12-31 00:00:00: Portfolio Value - 507680.76\n", + "2022-01-03 00:00:00: Portfolio Value - 505732.85\n", + "2022-01-04 00:00:00: Portfolio Value - 504554.44\n", + "2022-01-05 00:00:00: Portfolio Value - 492926.59\n", + "2022-01-06 00:00:00: Portfolio Value - 491683.84\n", + "2022-01-07 00:00:00: Portfolio Value - 487418.13\n", + "2022-01-10 00:00:00: Portfolio Value - 484401.48\n", + "2022-01-11 00:00:00: Portfolio Value - 487766.20\n", + "2022-01-12 00:00:00: Portfolio Value - 487582.47\n", + "2022-01-13 00:00:00: Portfolio Value - 481947.33\n", + "2022-01-14 00:00:00: Portfolio Value - 479520.46\n", + "2022-01-18 00:00:00: Portfolio Value - 470231.83\n", + "2022-01-19 00:00:00: Portfolio Value - 469571.09\n", + "2022-01-20 00:00:00: Portfolio Value - 464793.31\n", + "2022-01-21 00:00:00: Portfolio Value - 454757.77\n", + "2022-01-24 00:00:00: Portfolio Value - 458285.61\n", + "2022-01-25 00:00:00: Portfolio Value - 450182.21\n", + "2022-01-26 00:00:00: Portfolio Value - 446034.45\n", + "2022-01-27 00:00:00: Portfolio Value - 446403.35\n", + "2022-01-28 00:00:00: Portfolio Value - 455005.43\n", + "2022-01-31 00:00:00: Portfolio Value - 465174.82\n", + "2022-02-01 00:00:00: Portfolio Value - 469989.78\n", + "2022-02-02 00:00:00: Portfolio Value - 472375.27\n", + "2022-02-03 00:00:00: Portfolio Value - 466570.62\n", + "2022-02-04 00:00:00: Portfolio Value - 465920.81\n", + "2022-02-07 00:00:00: Portfolio Value - 465749.83\n", + "2022-02-08 00:00:00: Portfolio Value - 469124.39\n", + "2022-02-09 00:00:00: Portfolio Value - 476833.81\n", + "2022-02-10 00:00:00: Portfolio Value - 469277.54\n", + "2022-02-11 00:00:00: Portfolio Value - 463131.08\n", + "2022-02-14 00:00:00: Portfolio Value - 459777.83\n", + "2022-02-15 00:00:00: Portfolio Value - 466519.38\n", + "2022-02-16 00:00:00: Portfolio Value - 465835.49\n", + "2022-02-17 00:00:00: Portfolio Value - 458094.64\n", + "2022-02-18 00:00:00: Portfolio Value - 456860.48\n", + "2022-02-22 00:00:00: Portfolio Value - 452408.29\n", + "2022-02-23 00:00:00: Portfolio Value - 445543.79\n", + "2022-02-24 00:00:00: Portfolio Value - 452898.04\n", + "2022-02-25 00:00:00: Portfolio Value - 462760.74\n", + "2022-02-28 00:00:00: Portfolio Value - 461181.37\n", + "2022-03-01 00:00:00: Portfolio Value - 456011.71\n", + "2022-03-02 00:00:00: Portfolio Value - 463025.01\n", + "2022-03-03 00:00:00: Portfolio Value - 460031.10\n", + "2022-03-04 00:00:00: Portfolio Value - 458774.24\n", + "2022-03-07 00:00:00: Portfolio Value - 447587.42\n", + "2022-03-08 00:00:00: Portfolio Value - 440732.82\n", + "2022-03-09 00:00:00: Portfolio Value - 449769.11\n", + "2022-03-10 00:00:00: Portfolio Value - 447876.26\n", + "2022-03-11 00:00:00: Portfolio Value - 442362.89\n", + "2022-03-14 00:00:00: Portfolio Value - 439201.02\n", + "2022-03-15 00:00:00: Portfolio Value - 447873.86\n", + "2022-03-16 00:00:00: Portfolio Value - 458418.85\n", + "2022-03-17 00:00:00: Portfolio Value - 464370.92\n", + "2022-03-18 00:00:00: Portfolio Value - 469409.97\n", + "2022-03-21 00:00:00: Portfolio Value - 466879.26\n", + "2022-03-22 00:00:00: Portfolio Value - 470229.47\n", + "2022-03-23 00:00:00: Portfolio Value - 462308.39\n", + "2022-03-24 00:00:00: Portfolio Value - 467278.04\n", + "2022-03-25 00:00:00: Portfolio Value - 469217.02\n", + "2022-03-28 00:00:00: Portfolio Value - 473612.29\n", + "2022-03-29 00:00:00: Portfolio Value - 480614.31\n", + "2022-03-30 00:00:00: Portfolio Value - 479909.26\n", + "2022-03-31 00:00:00: Portfolio Value - 475651.41\n", + "2022-04-01 00:00:00: Portfolio Value - 479216.39\n", + "2022-04-04 00:00:00: Portfolio Value - 480075.66\n", + "2022-04-05 00:00:00: Portfolio Value - 477521.78\n", + "2022-04-06 00:00:00: Portfolio Value - 476686.64\n", + "2022-04-07 00:00:00: Portfolio Value - 480182.63\n", + "2022-04-08 00:00:00: Portfolio Value - 479628.54\n", + "2022-04-11 00:00:00: Portfolio Value - 473130.22\n", + "2022-04-12 00:00:00: Portfolio Value - 472042.66\n", + "2022-04-13 00:00:00: Portfolio Value - 477714.35\n", + "2022-04-14 00:00:00: Portfolio Value - 475351.65\n", + "2022-04-18 00:00:00: Portfolio Value - 472207.57\n", + "2022-04-19 00:00:00: Portfolio Value - 481594.97\n", + "2022-04-20 00:00:00: Portfolio Value - 479978.72\n", + "2022-04-21 00:00:00: Portfolio Value - 471895.60\n", + "2022-04-22 00:00:00: Portfolio Value - 457829.62\n", + "2022-04-25 00:00:00: Portfolio Value - 459312.67\n", + "2022-04-26 00:00:00: Portfolio Value - 447132.36\n", + "2022-04-27 00:00:00: Portfolio Value - 447158.95\n", + "2022-04-28 00:00:00: Portfolio Value - 451776.98\n", + "2022-04-29 00:00:00: Portfolio Value - 437618.51\n", + "2022-05-02 00:00:00: Portfolio Value - 439151.73\n", + "2022-05-03 00:00:00: Portfolio Value - 440323.11\n", + "2022-05-04 00:00:00: Portfolio Value - 449750.93\n", + "2022-05-05 00:00:00: Portfolio Value - 436115.99\n", + "2022-05-06 00:00:00: Portfolio Value - 430875.81\n", + "2022-05-09 00:00:00: Portfolio Value - 418775.91\n", + "2022-05-10 00:00:00: Portfolio Value - 419320.51\n", + "2022-05-11 00:00:00: Portfolio Value - 414178.50\n", + "2022-05-12 00:00:00: Portfolio Value - 416251.86\n", + "2022-05-13 00:00:00: Portfolio Value - 426197.05\n", + "2022-05-16 00:00:00: Portfolio Value - 425522.85\n", + "2022-05-17 00:00:00: Portfolio Value - 430748.36\n", + "2022-05-18 00:00:00: Portfolio Value - 412795.32\n", + "2022-05-19 00:00:00: Portfolio Value - 412267.54\n", + "2022-05-20 00:00:00: Portfolio Value - 412945.91\n", + "2022-05-23 00:00:00: Portfolio Value - 418746.98\n", + "2022-05-24 00:00:00: Portfolio Value - 417725.49\n", + "2022-05-25 00:00:00: Portfolio Value - 420874.52\n", + "2022-05-26 00:00:00: Portfolio Value - 429933.47\n", + "2022-05-27 00:00:00: Portfolio Value - 440209.45\n", + "2022-05-31 00:00:00: Portfolio Value - 434400.36\n", + "2022-06-01 00:00:00: Portfolio Value - 428613.35\n", + "2022-06-02 00:00:00: Portfolio Value - 436229.68\n", + "2022-06-03 00:00:00: Portfolio Value - 430963.13\n", + "2022-06-06 00:00:00: Portfolio Value - 431818.79\n", + "2022-06-07 00:00:00: Portfolio Value - 436587.02\n", + "2022-06-08 00:00:00: Portfolio Value - 432361.09\n", + "2022-06-09 00:00:00: Portfolio Value - 423517.80\n", + "2022-06-10 00:00:00: Portfolio Value - 414898.42\n", + "2022-06-13 00:00:00: Portfolio Value - 401132.41\n", + "2022-06-14 00:00:00: Portfolio Value - 398094.67\n", + "2022-06-15 00:00:00: Portfolio Value - 403119.85\n", + "2022-06-16 00:00:00: Portfolio Value - 392667.32\n", + "2022-06-17 00:00:00: Portfolio Value - 394393.73\n", + "2022-06-21 00:00:00: Portfolio Value - 401023.11\n", + "2022-06-22 00:00:00: Portfolio Value - 402452.12\n", + "2022-06-23 00:00:00: Portfolio Value - 409912.09\n", + "2022-06-24 00:00:00: Portfolio Value - 420731.98\n", + "2022-06-27 00:00:00: Portfolio Value - 419194.16\n", + "2022-06-28 00:00:00: Portfolio Value - 412258.22\n", + "2022-06-29 00:00:00: Portfolio Value - 413367.94\n", + "2022-06-30 00:00:00: Portfolio Value - 411319.65\n", + "2022-07-01 00:00:00: Portfolio Value - 416941.54\n", + "2022-07-05 00:00:00: Portfolio Value - 417195.02\n", + "2022-07-06 00:00:00: Portfolio Value - 418000.60\n", + "2022-07-07 00:00:00: Portfolio Value - 422402.72\n", + "2022-07-08 00:00:00: Portfolio Value - 422077.68\n", + "2022-07-11 00:00:00: Portfolio Value - 418444.53\n", + "2022-07-12 00:00:00: Portfolio Value - 414527.44\n", + "2022-07-13 00:00:00: Portfolio Value - 414124.61\n", + "2022-07-14 00:00:00: Portfolio Value - 413403.38\n", + "2022-07-15 00:00:00: Portfolio Value - 420161.82\n", + "2022-07-18 00:00:00: Portfolio Value - 416057.32\n", + "2022-07-19 00:00:00: Portfolio Value - 425362.40\n", + "2022-07-20 00:00:00: Portfolio Value - 427803.39\n", + "2022-07-21 00:00:00: Portfolio Value - 431759.63\n", + "2022-07-22 00:00:00: Portfolio Value - 428909.41\n", + "2022-07-25 00:00:00: Portfolio Value - 428568.43\n", + "2022-07-26 00:00:00: Portfolio Value - 425614.43\n", + "2022-07-27 00:00:00: Portfolio Value - 433384.84\n", + "2022-07-28 00:00:00: Portfolio Value - 440386.30\n", + "2022-07-29 00:00:00: Portfolio Value - 443463.97\n", + "2022-08-01 00:00:00: Portfolio Value - 442796.13\n", + "2022-08-02 00:00:00: Portfolio Value - 440792.94\n", + "2022-08-03 00:00:00: Portfolio Value - 444762.95\n", + "2022-08-04 00:00:00: Portfolio Value - 444299.01\n", + "2022-08-05 00:00:00: Portfolio Value - 444983.58\n", + "2022-08-08 00:00:00: Portfolio Value - 447080.72\n", + "2022-08-09 00:00:00: Portfolio Value - 443963.39\n", + "2022-08-10 00:00:00: Portfolio Value - 452756.26\n", + "2022-08-11 00:00:00: Portfolio Value - 451428.30\n", + "2022-08-12 00:00:00: Portfolio Value - 457487.60\n", + "2022-08-15 00:00:00: Portfolio Value - 460562.14\n", + "2022-08-16 00:00:00: Portfolio Value - 461812.83\n", + "2022-08-17 00:00:00: Portfolio Value - 458265.03\n", + "2022-08-18 00:00:00: Portfolio Value - 459633.70\n", + "2022-08-19 00:00:00: Portfolio Value - 454510.04\n", + "2022-08-22 00:00:00: Portfolio Value - 446954.41\n", + "2022-08-23 00:00:00: Portfolio Value - 443828.90\n", + "2022-08-24 00:00:00: Portfolio Value - 446831.35\n", + "2022-08-25 00:00:00: Portfolio Value - 452804.97\n", + "2022-08-26 00:00:00: Portfolio Value - 440240.55\n", + "2022-08-29 00:00:00: Portfolio Value - 438231.20\n", + "2022-08-30 00:00:00: Portfolio Value - 434481.06\n", + "2022-08-31 00:00:00: Portfolio Value - 431777.02\n", + "2022-09-01 00:00:00: Portfolio Value - 435120.31\n", + "2022-09-02 00:00:00: Portfolio Value - 430917.74\n", + "2022-09-06 00:00:00: Portfolio Value - 430820.59\n", + "2022-09-07 00:00:00: Portfolio Value - 441406.36\n", + "2022-09-08 00:00:00: Portfolio Value - 448725.29\n", + "2022-09-09 00:00:00: Portfolio Value - 453886.07\n", + "2022-09-12 00:00:00: Portfolio Value - 456118.80\n", + "2022-09-13 00:00:00: Portfolio Value - 440360.05\n", + "2022-09-14 00:00:00: Portfolio Value - 440293.93\n", + "2022-09-15 00:00:00: Portfolio Value - 438626.86\n", + "2022-09-16 00:00:00: Portfolio Value - 436744.25\n", + "2022-09-19 00:00:00: Portfolio Value - 438429.66\n", + "2022-09-20 00:00:00: Portfolio Value - 433047.47\n", + "2022-09-21 00:00:00: Portfolio Value - 426595.97\n", + "2022-09-22 00:00:00: Portfolio Value - 421938.66\n", + "2022-09-23 00:00:00: Portfolio Value - 417340.20\n", + "2022-09-26 00:00:00: Portfolio Value - 413549.35\n", + "2022-09-27 00:00:00: Portfolio Value - 412063.50\n", + "2022-09-28 00:00:00: Portfolio Value - 421062.98\n", + "2022-09-29 00:00:00: Portfolio Value - 414212.32\n", + "2022-09-30 00:00:00: Portfolio Value - 409388.85\n", + "2022-10-03 00:00:00: Portfolio Value - 420283.39\n", + "2022-10-04 00:00:00: Portfolio Value - 431528.22\n", + "2022-10-05 00:00:00: Portfolio Value - 430274.10\n", + "2022-10-06 00:00:00: Portfolio Value - 425487.35\n", + "2022-10-07 00:00:00: Portfolio Value - 416462.25\n", + "2022-10-10 00:00:00: Portfolio Value - 414799.66\n", + "2022-10-11 00:00:00: Portfolio Value - 413819.34\n", + "2022-10-12 00:00:00: Portfolio Value - 411770.41\n", + "2022-10-13 00:00:00: Portfolio Value - 421286.32\n", + "2022-10-14 00:00:00: Portfolio Value - 412961.94\n", + "2022-10-17 00:00:00: Portfolio Value - 420322.02\n", + "2022-10-18 00:00:00: Portfolio Value - 424104.18\n", + "2022-10-19 00:00:00: Portfolio Value - 420903.04\n", + "2022-10-20 00:00:00: Portfolio Value - 416823.57\n", + "2022-10-21 00:00:00: Portfolio Value - 425612.08\n", + "2022-10-24 00:00:00: Portfolio Value - 431092.16\n", + "2022-10-25 00:00:00: Portfolio Value - 438605.58\n", + "2022-10-26 00:00:00: Portfolio Value - 439300.52\n", + "2022-10-27 00:00:00: Portfolio Value - 438131.63\n", + "2022-10-28 00:00:00: Portfolio Value - 448719.69\n", + "2022-10-31 00:00:00: Portfolio Value - 448241.63\n", + "2022-11-01 00:00:00: Portfolio Value - 448671.58\n", + "2022-11-02 00:00:00: Portfolio Value - 440149.08\n", + "2022-11-03 00:00:00: Portfolio Value - 439477.05\n", + "2022-11-04 00:00:00: Portfolio Value - 445495.02\n", + "2022-11-07 00:00:00: Portfolio Value - 446994.05\n", + "2022-11-08 00:00:00: Portfolio Value - 447842.11\n", + "2022-11-09 00:00:00: Portfolio Value - 442947.66\n", + "2022-11-10 00:00:00: Portfolio Value - 462184.48\n", + "2022-11-11 00:00:00: Portfolio Value - 462578.67\n", + "2022-11-14 00:00:00: Portfolio Value - 459994.55\n", + "2022-11-15 00:00:00: Portfolio Value - 464450.86\n", + "2022-11-16 00:00:00: Portfolio Value - 463248.72\n", + "2022-11-17 00:00:00: Portfolio Value - 462109.04\n", + "2022-11-18 00:00:00: Portfolio Value - 464367.00\n", + "2022-11-21 00:00:00: Portfolio Value - 465402.66\n", + "2022-11-22 00:00:00: Portfolio Value - 469613.18\n", + "2022-11-23 00:00:00: Portfolio Value - 471918.06\n", + "2022-11-25 00:00:00: Portfolio Value - 472922.57\n", + "2022-11-28 00:00:00: Portfolio Value - 468166.15\n", + "2022-11-29 00:00:00: Portfolio Value - 467003.32\n", + "2022-11-30 00:00:00: Portfolio Value - 478498.16\n", + "2022-12-01 00:00:00: Portfolio Value - 478655.09\n", + "2022-12-02 00:00:00: Portfolio Value - 479214.14\n", + "2022-12-05 00:00:00: Portfolio Value - 472004.46\n", + "2022-12-06 00:00:00: Portfolio Value - 466932.66\n", + "2022-12-07 00:00:00: Portfolio Value - 469338.34\n", + "2022-12-08 00:00:00: Portfolio Value - 471889.85\n", + "2022-12-09 00:00:00: Portfolio Value - 465588.77\n", + "2022-12-12 00:00:00: Portfolio Value - 469596.43\n", + "2022-12-13 00:00:00: Portfolio Value - 471966.76\n", + "2022-12-14 00:00:00: Portfolio Value - 471322.73\n", + "2022-12-15 00:00:00: Portfolio Value - 461542.78\n", + "2022-12-16 00:00:00: Portfolio Value - 457501.85\n", + "2022-12-19 00:00:00: Portfolio Value - 453986.85\n", + "2022-12-20 00:00:00: Portfolio Value - 454424.18\n", + "2022-12-21 00:00:00: Portfolio Value - 461313.17\n", + "2022-12-22 00:00:00: Portfolio Value - 457394.57\n", + "2022-12-23 00:00:00: Portfolio Value - 458459.28\n", + "2022-12-27 00:00:00: Portfolio Value - 458121.54\n", + "2022-12-28 00:00:00: Portfolio Value - 452483.36\n", + "2022-12-29 00:00:00: Portfolio Value - 458581.15\n", + "2022-12-30 00:00:00: Portfolio Value - 457035.78\n", + "2023-01-03 00:00:00: Portfolio Value - 456488.32\n", + "2023-01-04 00:00:00: Portfolio Value - 461191.92\n", + "2023-01-05 00:00:00: Portfolio Value - 457911.52\n", + "2023-01-06 00:00:00: Portfolio Value - 467218.53\n", + "2023-01-09 00:00:00: Portfolio Value - 463459.49\n", + "2023-01-10 00:00:00: Portfolio Value - 468147.63\n", + "2023-01-11 00:00:00: Portfolio Value - 472281.01\n", + "2023-01-12 00:00:00: Portfolio Value - 472081.70\n", + "2023-01-13 00:00:00: Portfolio Value - 474047.02\n", + "2023-01-17 00:00:00: Portfolio Value - 473239.59\n", + "2023-01-18 00:00:00: Portfolio Value - 467485.42\n", + "2023-01-19 00:00:00: Portfolio Value - 462833.89\n", + "2023-01-20 00:00:00: Portfolio Value - 469279.91\n", + "2023-01-23 00:00:00: Portfolio Value - 474093.50\n", + "2023-01-24 00:00:00: Portfolio Value - 473587.71\n", + "2023-01-25 00:00:00: Portfolio Value - 473878.74\n", + "2023-01-26 00:00:00: Portfolio Value - 478578.98\n", + "2023-01-27 00:00:00: Portfolio Value - 477727.75\n", + "2023-01-30 00:00:00: Portfolio Value - 473760.51\n", + "2023-01-31 00:00:00: Portfolio Value - 480912.62\n", + "2023-02-01 00:00:00: Portfolio Value - 486834.32\n", + "2023-02-02 00:00:00: Portfolio Value - 490444.33\n", + "2023-02-03 00:00:00: Portfolio Value - 488301.63\n", + "2023-02-06 00:00:00: Portfolio Value - 486089.24\n", + "2023-02-07 00:00:00: Portfolio Value - 489094.52\n", + "2023-02-08 00:00:00: Portfolio Value - 484420.24\n", + "2023-02-09 00:00:00: Portfolio Value - 480673.30\n", + "2023-02-10 00:00:00: Portfolio Value - 482283.88\n", + "2023-02-13 00:00:00: Portfolio Value - 488359.97\n", + "2023-02-14 00:00:00: Portfolio Value - 485833.22\n", + "2023-02-15 00:00:00: Portfolio Value - 488338.67\n", + "2023-02-16 00:00:00: Portfolio Value - 482533.15\n", + "2023-02-17 00:00:00: Portfolio Value - 482673.31\n", + "2023-02-21 00:00:00: Portfolio Value - 475671.52\n", + "2023-02-22 00:00:00: Portfolio Value - 474394.03\n", + "2023-02-23 00:00:00: Portfolio Value - 473783.20\n", + "2023-02-24 00:00:00: Portfolio Value - 469275.86\n", + "2023-02-27 00:00:00: Portfolio Value - 469965.41\n", + "2023-02-28 00:00:00: Portfolio Value - 468524.72\n", + "2023-03-01 00:00:00: Portfolio Value - 469224.83\n", + "2023-03-02 00:00:00: Portfolio Value - 472906.99\n", + "2023-03-03 00:00:00: Portfolio Value - 479191.64\n", + "2023-03-06 00:00:00: Portfolio Value - 479029.65\n", + "2023-03-07 00:00:00: Portfolio Value - 474534.68\n", + "2023-03-08 00:00:00: Portfolio Value - 473794.66\n", + "2023-03-09 00:00:00: Portfolio Value - 467567.55\n", + "2023-03-10 00:00:00: Portfolio Value - 460573.13\n", + "2023-03-13 00:00:00: Portfolio Value - 460048.79\n", + "2023-03-14 00:00:00: Portfolio Value - 466516.53\n", + "2023-03-15 00:00:00: Portfolio Value - 463559.07\n", + "2023-03-16 00:00:00: Portfolio Value - 467868.92\n", + "2023-03-17 00:00:00: Portfolio Value - 461988.59\n", + "2023-03-20 00:00:00: Portfolio Value - 467082.44\n", + "2023-03-21 00:00:00: Portfolio Value - 471331.76\n", + "2023-03-22 00:00:00: Portfolio Value - 463785.86\n", + "2023-03-23 00:00:00: Portfolio Value - 466842.86\n", + "2023-03-24 00:00:00: Portfolio Value - 470376.53\n", + "2023-03-27 00:00:00: Portfolio Value - 472737.90\n", + "2023-03-28 00:00:00: Portfolio Value - 473321.22\n", + "2023-03-29 00:00:00: Portfolio Value - 478656.94\n", + "2023-03-30 00:00:00: Portfolio Value - 480301.52\n", + "2023-03-31 00:00:00: Portfolio Value - 487202.82\n", + "2023-04-03 00:00:00: Portfolio Value - 487999.10\n", + "2023-04-04 00:00:00: Portfolio Value - 485309.60\n", + "2023-04-05 00:00:00: Portfolio Value - 484335.02\n", + "2023-04-06 00:00:00: Portfolio Value - 485149.89\n", + "2023-04-10 00:00:00: Portfolio Value - 486774.79\n", + "2023-04-11 00:00:00: Portfolio Value - 488595.76\n", + "2023-04-12 00:00:00: Portfolio Value - 486927.00\n", + "2023-04-13 00:00:00: Portfolio Value - 492080.20\n", + "2023-04-14 00:00:00: Portfolio Value - 490601.26\n", + "2023-04-17 00:00:00: Portfolio Value - 492747.06\n", + "2023-04-18 00:00:00: Portfolio Value - 493184.62\n", + "2023-04-19 00:00:00: Portfolio Value - 493235.06\n", + "2023-04-20 00:00:00: Portfolio Value - 493081.28\n", + "2023-04-21 00:00:00: Portfolio Value - 494355.21\n", + "2023-04-24 00:00:00: Portfolio Value - 495785.42\n", + "2023-04-25 00:00:00: Portfolio Value - 488592.86\n", + "2023-04-26 00:00:00: Portfolio Value - 484970.82\n", + "2023-04-27 00:00:00: Portfolio Value - 487372.13\n", + "2023-04-28 00:00:00: Portfolio Value - 490999.11\n", + "2023-05-01 00:00:00: Portfolio Value - 490536.99\n", + "2023-05-02 00:00:00: Portfolio Value - 485901.02\n", + "2023-05-03 00:00:00: Portfolio Value - 485701.53\n", + "2023-05-04 00:00:00: Portfolio Value - 480247.55\n", + "2023-05-05 00:00:00: Portfolio Value - 486484.86\n", + "2023-05-08 00:00:00: Portfolio Value - 486099.57\n", + "2023-05-09 00:00:00: Portfolio Value - 484881.60\n", + "2023-05-10 00:00:00: Portfolio Value - 484557.58\n", + "2023-05-11 00:00:00: Portfolio Value - 484479.60\n", + "2023-05-12 00:00:00: Portfolio Value - 486079.92\n", + "2023-05-15 00:00:00: Portfolio Value - 485673.83\n", + "2023-05-16 00:00:00: Portfolio Value - 480244.52\n", + "2023-05-17 00:00:00: Portfolio Value - 482401.85\n", + "2023-05-18 00:00:00: Portfolio Value - 486156.50\n", + "2023-05-19 00:00:00: Portfolio Value - 484429.65\n", + "2023-05-22 00:00:00: Portfolio Value - 482370.42\n", + "2023-05-23 00:00:00: Portfolio Value - 475203.61\n", + "2023-05-24 00:00:00: Portfolio Value - 472390.65\n", + "2023-05-25 00:00:00: Portfolio Value - 471230.10\n", + "2023-05-26 00:00:00: Portfolio Value - 471907.88\n", + "2023-05-30 00:00:00: Portfolio Value - 470707.16\n", + "2023-05-31 00:00:00: Portfolio Value - 469549.14\n", + "2023-06-01 00:00:00: Portfolio Value - 470430.85\n", + "2023-06-02 00:00:00: Portfolio Value - 479244.46\n", + "2023-06-05 00:00:00: Portfolio Value - 479344.00\n", + "2023-06-06 00:00:00: Portfolio Value - 479083.46\n", + "2023-06-07 00:00:00: Portfolio Value - 478346.52\n", + "2023-06-08 00:00:00: Portfolio Value - 481249.85\n", + "2023-06-09 00:00:00: Portfolio Value - 481830.12\n", + "2023-06-12 00:00:00: Portfolio Value - 485002.90\n", + "2023-06-13 00:00:00: Portfolio Value - 488918.38\n", + "2023-06-14 00:00:00: Portfolio Value - 490410.88\n", + "2023-06-15 00:00:00: Portfolio Value - 496890.29\n", + "2023-06-16 00:00:00: Portfolio Value - 494813.73\n", + "2023-06-20 00:00:00: Portfolio Value - 493115.15\n", + "2023-06-21 00:00:00: Portfolio Value - 492671.93\n", + "2023-06-22 00:00:00: Portfolio Value - 492405.50\n", + "2023-06-23 00:00:00: Portfolio Value - 489442.60\n", + "2023-06-26 00:00:00: Portfolio Value - 490226.47\n", + "2023-06-27 00:00:00: Portfolio Value - 491687.46\n", + "2023-06-28 00:00:00: Portfolio Value - 490973.88\n", + "2023-06-29 00:00:00: Portfolio Value - 492932.56\n", + "2023-06-30 00:00:00: Portfolio Value - 498760.71\n", + "2023-07-03 00:00:00: Portfolio Value - 498303.59\n", + "2023-07-05 00:00:00: Portfolio Value - 496970.65\n", + "2023-07-06 00:00:00: Portfolio Value - 491866.32\n", + "2023-07-07 00:00:00: Portfolio Value - 490165.05\n", + "2023-07-10 00:00:00: Portfolio Value - 494770.51\n", + "2023-07-11 00:00:00: Portfolio Value - 498198.71\n", + "2023-07-12 00:00:00: Portfolio Value - 502341.17\n", + "2023-07-13 00:00:00: Portfolio Value - 502886.29\n", + "2023-07-14 00:00:00: Portfolio Value - 502560.19\n", + "2023-07-17 00:00:00: Portfolio Value - 503916.17\n", + "2023-07-18 00:00:00: Portfolio Value - 506323.25\n", + "2023-07-19 00:00:00: Portfolio Value - 506002.26\n", + "2023-07-20 00:00:00: Portfolio Value - 505711.59\n", + "2023-07-21 00:00:00: Portfolio Value - 506348.80\n", + "2023-07-24 00:00:00: Portfolio Value - 506374.91\n", + "2023-07-25 00:00:00: Portfolio Value - 509163.01\n", + "2023-07-26 00:00:00: Portfolio Value - 509412.35\n", + "2023-07-27 00:00:00: Portfolio Value - 508853.64\n", + "2023-07-28 00:00:00: Portfolio Value - 510871.14\n", + "2023-07-31 00:00:00: Portfolio Value - 510744.55\n", + "2023-08-01 00:00:00: Portfolio Value - 509652.11\n", + "2023-08-02 00:00:00: Portfolio Value - 507298.07\n", + "2023-08-03 00:00:00: Portfolio Value - 507905.02\n", + "2023-08-04 00:00:00: Portfolio Value - 505013.55\n", + "2023-08-07 00:00:00: Portfolio Value - 510022.27\n", + "2023-08-08 00:00:00: Portfolio Value - 508573.04\n", + "2023-08-09 00:00:00: Portfolio Value - 509903.59\n", + "2023-08-10 00:00:00: Portfolio Value - 510389.44\n", + "2023-08-11 00:00:00: Portfolio Value - 511374.96\n", + "2023-08-14 00:00:00: Portfolio Value - 513181.02\n", + "2023-08-15 00:00:00: Portfolio Value - 507960.24\n", + "2023-08-16 00:00:00: Portfolio Value - 503385.77\n", + "2023-08-17 00:00:00: Portfolio Value - 496386.51\n", + "2023-08-18 00:00:00: Portfolio Value - 497967.67\n", + "2023-08-21 00:00:00: Portfolio Value - 498226.56\n", + "2023-08-22 00:00:00: Portfolio Value - 496624.41\n", + "2023-08-23 00:00:00: Portfolio Value - 499967.25\n", + "2023-08-24 00:00:00: Portfolio Value - 493926.91\n", + "2023-08-25 00:00:00: Portfolio Value - 496243.00\n", + "2023-08-28 00:00:00: Portfolio Value - 498328.66\n", + "2023-08-29 00:00:00: Portfolio Value - 503637.89\n", + "2023-08-30 00:00:00: Portfolio Value - 506370.31\n", + "2023-08-31 00:00:00: Portfolio Value - 504301.66\n", + "2023-09-01 00:00:00: Portfolio Value - 506486.18\n", + "2023-09-05 00:00:00: Portfolio Value - 501631.22\n", + "2023-09-06 00:00:00: Portfolio Value - 500941.09\n", + "2023-09-07 00:00:00: Portfolio Value - 500472.95\n", + "2023-09-08 00:00:00: Portfolio Value - 500560.94\n", + "2023-09-11 00:00:00: Portfolio Value - 503010.24\n", + "2023-09-12 00:00:00: Portfolio Value - 500489.31\n", + "2023-09-13 00:00:00: Portfolio Value - 499492.98\n", + "2023-09-14 00:00:00: Portfolio Value - 502512.61\n", + "2023-09-15 00:00:00: Portfolio Value - 496769.96\n", + "2023-09-18 00:00:00: Portfolio Value - 496258.37\n", + "2023-09-19 00:00:00: Portfolio Value - 496669.81\n", + "2023-09-20 00:00:00: Portfolio Value - 494677.74\n", + "2023-09-21 00:00:00: Portfolio Value - 485620.52\n", + "2023-09-22 00:00:00: Portfolio Value - 484483.60\n", + "2023-09-25 00:00:00: Portfolio Value - 485684.93\n", + "2023-09-26 00:00:00: Portfolio Value - 480991.18\n", + "2023-09-27 00:00:00: Portfolio Value - 481422.94\n", + "2023-09-28 00:00:00: Portfolio Value - 483609.04\n", + "2023-09-29 00:00:00: Portfolio Value - 481058.06\n", + "2023-10-02 00:00:00: Portfolio Value - 477991.22\n", + "2023-10-03 00:00:00: Portfolio Value - 470912.06\n", + "2023-10-04 00:00:00: Portfolio Value - 474115.99\n", + "2023-10-05 00:00:00: Portfolio Value - 471796.92\n", + "2023-10-06 00:00:00: Portfolio Value - 474935.59\n", + "2023-10-09 00:00:00: Portfolio Value - 477345.17\n", + "2023-10-10 00:00:00: Portfolio Value - 480914.35\n", + "2023-10-11 00:00:00: Portfolio Value - 480139.33\n", + "2023-10-12 00:00:00: Portfolio Value - 474168.25\n", + "2023-10-13 00:00:00: Portfolio Value - 474740.74\n", + "2023-10-16 00:00:00: Portfolio Value - 481242.74\n", + "2023-10-17 00:00:00: Portfolio Value - 482038.64\n", + "2023-10-18 00:00:00: Portfolio Value - 476831.67\n", + "2023-10-19 00:00:00: Portfolio Value - 473926.17\n", + "2023-10-20 00:00:00: Portfolio Value - 470175.30\n", + "2023-10-23 00:00:00: Portfolio Value - 468857.79\n", + "2023-10-24 00:00:00: Portfolio Value - 471952.85\n", + "2023-10-25 00:00:00: Portfolio Value - 467883.05\n", + "2023-10-26 00:00:00: Portfolio Value - 462593.42\n", + "2023-10-27 00:00:00: Portfolio Value - 457265.19\n", + "2023-10-30 00:00:00: Portfolio Value - 460935.78\n", + "2023-10-31 00:00:00: Portfolio Value - 462456.78\n", + "2023-11-01 00:00:00: Portfolio Value - 465505.58\n", + "2023-11-02 00:00:00: Portfolio Value - 475267.72\n", + "2023-11-03 00:00:00: Portfolio Value - 481630.48\n", + "2023-11-06 00:00:00: Portfolio Value - 483144.92\n", + "2023-11-07 00:00:00: Portfolio Value - 484058.53\n", + "2023-11-08 00:00:00: Portfolio Value - 484081.95\n", + "2023-11-09 00:00:00: Portfolio Value - 478462.39\n", + "2023-11-10 00:00:00: Portfolio Value - 483769.48\n", + "2023-11-13 00:00:00: Portfolio Value - 485020.08\n", + "2023-11-14 00:00:00: Portfolio Value - 494155.75\n", + "2023-11-15 00:00:00: Portfolio Value - 494910.43\n", + "2023-11-16 00:00:00: Portfolio Value - 494566.15\n", + "2023-11-17 00:00:00: Portfolio Value - 495279.28\n", + "2023-11-20 00:00:00: Portfolio Value - 497798.23\n", + "2023-11-21 00:00:00: Portfolio Value - 497515.45\n", + "2023-11-22 00:00:00: Portfolio Value - 499816.06\n", + "2023-11-24 00:00:00: Portfolio Value - 501706.84\n", + "2023-11-27 00:00:00: Portfolio Value - 501413.49\n", + "2023-11-28 00:00:00: Portfolio Value - 500197.74\n", + "2023-11-29 00:00:00: Portfolio Value - 501606.46\n", + "2023-11-30 00:00:00: Portfolio Value - 505307.65\n", + "2023-12-01 00:00:00: Portfolio Value - 511711.15\n", + "2023-12-04 00:00:00: Portfolio Value - 511703.62\n", + "2023-12-05 00:00:00: Portfolio Value - 508666.63\n", + "2023-12-06 00:00:00: Portfolio Value - 509611.43\n", + "2023-12-07 00:00:00: Portfolio Value - 511927.39\n", + "2023-12-08 00:00:00: Portfolio Value - 513194.53\n", + "2023-12-11 00:00:00: Portfolio Value - 517320.86\n", + "2023-12-12 00:00:00: Portfolio Value - 521405.73\n", + "2023-12-13 00:00:00: Portfolio Value - 531473.63\n", + "2023-12-14 00:00:00: Portfolio Value - 531899.67\n", + "2023-12-15 00:00:00: Portfolio Value - 529418.31\n", + "2023-12-18 00:00:00: Portfolio Value - 531948.67\n", + "2023-12-19 00:00:00: Portfolio Value - 535445.05\n", + "2023-12-20 00:00:00: Portfolio Value - 527169.05\n", + "2023-12-21 00:00:00: Portfolio Value - 532934.67\n", + "2023-12-22 00:00:00: Portfolio Value - 534185.07\n", + "2023-12-26 00:00:00: Portfolio Value - 536256.87\n", + "2023-12-27 00:00:00: Portfolio Value - 538612.59\n", + "2023-12-28 00:00:00: Portfolio Value - 539488.97\n", + "2023-12-29 00:00:00: Portfolio Value - 538688.37\n", + "2024-01-02 00:00:00: Portfolio Value - 538419.05\n", + "2024-01-03 00:00:00: Portfolio Value - 533589.05\n", + "2024-01-04 00:00:00: Portfolio Value - 534371.92\n", + "2024-01-05 00:00:00: Portfolio Value - 533673.69\n", + "2024-01-08 00:00:00: Portfolio Value - 539115.86\n", + "2024-01-09 00:00:00: Portfolio Value - 537731.21\n", + "2024-01-10 00:00:00: Portfolio Value - 538684.40\n", + "2024-01-11 00:00:00: Portfolio Value - 539692.73\n", + "2024-01-12 00:00:00: Portfolio Value - 540898.22\n", + "2024-01-16 00:00:00: Portfolio Value - 538422.93\n", + "2024-01-17 00:00:00: Portfolio Value - 535869.94\n", + "2024-01-18 00:00:00: Portfolio Value - 539209.57\n", + "2024-01-19 00:00:00: Portfolio Value - 542936.55\n", + "2024-01-22 00:00:00: Portfolio Value - 545892.81\n", + "2024-01-23 00:00:00: Portfolio Value - 545729.42\n", + "2024-01-24 00:00:00: Portfolio Value - 545236.57\n", + "2024-01-25 00:00:00: Portfolio Value - 551984.09\n", + "2024-01-26 00:00:00: Portfolio Value - 551892.10\n", + "2024-01-29 00:00:00: Portfolio Value - 557050.99\n", + "2024-01-30 00:00:00: Portfolio Value - 558863.74\n", + "2024-01-31 00:00:00: Portfolio Value - 554304.47\n", + "2024-02-01 00:00:00: Portfolio Value - 561750.05\n", + "2024-02-02 00:00:00: Portfolio Value - 561367.76\n", + "2024-02-05 00:00:00: Portfolio Value - 558529.15\n", + "2024-02-06 00:00:00: Portfolio Value - 561028.05\n", + "2024-02-07 00:00:00: Portfolio Value - 564231.70\n", + "2024-02-08 00:00:00: Portfolio Value - 566936.70\n", + "2024-02-09 00:00:00: Portfolio Value - 567935.26\n", + "2024-02-12 00:00:00: Portfolio Value - 569423.17\n", + "2024-02-13 00:00:00: Portfolio Value - 562792.80\n", + "2024-02-14 00:00:00: Portfolio Value - 568371.32\n", + "2024-02-15 00:00:00: Portfolio Value - 573296.38\n", + "2024-02-16 00:00:00: Portfolio Value - 570671.36\n", + "2024-02-20 00:00:00: Portfolio Value - 568485.35\n", + "2024-02-21 00:00:00: Portfolio Value - 567910.11\n", + "2024-02-22 00:00:00: Portfolio Value - 576573.66\n", + "2024-02-23 00:00:00: Portfolio Value - 577709.91\n", + "2024-02-26 00:00:00: Portfolio Value - 578458.54\n", + "2024-02-27 00:00:00: Portfolio Value - 580249.24\n", + "2024-02-28 00:00:00: Portfolio Value - 581905.23\n", + "2024-02-29 00:00:00: Portfolio Value - 581166.29\n", + "2024-03-01 00:00:00: Portfolio Value - 585640.52\n", + "2024-03-04 00:00:00: Portfolio Value - 587797.62\n", + "2024-03-05 00:00:00: Portfolio Value - 582776.28\n", + "2024-03-06 00:00:00: Portfolio Value - 585992.33\n", + "2024-03-07 00:00:00: Portfolio Value - 590348.65\n", + "2024-03-08 00:00:00: Portfolio Value - 586509.89\n", + "2024-03-11 00:00:00: Portfolio Value - 584327.67\n", + "2024-03-12 00:00:00: Portfolio Value - 590010.29\n", + "2024-03-13 00:00:00: Portfolio Value - 589170.80\n", + "2024-03-14 00:00:00: Portfolio Value - 585627.81\n", + "2024-03-15 00:00:00: Portfolio Value - 582506.09\n", + "2024-03-18 00:00:00: Portfolio Value - 584466.29\n", + "2024-03-19 00:00:00: Portfolio Value - 588302.46\n", + "2024-03-20 00:00:00: Portfolio Value - 591532.32\n", + "2024-03-21 00:00:00: Portfolio Value - 594885.39\n", + "2024-03-22 00:00:00: Portfolio Value - 589984.96\n", + "2024-03-25 00:00:00: Portfolio Value - 588017.02\n", + "2024-03-26 00:00:00: Portfolio Value - 589848.62\n", + "2024-03-27 00:00:00: Portfolio Value - 596018.63\n", + "2024-03-28 00:00:00: Portfolio Value - 597078.87\n", + "2024-04-01 00:00:00: Portfolio Value - 593879.13\n", + "2024-04-02 00:00:00: Portfolio Value - 587850.10\n", + "2024-04-03 00:00:00: Portfolio Value - 586044.02\n", + "2024-04-04 00:00:00: Portfolio Value - 579370.69\n", + "2024-04-05 00:00:00: Portfolio Value - 584720.46\n", + "2024-04-08 00:00:00: Portfolio Value - 585241.73\n", + "2024-04-09 00:00:00: Portfolio Value - 585786.31\n", + "2024-04-10 00:00:00: Portfolio Value - 580020.68\n", + "2024-04-11 00:00:00: Portfolio Value - 579404.94\n", + "2024-04-12 00:00:00: Portfolio Value - 571003.24\n", + "2024-04-15 00:00:00: Portfolio Value - 565343.02\n", + "2024-04-16 00:00:00: Portfolio Value - 563728.14\n", + "2024-04-17 00:00:00: Portfolio Value - 563026.29\n", + "2024-04-18 00:00:00: Portfolio Value - 561943.94\n", + "2024-04-19 00:00:00: Portfolio Value - 558492.76\n", + "2024-04-22 00:00:00: Portfolio Value - 562619.91\n", + "2024-04-23 00:00:00: Portfolio Value - 567881.11\n", + "2024-04-24 00:00:00: Portfolio Value - 567690.51\n", + "2024-04-25 00:00:00: Portfolio Value - 565898.79\n", + "2024-04-26 00:00:00: Portfolio Value - 567042.65\n", + "2024-04-29 00:00:00: Portfolio Value - 570798.22\n", + "2024-04-30 00:00:00: Portfolio Value - 565652.31\n", + "2024-05-01 00:00:00: Portfolio Value - 564400.88\n", + "2024-05-02 00:00:00: Portfolio Value - 567532.88\n", + "2024-05-03 00:00:00: Portfolio Value - 570939.66\n", + "2024-05-06 00:00:00: Portfolio Value - 577923.14\n", + "2024-05-07 00:00:00: Portfolio Value - 578502.98\n", + "2024-05-08 00:00:00: Portfolio Value - 575636.99\n", + "2024-05-09 00:00:00: Portfolio Value - 580904.59\n", + "2024-05-10 00:00:00: Portfolio Value - 580768.84\n", + "2024-05-13 00:00:00: Portfolio Value - 579009.71\n", + "2024-05-14 00:00:00: Portfolio Value - 580390.16\n", + "2024-05-15 00:00:00: Portfolio Value - 586035.25\n", + "2024-05-16 00:00:00: Portfolio Value - 583921.74\n", + "2024-05-17 00:00:00: Portfolio Value - 585104.98\n", + "2024-05-20 00:00:00: Portfolio Value - 585958.39\n", + "2024-05-21 00:00:00: Portfolio Value - 587152.36\n", + "2024-05-22 00:00:00: Portfolio Value - 584245.77\n", + "2024-05-23 00:00:00: Portfolio Value - 577036.74\n", + "2024-05-24 00:00:00: Portfolio Value - 582828.62\n", + "2024-05-28 00:00:00: Portfolio Value - 579615.54\n", + "2024-05-29 00:00:00: Portfolio Value - 574944.59\n", + "2024-05-30 00:00:00: Portfolio Value - 576326.53\n", + "2024-05-31 00:00:00: Portfolio Value - 581256.51\n", + "2024-06-03 00:00:00: Portfolio Value - 579451.56\n", + "2024-06-04 00:00:00: Portfolio Value - 579538.56\n", + "2024-06-05 00:00:00: Portfolio Value - 583787.09\n", + "2024-06-06 00:00:00: Portfolio Value - 583461.46\n", + "2024-06-07 00:00:00: Portfolio Value - 582544.38\n", + "2024-06-10 00:00:00: Portfolio Value - 584432.43\n", + "2024-06-11 00:00:00: Portfolio Value - 583402.28\n", + "2024-06-12 00:00:00: Portfolio Value - 586148.23\n", + "2024-06-13 00:00:00: Portfolio Value - 586322.68\n", + "2024-06-14 00:00:00: Portfolio Value - 584461.65\n", + "2024-06-17 00:00:00: Portfolio Value - 588131.22\n", + "2024-06-18 00:00:00: Portfolio Value - 589438.01\n", + "2024-06-20 00:00:00: Portfolio Value - 588094.63\n", + "2024-06-21 00:00:00: Portfolio Value - 588518.55\n", + "2024-06-24 00:00:00: Portfolio Value - 589912.58\n", + "2024-06-25 00:00:00: Portfolio Value - 588547.91\n", + "2024-06-26 00:00:00: Portfolio Value - 586587.77\n", + "2024-06-27 00:00:00: Portfolio Value - 586561.53\n", + "2024-06-28 00:00:00: Portfolio Value - 584611.17\n", + "2024-07-01 00:00:00: Portfolio Value - 582055.14\n", + "2024-07-02 00:00:00: Portfolio Value - 583195.78\n", + "2024-07-03 00:00:00: Portfolio Value - 582951.69\n", + "2024-07-05 00:00:00: Portfolio Value - 584401.42\n", + "2024-07-08 00:00:00: Portfolio Value - 586084.23\n", + "2024-07-09 00:00:00: Portfolio Value - 584132.99\n", + "2024-07-10 00:00:00: Portfolio Value - 587731.58\n", + "2024-07-11 00:00:00: Portfolio Value - 589807.82\n", + "2024-07-12 00:00:00: Portfolio Value - 595130.59\n", + "2024-07-15 00:00:00: Portfolio Value - 594439.55\n", + "2024-07-16 00:00:00: Portfolio Value - 603030.05\n", + "2024-07-17 00:00:00: Portfolio Value - 598739.26\n", + "2024-07-18 00:00:00: Portfolio Value - 589499.93\n", + "2024-07-19 00:00:00: Portfolio Value - 587244.64\n", + "2024-07-22 00:00:00: Portfolio Value - 592645.56\n", + "2024-07-23 00:00:00: Portfolio Value - 593816.37\n", + "2024-07-24 00:00:00: Portfolio Value - 587444.17\n", + "2024-07-25 00:00:00: Portfolio Value - 583279.93\n", + "2024-07-26 00:00:00: Portfolio Value - 587753.02\n", + "2024-07-29 00:00:00: Portfolio Value - 589207.97\n", + "2024-07-30 00:00:00: Portfolio Value - 590358.34\n", + "2024-07-31 00:00:00: Portfolio Value - 592341.30\n", + "2024-08-01 00:00:00: Portfolio Value - 589658.15\n", + "2024-08-02 00:00:00: Portfolio Value - 581997.53\n", + "2024-08-05 00:00:00: Portfolio Value - 569155.51\n", + "2024-08-06 00:00:00: Portfolio Value - 574622.73\n", + "2024-08-07 00:00:00: Portfolio Value - 571169.34\n", + "2024-08-08 00:00:00: Portfolio Value - 585279.37\n", + "2024-08-09 00:00:00: Portfolio Value - 589077.99\n", + "2024-08-12 00:00:00: Portfolio Value - 587909.29\n", + "2024-08-13 00:00:00: Portfolio Value - 596044.89\n", + "2024-08-14 00:00:00: Portfolio Value - 598731.27\n", + "2024-08-15 00:00:00: Portfolio Value - 607195.48\n", + "2024-08-16 00:00:00: Portfolio Value - 608731.73\n", + "2024-08-19 00:00:00: Portfolio Value - 612615.03\n", + "2024-08-20 00:00:00: Portfolio Value - 611328.99\n", + "2024-08-21 00:00:00: Portfolio Value - 614668.10\n", + "2024-08-22 00:00:00: Portfolio Value - 612912.68\n", + "2024-08-23 00:00:00: Portfolio Value - 618721.22\n", + "2024-08-26 00:00:00: Portfolio Value - 618247.78\n", + "2024-08-27 00:00:00: Portfolio Value - 620886.77\n", + "2024-08-28 00:00:00: Portfolio Value - 616359.00\n", + "2024-08-29 00:00:00: Portfolio Value - 615482.60\n", + "2024-08-30 00:00:00: Portfolio Value - 619568.43\n", + "2024-09-03 00:00:00: Portfolio Value - 611515.58\n", + "2024-09-04 00:00:00: Portfolio Value - 612802.24\n", + "2024-09-05 00:00:00: Portfolio Value - 609101.13\n", + "2024-09-06 00:00:00: Portfolio Value - 603536.82\n", + "2024-09-09 00:00:00: Portfolio Value - 610459.24\n", + "2024-09-10 00:00:00: Portfolio Value - 610185.51\n", + "2024-09-11 00:00:00: Portfolio Value - 612330.67\n", + "2024-09-12 00:00:00: Portfolio Value - 617738.17\n", + "2024-09-13 00:00:00: Portfolio Value - 621867.99\n", + "2024-09-16 00:00:00: Portfolio Value - 625791.54\n", + "2024-09-17 00:00:00: Portfolio Value - 625768.46\n", + "2024-09-18 00:00:00: Portfolio Value - 623537.67\n", + "2024-09-19 00:00:00: Portfolio Value - 628591.56\n", + "2024-09-20 00:00:00: Portfolio Value - 626754.07\n", + "2024-09-23 00:00:00: Portfolio Value - 628383.78\n", + "2024-09-24 00:00:00: Portfolio Value - 627021.04\n", + "2024-09-25 00:00:00: Portfolio Value - 624291.33\n", + "2024-09-26 00:00:00: Portfolio Value - 627498.59\n", + "2024-09-27 00:00:00: Portfolio Value - 628120.28\n", + "2024-09-30 00:00:00: Portfolio Value - 628405.00\n", + "2024-10-01 00:00:00: Portfolio Value - 625157.30\n", + "2024-10-02 00:00:00: Portfolio Value - 624151.29\n", + "2024-10-03 00:00:00: Portfolio Value - 621075.39\n", + "2024-10-04 00:00:00: Portfolio Value - 624816.51\n", + "2024-10-07 00:00:00: Portfolio Value - 619201.74\n", + "2024-10-08 00:00:00: Portfolio Value - 624136.14\n", + "2024-10-09 00:00:00: Portfolio Value - 628903.82\n", + "2024-10-10 00:00:00: Portfolio Value - 624595.26\n", + "2024-10-11 00:00:00: Portfolio Value - 630949.34\n", + "2024-10-14 00:00:00: Portfolio Value - 633868.46\n", + "2024-10-15 00:00:00: Portfolio Value - 632527.10\n", + "2024-10-16 00:00:00: Portfolio Value - 634192.65\n", + "2024-10-17 00:00:00: Portfolio Value - 631125.09\n", + "2024-10-18 00:00:00: Portfolio Value - 635436.82\n", + "2024-10-21 00:00:00: Portfolio Value - 631263.28\n", + "2024-10-22 00:00:00: Portfolio Value - 630371.96\n", + "2024-10-23 00:00:00: Portfolio Value - 625626.52\n", + "2024-10-24 00:00:00: Portfolio Value - 624015.83\n", + "2024-10-25 00:00:00: Portfolio Value - 622987.79\n", + "2024-10-28 00:00:00: Portfolio Value - 625591.55\n", + "2024-10-29 00:00:00: Portfolio Value - 623402.20\n", + "2024-10-30 00:00:00: Portfolio Value - 618242.94\n", + "2024-10-31 00:00:00: Portfolio Value - 610076.29\n", + "2024-11-01 00:00:00: Portfolio Value - 611430.06\n", + "2024-11-04 00:00:00: Portfolio Value - 610995.61\n", + "2024-11-05 00:00:00: Portfolio Value - 616160.15\n", + "2024-11-06 00:00:00: Portfolio Value - 625972.92\n", + "2024-11-07 00:00:00: Portfolio Value - 628279.23\n", + "2024-11-08 00:00:00: Portfolio Value - 639474.39\n", + "2024-11-11 00:00:00: Portfolio Value - 641142.84\n", + "2024-11-12 00:00:00: Portfolio Value - 637653.15\n", + "2024-11-13 00:00:00: Portfolio Value - 636579.01\n", + "2024-11-14 00:00:00: Portfolio Value - 632376.95\n", + "2024-11-15 00:00:00: Portfolio Value - 625027.70\n", + "2024-11-18 00:00:00: Portfolio Value - 627814.28\n", + "2024-11-19 00:00:00: Portfolio Value - 627052.30\n" ] } ], @@ -20376,26 +20374,18 @@ "text": [ "\n", "Performance Metrics:\n", - "Daily Return: 0.011304602342248102\n", - "Cumulative Return: 10571.956938341258\n", - "Log Return: 0.002619796868665878\n", - "Volatility: 6.90262720118047\n", - "Sharpe Ratio: 0.4120546724238712\n", - "Max Drawdown: -7.490367704932934\n", - "VaR 5%: -0.041154272985632206\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "c:\\Users\\peter_\\anaconda3\\envs\\data-quality\\Lib\\site-packages\\pandas\\core\\arraylike.py:399: RuntimeWarning: invalid value encountered in log\n", - " result = getattr(ufunc, method)(*inputs, **kwargs)\n" + "Daily Return: 0.0005332359385909696\n", + "Cumulative Return: 5.270523016540968\n", + "Log Return: 0.0004902162261367692\n", + "Volatility: 0.14685754323674538\n", + "Sharpe Ratio: 0.8843635380414568\n", + "Max Drawdown: -0.2783844365696996\n", + "VaR 5%: -0.013843005950647445\n" ] }, { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0kAAAH9CAYAAADPvTcKAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvc2/+5QAAAAlwSFlzAAAPYQAAD2EBqD+naQAAYHJJREFUeJzt3Qd4VFX6x/E3PSSQAKGEEjpIb0oV6UVQFFEXyy5lUddVXBXboiJixXVFdFcXe1v528vaEKQKAgKCNEF6D6Glk0Jy/897wgwzKZDATO5M5vt5nnGSOyVnTsbh/nLOeU+QZVmWAAAAAACM4IIrAAAAAIAiJAEAAACAC0ISAAAAALggJAEAAACAC0ISAAAAALggJAEAAACAC0ISAAAAALggJAEAAACAC0ISAAAAALggJAEAvG7lypXSs2dPiY6OlqCgIFm7dm2pH/v222+bx+zatct5rG/fvuYCAIA3EJIAoAJzBAzHJTIyUlq0aCETJkyQQ4cOefRnPfXUU/LFF18UOZ6bmyvXXnutHDt2TJ5//nl57733pGHDhuJLNHC59lOlSpWkffv2MmPGDMnPzz+n55w1a5Z5PADA/4Ta3QAAgPc99thj0rhxY8nKypIlS5bIf/7zH/n2229lw4YNEhUV5bGQdM0118iIESPcjm/fvl12794tr732mtx0000e+Vlz5swRT6tfv748/fTT5usjR46YkHP33XfL4cOH5cknnyzz8+njtX/vuusuj7cVAOBdhCQACABDhw6Viy66yHytQSUuLk6mT58uX375pVx//fXn/LyWZZngpSMvJUlKSjLXVatWFU8JDw8XT4uNjZU//vGPzu9vvfVWadmypfzrX/8yITMkJER8QWZmpseCLQCgeEy3A4AA1L9/f3O9c+dOc33y5El5/PHHpWnTphIRESGNGjWSBx98ULKzs90ep8cvv/xy+f77703o0nD0yiuvmClqGRkZ8s477zinrI0dO9Zc+vTpYx6rU+70uOtaovnz58sll1xi1ippiLryyivlt99+O2v7i1uTpGFs/PjxUrt2bTOtsEOHDqY950qfo0uXLpKWluYMeg7//e9/5cILLzSvv3r16nLdddfJ3r173dr3zTffmBE0R39o35W0xkotXLjQHNdr1+dp27atrF69Wnr37m3Ckf5e9LF633/+85/y6quvOn9v2l5d/+Uq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cu2115qvR44cKaGhofLss89K/fr1vdk+AAAAAPDNkKTlvqOiopx7I+mmsnXq1PFm2wAAAADAt6vb6Tok3Q9JnTx5Ut5++22pUaOG233+9re/ebaFAAAAAOCLIalBgwby2muvOb+Pj4+X9957z+0+OsJESAIAAAAQECFp165d3m0JAAAAAPjbPkkAAAAAUNERkvxE05rR5rpr4+p2NwUAAACo0AhJfqJD/armelCr2nY3BQAAAKjQCEl+wrK7AQAAAECAICT5maAgu1sAAAAAVGznFJK2b98uDz/8sFx//fWSlJRkjn333XeyceNGT7cPp1gWY0kAAACAT4akRYsWSbt27WTFihXy2WefSXp6ujn+66+/ypQpU7zRRgAAAADw3ZD097//XZ544gmZO3euhIeHO4/3799fli9f7un24RTGkQAAAAAfDUnr16+Xq666qsjxWrVqyZEjRzzVLpQgiEVJAAAAgG+FpKpVq8rBgweLHF+zZo3Uq1fPU+1CISxJAgAAAHw0JF133XXywAMPSGJiohnVyM/Pl6VLl8q9994ro0eP9k4r4cQ4EgAAAOBjIempp56Sli1bSkJCgina0Lp1a+ndu7f07NnTVLyDdzCQBAAAAJSP0LI+QIs1vPbaazJ58mTZsGGDCUqdOnWS5s2be6eFcMOSJAAAAMDHQtKSJUukV69e0qBBA3NB+WCfJAAAAMBHp9tpqe/GjRvLgw8+KJs2bfJOq1AiBpIAAAAAHwtJBw4ckHvuucdsKtu2bVvp2LGjPPvss7Jv3z7vtBAG40gAAACAj4akGjVqyIQJE0xFu+3bt8u1114r77zzjjRq1MiMMsG72CcJAAAA8LGQ5Eqn3f3973+XadOmSbt27czoEryEoSQAAADAt0OSjiTddtttUqdOHbnhhhvM1LtvvvnGs61DEQwkAQAAAD5W3W7SpEnywQcfmLVJgwYNkhdeeEGuvPJKiYqK8k4LAQAAAMCXR5IWL14s9913n+zfv1++/vpruf766885ID399NPSpUsXqVKlitSqVUtGjBghW7ZscbtPVlaW3H777RIXFyeVK1eWq6++Wg4dOiSBxjo1346BJAAAAMDHQpJjmp0WcDhfuoZJA9Dy5ctl7ty5kpubK4MHD5aMjAznfe6++2756quv5OOPPzb31xGskSNHnvfPBgAAAIBznm73v//9T4YO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6bHvvvvOat26tfXuu+86j//3v/+1oqOjrb1799rSbn+nfVmrVi2ra9euVs2aNa2LL77Y+vTTT81tv/zyi+nvadOmWdnZ2c7HJCYmWldccYX1pz/9ycaWV8y+1/8PlH6Ou37u79q1y3zub9u2zcYWB0bfOz7v4+Pjne/7u+++2/w7W6lSJWvVqlU2tjywMJJ0Bu+//7489dRTZsGujmBMmzbNHHesvdDRDC0c8Msvv5i1Akr/Aqa367C0Tr9LT0+3+VVUnH53reziOsVC561rP+uohoOuFYPn+t7xl13967q+9zt37mzWZ+hc6X//+98yatQoiYqKMn9t1N8NRRw8/77Xz5QBAwaY9Xf6l0bX9Rg65VePMxXG85/1Do0aNTJTv/T3oX/NdYw06dQvHc3W6XcoPf2M0HUWTz/9tOl7HS3Sdb1NmzaV119/3awB088X7d/PPvvMrWBA7dq1zegGlQU93/e6zlFHKfRz3PUzZuHChebaMbqkjh07ZttrqMh9r/T936dPH/Pe1yUG7733ngwcOFAaNmzo/OyhiIP38QlTDMcbTyuo6UnJM888I1dccYX5kHB8UDimVmhpUp0vrRW+XPcsSUpKMh8mlStXtulVVMx+L+5DQQOqhlU9iVyzZo3069fP/F6Y5uj5vtd/NDWQamlSnVqnJzCbNm0yUzMGDRokN9xwg7kvJcE92/d6Eq70+J/+9CczzU6naDgClK6L6dixo7nAe585esKo/w/o57vjBF2n3OkfDXSKEkpPp27pmiNdXzpu3DgT8nv27GnWwuj6Osd7furUqebfWz2B1CqDDnoSqWvC4Pm+d/0jl+MPknoir+tQK1WqZAo7DB48WB5//HGmOnq47x3nlvq5owVLdF2Yo7Kmfj7pH2scFZQpCV4O7B7K8iW///57kalCjukWGzZsMMP7w4YNK3Lbjz/+aA0dOtSqWrWqde+991o33nijVb16devrr782tzP9yLP97npfnQ5w5ZVXWs8++6w1YcIEKzg42Bo9erSVk5NTjq8gcPre0a9fffWVtXLlSrfHff/999bjjz9uno/3vOf73jHtTqf56ntcp3jptLvrr7/efN688sor5nb63vN975h2NHfuXKtPnz5W27ZtrZkzZ5pp1dr3zz//fDm/gorR72vWrHG+rx19/P7771sdO3Z0m1738ccfW5dcconVsGFD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", + "image/png": "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", "text/plain": [ "
" ] diff --git a/backtester/order_generator.py b/backtester/order_generator.py index e7dd890..a55e9ba 100644 --- a/backtester/order_generator.py +++ b/backtester/order_generator.py @@ -92,6 +92,8 @@ def generate_orders_for_date(self, beta_values, date): # long bottom decile, short top decile of beta stocks for ticker in low_beta_tickers: quantity = int(self.starting_portfolio_value * low_beta_weight / decile_size) + max_allocation = self.starting_portfolio_value * 0.02 + quantity = min(quantity, max_allocation) orders.append({ "date": date, "type": "BUY", @@ -102,6 +104,8 @@ def generate_orders_for_date(self, beta_values, date): for ticker in high_beta_tickers: quantity = int(self.starting_portfolio_value * high_beta_weight / decile_size) + max_allocation = self.starting_portfolio_value * 0.02 + quantity = min(quantity, max_allocation) orders.append({ "date": date, "type": "SELL", @@ -209,14 +213,17 @@ def generate_orders_for_date(self, ivol_values, date): # Ensure IVOL neutrality with equal weighting - total_low_ivol_weight = 1 / (avg_low_ivol + avg_high_ivol) - total_high_ivol_weight = -1 / (avg_low_ivol + avg_high_ivol) + scaling_factor = 0.5 # Can use to reduce leverage + total_low_ivol_weight = scaling_factor / (avg_low_ivol + avg_high_ivol) + total_high_ivol_weight = -scaling_factor / (avg_low_ivol + avg_high_ivol) orders = [] # Long low IVOL, short high IVOL stocks for ticker in low_ivol_tickers: - quantity = int(self.starting_portfolio_value * total_low_ivol_weight / decile_size) + quantity = int(100 * total_low_ivol_weight / decile_size) + max_allocation = self.starting_portfolio_value * 0.01 + quantity = min(quantity, max_allocation) orders.append({ "date": date, "type": "BUY", @@ -227,7 +234,9 @@ def generate_orders_for_date(self, ivol_values, date): for ticker in high_ivol_tickers: - quantity = int(self.starting_portfolio_value * total_high_ivol_weight / decile_size) + quantity = int(100 * total_high_ivol_weight / decile_size) + max_allocation = self.starting_portfolio_value * 0.01 + quantity = min(quantity, max_allocation) orders.append({ "date": date, "type": "SELL", From b225d57f89815b70821f9623293b7282e3a711c7 Mon Sep 17 00:00:00 2001 From: PeterSoojongHa Date: Tue, 25 Mar 2025 04:57:15 -0400 Subject: [PATCH 4/4] added case study: max loss day --- backtester/bai.ipynb | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/backtester/bai.ipynb b/backtester/bai.ipynb index 30977ef..dea43b6 100644 --- a/backtester/bai.ipynb +++ b/backtester/bai.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -746,7 +746,7 @@ "Buying AEE on 2010-12-31 00:00:00\n", "Buying ACGL on 2010-12-31 00:00:00\n", "Buying OMC on 2010-12-31 00:00:00\n", - "Buying WRB on 2010-12-31 00:00:00\n", + "Buying MCD on 2010-12-31 00:00:00\n", "Selling PWR on 2010-12-31 00:00:00\n", "Selling FITB on 2010-12-31 00:00:00\n", "Selling AKAM on 2010-12-31 00:00:00\n", @@ -14392,8 +14392,8 @@ "Buying KMB on 2023-01-31 00:00:00\n", "Buying PM on 2023-01-31 00:00:00\n", "Buying EA on 2023-01-31 00:00:00\n", - "Buying LKQ on 2023-01-31 00:00:00\n", "Buying IEX on 2023-01-31 00:00:00\n", + "Buying LKQ on 2023-01-31 00:00:00\n", "Buying DUK on 2023-01-31 00:00:00\n", "Buying WAB on 2023-01-31 00:00:00\n", "Buying SNA on 2023-01-31 00:00:00\n", @@ -16593,7 +16593,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -20365,7 +20365,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -20380,7 +20380,9 @@ "Volatility: 0.14685754323674538\n", "Sharpe Ratio: 0.8843635380414568\n", "Max Drawdown: -0.2783844365696996\n", - "VaR 5%: -0.013843005950647445\n" + "VaR 5%: -0.013843005950647445\n", + "max fall is: 0.1621920140270674\n", + "this occurred on the following day: 2020-03-16 00:00:00\n" ] }, { @@ -20402,7 +20404,14 @@ "print(\"\\nPerformance Metrics:\")\n", "for key, value in metrics.items():\n", " print(f\"{key}: {value}\")\n", - " \n", + "maxLoss, maxLossDay, last = 0, None, 0\n", + "for i, value in portfolio_returns.items():\n", + " if last - value > maxLoss:\n", + " maxLoss = last - value\n", + " maxLossDay = i\n", + " last = value\n", + "print(\"max loss is: \" + str(maxLoss))\n", + "print(\"this occurred on the following day: \" + str(maxLossDay))\n", "metrics_calculator.plot_returns(portfolio_returns)" ] }