目录

Matplotlib

前言

本篇鸣谢 马川-燕大 的增删整理, 王圣元 ——原创文章,与原文不同之处包含我的学习记录。

匹配Jupyter Notebook的ipynb文档链接下载地址在资源页面里

0 引言

Matplotlib 是 Python 中最基本的可视化工具,官网里 (https://matplotlib.org/) 好资料无数,可多多参考。

本章采用以下思路来讲解:

第一部分介绍 matplotlib 中的绘图逻辑,图包含的重要元素和他们之间的层级 (hierarchy)

第二部分只关注折线图 (line chart),但是一步步从最初的烂图完善到最终的美图。这样可以把一种类型的图中的性质吃透,类比到其他类型的图一点也不难。

第三部分从画图的四大目的出发,即分布、联系、比较和构成,介绍了相对应的直方图 (historgram chart),散点图 (scatter chart),折线图 (line chart) 和饼状图 (pie chart)。这章偏向于用合适的图来实现不同的目的,没有在如何完善图的方面上下功夫,但在最后一节提到了如何画出使信息更有效的表达的图

提纲:

https://pic./2020/06/22/c523f303ce755.png

和 NumPy, SciPy, Pandas 一样,要用 Matplotlib,首先引用其库。

import matplotlib

下面代码就是给 matplotlib 起了个别名 mpl,由于用 matplotlib.plot 比较多,也给它起了个别名 plt。

1
2
3
import matplotlib as mpl
import matplotlib.pyplot as plt
%matplotlib inline

而 %matplotlib inline 就是在 Jupyter notebook 里面内嵌画图的,

在画图中,个人偏好百度 Echarts 里面的一组颜色,因此将其 hex 颜色代码定义出来留在后面用。其中红色的 r_hex 和深青色的 dt_hex 是大爱。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
r_hex = '#dc2624'     # red,       RGB = 220,38,36
dt_hex = '#2b4750'    # dark teal, RGB = 43,71,80
tl_hex = '#45a0a2'    # teal,      RGB = 69,160,162
r1_hex = '#e87a59'    # red,       RGB = 232,122,89
tl1_hex = '#7dcaa9'   # teal,      RGB = 125,202,169
g_hex = '#649E7D'     # green,     RGB = 100,158,125
o_hex = '#dc8018'     # orange,    RGB = 220,128,24
tn_hex = '#C89F91'    # tan,       RGB = 200,159,145
g50_hex = '#6c6d6c'   # grey-50,   RGB = 108,109,108
bg_hex = '#4f6268'    # blue grey, RGB = 79,98,104
g25_hex = '#c7cccf'   # grey-25,   RGB = 199,204,207
Hex Color RGB
r_hex = ‘#dc2624’ # red RGB = 220,38,36
dt_hex = ‘#2b4750’ # dark teal RGB = 43,71,80
tl_hex = ‘#45a0a2’ # teal RGB = 69,160,162
r1_hex = ‘#e87a59’ # red RGB = 232,122,89
tl1_hex = ‘#7dcaa9’ # teal RGB = 125,202,169
g_hex = ‘#649E7D’ # green RGB = 100,158,125
o_hex = ‘#dc8018’ # orange RGB = 220,128,24
tn_hex = ‘#C89F91’ # tan RGB = 200,159,145
g50_hex = ‘#6c6d6c’ # grey-50 RGB = 108,109,108
bg_hex = ‘#4f6268’ # blue grey RGB = 79,98,104
g25_hex = ‘#c7cccf’ # grey-25 RGB = 199,204,207

https://pic./2020/06/22/56be76d29b052.png

1 Matplotlib结构

1.1 概览

Matplotlib 是一个巨无霸,乍一看无从下手,只能分解之后各点击破。总体来说,它包含两类元素:

  • 基础 (primitives) 类:线 (line), 点 (marker), 文字 (text), 图例 (legend), 网格 (grid), 标题 (title), 图片 (image) 等。

  • 容器 (containers) 类:图 (figure), 坐标系 (axes), 坐标轴 (axis) 和刻度 (tick)

基础类元素是程序员想画出的标准对象,而容器类元素是基础类元素的寄居处,它们也有层级结构。

图 → 坐标系 → 坐标轴 → 刻度

https://pic./2020/06/22/f6b2185f5a145.png

由上图看出:

  • 包含着坐标系 (多个)

  • 坐标系由坐标轴组成 (横轴 xAxis 和纵轴 yAxis)

  • 坐标轴上面有刻度 (主刻度 MajorTicks 和副刻度 MinorTicks)

Python 中万物皆对象,Matplotlib 里这些元素也都是对象。下面代码打印出坐标系、坐标轴和刻度。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
fig = plt.figure()
ax = fig.add_subplot(1,1,1)
plt.show()

xax = ax.xaxis
yax = ax.yaxis

print( 'fig.axes:', fig.axes, '\n')
print( 'ax.xaxis:', xax )
print( 'ax.yaxis:', yax, '\n' )
print( 'ax.xaxis.majorTicks:', xax.majorTicks, '\n' )
print( 'ax.yaxis.majorTicks:', yax.majorTicks, '\n')
print( 'ax.xaxis.minorTicks:', xax.minorTicks )
print( 'ax.yaxis.minorTicks:', yax.minorTicks )

https://pic./2020/06/22/8e66c191eae11.png

fig.axes: [<matplotlib.axes._subplots.AxesSubplot object at 0x000001C7E5D332B0>] 

ax.xaxis: XAxis(54.0,36.0)
ax.yaxis: YAxis(54.0,36.0) 

ax.xaxis.majorTicks: [<matplotlib.axis.XTick object at 0x000001C7E5D54898>, <matplotlib.axis.XTick object at 0x000001C7E5D54860>, <matplotlib.axis.XTick object at 0x000001C7F8DB6B38>, <matplotlib.axis.XTick object at 0x000001C7F8DB6D30>, <matplotlib.axis.XTick object at 0x000001C7F8DCC470>, <matplotlib.axis.XTick object at 0x000001C7F8DCC908>] 

ax.yaxis.majorTicks: [<matplotlib.axis.YTick object at 0x000001C7E5D685C0>, <matplotlib.axis.YTick object at 0x000001C7E5D54F60>, <matplotlib.axis.YTick object at 0x000001C7F8DCCC88>, <matplotlib.axis.YTick object at 0x000001C7F8DCC8D0>, <matplotlib.axis.YTick object at 0x000001C7F8DD34E0>, <matplotlib.axis.YTick object at 0x000001C7F8DD3668>] 

ax.xaxis.minorTicks: [<matplotlib.axis.XTick object at 0x000001C7F8DA16A0>]
ax.yaxis.minorTicks: [<matplotlib.axis.YTick object at 0x000001C7F8DAA940>]

从打印结果可看出坐标系、坐标轴和刻度都是对象。细看一下发现 xaxis 和 yaxis 上面都有 6 个主刻度 (majorTicks)。

此外,由坐标系和坐标轴指向同一个图 (侧面验证了图、坐标系和坐标轴的层级性)。

1
2
3
print( 'axes.figure:', ax.figure )
print( 'xaxis.figure:', xax.figure )
print( 'yaxis.figure:', yax.figure )
axes.figure: Figure(432x288)
xaxis.figure: Figure(432x288)
yaxis.figure: Figure(432x288)

创造完以上四个容器元素后,可在上面添加各种基础元素,比如:

  • 在坐标轴和刻度上添加标签

  • 在坐标系中添加线、点、网格、图例和文字

  • 在图中添加图例

如下图所示:

https://pic./2020/06/22/a2ea988568aa5.png

接下来四节分别介绍四大容器,首先从「图」开始。

1.2 图

图是整个层级的顶部。

在图中可以添加基本元素「文字」。

1
2
3
4
5
plt.figure()
plt.text( 0.5, 0.5, 'Figure', ha='center', 
          va='center', size=20, alpha=0.5 )
plt.xticks([]), plt.yticks([])
plt.show()

https://pic./2020/06/22/d9d68daccb115.png

用 plt.text() 函数,其参数解释如下:

  • 第一、二个参数是指横轴和纵轴坐标

  • 第三个参数字符是指要显示的内容

  • ha, va 是横向和纵向位置

  • size 设置字体大小

  • alpha 设置字体透明度 (0.5 是半透明)

在图中可以添加基本元素「图片」。

1
2
3
4
5
6
7
8
import numpy as np
from PIL import Image
plt.figure()
plt.xticks([]), plt.yticks([])
im = np.array(Image.open('images/小白.jpg'))
#im = plt.imread('images/小白.jpg')   # Mc: 这种方式打开也可以
plt.imshow(im)
plt.show()

https://pic./2020/06/22/747636ce5ccae.png

用 Image.open() 将图片转成像素存在 ndarray 中,再用 plt.imshow() 展示。

在图中可以添加基本元素「折线」。

1
2
3
plt.figure()
plt.plot( [0,1],[0,1] )
plt.show()

https://pic./2020/06/22/fc3e7d3b8c1f9.png

plt.plot() 函数是用来画折线图的,前两个参数分别是 x 和 y,该函数会在第二节细讲。

当我们每次说画东西,看起来是在图 (Figure) 里面进行的,实际上是在坐标系 (Axes) 里面进行的。一幅图中可以有多个坐标系,因此在坐标系里画东西更方便 (有些设置使用起来也更灵活)。

下面来看看层级中排名第二的「坐标系」。

1.3 坐标系 & 子图

一幅图 (Figure) 中可以有多个坐标系 (Axes),那不是说一幅图中有多幅子图 (Subplot),因此坐标系和子图是不是同样的概念?

在绝大多数情况下是的,两者有一点细微差别:

  • 子图在母图中的网格结构一定是规则的

  • 坐标系在母图中的网格结构可以是不规则的

由此可见,子图是坐标系的一个特例,来我们先研究特例。

子图

把图想成矩阵,那么子图就是矩阵中的元素,因此可像定义矩阵那样定义子图 - (子图行数、子图列数、第几个子图)。

subplot(rows, columns, i-th plots)

文字解释起来有些晦涩,看代码和图就好懂了。

1×2 子图

1
2
3
4
5
6
7
8
9
plt.subplot(2,1,1)
plt.xticks([]),plt.yticks([])#隐藏坐标
plt.text(0.5, 0.5, 'subplot(2,1,1)', ha='center', va='center', size=20, alpha=.5 )

plt.subplot(2,1,2)
plt.xticks([]), plt.yticks([])
plt.text( 0.5, 0.5, 'subplot(2,1,2)', ha='center', va='center', size=20, alpha=.5 )

plt.show()

https://pic./2020/06/22/bf74280c48199.png

这两个子图类似于一个列向量

  • subplot(2,1,1) 是第一幅

  • subplot(2,1,2) 是第二幅

声明完子图后,下面所有代码就只在这幅子图上生效,直到声明下一幅子图。

2×1 子图

1
2
3
4
5
6
7
8
9
plt.subplot(1,2,1)
plt.xticks([]),plt.yticks([])
plt.text(0.5, 0.5, 'subplot(1,2,1)', ha='center', va='center', size=20, alpha=.5 )

plt.subplot(1,2,2)
plt.xticks([]), plt.yticks([])
plt.text( 0.5, 0.5, 'subplot(1,2,2)', ha='center', va='center', size=20, alpha=.5 )

plt.show()

https://pic./2020/06/22/9b61c34342028.png

这两个子图类似于一个行向量

  • subplot(1,2,1) 是第一幅

  • subplot(1,2,2) 是第二幅

创建包含subplot网格的figure是一个非常常见的任务,matplotlib有一个更为方便的方法plt.subplots,它可以创建一个新的Figure,并返回一个含有已创建的subplot对象的NumPy数组。这是非常实用的,因为可以轻松地对axes数组进行索引,就好像是一个二维数组一样,例如axes[0,1]。你还可以通过sharex和sharey指定subplot应该具有相同的X轴或Y轴。在比较相同范围的数据时,这也是非常实用的,否则,matplotlib会自动缩放各图表的界限。

2×2 子图

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
fig, axes = plt.subplots(nrows=2, ncols=2)

# 可以轻松地对axes数组进行索引,就好像是一个二维数组一样
# axes[0,0].set( xticks=[], yticks=[] )
# s = 'My subplot'
# axes[0,0].text( 0.5, 0.3, s, ha='center', va='center', size=20, alpha=.5 )

for i,ax in enumerate(axes.flat):    #也可以axes.flatten()打平. flat将数组转换为1-D的迭代器,可以用for访问数组每一个元素;而flatten将数组的副本转换为一维(1-D),并返回
    ax.set( xticks=[], yticks=[] )
    s = 'subplot(2,2,' + str(i) + ')'
    ax.text( 0.5, 0.5, s, ha='center', va='center', size=20, alpha=.5 )

plt.show()

https://pic./2020/06/22/9b61c34342028.png

这次我们用过坐标系来生成子图 (子图是坐标系的特例嘛),第 1 行

fig, axes = plt.subplots(nrows=2, ncols=2)

得到的 axes 是一个 2×2 的对象。在第 8行的 for 循环中用 axes.flat 将其打平,然后在每个 ax 上生成子图。

坐标系

坐标系比子图更通用,有两种生成方式

  • 用 gridspec 包加上 subplot()

gridspec用于生成一个标准的虚拟网格,后面可以对它进行切片处理生成不规则的图

  • 用 plt.axes()

不规则网格

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import matplotlib.gridspec as gridspec
G = gridspec.GridSpec(3,3)#三行三列

ax1 = plt.subplot(G[0,:])
plt.xticks([]),plt.yticks([])
plt.text( 0.5, 0.5, 'Axes 1', ha='center', va='center', size=20, alpha=.5 )

ax2 = plt.subplot(G[1,:-1])#只有序号为1的行
plt.xticks([]),plt.yticks([])
plt.text( 0.5, 0.5, 'Axes 2', ha='center', va='center', size=20, alpha=.5 )

ax3 = plt.subplot(G[1:,-1])#序号为1以后的行  1:
plt.xticks([]),plt.yticks([])
plt.text( 0.5, 0.5, 'Axes 3', ha='center', va='center', size=20, alpha=.5 )

ax4 = plt.subplot(G[-1,0])
plt.xticks([]),plt.yticks([])
plt.text( 0.5, 0.5, 'Axes 4', ha='center', va='center', size=20, alpha=.5 )

ax5 = plt.subplot(G[-1,-2])
plt.xticks([]),plt.yticks([])
plt.text( 0.5, 0.5, 'Axes 5', ha='center', va='center', size=20, alpha=.5 )

plt.show()

https://pic./2020/06/22/ba888daa3cc27.png

第 2 行将整幅图分成 3×3 份赋值给 G,第 4, 8, 12, 16, 20 行分别用

plt.subplot(G[]) 

生成五个坐标系。G[] 里面的切片和 Numpy 数组用法一样:

  • G[0, :] = 图的第一行 (Axes 1)

  • G[1, :-1] = 图的第二行,第二三列 (Axes 2)

  • G[1:, -1] = 图的第二三行,第三列 (Axes 3)

  • G[-1, 0] = 图的第三行,第一列 (Axes 4)

  • G[-1, -2] = 图的第三行,第二列 (Axes 5)

大图套小图

1
2
3
4
5
6
7
plt.axes([0.1,0.1,0.8,0.8])
plt.xticks([]),plt.yticks([])
plt.text( 0.6, 0.6, 'axes([0.1,0.1,0.8,0.8])', ha='center', va='center', size=20, alpha=.5 )

plt.axes([0.2,0.2,0.3,0.3])
plt.xticks([]),plt.yticks([])
plt.text( 0.5, 0.5, 'axes([0.2,0.2,0.3,0.3])', ha='center', va='center', size=20, alpha=.5 )
Text(0.5, 0.5, 'axes([0.2,0.2,0.3,0.3])')

https://pic./2020/06/22/ba888daa3cc27.png

第 1 和 5 行分别用

plt.axes([l,b,w,h])

其中 [l, b, w, h] 可以定义坐标系

  • l 代表坐标系左边到 Figure 左边的水平距离

  • b 代表坐标系底边到 Figure 底边的垂直距离

  • w 代表坐标系的宽度

  • h 代表坐标系的高度

如果 l, b, w, h 都小于 1,那它们是标准化 (normalized) 后的距离。比如 Figure 底边长度为 10, 坐标系底边到它的垂直距离是 2,那么 b = 2/10 = 0.2。

重叠图

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
plt.axes([0.1,0.1,0.5,0.5])
plt.xticks([]),plt.yticks([])
plt.text( 0.1, 0.1, 'axes([0.1,0.1,0.5,0.5])', ha='left', va='center', size=16, alpha=.5 )

plt.axes([0.2,0.2,0.5,0.5])
plt.xticks([]),plt.yticks([])
plt.text( 0.1, 0.1, 'axes([0.2,0.2,0.5,0.5])', ha='left', va='center', size=16, alpha=.5 )

plt.axes([0.3,0.3,0.5,0.5])
plt.xticks([]),plt.yticks([])
plt.text( 0.1, 0.1, 'axes([0.3,0.3,0.5,0.5])', ha='left', va='center', size=16, alpha=.5 )

plt.axes([0.4,0.4,0.5,0.5])
plt.xticks([]),plt.yticks([])
plt.text( 0.1, 0.1, 'axes([0.4,0.4,0.5,0.5])', ha='left', va='center', size=16, alpha=.5 )

plt.show()

https://pic./2020/06/22/7dfa80e3c2097.png

不解释,懂了 [l, b, w, h] 的意思这幅重叠图应该知道怎么生成了。

在本小节最后,总结一下两种生成单个坐标系的方法 (生成多个坐标系可以类推)。

两种生成坐标系的推荐代码

代码 1 同时生成图和坐标系

1
2
3
4
fig,ax = plt.subplots()
ax.set( xticks=[0.2,0.4,0.6],yticks=[0.2,0.4] )
s = 'style 1\n\nfig, ax = plt.subplots()\nax.plot()'
ax.text( 0.5, 0.5, s, ha='center', va='center', size=16, alpha=.5 );

https://pic./2020/06/22/b74a77c9e5182.png

代码 2 先生成图,再添加坐标系

1
2
3
4
5
fig = plt.figure()#初始化图
ax = fig.add_subplot(1,1,1)
ax.set( xticks=[],yticks=[] )
s = 'style 2\n\nfig, ax = plt.subplots()\nax = fig.add_subplot(1,1,1)\nax.plot()'
ax.text( 0.5, 0.5, s, ha='center', va='center', size=16, alpha=.5 );

https://pic./2020/06/22/36229045077fc.png

超级细心的读者可能会发现,上面所有的图都看不到坐标轴和刻度啊,是的,我是故意这样做的,在深度研究坐标系和子图时,剔除不必要的信息,用的是以下代码 (将刻度设为空集 []):

plt.xticks([]), plt.yticks([])

ax.set( xticks=[], yticks=[] )

现在是时候来看看层级中排名第三的「坐标轴」。

1.4 坐标轴

一个坐标系 (Axes),通常是二维,有两条坐标轴 (Axis):

  • 横轴:XAxis

  • 纵轴:YAxis

每个坐标轴都包含两个元素

  • 容器类元素「刻度」,该对象里还包含刻度本身刻度标签

  • 基础类元素「标签」,该对象包含的是坐标轴标签

「刻度」和「标签」都是对象,下面代码通过改变它们一些属性值来进行可视化。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
fig,ax = plt.subplots()
ax.set_xlabel('Label on x-axis')
ax.set_ylabel('Label on y-axis')

for label in ax.xaxis.get_ticklabels():#设定刻度标签
    #label is a Text instance
    label.set_color( dt_hex )#设定颜色
    label.set_rotation(45)#设定字体逆时针旋转角度
    label.set_fontsize(20)#设定字体大小
    
for line in ax.yaxis.get_ticklines():#设定对象的刻度本身 (即一条短线)
    #line is a Line2D instance
    line.set_color( r_hex )
    line.set_markersize(500)
    line.set_markeredgewidth(30)
    
plt.show()

https://pic./2020/06/22/2f880db6a9bf7.png

第 2 和 3 行打印出 x 轴和 y 轴的标签。

第 5 到 9 行处理「刻度」对象里的刻度标签,将它颜色设定为深青色,字体大小为 20,旋转度 45 度。

第 11 到 15 行处理「标签」对象的刻度本身 (即一条短线),将它颜色设定为红色,标记长度和宽度为 500 和 30 (夸张了些,但就为大家看清楚这条代表刻度的短线!)。

万物皆对象,坐标轴也不例外,下面代码打印出 x 轴的标签、刻度位置点、刻度标签、刻度线,刻度标签位置、主刻度。

1
2
3
4
5
6
print( ax.xaxis.get_label() )#x 轴的标签
print( ax.xaxis.get_ticklocs() )#x 轴的刻度位置点
print( ax.xaxis.get_ticklabels() )#x 轴的刻度标签
print( ax.xaxis.get_ticklines() )#x 刻度线
print( ax.xaxis.get_ticks_position() )#x 轴的刻度标签位置
print( ax.xaxis.get_major_ticks() )#x 轴的主刻度
Text(0.5,17.2,'Label on x-axis')
[0.  0.2 0.4 0.6 0.8 1. ]
<a list of 6 Text major ticklabel objects>
<a list of 12 Line2D ticklines objects>
bottom
[<matplotlib.axis.XTick object at 0x000000000A5DDCF8>, <matplotlib.axis.XTick object at 0x00000000087E5A58>, <matplotlib.axis.XTick object at 0x0000000009C97F28>, <matplotlib.axis.XTick object at 0x000000000A5FA6A0>, <matplotlib.axis.XTick object at 0x000000000A5FACF8>, <matplotlib.axis.XTick object at 0x000000000A600390>]

问题:其他都好懂,比如 6 个刻度标签,但为什么有 12 条刻度线?不应该是 6 条吗?

get_ticklines 返回12个对象是因为将左侧(tick1line)与右侧(tick2line)的tickline都返回了,如果右侧的label也是开启的,get_ticklabels也会返回12个。

下面来看看层级中排名第四也是最后的「刻度」。

1.5 刻度

刻度 (Tick) 其实在坐标轴那节已经讲过了,它核心内容就是

  • 一条短线 (刻度本身)

  • 一串字符 (刻度标签)

1.6 基础元素

目前,我们已经介绍四个最重要的容器以及它们之间的层级

Figure → Axes → Axis → Ticks

图 → 坐标系 → 坐标轴 → 刻度

但要画出一幅有内容的图,还需要在容器里添加基础元素比如线 (line), 点 (marker), 文字 (text), 图例 (legend), 网格 (grid), 标题 (title), 图片 (image) 等,具体来说

  • 画一条线,用 plt.plot() 或 ax.plot()

  • 画个记号,用 plt.scatter() 或 ax.scatter()

  • 添加文字,用 plt.text() 或 ax.text()

  • 添加图例,用 plt.legend() 或 ax.legend()

  • 添加图片,用 plt.imshow() 或 ax.imshow()

最后用 Matplotlib 官网的图来总结所有元素。

https://pic./2020/06/22/f8e98b1214984.png

现在你基本理解了 Matplotlib 里面的绘图逻辑和元素,下两节分别从不同维度 (深度和广度) 研究如何画图:

  • 第二节只研究一种类型的图「折线图」,但从头到尾不断根据需求添加元素完善它。深度研究做到完美!

  • 第三节研究四种类型的图 (展示数据的分布、联系、对比和组成),却没在美感上下功夫,广度研究满足目的!

但读完后两节后,你应该可以在各种类型的图上做到完美。

2 画美感图

本节记录着老板让斯蒂文绘图不断提需求直到把他逼疯的一段对话。

https://pic./2020/06/22/2f880db6a9bf7.png

2.1 画第一幅图

https://pic./2020/06/22/c60e4ae436abd.png

首先用 pd.read_csv 函数从存好的 S&P500.csv,截屏如下:

https://pic./2020/06/22/dbe61df238fbf.png

该函数中三个参数代表:

  • index_col = 0 是说把第一列 Date 当成行标签 (index)

  • parse_dates = True 是说把行标签转成 date 对象

  • dayFirst = True 是说日期是 DD/MM/YYYY 这样的格式

1
2
3
4
5
6
7
import pandas as pd

data = pd.read_csv( 'data/S&P500.csv', 
                    index_col=0, 
                    parse_dates=True,
                    dayfirst=True )
data.head(3).append(data.tail(3))

Open High Low Close Adj Close Volume
Date
1950-01-03 16.660000 16.660000 16.660000 16.660000 16.660000 1260000
1950-01-04 16.850000 16.850000 16.850000 16.850000 16.850000 1890000
1950-01-05 16.930000 16.930000 16.930000 16.930000 16.930000 2550000
2019-04-22 2898.780029 2909.510010 2896.350098 2907.969971 2907.969971 2997950000
2019-04-23 2909.989990 2936.310059 2908.530029 2933.679932 2933.679932 3635030000
2019-04-24 2934.000000 2936.830078 2926.050049 2927.250000 2927.250000 3448960000

S&P 500 的数据从 1950 年 1 月 3 号开始,老板只需要 2007 年 1 月 1 日到 2010 年 1 月 1 日的数据。做个切片即可,存储成 spx。

1
2
spx = data[['Adj Close']].loc['2007-01-01':'2010-01-01']
spx.head(3).append(spx.tail(3))

Adj Close
Date
2007-01-03 1416.599976
2007-01-04 1418.339966
2007-01-05 1409.709961
2009-12-29 1126.199951
2009-12-30 1126.420044
2009-12-31 1115.099976

spx 是个 DataFrame,将它的值一个个画出折线图只需用 plt.plot() 函数,展示在屏幕需用 plt.show()。

1
2
plt.plot( spx.values )
plt.show()

https://pic./2020/06/22/7b172c15bc112.png

在 plot() 函数里面只有变量 y 时 (y = spx.values),那么自变量就是默认赋值为 range(len(y))。

此外我们没有设置图的尺寸,像素、线的颜色宽度、坐标轴的刻度和标签、图例、标题等等,所有设置都用的是 matplotlib 的默认设置。

此图虽丑,但也满足了老板的需求,即标准普尔 500 指数在 2007-2010 的走势图。斯蒂文提交给了老板。

2.2 图的默认设置

https://pic./2020/06/22/e38652ba5d142.png

要修改图就必须知道它的属性,用 plt.rcParams 可查看上图的所有默认属性 (非常多的属性值)。

1
plt.rcParams
RcParams({'_internal.classic_mode': False,
          'agg.path.chunksize': 0,
          'animation.avconv_args': [],
          'animation.avconv_path': 'avconv',
          'animation.bitrate': -1,
          'animation.codec': 'h264',
          'animation.convert_args': [],
          'animation.convert_path': 'convert',
          'animation.embed_limit': 20.0,
          'animation.ffmpeg_args': [],
          'animation.ffmpeg_path': 'ffmpeg',
          'animation.frame_format': 'png',
          'animation.html': 'none',
          'animation.html_args': [],
          'animation.mencoder_args': [],
          'animation.mencoder_path': 'mencoder',
          'animation.writer': 'ffmpeg',
          'axes.autolimit_mode': 'data',
          'axes.axisbelow': 'line',
          'axes.edgecolor': 'k',
          'axes.facecolor': 'w',
          'axes.formatter.limits': [-7, 7],
          'axes.formatter.min_exponent': 0,
          'axes.formatter.offset_threshold': 4,
          'axes.formatter.use_locale': False,
          'axes.formatter.use_mathtext': False,
          'axes.formatter.useoffset': True,
          'axes.grid': False,
          'axes.grid.axis': 'both',
          'axes.grid.which': 'major',
          'axes.hold': None,
          'axes.labelcolor': 'k',
          'axes.labelpad': 4.0,
          'axes.labelsize': 'medium',
          'axes.labelweight': 'normal',
          'axes.linewidth': 0.8,
          'axes.prop_cycle': cycler('color', ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf']),
          'axes.spines.bottom': True,
          'axes.spines.left': True,
          'axes.spines.right': True,
          'axes.spines.top': True,
          'axes.titlepad': 6.0,
          'axes.titlesize': 'large',
          'axes.titleweight': 'normal',
          'axes.unicode_minus': True,
          'axes.xmargin': 0.05,
          'axes.ymargin': 0.05,
          'axes3d.grid': True,
          'backend': 'module://ipykernel.pylab.backend_inline',
          'backend.qt4': 'PyQt4',
          'backend.qt5': 'PyQt5',
          'backend_fallback': True,
          'boxplot.bootstrap': None,
          'boxplot.boxprops.color': 'k',
          'boxplot.boxprops.linestyle': '-',
          'boxplot.boxprops.linewidth': 1.0,
          'boxplot.capprops.color': 'k',
          'boxplot.capprops.linestyle': '-',
          'boxplot.capprops.linewidth': 1.0,
          'boxplot.flierprops.color': 'k',
          'boxplot.flierprops.linestyle': 'none',
          'boxplot.flierprops.linewidth': 1.0,
          'boxplot.flierprops.marker': 'o',
          'boxplot.flierprops.markeredgecolor': 'k',
          'boxplot.flierprops.markerfacecolor': 'none',
          'boxplot.flierprops.markersize': 6.0,
          'boxplot.meanline': False,
          'boxplot.meanprops.color': 'C2',
          'boxplot.meanprops.linestyle': '--',
          'boxplot.meanprops.linewidth': 1.0,
          'boxplot.meanprops.marker': '^',
          'boxplot.meanprops.markeredgecolor': 'C2',
          'boxplot.meanprops.markerfacecolor': 'C2',
          'boxplot.meanprops.markersize': 6.0,
          'boxplot.medianprops.color': 'C1',
          'boxplot.medianprops.linestyle': '-',
          'boxplot.medianprops.linewidth': 1.0,
          'boxplot.notch': False,
          'boxplot.patchartist': False,
          'boxplot.showbox': True,
          'boxplot.showcaps': True,
          'boxplot.showfliers': True,
          'boxplot.showmeans': False,
          'boxplot.vertical': True,
          'boxplot.whiskerprops.color': 'k',
          'boxplot.whiskerprops.linestyle': '-',
          'boxplot.whiskerprops.linewidth': 1.0,
          'boxplot.whiskers': 1.5,
          'contour.corner_mask': True,
          'contour.negative_linestyle': 'dashed',
          'datapath': 'G:\\ProgramData\\Anaconda3\\lib\\site-packages\\matplotlib\\mpl-data',
          'date.autoformatter.day': '%Y-%m-%d',
          'date.autoformatter.hour': '%m-%d %H',
          'date.autoformatter.microsecond': '%M:%S.%f',
          'date.autoformatter.minute': '%d %H:%M',
          'date.autoformatter.month': '%Y-%m',
          'date.autoformatter.second': '%H:%M:%S',
          'date.autoformatter.year': '%Y',
          'docstring.hardcopy': False,
          'errorbar.capsize': 0.0,
          'examples.directory': '',
          'figure.autolayout': False,
          'figure.dpi': 72.0,
          'figure.edgecolor': (1, 1, 1, 0),
          'figure.facecolor': (1, 1, 1, 0),
          'figure.figsize': [6.0, 4.0],
          'figure.frameon': True,
          'figure.max_open_warning': 20,
          'figure.subplot.bottom': 0.125,
          'figure.subplot.hspace': 0.2,
          'figure.subplot.left': 0.125,
          'figure.subplot.right': 0.9,
          'figure.subplot.top': 0.88,
          'figure.subplot.wspace': 0.2,
          'figure.titlesize': 'large',
          'figure.titleweight': 'normal',
          'font.cursive': ['Apple Chancery',
                           'Textile',
                           'Zapf Chancery',
                           'Sand',
                           'Script MT',
                           'Felipa',
                           'cursive'],
          'font.family': ['sans-serif'],
          'font.fantasy': ['Comic Sans MS',
                           'Chicago',
                           'Charcoal',
                           'ImpactWestern',
                           'Humor Sans',
                           'xkcd',
                           'fantasy'],
          'font.monospace': ['DejaVu Sans Mono',
                             'Bitstream Vera Sans Mono',
                             'Computer Modern Typewriter',
                             'Andale Mono',
                             'Nimbus Mono L',
                             'Courier New',
                             'Courier',
                             'Fixed',
                             'Terminal',
                             'monospace'],
          'font.sans-serif': ['DejaVu Sans',
                              'Bitstream Vera Sans',
                              'Computer Modern Sans Serif',
                              'Lucida Grande',
                              'Verdana',
                              'Geneva',
                              'Lucid',
                              'Arial',
                              'Helvetica',
                              'Avant Garde',
                              'sans-serif'],
          'font.serif': ['DejaVu Serif',
                         'Bitstream Vera Serif',
                         'Computer Modern Roman',
                         'New Century Schoolbook',
                         'Century Schoolbook L',
                         'Utopia',
                         'ITC Bookman',
                         'Bookman',
                         'Nimbus Roman No9 L',
                         'Times New Roman',
                         'Times',
                         'Palatino',
                         'Charter',
                         'serif'],
          'font.size': 10.0,
          'font.stretch': 'normal',
          'font.style': 'normal',
          'font.variant': 'normal',
          'font.weight': 'normal',
          'grid.alpha': 1.0,
          'grid.color': '#b0b0b0',
          'grid.linestyle': '-',
          'grid.linewidth': 0.8,
          'hatch.color': 'k',
          'hatch.linewidth': 1.0,
          'hist.bins': 10,
          'image.aspect': 'equal',
          'image.cmap': 'viridis',
          'image.composite_image': True,
          'image.interpolation': 'nearest',
          'image.lut': 256,
          'image.origin': 'upper',
          'image.resample': True,
          'interactive': True,
          'keymap.all_axes': ['a'],
          'keymap.back': ['left', 'c', 'backspace'],
          'keymap.forward': ['right', 'v'],
          'keymap.fullscreen': ['f', 'ctrl+f'],
          'keymap.grid': ['g'],
          'keymap.grid_minor': ['G'],
          'keymap.home': ['h', 'r', 'home'],
          'keymap.pan': ['p'],
          'keymap.quit': ['ctrl+w', 'cmd+w', 'q'],
          'keymap.quit_all': ['W', 'cmd+W', 'Q'],
          'keymap.save': ['s', 'ctrl+s'],
          'keymap.xscale': ['k', 'L'],
          'keymap.yscale': ['l'],
          'keymap.zoom': ['o'],
          'legend.borderaxespad': 0.5,
          'legend.borderpad': 0.4,
          'legend.columnspacing': 2.0,
          'legend.edgecolor': '0.8',
          'legend.facecolor': 'inherit',
          'legend.fancybox': True,
          'legend.fontsize': 'medium',
          'legend.framealpha': 0.8,
          'legend.frameon': True,
          'legend.handleheight': 0.7,
          'legend.handlelength': 2.0,
          'legend.handletextpad': 0.8,
          'legend.labelspacing': 0.5,
          'legend.loc': 'best',
          'legend.markerscale': 1.0,
          'legend.numpoints': 1,
          'legend.scatterpoints': 1,
          'legend.shadow': False,
          'lines.antialiased': True,
          'lines.color': 'C0',
          'lines.dash_capstyle': 'butt',
          'lines.dash_joinstyle': 'round',
          'lines.dashdot_pattern': [6.4, 1.6, 1.0, 1.6],
          'lines.dashed_pattern': [3.7, 1.6],
          'lines.dotted_pattern': [1.0, 1.65],
          'lines.linestyle': '-',
          'lines.linewidth': 1.5,
          'lines.marker': 'None',
          'lines.markeredgewidth': 1.0,
          'lines.markersize': 6.0,
          'lines.scale_dashes': True,
          'lines.solid_capstyle': 'projecting',
          'lines.solid_joinstyle': 'round',
          'markers.fillstyle': 'full',
          'mathtext.bf': 'sans:bold',
          'mathtext.cal': 'cursive',
          'mathtext.default': 'it',
          'mathtext.fallback_to_cm': True,
          'mathtext.fontset': 'dejavusans',
          'mathtext.it': 'sans:italic',
          'mathtext.rm': 'sans',
          'mathtext.sf': 'sans',
          'mathtext.tt': 'monospace',
          'nbagg.transparent': True,
          'patch.antialiased': True,
          'patch.edgecolor': 'k',
          'patch.facecolor': 'C0',
          'patch.force_edgecolor': False,
          'patch.linewidth': 1.0,
          'path.effects': [],
          'path.simplify': True,
          'path.simplify_threshold': 0.1111111111111111,
          'path.sketch': None,
          'path.snap': True,
          'pdf.compression': 6,
          'pdf.fonttype': 3,
          'pdf.inheritcolor': False,
          'pdf.use14corefonts': False,
          'pgf.debug': False,
          'pgf.preamble': [],
          'pgf.rcfonts': True,
          'pgf.texsystem': 'xelatex',
          'plugins.directory': '.matplotlib_plugins',
          'polaraxes.grid': True,
          'ps.distiller.res': 6000,
          'ps.fonttype': 3,
          'ps.papersize': 'letter',
          'ps.useafm': False,
          'ps.usedistiller': False,
          'savefig.bbox': None,
          'savefig.directory': '~',
          'savefig.dpi': 'figure',
          'savefig.edgecolor': 'w',
          'savefig.facecolor': 'w',
          'savefig.format': 'png',
          'savefig.frameon': True,
          'savefig.jpeg_quality': 95,
          'savefig.orientation': 'portrait',
          'savefig.pad_inches': 0.1,
          'savefig.transparent': False,
          'scatter.marker': 'o',
          'svg.fonttype': 'path',
          'svg.hashsalt': None,
          'svg.image_inline': True,
          'text.antialiased': True,
          'text.color': 'k',
          'text.hinting': 'auto',
          'text.hinting_factor': 8,
          'text.latex.preamble': [],
          'text.latex.preview': False,
          'text.latex.unicode': False,
          'text.usetex': False,
          'timezone': 'UTC',
          'tk.window_focus': False,
          'toolbar': 'toolbar2',
          'verbose.fileo': 'sys.stdout',
          'verbose.level': 'silent',
          'webagg.open_in_browser': True,
          'webagg.port': 8988,
          'webagg.port_retries': 50,
          'xtick.alignment': 'center',
          'xtick.bottom': True,
          'xtick.color': 'k',
          'xtick.direction': 'out',
          'xtick.labelsize': 'medium',
          'xtick.major.bottom': True,
          'xtick.major.pad': 3.5,
          'xtick.major.size': 3.5,
          'xtick.major.top': True,
          'xtick.major.width': 0.8,
          'xtick.minor.bottom': True,
          'xtick.minor.pad': 3.4,
          'xtick.minor.size': 2.0,
          'xtick.minor.top': True,
          'xtick.minor.visible': False,
          'xtick.minor.width': 0.6,
          'xtick.top': False,
          'ytick.alignment': 'center_baseline',
          'ytick.color': 'k',
          'ytick.direction': 'out',
          'ytick.labelsize': 'medium',
          'ytick.left': True,
          'ytick.major.left': True,
          'ytick.major.pad': 3.5,
          'ytick.major.right': True,
          'ytick.major.size': 3.5,
          'ytick.major.width': 0.8,
          'ytick.minor.left': True,
          'ytick.minor.pad': 3.4,
          'ytick.minor.right': True,
          'ytick.minor.size': 2.0,
          'ytick.minor.visible': False,
          'ytick.minor.width': 0.6,
          'ytick.right': False})

看完上面的属性值后,斯蒂文决定在图表尺寸 (figsize),每英寸像素点 (dpi),线条颜色 (color),线条风格 (linestyle),线条宽度 (linewidth),横纵轴刻度 (xticks, yticks),横纵轴边界 (xlim, ylim) 做改进。那就先看看它们的默认属性值是多少。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
print( 'figure size:', plt.rcParams['figure.figsize'] )
print( 'figure dpi:',plt.rcParams['figure.dpi'] )
print( 'line color:',plt.rcParams['lines.color'] )
print( 'line style:',plt.rcParams['lines.linestyle'] )
print( 'line width:',plt.rcParams['lines.linewidth'] )

fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)
ax.plot( spx['Adj Close'].values )

print( 'xticks:', ax.get_xticks() )
print( 'yticks:', ax.get_yticks() )
print( 'xlim:', ax.get_xlim() )
print( 'ylim:', ax.get_ylim() )
figure size: [6.0, 4.0]
figure dpi: 72.0
line color: C0
line style: -
line width: 1.5
xticks: [-100.    0.  100.  200.  300.  400.  500.  600.  700.  800.]
yticks: [ 600.  800. 1000. 1200. 1400. 1600. 1800.]
xlim: (-37.75, 792.75)
ylim: (632.0990292500001, 1609.58102375)

https://pic./2020/06/22/2f880db6a9bf7.png

将属性值打印结果和图一起看一目了然。现在我们知道这张图大小是 6×4,每英寸像素有 72 个,线颜色 C0 代表是蓝色,风格 - 是连续线,宽度 1.5,等等。

斯蒂文现在有个“大胆”的想法,把这些默认属性值显性的在代码出写出来,画出来的跟什么设置都不写生成的图应该是一样的。来验证一下:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#Create a new figure of size 6×4 points, using 72 dots per inch
plt.figure( figsize=(6, 4), dpi=72)

#Plot using blue color (C0) with a continuous line of width 1.5 (pixels)
plt.plot( spx.values, color='C0', linewidth=1.5, linestyle='-')

#Set x ticks
plt.xticks( np.linspace(-100,800,10))

#Set y ticks
plt.yticks( np.linspace(600,1800,7))

#Set x limits
plt.xlim(-37.75, 792.75)

#Set y limits
plt.ylim(632.0990292500001, 1609.58102375)

#Show result on screen
plt.show()

https://pic./2020/06/22/2f880db6a9bf7.png

一模一样!

https://pic./2020/06/22/b14a096d43d95.png

老板将信将疑。。。

2.3 设置尺寸和 DPI

https://pic./2020/06/22/dc8dd84f82ad7.png

用 figsize 和 dpi 一起可以控制图的大小和像素。

函数 figsize(w,h) 决定图的宽和高 (单位是英寸),而属性 dpi 全称 dots per inches,测量每英寸多少像素。两个属性一起用,那么得到的图的像素为

(wdpi, hdpi)

套用在下面代码中,我们其实将图的大小设置成 16×6 平方英寸,而像素设置成 (1600, 600),因为 dpi = 100。

1
2
3
plt.figure( figsize=(16,6), dpi=100 )
plt.plot( spx.values )
plt.show()

https://pic./2020/06/22/56b8a279a85e2.png

运行代码生成大宽屏图!

2.4 设置颜色-风格-宽度

https://pic./2020/06/22/56b8a279a85e2.png

在 plt.plot() 用 color,linewidth 和 linestyle 属性一起可以控制折线的颜色 (上面定义的深青色)、宽度 (2 像素) 和风格 (连续线)。

1
2
3
4
plt.figure( figsize=(16,6), dpi=100 )
plt.plot( spx.values, color=dt_hex, 
          linewidth=2, linestyle='-' )
plt.show()

https://pic./2020/06/22/ec4edb9b9564a.png

现在线条更明显了,而深青色看起来也比较有品位。

2.5 设置边界

https://pic./2020/06/22/0e76dec3c7df5.png

下面代码第 2 行在图中 (fig) 添加了一个坐标系 (ax),然后所有操作都在 ax 里面完成,比如用

  • ax.plot() 来画折线

  • ax.set_xlim(), ax_set_ylim() 来设置横轴和纵轴的边界

1
2
3
4
5
6
7
fig = plt.figure( figsize=(16,6), dpi=100)
ax = fig.add_subplot(1,1,1)
x = spx.index
y = spx.values
ax.plot( x, y, color=dt_hex, linewidth=2, linestyle='-' )
#ax.set_xlim(['1/1/2007', '1/1/2010'])
#ax.set_ylim( y.min()*0.8, y.max()*1.2 );    #加分号则不打印y.min()*0.8, y.max()*1.2
[<matplotlib.lines.Line2D at 0x1c7fc574fd0>]

https://pic./2020/06/22/fca4caa7966dc.png

第 3 行的 x 是日期 (回顾 spx 是一个 DataFrame,行标签是日期)。

第 6 行将横轴的上下边界设为 2007-01-01 和 2010-01-01,只好是整个时间序列的起始日和终止日。

第 7 行将纵轴的上下边界设为 spx 的最小值的 0.8 倍和最大值的 1.2 倍。

现在横轴的刻度标签都是日期,比数字刻度带来的信息多;而 spx 图离顶部也有空间,看起来没那么挤。

2.6 设置刻度和标签

https://pic./2020/06/22/fca4caa7966dc.png

上图横轴的刻度个数 (老板说日期隔得有点开) 和标签显示 (老板说只有年月) 都是默认设置。为了满足老板的要求,斯蒂文只能手动设置,用以下两个函数:

  • 先用 ax.set_ticks() 设置出数值刻度

  • 再用 ax.set_xticklabels() 在对应的数值刻度上写标签

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
fig = plt.figure( figsize=(16,6), dpi=100)
ax = fig.add_subplot(1,1,1)
x = spx.index
y = spx.values
ax.plot( y, color=dt_hex, linewidth=2, linestyle='-' )

ax.set_xlim(-1, len(x)+1)
ax.set_ylim( y.min()*0.8, y.max()*1.2 )

ax.set_xticks( range(0,len(x),40))
ax.set_xticklabels( [x[i].strftime('%Y-%m-%d') for i in ax.get_xticks()], rotation=90 );

https://pic./2020/06/22/b1715ee99f111.png

第 7 行设置横轴的边界,下界是 - 1,上界是 len(x) +1。

第 10 行先设置横轴「数值刻度」为 range(0,len(x), 40),即 0, 40, 80, ….

第 11 行在这些「数值刻度」上写标签,即格式为 %Y-%m-%d 的日期。由于日期个数比较多,而且日期字符比较长,直接在图中显示出来会相互重叠非常难看。这里调节参数 rotation = 90 使得日期逆时针转了 90 度,看上图效果好多了。

现在横轴的刻度标签是带「年-月-日」的日期,而且标签的间隔刚刚好。

2.7 添加图例

https://pic./2020/06/22/6e6736a6cdb69.png

添加图例 (legend) 非常简单,只需要在 ax.plot() 里多设定一个参数 label,然后用

ax.legend()

其中 loc = 0 表示 matplotlib 自动安排一个最好位置显示图例,而 frameon = True 给图例加了外框。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
fig = plt.figure( figsize=(16,6), dpi=100)
ax = fig.add_subplot(1,1,1)
x = spx.index
y = spx.values
ax.plot( y, color=dt_hex, linewidth=2, linestyle='-',label='S&P500' )
ax.legend( loc=0, frameon=True )

ax.set_xlim(-1, len(x)+1)
ax.set_ylim( y.min()*0.8, y.max()*1.2 )

ax.set_xticks( range(0,len(x),40))
ax.set_xticklabels( [x[i].strftime('%Y-%m-%d') for i in ax.get_xticks()], rotation=90 );

https://pic./2020/06/22/b1715ee99f111.png

注意图的右上角多了图例 S&P500

2.8 添加第二幅图

https://pic./2020/06/22/21073d37eb846.png

在改进代码之前,先介绍一下 VIX 指数。


知识点

VIX 指数是芝加哥期权交易所 (CBOE) 市场波动率指数的交易代号,常见于衡量 S&P500 指数期权的隐含波动性,通常被称为「恐慌指数」,它是了解市场对未来30天市场波动性预期的一种衡量方法。

由其定义可知,S&P500 指数涨时,VIX 跌,而 S&P500 指数暴跌时,VIX 暴涨。

和之前一样,首先用 pd.read_csv 函数从存好的 VIX.csv 读取数据存成 DataFrame。

1
2
3
4
5
data = pd.read_csv( 'data/VIX.csv', index_col=0, 
                               parse_dates=True,
                               dayfirst=True )
vix = data[['Adj Close']].loc['2007-01-01':'2010-01-01']
vix.head(3).append(vix.tail(3))

Adj Close
Date
2007-01-03 12.040000
2007-01-04 11.510000
2007-01-05 12.140000
2009-12-29 20.010000
2009-12-30 19.959999
2009-12-31 21.680000

添加第二幅图也很简单,用两次 plt.plot() 或者 ax.plot() 即可。这里面用的是 plt 没用 ax,没有特殊原因,在本例中两者可以随意使用,但两者在使用「.methods」时有个小细节不知道大家注意到没有,

  • plt.xlim

  • plt.ylim

  • plt.xticks

  • ax.set_xlim

  • ax.set_ylim

  • ax_set_xticks

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
fig = plt.figure( figsize=(16,6), dpi=100)
x = spx.index
y1 = spx.values
y2 = vix.values
plt.plot( y1, color=dt_hex, linewidth=2, linestyle='-',label='S&P500' )
plt.plot( y2, color=r_hex, linewidth=2, linestyle='-',label='VIX' )
plt.legend( loc=0, frameon=True )

plt.xlim(-1, len(x)+1)
plt.ylim( np.vstack([y1,y2]).min()*0.8, np.vstack([y1,y2]).max()*1.2 )

x_tick =  range(0,len(x),40)
x_label = [x[i].strftime('%Y-%m-%d') for i in x_tick]
plt.xticks( x_tick, x_label, rotation=90 )
plt.show()

https://pic./2020/06/22/21073d37eb846.png

这图怎么成这样???VIX 怎么是一条平线?

2.9 两个坐标系 & 两幅子图

https://pic./2020/06/22/b2bebbb7e9e13.png

S&P500 的量纲都是千位数,而 VIX 的量刚是两位数,两者放在一起,那可不是 VIX 就像一条水平线一样。两种改进方式:

  1. 用两个坐标系 (two axes)

  2. 用两幅子图 (two subplots)

两个坐标系

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
fig = plt.figure( figsize=(16,6), dpi=100)
ax1 = fig.add_subplot(1,1,1)

x = spx.index
y1 = spx.values
y2 = vix.values

ax1.plot( y1, color=dt_hex, linewidth=2, linestyle='-',label='S&P500' )
ax1.set_xlim(-1, len(x)+1)
ax1.set_ylim( np.vstack([y1,y2]).min()*0.8, np.vstack([y1,y2]).max()*1.2 )

x_tick =  range(0,len(x),40)
x_label = [x[i].strftime('%Y-%m-%d') for i in x_tick]
ax1.set_xticks( x_tick )
ax1.set_xticklabels( x_label, rotation=90 )
ax1.legend( loc='upper left', frameon=True )

#Add a second axes
ax2 = ax1.twinx()
ax2.plot( y2, color=r_hex, linewidth=2, linestyle='-',label='VIX' )
ax2.legend( loc='upper right', frameon=True );

https://pic./2020/06/22/34e9e4a1e4ccc.png

用 ax1 和 ax2 就能实现在两个坐标系上画图,代码核心部分是第 19 行的

ax2 = ax1.twinx()

在每个坐标系下画图以及各种设置前面都讲的很清楚了。

Mc:股市那两条曲线的legend分开放在两侧,怎么看怎么别扭,还是放在一块显示比较好。

实现方式有二:

  1. 仅使用一个轴的legend()函数
  1. 使用figure.legend()
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
fig = plt.figure( figsize=(16,6), dpi=100)
ax1 = fig.add_subplot(1,1,1)

x = spx.index
y1 = spx.values
y2 = vix.values

lns1 = ax1.plot( y1, color=dt_hex, linewidth=2, linestyle='-',label='S&P500' )
ax1.set_xlim(-1, len(x)+1)
ax1.set_ylim( np.vstack([y1,y2]).min()*0.8, np.vstack([y1,y2]).max()*1.2 )

x_tick =  range(0,len(x),40)
x_label = [x[i].strftime('%Y-%m-%d') for i in x_tick]
ax1.set_xticks( x_tick )
ax1.set_xticklabels( x_label, rotation=90 )
# ax1.legend( loc='upper left', frameon=True )

#Add a second axes
ax2 = ax1.twinx()
lns2 = ax2.plot( y2, color=r_hex, linewidth=2, linestyle='-',label='VIX' )
# ax2.legend( loc='upper right', frameon=True );

# 方法一:仅使用一个轴的legend()函数
#lns = lns1+lns2
#labs = [l.get_label() for l in lns]
#ax2.legend(lns, labs, loc=0)

# 方法二:使用figure.legend()
fig.legend(loc=1, bbox_to_anchor=(0.88,1.05), bbox_transform=ax.transAxes)
<matplotlib.legend.Legend at 0x1c7fb007780>

https://pic./2020/06/22/6ad10f013f31f.png


两幅子图

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
plt.figure( figsize=(16,12), dpi=100)

# subplot 1
plt.subplot(2,1,1)
x = spx.index
y1 = spx.values

plt.plot( y1, color=dt_hex, linewidth=2, linestyle='-',label='S&P500' )
plt.xlim(-1, len(x)+1)
plt.ylim( y1.min()*0.8, y1.max()*1.2 )

x_tick =  range(0,len(x),40)
x_label = [x[i].strftime('%Y-%m-%d') for i in x_tick]
plt.xticks( x_tick, x_label, rotation=45 )
plt.legend( loc='upper left', frameon=True )

# subplot 2
plt.subplot(2,1,2)
y2 = vix.values

plt.plot( y2, color=r_hex, linewidth=2, linestyle='-',label='VIX' )
plt.xlim(-1, len(x)+1)
plt.ylim( y2.min()*0.8, y2.max()*1.2 )

plt.xticks( x_tick, x_label, rotation=45 )
plt.legend( loc='upper left', frameon=True )

plt.show()

https://pic./2020/06/22/6ad10f013f31f.png

定义 subplot(2,1,1) 和 subplot(2,1,2) 就能实现再两幅子图上画图。

在每幅子图上画图以及各种设置前面都讲的很清楚了。

这两种方法都可用,但在本例中,S&P500 和 VIX 放在一起 (用两个坐标系) 更能看出它们之间的关系,比如 2008 年 9 月到 2009 年 3 月的金融危机期间,S&P 500 在狂泻和 VIX 在飙升 。

2.10 设置标注

在金融危机时期,市场发生了 5 件大事,分别是

  • 2017-10-11: 牛市顶点

  • 2008-03-12: 贝尔斯登倒闭

  • 2008-09-15: 雷曼兄弟倒闭

  • 2009-01-20: 苏格兰皇家银行股票抛售

  • 2009-04-02: G20 峰会

https://pic./2020/06/22/8dd4932d1ecb4.png

加标注的代码略长,新内容为

  • 第 3-7 行的定义危机事件,以元组的列表存储

  • 第 26-34 行的事件标注,用到 annotate() 函数

1
from datetime import datetime
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
fig = plt.figure( figsize=(16,6), dpi=100)

crisis_data = [(datetime(2007, 10, 11), 'Peak of bull market'),
               (datetime(2008, 3, 12), 'Bear Stearns Fails'),
               (datetime(2008, 9, 15), 'Lehman Bankruptcy'),
               (datetime(2009, 1, 20), 'RBS Sell-off'),
               (datetime(2009, 4, 2), 'G20 Summit')]

ax1 = fig.add_subplot(1,1,1)

x = spx.index
y1 = spx.values
y2 = vix.values

ax1.plot( y1, color=dt_hex, linewidth=2, linestyle='-',label='S&P500' )
ax1.set_xlim(-1, len(x)+1)
ax1.set_ylim( np.vstack([y1,y2]).min()*0.8, np.vstack([y1,y2]).max()*1.2 )

x_tick =  range(0,len(x),40)
x_label = [x[i].strftime('%Y-%m-%d') for i in x_tick]
ax1.set_xticks( x_tick )
ax1.set_xticklabels( x_label, rotation=90 )

ax1.legend( loc='upper left', frameon=True )

for date, label in crisis_data:
    date = date.strftime('%Y-%m-%d')
    xi = x.get_loc(date)
    yi = spx.asof(date)
    ax1.scatter( xi, yi, 80, color=r_hex )
    ax1.annotate( label, xy=(xi, yi + 60),
                  xytext=(xi, yi+300),
                  arrowprops=dict(facecolor='black',headwidth=4,width=1,headlength=6),
                  horizontalalignment='left',verticalalignment='top' )

verticalalignment:垂直对齐方式 ,参数:[ ‘center’ | ‘top’ | ‘bottom’ | ‘baseline’ ] horizontalalignment:水平对齐方式 ,参数:[ ‘center’ | ‘right’ | ‘left’ ]

1
2
3
4
5

#Add a second axes
ax2 = ax1.twinx()
ax2.plot( y2, color=r_hex, linewidth=2, linestyle='-',label='VIX' )
ax2.legend( loc='upper right', frameon=True );

https://pic./2020/06/22/ddc9686a18a81.png

从第 26 行开始,用 for 循环读取 crisis_data 里面每个日期 date 和事件 label。

第 28 和 29 行是获取每一个 date 在整个日期数组中的索引 xi,以及对应的 spx 值 yi。

第 30 行用 scatter() 函数画出一个圆点,标注事件在 spx 折现上的位置。

第 31 和 34 行是重头戏,在 annotate() 函数里设置了事件,箭头坐标(距离圆点中心位置),事件打印的坐标,箭头性质,以及对齐属性。

事件的确标注在图上了,但是效果像一坨~。

2.11 设置透明度

https://pic./2020/06/22/0683c79965491.png

为了把 VIX 折线弄得透明些,只用设置 ax2.plot() 里的 alpha 参数为 0.3,具体设什么值看你想要多透明,alpha 在 0 和 1 之间,0 是完全透明,1 是完全不透明。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
fig = plt.figure( figsize=(16,6), dpi=100)

crisis_data = [(datetime(2007, 10, 11), 'Peak of bull market'),
               (datetime(2008, 3, 12), 'Bear Stearns Fails'),
               (datetime(2008, 9, 15), 'Lehman Bankruptcy'),
               (datetime(2009, 1, 20), 'RBS Sell-off'),
               (datetime(2009, 4, 2), 'G20 Summit')]

ax1 = fig.add_subplot(1,1,1)

x = spx.index
y1 = spx.values
y2 = vix.values

ax1.plot( y1, color=dt_hex, linewidth=2, linestyle='-',label='S&P500' )
ax1.set_xlim(-1, len(x)+1)
ax1.set_ylim( np.vstack([y1,y2]).min()*0.8, np.vstack([y1,y2]).max()*1.2 )

x_tick =  range(0,len(x),40)
x_label = [x[i].strftime('%Y-%m-%d') for i in x_tick]
ax1.set_xticks( x_tick )
ax1.set_xticklabels( x_label, rotation=90 )

ax1.legend( loc='upper left', frameon=True )

for date, label in crisis_data:
    date = date.strftime('%Y-%m-%d')
    xi = x.get_loc(date)
    yi = spx.asof(date)
    ax1.scatter( xi, yi, 80, color=r_hex )
    ax1.annotate( label, xy=(xi, yi + 60),
                  xytext=(xi, yi+300),
                  arrowprops=dict(facecolor='black',headwidth=4,width=1,headlength=6),
                  horizontalalignment='left',verticalalignment='top' )

#Add a second axes
ax2 = ax1.twinx()

#设置透明度
ax2.plot( y2, color=r_hex, 
              linewidth=2, 
              linestyle='-', 
              label='VIX', 
              alpha=0.3 )

ax2.legend( loc='upper right', frameon=True );

https://pic./2020/06/22/adfe92cebb5ee.png

美如画!雷曼兄弟倒闭 (事件 3) 后 S&P 暴跌最厉害,而同期的 VIX 也飙到天际。在 G20 峰会 (事件 5) 过后,大国领导者一起解决金融危机问题,从那个点开始,S&P500 上涨 VIX 下跌。

经济总体平稳!风险总体可控!

https://pic./2020/06/22/a05225427775b.gif

2.12 完善细节

https://pic./2020/06/22/91f19fa1b405c.png

既然老板关注这五个事件,而它们发生的日期可能没有落在横轴标签上,那老板不是在图上还是找不到他们发生的具体时间么?把它们加上去怎么样?

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
fig = plt.figure( figsize=(16,6), dpi=100)

crisis_data = [(datetime(2007, 10, 11), 'Peak of bull market'),
               (datetime(2008, 3, 12), 'Bear Stearns Fails'),
               (datetime(2008, 9, 15), 'Lehman Bankruptcy'),
               (datetime(2009, 1, 20), 'RBS Sell-off'),
               (datetime(2009, 4, 2), 'G20 Summit')]

ax1 = fig.add_subplot(1,1,1)

x = spx.index
y1 = spx.values
y2 = vix.values

ax1.plot( y1, color=dt_hex, linewidth=2, linestyle='-',label='S&P500' )
ax1.set_xlim(-1, len(x)+1)
ax1.set_ylim( np.vstack([y1,y2]).min()*0.8, np.vstack([y1,y2]).max()*1.2 )
ax1.legend( loc='upper left', frameon=True )

init_tick = list( range(0,len(x),40) )
impt_tick = []
impt_date = []

for date, label in crisis_data:
    date = date.strftime('%Y-%m-%d')
    impt_date.append(date)
    
    xi = x.get_loc(date)
    impt_tick.append(xi)
    yi = spx.asof(date)
    
    ax1.scatter( xi, yi, 80, color=r_hex )
    ax1.annotate( label, xy=(xi, yi + 60),
                  xytext=(xi, yi+300),
                  arrowprops=dict(facecolor='black',headwidth=4,width=1,headlength=6),
                  horizontalalignment='left',verticalalignment='top' )
    
x_tick =  init_tick + impt_tick
x_label = [x[i].strftime('%Y-%m-%d') for i in x_tick]
ax1.set_xticks( x_tick )
ax1.set_xticklabels( x_label, rotation=90 )

for i, label in enumerate(ax1.get_xticklabels()):
    if i >= len(init_tick):
        label.set_color(r_hex)
        label.set_fontweight('bold')
    else:
        label.set_fontsize(9)

#Add a second axes
ax2 = ax1.twinx()
ax2.plot( y2, color=r_hex, linewidth=2, linestyle='-', label='VIX', alpha=0.3 )
ax2.legend( loc='upper right', frameon=True );

https://pic./2020/06/22/5556b5554c8a0.png

新添加的代码在第 20-22 行和第 43-48 行。主要就是把日期分成两类:

  • 常规日期标签 init_tick

  • 五个事件日期标签 impt_tick

https://pic./2020/06/22/5556b5554c8a0.png

3 画有效图

3.1 概览

在做图表设计时候经常面临着怎么选用合适的图表,图表展示的关系分为四大类 (点击下图放大):

  1. 分布 (distribution)

  2. 联系 (relationship)

  3. 比较 (comparison)

  4. 构成 (composition)

https://pic./2020/06/22/40115bb466f91.png

在选用图表前首先要想清楚:你要表达什么样的数据关系。上面的图表分类太过繁多,接下来我们只讨论在量化金融中用的最多的几种类型,即

  • 直方图来展示股票价格和收益的分布

  • 散点图来展示两支股票之间的联系

  • 折线图比较汇率在不同窗口的移动平均线

  • 饼状图来展示股票组合的构成成分

首先用 YahooFinancials API 来下载若干资产的一年历史数据 (安装该 API 用 pip install yahoofinancials):

Anaconda 命令框(开始菜单的搜索框里搜ana,搜索到Anaconda Prompt并打开)里

pip install yahoofinancials

  • 起始日:2018-04-29

  • 终止日:2019-04-29

  • 五只股票:英伟达、亚马逊、阿里巴巴、脸书、苹果

  • 三个汇率:欧元美元、美元日元、美元人民币

下面代码就是从 API 获取数据,股票用的是股票代号 (stock code),而货币用的该 API 要求的格式,比如「欧元美元」用 EURUSD=X,而不是市场常见的 EURUSD,而「美元日元」用 JPY=X 而不是 USDJPY。

1
from yahoofinancials import YahooFinancials
1
2
3
4
5
start_date = '2018-04-29'
end_date = '2019-04-29'

stock_code = ['NVDA','AMZN','BABA','FB','AAPL' ]
currency_code = ['EURUSD=X', 'JPY=X', 'CNY=X']
1
2
3
4
5
stock =YahooFinancials( stock_code )
currency = YahooFinancials( currency_code )

stock_daily = stock.get_historical_price_data( start_date, end_date, 'daily' )
currency_daily = currency.get_historical_price_data( start_date, end_date, 'daily' )

该 API 返回结果 stock_daily 和 currency_daily 是「字典」格式,样子非常丑陋,感受一下。

1
stock_daily
展开查看

    {'AAPL': {'currency': 'USD',
      'eventsData': {'dividends': {'2018-05-11': {'amount': 0.73,
         'date': 1526045400,
         'formatted_date': '2018-05-11'},
        '2018-08-10': {'amount': 0.73,
         'date': 1533907800,
         'formatted_date': '2018-08-10'},
        '2018-11-08': {'amount': 0.73,
         'date': 1541687400,
         'formatted_date': '2018-11-08'},
        '2019-02-08': {'amount': 0.73,
         'date': 1549636200,
         'formatted_date': '2019-02-08'}}},
      'firstTradeDate': {'date': 345479400, 'formatted_date': '1980-12-12'},
      'instrumentType': 'EQUITY',
      'prices': [{'adjclose': 160.24440002441406,
        'close': 165.25999450683594,
        'date': 1525095000,
        'formatted_date': '2018-04-30',
        'high': 167.25999450683594,
        'low': 161.83999633789062,
        'open': 162.1300048828125,
        'volume': 42427400},
       {'adjclose': 163.96783447265625,
        'close': 169.10000610351562,
        'date': 1525181400,
        'formatted_date': '2018-05-01',
        'high': 169.1999969482422,
        'low': 165.27000427246094,
        'open': 166.41000366210938,
        'volume': 53569400},
       {'adjclose': 171.21115112304688,
        'close': 176.57000732421875,
        'date': 1525267800,
        'formatted_date': '2018-05-02',
        'high': 177.75,
        'low': 173.8000030517578,
        'open': 175.22999572753906,
        'volume': 66539400},
       {'adjclose': 171.52142333984375,
        'close': 176.88999938964844,
        'date': 1525354200,
        'formatted_date': '2018-05-03',
        'high': 177.5,
        'low': 174.44000244140625,
        'open': 175.8800048828125,
        'volume': 34068200},
       {'adjclose': 178.2508087158203,
        'close': 183.8300018310547,
        'date': 1525440600,
        'formatted_date': '2018-05-04',
        'high': 184.25,
        'low': 178.1699981689453,
        'open': 178.25,
        'volume': 56201300},
       {'adjclose': 179.54043579101562,
        'close': 185.16000366210938,
        'date': 1525699800,
        'formatted_date': '2018-05-07',
        'high': 187.6699981689453,
        'low': 184.75,
        'open': 185.17999267578125,
        'volume': 42451400},
       {'adjclose': 180.40342712402344,
        'close': 186.0500030517578,
        'date': 1525786200,
        'formatted_date': '2018-05-08',
        'high': 186.22000122070312,
        'low': 183.6699981689453,
        'open': 184.99000549316406,
        'volume': 28402800},
       {'adjclose': 181.67367553710938,
        'close': 187.36000061035156,
        'date': 1525872600,
        'formatted_date': '2018-05-09',
        'high': 187.39999389648438,
        'low': 185.22000122070312,
        'open': 186.5500030517578,
        'volume': 23211200},
       {'adjclose': 184.27232360839844,
        'close': 190.0399932861328,
        'date': 1525959000,
        'formatted_date': '2018-05-10',
        'high': 190.3699951171875,
        'low': 187.64999389648438,
        'open': 187.74000549316406,
        'volume': 27989300},
       {'adjclose': 183.5714874267578,
        'close': 188.58999633789062,
        'date': 1526045400,
        'formatted_date': '2018-05-11',
        'high': 190.05999755859375,
        'low': 187.4499969482422,
        'open': 189.49000549316406,
        'volume': 26212200},
       {'adjclose': 183.14320373535156,
        'close': 188.14999389648438,
        'date': 1526304600,
        'formatted_date': '2018-05-14',
        'high': 189.52999877929688,
        'low': 187.86000061035156,
        'open': 189.00999450683594,
        'volume': 20778800},
       {'adjclose': 181.47872924804688,
        'close': 186.44000244140625,
        'date': 1526391000,
        'formatted_date': '2018-05-15',
        'high': 187.07000732421875,
        'low': 185.10000610351562,
        'open': 186.77999877929688,
        'volume': 23695200},
       {'adjclose': 183.17237854003906,
        'close': 188.17999267578125,
        'date': 1526477400,
        'formatted_date': '2018-05-16',
        'high': 188.4600067138672,
        'low': 186.0,
        'open': 186.07000732421875,
        'volume': 19183100},
       {'adjclose': 182.01406860351562,
        'close': 186.99000549316406,
        'date': 1526563800,
        'formatted_date': '2018-05-17',
        'high': 188.91000366210938,
        'low': 186.36000061035156,
        'open': 188.0,
        'volume': 17294000},
       {'adjclose': 181.35215759277344,
        'close': 186.30999755859375,
        'date': 1526650200,
        'formatted_date': '2018-05-18',
        'high': 187.80999755859375,
        'low': 186.1300048828125,
        'open': 187.19000244140625,
        'volume': 18297700},
       {'adjclose': 182.6370391845703,
        'close': 187.6300048828125,
        'date': 1526909400,
        'formatted_date': '2018-05-21',
        'high': 189.27000427246094,
        'low': 186.91000366210938,
        'open': 188.0,
        'volume': 18400800},
       {'adjclose': 182.17953491210938,
        'close': 187.16000366210938,
        'date': 1526995800,
        'formatted_date': '2018-05-22',
        'high': 188.8800048828125,
        'low': 186.77999877929688,
        'open': 188.3800048828125,
        'volume': 15240700},
       {'adjclose': 183.34764099121094,
        'close': 188.36000061035156,
        'date': 1527082200,
        'formatted_date': '2018-05-23',
        'high': 188.5,
        'low': 185.75999450683594,
        'open': 186.35000610351562,
        'volume': 20058400},
       {'adjclose': 183.14320373535156,
        'close': 188.14999389648438,
        'date': 1527168600,
        'formatted_date': '2018-05-24',
        'high': 188.83999633789062,
        'low': 186.2100067138672,
        'open': 188.77000427246094,
        'volume': 23234000},
       {'adjclose': 183.561767578125,
        'close': 188.5800018310547,
        'date': 1527255000,
        'formatted_date': '2018-05-25',
        'high': 189.64999389648438,
        'low': 187.64999389648438,
        'open': 188.22999572753906,
        'volume': 17461000},
       {'adjclose': 182.89987182617188,
        'close': 187.89999389648438,
        'date': 1527600600,
        'formatted_date': '2018-05-29',
        'high': 188.75,
        'low': 186.8699951171875,
        'open': 187.60000610351562,
        'volume': 22514100},
       {'adjclose': 182.51051330566406,
        'close': 187.5,
        'date': 1527687000,
        'formatted_date': '2018-05-30',
        'high': 188.0,
        'low': 186.77999877929688,
        'open': 187.72000122070312,
        'volume': 18690500},
       {'adjclose': 181.89724731445312,
        'close': 186.8699951171875,
        'date': 1527773400,
        'formatted_date': '2018-05-31',
        'high': 188.22999572753906,
        'low': 186.13999938964844,
        'open': 187.22000122070312,
        'volume': 27482800},
       {'adjclose': 185.1775665283203,
        'close': 190.24000549316406,
        'date': 1527859800,
        'formatted_date': '2018-06-01',
        'high': 190.25999450683594,
        'low': 187.75,
        'open': 187.99000549316406,
        'volume': 23442500},
       {'adjclose': 186.72528076171875,
        'close': 191.8300018310547,
        'date': 1528119000,
        'formatted_date': '2018-06-04',
        'high': 193.4199981689453,
        'low': 191.35000610351562,
        'open': 191.63999938964844,
        'volume': 26266200},
       {'adjclose': 188.16587829589844,
        'close': 193.30999755859375,
        'date': 1528205400,
        'formatted_date': '2018-06-05',
        'high': 193.94000244140625,
        'low': 192.36000061035156,
        'open': 193.07000732421875,
        'volume': 21566000},
       {'adjclose': 188.81805419921875,
        'close': 193.97999572753906,
        'date': 1528291800,
        'formatted_date': '2018-06-06',
        'high': 194.0800018310547,
        'low': 191.9199981689453,
        'open': 193.6300048828125,
        'volume': 20933600},
       {'adjclose': 188.31190490722656,
        'close': 193.4600067138672,
        'date': 1528378200,
        'formatted_date': '2018-06-07',
        'high': 194.1999969482422,
        'low': 192.33999633789062,
        'open': 194.13999938964844,
        'volume': 21347200},
       {'adjclose': 186.59873962402344,
        'close': 191.6999969482422,
        'date': 1528464600,
        'formatted_date': '2018-06-08',
        'high': 192.0,
        'low': 189.77000427246094,
        'open': 191.1699981689453,
        'volume': 26656800},
       {'adjclose': 186.1412353515625,
        'close': 191.22999572753906,
        'date': 1528723800,
        'formatted_date': '2018-06-11',
        'high': 191.97000122070312,
        'low': 190.2100067138672,
        'open': 191.35000610351562,
        'volume': 18308500},
       {'adjclose': 187.16329956054688,
        'close': 192.27999877929688,
        'date': 1528810200,
        'formatted_date': '2018-06-12',
        'high': 192.61000061035156,
        'low': 191.14999389648438,
        'open': 191.38999938964844,
        'volume': 16911100},
       {'adjclose': 185.62533569335938,
        'close': 190.6999969482422,
        'date': 1528896600,
        'formatted_date': '2018-06-13',
        'high': 192.8800048828125,
        'low': 190.44000244140625,
        'open': 192.4199981689453,
        'volume': 21638400},
       {'adjclose': 185.7227020263672,
        'close': 190.8000030517578,
        'date': 1528983000,
        'formatted_date': '2018-06-14',
        'high': 191.57000732421875,
        'low': 190.22000122070312,
        'open': 191.5500030517578,
        'volume': 21610100},
       {'adjclose': 183.8148651123047,
        'close': 188.83999633789062,
        'date': 1529069400,
        'formatted_date': '2018-06-15',
        'high': 190.16000366210938,
        'low': 188.25999450683594,
        'open': 190.02999877929688,
        'volume': 61719200},
       {'adjclose': 183.7174835205078,
        'close': 188.74000549316406,
        'date': 1529328600,
        'formatted_date': '2018-06-18',
        'high': 189.22000122070312,
        'low': 187.1999969482422,
        'open': 187.8800048828125,
        'volume': 18484900},
       {'adjclose': 180.74867248535156,
        'close': 185.69000244140625,
        'date': 1529415000,
        'formatted_date': '2018-06-19',
        'high': 186.3300018310547,
        'low': 183.4499969482422,
        'open': 185.13999938964844,
        'volume': 33578500},
       {'adjclose': 181.537109375,
        'close': 186.5,
        'date': 1529501400,
        'formatted_date': '2018-06-20',
        'high': 187.1999969482422,
        'low': 185.72999572753906,
        'open': 186.35000610351562,
        'volume': 20628700},
       {'adjclose': 180.52479553222656,
        'close': 185.4600067138672,
        'date': 1529587800,
        'formatted_date': '2018-06-21',
        'high': 188.35000610351562,
        'low': 184.94000244140625,
        'open': 187.25,
        'volume': 25711900},
       {'adjclose': 179.99913024902344,
        'close': 184.9199981689453,
        'date': 1529674200,
        'formatted_date': '2018-06-22',
        'high': 186.14999389648438,
        'low': 184.6999969482422,
        'open': 186.1199951171875,
        'volume': 27200400},
       {'adjclose': 177.32232666015625,
        'close': 182.1699981689453,
        'date': 1529933400,
        'formatted_date': '2018-06-25',
        'high': 184.9199981689453,
        'low': 180.72999572753906,
        'open': 183.39999389648438,
        'volume': 31663100},
       {'adjclose': 179.52218627929688,
        'close': 184.42999267578125,
        'date': 1530019800,
        'formatted_date': '2018-06-26',
        'high': 186.52999877929688,
        'low': 182.5399932861328,
        'open': 182.99000549316406,
        'volume': 24569200},
       {'adjclose': 179.25936889648438,
        'close': 184.16000366210938,
        'date': 1530106200,
        'formatted_date': '2018-06-27',
        'high': 187.27999877929688,
        'low': 184.02999877929688,
        'open': 185.22999572753906,
        'volume': 25285300},
       {'adjclose': 180.56373596191406,
        'close': 185.5,
        'date': 1530192600,
        'formatted_date': '2018-06-28',
        'high': 186.2100067138672,
        'low': 183.8000030517578,
        'open': 184.10000610351562,
        'volume': 17365200},
       {'adjclose': 180.18408203125,
        'close': 185.11000061035156,
        'date': 1530279000,
        'formatted_date': '2018-06-29',
        'high': 187.19000244140625,
        'low': 182.91000366210938,
        'open': 186.2899932861328,
        'volume': 22737700},
       {'adjclose': 182.19900512695312,
        'close': 187.17999267578125,
        'date': 1530538200,
        'formatted_date': '2018-07-02',
        'high': 187.3000030517578,
        'low': 183.4199981689453,
        'open': 183.82000732421875,
        'volume': 17731300},
       {'adjclose': 179.02577209472656,
        'close': 183.9199981689453,
        'date': 1530624600,
        'formatted_date': '2018-07-03',
        'high': 187.9499969482422,
        'low': 183.5399932861328,
        'open': 187.7899932861328,
        'volume': 13954800},
       {'adjclose': 180.46636962890625,
        'close': 185.39999389648438,
        'date': 1530797400,
        'formatted_date': '2018-07-05',
        'high': 186.41000366210938,
        'low': 184.27999877929688,
        'open': 185.25999450683594,
        'volume': 16604200},
       {'adjclose': 182.9679718017578,
        'close': 187.97000122070312,
        'date': 1530883800,
        'formatted_date': '2018-07-06',
        'high': 188.42999267578125,
        'low': 185.1999969482422,
        'open': 185.4199981689453,
        'volume': 17485200},
       {'adjclose': 185.508544921875,
        'close': 190.5800018310547,
        'date': 1531143000,
        'formatted_date': '2018-07-09',
        'high': 190.67999267578125,
        'low': 189.3000030517578,
        'open': 189.5,
        'volume': 19756600},
       {'adjclose': 185.28469848632812,
        'close': 190.35000610351562,
        'date': 1531229400,
        'formatted_date': '2018-07-10',
        'high': 191.27999877929688,
        'low': 190.17999267578125,
        'open': 190.7100067138672,
        'volume': 15939100},
       {'adjclose': 182.88038635253906,
        'close': 187.8800048828125,
        'date': 1531315800,
        'formatted_date': '2018-07-11',
        'high': 189.77999877929688,
        'low': 187.61000061035156,
        'open': 188.5,
        'volume': 18831500},
       {'adjclose': 185.94656372070312,
        'close': 191.02999877929688,
        'date': 1531402200,
        'formatted_date': '2018-07-12',
        'high': 191.41000366210938,
        'low': 189.30999755859375,
        'open': 189.52999877929688,
        'volume': 18041100},
       {'adjclose': 186.2385711669922,
        'close': 191.3300018310547,
        'date': 1531488600,
        'formatted_date': '2018-07-13',
        'high': 191.83999633789062,
        'low': 190.89999389648438,
        'open': 191.0800018310547,
        'volume': 12513900},
       {'adjclose': 185.82977294921875,
        'close': 190.91000366210938,
        'date': 1531747800,
        'formatted_date': '2018-07-16',
        'high': 192.64999389648438,
        'low': 190.4199981689453,
        'open': 191.52000427246094,
        'volume': 15043100},
       {'adjclose': 186.35537719726562,
        'close': 191.4499969482422,
        'date': 1531834200,
        'formatted_date': '2018-07-17',
        'high': 191.8699951171875,
        'low': 189.1999969482422,
        'open': 189.75,
        'volume': 15534500},
       {'adjclose': 185.33331298828125,
        'close': 190.39999389648438,
        'date': 1531920600,
        'formatted_date': '2018-07-18',
        'high': 191.8000030517578,
        'low': 189.92999267578125,
        'open': 191.77999877929688,
        'volume': 16393400},
       {'adjclose': 186.77395629882812,
        'close': 191.8800048828125,
        'date': 1532007000,
        'formatted_date': '2018-07-19',
        'high': 192.5500030517578,
        'low': 189.69000244140625,
        'open': 189.69000244140625,
        'volume': 20286800},
       {'adjclose': 186.34568786621094,
        'close': 191.44000244140625,
        'date': 1532093400,
        'formatted_date': '2018-07-20',
        'high': 192.42999267578125,
        'low': 190.1699981689453,
        'open': 191.77999877929688,
        'volume': 20676200},
       {'adjclose': 186.5111083984375,
        'close': 191.61000061035156,
        'date': 1532352600,
        'formatted_date': '2018-07-23',
        'high': 191.9600067138672,
        'low': 189.55999755859375,
        'open': 190.67999267578125,
        'volume': 15989400},
       {'adjclose': 187.86415100097656,
        'close': 193.0,
        'date': 1532439000,
        'formatted_date': '2018-07-24',
        'high': 193.66000366210938,
        'low': 192.0500030517578,
        'open': 192.4499969482422,
        'volume': 18697900},
       {'adjclose': 189.63571166992188,
        'close': 194.82000732421875,
        'date': 1532525400,
        'formatted_date': '2018-07-25',
        'high': 194.85000610351562,
        'low': 192.42999267578125,
        'open': 193.05999755859375,
        'volume': 16709900},
       {'adjclose': 189.0419464111328,
        'close': 194.2100067138672,
        'date': 1532611800,
        'formatted_date': '2018-07-26',
        'high': 195.9600067138672,
        'low': 193.61000061035156,
        'open': 194.61000061035156,
        'volume': 19076000},
       {'adjclose': 185.8979034423828,
        'close': 190.97999572753906,
        'date': 1532698200,
        'formatted_date': '2018-07-27',
        'high': 195.19000244140625,
        'low': 190.10000610351562,
        'open': 194.99000549316406,
        'volume': 24024000},
       {'adjclose': 184.8563690185547,
        'close': 189.91000366210938,
        'date': 1532957400,
        'formatted_date': '2018-07-30',
        'high': 192.1999969482422,
        'low': 189.07000732421875,
        'open': 191.89999389648438,
        'volume': 21029500},
       {'adjclose': 185.2262420654297,
        'close': 190.2899932861328,
        'date': 1533043800,
        'formatted_date': '2018-07-31',
        'high': 192.13999938964844,
        'low': 189.33999633789062,
        'open': 190.3000030517578,
        'volume': 39373000},
       {'adjclose': 196.13795471191406,
        'close': 201.5,
        'date': 1533130200,
        'formatted_date': '2018-08-01',
        'high': 201.75999450683594,
        'low': 197.30999755859375,
        'open': 199.1300048828125,
        'volume': 67935700},
       {'adjclose': 201.8712158203125,
        'close': 207.38999938964844,
        'date': 1533216600,
        'formatted_date': '2018-08-02',
        'high': 208.3800048828125,
        'low': 200.35000610351562,
        'open': 200.5800018310547,
        'volume': 62404000},
       {'adjclose': 202.45523071289062,
        'close': 207.99000549316406,
        'date': 1533303000,
        'formatted_date': '2018-08-03',
        'high': 208.74000549316406,
        'low': 205.47999572753906,
        'open': 207.02999877929688,
        'volume': 33447400},
       {'adjclose': 203.50650024414062,
        'close': 209.07000732421875,
        'date': 1533562200,
        'formatted_date': '2018-08-06',
        'high': 209.25,
        'low': 207.07000732421875,
        'open': 208.0,
        'volume': 25425400},
       {'adjclose': 201.59864807128906,
        'close': 207.11000061035156,
        'date': 1533648600,
        'formatted_date': '2018-08-07',
        'high': 209.5,
        'low': 206.75999450683594,
        'open': 209.32000732421875,
        'volume': 25587400},
       {'adjclose': 201.73495483398438,
        'close': 207.25,
        'date': 1533735000,
        'formatted_date': '2018-08-08',
        'high': 207.80999755859375,
        'low': 204.52000427246094,
        'open': 206.0500030517578,
        'volume': 22525500},
       {'adjclose': 203.3215789794922,
        'close': 208.8800048828125,
        'date': 1533821400,
        'formatted_date': '2018-08-09',
        'high': 209.77999877929688,
        'low': 207.1999969482422,
        'open': 209.52999877929688,
        'volume': 23492600},
       {'adjclose': 202.71592712402344,
        'close': 207.52999877929688,
        'date': 1533907800,
        'formatted_date': '2018-08-10',
        'high': 209.10000610351562,
        'low': 206.6699981689453,
        'open': 207.36000061035156,
        'volume': 24611200},
       {'adjclose': 204.02484130859375,
        'close': 208.8699951171875,
        'date': 1534167000,
        'formatted_date': '2018-08-13',
        'high': 210.9499969482422,
        'low': 207.6999969482422,
        'open': 209.30999755859375,
        'volume': 25890900},
       {'adjclose': 204.88449096679688,
        'close': 209.75,
        'date': 1534253400,
        'formatted_date': '2018-08-14',
        'high': 210.55999755859375,
        'low': 208.25999450683594,
        'open': 210.16000366210938,
        'volume': 20748000},
       {'adjclose': 205.3630828857422,
        'close': 210.24000549316406,
        'date': 1534339800,
        'formatted_date': '2018-08-15',
        'high': 210.74000549316406,
        'low': 208.3300018310547,
        'open': 209.22000122070312,
        'volume': 28807600},
       {'adjclose': 208.3716583251953,
        'close': 213.32000732421875,
        'date': 1534426200,
        'formatted_date': '2018-08-16',
        'high': 213.80999755859375,
        'low': 211.47000122070312,
        'open': 211.75,
        'volume': 28500400},
       {'adjclose': 212.53280639648438,
        'close': 217.5800018310547,
        'date': 1534512600,
        'formatted_date': '2018-08-17',
        'high': 217.9499969482422,
        'low': 213.16000366210938,
        'open': 213.44000244140625,
        'volume': 35427000},
       {'adjclose': 210.46200561523438,
        'close': 215.4600067138672,
        'date': 1534771800,
        'formatted_date': '2018-08-20',
        'high': 219.17999267578125,
        'low': 215.11000061035156,
        'open': 218.10000610351562,
        'volume': 30287700},
       {'adjclose': 210.05172729492188,
        'close': 215.0399932861328,
        'date': 1534858200,
        'formatted_date': '2018-08-21',
        'high': 217.19000244140625,
        'low': 214.02999877929688,
        'open': 216.8000030517578,
        'volume': 26159800},
       {'adjclose': 210.0615234375,
        'close': 215.0500030517578,
        'date': 1534944600,
        'formatted_date': '2018-08-22',
        'high': 216.36000061035156,
        'low': 213.83999633789062,
        'open': 214.10000610351562,
        'volume': 19018100},
       {'adjclose': 210.49131774902344,
        'close': 215.49000549316406,
        'date': 1535031000,
        'formatted_date': '2018-08-23',
        'high': 217.0500030517578,
        'low': 214.60000610351562,
        'open': 214.64999389648438,
        'volume': 18883200},
       {'adjclose': 211.14576721191406,
        'close': 216.16000366210938,
        'date': 1535117400,
        'formatted_date': '2018-08-24',
        'high': 216.89999389648438,
        'low': 215.11000061035156,
        'open': 216.60000610351562,
        'volume': 18476400},
       {'adjclose': 212.88446044921875,
        'close': 217.94000244140625,
        'date': 1535376600,
        'formatted_date': '2018-08-27',
        'high': 218.74000549316406,
        'low': 216.3300018310547,
        'open': 217.14999389648438,
        'volume': 20525100},
       {'adjclose': 214.6036376953125,
        'close': 219.6999969482422,
        'date': 1535463000,
        'formatted_date': '2018-08-28',
        'high': 220.5399932861328,
        'low': 218.9199981689453,
        'open': 219.00999450683594,
        'volume': 22776800},
       {'adjclose': 217.8075714111328,
        'close': 222.97999572753906,
        'date': 1535549400,
        'formatted_date': '2018-08-29',
        'high': 223.49000549316406,
        'low': 219.41000366210938,
        'open': 220.14999389648438,
        'volume': 27254800},
       {'adjclose': 219.80999755859375,
        'close': 225.02999877929688,
        'date': 1535635800,
        'formatted_date': '2018-08-30',
        'high': 228.25999450683594,
        'low': 222.39999389648438,
        'open': 223.25,
        'volume': 48793800},
       {'adjclose': 222.3496856689453,
        'close': 227.6300048828125,
        'date': 1535722200,
        'formatted_date': '2018-08-31',
        'high': 228.8699951171875,
        'low': 226.0,
        'open': 226.50999450683594,
        'volume': 43340100},
       {'adjclose': 223.06275939941406,
        'close': 228.36000061035156,
        'date': 1536067800,
        'formatted_date': '2018-09-04',
        'high': 229.17999267578125,
        'low': 226.6300048828125,
        'open': 228.41000366210938,
        'volume': 27390100},
       {'adjclose': 221.6073455810547,
        'close': 226.8699951171875,
        'date': 1536154200,
        'formatted_date': '2018-09-05',
        'high': 229.6699981689453,
        'low': 225.10000610351562,
        'open': 228.99000549316406,
        'volume': 33333000},
       {'adjclose': 217.92478942871094,
        'close': 223.10000610351562,
        'date': 1536240600,
        'formatted_date': '2018-09-06',
        'high': 227.35000610351562,
        'low': 221.3000030517578,
        'open': 226.22999572753906,
        'volume': 34290000},
       {'adjclose': 216.1665496826172,
        'close': 221.3000030517578,
        'date': 1536327000,
        'formatted_date': '2018-09-07',
        'high': 225.3699951171875,
        'low': 220.7100067138672,
        'open': 221.85000610351562,
        'volume': 37619800},
       {'adjclose': 213.26541137695312,
        'close': 218.3300018310547,
        'date': 1536586200,
        'formatted_date': '2018-09-10',
        'high': 221.85000610351562,
        'low': 216.47000122070312,
        'open': 220.9499969482422,
        'volume': 39516500},
       {'adjclose': 218.65740966796875,
        'close': 223.85000610351562,
        'date': 1536672600,
        'formatted_date': '2018-09-11',
        'high': 224.3000030517578,
        'low': 216.55999755859375,
        'open': 218.00999450683594,
        'volume': 35749000},
       {'adjclose': 215.94187927246094,
        'close': 221.07000732421875,
        'date': 1536759000,
        'formatted_date': '2018-09-12',
        'high': 225.0,
        'low': 219.83999633789062,
        'open': 224.94000244140625,
        'volume': 49278700},
       {'adjclose': 221.15798950195312,
        'close': 226.41000366210938,
        'date': 1536845400,
        'formatted_date': '2018-09-13',
        'high': 228.35000610351562,
        'low': 222.57000732421875,
        'open': 223.52000427246094,
        'volume': 41706400},
       {'adjclose': 218.64761352539062,
        'close': 223.83999633789062,
        'date': 1536931800,
        'formatted_date': '2018-09-14',
        'high': 226.83999633789062,
        'low': 222.52000427246094,
        'open': 225.75,
        'volume': 31999300},
       {'adjclose': 212.8258819580078,
        'close': 217.8800048828125,
        'date': 1537191000,
        'formatted_date': '2018-09-17',
        'high': 222.9499969482422,
        'low': 217.27000427246094,
        'open': 222.14999389648438,
        'volume': 37195100},
       {'adjclose': 213.17752075195312,
        'close': 218.24000549316406,
        'date': 1537277400,
        'formatted_date': '2018-09-18',
        'high': 221.85000610351562,
        'low': 217.1199951171875,
        'open': 217.7899932861328,
        'volume': 31571700},
       {'adjclose': 213.30447387695312,
        'close': 218.3699951171875,
        'date': 1537363800,
        'formatted_date': '2018-09-19',
        'high': 219.6199951171875,
        'low': 215.3000030517578,
        'open': 218.5,
        'volume': 27123800},
       {'adjclose': 214.92601013183594,
        'close': 220.02999877929688,
        'date': 1537450200,
        'formatted_date': '2018-09-20',
        'high': 222.27999877929688,
        'low': 219.14999389648438,
        'open': 220.24000549316406,
        'volume': 26608800},
       {'adjclose': 212.61097717285156,
        'close': 217.66000366210938,
        'date': 1537536600,
        'formatted_date': '2018-09-21',
        'high': 221.36000061035156,
        'low': 217.2899932861328,
        'open': 220.77999877929688,
        'volume': 96246700},
       {'adjclose': 215.66836547851562,
        'close': 220.7899932861328,
        'date': 1537795800,
        'formatted_date': '2018-09-24',
        'high': 221.25999450683594,
        'low': 216.6300048828125,
        'open': 216.82000732421875,
        'volume': 27693400},
       {'adjclose': 217.035888671875,
        'close': 222.19000244140625,
        'date': 1537882200,
        'formatted_date': '2018-09-25',
        'high': 222.82000732421875,
        'low': 219.6999969482422,
        'open': 219.75,
        'volume': 24554400},
       {'adjclose': 215.3069305419922,
        'close': 220.4199981689453,
        'date': 1537968600,
        'formatted_date': '2018-09-26',
        'high': 223.75,
        'low': 219.75999450683594,
        'open': 221.0,
        'volume': 23984700},
       {'adjclose': 219.7318572998047,
        'close': 224.9499969482422,
        'date': 1538055000,
        'formatted_date': '2018-09-27',
        'high': 226.44000244140625,
        'low': 223.5399932861328,
        'open': 223.82000732421875,
        'volume': 30181200},
       {'adjclose': 220.5035400390625,
        'close': 225.74000549316406,
        'date': 1538141400,
        'formatted_date': '2018-09-28',
        'high': 225.83999633789062,
        'low': 224.02000427246094,
        'open': 224.7899932861328,
        'volume': 22929400},
       {'adjclose': 221.98826599121094,
        'close': 227.25999450683594,
        'date': 1538400600,
        'formatted_date': '2018-10-01',
        'high': 229.4199981689453,
        'low': 226.35000610351562,
        'open': 227.9499969482422,
        'volume': 23600800},
       {'adjclose': 223.96142578125,
        'close': 229.27999877929688,
        'date': 1538487000,
        'formatted_date': '2018-10-02',
        'high': 230.0,
        'low': 226.6300048828125,
        'open': 227.25,
        'volume': 24788200},
       {'adjclose': 226.68670654296875,
        'close': 232.07000732421875,
        'date': 1538573400,
        'formatted_date': '2018-10-03',
        'high': 233.47000122070312,
        'low': 229.77999877929688,
        'open': 230.0500030517578,
        'volume': 28654800},
       {'adjclose': 222.7013397216797,
        'close': 227.99000549316406,
        'date': 1538659800,
        'formatted_date': '2018-10-04',
        'high': 232.35000610351562,
        'low': 226.72999572753906,
        'open': 230.77999877929688,
        'volume': 32042000},
       {'adjclose': 219.087158203125,
        'close': 224.2899932861328,
        'date': 1538746200,
        'formatted_date': '2018-10-05',
        'high': 228.41000366210938,
        'low': 220.5800018310547,
        'open': 227.9600067138672,
        'volume': 33580500},
       {'adjclose': 218.5792694091797,
        'close': 223.77000427246094,
        'date': 1539005400,
        'formatted_date': '2018-10-08',
        'high': 224.8000030517578,
        'low': 220.1999969482422,
        'open': 222.2100067138672,
        'volume': 29663900},
       {'adjclose': 221.6073455810547,
        'close': 226.8699951171875,
        'date': 1539091800,
        'formatted_date': '2018-10-09',
        'high': 227.27000427246094,
        'low': 222.25,
        'open': 223.63999938964844,
        'volume': 26891000},
       {'adjclose': 211.3411102294922,
        'close': 216.36000061035156,
        'date': 1539178200,
        'formatted_date': '2018-10-10',
        'high': 226.35000610351562,
        'low': 216.0500030517578,
        'open': 225.4600067138672,
        'volume': 41990600},
       {'adjclose': 209.47543334960938,
        'close': 214.4499969482422,
        'date': 1539264600,
        'formatted_date': '2018-10-11',
        'high': 219.5,
        'low': 212.32000732421875,
        'open': 214.52000427246094,
        'volume': 53124400},
       {'adjclose': 216.95774841308594,
        'close': 222.11000061035156,
        'date': 1539351000,
        'formatted_date': '2018-10-12',
        'high': 222.8800048828125,
        'low': 216.83999633789062,
        'open': 220.4199981689453,
        'volume': 40337900},
       {'adjclose': 212.3179168701172,
        'close': 217.36000061035156,
        'date': 1539610200,
        'formatted_date': '2018-10-15',
        'high': 221.8300018310547,
        'low': 217.27000427246094,
        'open': 221.16000366210938,
        'volume': 30791000},
       {'adjclose': 216.99681091308594,
        'close': 222.14999389648438,
        'date': 1539696600,
        'formatted_date': '2018-10-16',
        'high': 222.99000549316406,
        'low': 216.75999450683594,
        'open': 218.92999267578125,
        'volume': 29184000},
       {'adjclose': 216.05909729003906,
        'close': 221.19000244140625,
        'date': 1539783000,
        'formatted_date': '2018-10-17',
        'high': 222.63999938964844,
        'low': 219.33999633789062,
        'open': 222.3000030517578,
        'volume': 22885400},
       {'adjclose': 211.0089874267578,
        'close': 216.02000427246094,
        'date': 1539869400,
        'formatted_date': '2018-10-18',
        'high': 219.74000549316406,
        'low': 213.0,
        'open': 217.86000061035156,
        'volume': 32581300},
       {'adjclose': 214.22267150878906,
        'close': 219.30999755859375,
        'date': 1539955800,
        'formatted_date': '2018-10-19',
        'high': 221.25999450683594,
        'low': 217.42999267578125,
        'open': 218.05999755859375,
        'volume': 33078700},
       {'adjclose': 215.53160095214844,
        'close': 220.64999389648438,
        'date': 1540215000,
        'formatted_date': '2018-10-22',
        'high': 223.36000061035156,
        'low': 218.94000244140625,
        'open': 219.7899932861328,
        'volume': 28792100},
       {'adjclose': 217.5633544921875,
        'close': 222.72999572753906,
        'date': 1540301400,
        'formatted_date': '2018-10-23',
        'high': 223.25,
        'low': 214.6999969482422,
        'open': 215.8300018310547,
        'volume': 38767800},
       {'adjclose': 210.1005859375,
        'close': 215.08999633789062,
        'date': 1540387800,
        'formatted_date': '2018-10-24',
        'high': 224.22999572753906,
        'low': 214.5399932861328,
        'open': 222.60000610351562,
        'volume': 40925500},
       {'adjclose': 214.7013397216797,
        'close': 219.8000030517578,
        'date': 1540474200,
        'formatted_date': '2018-10-25',
        'high': 221.3800048828125,
        'low': 216.75,
        'open': 217.7100067138672,
        'volume': 29855800},
       {'adjclose': 211.28253173828125,
        'close': 216.3000030517578,
        'date': 1540560600,
        'formatted_date': '2018-10-26',
        'high': 220.19000244140625,
        'low': 212.6699981689453,
        'open': 215.89999389648438,
        'volume': 47258400},
       {'adjclose': 207.3166961669922,
        'close': 212.24000549316406,
        'date': 1540819800,
        'formatted_date': '2018-10-29',
        'high': 219.69000244140625,
        'low': 206.08999633789062,
        'open': 219.19000244140625,
        'volume': 45935500},
       {'adjclose': 208.35211181640625,
        'close': 213.3000030517578,
        'date': 1540906200,
        'formatted_date': '2018-10-30',
        'high': 215.17999267578125,
        'low': 209.27000427246094,
        'open': 211.14999389648438,
        'volume': 36660000},
       {'adjclose': 213.78314208984375,
        'close': 218.86000061035156,
        'date': 1540992600,
        'formatted_date': '2018-10-31',
        'high': 220.4499969482422,
        'low': 216.6199951171875,
        'open': 216.8800048828125,
        'volume': 38358900},
       {'adjclose': 217.065185546875,
        'close': 222.22000122070312,
        'date': 1541079000,
        'formatted_date': '2018-11-01',
        'high': 222.36000061035156,
        'low': 216.80999755859375,
        'open': 219.0500030517578,
        'volume': 58323200},
       {'adjclose': 202.66709899902344,
        'close': 207.47999572753906,
        'date': 1541165400,
        'formatted_date': '2018-11-02',
        'high': 213.64999389648438,
        'low': 205.42999267578125,
        'open': 209.5500030517578,
        'volume': 91328700},
       {'adjclose': 196.91372680664062,
        'close': 201.58999633789062,
        'date': 1541428200,
        'formatted_date': '2018-11-05',
        'high': 204.38999938964844,
        'low': 198.1699981689453,
        'open': 204.3000030517578,
        'volume': 66163700},
       {'adjclose': 199.04318237304688,
        'close': 203.77000427246094,
        'date': 1541514600,
        'formatted_date': '2018-11-06',
        'high': 204.72000122070312,
        'low': 201.69000244140625,
        'open': 201.9199981689453,
        'volume': 31882900},
       {'adjclose': 205.07980346679688,
        'close': 209.9499969482422,
        'date': 1541601000,
        'formatted_date': '2018-11-07',
        'high': 210.05999755859375,
        'low': 204.1300048828125,
        'open': 205.97000122070312,
        'volume': 33424400},
       {'adjclose': 204.3642578125,
        'close': 208.49000549316406,
        'date': 1541687400,
        'formatted_date': '2018-11-08',
        'high': 210.1199951171875,
        'low': 206.75,
        'open': 209.97999572753906,
        'volume': 25362600},
       {'adjclose': 200.42379760742188,
        'close': 204.47000122070312,
        'date': 1541773800,
        'formatted_date': '2018-11-09',
        'high': 206.00999450683594,
        'low': 202.25,
        'open': 205.5500030517578,
        'volume': 34365800},
       {'adjclose': 190.32762145996094,
        'close': 194.1699981689453,
        'date': 1542033000,
        'formatted_date': '2018-11-12',
        'high': 199.85000610351562,
        'low': 193.7899932861328,
        'open': 199.0,
        'volume': 51135500},
       {'adjclose': 188.426025390625,
        'close': 192.22999572753906,
        'date': 1542119400,
        'formatted_date': '2018-11-13',
        'high': 197.17999267578125,
        'low': 191.4499969482422,
        'open': 191.6300048828125,
        'volume': 46882900},
       {'adjclose': 183.10348510742188,
        'close': 186.8000030517578,
        'date': 1542205800,
        'formatted_date': '2018-11-14',
        'high': 194.47999572753906,
        'low': 185.92999267578125,
        'open': 193.89999389648438,
        'volume': 60801000},
       {'adjclose': 187.62225341796875,
        'close': 191.41000366210938,
        'date': 1542292200,
        'formatted_date': '2018-11-15',
        'high': 191.97000122070312,
        'low': 186.89999389648438,
        'open': 188.38999938964844,
        'volume': 46478800},
       {'adjclose': 189.70030212402344,
        'close': 193.52999877929688,
        'date': 1542378600,
        'formatted_date': '2018-11-16',
        'high': 194.97000122070312,
        'low': 189.4600067138672,
        'open': 190.5,
        'volume': 36928300},
       {'adjclose': 182.1820831298828,
        'close': 185.86000061035156,
        'date': 1542637800,
        'formatted_date': '2018-11-19',
        'high': 190.6999969482422,
        'low': 184.99000549316406,
        'open': 190.0,
        'volume': 41925300},
       {'adjclose': 173.47781372070312,
        'close': 176.97999572753906,
        'date': 1542724200,
        'formatted_date': '2018-11-20',
        'high': 181.47000122070312,
        'low': 175.50999450683594,
        'open': 178.3699951171875,
        'volume': 67825200},
       {'adjclose': 173.28175354003906,
        'close': 176.77999877929688,
        'date': 1542810600,
        'formatted_date': '2018-11-21',
        'high': 180.27000427246094,
        'low': 176.5500030517578,
        'open': 179.72999572753906,
        'volume': 31124200},
       {'adjclose': 168.88059997558594,
        'close': 172.2899932861328,
        'date': 1542983400,
        'formatted_date': '2018-11-23',
        'high': 176.60000610351562,
        'low': 172.10000610351562,
        'open': 174.94000244140625,
        'volume': 23624000},
       {'adjclose': 171.1645050048828,
        'close': 174.6199951171875,
        'date': 1543242600,
        'formatted_date': '2018-11-26',
        'high': 174.9499969482422,
        'low': 170.25999450683594,
        'open': 174.24000549316406,
        'volume': 44998500},
       {'adjclose': 170.7920379638672,
        'close': 174.24000549316406,
        'date': 1543329000,
        'formatted_date': '2018-11-27',
        'high': 174.77000427246094,
        'low': 170.8800048828125,
        'open': 171.50999450683594,
        'volume': 41387400},
       {'adjclose': 177.3594512939453,
        'close': 180.94000244140625,
        'date': 1543415400,
        'formatted_date': '2018-11-28',
        'high': 181.2899932861328,
        'low': 174.92999267578125,
        'open': 176.72999572753906,
        'volume': 46062500},
       {'adjclose': 175.99693298339844,
        'close': 179.5500030517578,
        'date': 1543501800,
        'formatted_date': '2018-11-29',
        'high': 182.8000030517578,
        'low': 177.6999969482422,
        'open': 182.66000366210938,
        'volume': 41770000},
       {'adjclose': 175.04615783691406,
        'close': 178.5800018310547,
        'date': 1543588200,
        'formatted_date': '2018-11-30',
        'high': 180.3300018310547,
        'low': 177.02999877929688,
        'open': 180.2899932861328,
        'volume': 39531500},
       {'adjclose': 181.16265869140625,
        'close': 184.82000732421875,
        'date': 1543847400,
        'formatted_date': '2018-12-03',
        'high': 184.94000244140625,
        'low': 181.2100067138672,
        'open': 184.4600067138672,
        'volume': 40802500},
       {'adjclose': 173.19354248046875,
        'close': 176.69000244140625,
        'date': 1543933800,
        'formatted_date': '2018-12-04',
        'high': 182.38999938964844,
        'low': 176.27000427246094,
        'open': 180.9499969482422,
        'volume': 41344300},
       {'adjclose': 171.2625274658203,
        'close': 174.72000122070312,
        'date': 1544106600,
        'formatted_date': '2018-12-06',
        'high': 174.77999877929688,
        'low': 170.4199981689453,
        'open': 171.75999450683594,
        'volume': 43098400},
       {'adjclose': 165.15582275390625,
        'close': 168.49000549316406,
        'date': 1544193000,
        'formatted_date': '2018-12-07',
        'high': 174.49000549316406,
        'low': 168.3000030517578,
        'open': 173.49000549316406,
        'volume': 42281600},
       {'adjclose': 166.2438507080078,
        'close': 169.60000610351562,
        'date': 1544452200,
        'formatted_date': '2018-12-10',
        'high': 170.08999633789062,
        'low': 163.3300018310547,
        'open': 165.0,
        'volume': 62026000},
       {'adjclose': 165.2930450439453,
        'close': 168.6300048828125,
        'date': 1544538600,
        'formatted_date': '2018-12-11',
        'high': 171.7899932861328,
        'low': 167.0,
        'open': 171.66000366210938,
        'volume': 47281700},
       {'adjclose': 165.7537384033203,
        'close': 169.10000610351562,
        'date': 1544625000,
        'formatted_date': '2018-12-12',
        'high': 171.9199981689453,
        'low': 169.02000427246094,
        'open': 170.39999389648438,
        'volume': 35627700},
       {'adjclose': 167.56712341308594,
        'close': 170.9499969482422,
        'date': 1544711400,
        'formatted_date': '2018-12-13',
        'high': 172.57000732421875,
        'low': 169.5500030517578,
        'open': 170.49000549316406,
        'volume': 31898600},
       {'adjclose': 162.2053680419922,
        'close': 165.47999572753906,
        'date': 1544797800,
        'formatted_date': '2018-12-14',
        'high': 169.0800018310547,
        'low': 165.27999877929688,
        'open': 169.0,
        'volume': 40703700},
       {'adjclose': 160.69586181640625,
        'close': 163.94000244140625,
        'date': 1545057000,
        'formatted_date': '2018-12-17',
        'high': 168.35000610351562,
        'low': 162.72999572753906,
        'open': 165.4499969482422,
        'volume': 44287900},
       {'adjclose': 162.78372192382812,
        'close': 166.07000732421875,
        'date': 1545143400,
        'formatted_date': '2018-12-18',
        'high': 167.52999877929688,
        'low': 164.38999938964844,
        'open': 165.3800048828125,
        'volume': 33841500},
       {'adjclose': 157.70619201660156,
        'close': 160.88999938964844,
        'date': 1545229800,
        'formatted_date': '2018-12-19',
        'high': 167.4499969482422,
        'low': 159.08999633789062,
        'open': 166.0,
        'volume': 49047300},
       {'adjclose': 153.72653198242188,
        'close': 156.8300018310547,
        'date': 1545316200,
        'formatted_date': '2018-12-20',
        'high': 162.11000061035156,
        'low': 155.3000030517578,
        'open': 160.39999389648438,
        'volume': 64773000},
       {'adjclose': 147.74725341796875,
        'close': 150.72999572753906,
        'date': 1545402600,
        'formatted_date': '2018-12-21',
        'high': 158.16000366210938,
        'low': 149.6300048828125,
        'open': 156.86000061035156,
        'volume': 95744600},
       {'adjclose': 143.92445373535156,
        'close': 146.8300018310547,
        'date': 1545661800,
        'formatted_date': '2018-12-24',
        'high': 151.5500030517578,
        'low': 146.58999633789062,
        'open': 148.14999389648438,
        'volume': 37169200},
       {'adjclose': 154.059814453125,
        'close': 157.1699981689453,
        'date': 1545834600,
        'formatted_date': '2018-12-26',
        'high': 157.22999572753906,
        'low': 146.72000122070312,
        'open': 148.3000030517578,
        'volume': 58582500},
       {'adjclose': 153.05999755859375,
        'close': 156.14999389648438,
        'date': 1545921000,
        'formatted_date': '2018-12-27',
        'high': 156.77000427246094,
        'low': 150.07000732421875,
        'open': 155.83999633789062,
        'volume': 53117100},
       {'adjclose': 153.138427734375,
        'close': 156.22999572753906,
        'date': 1546007400,
        'formatted_date': '2018-12-28',
        'high': 158.52000427246094,
        'low': 154.5500030517578,
        'open': 157.5,
        'volume': 42291400},
       {'adjclose': 154.61854553222656,
        'close': 157.74000549316406,
        'date': 1546266600,
        'formatted_date': '2018-12-31',
        'high': 159.36000061035156,
        'low': 156.47999572753906,
        'open': 158.52999877929688,
        'volume': 35003500},
       {'adjclose': 154.79498291015625,
        'close': 157.9199981689453,
        'date': 1546439400,
        'formatted_date': '2019-01-02',
        'high': 158.85000610351562,
        'low': 154.22999572753906,
        'open': 154.88999938964844,
        'volume': 37039700},
       {'adjclose': 139.37625122070312,
        'close': 142.19000244140625,
        'date': 1546525800,
        'formatted_date': '2019-01-03',
        'high': 145.72000122070312,
        'low': 142.0,
        'open': 143.97999572753906,
        'volume': 91312200},
       {'adjclose': 145.3261260986328,
        'close': 148.25999450683594,
        'date': 1546612200,
        'formatted_date': '2019-01-04',
        'high': 148.5500030517578,
        'low': 143.8000030517578,
        'open': 144.52999877929688,
        'volume': 58607100},
       {'adjclose': 145.002685546875,
        'close': 147.92999267578125,
        'date': 1546871400,
        'formatted_date': '2019-01-07',
        'high': 148.8300018310547,
        'low': 145.89999389648438,
        'open': 148.6999969482422,
        'volume': 54777800},
       {'adjclose': 147.76686096191406,
        'close': 150.75,
        'date': 1546957800,
        'formatted_date': '2019-01-08',
        'high': 151.82000732421875,
        'low': 148.52000427246094,
        'open': 149.55999755859375,
        'volume': 41025300},
       {'adjclose': 150.2761993408203,
        'close': 153.30999755859375,
        'date': 1547044200,
        'formatted_date': '2019-01-09',
        'high': 154.52999877929688,
        'low': 149.6300048828125,
        'open': 151.2899932861328,
        'volume': 45099100},
       {'adjclose': 150.75653076171875,
        'close': 153.8000030517578,
        'date': 1547130600,
        'formatted_date': '2019-01-10',
        'high': 153.97000122070312,
        'low': 150.86000061035156,
        'open': 152.5,
        'volume': 35780700},
       {'adjclose': 149.27638244628906,
        'close': 152.2899932861328,
        'date': 1547217000,
        'formatted_date': '2019-01-11',
        'high': 153.6999969482422,
        'low': 151.50999450683594,
        'open': 152.8800048828125,
        'volume': 27023200},
       {'adjclose': 147.03170776367188,
        'close': 150.0,
        'date': 1547476200,
        'formatted_date': '2019-01-14',
        'high': 151.27000427246094,
        'low': 149.22000122070312,
        'open': 150.85000610351562,
        'volume': 32439200},
       {'adjclose': 150.0409698486328,
        'close': 153.07000732421875,
        'date': 1547562600,
        'formatted_date': '2019-01-15',
        'high': 153.38999938964844,
        'low': 150.0500030517578,
        'open': 150.27000427246094,
        'volume': 28710900},
       {'adjclose': 151.87396240234375,
        'close': 154.94000244140625,
        'date': 1547649000,
        'formatted_date': '2019-01-16',
        'high': 155.8800048828125,
        'low': 153.0,
        'open': 153.0800018310547,
        'volume': 30569700},
       {'adjclose': 152.77574157714844,
        'close': 155.86000061035156,
        'date': 1547735400,
        'formatted_date': '2019-01-17',
        'high': 157.66000366210938,
        'low': 153.25999450683594,
        'open': 154.1999969482422,
        'volume': 29821200},
       {'adjclose': 153.7167510986328,
        'close': 156.82000732421875,
        'date': 1547821800,
        'formatted_date': '2019-01-18',
        'high': 157.8800048828125,
        'low': 155.97999572753906,
        'open': 157.5,
        'volume': 33751000},
       {'adjclose': 150.2664031982422,
        'close': 153.3000030517578,
        'date': 1548167400,
        'formatted_date': '2019-01-22',
        'high': 156.72999572753906,
        'low': 152.6199951171875,
        'open': 156.41000366210938,
        'volume': 30394000},
       {'adjclose': 150.87413024902344,
        'close': 153.9199981689453,
        'date': 1548253800,
        'formatted_date': '2019-01-23',
        'high': 155.13999938964844,
        'low': 151.6999969482422,
        'open': 154.14999389648438,
        'volume': 23130600},
       {'adjclose': 149.67825317382812,
        'close': 152.6999969482422,
        'date': 1548340200,
        'formatted_date': '2019-01-24',
        'high': 154.47999572753906,
        'low': 151.74000549316406,
        'open': 154.11000061035156,
        'volume': 25441500},
       {'adjclose': 154.63815307617188,
        'close': 157.75999450683594,
        'date': 1548426600,
        'formatted_date': '2019-01-25',
        'high': 158.1300048828125,
        'low': 154.32000732421875,
        'open': 155.47999572753906,
        'volume': 33535500},
       {'adjclose': 153.20704650878906,
        'close': 156.3000030517578,
        'date': 1548685800,
        'formatted_date': '2019-01-28',
        'high': 156.3300018310547,
        'low': 153.66000366210938,
        'open': 155.7899932861328,
        'volume': 26192100},
       {'adjclose': 151.61907958984375,
        'close': 154.67999267578125,
        'date': 1548772200,
        'formatted_date': '2019-01-29',
        'high': 158.1300048828125,
        'low': 154.11000061035156,
        'open': 156.25,
        'volume': 41587200},
       {'adjclose': 161.9799346923828,
        'close': 165.25,
        'date': 1548858600,
        'formatted_date': '2019-01-30',
        'high': 166.14999389648438,
        'low': 160.22999572753906,
        'open': 163.25,
        'volume': 61109800},
       {'adjclose': 163.1463623046875,
        'close': 166.44000244140625,
        'date': 1548945000,
        'formatted_date': '2019-01-31',
        'high': 169.0,
        'low': 164.55999755859375,
        'open': 166.11000061035156,
        'volume': 40739600},
       {'adjclose': 163.22479248046875,
        'close': 166.52000427246094,
        'date': 1549031400,
        'formatted_date': '2019-02-01',
        'high': 168.97999572753906,
        'low': 165.92999267578125,
        'open': 166.9600067138672,
        'volume': 32668100},
       {'adjclose': 167.86119079589844,
        'close': 171.25,
        'date': 1549290600,
        'formatted_date': '2019-02-04',
        'high': 171.66000366210938,
        'low': 167.27999877929688,
        'open': 167.41000366210938,
        'volume': 31495500},
       {'adjclose': 170.73321533203125,
        'close': 174.17999267578125,
        'date': 1549377000,
        'formatted_date': '2019-02-05',
        'high': 175.0800018310547,
        'low': 172.35000610351562,
        'open': 172.86000061035156,
        'volume': 36101600},
       {'adjclose': 170.7920379638672,
        'close': 174.24000549316406,
        'date': 1549463400,
        'formatted_date': '2019-02-06',
        'high': 175.57000732421875,
        'low': 172.85000610351562,
        'open': 174.64999389648438,
        'volume': 28239600},
       {'adjclose': 167.5573272705078,
        'close': 170.94000244140625,
        'date': 1549549800,
        'formatted_date': '2019-02-07',
        'high': 173.94000244140625,
        'low': 170.33999633789062,
        'open': 172.39999389648438,
        'volume': 31741700},
       {'adjclose': 167.7542266845703,
        'close': 170.41000366210938,
        'date': 1549636200,
        'formatted_date': '2019-02-08',
        'high': 170.66000366210938,
        'low': 168.4199981689453,
        'open': 168.99000549316406,
        'volume': 23820000},
       {'adjclose': 166.7894744873047,
        'close': 169.42999267578125,
        'date': 1549895400,
        'formatted_date': '2019-02-11',
        'high': 171.2100067138672,
        'low': 169.25,
        'open': 171.0500030517578,
        'volume': 20993400},
       {'adjclose': 168.2267303466797,
        'close': 170.88999938964844,
        'date': 1549981800,
        'formatted_date': '2019-02-12',
        'high': 171.0,
        'low': 169.6999969482422,
        'open': 170.10000610351562,
        'volume': 22283500},
       {'adjclose': 167.5277862548828,
        'close': 170.17999267578125,
        'date': 1550068200,
        'formatted_date': '2019-02-13',
        'high': 172.47999572753906,
        'low': 169.9199981689453,
        'open': 171.38999938964844,
        'volume': 22490200},
       {'adjclose': 168.13815307617188,
        'close': 170.8000030517578,
        'date': 1550154600,
        'formatted_date': '2019-02-14',
        'high': 171.25999450683594,
        'low': 169.3800048828125,
        'open': 169.7100067138672,
        'volume': 21835700},
       {'adjclose': 167.76406860351562,
        'close': 170.4199981689453,
        'date': 1550241000,
        'formatted_date': '2019-02-15',
        'high': 171.6999969482422,
        'low': 169.75,
        'open': 171.25,
        'volume': 24626800},
       {'adjclose': 168.26609802246094,
        'close': 170.92999267578125,
        'date': 1550586600,
        'formatted_date': '2019-02-19',
        'high': 171.44000244140625,
        'low': 169.49000549316406,
        'open': 169.7100067138672,
        'volume': 18972800},
       {'adjclose': 169.34896850585938,
        'close': 172.02999877929688,
        'date': 1550673000,
        'formatted_date': '2019-02-20',
        'high': 173.32000732421875,
        'low': 170.99000549316406,
        'open': 171.19000244140625,
        'volume': 26114400},
       {'adjclose': 168.3940887451172,
        'close': 171.05999755859375,
        'date': 1550759400,
        'formatted_date': '2019-02-21',
        'high': 172.3699951171875,
        'low': 170.3000030517578,
        'open': 171.8000030517578,
        'volume': 17249700},
       {'adjclose': 170.27430725097656,
        'close': 172.97000122070312,
        'date': 1550845800,
        'formatted_date': '2019-02-22',
        'high': 173.0,
        'low': 171.3800048828125,
        'open': 171.5800018310547,
        'volume': 18913200},
       {'adjclose': 171.51466369628906,
        'close': 174.22999572753906,
        'date': 1551105000,
        'formatted_date': '2019-02-25',
        'high': 175.8699951171875,
        'low': 173.9499969482422,
        'open': 174.16000366210938,
        'volume': 21873400},
       {'adjclose': 171.6131134033203,
        'close': 174.3300018310547,
        'date': 1551191400,
        'formatted_date': '2019-02-26',
        'high': 175.3000030517578,
        'low': 173.1699981689453,
        'open': 173.7100067138672,
        'volume': 17070200},
       {'adjclose': 172.1446990966797,
        'close': 174.8699951171875,
        'date': 1551277800,
        'formatted_date': '2019-02-27',
        'high': 175.0,
        'low': 172.72999572753906,
        'open': 173.2100067138672,
        'volume': 27835400},
       {'adjclose': 170.45150756835938,
        'close': 173.14999389648438,
        'date': 1551364200,
        'formatted_date': '2019-02-28',
        'high': 174.91000366210938,
        'low': 172.9199981689453,
        'open': 174.32000732421875,
        'volume': 28215400},
       {'adjclose': 172.2431182861328,
        'close': 174.97000122070312,
        'date': 1551450600,
        'formatted_date': '2019-03-01',
        'high': 175.14999389648438,
        'low': 172.88999938964844,
        'open': 174.27999877929688,
        'volume': 25886200},
       {'adjclose': 173.10943603515625,
        'close': 175.85000610351562,
        'date': 1551709800,
        'formatted_date': '2019-03-04',
        'high': 177.75,
        'low': 173.97000122070312,
        'open': 175.69000244140625,
        'volume': 27436200},
       {'adjclose': 172.79440307617188,
        'close': 175.52999877929688,
        'date': 1551796200,
        'formatted_date': '2019-03-05',
        'high': 176.0,
        'low': 174.5399932861328,
        'open': 175.94000244140625,
        'volume': 19737400},
       {'adjclose': 171.8001708984375,
        'close': 174.52000427246094,
        'date': 1551882600,
        'formatted_date': '2019-03-06',
        'high': 175.49000549316406,
        'low': 173.94000244140625,
        'open': 174.6699981689453,
        'volume': 20810400},
       {'adjclose': 169.8116455078125,
        'close': 172.5,
        'date': 1551969000,
        'formatted_date': '2019-03-07',
        'high': 174.44000244140625,
        'low': 172.02000427246094,
        'open': 173.8699951171875,
        'volume': 24796400},
       {'adjclose': 170.2152557373047,
        'close': 172.91000366210938,
        'date': 1552055400,
        'formatted_date': '2019-03-08',
        'high': 173.07000732421875,
        'low': 169.5,
        'open': 170.32000732421875,
        'volume': 23999400},
       {'adjclose': 176.11187744140625,
        'close': 178.89999389648438,
        'date': 1552311000,
        'formatted_date': '2019-03-11',
        'high': 179.1199951171875,
        'low': 175.35000610351562,
        'open': 175.49000549316406,
        'volume': 32011000},
       {'adjclose': 178.090576171875,
        'close': 180.91000366210938,
        'date': 1552397400,
        'formatted_date': '2019-03-12',
        'high': 182.6699981689453,
        'low': 179.3699951171875,
        'open': 180.0,
        'volume': 32467600},
       {'adjclose': 178.8780975341797,
        'close': 181.7100067138672,
        'date': 1552483800,
        'formatted_date': '2019-03-13',
        'high': 183.3000030517578,
        'low': 180.9199981689453,
        'open': 182.25,
        'volume': 31032500},
       {'adjclose': 180.86660766601562,
        'close': 183.72999572753906,
        'date': 1552570200,
        'formatted_date': '2019-03-14',
        'high': 184.10000610351562,
        'low': 182.55999755859375,
        'open': 183.89999389648438,
        'volume': 23579500},
       {'adjclose': 183.2193603515625,
        'close': 186.1199951171875,
        'date': 1552656600,
        'formatted_date': '2019-03-15',
        'high': 187.3300018310547,
        'low': 183.74000549316406,
        'open': 184.85000610351562,
        'volume': 39042900},
       {'adjclose': 185.0897674560547,
        'close': 188.02000427246094,
        'date': 1552915800,
        'formatted_date': '2019-03-18',
        'high': 188.38999938964844,
        'low': 185.7899932861328,
        'open': 185.8000030517578,
        'volume': 26219800},
       {'adjclose': 183.62298583984375,
        'close': 186.52999877929688,
        'date': 1553002200,
        'formatted_date': '2019-03-19',
        'high': 188.99000549316406,
        'low': 185.9199981689453,
        'open': 188.35000610351562,
        'volume': 31646400},
       {'adjclose': 185.2275848388672,
        'close': 188.16000366210938,
        'date': 1553088600,
        'formatted_date': '2019-03-20',
        'high': 189.49000549316406,
        'low': 184.72999572753906,
        'open': 186.22999572753906,
        'volume': 31035200},
       {'adjclose': 192.049560546875,
        'close': 195.08999633789062,
        'date': 1553175000,
        'formatted_date': '2019-03-21',
        'high': 196.3300018310547,
        'low': 189.80999755859375,
        'open': 190.02000427246094,
        'volume': 51034200},
       {'adjclose': 188.07254028320312,
        'close': 191.0500030517578,
        'date': 1553261400,
        'formatted_date': '2019-03-22',
        'high': 197.69000244140625,
        'low': 190.77999877929688,
        'open': 195.33999633789062,
        'volume': 42407700},
       {'adjclose': 185.79852294921875,
        'close': 188.74000549316406,
        'date': 1553520600,
        'formatted_date': '2019-03-25',
        'high': 191.97999572753906,
        'low': 186.60000610351562,
        'open': 191.50999450683594,
        'volume': 43845300},
       {'adjclose': 183.87892150878906,
        'close': 186.7899932861328,
        'date': 1553607000,
        'formatted_date': '2019-03-26',
        'high': 192.8800048828125,
        'low': 184.5800018310547,
        'open': 191.66000366210938,
        'volume': 49800500},
       {'adjclose': 185.53274536132812,
        'close': 188.47000122070312,
        'date': 1553693400,
        'formatted_date': '2019-03-27',
        'high': 189.75999450683594,
        'low': 186.5500030517578,
        'open': 188.75,
        'volume': 29848400},
       {'adjclose': 185.77883911132812,
        'close': 188.72000122070312,
        'date': 1553779800,
        'formatted_date': '2019-03-28',
        'high': 189.55999755859375,
        'low': 187.52999877929688,
        'open': 188.9499969482422,
        'volume': 20780400},
       {'adjclose': 186.98968505859375,
        'close': 189.9499969482422,
        'date': 1553866200,
        'formatted_date': '2019-03-29',
        'high': 190.0800018310547,
        'low': 188.5399932861328,
        'open': 189.8300018310547,
        'volume': 23564000},
       {'adjclose': 188.2595977783203,
        'close': 191.24000549316406,
        'date': 1554125400,
        'formatted_date': '2019-04-01',
        'high': 191.67999267578125,
        'low': 188.3800048828125,
        'open': 191.63999938964844,
        'volume': 27862000},
       {'adjclose': 190.9962615966797,
        'close': 194.02000427246094,
        'date': 1554211800,
        'formatted_date': '2019-04-02',
        'high': 194.4600067138672,
        'low': 191.0500030517578,
        'open': 191.08999633789062,
        'volume': 22765700},
       {'adjclose': 192.3055419921875,
        'close': 195.35000610351562,
        'date': 1554298200,
        'formatted_date': '2019-04-03',
        'high': 196.5,
        'low': 193.14999389648438,
        'open': 193.25,
        'volume': 23271800},
       {'adjclose': 192.6402130126953,
        'close': 195.69000244140625,
        'date': 1554384600,
        'formatted_date': '2019-04-04',
        'high': 196.3699951171875,
        'low': 193.13999938964844,
        'open': 194.7899932861328,
        'volume': 19114300},
       {'adjclose': 193.92979431152344,
        'close': 197.0,
        'date': 1554471000,
        'formatted_date': '2019-04-05',
        'high': 197.10000610351562,
        'low': 195.92999267578125,
        'open': 196.4499969482422,
        'volume': 18526600},
       {'adjclose': 196.9814910888672,
        'close': 200.10000610351562,
        'date': 1554730200,
        'formatted_date': '2019-04-08',
        'high': 200.22999572753906,
        'low': 196.33999633789062,
        'open': 196.4199981689453,
        'volume': 25881700},
       {'adjclose': 196.39083862304688,
        'close': 199.5,
        'date': 1554816600,
        'formatted_date': '2019-04-09',
        'high': 202.85000610351562,
        'low': 199.22999572753906,
        'open': 200.32000732421875,
        'volume': 35768200},
       {'adjclose': 197.49337768554688,
        'close': 200.6199951171875,
        'date': 1554903000,
        'formatted_date': '2019-04-10',
        'high': 200.74000549316406,
        'low': 198.17999267578125,
        'open': 198.67999267578125,
        'volume': 21695300},
       {'adjclose': 195.8494110107422,
        'close': 198.9499969482422,
        'date': 1554989400,
        'formatted_date': '2019-04-11',
        'high': 201.0,
        'low': 198.44000244140625,
        'open': 200.85000610351562,
        'volume': 20900800},
       {'adjclose': 195.77066040039062,
        'close': 198.8699951171875,
        'date': 1555075800,
        'formatted_date': '2019-04-12',
        'high': 200.13999938964844,
        'low': 196.2100067138672,
        'open': 199.1999969482422,
        'volume': 27760700},
       {'adjclose': 196.1250457763672,
        'close': 199.22999572753906,
        'date': 1555335000,
        'formatted_date': '2019-04-15',
        'high': 199.85000610351562,
        'low': 198.00999450683594,
        'open': 198.5800018310547,
        'volume': 17536600},
       {'adjclose': 196.14474487304688,
        'close': 199.25,
        'date': 1555421400,
        'formatted_date': '2019-04-16',
        'high': 201.3699951171875,
        'low': 198.55999755859375,
        'open': 199.4600067138672,
        'volume': 25696400},
       {'adjclose': 199.9642791748047,
        'close': 203.1300048828125,
        'date': 1555507800,
        'formatted_date': '2019-04-17',
        'high': 203.3800048828125,
        'low': 198.61000061035156,
        'open': 199.5399932861328,
        'volume': 28906800},
       {'adjclose': 200.6829071044922,
        'close': 203.86000061035156,
        'date': 1555594200,
        'formatted_date': '2019-04-18',
        'high': 204.14999389648438,
        'low': 202.52000427246094,
        'open': 203.1199951171875,
        'volume': 24195800},
       {'adjclose': 201.34246826171875,
        'close': 204.52999877929688,
        'date': 1555939800,
        'formatted_date': '2019-04-22',
        'high': 204.94000244140625,
        'low': 202.33999633789062,
        'open': 202.8300018310547,
        'volume': 19439500},
       {'adjclose': 204.24647521972656,
        'close': 207.47999572753906,
        'date': 1556026200,
        'formatted_date': '2019-04-23',
        'high': 207.75,
        'low': 203.89999389648438,
        'open': 204.42999267578125,
        'volume': 23323000},
       {'adjclose': 203.9314727783203,
        'close': 207.16000366210938,
        'date': 1556112600,
        'formatted_date': '2019-04-24',
        'high': 208.47999572753906,
        'low': 207.0500030517578,
        'open': 207.36000061035156,
        'volume': 17540600},
       {'adjclose': 202.08078002929688,
        'close': 205.27999877929688,
        'date': 1556199000,
        'formatted_date': '2019-04-25',
        'high': 207.75999450683594,
        'low': 205.1199951171875,
        'open': 206.8300018310547,
        'volume': 18543200},
       {'adjclose': 201.1160430908203,
        'close': 204.3000030517578,
        'date': 1556285400,
        'formatted_date': '2019-04-26',
        'high': 205.0,
        'low': 202.1199951171875,
        'open': 204.89999389648438,
        'volume': 18649100}],
      'timeZone': {'gmtOffset': -14400}},
     'AMZN': {'currency': 'USD',
      'eventsData': {},
      'firstTradeDate': {'date': 863703000, 'formatted_date': '1997-05-15'},
      'instrumentType': 'EQUITY',
      'prices': [{'adjclose': 1566.1300048828125,
        'close': 1566.1300048828125,
        'date': 1525095000,
        'formatted_date': '2018-04-30',
        'high': 1596.0,
        'low': 1560.93994140625,
        'open': 1582.5,
        'volume': 5464100},
       {'adjclose': 1582.260009765625,
        'close': 1582.260009765625,
        'date': 1525181400,
        'formatted_date': '2018-05-01',
        'high': 1585.0,
        'low': 1552.1800537109375,
        'open': 1563.219970703125,
        'volume': 4572100},
       {'adjclose': 1569.6800537109375,
        'close': 1569.6800537109375,
        'date': 1525267800,
        'formatted_date': '2018-05-02',
        'high': 1588.5,
        'low': 1566.3599853515625,
        'open': 1580.97998046875,
        'volume': 4360300},
       {'adjclose': 1572.0799560546875,
        'close': 1572.0799560546875,
        'date': 1525354200,
        'formatted_date': '2018-05-03',
        'high': 1574.800048828125,
        'low': 1546.02001953125,
        'open': 1560.010009765625,
        'volume': 4251900},
       {'adjclose': 1580.949951171875,
        'close': 1580.949951171875,
        'date': 1525440600,
        'formatted_date': '2018-05-04',
        'high': 1584.9000244140625,
        'low': 1562.18994140625,
        'open': 1562.449951171875,
        'volume': 3443600},
       {'adjclose': 1600.1400146484375,
        'close': 1600.1400146484375,
        'date': 1525699800,
        'formatted_date': '2018-05-07',
        'high': 1606.949951171875,
        'low': 1587.8299560546875,
        'open': 1589.3399658203125,
        'volume': 3801900},
       {'adjclose': 1592.3900146484375,
        'close': 1592.3900146484375,
        'date': 1525786200,
        'formatted_date': '2018-05-08',
        'high': 1596.8800048828125,
        'low': 1582.510009765625,
        'open': 1595.0,
        'volume': 3067900},
       {'adjclose': 1608.0,
        'close': 1608.0,
        'date': 1525872600,
        'formatted_date': '2018-05-09',
        'high': 1608.0,
        'low': 1592.0,
        'open': 1600.0,
        'volume': 3637300},
       {'adjclose': 1609.0799560546875,
        'close': 1609.0799560546875,
        'date': 1525959000,
        'formatted_date': '2018-05-10',
        'high': 1615.5999755859375,
        'low': 1603.43994140625,
        'open': 1608.47998046875,
        'volume': 2817500},
       {'adjclose': 1602.9100341796875,
        'close': 1602.9100341796875,
        'date': 1526045400,
        'formatted_date': '2018-05-11',
        'high': 1611.0999755859375,
        'low': 1597.8900146484375,
        'open': 1610.989990234375,
        'volume': 2263900},
       {'adjclose': 1601.5400390625,
        'close': 1601.5400390625,
        'date': 1526304600,
        'formatted_date': '2018-05-14',
        'high': 1611.1800537109375,
        'low': 1600.050048828125,
        'open': 1604.0,
        'volume': 2509500},
       {'adjclose': 1576.1199951171875,
        'close': 1576.1199951171875,
        'date': 1526391000,
        'formatted_date': '2018-05-15',
        'high': 1587.800048828125,
        'low': 1565.219970703125,
        'open': 1587.800048828125,
        'volume': 5077500},
       {'adjclose': 1587.280029296875,
        'close': 1587.280029296875,
        'date': 1526477400,
        'formatted_date': '2018-05-16',
        'high': 1594.4300537109375,
        'low': 1576.6700439453125,
        'open': 1577.5,
        'volume': 2570600},
       {'adjclose': 1581.760009765625,
        'close': 1581.760009765625,
        'date': 1526563800,
        'formatted_date': '2018-05-17',
        'high': 1594.0400390625,
        'low': 1573.0,
        'open': 1580.56005859375,
        'volume': 2147600},
       {'adjclose': 1574.3699951171875,
        'close': 1574.3699951171875,
        'date': 1526650200,
        'formatted_date': '2018-05-18',
        'high': 1583.5899658203125,
        'low': 1572.0999755859375,
        'open': 1581.3299560546875,
        'volume': 2642600},
       {'adjclose': 1585.4599609375,
        'close': 1585.4599609375,
        'date': 1526909400,
        'formatted_date': '2018-05-21',
        'high': 1592.050048828125,
        'low': 1575.0,
        'open': 1585.0,
        'volume': 2925200},
       {'adjclose': 1581.4000244140625,
        'close': 1581.4000244140625,
        'date': 1526995800,
        'formatted_date': '2018-05-22',
        'high': 1589.8900146484375,
        'low': 1575.25,
        'open': 1589.8900146484375,
        'volume': 2115600},
       {'adjclose': 1601.8599853515625,
        'close': 1601.8599853515625,
        'date': 1527082200,
        'formatted_date': '2018-05-23',
        'high': 1601.8599853515625,
        'low': 1566.3399658203125,
        'open': 1571.050048828125,
        'volume': 3361900},
       {'adjclose': 1603.0699462890625,
        'close': 1603.0699462890625,
        'date': 1527168600,
        'formatted_date': '2018-05-24',
        'high': 1608.239990234375,
        'low': 1588.3800048828125,
        'open': 1598.030029296875,
        'volume': 3430000},
       {'adjclose': 1610.1500244140625,
        'close': 1610.1500244140625,
        'date': 1527255000,
        'formatted_date': '2018-05-25',
        'high': 1614.1199951171875,
        'low': 1600.449951171875,
        'open': 1603.0,
        'volume': 2698400},
       {'adjclose': 1612.8699951171875,
        'close': 1612.8699951171875,
        'date': 1527600600,
        'formatted_date': '2018-05-29',
        'high': 1621.7900390625,
        'low': 1600.1500244140625,
        'open': 1600.7099609375,
        'volume': 3846500},
       {'adjclose': 1624.8900146484375,
        'close': 1624.8900146484375,
        'date': 1527687000,
        'formatted_date': '2018-05-30',
        'high': 1626.0,
        'low': 1612.9300537109375,
        'open': 1618.0999755859375,
        'volume': 2907400},
       {'adjclose': 1629.6199951171875,
        'close': 1629.6199951171875,
        'date': 1527773400,
        'formatted_date': '2018-05-31',
        'high': 1635.0,
        'low': 1621.3499755859375,
        'open': 1623.0,
        'volume': 3166300},
       {'adjclose': 1641.5400390625,
        'close': 1641.5400390625,
        'date': 1527859800,
        'formatted_date': '2018-06-01',
        'high': 1646.72998046875,
        'low': 1635.0899658203125,
        'open': 1637.030029296875,
        'volume': 3313400},
       {'adjclose': 1665.27001953125,
        'close': 1665.27001953125,
        'date': 1528119000,
        'formatted_date': '2018-06-04',
        'high': 1665.6800537109375,
        'low': 1645.489990234375,
        'open': 1648.9000244140625,
        'volume': 3187700},
       {'adjclose': 1696.3499755859375,
        'close': 1696.3499755859375,
        'date': 1528205400,
        'formatted_date': '2018-06-05',
        'high': 1699.0,
        'low': 1670.06005859375,
        'open': 1672.989990234375,
        'volume': 4782200},
       {'adjclose': 1695.75,
        'close': 1695.75,
        'date': 1528291800,
        'formatted_date': '2018-06-06',
        'high': 1714.5,
        'low': 1686.469970703125,
        'open': 1704.510009765625,
        'volume': 5473200},
       {'adjclose': 1689.300048828125,
        'close': 1689.300048828125,
        'date': 1528378200,
        'formatted_date': '2018-06-07',
        'high': 1699.9000244140625,
        'low': 1676.1099853515625,
        'open': 1698.56005859375,
        'volume': 3765700},
       {'adjclose': 1683.989990234375,
        'close': 1683.989990234375,
        'date': 1528464600,
        'formatted_date': '2018-06-08',
        'high': 1689.43994140625,
        'low': 1673.010009765625,
        'open': 1681.1199951171875,
        'volume': 2955100},
       {'adjclose': 1689.1199951171875,
        'close': 1689.1199951171875,
        'date': 1528723800,
        'formatted_date': '2018-06-11',
        'high': 1694.239990234375,
        'low': 1680.5899658203125,
        'open': 1681.510009765625,
        'volume': 2335500},
       {'adjclose': 1698.75,
        'close': 1698.75,
        'date': 1528810200,
        'formatted_date': '2018-06-12',
        'high': 1699.510009765625,
        'low': 1691.52001953125,
        'open': 1693.0,
        'volume': 2259200},
       {'adjclose': 1704.8599853515625,
        'close': 1704.8599853515625,
        'date': 1528896600,
        'formatted_date': '2018-06-13',
        'high': 1713.75,
        'low': 1700.1199951171875,
        'open': 1702.81005859375,
        'volume': 3327500},
       {'adjclose': 1723.8599853515625,
        'close': 1723.8599853515625,
        'date': 1528983000,
        'formatted_date': '2018-06-14',
        'high': 1724.800048828125,
        'low': 1708.8699951171875,
        'open': 1713.47998046875,
        'volume': 3174400},
       {'adjclose': 1715.969970703125,
        'close': 1715.969970703125,
        'date': 1529069400,
        'formatted_date': '2018-06-15',
        'high': 1720.8699951171875,
        'low': 1708.52001953125,
        'open': 1714.0,
        'volume': 4777600},
       {'adjclose': 1723.7900390625,
        'close': 1723.7900390625,
        'date': 1529328600,
        'formatted_date': '2018-06-18',
        'high': 1726.739990234375,
        'low': 1702.56005859375,
        'open': 1706.260009765625,
        'volume': 3107700},
       {'adjclose': 1734.780029296875,
        'close': 1734.780029296875,
        'date': 1529415000,
        'formatted_date': '2018-06-19',
        'high': 1736.1099853515625,
        'low': 1700.3900146484375,
        'open': 1709.0400390625,
        'volume': 4290100},
       {'adjclose': 1750.0799560546875,
        'close': 1750.0799560546875,
        'date': 1529501400,
        'formatted_date': '2018-06-20',
        'high': 1762.9300537109375,
        'low': 1741.3599853515625,
        'open': 1742.5,
        'volume': 4332600},
       {'adjclose': 1730.219970703125,
        'close': 1730.219970703125,
        'date': 1529587800,
        'formatted_date': '2018-06-21',
        'high': 1763.0999755859375,
        'low': 1717.56005859375,
        'open': 1760.0,
        'volume': 4941100},
       {'adjclose': 1715.6700439453125,
        'close': 1715.6700439453125,
        'date': 1529674200,
        'formatted_date': '2018-06-22',
        'high': 1743.0,
        'low': 1711.9000244140625,
        'open': 1742.6199951171875,
        'volume': 4075100},
       {'adjclose': 1663.1500244140625,
        'close': 1663.1500244140625,
        'date': 1529933400,
        'formatted_date': '2018-06-25',
        'high': 1705.0,
        'low': 1646.31005859375,
        'open': 1702.510009765625,
        'volume': 7511200},
       {'adjclose': 1691.0899658203125,
        'close': 1691.0899658203125,
        'date': 1530019800,
        'formatted_date': '2018-06-26',
        'high': 1701.5699462890625,
        'low': 1663.3399658203125,
        'open': 1672.3699951171875,
        'volume': 4386600},
       {'adjclose': 1660.510009765625,
        'close': 1660.510009765625,
        'date': 1530106200,
        'formatted_date': '2018-06-27',
        'high': 1711.949951171875,
        'low': 1660.0,
        'open': 1708.1099853515625,
        'volume': 4872200},
       {'adjclose': 1701.449951171875,
        'close': 1701.449951171875,
        'date': 1530192600,
        'formatted_date': '2018-06-28',
        'high': 1705.5,
        'low': 1661.1700439453125,
        'open': 1672.5400390625,
        'volume': 4529700},
       {'adjclose': 1699.800048828125,
        'close': 1699.800048828125,
        'date': 1530279000,
        'formatted_date': '2018-06-29',
        'high': 1723.4100341796875,
        'low': 1694.3199462890625,
        'open': 1717.0,
        'volume': 4543500},
       {'adjclose': 1713.780029296875,
        'close': 1713.780029296875,
        'date': 1530538200,
        'formatted_date': '2018-07-02',
        'high': 1713.8900146484375,
        'low': 1678.06005859375,
        'open': 1682.699951171875,
        'volume': 3185700},
       {'adjclose': 1693.9599609375,
        'close': 1693.9599609375,
        'date': 1530624600,
        'formatted_date': '2018-07-03',
        'high': 1725.0,
        'low': 1692.47998046875,
        'open': 1723.9599609375,
        'volume': 2177300},
       {'adjclose': 1699.72998046875,
        'close': 1699.72998046875,
        'date': 1530797400,
        'formatted_date': '2018-07-05',
        'high': 1710.68994140625,
        'low': 1682.1500244140625,
        'open': 1705.3800048828125,
        'volume': 2983100},
       {'adjclose': 1710.6300048828125,
        'close': 1710.6300048828125,
        'date': 1530883800,
        'formatted_date': '2018-07-06',
        'high': 1715.27001953125,
        'low': 1691.6700439453125,
        'open': 1696.0,
        'volume': 2650300},
       {'adjclose': 1739.02001953125,
        'close': 1739.02001953125,
        'date': 1531143000,
        'formatted_date': '2018-07-09',
        'high': 1739.56005859375,
        'low': 1716.22998046875,
        'open': 1724.050048828125,
        'volume': 3012000},
       {'adjclose': 1743.0699462890625,
        'close': 1743.0699462890625,
        'date': 1531229400,
        'formatted_date': '2018-07-10',
        'high': 1750.0,
        'low': 1731.0,
        'open': 1738.530029296875,
        'volume': 3002900},
       {'adjclose': 1755.0,
        'close': 1755.0,
        'date': 1531315800,
        'formatted_date': '2018-07-11',
        'high': 1756.9599609375,
        'low': 1734.0,
        'open': 1737.989990234375,
        'volume': 3209800},
       {'adjclose': 1796.6199951171875,
        'close': 1796.6199951171875,
        'date': 1531402200,
        'formatted_date': '2018-07-12',
        'high': 1798.0,
        'low': 1762.1800537109375,
        'open': 1764.510009765625,
        'volume': 4532700},
       {'adjclose': 1813.030029296875,
        'close': 1813.030029296875,
        'date': 1531488600,
        'formatted_date': '2018-07-13',
        'high': 1815.300048828125,
        'low': 1795.22998046875,
        'open': 1803.9300537109375,
        'volume': 4383200},
       {'adjclose': 1822.489990234375,
        'close': 1822.489990234375,
        'date': 1531747800,
        'formatted_date': '2018-07-16',
        'high': 1841.949951171875,
        'low': 1814.449951171875,
        'open': 1821.949951171875,
        'volume': 5466200},
       {'adjclose': 1843.9300537109375,
        'close': 1843.9300537109375,
        'date': 1531834200,
        'formatted_date': '2018-07-17',
        'high': 1851.68994140625,
        'low': 1797.3800048828125,
        'open': 1811.56005859375,
        'volume': 5682900},
       {'adjclose': 1842.9200439453125,
        'close': 1842.9200439453125,
        'date': 1531920600,
        'formatted_date': '2018-07-18',
        'high': 1858.8800048828125,
        'low': 1831.27001953125,
        'open': 1848.0,
        'volume': 4861900},
       {'adjclose': 1812.969970703125,
        'close': 1812.969970703125,
        'date': 1532007000,
        'formatted_date': '2018-07-19',
        'high': 1841.0,
        'low': 1811.27001953125,
        'open': 1829.4599609375,
        'volume': 4676900},
       {'adjclose': 1813.699951171875,
        'close': 1813.699951171875,
        'date': 1532093400,
        'formatted_date': '2018-07-20',
        'high': 1834.8399658203125,
        'low': 1810.06005859375,
        'open': 1825.010009765625,
        'volume': 3884400},
       {'adjclose': 1802.0,
        'close': 1802.0,
        'date': 1532352600,
        'formatted_date': '2018-07-23',
        'high': 1819.0,
        'low': 1769.989990234375,
        'open': 1812.2099609375,
        'volume': 3888500},
       {'adjclose': 1829.239990234375,
        'close': 1829.239990234375,
        'date': 1532439000,
        'formatted_date': '2018-07-24',
        'high': 1840.0,
        'low': 1809.3800048828125,
        'open': 1829.010009765625,
        'volume': 4278700},
       {'adjclose': 1863.6099853515625,
        'close': 1863.6099853515625,
        'date': 1532525400,
        'formatted_date': '2018-07-25',
        'high': 1863.8399658203125,
        'low': 1822.6400146484375,
        'open': 1829.300048828125,
        'volume': 3738200},
       {'adjclose': 1808.0,
        'close': 1808.0,
        'date': 1532611800,
        'formatted_date': '2018-07-26',
        'high': 1844.6800537109375,
        'low': 1804.5,
        'open': 1839.0,
        'volume': 9924400},
       {'adjclose': 1817.27001953125,
        'close': 1817.27001953125,
        'date': 1532698200,
        'formatted_date': '2018-07-27',
        'high': 1880.050048828125,
        'low': 1806.530029296875,
        'open': 1876.050048828125,
        'volume': 9681000},
       {'adjclose': 1779.219970703125,
        'close': 1779.219970703125,
        'date': 1532957400,
        'formatted_date': '2018-07-30',
        'high': 1829.5,
        'low': 1766.02001953125,
        'open': 1827.3299560546875,
        'volume': 6562300},
       {'adjclose': 1777.43994140625,
        'close': 1777.43994140625,
        'date': 1533043800,
        'formatted_date': '2018-07-31',
        'high': 1801.8299560546875,
        'low': 1739.3199462890625,
        'open': 1786.489990234375,
        'volume': 5738700},
       {'adjclose': 1797.1700439453125,
        'close': 1797.1700439453125,
        'date': 1533130200,
        'formatted_date': '2018-08-01',
        'high': 1798.43994140625,
        'low': 1776.02001953125,
        'open': 1784.0,
        'volume': 4153100},
       {'adjclose': 1834.3299560546875,
        'close': 1834.3299560546875,
        'date': 1533216600,
        'formatted_date': '2018-08-02',
        'high': 1836.56005859375,
        'low': 1786.0,
        'open': 1788.77001953125,
        'volume': 4354700},
       {'adjclose': 1823.2900390625,
        'close': 1823.2900390625,
        'date': 1533303000,
        'formatted_date': '2018-08-03',
        'high': 1841.0,
        'low': 1821.5,
        'open': 1837.739990234375,
        'volume': 3460500},
       {'adjclose': 1847.75,
        'close': 1847.75,
        'date': 1533562200,
        'formatted_date': '2018-08-06',
        'high': 1847.77001953125,
        'low': 1818.9200439453125,
        'open': 1825.81005859375,
        'volume': 3391800},
       {'adjclose': 1862.47998046875,
        'close': 1862.47998046875,
        'date': 1533648600,
        'formatted_date': '2018-08-07',
        'high': 1869.719970703125,
        'low': 1846.27001953125,
        'open': 1854.530029296875,
        'volume': 3377500},
       {'adjclose': 1886.52001953125,
        'close': 1886.52001953125,
        'date': 1533735000,
        'formatted_date': '2018-08-08',
        'high': 1891.510009765625,
        'low': 1854.5,
        'open': 1861.0,
        'volume': 3963000},
       {'adjclose': 1898.52001953125,
        'close': 1898.52001953125,
        'date': 1533821400,
        'formatted_date': '2018-08-09',
        'high': 1914.5699462890625,
        'low': 1877.47998046875,
        'open': 1882.0,
        'volume': 4860400},
       {'adjclose': 1886.300048828125,
        'close': 1886.300048828125,
        'date': 1533907800,
        'formatted_date': '2018-08-10',
        'high': 1899.5,
        'low': 1878.2099609375,
        'open': 1888.510009765625,
        'volume': 3639900},
       {'adjclose': 1896.199951171875,
        'close': 1896.199951171875,
        'date': 1534167000,
        'formatted_date': '2018-08-13',
        'high': 1925.0,
        'low': 1893.6700439453125,
        'open': 1898.5,
        'volume': 5531500},
       {'adjclose': 1919.6500244140625,
        'close': 1919.6500244140625,
        'date': 1534253400,
        'formatted_date': '2018-08-14',
        'high': 1921.010009765625,
        'low': 1900.0,
        'open': 1919.3900146484375,
        'volume': 3986100},
       {'adjclose': 1882.6199951171875,
        'close': 1882.6199951171875,
        'date': 1534339800,
        'formatted_date': '2018-08-15',
        'high': 1916.2099609375,
        'low': 1869.7900390625,
        'open': 1909.550048828125,
        'volume': 7700700},
       {'adjclose': 1886.52001953125,
        'close': 1886.52001953125,
        'date': 1534426200,
        'formatted_date': '2018-08-16',
        'high': 1905.0,
        'low': 1883.550048828125,
        'open': 1903.93994140625,
        'volume': 3957100},
       {'adjclose': 1882.219970703125,
        'close': 1882.219970703125,
        'date': 1534512600,
        'formatted_date': '2018-08-17',
        'high': 1888.0,
        'low': 1855.550048828125,
        'open': 1885.800048828125,
        'volume': 4104300},
       {'adjclose': 1876.7099609375,
        'close': 1876.7099609375,
        'date': 1534771800,
        'formatted_date': '2018-08-20',
        'high': 1891.75,
        'low': 1866.06005859375,
        'open': 1890.5699462890625,
        'volume': 2862000},
       {'adjclose': 1883.4200439453125,
        'close': 1883.4200439453125,
        'date': 1534858200,
        'formatted_date': '2018-08-21',
        'high': 1897.75,
        'low': 1874.4100341796875,
        'open': 1880.0,
        'volume': 3105600},
       {'adjclose': 1904.9000244140625,
        'close': 1904.9000244140625,
        'date': 1534944600,
        'formatted_date': '2018-08-22',
        'high': 1905.800048828125,
        'low': 1876.6400146484375,
        'open': 1876.6400146484375,
        'volume': 3080500},
       {'adjclose': 1902.9000244140625,
        'close': 1902.9000244140625,
        'date': 1535031000,
        'formatted_date': '2018-08-23',
        'high': 1919.5,
        'low': 1900.760009765625,
        'open': 1907.1700439453125,
        'volume': 3563000},
       {'adjclose': 1905.3900146484375,
        'close': 1905.3900146484375,
        'date': 1535117400,
        'formatted_date': '2018-08-24',
        'high': 1916.010009765625,
        'low': 1902.5400390625,
        'open': 1910.510009765625,
        'volume': 2800900},
       {'adjclose': 1927.6800537109375,
        'close': 1927.6800537109375,
        'date': 1535376600,
        'formatted_date': '2018-08-27',
        'high': 1927.699951171875,
        'low': 1909.280029296875,
        'open': 1915.0,
        'volume': 3569000},
       {'adjclose': 1932.8199462890625,
        'close': 1932.8199462890625,
        'date': 1535463000,
        'formatted_date': '2018-08-28',
        'high': 1941.780029296875,
        'low': 1928.8199462890625,
        'open': 1937.72998046875,
        'volume': 3100700},
       {'adjclose': 1998.0999755859375,
        'close': 1998.0999755859375,
        'date': 1535549400,
        'formatted_date': '2018-08-29',
        'high': 1998.68994140625,
        'low': 1948.93994140625,
        'open': 1953.449951171875,
        'volume': 6531800},
       {'adjclose': 2002.3800048828125,
        'close': 2002.3800048828125,
        'date': 1535635800,
        'formatted_date': '2018-08-30',
        'high': 2025.5699462890625,
        'low': 1986.9000244140625,
        'open': 1997.4200439453125,
        'volume': 7277300},
       {'adjclose': 2012.7099609375,
        'close': 2012.7099609375,
        'date': 1535722200,
        'formatted_date': '2018-08-31',
        'high': 2022.3800048828125,
        'low': 2004.739990234375,
        'open': 2007.0,
        'volume': 4204400},
       {'adjclose': 2039.510009765625,
        'close': 2039.510009765625,
        'date': 1536067800,
        'formatted_date': '2018-09-04',
        'high': 2050.5,
        'low': 2013.0,
        'open': 2026.5,
        'volume': 5721100},
       {'adjclose': 1994.8199462890625,
        'close': 1994.8199462890625,
        'date': 1536154200,
        'formatted_date': '2018-09-05',
        'high': 2040.3800048828125,
        'low': 1989.8900146484375,
        'open': 2038.1099853515625,
        'volume': 8220600},
       {'adjclose': 1958.31005859375,
        'close': 1958.31005859375,
        'date': 1536240600,
        'formatted_date': '2018-09-06',
        'high': 2007.5,
        'low': 1935.2099609375,
        'open': 2006.510009765625,
        'volume': 7488700},
       {'adjclose': 1952.0699462890625,
        'close': 1952.0699462890625,
        'date': 1536327000,
        'formatted_date': '2018-09-07',
        'high': 1975.199951171875,
        'low': 1937.3499755859375,
        'open': 1938.7099609375,
        'volume': 4892600},
       {'adjclose': 1939.010009765625,
        'close': 1939.010009765625,
        'date': 1536586200,
        'formatted_date': '2018-09-10',
        'high': 1973.0400390625,
        'low': 1931.52001953125,
        'open': 1971.0,
        'volume': 4544800},
       {'adjclose': 1987.1500244140625,
        'close': 1987.1500244140625,
        'date': 1536672600,
        'formatted_date': '2018-09-11',
        'high': 1988.8800048828125,
        'low': 1917.0,
        'open': 1928.27001953125,
        'volume': 5033600},
       {'adjclose': 1990.0,
        'close': 1990.0,
        'date': 1536759000,
        'formatted_date': '2018-09-12',
        'high': 2000.0,
        'low': 1962.43994140625,
        'open': 1994.0,
        'volume': 4414000},
       {'adjclose': 1989.8699951171875,
        'close': 1989.8699951171875,
        'date': 1536845400,
        'formatted_date': '2018-09-13',
        'high': 2008.760009765625,
        'low': 1982.030029296875,
        'open': 2000.0,
        'volume': 3621500},
       {'adjclose': 1970.18994140625,
        'close': 1970.18994140625,
        'date': 1536931800,
        'formatted_date': '2018-09-14',
        'high': 1993.6500244140625,
        'low': 1959.219970703125,
        'open': 1992.9300537109375,
        'volume': 3642000},
       {'adjclose': 1908.030029296875,
        'close': 1908.030029296875,
        'date': 1537191000,
        'formatted_date': '2018-09-17',
        'high': 1956.8199462890625,
        'low': 1887.4100341796875,
        'open': 1954.72998046875,
        'volume': 7050200},
       {'adjclose': 1941.050048828125,
        'close': 1941.050048828125,
        'date': 1537277400,
        'formatted_date': '2018-09-18',
        'high': 1958.199951171875,
        'low': 1915.43994140625,
        'open': 1918.6500244140625,
        'volume': 4268700},
       {'adjclose': 1926.4200439453125,
        'close': 1926.4200439453125,
        'date': 1537363800,
        'formatted_date': '2018-09-19',
        'high': 1940.8299560546875,
        'low': 1904.9000244140625,
        'open': 1940.5,
        'volume': 4056800},
       {'adjclose': 1944.300048828125,
        'close': 1944.300048828125,
        'date': 1537450200,
        'formatted_date': '2018-09-20',
        'high': 1955.0,
        'low': 1932.25,
        'open': 1938.5799560546875,
        'volume': 3154900},
       {'adjclose': 1915.010009765625,
        'close': 1915.010009765625,
        'date': 1537536600,
        'formatted_date': '2018-09-21',
        'high': 1957.31005859375,
        'low': 1910.5,
        'open': 1954.219970703125,
        'volume': 6855900},
       {'adjclose': 1934.3599853515625,
        'close': 1934.3599853515625,
        'date': 1537795800,
        'formatted_date': '2018-09-24',
        'high': 1936.8800048828125,
        'low': 1865.0,
        'open': 1903.7900390625,
        'volume': 4213700},
       {'adjclose': 1974.550048828125,
        'close': 1974.550048828125,
        'date': 1537882200,
        'formatted_date': '2018-09-25',
        'high': 1975.9100341796875,
        'low': 1938.8499755859375,
        'open': 1942.9000244140625,
        'volume': 4538400},
       {'adjclose': 1974.8499755859375,
        'close': 1974.8499755859375,
        'date': 1537968600,
        'formatted_date': '2018-09-26',
        'high': 1995.25,
        'low': 1961.52001953125,
        'open': 1968.5,
        'volume': 4313500},
       {'adjclose': 2012.97998046875,
        'close': 2012.97998046875,
        'date': 1538055000,
        'formatted_date': '2018-09-27',
        'high': 2016.1600341796875,
        'low': 1988.5799560546875,
        'open': 1993.239990234375,
        'volume': 4329400},
       {'adjclose': 2003.0,
        'close': 2003.0,
        'date': 1538141400,
        'formatted_date': '2018-09-28',
        'high': 2026.52001953125,
        'low': 1996.4599609375,
        'open': 2004.4100341796875,
        'volume': 4085100},
       {'adjclose': 2004.3599853515625,
        'close': 2004.3599853515625,
        'date': 1538400600,
        'formatted_date': '2018-10-01',
        'high': 2033.18994140625,
        'low': 2003.5999755859375,
        'open': 2021.989990234375,
        'volume': 3460500},
       {'adjclose': 1971.31005859375,
        'close': 1971.31005859375,
        'date': 1538487000,
        'formatted_date': '2018-10-02',
        'high': 2013.3900146484375,
        'low': 1965.77001953125,
        'open': 1999.989990234375,
        'volume': 5400700},
       {'adjclose': 1952.760009765625,
        'close': 1952.760009765625,
        'date': 1538573400,
        'formatted_date': '2018-10-03',
        'high': 1989.699951171875,
        'low': 1949.81005859375,
        'open': 1981.699951171875,
        'volume': 5253100},
       {'adjclose': 1909.4200439453125,
        'close': 1909.4200439453125,
        'date': 1538659800,
        'formatted_date': '2018-10-04',
        'high': 1956.0,
        'low': 1896.5699462890625,
        'open': 1949.0,
        'volume': 7257000},
       {'adjclose': 1889.6500244140625,
        'close': 1889.6500244140625,
        'date': 1538746200,
        'formatted_date': '2018-10-05',
        'high': 1929.0799560546875,
        'low': 1862.8299560546875,
        'open': 1917.989990234375,
        'volume': 6822300},
       {'adjclose': 1864.4200439453125,
        'close': 1864.4200439453125,
        'date': 1539005400,
        'formatted_date': '2018-10-08',
        'high': 1902.0,
        'low': 1830.6600341796875,
        'open': 1874.0,
        'volume': 7393200},
       {'adjclose': 1870.3199462890625,
        'close': 1870.3199462890625,
        'date': 1539091800,
        'formatted_date': '2018-10-09',
        'high': 1896.6800537109375,
        'low': 1852.3199462890625,
        'open': 1859.989990234375,
        'volume': 4772900},
       {'adjclose': 1755.25,
        'close': 1755.25,
        'date': 1539178200,
        'formatted_date': '2018-10-10',
        'high': 1858.56005859375,
        'low': 1754.4100341796875,
        'open': 1857.8900146484375,
        'volume': 10988900},
       {'adjclose': 1719.3599853515625,
        'close': 1719.3599853515625,
        'date': 1539264600,
        'formatted_date': '2018-10-11',
        'high': 1755.4000244140625,
        'low': 1685.0999755859375,
        'open': 1724.0,
        'volume': 13935900},
       {'adjclose': 1788.6099853515625,
        'close': 1788.6099853515625,
        'date': 1539351000,
        'formatted_date': '2018-10-12',
        'high': 1808.949951171875,
        'low': 1742.530029296875,
        'open': 1808.0,
        'volume': 9444600},
       {'adjclose': 1760.949951171875,
        'close': 1760.949951171875,
        'date': 1539610200,
        'formatted_date': '2018-10-15',
        'high': 1795.050048828125,
        'low': 1734.22998046875,
        'open': 1795.0,
        'volume': 6437200},
       {'adjclose': 1819.9599609375,
        'close': 1819.9599609375,
        'date': 1539696600,
        'formatted_date': '2018-10-16',
        'high': 1823.8800048828125,
        'low': 1761.550048828125,
        'open': 1783.5,
        'volume': 5859900},
       {'adjclose': 1831.72998046875,
        'close': 1831.72998046875,
        'date': 1539783000,
        'formatted_date': '2018-10-17',
        'high': 1845.0,
        'low': 1807.0,
        'open': 1842.7900390625,
        'volume': 5295200},
       {'adjclose': 1770.719970703125,
        'close': 1770.719970703125,
        'date': 1539869400,
        'formatted_date': '2018-10-18',
        'high': 1830.1500244140625,
        'low': 1767.8699951171875,
        'open': 1821.489990234375,
        'volume': 5874000},
       {'adjclose': 1764.030029296875,
        'close': 1764.030029296875,
        'date': 1539955800,
        'formatted_date': '2018-10-19',
        'high': 1809.0999755859375,
        'low': 1753.0,
        'open': 1785.1600341796875,
        'volume': 5907200},
       {'adjclose': 1789.300048828125,
        'close': 1789.300048828125,
        'date': 1540215000,
        'formatted_date': '2018-10-22',
        'high': 1809.5,
        'low': 1756.0,
        'open': 1784.0,
        'volume': 4500000},
       {'adjclose': 1768.699951171875,
        'close': 1768.699951171875,
        'date': 1540301400,
        'formatted_date': '2018-10-23',
        'high': 1776.3399658203125,
        'low': 1714.0,
        'open': 1742.239990234375,
        'volume': 6723900},
       {'adjclose': 1664.199951171875,
        'close': 1664.199951171875,
        'date': 1540387800,
        'formatted_date': '2018-10-24',
        'high': 1777.7099609375,
        'low': 1656.56005859375,
        'open': 1773.699951171875,
        'volume': 6928400},
       {'adjclose': 1782.1700439453125,
        'close': 1782.1700439453125,
        'date': 1540474200,
        'formatted_date': '2018-10-25',
        'high': 1794.81005859375,
        'low': 1692.010009765625,
        'open': 1703.3399658203125,
        'volume': 10285700},
       {'adjclose': 1642.81005859375,
        'close': 1642.81005859375,
        'date': 1540560600,
        'formatted_date': '2018-10-26',
        'high': 1698.4599609375,
        'low': 1603.0,
        'open': 1649.5899658203125,
        'volume': 14963800},
       {'adjclose': 1538.8800048828125,
        'close': 1538.8800048828125,
        'date': 1540819800,
        'formatted_date': '2018-10-29',
        'high': 1665.739990234375,
        'low': 1495.0,
        'open': 1660.0,
        'volume': 13866100},
       {'adjclose': 1530.4200439453125,
        'close': 1530.4200439453125,
        'date': 1540906200,
        'formatted_date': '2018-10-30',
        'high': 1540.989990234375,
        'low': 1476.3599853515625,
        'open': 1486.1600341796875,
        'volume': 12460100},
       {'adjclose': 1598.010009765625,
        'close': 1598.010009765625,
        'date': 1540992600,
        'formatted_date': '2018-10-31',
        'high': 1623.9100341796875,
        'low': 1565.0899658203125,
        'open': 1569.989990234375,
        'volume': 9390200},
       {'adjclose': 1665.530029296875,
        'close': 1665.530029296875,
        'date': 1541079000,
        'formatted_date': '2018-11-01',
        'high': 1670.449951171875,
        'low': 1598.43994140625,
        'open': 1623.530029296875,
        'volume': 8135500},
       {'adjclose': 1665.530029296875,
        'close': 1665.530029296875,
        'date': 1541165400,
        'formatted_date': '2018-11-02',
        'high': 1697.43994140625,
        'low': 1651.8299560546875,
        'open': 1678.5899658203125,
        'volume': 6955500},
       {'adjclose': 1627.800048828125,
        'close': 1627.800048828125,
        'date': 1541428200,
        'formatted_date': '2018-11-05',
        'high': 1658.0899658203125,
        'low': 1596.3599853515625,
        'open': 1657.5699462890625,
        'volume': 5624700},
       {'adjclose': 1642.81005859375,
        'close': 1642.81005859375,
        'date': 1541514600,
        'formatted_date': '2018-11-06',
        'high': 1665.0,
        'low': 1614.550048828125,
        'open': 1618.3499755859375,
        'volume': 4257400},
       {'adjclose': 1755.489990234375,
        'close': 1755.489990234375,
        'date': 1541601000,
        'formatted_date': '2018-11-07',
        'high': 1759.22998046875,
        'low': 1664.0799560546875,
        'open': 1673.0,
        'volume': 8192200},
       {'adjclose': 1754.9100341796875,
        'close': 1754.9100341796875,
        'date': 1541687400,
        'formatted_date': '2018-11-08',
        'high': 1784.0,
        'low': 1725.1099853515625,
        'open': 1755.0,
        'volume': 6534900},
       {'adjclose': 1712.4300537109375,
        'close': 1712.4300537109375,
        'date': 1541773800,
        'formatted_date': '2018-11-09',
        'high': 1743.9200439453125,
        'low': 1701.8699951171875,
        'open': 1732.5,
        'volume': 5902200},
       {'adjclose': 1636.8499755859375,
        'close': 1636.8499755859375,
        'date': 1542033000,
        'formatted_date': '2018-11-12',
        'high': 1708.550048828125,
        'low': 1630.010009765625,
        'open': 1698.239990234375,
        'volume': 6806200},
       {'adjclose': 1631.1700439453125,
        'close': 1631.1700439453125,
        'date': 1542119400,
        'formatted_date': '2018-11-13',
        'high': 1677.06005859375,
        'low': 1613.75,
        'open': 1649.2900390625,
        'volume': 5933300},
       {'adjclose': 1599.010009765625,
        'close': 1599.010009765625,
        'date': 1542205800,
        'formatted_date': '2018-11-14',
        'high': 1673.0,
        'low': 1597.0699462890625,
        'open': 1656.3199462890625,
        'volume': 6486900},
       {'adjclose': 1619.43994140625,
        'close': 1619.43994140625,
        'date': 1542292200,
        'formatted_date': '2018-11-15',
        'high': 1624.8199462890625,
        'low': 1546.510009765625,
        'open': 1581.010009765625,
        'volume': 8427300},
       {'adjclose': 1593.4100341796875,
        'close': 1593.4100341796875,
        'date': 1542378600,
        'formatted_date': '2018-11-16',
        'high': 1614.47998046875,
        'low': 1573.1199951171875,
        'open': 1587.5,
        'volume': 6066100},
       {'adjclose': 1512.2900390625,
        'close': 1512.2900390625,
        'date': 1542637800,
        'formatted_date': '2018-11-19',
        'high': 1581.18994140625,
        'low': 1503.3599853515625,
        'open': 1577.010009765625,
        'volume': 7790000},
       {'adjclose': 1495.4599609375,
        'close': 1495.4599609375,
        'date': 1542724200,
        'formatted_date': '2018-11-20',
        'high': 1534.75,
        'low': 1420.0,
        'open': 1437.5,
        'volume': 10878800},
       {'adjclose': 1516.72998046875,
        'close': 1516.72998046875,
        'date': 1542810600,
        'formatted_date': '2018-11-21',
        'high': 1550.0,
        'low': 1515.0,
        'open': 1542.989990234375,
        'volume': 5716800},
       {'adjclose': 1502.06005859375,
        'close': 1502.06005859375,
        'date': 1542983400,
        'formatted_date': '2018-11-23',
        'high': 1536.199951171875,
        'low': 1501.81005859375,
        'open': 1517.0,
        'volume': 2707600},
       {'adjclose': 1581.3299560546875,
        'close': 1581.3299560546875,
        'date': 1543242600,
        'formatted_date': '2018-11-26',
        'high': 1584.81005859375,
        'low': 1524.219970703125,
        'open': 1539.0,
        'volume': 6257700},
       {'adjclose': 1581.4200439453125,
        'close': 1581.4200439453125,
        'date': 1543329000,
        'formatted_date': '2018-11-27',
        'high': 1597.6500244140625,
        'low': 1558.010009765625,
        'open': 1575.989990234375,
        'volume': 5783200},
       {'adjclose': 1677.75,
        'close': 1677.75,
        'date': 1543415400,
        'formatted_date': '2018-11-28',
        'high': 1681.449951171875,
        'low': 1601.219970703125,
        'open': 1613.9200439453125,
        'volume': 8458700},
       {'adjclose': 1673.5699462890625,
        'close': 1673.5699462890625,
        'date': 1543501800,
        'formatted_date': '2018-11-29',
        'high': 1689.989990234375,
        'low': 1652.3299560546875,
        'open': 1674.989990234375,
        'volume': 6613200},
       {'adjclose': 1690.1700439453125,
        'close': 1690.1700439453125,
        'date': 1543588200,
        'formatted_date': '2018-11-30',
        'high': 1696.0,
        'low': 1666.5,
        'open': 1679.5,
        'volume': 5761800},
       {'adjclose': 1772.3599853515625,
        'close': 1772.3599853515625,
        'date': 1543847400,
        'formatted_date': '2018-12-03',
        'high': 1778.3399658203125,
        'low': 1730.0,
        'open': 1769.4599609375,
        'volume': 6862300},
       {'adjclose': 1668.4000244140625,
        'close': 1668.4000244140625,
        'date': 1543933800,
        'formatted_date': '2018-12-04',
        'high': 1770.3399658203125,
        'low': 1665.0,
        'open': 1756.0,
        'volume': 8694500},
       {'adjclose': 1699.18994140625,
        'close': 1699.18994140625,
        'date': 1544106600,
        'formatted_date': '2018-12-06',
        'high': 1701.050048828125,
        'low': 1609.8499755859375,
        'open': 1614.8699951171875,
        'volume': 8789400},
       {'adjclose': 1629.1300048828125,
        'close': 1629.1300048828125,
        'date': 1544193000,
        'formatted_date': '2018-12-07',
        'high': 1718.9300537109375,
        'low': 1625.4599609375,
        'open': 1705.0699462890625,
        'volume': 7576100},
       {'adjclose': 1641.030029296875,
        'close': 1641.030029296875,
        'date': 1544452200,
        'formatted_date': '2018-12-10',
        'high': 1657.989990234375,
        'low': 1590.8699951171875,
        'open': 1623.8399658203125,
        'volume': 7494800},
       {'adjclose': 1643.239990234375,
        'close': 1643.239990234375,
        'date': 1544538600,
        'formatted_date': '2018-12-11',
        'high': 1679.469970703125,
        'low': 1619.5999755859375,
        'open': 1678.0,
        'volume': 6244700},
       {'adjclose': 1663.5400390625,
        'close': 1663.5400390625,
        'date': 1544625000,
        'formatted_date': '2018-12-12',
        'high': 1704.989990234375,
        'low': 1660.27001953125,
        'open': 1669.0,
        'volume': 6598000},
       {'adjclose': 1658.3800048828125,
        'close': 1658.3800048828125,
        'date': 1544711400,
        'formatted_date': '2018-12-13',
        'high': 1692.1199951171875,
        'low': 1641.5,
        'open': 1680.0,
        'volume': 5271300},
       {'adjclose': 1591.9100341796875,
        'close': 1591.9100341796875,
        'date': 1544797800,
        'formatted_date': '2018-12-14',
        'high': 1642.5699462890625,
        'low': 1585.0,
        'open': 1638.0,
        'volume': 6367200},
       {'adjclose': 1520.9100341796875,
        'close': 1520.9100341796875,
        'date': 1545057000,
        'formatted_date': '2018-12-17',
        'high': 1576.1300048828125,
        'low': 1505.010009765625,
        'open': 1566.0,
        'volume': 8829800},
       {'adjclose': 1551.47998046875,
        'close': 1551.47998046875,
        'date': 1545143400,
        'formatted_date': '2018-12-18',
        'high': 1567.550048828125,
        'low': 1523.010009765625,
        'open': 1540.0,
        'volume': 6523000},
       {'adjclose': 1495.0799560546875,
        'close': 1495.0799560546875,
        'date': 1545229800,
        'formatted_date': '2018-12-19',
        'high': 1584.530029296875,
        'low': 1483.1800537109375,
        'open': 1543.050048828125,
        'volume': 8792200},
       {'adjclose': 1460.8299560546875,
        'close': 1460.8299560546875,
        'date': 1545316200,
        'formatted_date': '2018-12-20',
        'high': 1509.5,
        'low': 1432.68994140625,
        'open': 1484.0,
        'volume': 9991800},
       {'adjclose': 1377.449951171875,
        'close': 1377.449951171875,
        'date': 1545402600,
        'formatted_date': '2018-12-21',
        'high': 1480.0,
        'low': 1363.9599609375,
        'open': 1464.989990234375,
        'volume': 13640300},
       {'adjclose': 1343.9599609375,
        'close': 1343.9599609375,
        'date': 1545661800,
        'formatted_date': '2018-12-24',
        'high': 1396.030029296875,
        'low': 1307.0,
        'open': 1346.0,
        'volume': 7220000},
       {'adjclose': 1470.9000244140625,
        'close': 1470.9000244140625,
        'date': 1545834600,
        'formatted_date': '2018-12-26',
        'high': 1473.1600341796875,
        'low': 1363.010009765625,
        'open': 1368.8900146484375,
        'volume': 10411800},
       {'adjclose': 1461.6400146484375,
        'close': 1461.6400146484375,
        'date': 1545921000,
        'formatted_date': '2018-12-27',
        'high': 1469.0,
        'low': 1390.31005859375,
        'open': 1454.199951171875,
        'volume': 9722000},
       {'adjclose': 1478.02001953125,
        'close': 1478.02001953125,
        'date': 1546007400,
        'formatted_date': '2018-12-28',
        'high': 1513.469970703125,
        'low': 1449.0,
        'open': 1473.3499755859375,
        'volume': 8829000},
       {'adjclose': 1501.969970703125,
        'close': 1501.969970703125,
        'date': 1546266600,
        'formatted_date': '2018-12-31',
        'high': 1520.760009765625,
        'low': 1487.0,
        'open': 1510.800048828125,
        'volume': 6954500},
       {'adjclose': 1539.1300048828125,
        'close': 1539.1300048828125,
        'date': 1546439400,
        'formatted_date': '2019-01-02',
        'high': 1553.3599853515625,
        'low': 1460.9300537109375,
        'open': 1465.199951171875,
        'volume': 7983100},
       {'adjclose': 1500.280029296875,
        'close': 1500.280029296875,
        'date': 1546525800,
        'formatted_date': '2019-01-03',
        'high': 1538.0,
        'low': 1497.1099853515625,
        'open': 1520.010009765625,
        'volume': 6975600},
       {'adjclose': 1575.3900146484375,
        'close': 1575.3900146484375,
        'date': 1546612200,
        'formatted_date': '2019-01-04',
        'high': 1594.0,
        'low': 1518.31005859375,
        'open': 1530.0,
        'volume': 9182600},
       {'adjclose': 1629.510009765625,
        'close': 1629.510009765625,
        'date': 1546871400,
        'formatted_date': '2019-01-07',
        'high': 1634.56005859375,
        'low': 1589.18994140625,
        'open': 1602.31005859375,
        'volume': 7993200},
       {'adjclose': 1656.5799560546875,
        'close': 1656.5799560546875,
        'date': 1546957800,
        'formatted_date': '2019-01-08',
        'high': 1676.6099853515625,
        'low': 1616.6099853515625,
        'open': 1664.68994140625,
        'volume': 8881400},
       {'adjclose': 1659.4200439453125,
        'close': 1659.4200439453125,
        'date': 1547044200,
        'formatted_date': '2019-01-09',
        'high': 1667.800048828125,
        'low': 1641.4000244140625,
        'open': 1652.97998046875,
        'volume': 6348800},
       {'adjclose': 1656.219970703125,
        'close': 1656.219970703125,
        'date': 1547130600,
        'formatted_date': '2019-01-10',
        'high': 1663.25,
        'low': 1621.6199951171875,
        'open': 1641.010009765625,
        'volume': 6507700},
       {'adjclose': 1640.56005859375,
        'close': 1640.56005859375,
        'date': 1547217000,
        'formatted_date': '2019-01-11',
        'high': 1660.2900390625,
        'low': 1636.219970703125,
        'open': 1640.550048828125,
        'volume': 4686200},
       {'adjclose': 1617.2099609375,
        'close': 1617.2099609375,
        'date': 1547476200,
        'formatted_date': '2019-01-14',
        'high': 1648.199951171875,
        'low': 1595.1500244140625,
        'open': 1615.0,
        'volume': 6005900},
       {'adjclose': 1674.56005859375,
        'close': 1674.56005859375,
        'date': 1547562600,
        'formatted_date': '2019-01-15',
        'high': 1675.1600341796875,
        'low': 1626.010009765625,
        'open': 1632.0,
        'volume': 5998500},
       {'adjclose': 1683.780029296875,
        'close': 1683.780029296875,
        'date': 1547649000,
        'formatted_date': '2019-01-16',
        'high': 1705.0,
        'low': 1675.8800048828125,
        'open': 1684.219970703125,
        'volume': 6366900},
       {'adjclose': 1693.219970703125,
        'close': 1693.219970703125,
        'date': 1547735400,
        'formatted_date': '2019-01-17',
        'high': 1700.1700439453125,
        'low': 1677.5,
        'open': 1680.0,
        'volume': 4208900},
       {'adjclose': 1696.199951171875,
        'close': 1696.199951171875,
        'date': 1547821800,
        'formatted_date': '2019-01-18',
        'high': 1716.199951171875,
        'low': 1691.5400390625,
        'open': 1712.0,
        'volume': 6020500},
       {'adjclose': 1632.1700439453125,
        'close': 1632.1700439453125,
        'date': 1548167400,
        'formatted_date': '2019-01-22',
        'high': 1681.8699951171875,
        'low': 1610.199951171875,
        'open': 1681.0,
        'volume': 6416800},
       {'adjclose': 1640.02001953125,
        'close': 1640.02001953125,
        'date': 1548253800,
        'formatted_date': '2019-01-23',
        'high': 1657.4300537109375,
        'low': 1612.0,
        'open': 1656.0,
        'volume': 5225200},
       {'adjclose': 1654.9300537109375,
        'close': 1654.9300537109375,
        'date': 1548340200,
        'formatted_date': '2019-01-24',
        'high': 1657.260009765625,
        'low': 1631.780029296875,
        'open': 1641.0699462890625,
        'volume': 4089900},
       {'adjclose': 1670.5699462890625,
        'close': 1670.5699462890625,
        'date': 1548426600,
        'formatted_date': '2019-01-25',
        'high': 1683.47998046875,
        'low': 1661.6099853515625,
        'open': 1670.5,
        'volume': 4945900},
       {'adjclose': 1637.8900146484375,
        'close': 1637.8900146484375,
        'date': 1548685800,
        'formatted_date': '2019-01-28',
        'high': 1645.0,
        'low': 1614.0899658203125,
        'open': 1643.5899658203125,
        'volume': 4837700},
       {'adjclose': 1593.8800048828125,
        'close': 1593.8800048828125,
        'date': 1548772200,
        'formatted_date': '2019-01-29',
        'high': 1632.3800048828125,
        'low': 1590.719970703125,
        'open': 1631.27001953125,
        'volume': 4632800},
       {'adjclose': 1670.4300537109375,
        'close': 1670.4300537109375,
        'date': 1548858600,
        'formatted_date': '2019-01-30',
        'high': 1676.949951171875,
        'low': 1619.6800537109375,
        'open': 1623.0,
        'volume': 5783800},
       {'adjclose': 1718.72998046875,
        'close': 1718.72998046875,
        'date': 1548945000,
        'formatted_date': '2019-01-31',
        'high': 1736.4100341796875,
        'low': 1679.0799560546875,
        'open': 1692.8499755859375,
        'volume': 10910300},
       {'adjclose': 1626.22998046875,
        'close': 1626.22998046875,
        'date': 1549031400,
        'formatted_date': '2019-02-01',
        'high': 1673.06005859375,
        'low': 1622.010009765625,
        'open': 1638.8800048828125,
        'volume': 11506200},
       {'adjclose': 1633.31005859375,
        'close': 1633.31005859375,
        'date': 1549290600,
        'formatted_date': '2019-02-04',
        'high': 1649.6300048828125,
        'low': 1613.5,
        'open': 1623.0,
        'volume': 4929100},
       {'adjclose': 1658.81005859375,
        'close': 1658.81005859375,
        'date': 1549377000,
        'formatted_date': '2019-02-05',
        'high': 1665.260009765625,
        'low': 1642.5,
        'open': 1643.3399658203125,
        'volume': 4453100},
       {'adjclose': 1640.260009765625,
        'close': 1640.260009765625,
        'date': 1549463400,
        'formatted_date': '2019-02-06',
        'high': 1672.260009765625,
        'low': 1633.3399658203125,
        'open': 1670.75,
        'volume': 3939900},
       {'adjclose': 1614.3699951171875,
        'close': 1614.3699951171875,
        'date': 1549549800,
        'formatted_date': '2019-02-07',
        'high': 1625.5400390625,
        'low': 1592.9100341796875,
        'open': 1625.0,
        'volume': 4626600},
       {'adjclose': 1588.219970703125,
        'close': 1588.219970703125,
        'date': 1549636200,
        'formatted_date': '2019-02-08',
        'high': 1588.5899658203125,
        'low': 1566.760009765625,
        'open': 1586.0,
        'volume': 5657500},
       {'adjclose': 1591.0,
        'close': 1591.0,
        'date': 1549895400,
        'formatted_date': '2019-02-11',
        'high': 1609.2900390625,
        'low': 1586.0,
        'open': 1600.97998046875,
        'volume': 3317300},
       {'adjclose': 1638.010009765625,
        'close': 1638.010009765625,
        'date': 1549981800,
        'formatted_date': '2019-02-12',
        'high': 1639.4000244140625,
        'low': 1598.8800048828125,
        'open': 1604.0,
        'volume': 4858600},
       {'adjclose': 1640.0,
        'close': 1640.0,
        'date': 1550068200,
        'formatted_date': '2019-02-13',
        'high': 1656.3800048828125,
        'low': 1637.1099853515625,
        'open': 1647.0,
        'volume': 3560300},
       {'adjclose': 1622.6500244140625,
        'close': 1622.6500244140625,
        'date': 1550154600,
        'formatted_date': '2019-02-14',
        'high': 1637.9000244140625,
        'low': 1606.06005859375,
        'open': 1624.5,
        'volume': 4120500},
       {'adjclose': 1607.949951171875,
        'close': 1607.949951171875,
        'date': 1550241000,
        'formatted_date': '2019-02-15',
        'high': 1628.9100341796875,
        'low': 1604.5,
        'open': 1627.8599853515625,
        'volume': 4343900},
       {'adjclose': 1627.5799560546875,
        'close': 1627.5799560546875,
        'date': 1550586600,
        'formatted_date': '2019-02-19',
        'high': 1634.0,
        'low': 1600.56005859375,
        'open': 1601.0,
        'volume': 3681700},
       {'adjclose': 1622.0999755859375,
        'close': 1622.0999755859375,
        'date': 1550673000,
        'formatted_date': '2019-02-20',
        'high': 1634.9300537109375,
        'low': 1610.1199951171875,
        'open': 1630.0,
        'volume': 3337600},
       {'adjclose': 1619.43994140625,
        'close': 1619.43994140625,
        'date': 1550759400,
        'formatted_date': '2019-02-21',
        'high': 1623.56005859375,
        'low': 1600.9100341796875,
        'open': 1619.8499755859375,
        'volume': 3483400},
       {'adjclose': 1631.56005859375,
        'close': 1631.56005859375,
        'date': 1550845800,
        'formatted_date': '2019-02-22',
        'high': 1634.93994140625,
        'low': 1621.1700439453125,
        'open': 1623.5,
        'volume': 3096200},
       {'adjclose': 1633.0,
        'close': 1633.0,
        'date': 1551105000,
        'formatted_date': '2019-02-25',
        'high': 1654.5999755859375,
        'low': 1630.3900146484375,
        'open': 1641.449951171875,
        'volume': 3184500},
       {'adjclose': 1636.4000244140625,
        'close': 1636.4000244140625,
        'date': 1551191400,
        'formatted_date': '2019-02-26',
        'high': 1639.989990234375,
        'low': 1616.1300048828125,
        'open': 1625.97998046875,
        'volume': 2665800},
       {'adjclose': 1641.0899658203125,
        'close': 1641.0899658203125,
        'date': 1551277800,
        'formatted_date': '2019-02-27',
        'high': 1641.81005859375,
        'low': 1615.0999755859375,
        'open': 1628.1800537109375,
        'volume': 3148800},
       {'adjclose': 1639.8299560546875,
        'close': 1639.8299560546875,
        'date': 1551364200,
        'formatted_date': '2019-02-28',
        'high': 1651.77001953125,
        'low': 1633.8299560546875,
        'open': 1635.25,
        'volume': 3025900},
       {'adjclose': 1671.72998046875,
        'close': 1671.72998046875,
        'date': 1551450600,
        'formatted_date': '2019-03-01',
        'high': 1674.260009765625,
        'low': 1651.0,
        'open': 1655.1300048828125,
        'volume': 4974900},
       {'adjclose': 1696.1700439453125,
        'close': 1696.1700439453125,
        'date': 1551709800,
        'formatted_date': '2019-03-04',
        'high': 1709.4300537109375,
        'low': 1674.3599853515625,
        'open': 1685.0,
        'volume': 6167400},
       {'adjclose': 1692.4300537109375,
        'close': 1692.4300537109375,
        'date': 1551796200,
        'formatted_date': '2019-03-05',
        'high': 1707.800048828125,
        'low': 1689.010009765625,
        'open': 1702.949951171875,
        'volume': 3681500},
       {'adjclose': 1668.949951171875,
        'close': 1668.949951171875,
        'date': 1551882600,
        'formatted_date': '2019-03-06',
        'high': 1697.75,
        'low': 1668.280029296875,
        'open': 1695.969970703125,
        'volume': 3996000},
       {'adjclose': 1625.949951171875,
        'close': 1625.949951171875,
        'date': 1551969000,
        'formatted_date': '2019-03-07',
        'high': 1669.75,
        'low': 1620.510009765625,
        'open': 1667.3699951171875,
        'volume': 4957000},
       {'adjclose': 1620.800048828125,
        'close': 1620.800048828125,
        'date': 1552055400,
        'formatted_date': '2019-03-08',
        'high': 1622.719970703125,
        'low': 1586.5699462890625,
        'open': 1604.010009765625,
        'volume': 4667000},
       {'adjclose': 1670.6199951171875,
        'close': 1670.6199951171875,
        'date': 1552311000,
        'formatted_date': '2019-03-11',
        'high': 1672.2900390625,
        'low': 1626.010009765625,
        'open': 1626.1199951171875,
        'volume': 3876400},
       {'adjclose': 1673.0999755859375,
        'close': 1673.0999755859375,
        'date': 1552397400,
        'formatted_date': '2019-03-12',
        'high': 1684.27001953125,
        'low': 1660.97998046875,
        'open': 1669.0,
        'volume': 3614500},
       {'adjclose': 1690.81005859375,
        'close': 1690.81005859375,
        'date': 1552483800,
        'formatted_date': '2019-03-13',
        'high': 1700.0,
        'low': 1679.3499755859375,
        'open': 1683.0,
        'volume': 3552000},
       {'adjclose': 1686.219970703125,
        'close': 1686.219970703125,
        'date': 1552570200,
        'formatted_date': '2019-03-14',
        'high': 1702.0,
        'low': 1684.3399658203125,
        'open': 1691.199951171875,
        'volume': 2946600},
       {'adjclose': 1712.3599853515625,
        'close': 1712.3599853515625,
        'date': 1552656600,
        'formatted_date': '2019-03-15',
        'high': 1718.800048828125,
        'low': 1693.1300048828125,
        'open': 1703.0,
        'volume': 7550900},
       {'adjclose': 1742.1500244140625,
        'close': 1742.1500244140625,
        'date': 1552915800,
        'formatted_date': '2019-03-18',
        'high': 1750.0,
        'low': 1712.6300048828125,
        'open': 1712.699951171875,
        'volume': 5429100},
       {'adjclose': 1761.8499755859375,
        'close': 1761.8499755859375,
        'date': 1553002200,
        'formatted_date': '2019-03-19',
        'high': 1784.1600341796875,
        'low': 1753.510009765625,
        'open': 1753.510009765625,
        'volume': 6364200},
       {'adjclose': 1797.27001953125,
        'close': 1797.27001953125,
        'date': 1553088600,
        'formatted_date': '2019-03-20',
        'high': 1799.5,
        'low': 1767.030029296875,
        'open': 1769.93994140625,
        'volume': 6265600},
       {'adjclose': 1819.260009765625,
        'close': 1819.260009765625,
        'date': 1553175000,
        'formatted_date': '2019-03-21',
        'high': 1823.75,
        'low': 1787.280029296875,
        'open': 1796.260009765625,
        'volume': 5767800},
       {'adjclose': 1764.77001953125,
        'close': 1764.77001953125,
        'date': 1553261400,
        'formatted_date': '2019-03-22',
        'high': 1818.97998046875,
        'low': 1763.1099853515625,
        'open': 1810.1700439453125,
        'volume': 6363000},
       {'adjclose': 1774.260009765625,
        'close': 1774.260009765625,
        'date': 1553520600,
        'formatted_date': '2019-03-25',
        'high': 1782.6800537109375,
        'low': 1747.5,
        'open': 1757.7900390625,
        'volume': 5103800},
       {'adjclose': 1783.760009765625,
        'close': 1783.760009765625,
        'date': 1553607000,
        'formatted_date': '2019-03-26',
        'high': 1805.77001953125,
        'low': 1773.3599853515625,
        'open': 1793.0,
        'volume': 4865900},
       {'adjclose': 1765.699951171875,
        'close': 1765.699951171875,
        'date': 1553693400,
        'formatted_date': '2019-03-27',
        'high': 1787.5,
        'low': 1745.6800537109375,
        'open': 1784.1300048828125,
        'volume': 4324800},
       {'adjclose': 1773.4200439453125,
        'close': 1773.4200439453125,
        'date': 1553779800,
        'formatted_date': '2019-03-28',
        'high': 1777.9300537109375,
        'low': 1753.469970703125,
        'open': 1770.0,
        'volume': 3043000},
       {'adjclose': 1780.75,
        'close': 1780.75,
        'date': 1553866200,
        'formatted_date': '2019-03-29',
        'high': 1792.8599853515625,
        'low': 1776.6300048828125,
        'open': 1786.5799560546875,
        'volume': 3320800},
       {'adjclose': 1814.18994140625,
        'close': 1814.18994140625,
        'date': 1554125400,
        'formatted_date': '2019-04-01',
        'high': 1815.6700439453125,
        'low': 1798.72998046875,
        'open': 1800.1099853515625,
        'volume': 4238800},
       {'adjclose': 1813.97998046875,
        'close': 1813.97998046875,
        'date': 1554211800,
        'formatted_date': '2019-04-02',
        'high': 1820.0,
        'low': 1805.1199951171875,
        'open': 1811.02001953125,
        'volume': 3448100},
       {'adjclose': 1820.699951171875,
        'close': 1820.699951171875,
        'date': 1554298200,
        'formatted_date': '2019-04-03',
        'high': 1830.0,
        'low': 1809.6199951171875,
        'open': 1826.719970703125,
        'volume': 3980600},
       {'adjclose': 1818.8599853515625,
        'close': 1818.8599853515625,
        'date': 1554384600,
        'formatted_date': '2019-04-04',
        'high': 1828.75,
        'low': 1804.199951171875,
        'open': 1820.6500244140625,
        'volume': 3623900},
       {'adjclose': 1837.280029296875,
        'close': 1837.280029296875,
        'date': 1554471000,
        'formatted_date': '2019-04-05',
        'high': 1838.5799560546875,
        'low': 1825.18994140625,
        'open': 1829.0,
        'volume': 3640500},
       {'adjclose': 1849.8599853515625,
        'close': 1849.8599853515625,
        'date': 1554730200,
        'formatted_date': '2019-04-08',
        'high': 1850.199951171875,
        'low': 1825.1099853515625,
        'open': 1833.22998046875,
        'volume': 3752800},
       {'adjclose': 1835.8399658203125,
        'close': 1835.8399658203125,
        'date': 1554816600,
        'formatted_date': '2019-04-09',
        'high': 1853.0899658203125,
        'low': 1831.780029296875,
        'open': 1845.489990234375,
        'volume': 3714400},
       {'adjclose': 1847.3299560546875,
        'close': 1847.3299560546875,
        'date': 1554903000,
        'formatted_date': '2019-04-10',
        'high': 1848.0,
        'low': 1828.81005859375,
        'open': 1841.0,
        'volume': 2964000},
       {'adjclose': 1844.0699462890625,
        'close': 1844.0699462890625,
        'date': 1554989400,
        'formatted_date': '2019-04-11',
        'high': 1849.949951171875,
        'low': 1840.31005859375,
        'open': 1848.699951171875,
        'volume': 2654800},
       {'adjclose': 1843.06005859375,
        'close': 1843.06005859375,
        'date': 1555075800,
        'formatted_date': '2019-04-12',
        'high': 1851.5,
        'low': 1841.300048828125,
        'open': 1848.4000244140625,
        'volume': 3114400},
       {'adjclose': 1844.8699951171875,
        'close': 1844.8699951171875,
        'date': 1555335000,
        'formatted_date': '2019-04-15',
        'high': 1846.8499755859375,
        'low': 1818.9000244140625,
        'open': 1842.0,
        'volume': 3724400},
       {'adjclose': 1863.0400390625,
        'close': 1863.0400390625,
        'date': 1555421400,
        'formatted_date': '2019-04-16',
        'high': 1869.77001953125,
        'low': 1848.0,
        'open': 1851.3499755859375,
        'volume': 3044600},
       {'adjclose': 1864.8199462890625,
        'close': 1864.8199462890625,
        'date': 1555507800,
        'formatted_date': '2019-04-17',
        'high': 1876.469970703125,
        'low': 1860.43994140625,
        'open': 1872.989990234375,
        'volume': 2893500},
       {'adjclose': 1861.68994140625,
        'close': 1861.68994140625,
        'date': 1555594200,
        'formatted_date': '2019-04-18',
        'high': 1870.8199462890625,
        'low': 1859.47998046875,
        'open': 1868.7900390625,
        'volume': 2749900},
       {'adjclose': 1887.31005859375,
        'close': 1887.31005859375,
        'date': 1555939800,
        'formatted_date': '2019-04-22',
        'high': 1888.4200439453125,
        'low': 1845.6400146484375,
        'open': 1855.4000244140625,
        'volume': 3373800},
       {'adjclose': 1923.77001953125,
        'close': 1923.77001953125,
        'date': 1556026200,
        'formatted_date': '2019-04-23',
        'high': 1929.260009765625,
        'low': 1889.5799560546875,
        'open': 1891.199951171875,
        'volume': 4640400},
       {'adjclose': 1901.75,
        'close': 1901.75,
        'date': 1556112600,
        'formatted_date': '2019-04-24',
        'high': 1929.68994140625,
        'low': 1898.1600341796875,
        'open': 1925.0,
        'volume': 3675800},
       {'adjclose': 1902.25,
        'close': 1902.25,
        'date': 1556199000,
        'formatted_date': '2019-04-25',
        'high': 1922.449951171875,
        'low': 1900.31005859375,
        'open': 1917.0,
        'volume': 6099100},
       {'adjclose': 1950.6300048828125,
        'close': 1950.6300048828125,
        'date': 1556285400,
        'formatted_date': '2019-04-26',
        'high': 1951.0,
        'low': 1898.0,
        'open': 1929.0,
        'volume': 8432600}],
      'timeZone': {'gmtOffset': -14400}},
     'BABA': {'currency': 'USD',
      'eventsData': {},
      'firstTradeDate': {'date': 1411133400, 'formatted_date': '2014-09-19'},
      'instrumentType': 'EQUITY',
      'prices': [{'adjclose': 178.5399932861328,
        'close': 178.5399932861328,
        'date': 1525095000,
        'formatted_date': '2018-04-30',
        'high': 180.0399932861328,
        'low': 177.0500030517578,
        'open': 178.08999633789062,
        'volume': 14654000},
       {'adjclose': 179.5,
        'close': 179.5,
        'date': 1525181400,
        'formatted_date': '2018-05-01',
        'high': 180.32000732421875,
        'low': 177.44000244140625,
        'open': 177.5800018310547,
        'volume': 10787700},
       {'adjclose': 181.4499969482422,
        'close': 181.4499969482422,
        'date': 1525267800,
        'formatted_date': '2018-05-02',
        'high': 184.26400756835938,
        'low': 180.11000061035156,
        'open': 180.8000030517578,
        'volume': 20681800},
       {'adjclose': 182.4499969482422,
        'close': 182.4499969482422,
        'date': 1525354200,
        'formatted_date': '2018-05-03',
        'high': 183.58999633789062,
        'low': 175.77000427246094,
        'open': 183.5,
        'volume': 26257600},
       {'adjclose': 188.88999938964844,
        'close': 188.88999938964844,
        'date': 1525440600,
        'formatted_date': '2018-05-04',
        'high': 190.60000610351562,
        'low': 178.6199951171875,
        'open': 180.39999389648438,
        'volume': 57788300},
       {'adjclose': 195.35000610351562,
        'close': 195.35000610351562,
        'date': 1525699800,
        'formatted_date': '2018-05-07',
        'high': 196.60000610351562,
        'low': 190.3000030517578,
        'open': 190.41000366210938,
        'volume': 29862200},
       {'adjclose': 196.30999755859375,
        'close': 196.30999755859375,
        'date': 1525786200,
        'formatted_date': '2018-05-08',
        'high': 197.33999633789062,
        'low': 193.00999450683594,
        'open': 194.1999969482422,
        'volume': 21856300},
       {'adjclose': 195.42999267578125,
        'close': 195.42999267578125,
        'date': 1525872600,
        'formatted_date': '2018-05-09',
        'high': 197.3800048828125,
        'low': 194.5,
        'open': 195.83999633789062,
        'volume': 13780600},
       {'adjclose': 195.9600067138672,
        'close': 195.9600067138672,
        'date': 1525959000,
        'formatted_date': '2018-05-10',
        'high': 199.77000427246094,
        'low': 195.16000366210938,
        'open': 196.3000030517578,
        'volume': 21295000},
       {'adjclose': 194.36000061035156,
        'close': 194.36000061035156,
        'date': 1526045400,
        'formatted_date': '2018-05-11',
        'high': 196.4600067138672,
        'low': 193.3800048828125,
        'open': 196.39999389648438,
        'volume': 12741100},
       {'adjclose': 198.63999938964844,
        'close': 198.63999938964844,
        'date': 1526304600,
        'formatted_date': '2018-05-14',
        'high': 200.0,
        'low': 195.8699951171875,
        'open': 195.89999389648438,
        'volume': 17627100},
       {'adjclose': 196.61000061035156,
        'close': 196.61000061035156,
        'date': 1526391000,
        'formatted_date': '2018-05-15',
        'high': 196.77999877929688,
        'low': 193.86000061035156,
        'open': 195.22999572753906,
        'volume': 12694900},
       {'adjclose': 198.11000061035156,
        'close': 198.11000061035156,
        'date': 1526477400,
        'formatted_date': '2018-05-16',
        'high': 199.75,
        'low': 196.3000030517578,
        'open': 196.75,
        'volume': 12887500},
       {'adjclose': 196.02000427246094,
        'close': 196.02000427246094,
        'date': 1526563800,
        'formatted_date': '2018-05-17',
        'high': 198.42999267578125,
        'low': 195.57000732421875,
        'open': 196.0,
        'volume': 13470500},
       {'adjclose': 195.0,
        'close': 195.0,
        'date': 1526650200,
        'formatted_date': '2018-05-18',
        'high': 197.77999877929688,
        'low': 194.72000122070312,
        'open': 196.42999267578125,
        'volume': 14242300},
       {'adjclose': 197.63999938964844,
        'close': 197.63999938964844,
        'date': 1526909400,
        'formatted_date': '2018-05-21',
        'high': 199.7899932861328,
        'low': 196.39999389648438,
        'open': 197.8000030517578,
        'volume': 13830500},
       {'adjclose': 195.8699951171875,
        'close': 195.8699951171875,
        'date': 1526995800,
        'formatted_date': '2018-05-22',
        'high': 198.6269989013672,
        'low': 195.6999969482422,
        'open': 198.3000030517578,
        'volume': 9700100},
       {'adjclose': 196.8000030517578,
        'close': 196.8000030517578,
        'date': 1527082200,
        'formatted_date': '2018-05-23',
        'high': 196.89999389648438,
        'low': 192.80099487304688,
        'open': 193.8800048828125,
        'volume': 12807400},
       {'adjclose': 197.3699951171875,
        'close': 197.3699951171875,
        'date': 1527168600,
        'formatted_date': '2018-05-24',
        'high': 199.72000122070312,
        'low': 195.69700622558594,
        'open': 198.1199951171875,
        'volume': 18527700},
       {'adjclose': 199.1999969482422,
        'close': 199.1999969482422,
        'date': 1527255000,
        'formatted_date': '2018-05-25',
        'high': 201.5,
        'low': 197.2100067138672,
        'open': 197.57000732421875,
        'volume': 21270000},
       {'adjclose': 198.0,
        'close': 198.0,
        'date': 1527600600,
        'formatted_date': '2018-05-29',
        'high': 202.27999877929688,
        'low': 197.0,
        'open': 197.94000244140625,
        'volume': 18768700},
       {'adjclose': 197.97999572753906,
        'close': 197.97999572753906,
        'date': 1527687000,
        'formatted_date': '2018-05-30',
        'high': 200.5399932861328,
        'low': 197.5,
        'open': 199.6999969482422,
        'volume': 13930600},
       {'adjclose': 198.00999450683594,
        'close': 198.00999450683594,
        'date': 1527773400,
        'formatted_date': '2018-05-31',
        'high': 199.47999572753906,
        'low': 196.85000610351562,
        'open': 198.0,
        'volume': 17982500},
       {'adjclose': 204.33999633789062,
        'close': 204.33999633789062,
        'date': 1527859800,
        'formatted_date': '2018-06-01',
        'high': 204.99000549316406,
        'low': 199.4499969482422,
        'open': 199.5,
        'volume': 23131900},
       {'adjclose': 208.9499969482422,
        'close': 208.9499969482422,
        'date': 1528119000,
        'formatted_date': '2018-06-04',
        'high': 209.75,
        'low': 204.72999572753906,
        'open': 205.1199951171875,
        'volume': 19357000},
       {'adjclose': 208.3699951171875,
        'close': 208.3699951171875,
        'date': 1528205400,
        'formatted_date': '2018-06-05',
        'high': 211.6999969482422,
        'low': 207.1300048828125,
        'open': 209.9499969482422,
        'volume': 17787700},
       {'adjclose': 208.3000030517578,
        'close': 208.3000030517578,
        'date': 1528291800,
        'formatted_date': '2018-06-06',
        'high': 210.4600067138672,
        'low': 207.28900146484375,
        'open': 209.86000061035156,
        'volume': 13800500},
       {'adjclose': 203.6199951171875,
        'close': 203.6199951171875,
        'date': 1528378200,
        'formatted_date': '2018-06-07',
        'high': 209.0,
        'low': 200.8800048828125,
        'open': 207.4600067138672,
        'volume': 26747800},
       {'adjclose': 205.07000732421875,
        'close': 205.07000732421875,
        'date': 1528464600,
        'formatted_date': '2018-06-08',
        'high': 206.22999572753906,
        'low': 200.42999267578125,
        'open': 201.11000061035156,
        'volume': 17525200},
       {'adjclose': 205.6999969482422,
        'close': 205.6999969482422,
        'date': 1528723800,
        'formatted_date': '2018-06-11',
        'high': 207.60000610351562,
        'low': 205.00999450683594,
        'open': 206.5,
        'volume': 12061400},
       {'adjclose': 209.0800018310547,
        'close': 209.0800018310547,
        'date': 1528810200,
        'formatted_date': '2018-06-12',
        'high': 209.8000030517578,
        'low': 206.89999389648438,
        'open': 206.9499969482422,
        'volume': 15910900},
       {'adjclose': 206.6199951171875,
        'close': 206.6199951171875,
        'date': 1528896600,
        'formatted_date': '2018-06-13',
        'high': 209.64999389648438,
        'low': 206.60000610351562,
        'open': 209.44000244140625,
        'volume': 13844200},
       {'adjclose': 210.86000061035156,
        'close': 210.86000061035156,
        'date': 1528983000,
        'formatted_date': '2018-06-14',
        'high': 211.1199951171875,
        'low': 207.50999450683594,
        'open': 207.72000122070312,
        'volume': 18838300},
       {'adjclose': 208.0,
        'close': 208.0,
        'date': 1529069400,
        'formatted_date': '2018-06-15',
        'high': 210.0800018310547,
        'low': 206.00999450683594,
        'open': 207.49000549316406,
        'volume': 28665600},
       {'adjclose': 208.57000732421875,
        'close': 208.57000732421875,
        'date': 1529328600,
        'formatted_date': '2018-06-18',
        'high': 208.60000610351562,
        'low': 203.8800048828125,
        'open': 205.16000366210938,
        'volume': 14645200},
       {'adjclose': 204.42999267578125,
        'close': 204.42999267578125,
        'date': 1529415000,
        'formatted_date': '2018-06-19',
        'high': 204.50999450683594,
        'low': 199.5,
        'open': 203.52999877929688,
        'volume': 24484200},
       {'adjclose': 206.22999572753906,
        'close': 206.22999572753906,
        'date': 1529501400,
        'formatted_date': '2018-06-20',
        'high': 207.22999572753906,
        'low': 205.02000427246094,
        'open': 205.0500030517578,
        'volume': 15559600},
       {'adjclose': 202.2100067138672,
        'close': 202.2100067138672,
        'date': 1529587800,
        'formatted_date': '2018-06-21',
        'high': 206.0,
        'low': 201.0399932861328,
        'open': 205.83999633789062,
        'volume': 13963800},
       {'adjclose': 202.00999450683594,
        'close': 202.00999450683594,
        'date': 1529674200,
        'formatted_date': '2018-06-22',
        'high': 203.8000030517578,
        'low': 200.25,
        'open': 203.3800048828125,
        'volume': 9585000},
       {'adjclose': 191.25,
        'close': 191.25,
        'date': 1529933400,
        'formatted_date': '2018-06-25',
        'high': 198.10000610351562,
        'low': 187.86000061035156,
        'open': 197.85000610351562,
        'volume': 32750900},
       {'adjclose': 191.4199981689453,
        'close': 191.4199981689453,
        'date': 1530019800,
        'formatted_date': '2018-06-26',
        'high': 193.66000366210938,
        'low': 188.4199981689453,
        'open': 193.33999633789062,
        'volume': 20740400},
       {'adjclose': 185.02000427246094,
        'close': 185.02000427246094,
        'date': 1530106200,
        'formatted_date': '2018-06-27',
        'high': 193.60000610351562,
        'low': 184.88999938964844,
        'open': 193.4600067138672,
        'volume': 23887000},
       {'adjclose': 188.3800048828125,
        'close': 188.3800048828125,
        'date': 1530192600,
        'formatted_date': '2018-06-28',
        'high': 188.9600067138672,
        'low': 182.0399932861328,
        'open': 183.1999969482422,
        'volume': 19553800},
       {'adjclose': 185.52999877929688,
        'close': 185.52999877929688,
        'date': 1530279000,
        'formatted_date': '2018-06-29',
        'high': 188.97000122070312,
        'low': 184.25999450683594,
        'open': 185.36000061035156,
        'volume': 26023400},
       {'adjclose': 186.36000061035156,
        'close': 186.36000061035156,
        'date': 1530538200,
        'formatted_date': '2018-07-02',
        'high': 186.36000061035156,
        'low': 181.05999755859375,
        'open': 181.66000366210938,
        'volume': 17325900},
       {'adjclose': 184.75,
        'close': 184.75,
        'date': 1530624600,
        'formatted_date': '2018-07-03',
        'high': 188.5,
        'low': 184.36000061035156,
        'open': 187.8800048828125,
        'volume': 11673700},
       {'adjclose': 186.8800048828125,
        'close': 186.8800048828125,
        'date': 1530797400,
        'formatted_date': '2018-07-05',
        'high': 187.44000244140625,
        'low': 182.89999389648438,
        'open': 187.1699981689453,
        'volume': 18412100},
       {'adjclose': 192.27000427246094,
        'close': 192.27000427246094,
        'date': 1530883800,
        'formatted_date': '2018-07-06',
        'high': 192.49000549316406,
        'low': 185.5399932861328,
        'open': 186.00999450683594,
        'volume': 17035600},
       {'adjclose': 192.75,
        'close': 192.75,
        'date': 1531143000,
        'formatted_date': '2018-07-09',
        'high': 194.69000244140625,
        'low': 190.8699951171875,
        'open': 194.4499969482422,
        'volume': 15466400},
       {'adjclose': 192.5500030517578,
        'close': 192.5500030517578,
        'date': 1531229400,
        'formatted_date': '2018-07-10',
        'high': 195.1300048828125,
        'low': 191.47999572753906,
        'open': 192.88999938964844,
        'volume': 12611400},
       {'adjclose': 187.4199981689453,
        'close': 187.4199981689453,
        'date': 1531315800,
        'formatted_date': '2018-07-11',
        'high': 190.0500030517578,
        'low': 187.4199981689453,
        'open': 188.60000610351562,
        'volume': 15947000},
       {'adjclose': 190.1699981689453,
        'close': 190.1699981689453,
        'date': 1531402200,
        'formatted_date': '2018-07-12',
        'high': 192.5800018310547,
        'low': 189.7899932861328,
        'open': 190.77000427246094,
        'volume': 17440400},
       {'adjclose': 190.0399932861328,
        'close': 190.0399932861328,
        'date': 1531488600,
        'formatted_date': '2018-07-13',
        'high': 192.1199951171875,
        'low': 189.3000030517578,
        'open': 191.61000061035156,
        'volume': 12550500},
       {'adjclose': 190.35000610351562,
        'close': 190.35000610351562,
        'date': 1531747800,
        'formatted_date': '2018-07-16',
        'high': 191.3699951171875,
        'low': 189.14999389648438,
        'open': 189.57000732421875,
        'volume': 12205600},
       {'adjclose': 192.66000366210938,
        'close': 192.66000366210938,
        'date': 1531834200,
        'formatted_date': '2018-07-17',
        'high': 192.9499969482422,
        'low': 187.89999389648438,
        'open': 188.64999389648438,
        'volume': 13270700},
       {'adjclose': 190.7899932861328,
        'close': 190.7899932861328,
        'date': 1531920600,
        'formatted_date': '2018-07-18',
        'high': 193.22999572753906,
        'low': 189.91000366210938,
        'open': 192.4499969482422,
        'volume': 10796600},
       {'adjclose': 187.33999633789062,
        'close': 187.33999633789062,
        'date': 1532007000,
        'formatted_date': '2018-07-19',
        'high': 189.67999267578125,
        'low': 186.8699951171875,
        'open': 188.67999267578125,
        'volume': 13373100},
       {'adjclose': 187.25,
        'close': 187.25,
        'date': 1532093400,
        'formatted_date': '2018-07-20',
        'high': 189.5,
        'low': 186.61000061035156,
        'open': 189.49000549316406,
        'volume': 12807500},
       {'adjclose': 187.0399932861328,
        'close': 187.0399932861328,
        'date': 1532352600,
        'formatted_date': '2018-07-23',
        'high': 187.80999755859375,
        'low': 184.8000030517578,
        'open': 187.17999267578125,
        'volume': 10996200},
       {'adjclose': 189.0,
        'close': 189.0,
        'date': 1532439000,
        'formatted_date': '2018-07-24',
        'high': 193.07000732421875,
        'low': 188.35000610351562,
        'open': 190.19000244140625,
        'volume': 18414800},
       {'adjclose': 197.97999572753906,
        'close': 197.97999572753906,
        'date': 1532525400,
        'formatted_date': '2018-07-25',
        'high': 198.35000610351562,
        'low': 190.13999938964844,
        'open': 190.61000061035156,
        'volume': 20735400},
       {'adjclose': 194.17999267578125,
        'close': 194.17999267578125,
        'date': 1532611800,
        'formatted_date': '2018-07-26',
        'high': 196.1199951171875,
        'low': 192.6199951171875,
        'open': 193.2100067138672,
        'volume': 13885500},
       {'adjclose': 189.4199981689453,
        'close': 189.4199981689453,
        'date': 1532698200,
        'formatted_date': '2018-07-27',
        'high': 196.27000427246094,
        'low': 186.92999267578125,
        'open': 196.10000610351562,
        'volume': 19907100},
       {'adjclose': 184.82000732421875,
        'close': 184.82000732421875,
        'date': 1532957400,
        'formatted_date': '2018-07-30',
        'high': 190.58999633789062,
        'low': 182.05999755859375,
        'open': 190.22000122070312,
        'volume': 19906300},
       {'adjclose': 187.22999572753906,
        'close': 187.22999572753906,
        'date': 1533043800,
        'formatted_date': '2018-07-31',
        'high': 188.947998046875,
        'low': 183.99000549316406,
        'open': 186.39999389648438,
        'volume': 17016600},
       {'adjclose': 185.27000427246094,
        'close': 185.27000427246094,
        'date': 1533130200,
        'formatted_date': '2018-08-01',
        'high': 189.05999755859375,
        'low': 183.9600067138672,
        'open': 186.0,
        'volume': 14370700},
       {'adjclose': 182.60000610351562,
        'close': 182.60000610351562,
        'date': 1533216600,
        'formatted_date': '2018-08-02',
        'high': 182.89999389648438,
        'low': 179.77999877929688,
        'open': 181.5399932861328,
        'volume': 20976500},
       {'adjclose': 180.83999633789062,
        'close': 180.83999633789062,
        'date': 1533303000,
        'formatted_date': '2018-08-03',
        'high': 184.5,
        'low': 180.0800018310547,
        'open': 184.14999389648438,
        'volume': 18185100},
       {'adjclose': 178.6199951171875,
        'close': 178.6199951171875,
        'date': 1533562200,
        'formatted_date': '2018-08-06',
        'high': 180.86000061035156,
        'low': 177.49000549316406,
        'open': 180.6999969482422,
        'volume': 35419000},
       {'adjclose': 179.9199981689453,
        'close': 179.9199981689453,
        'date': 1533648600,
        'formatted_date': '2018-08-07',
        'high': 183.0,
        'low': 179.74000549316406,
        'open': 180.2899932861328,
        'volume': 20620300},
       {'adjclose': 177.52000427246094,
        'close': 177.52000427246094,
        'date': 1533735000,
        'formatted_date': '2018-08-08',
        'high': 180.17999267578125,
        'low': 176.5500030517578,
        'open': 180.0,
        'volume': 21152400},
       {'adjclose': 177.19000244140625,
        'close': 177.19000244140625,
        'date': 1533821400,
        'formatted_date': '2018-08-09',
        'high': 180.6300048828125,
        'low': 176.75999450683594,
        'open': 179.30999755859375,
        'volume': 35220900},
       {'adjclose': 180.00999450683594,
        'close': 180.00999450683594,
        'date': 1533907800,
        'formatted_date': '2018-08-10',
        'high': 180.4499969482422,
        'low': 174.75,
        'open': 175.57000732421875,
        'volume': 22049200},
       {'adjclose': 177.67999267578125,
        'close': 177.67999267578125,
        'date': 1534167000,
        'formatted_date': '2018-08-13',
        'high': 180.64999389648438,
        'low': 177.0,
        'open': 179.64999389648438,
        'volume': 14674000},
       {'adjclose': 172.52999877929688,
        'close': 172.52999877929688,
        'date': 1534253400,
        'formatted_date': '2018-08-14',
        'high': 176.1999969482422,
        'low': 170.77000427246094,
        'open': 175.13999938964844,
        'volume': 38508600},
       {'adjclose': 169.8300018310547,
        'close': 169.8300018310547,
        'date': 1534339800,
        'formatted_date': '2018-08-15',
        'high': 169.85000610351562,
        'low': 165.38999938964844,
        'open': 167.11000061035156,
        'volume': 41278600},
       {'adjclose': 171.99000549316406,
        'close': 171.99000549316406,
        'date': 1534426200,
        'formatted_date': '2018-08-16',
        'high': 175.6999969482422,
        'low': 171.57000732421875,
        'open': 172.3300018310547,
        'volume': 34263300},
       {'adjclose': 172.77999877929688,
        'close': 172.77999877929688,
        'date': 1534512600,
        'formatted_date': '2018-08-17',
        'high': 174.1999969482422,
        'low': 168.3800048828125,
        'open': 172.52000427246094,
        'volume': 24695400},
       {'adjclose': 176.2899932861328,
        'close': 176.2899932861328,
        'date': 1534771800,
        'formatted_date': '2018-08-20',
        'high': 178.86000061035156,
        'low': 174.36000061035156,
        'open': 175.22000122070312,
        'volume': 25900700},
       {'adjclose': 177.9199981689453,
        'close': 177.9199981689453,
        'date': 1534858200,
        'formatted_date': '2018-08-21',
        'high': 179.6699981689453,
        'low': 176.97000122070312,
        'open': 177.6300048828125,
        'volume': 20337400},
       {'adjclose': 177.85000610351562,
        'close': 177.85000610351562,
        'date': 1534944600,
        'formatted_date': '2018-08-22',
        'high': 179.74000549316406,
        'low': 175.5,
        'open': 178.14999389648438,
        'volume': 27138500},
       {'adjclose': 172.22999572753906,
        'close': 172.22999572753906,
        'date': 1535031000,
        'formatted_date': '2018-08-23',
        'high': 186.5,
        'low': 171.91000366210938,
        'open': 184.97000122070312,
        'volume': 78843400},
       {'adjclose': 174.22999572753906,
        'close': 174.22999572753906,
        'date': 1535117400,
        'formatted_date': '2018-08-24',
        'high': 176.3699951171875,
        'low': 172.4499969482422,
        'open': 175.0,
        'volume': 30442800},
       {'adjclose': 180.64999389648438,
        'close': 180.64999389648438,
        'date': 1535376600,
        'formatted_date': '2018-08-27',
        'high': 180.8800048828125,
        'low': 176.22000122070312,
        'open': 177.10000610351562,
        'volume': 23533800},
       {'adjclose': 178.19000244140625,
        'close': 178.19000244140625,
        'date': 1535463000,
        'formatted_date': '2018-08-28',
        'high': 182.3800048828125,
        'low': 177.5,
        'open': 182.14999389648438,
        'volume': 15319000},
       {'adjclose': 178.5,
        'close': 178.5,
        'date': 1535549400,
        'formatted_date': '2018-08-29',
        'high': 179.66000366210938,
        'low': 176.8300018310547,
        'open': 179.35000610351562,
        'volume': 11892600},
       {'adjclose': 174.60000610351562,
        'close': 174.60000610351562,
        'date': 1535635800,
        'formatted_date': '2018-08-30',
        'high': 178.10000610351562,
        'low': 174.1219940185547,
        'open': 177.3300018310547,
        'volume': 17086200},
       {'adjclose': 175.00999450683594,
        'close': 175.00999450683594,
        'date': 1535722200,
        'formatted_date': '2018-08-31',
        'high': 176.68099975585938,
        'low': 172.75999450683594,
        'open': 173.11000061035156,
        'volume': 13730800},
       {'adjclose': 170.44000244140625,
        'close': 170.44000244140625,
        'date': 1536067800,
        'formatted_date': '2018-09-04',
        'high': 173.9499969482422,
        'low': 169.0,
        'open': 173.5,
        'volume': 23450500},
       {'adjclose': 164.22999572753906,
        'close': 164.22999572753906,
        'date': 1536154200,
        'formatted_date': '2018-09-05',
        'high': 168.27999877929688,
        'low': 162.02999877929688,
        'open': 167.47999572753906,
        'volume': 35694700},
       {'adjclose': 159.8699951171875,
        'close': 159.8699951171875,
        'date': 1536240600,
        'formatted_date': '2018-09-06',
        'high': 166.47999572753906,
        'low': 158.6699981689453,
        'open': 164.16000366210938,
        'volume': 33052000},
       {'adjclose': 162.3699951171875,
        'close': 162.3699951171875,
        'date': 1536327000,
        'formatted_date': '2018-09-07',
        'high': 164.61000061035156,
        'low': 159.50999450683594,
        'open': 159.9499969482422,
        'volume': 19452400},
       {'adjclose': 156.36000061035156,
        'close': 156.36000061035156,
        'date': 1536586200,
        'formatted_date': '2018-09-10',
        'high': 160.72000122070312,
        'low': 155.0,
        'open': 158.58999633789062,
        'volume': 39092700},
       {'adjclose': 157.4600067138672,
        'close': 157.4600067138672,
        'date': 1536672600,
        'formatted_date': '2018-09-11',
        'high': 158.4499969482422,
        'low': 152.85000610351562,
        'open': 153.17999267578125,
        'volume': 25884100},
       {'adjclose': 161.4600067138672,
        'close': 161.4600067138672,
        'date': 1536759000,
        'formatted_date': '2018-09-12',
        'high': 162.82000732421875,
        'low': 156.18099975585938,
        'open': 158.1999969482422,
        'volume': 32490500},
       {'adjclose': 165.52999877929688,
        'close': 165.52999877929688,
        'date': 1536845400,
        'formatted_date': '2018-09-13',
        'high': 167.22000122070312,
        'low': 164.00999450683594,
        'open': 165.41000366210938,
        'volume': 25696500},
       {'adjclose': 164.74000549316406,
        'close': 164.74000549316406,
        'date': 1536931800,
        'formatted_date': '2018-09-14',
        'high': 168.0,
        'low': 163.38099670410156,
        'open': 167.8800048828125,
        'volume': 23417700},
       {'adjclose': 158.88999938964844,
        'close': 158.88999938964844,
        'date': 1537191000,
        'formatted_date': '2018-09-17',
        'high': 161.64999389648438,
        'low': 158.28900146484375,
        'open': 161.5,
        'volume': 20423200},
       {'adjclose': 156.64999389648438,
        'close': 156.64999389648438,
        'date': 1537277400,
        'formatted_date': '2018-09-18',
        'high': 159.39999389648438,
        'low': 155.52000427246094,
        'open': 156.8800048828125,
        'volume': 27240600},
       {'adjclose': 162.6300048828125,
        'close': 162.6300048828125,
        'date': 1537363800,
        'formatted_date': '2018-09-19',
        'high': 163.1300048828125,
        'low': 158.82000732421875,
        'open': 158.82000732421875,
        'volume': 23028300},
       {'adjclose': 165.8800048828125,
        'close': 165.8800048828125,
        'date': 1537450200,
        'formatted_date': '2018-09-20',
        'high': 167.6999969482422,
        'low': 164.71600341796875,
        'open': 166.88999938964844,
        'volume': 22818100},
       {'adjclose': 164.6300048828125,
        'close': 164.6300048828125,
        'date': 1537536600,
        'formatted_date': '2018-09-21',
        'high': 169.83999633789062,
        'low': 164.5,
        'open': 169.4600067138672,
        'volume': 22081900},
       {'adjclose': 163.16000366210938,
        'close': 163.16000366210938,
        'date': 1537795800,
        'formatted_date': '2018-09-24',
        'high': 163.3990020751953,
        'low': 160.10000610351562,
        'open': 162.80999755859375,
        'volume': 13123400},
       {'adjclose': 164.25,
        'close': 164.25,
        'date': 1537882200,
        'formatted_date': '2018-09-25',
        'high': 165.44000244140625,
        'low': 162.8300018310547,
        'open': 164.0500030517578,
        'volume': 9588700},
       {'adjclose': 165.39999389648438,
        'close': 165.39999389648438,
        'date': 1537968600,
        'formatted_date': '2018-09-26',
        'high': 167.38999938964844,
        'low': 164.8699951171875,
        'open': 165.52000427246094,
        'volume': 13592500},
       {'adjclose': 166.32000732421875,
        'close': 166.32000732421875,
        'date': 1538055000,
        'formatted_date': '2018-09-27',
        'high': 167.0500030517578,
        'low': 164.9199981689453,
        'open': 166.38999938964844,
        'volume': 12689200},
       {'adjclose': 164.75999450683594,
        'close': 164.75999450683594,
        'date': 1538141400,
        'formatted_date': '2018-09-28',
        'high': 165.66000366210938,
        'low': 163.3000030517578,
        'open': 164.89999389648438,
        'volume': 10486500},
       {'adjclose': 162.0,
        'close': 162.0,
        'date': 1538400600,
        'formatted_date': '2018-10-01',
        'high': 165.9499969482422,
        'low': 161.55999755859375,
        'open': 165.9199981689453,
        'volume': 10615200},
       {'adjclose': 160.22999572753906,
        'close': 160.22999572753906,
        'date': 1538487000,
        'formatted_date': '2018-10-02',
        'high': 161.0279998779297,
        'low': 158.27000427246094,
        'open': 159.7899932861328,
        'volume': 14730500},
       {'adjclose': 162.3699951171875,
        'close': 162.3699951171875,
        'date': 1538573400,
        'formatted_date': '2018-10-03',
        'high': 164.5399932861328,
        'low': 161.92999267578125,
        'open': 163.14999389648438,
        'volume': 13118800},
       {'adjclose': 156.1300048828125,
        'close': 156.1300048828125,
        'date': 1538659800,
        'formatted_date': '2018-10-04',
        'high': 160.0800018310547,
        'low': 153.8699951171875,
        'open': 160.05999755859375,
        'volume': 32176100},
       {'adjclose': 154.6300048828125,
        'close': 154.6300048828125,
        'date': 1538746200,
        'formatted_date': '2018-10-05',
        'high': 157.1199951171875,
        'low': 152.25,
        'open': 156.13999938964844,
        'volume': 20271000},
       {'adjclose': 151.13999938964844,
        'close': 151.13999938964844,
        'date': 1539005400,
        'formatted_date': '2018-10-08',
        'high': 152.63600158691406,
        'low': 148.33999633789062,
        'open': 150.1999969482422,
        'volume': 25060400},
       {'adjclose': 146.94000244140625,
        'close': 146.94000244140625,
        'date': 1539091800,
        'formatted_date': '2018-10-09',
        'high': 150.58999633789062,
        'low': 146.47000122070312,
        'open': 147.97000122070312,
        'volume': 31070200},
       {'adjclose': 138.2899932861328,
        'close': 138.2899932861328,
        'date': 1539178200,
        'formatted_date': '2018-10-10',
        'high': 144.0,
        'low': 137.9199981689453,
        'open': 142.5,
        'volume': 55828800},
       {'adjclose': 141.89999389648438,
        'close': 141.89999389648438,
        'date': 1539264600,
        'formatted_date': '2018-10-11',
        'high': 142.91000366210938,
        'low': 135.13999938964844,
        'open': 135.52999877929688,
        'volume': 43210300},
       {'adjclose': 147.2899932861328,
        'close': 147.2899932861328,
        'date': 1539351000,
        'formatted_date': '2018-10-12',
        'high': 149.0,
        'low': 144.52000427246094,
        'open': 148.6199951171875,
        'volume': 30764400},
       {'adjclose': 144.16000366210938,
        'close': 144.16000366210938,
        'date': 1539610200,
        'formatted_date': '2018-10-15',
        'high': 145.69000244140625,
        'low': 142.3000030517578,
        'open': 144.77000427246094,
        'volume': 18567100},
       {'adjclose': 149.60000610351562,
        'close': 149.60000610351562,
        'date': 1539696600,
        'formatted_date': '2018-10-16',
        'high': 149.75999450683594,
        'low': 145.25999450683594,
        'open': 145.7100067138672,
        'volume': 18365900},
       {'adjclose': 148.13999938964844,
        'close': 148.13999938964844,
        'date': 1539783000,
        'formatted_date': '2018-10-17',
        'high': 150.67999267578125,
        'low': 146.3699951171875,
        'open': 150.67999267578125,
        'volume': 16872400},
       {'adjclose': 142.02000427246094,
        'close': 142.02000427246094,
        'date': 1539869400,
        'formatted_date': '2018-10-18',
        'high': 146.27999877929688,
        'low': 140.8000030517578,
        'open': 145.85000610351562,
        'volume': 20618900},
       {'adjclose': 142.92999267578125,
        'close': 142.92999267578125,
        'date': 1539955800,
        'formatted_date': '2018-10-19',
        'high': 146.77000427246094,
        'low': 142.61000061035156,
        'open': 145.33999633789062,
        'volume': 14855100},
       {'adjclose': 148.8000030517578,
        'close': 148.8000030517578,
        'date': 1540215000,
        'formatted_date': '2018-10-22',
        'high': 150.1999969482422,
        'low': 146.10000610351562,
        'open': 148.99000549316406,
        'volume': 22589300},
       {'adjclose': 146.64999389648438,
        'close': 146.64999389648438,
        'date': 1540301400,
        'formatted_date': '2018-10-23',
        'high': 147.50999450683594,
        'low': 142.6199951171875,
        'open': 143.22000122070312,
        'volume': 19950500},
       {'adjclose': 139.61000061035156,
        'close': 139.61000061035156,
        'date': 1540387800,
        'formatted_date': '2018-10-24',
        'high': 146.69000244140625,
        'low': 139.33999633789062,
        'open': 145.17999267578125,
        'volume': 18512300},
       {'adjclose': 144.60000610351562,
        'close': 144.60000610351562,
        'date': 1540474200,
        'formatted_date': '2018-10-25',
        'high': 144.91000366210938,
        'low': 141.00999450683594,
        'open': 142.5,
        'volume': 13655100},
       {'adjclose': 142.8699951171875,
        'close': 142.8699951171875,
        'date': 1540560600,
        'formatted_date': '2018-10-26',
        'high': 145.82899475097656,
        'low': 138.5500030517578,
        'open': 139.0,
        'volume': 19476900},
       {'adjclose': 133.3800048828125,
        'close': 133.3800048828125,
        'date': 1540819800,
        'formatted_date': '2018-10-29',
        'high': 144.0,
        'low': 131.36000061035156,
        'open': 142.4199981689453,
        'volume': 35121700},
       {'adjclose': 136.3300018310547,
        'close': 136.3300018310547,
        'date': 1540906200,
        'formatted_date': '2018-10-30',
        'high': 136.39999389648438,
        'low': 130.05999755859375,
        'open': 132.27999877929688,
        'volume': 25230000},
       {'adjclose': 142.27999877929688,
        'close': 142.27999877929688,
        'date': 1540992600,
        'formatted_date': '2018-10-31',
        'high': 142.64999389648438,
        'low': 139.13999938964844,
        'open': 141.35000610351562,
        'volume': 23654600},
       {'adjclose': 151.25,
        'close': 151.25,
        'date': 1541079000,
        'formatted_date': '2018-11-01',
        'high': 152.3179931640625,
        'low': 138.6199951171875,
        'open': 144.97999572753906,
        'volume': 47039300},
       {'adjclose': 147.58999633789062,
        'close': 147.58999633789062,
        'date': 1541165400,
        'formatted_date': '2018-11-02',
        'high': 154.36000061035156,
        'low': 146.27999877929688,
        'open': 152.55999755859375,
        'volume': 45985800},
       {'adjclose': 144.63999938964844,
        'close': 144.63999938964844,
        'date': 1541428200,
        'formatted_date': '2018-11-05',
        'high': 149.3699951171875,
        'low': 144.22999572753906,
        'open': 146.22000122070312,
        'volume': 16197300},
       {'adjclose': 147.44000244140625,
        'close': 147.44000244140625,
        'date': 1541514600,
        'formatted_date': '2018-11-06',
        'high': 149.9600067138672,
        'low': 145.3249969482422,
        'open': 145.8699951171875,
        'volume': 17849800},
       {'adjclose': 152.5,
        'close': 152.5,
        'date': 1541601000,
        'formatted_date': '2018-11-07',
        'high': 152.8000030517578,
        'low': 148.94000244140625,
        'open': 150.77000427246094,
        'volume': 17884400},
       {'adjclose': 148.99000549316406,
        'close': 148.99000549316406,
        'date': 1541687400,
        'formatted_date': '2018-11-08',
        'high': 151.8800048828125,
        'low': 146.69000244140625,
        'open': 150.99000549316406,
        'volume': 17067100},
       {'adjclose': 144.85000610351562,
        'close': 144.85000610351562,
        'date': 1541773800,
        'formatted_date': '2018-11-09',
        'high': 145.72000122070312,
        'low': 142.47999572753906,
        'open': 145.57000732421875,
        'volume': 16220000},
       {'adjclose': 142.82000732421875,
        'close': 142.82000732421875,
        'date': 1542033000,
        'formatted_date': '2018-11-12',
        'high': 146.406005859375,
        'low': 139.97000122070312,
        'open': 145.00999450683594,
        'volume': 16516500},
       {'adjclose': 146.97999572753906,
        'close': 146.97999572753906,
        'date': 1542119400,
        'formatted_date': '2018-11-13',
        'high': 149.94000244140625,
        'low': 143.91000366210938,
        'open': 144.8300018310547,
        'volume': 19575100},
       {'adjclose': 150.44000244140625,
        'close': 150.44000244140625,
        'date': 1542205800,
        'formatted_date': '2018-11-14',
        'high': 152.14999389648438,
        'low': 148.44000244140625,
        'open': 150.2100067138672,
        'volume': 21786000},
       {'adjclose': 156.22000122070312,
        'close': 156.22000122070312,
        'date': 1542292200,
        'formatted_date': '2018-11-15',
        'high': 157.39999389648438,
        'low': 150.88999938964844,
        'open': 152.89999389648438,
        'volume': 30083500},
       {'adjclose': 154.10000610351562,
        'close': 154.10000610351562,
        'date': 1542378600,
        'formatted_date': '2018-11-16',
        'high': 155.8000030517578,
        'low': 152.14199829101562,
        'open': 155.0399932861328,
        'volume': 20039400},
       {'adjclose': 149.52999877929688,
        'close': 149.52999877929688,
        'date': 1542637800,
        'formatted_date': '2018-11-19',
        'high': 153.2100067138672,
        'low': 148.77000427246094,
        'open': 152.02000427246094,
        'volume': 18087800},
       {'adjclose': 145.97999572753906,
        'close': 145.97999572753906,
        'date': 1542724200,
        'formatted_date': '2018-11-20',
        'high': 148.07000732421875,
        'low': 142.82000732421875,
        'open': 144.47999572753906,
        'volume': 19473200},
       {'adjclose': 149.41000366210938,
        'close': 149.41000366210938,
        'date': 1542810600,
        'formatted_date': '2018-11-21',
        'high': 151.47999572753906,
        'low': 148.64999389648438,
        'open': 149.05999755859375,
        'volume': 14718600},
       {'adjclose': 150.3300018310547,
        'close': 150.3300018310547,
        'date': 1542983400,
        'formatted_date': '2018-11-23',
        'high': 151.1699981689453,
        'low': 147.0,
        'open': 147.3000030517578,
        'volume': 7437500},
       {'adjclose': 156.00999450683594,
        'close': 156.00999450683594,
        'date': 1543242600,
        'formatted_date': '2018-11-26',
        'high': 156.52999877929688,
        'low': 152.3699951171875,
        'open': 153.2100067138672,
        'volume': 16152700},
       {'adjclose': 156.4600067138672,
        'close': 156.4600067138672,
        'date': 1543329000,
        'formatted_date': '2018-11-27',
        'high': 157.94000244140625,
        'low': 153.5800018310547,
        'open': 154.63999938964844,
        'volume': 17911800},
       {'adjclose': 159.33999633789062,
        'close': 159.33999633789062,
        'date': 1543415400,
        'formatted_date': '2018-11-28',
        'high': 159.8000030517578,
        'low': 155.25999450683594,
        'open': 159.00999450683594,
        'volume': 20767100},
       {'adjclose': 156.27999877929688,
        'close': 156.27999877929688,
        'date': 1543501800,
        'formatted_date': '2018-11-29',
        'high': 159.0,
        'low': 153.5399932861328,
        'open': 158.0800018310547,
        'volume': 20532200},
       {'adjclose': 160.86000061035156,
        'close': 160.86000061035156,
        'date': 1543588200,
        'formatted_date': '2018-11-30',
        'high': 160.86000061035156,
        'low': 156.72000122070312,
        'open': 157.89999389648438,
        'volume': 35071200},
       {'adjclose': 163.74000549316406,
        'close': 163.74000549316406,
        'date': 1543847400,
        'formatted_date': '2018-12-03',
        'high': 168.8000030517578,
        'low': 163.50999450683594,
        'open': 168.63999938964844,
        'volume': 31174000},
       {'adjclose': 158.33999633789062,
        'close': 158.33999633789062,
        'date': 1543933800,
        'formatted_date': '2018-12-04',
        'high': 164.97999572753906,
        'low': 156.4600067138672,
        'open': 164.8800048828125,
        'volume': 22198600},
       {'adjclose': 155.8300018310547,
        'close': 155.8300018310547,
        'date': 1544106600,
        'formatted_date': '2018-12-06',
        'high': 155.8699951171875,
        'low': 150.50999450683594,
        'open': 153.0,
        'volume': 25335500},
       {'adjclose': 153.05999755859375,
        'close': 153.05999755859375,
        'date': 1544193000,
        'formatted_date': '2018-12-07',
        'high': 158.0500030517578,
        'low': 151.72999572753906,
        'open': 155.39999389648438,
        'volume': 17447900},
       {'adjclose': 151.42999267578125,
        'close': 151.42999267578125,
        'date': 1544452200,
        'formatted_date': '2018-12-10',
        'high': 152.80999755859375,
        'low': 147.47999572753906,
        'open': 150.38999938964844,
        'volume': 15525500},
       {'adjclose': 151.8300018310547,
        'close': 151.8300018310547,
        'date': 1544538600,
        'formatted_date': '2018-12-11',
        'high': 156.24000549316406,
        'low': 150.89999389648438,
        'open': 155.25999450683594,
        'volume': 13651900},
       {'adjclose': 151.5,
        'close': 151.5,
        'date': 1544625000,
        'formatted_date': '2018-12-12',
        'high': 156.1699981689453,
        'low': 151.42999267578125,
        'open': 155.24000549316406,
        'volume': 16619200},
       {'adjclose': 151.47999572753906,
        'close': 151.47999572753906,
        'date': 1544711400,
        'formatted_date': '2018-12-13',
        'high': 153.4600067138672,
        'low': 150.52000427246094,
        'open': 153.0500030517578,
        'volume': 12255800},
       {'adjclose': 149.0,
        'close': 149.0,
        'date': 1544797800,
        'formatted_date': '2018-12-14',
        'high': 150.6999969482422,
        'low': 145.72000122070312,
        'open': 147.7100067138672,
        'volume': 15560700},
       {'adjclose': 143.97999572753906,
        'close': 143.97999572753906,
        'date': 1545057000,
        'formatted_date': '2018-12-17',
        'high': 147.94000244140625,
        'low': 142.24000549316406,
        'open': 146.5,
        'volume': 15788100},
       {'adjclose': 140.82000732421875,
        'close': 140.82000732421875,
        'date': 1545143400,
        'formatted_date': '2018-12-18',
        'high': 144.75,
        'low': 140.11000061035156,
        'open': 144.27999877929688,
        'volume': 17846600},
       {'adjclose': 137.13999938964844,
        'close': 137.13999938964844,
        'date': 1545229800,
        'formatted_date': '2018-12-19',
        'high': 141.3249969482422,
        'low': 135.72999572753906,
        'open': 141.0399932861328,
        'volume': 27657800},
       {'adjclose': 135.11000061035156,
        'close': 135.11000061035156,
        'date': 1545316200,
        'formatted_date': '2018-12-20',
        'high': 137.7550048828125,
        'low': 132.91000366210938,
        'open': 135.8300018310547,
        'volume': 24103800},
       {'adjclose': 132.0,
        'close': 132.0,
        'date': 1545402600,
        'formatted_date': '2018-12-21',
        'high': 137.19000244140625,
        'low': 130.22999572753906,
        'open': 137.0800018310547,
        'volume': 28790600},
       {'adjclose': 131.88999938964844,
        'close': 131.88999938964844,
        'date': 1545661800,
        'formatted_date': '2018-12-24',
        'high': 134.57000732421875,
        'low': 129.77000427246094,
        'open': 130.0,
        'volume': 11240700},
       {'adjclose': 138.0,
        'close': 138.0,
        'date': 1545834600,
        'formatted_date': '2018-12-26',
        'high': 138.02000427246094,
        'low': 130.17999267578125,
        'open': 132.8699951171875,
        'volume': 14862400},
       {'adjclose': 138.4499969482422,
        'close': 138.4499969482422,
        'date': 1545921000,
        'formatted_date': '2018-12-27',
        'high': 138.4499969482422,
        'low': 133.88999938964844,
        'open': 135.0500030517578,
        'volume': 11457400},
       {'adjclose': 139.08999633789062,
        'close': 139.08999633789062,
        'date': 1546007400,
        'formatted_date': '2018-12-28',
        'high': 140.97999572753906,
        'low': 136.7899932861328,
        'open': 139.1999969482422,
        'volume': 11955300},
       {'adjclose': 137.07000732421875,
        'close': 137.07000732421875,
        'date': 1546266600,
        'formatted_date': '2018-12-31',
        'high': 142.02000427246094,
        'low': 136.0399932861328,
        'open': 141.8300018310547,
        'volume': 11186400},
       {'adjclose': 136.6999969482422,
        'close': 136.6999969482422,
        'date': 1546439400,
        'formatted_date': '2019-01-02',
        'high': 137.74899291992188,
        'low': 133.02999877929688,
        'open': 134.1300048828125,
        'volume': 16708400},
       {'adjclose': 130.60000610351562,
        'close': 130.60000610351562,
        'date': 1546525800,
        'formatted_date': '2019-01-03',
        'high': 134.8699951171875,
        'low': 129.8300018310547,
        'open': 134.27000427246094,
        'volume': 19531300},
       {'adjclose': 139.75,
        'close': 139.75,
        'date': 1546612200,
        'formatted_date': '2019-01-04',
        'high': 141.0800018310547,
        'low': 133.66000366210938,
        'open': 134.25999450683594,
        'volume': 22845400},
       {'adjclose': 143.10000610351562,
        'close': 143.10000610351562,
        'date': 1546871400,
        'formatted_date': '2019-01-07',
        'high': 144.0800018310547,
        'low': 139.00999450683594,
        'open': 140.5500030517578,
        'volume': 17239000},
       {'adjclose': 146.7899932861328,
        'close': 146.7899932861328,
        'date': 1546957800,
        'formatted_date': '2019-01-08',
        'high': 147.5500030517578,
        'low': 142.05999755859375,
        'open': 145.0,
        'volume': 16487600},
       {'adjclose': 151.9199981689453,
        'close': 151.9199981689453,
        'date': 1547044200,
        'formatted_date': '2019-01-09',
        'high': 153.35000610351562,
        'low': 148.5,
        'open': 149.88999938964844,
        'volume': 20214100},
       {'adjclose': 151.69000244140625,
        'close': 151.69000244140625,
        'date': 1547130600,
        'formatted_date': '2019-01-10',
        'high': 152.02999877929688,
        'low': 148.8800048828125,
        'open': 149.80999755859375,
        'volume': 14221100},
       {'adjclose': 151.32000732421875,
        'close': 151.32000732421875,
        'date': 1547217000,
        'formatted_date': '2019-01-11',
        'high': 153.3800048828125,
        'low': 150.13999938964844,
        'open': 151.8300018310547,
        'volume': 9589400},
       {'adjclose': 149.27000427246094,
        'close': 149.27000427246094,
        'date': 1547476200,
        'formatted_date': '2019-01-14',
        'high': 150.57000732421875,
        'low': 146.5399932861328,
        'open': 148.5,
        'volume': 13356700},
       {'adjclose': 150.8800048828125,
        'close': 150.8800048828125,
        'date': 1547562600,
        'formatted_date': '2019-01-15',
        'high': 154.1699981689453,
        'low': 149.96400451660156,
        'open': 150.67999267578125,
        'volume': 15003100},
       {'adjclose': 154.83999633789062,
        'close': 154.83999633789062,
        'date': 1547649000,
        'formatted_date': '2019-01-16',
        'high': 155.38999938964844,
        'low': 151.5,
        'open': 152.80999755859375,
        'volume': 14810800},
       {'adjclose': 155.97000122070312,
        'close': 155.97000122070312,
        'date': 1547735400,
        'formatted_date': '2019-01-17',
        'high': 158.5500030517578,
        'low': 151.89999389648438,
        'open': 152.11000061035156,
        'volume': 16153200},
       {'adjclose': 157.02000427246094,
        'close': 157.02000427246094,
        'date': 1547821800,
        'formatted_date': '2019-01-18',
        'high': 159.49000549316406,
        'low': 154.72999572753906,
        'open': 158.4499969482422,
        'volume': 19611400},
       {'adjclose': 152.14999389648438,
        'close': 152.14999389648438,
        'date': 1548167400,
        'formatted_date': '2019-01-22',
        'high': 155.44000244140625,
        'low': 150.20700073242188,
        'open': 154.39999389648438,
        'volume': 21295000},
       {'adjclose': 152.02999877929688,
        'close': 152.02999877929688,
        'date': 1548253800,
        'formatted_date': '2019-01-23',
        'high': 155.17999267578125,
        'low': 150.9499969482422,
        'open': 154.64999389648438,
        'volume': 10195800},
       {'adjclose': 155.86000061035156,
        'close': 155.86000061035156,
        'date': 1548340200,
        'formatted_date': '2019-01-24',
        'high': 156.0,
        'low': 151.2100067138672,
        'open': 151.47000122070312,
        'volume': 10997900},
       {'adjclose': 159.2100067138672,
        'close': 159.2100067138672,
        'date': 1548426600,
        'formatted_date': '2019-01-25',
        'high': 160.5,
        'low': 157.42999267578125,
        'open': 158.91000366210938,
        'volume': 16451800},
       {'adjclose': 158.9199981689453,
        'close': 158.9199981689453,
        'date': 1548685800,
        'formatted_date': '2019-01-28',
        'high': 159.69000244140625,
        'low': 155.3000030517578,
        'open': 157.8000030517578,
        'volume': 10141100},
       {'adjclose': 156.8800048828125,
        'close': 156.8800048828125,
        'date': 1548772200,
        'formatted_date': '2019-01-29',
        'high': 160.375,
        'low': 155.9199981689453,
        'open': 159.0399932861328,
        'volume': 18348200},
       {'adjclose': 166.82000732421875,
        'close': 166.82000732421875,
        'date': 1548858600,
        'formatted_date': '2019-01-30',
        'high': 167.83999633789062,
        'low': 160.5,
        'open': 161.2899932861328,
        'volume': 36997700},
       {'adjclose': 168.49000549316406,
        'close': 168.49000549316406,
        'date': 1548945000,
        'formatted_date': '2019-01-31',
        'high': 169.72999572753906,
        'low': 165.6999969482422,
        'open': 167.8000030517578,
        'volume': 21219500},
       {'adjclose': 167.97000122070312,
        'close': 167.97000122070312,
        'date': 1549031400,
        'formatted_date': '2019-02-01',
        'high': 169.39999389648438,
        'low': 167.6300048828125,
        'open': 168.0,
        'volume': 10771500},
       {'adjclose': 166.6999969482422,
        'close': 166.6999969482422,
        'date': 1549290600,
        'formatted_date': '2019-02-04',
        'high': 167.5500030517578,
        'low': 165.61000061035156,
        'open': 166.32000732421875,
        'volume': 7380400},
       {'adjclose': 171.8300018310547,
        'close': 171.8300018310547,
        'date': 1549377000,
        'formatted_date': '2019-02-05',
        'high': 171.9499969482422,
        'low': 168.0,
        'open': 168.5500030517578,
        'volume': 12801800},
       {'adjclose': 171.52000427246094,
        'close': 171.52000427246094,
        'date': 1549463400,
        'formatted_date': '2019-02-06',
        'high': 173.08999633789062,
        'low': 169.99000549316406,
        'open': 171.86000061035156,
        'volume': 11267800},
       {'adjclose': 166.9600067138672,
        'close': 166.9600067138672,
        'date': 1549549800,
        'formatted_date': '2019-02-07',
        'high': 169.61000061035156,
        'low': 164.33599853515625,
        'open': 169.16000366210938,
        'volume': 11911100},
       {'adjclose': 167.36000061035156,
        'close': 167.36000061035156,
        'date': 1549636200,
        'formatted_date': '2019-02-08',
        'high': 167.64999389648438,
        'low': 163.75,
        'open': 163.8300018310547,
        'volume': 8331500},
       {'adjclose': 167.4499969482422,
        'close': 167.4499969482422,
        'date': 1549895400,
        'formatted_date': '2019-02-11',
        'high': 170.3300018310547,
        'low': 167.4499969482422,
        'open': 168.85000610351562,
        'volume': 7260300},
       {'adjclose': 168.7100067138672,
        'close': 168.7100067138672,
        'date': 1549981800,
        'formatted_date': '2019-02-12',
        'high': 170.49000549316406,
        'low': 168.61000061035156,
        'open': 169.60000610351562,
        'volume': 8594400},
       {'adjclose': 169.39999389648438,
        'close': 169.39999389648438,
        'date': 1550068200,
        'formatted_date': '2019-02-13',
        'high': 171.0500030517578,
        'low': 168.99000549316406,
        'open': 169.91000366210938,
        'volume': 8661800},
       {'adjclose': 168.3800048828125,
        'close': 168.3800048828125,
        'date': 1550154600,
        'formatted_date': '2019-02-14',
        'high': 168.5,
        'low': 166.61000061035156,
        'open': 167.63999938964844,
        'volume': 8722100},
       {'adjclose': 166.14999389648438,
        'close': 166.14999389648438,
        'date': 1550241000,
        'formatted_date': '2019-02-15',
        'high': 168.77000427246094,
        'low': 165.41000366210938,
        'open': 168.61000061035156,
        'volume': 12099500},
       {'adjclose': 170.17999267578125,
        'close': 170.17999267578125,
        'date': 1550586600,
        'formatted_date': '2019-02-19',
        'high': 171.14999389648438,
        'low': 166.5,
        'open': 166.97999572753906,
        'volume': 12982300},
       {'adjclose': 170.7100067138672,
        'close': 170.7100067138672,
        'date': 1550673000,
        'formatted_date': '2019-02-20',
        'high': 172.67999267578125,
        'low': 170.61000061035156,
        'open': 171.0,
        'volume': 12454900},
       {'adjclose': 171.66000366210938,
        'close': 171.66000366210938,
        'date': 1550759400,
        'formatted_date': '2019-02-21',
        'high': 171.77999877929688,
        'low': 169.8000030517578,
        'open': 171.0,
        'volume': 8434800},
       {'adjclose': 176.9199981689453,
        'close': 176.9199981689453,
        'date': 1550845800,
        'formatted_date': '2019-02-22',
        'high': 177.02000427246094,
        'low': 172.52000427246094,
        'open': 172.8000030517578,
        'volume': 16175600},
       {'adjclose': 183.25,
        'close': 183.25,
        'date': 1551105000,
        'formatted_date': '2019-02-25',
        'high': 183.72000122070312,
        'low': 180.72999572753906,
        'open': 181.25999450683594,
        'volume': 22831800},
       {'adjclose': 183.5399932861328,
        'close': 183.5399932861328,
        'date': 1551191400,
        'formatted_date': '2019-02-26',
        'high': 184.35000610351562,
        'low': 179.3699951171875,
        'open': 179.7899932861328,
        'volume': 13871000},
       {'adjclose': 184.5800018310547,
        'close': 184.5800018310547,
        'date': 1551277800,
        'formatted_date': '2019-02-27',
        'high': 184.92999267578125,
        'low': 180.8800048828125,
        'open': 181.72000122070312,
        'volume': 16741600},
       {'adjclose': 183.02999877929688,
        'close': 183.02999877929688,
        'date': 1551364200,
        'formatted_date': '2019-02-28',
        'high': 184.3000030517578,
        'low': 181.47000122070312,
        'open': 183.00999450683594,
        'volume': 12370400},
       {'adjclose': 183.8800048828125,
        'close': 183.8800048828125,
        'date': 1551450600,
        'formatted_date': '2019-03-01',
        'high': 186.89999389648438,
        'low': 183.3800048828125,
        'open': 185.08999633789062,
        'volume': 14348500},
       {'adjclose': 187.25,
        'close': 187.25,
        'date': 1551709800,
        'formatted_date': '2019-03-04',
        'high': 187.33999633789062,
        'low': 184.4600067138672,
        'open': 186.0,
        'volume': 14761700},
       {'adjclose': 185.0,
        'close': 185.0,
        'date': 1551796200,
        'formatted_date': '2019-03-05',
        'high': 188.0800018310547,
        'low': 185.0,
        'open': 186.94000244140625,
        'volume': 11513200},
       {'adjclose': 184.1699981689453,
        'close': 184.1699981689453,
        'date': 1551882600,
        'formatted_date': '2019-03-06',
        'high': 185.58999633789062,
        'low': 183.02000427246094,
        'open': 184.3800048828125,
        'volume': 10009100},
       {'adjclose': 177.32000732421875,
        'close': 177.32000732421875,
        'date': 1551969000,
        'formatted_date': '2019-03-07',
        'high': 181.8000030517578,
        'low': 176.72999572753906,
        'open': 180.91000366210938,
        'volume': 16488900},
       {'adjclose': 175.02999877929688,
        'close': 175.02999877929688,
        'date': 1552055400,
        'formatted_date': '2019-03-08',
        'high': 175.35000610351562,
        'low': 171.56500244140625,
        'open': 171.56500244140625,
        'volume': 14674200},
       {'adjclose': 180.41000366210938,
        'close': 180.41000366210938,
        'date': 1552311000,
        'formatted_date': '2019-03-11',
        'high': 181.72000122070312,
        'low': 177.5800018310547,
        'open': 177.8300018310547,
        'volume': 13764000},
       {'adjclose': 180.6300048828125,
        'close': 180.6300048828125,
        'date': 1552397400,
        'formatted_date': '2019-03-12',
        'high': 182.17999267578125,
        'low': 179.50999450683594,
        'open': 182.0399932861328,
        'volume': 8660000},
       {'adjclose': 180.6999969482422,
        'close': 180.6999969482422,
        'date': 1552483800,
        'formatted_date': '2019-03-13',
        'high': 182.53500366210938,
        'low': 179.25999450683594,
        'open': 180.72999572753906,
        'volume': 8868200},
       {'adjclose': 180.36000061035156,
        'close': 180.36000061035156,
        'date': 1552570200,
        'formatted_date': '2019-03-14',
        'high': 180.82000732421875,
        'low': 178.00999450683594,
        'open': 179.05999755859375,
        'volume': 9272000},
       {'adjclose': 180.97000122070312,
        'close': 180.97000122070312,
        'date': 1552656600,
        'formatted_date': '2019-03-15',
        'high': 181.4499969482422,
        'low': 179.66000366210938,
        'open': 180.66000366210938,
        'volume': 10844100},
       {'adjclose': 181.8300018310547,
        'close': 181.8300018310547,
        'date': 1552915800,
        'formatted_date': '2019-03-18',
        'high': 182.88999938964844,
        'low': 180.75999450683594,
        'open': 181.92999267578125,
        'volume': 7847800},
       {'adjclose': 182.13999938964844,
        'close': 182.13999938964844,
        'date': 1553002200,
        'formatted_date': '2019-03-19',
        'high': 183.36000061035156,
        'low': 180.85000610351562,
        'open': 181.6300048828125,
        'volume': 10238600},
       {'adjclose': 181.27999877929688,
        'close': 181.27999877929688,
        'date': 1553088600,
        'formatted_date': '2019-03-20',
        'high': 181.9499969482422,
        'low': 178.42999267578125,
        'open': 180.94000244140625,
        'volume': 15901500},
       {'adjclose': 181.5,
        'close': 181.5,
        'date': 1553175000,
        'formatted_date': '2019-03-21',
        'high': 181.72999572753906,
        'low': 178.52000427246094,
        'open': 178.9499969482422,
        'volume': 9754500},
       {'adjclose': 176.25999450683594,
        'close': 176.25999450683594,
        'date': 1553261400,
        'formatted_date': '2019-03-22',
        'high': 180.47999572753906,
        'low': 175.33599853515625,
        'open': 179.77000427246094,
        'volume': 11688400},
       {'adjclose': 178.77000427246094,
        'close': 178.77000427246094,
        'date': 1553520600,
        'formatted_date': '2019-03-25',
        'high': 178.89999389648438,
        'low': 174.10000610351562,
        'open': 174.3300018310547,
        'volume': 7511400},
       {'adjclose': 178.0800018310547,
        'close': 178.0800018310547,
        'date': 1553607000,
        'formatted_date': '2019-03-26',
        'high': 180.64999389648438,
        'low': 177.09500122070312,
        'open': 179.6999969482422,
        'volume': 7897900},
       {'adjclose': 177.02999877929688,
        'close': 177.02999877929688,
        'date': 1553693400,
        'formatted_date': '2019-03-27',
        'high': 179.8300018310547,
        'low': 176.91299438476562,
        'open': 177.6999969482422,
        'volume': 8371000},
       {'adjclose': 177.72999572753906,
        'close': 177.72999572753906,
        'date': 1553779800,
        'formatted_date': '2019-03-28',
        'high': 178.52999877929688,
        'low': 175.97000122070312,
        'open': 177.47000122070312,
        'volume': 7233000},
       {'adjclose': 182.4499969482422,
        'close': 182.4499969482422,
        'date': 1553866200,
        'formatted_date': '2019-03-29',
        'high': 182.60000610351562,
        'low': 179.0,
        'open': 180.72999572753906,
        'volume': 13850900},
       {'adjclose': 180.88999938964844,
        'close': 180.88999938964844,
        'date': 1554125400,
        'formatted_date': '2019-04-01',
        'high': 185.55999755859375,
        'low': 180.88999938964844,
        'open': 185.08999633789062,
        'volume': 12714800},
       {'adjclose': 181.74000549316406,
        'close': 181.74000549316406,
        'date': 1554211800,
        'formatted_date': '2019-04-02',
        'high': 183.56300354003906,
        'low': 180.9499969482422,
        'open': 181.4600067138672,
        'volume': 8021500},
       {'adjclose': 178.32000732421875,
        'close': 178.32000732421875,
        'date': 1554298200,
        'formatted_date': '2019-04-03',
        'high': 180.6999969482422,
        'low': 176.75999450683594,
        'open': 179.50999450683594,
        'volume': 26819000},
       {'adjclose': 181.07000732421875,
        'close': 181.07000732421875,
        'date': 1554384600,
        'formatted_date': '2019-04-04',
        'high': 181.9600067138672,
        'low': 176.88999938964844,
        'open': 177.0399932861328,
        'volume': 16993200},
       {'adjclose': 185.35000610351562,
        'close': 185.35000610351562,
        'date': 1554471000,
        'formatted_date': '2019-04-05',
        'high': 185.5,
        'low': 182.0,
        'open': 182.50999450683594,
        'volume': 18705000},
       {'adjclose': 186.5,
        'close': 186.5,
        'date': 1554730200,
        'formatted_date': '2019-04-08',
        'high': 187.82000732421875,
        'low': 184.00999450683594,
        'open': 184.19000244140625,
        'volume': 14725600},
       {'adjclose': 187.19000244140625,
        'close': 187.19000244140625,
        'date': 1554816600,
        'formatted_date': '2019-04-09',
        'high': 187.88999938964844,
        'low': 186.16000366210938,
        'open': 186.49000549316406,
        'volume': 11578200},
       {'adjclose': 186.19000244140625,
        'close': 186.19000244140625,
        'date': 1554903000,
        'formatted_date': '2019-04-10',
        'high': 187.39999389648438,
        'low': 184.0,
        'open': 186.69000244140625,
        'volume': 10655000},
       {'adjclose': 184.97999572753906,
        'close': 184.97999572753906,
        'date': 1554989400,
        'formatted_date': '2019-04-11',
        'high': 186.05999755859375,
        'low': 183.75,
        'open': 185.14999389648438,
        'volume': 8900300},
       {'adjclose': 188.91000366210938,
        'close': 188.91000366210938,
        'date': 1555075800,
        'formatted_date': '2019-04-12',
        'high': 189.7899932861328,
        'low': 187.13999938964844,
        'open': 187.7100067138672,
        'volume': 12600000},
       {'adjclose': 183.07000732421875,
        'close': 183.07000732421875,
        'date': 1555335000,
        'formatted_date': '2019-04-15',
        'high': 188.1699981689453,
        'low': 182.55999755859375,
        'open': 188.05999755859375,
        'volume': 14616600},
       {'adjclose': 185.77999877929688,
        'close': 185.77999877929688,
        'date': 1555421400,
        'formatted_date': '2019-04-16',
        'high': 185.7899932861328,
        'low': 183.39999389648438,
        'open': 185.5500030517578,
        'volume': 12195900},
       {'adjclose': 187.5500030517578,
        'close': 187.5500030517578,
        'date': 1555507800,
        'formatted_date': '2019-04-17',
        'high': 188.1999969482422,
        'low': 185.77999877929688,
        'open': 187.33999633789062,
        'volume': 11614200},
       {'adjclose': 186.94000244140625,
        'close': 186.94000244140625,
        'date': 1555594200,
        'formatted_date': '2019-04-18',
        'high': 187.27999877929688,
        'low': 185.38999938964844,
        'open': 186.41000366210938,
        'volume': 7882500},
       {'adjclose': 185.3800048828125,
        'close': 185.3800048828125,
        'date': 1555939800,
        'formatted_date': '2019-04-22',
        'high': 186.47000122070312,
        'low': 183.61000061035156,
        'open': 184.5,
        'volume': 8677800},
       {'adjclose': 187.2899932861328,
        'close': 187.2899932861328,
        'date': 1556026200,
        'formatted_date': '2019-04-23',
        'high': 188.14999389648438,
        'low': 185.44000244140625,
        'open': 186.0,
        'volume': 11410600},
       {'adjclose': 185.6699981689453,
        'close': 185.6699981689453,
        'date': 1556112600,
        'formatted_date': '2019-04-24',
        'high': 186.89999389648438,
        'low': 184.5800018310547,
        'open': 186.75999450683594,
        'volume': 9085300},
       {'adjclose': 187.8800048828125,
        'close': 187.8800048828125,
        'date': 1556199000,
        'formatted_date': '2019-04-25',
        'high': 188.1300048828125,
        'low': 183.9550018310547,
        'open': 185.24000549316406,
        'volume': 10328900},
       {'adjclose': 187.08999633789062,
        'close': 187.08999633789062,
        'date': 1556285400,
        'formatted_date': '2019-04-26',
        'high': 188.74000549316406,
        'low': 185.50999450683594,
        'open': 187.8800048828125,
        'volume': 9421100}],
      'timeZone': {'gmtOffset': -14400}},
     'FB': {'currency': 'USD',
      'eventsData': {},
      'firstTradeDate': {'date': 1337347800, 'formatted_date': '2012-05-18'},
      'instrumentType': 'EQUITY',
      'prices': [{'adjclose': 172.0,
        'close': 172.0,
        'date': 1525095000,
        'formatted_date': '2018-04-30',
        'high': 175.72000122070312,
        'low': 171.7100067138672,
        'open': 173.7899932861328,
        'volume': 20750500},
       {'adjclose': 173.86000061035156,
        'close': 173.86000061035156,
        'date': 1525181400,
        'formatted_date': '2018-05-01',
        'high': 174.02000427246094,
        'low': 170.22999572753906,
        'open': 172.0,
        'volume': 26025900},
       {'adjclose': 176.07000732421875,
        'close': 176.07000732421875,
        'date': 1525267800,
        'formatted_date': '2018-05-02',
        'high': 178.0800018310547,
        'low': 174.1999969482422,
        'open': 174.25,
        'volume': 30424500},
       {'adjclose': 174.02000427246094,
        'close': 174.02000427246094,
        'date': 1525354200,
        'formatted_date': '2018-05-03',
        'high': 176.1199951171875,
        'low': 172.1199951171875,
        'open': 175.1300048828125,
        'volume': 24026100},
       {'adjclose': 176.61000061035156,
        'close': 176.61000061035156,
        'date': 1525440600,
        'formatted_date': '2018-05-04',
        'high': 176.97999572753906,
        'low': 173.05999755859375,
        'open': 173.0800018310547,
        'volume': 17677800},
       {'adjclose': 177.97000122070312,
        'close': 177.97000122070312,
        'date': 1525699800,
        'formatted_date': '2018-05-07',
        'high': 179.5,
        'low': 177.1699981689453,
        'open': 177.35000610351562,
        'volume': 18697200},
       {'adjclose': 178.9199981689453,
        'close': 178.9199981689453,
        'date': 1525786200,
        'formatted_date': '2018-05-08',
        'high': 179.0399932861328,
        'low': 177.11000061035156,
        'open': 178.25,
        'volume': 15577200},
       {'adjclose': 182.66000366210938,
        'close': 182.66000366210938,
        'date': 1525872600,
        'formatted_date': '2018-05-09',
        'high': 183.00999450683594,
        'low': 178.77999877929688,
        'open': 179.6699981689453,
        'volume': 23282800},
       {'adjclose': 185.52999877929688,
        'close': 185.52999877929688,
        'date': 1525959000,
        'formatted_date': '2018-05-10',
        'high': 186.1300048828125,
        'low': 182.5,
        'open': 183.14999389648438,
        'volume': 21071400},
       {'adjclose': 186.99000549316406,
        'close': 186.99000549316406,
        'date': 1526045400,
        'formatted_date': '2018-05-11',
        'high': 188.32000732421875,
        'low': 184.17999267578125,
        'open': 184.85000610351562,
        'volume': 21207800},
       {'adjclose': 186.63999938964844,
        'close': 186.63999938964844,
        'date': 1526304600,
        'formatted_date': '2018-05-14',
        'high': 187.86000061035156,
        'low': 186.1999969482422,
        'open': 187.7100067138672,
        'volume': 15646700},
       {'adjclose': 184.32000732421875,
        'close': 184.32000732421875,
        'date': 1526391000,
        'formatted_date': '2018-05-15',
        'high': 185.2899932861328,
        'low': 183.1999969482422,
        'open': 184.8800048828125,
        'volume': 15429400},
       {'adjclose': 183.1999969482422,
        'close': 183.1999969482422,
        'date': 1526477400,
        'formatted_date': '2018-05-16',
        'high': 184.32000732421875,
        'low': 182.66000366210938,
        'open': 183.6999969482422,
        'volume': 16975500},
       {'adjclose': 183.75999450683594,
        'close': 183.75999450683594,
        'date': 1526563800,
        'formatted_date': '2018-05-17',
        'high': 184.05999755859375,
        'low': 182.22000122070312,
        'open': 182.67999267578125,
        'volume': 14840700},
       {'adjclose': 182.67999267578125,
        'close': 182.67999267578125,
        'date': 1526650200,
        'formatted_date': '2018-05-18',
        'high': 184.19000244140625,
        'low': 182.61000061035156,
        'open': 183.49000549316406,
        'volume': 13130500},
       {'adjclose': 184.49000549316406,
        'close': 184.49000549316406,
        'date': 1526909400,
        'formatted_date': '2018-05-21',
        'high': 185.3000030517578,
        'low': 183.1300048828125,
        'open': 183.77000427246094,
        'volume': 13532900},
       {'adjclose': 183.8000030517578,
        'close': 183.8000030517578,
        'date': 1526995800,
        'formatted_date': '2018-05-22',
        'high': 185.4199981689453,
        'low': 183.42999267578125,
        'open': 184.92999267578125,
        'volume': 12731400},
       {'adjclose': 186.89999389648438,
        'close': 186.89999389648438,
        'date': 1527082200,
        'formatted_date': '2018-05-23',
        'high': 186.91000366210938,
        'low': 182.17999267578125,
        'open': 182.5,
        'volume': 16628100},
       {'adjclose': 185.92999267578125,
        'close': 185.92999267578125,
        'date': 1527168600,
        'formatted_date': '2018-05-24',
        'high': 186.8000030517578,
        'low': 185.02999877929688,
        'open': 185.8800048828125,
        'volume': 12354700},
       {'adjclose': 184.9199981689453,
        'close': 184.9199981689453,
        'date': 1527255000,
        'formatted_date': '2018-05-25',
        'high': 186.3300018310547,
        'low': 184.4499969482422,
        'open': 186.02000427246094,
        'volume': 10965100},
       {'adjclose': 185.74000549316406,
        'close': 185.74000549316406,
        'date': 1527600600,
        'formatted_date': '2018-05-29',
        'high': 186.80999755859375,
        'low': 183.7100067138672,
        'open': 184.33999633789062,
        'volume': 16398900},
       {'adjclose': 187.6699981689453,
        'close': 187.6699981689453,
        'date': 1527687000,
        'formatted_date': '2018-05-30',
        'high': 188.0,
        'low': 185.25,
        'open': 186.5399932861328,
        'volume': 13736900},
       {'adjclose': 191.77999877929688,
        'close': 191.77999877929688,
        'date': 1527773400,
        'formatted_date': '2018-05-31',
        'high': 192.72000122070312,
        'low': 187.47999572753906,
        'open': 187.8699951171875,
        'volume': 30782600},
       {'adjclose': 193.99000549316406,
        'close': 193.99000549316406,
        'date': 1527859800,
        'formatted_date': '2018-06-01',
        'high': 194.5500030517578,
        'low': 192.07000732421875,
        'open': 193.07000732421875,
        'volume': 17307200},
       {'adjclose': 193.27999877929688,
        'close': 193.27999877929688,
        'date': 1528119000,
        'formatted_date': '2018-06-04',
        'high': 193.97999572753906,
        'low': 191.47000122070312,
        'open': 191.83999633789062,
        'volume': 18939800},
       {'adjclose': 192.94000244140625,
        'close': 192.94000244140625,
        'date': 1528205400,
        'formatted_date': '2018-06-05',
        'high': 195.0,
        'low': 192.6199951171875,
        'open': 194.3000030517578,
        'volume': 15544300},
       {'adjclose': 191.33999633789062,
        'close': 191.33999633789062,
        'date': 1528291800,
        'formatted_date': '2018-06-06',
        'high': 192.52999877929688,
        'low': 189.11000061035156,
        'open': 191.02999877929688,
        'volume': 22558900},
       {'adjclose': 188.17999267578125,
        'close': 188.17999267578125,
        'date': 1528378200,
        'formatted_date': '2018-06-07',
        'high': 190.97000122070312,
        'low': 186.77000427246094,
        'open': 190.75,
        'volume': 21503200},
       {'adjclose': 189.10000610351562,
        'close': 189.10000610351562,
        'date': 1528464600,
        'formatted_date': '2018-06-08',
        'high': 189.47999572753906,
        'low': 186.42999267578125,
        'open': 187.52999877929688,
        'volume': 12677100},
       {'adjclose': 191.5399932861328,
        'close': 191.5399932861328,
        'date': 1528723800,
        'formatted_date': '2018-06-11',
        'high': 192.60000610351562,
        'low': 188.8000030517578,
        'open': 188.80999755859375,
        'volume': 12928900},
       {'adjclose': 192.39999389648438,
        'close': 192.39999389648438,
        'date': 1528810200,
        'formatted_date': '2018-06-12',
        'high': 193.27999877929688,
        'low': 191.55999755859375,
        'open': 192.1699981689453,
        'volume': 11562700},
       {'adjclose': 192.41000366210938,
        'close': 192.41000366210938,
        'date': 1528896600,
        'formatted_date': '2018-06-13',
        'high': 194.5,
        'low': 191.91000366210938,
        'open': 192.74000549316406,
        'volume': 15853800},
       {'adjclose': 196.80999755859375,
        'close': 196.80999755859375,
        'date': 1528983000,
        'formatted_date': '2018-06-14',
        'high': 197.27999877929688,
        'low': 192.91000366210938,
        'open': 193.10000610351562,
        'volume': 19120900},
       {'adjclose': 195.85000610351562,
        'close': 195.85000610351562,
        'date': 1529069400,
        'formatted_date': '2018-06-15',
        'high': 197.07000732421875,
        'low': 194.63999938964844,
        'open': 195.7899932861328,
        'volume': 21860900},
       {'adjclose': 198.30999755859375,
        'close': 198.30999755859375,
        'date': 1529328600,
        'formatted_date': '2018-06-18',
        'high': 199.5800018310547,
        'low': 194.1300048828125,
        'open': 194.8000030517578,
        'volume': 16826000},
       {'adjclose': 197.49000549316406,
        'close': 197.49000549316406,
        'date': 1529415000,
        'formatted_date': '2018-06-19',
        'high': 197.9600067138672,
        'low': 193.7899932861328,
        'open': 196.24000549316406,
        'volume': 19994000},
       {'adjclose': 202.0,
        'close': 202.0,
        'date': 1529501400,
        'formatted_date': '2018-06-20',
        'high': 203.5500030517578,
        'low': 198.80999755859375,
        'open': 199.10000610351562,
        'volume': 28230900},
       {'adjclose': 201.5,
        'close': 201.5,
        'date': 1529587800,
        'formatted_date': '2018-06-21',
        'high': 203.38999938964844,
        'low': 200.08999633789062,
        'open': 202.75999450683594,
        'volume': 19045700},
       {'adjclose': 201.74000549316406,
        'close': 201.74000549316406,
        'date': 1529674200,
        'formatted_date': '2018-06-22',
        'high': 202.24000549316406,
        'low': 199.30999755859375,
        'open': 201.16000366210938,
        'volume': 17420200},
       {'adjclose': 196.35000610351562,
        'close': 196.35000610351562,
        'date': 1529933400,
        'formatted_date': '2018-06-25',
        'high': 200.0,
        'low': 193.11000061035156,
        'open': 200.0,
        'volume': 25275100},
       {'adjclose': 199.0,
        'close': 199.0,
        'date': 1530019800,
        'formatted_date': '2018-06-26',
        'high': 199.10000610351562,
        'low': 196.22999572753906,
        'open': 197.60000610351562,
        'volume': 17897600},
       {'adjclose': 195.83999633789062,
        'close': 195.83999633789062,
        'date': 1530106200,
        'formatted_date': '2018-06-27',
        'high': 200.75,
        'low': 195.8000030517578,
        'open': 199.17999267578125,
        'volume': 18734400},
       {'adjclose': 196.22999572753906,
        'close': 196.22999572753906,
        'date': 1530192600,
        'formatted_date': '2018-06-28',
        'high': 197.33999633789062,
        'low': 193.25999450683594,
        'open': 195.17999267578125,
        'volume': 18172400},
       {'adjclose': 194.32000732421875,
        'close': 194.32000732421875,
        'date': 1530279000,
        'formatted_date': '2018-06-29',
        'high': 197.60000610351562,
        'low': 193.9600067138672,
        'open': 197.32000732421875,
        'volume': 15811600},
       {'adjclose': 197.36000061035156,
        'close': 197.36000061035156,
        'date': 1530538200,
        'formatted_date': '2018-07-02',
        'high': 197.4499969482422,
        'low': 192.22000122070312,
        'open': 193.3699951171875,
        'volume': 13961600},
       {'adjclose': 192.72999572753906,
        'close': 192.72999572753906,
        'date': 1530624600,
        'formatted_date': '2018-07-03',
        'high': 195.39999389648438,
        'low': 192.52000427246094,
        'open': 194.5500030517578,
        'volume': 13489500},
       {'adjclose': 198.4499969482422,
        'close': 198.4499969482422,
        'date': 1530797400,
        'formatted_date': '2018-07-05',
        'high': 198.64999389648438,
        'low': 194.02999877929688,
        'open': 194.74000549316406,
        'volume': 19684200},
       {'adjclose': 203.22999572753906,
        'close': 203.22999572753906,
        'date': 1530883800,
        'formatted_date': '2018-07-06',
        'high': 203.63999938964844,
        'low': 197.6999969482422,
        'open': 198.4499969482422,
        'volume': 19740100},
       {'adjclose': 204.74000549316406,
        'close': 204.74000549316406,
        'date': 1531143000,
        'formatted_date': '2018-07-09',
        'high': 205.8000030517578,
        'low': 202.1199951171875,
        'open': 204.92999267578125,
        'volume': 18149400},
       {'adjclose': 203.5399932861328,
        'close': 203.5399932861328,
        'date': 1531229400,
        'formatted_date': '2018-07-10',
        'high': 204.91000366210938,
        'low': 202.25999450683594,
        'open': 204.5,
        'volume': 13190100},
       {'adjclose': 202.5399932861328,
        'close': 202.5399932861328,
        'date': 1531315800,
        'formatted_date': '2018-07-11',
        'high': 204.5,
        'low': 201.75,
        'open': 202.22000122070312,
        'volume': 12927400},
       {'adjclose': 206.9199981689453,
        'close': 206.9199981689453,
        'date': 1531402200,
        'formatted_date': '2018-07-12',
        'high': 207.0800018310547,
        'low': 203.19000244140625,
        'open': 203.42999267578125,
        'volume': 15454700},
       {'adjclose': 207.32000732421875,
        'close': 207.32000732421875,
        'date': 1531488600,
        'formatted_date': '2018-07-13',
        'high': 208.42999267578125,
        'low': 206.4499969482422,
        'open': 207.80999755859375,
        'volume': 11486800},
       {'adjclose': 207.22999572753906,
        'close': 207.22999572753906,
        'date': 1531747800,
        'formatted_date': '2018-07-16',
        'high': 208.72000122070312,
        'low': 206.83999633789062,
        'open': 207.5,
        'volume': 11078200},
       {'adjclose': 209.99000549316406,
        'close': 209.99000549316406,
        'date': 1531834200,
        'formatted_date': '2018-07-17',
        'high': 210.4600067138672,
        'low': 204.83999633789062,
        'open': 204.89999389648438,
        'volume': 15349900},
       {'adjclose': 209.36000061035156,
        'close': 209.36000061035156,
        'date': 1531920600,
        'formatted_date': '2018-07-18',
        'high': 210.99000549316406,
        'low': 208.44000244140625,
        'open': 209.82000732421875,
        'volume': 15334900},
       {'adjclose': 208.08999633789062,
        'close': 208.08999633789062,
        'date': 1532007000,
        'formatted_date': '2018-07-19',
        'high': 209.99000549316406,
        'low': 207.75999450683594,
        'open': 208.77000427246094,
        'volume': 11350400},
       {'adjclose': 209.94000244140625,
        'close': 209.94000244140625,
        'date': 1532093400,
        'formatted_date': '2018-07-20',
        'high': 211.5,
        'low': 208.5,
        'open': 208.85000610351562,
        'volume': 16163900},
       {'adjclose': 210.91000366210938,
        'close': 210.91000366210938,
        'date': 1532352600,
        'formatted_date': '2018-07-23',
        'high': 211.6199951171875,
        'low': 208.8000030517578,
        'open': 210.5800018310547,
        'volume': 16732000},
       {'adjclose': 214.6699981689453,
        'close': 214.6699981689453,
        'date': 1532439000,
        'formatted_date': '2018-07-24',
        'high': 216.1999969482422,
        'low': 212.60000610351562,
        'open': 215.11000061035156,
        'volume': 28468700},
       {'adjclose': 217.5,
        'close': 217.5,
        'date': 1532525400,
        'formatted_date': '2018-07-25',
        'high': 218.6199951171875,
        'low': 214.27000427246094,
        'open': 215.72000122070312,
        'volume': 58954200},
       {'adjclose': 176.25999450683594,
        'close': 176.25999450683594,
        'date': 1532611800,
        'formatted_date': '2018-07-26',
        'high': 180.1300048828125,
        'low': 173.75,
        'open': 174.88999938964844,
        'volume': 169803700},
       {'adjclose': 174.88999938964844,
        'close': 174.88999938964844,
        'date': 1532698200,
        'formatted_date': '2018-07-27',
        'high': 179.92999267578125,
        'low': 173.0,
        'open': 179.8699951171875,
        'volume': 60073700},
       {'adjclose': 171.05999755859375,
        'close': 171.05999755859375,
        'date': 1532957400,
        'formatted_date': '2018-07-30',
        'high': 175.3000030517578,
        'low': 166.55999755859375,
        'open': 175.3000030517578,
        'volume': 65280800},
       {'adjclose': 172.5800018310547,
        'close': 172.5800018310547,
        'date': 1533043800,
        'formatted_date': '2018-07-31',
        'high': 174.24000549316406,
        'low': 170.0,
        'open': 170.6699981689453,
        'volume': 40356500},
       {'adjclose': 171.64999389648438,
        'close': 171.64999389648438,
        'date': 1533130200,
        'formatted_date': '2018-08-01',
        'high': 175.0800018310547,
        'low': 170.89999389648438,
        'open': 173.92999267578125,
        'volume': 34042100},
       {'adjclose': 176.3699951171875,
        'close': 176.3699951171875,
        'date': 1533216600,
        'formatted_date': '2018-08-02',
        'high': 176.7899932861328,
        'low': 170.27000427246094,
        'open': 170.67999267578125,
        'volume': 32400000},
       {'adjclose': 177.77999877929688,
        'close': 177.77999877929688,
        'date': 1533303000,
        'formatted_date': '2018-08-03',
        'high': 178.85000610351562,
        'low': 176.14999389648438,
        'open': 177.69000244140625,
        'volume': 24763400},
       {'adjclose': 185.69000244140625,
        'close': 185.69000244140625,
        'date': 1533562200,
        'formatted_date': '2018-08-06',
        'high': 185.7899932861328,
        'low': 178.3800048828125,
        'open': 178.97000122070312,
        'volume': 49716200},
       {'adjclose': 183.80999755859375,
        'close': 183.80999755859375,
        'date': 1533648600,
        'formatted_date': '2018-08-07',
        'high': 188.3000030517578,
        'low': 183.72000122070312,
        'open': 186.5,
        'volume': 33398600},
       {'adjclose': 185.17999267578125,
        'close': 185.17999267578125,
        'date': 1533735000,
        'formatted_date': '2018-08-08',
        'high': 186.85000610351562,
        'low': 183.75999450683594,
        'open': 184.75,
        'volume': 22205200},
       {'adjclose': 183.08999633789062,
        'close': 183.08999633789062,
        'date': 1533821400,
        'formatted_date': '2018-08-09',
        'high': 186.57000732421875,
        'low': 182.47999572753906,
        'open': 185.85000610351562,
        'volume': 19732100},
       {'adjclose': 180.25999450683594,
        'close': 180.25999450683594,
        'date': 1533907800,
        'formatted_date': '2018-08-10',
        'high': 182.10000610351562,
        'low': 179.4199981689453,
        'open': 182.0399932861328,
        'volume': 21500400},
       {'adjclose': 180.0500030517578,
        'close': 180.0500030517578,
        'date': 1534167000,
        'formatted_date': '2018-08-13',
        'high': 182.61000061035156,
        'low': 178.89999389648438,
        'open': 180.10000610351562,
        'volume': 17423300},
       {'adjclose': 181.11000061035156,
        'close': 181.11000061035156,
        'date': 1534253400,
        'formatted_date': '2018-08-14',
        'high': 181.99000549316406,
        'low': 178.6199951171875,
        'open': 180.7100067138672,
        'volume': 19102000},
       {'adjclose': 179.52999877929688,
        'close': 179.52999877929688,
        'date': 1534339800,
        'formatted_date': '2018-08-15',
        'high': 180.8699951171875,
        'low': 174.77999877929688,
        'open': 179.33999633789062,
        'volume': 33020200},
       {'adjclose': 174.6999969482422,
        'close': 174.6999969482422,
        'date': 1534426200,
        'formatted_date': '2018-08-16',
        'high': 180.5,
        'low': 174.00999450683594,
        'open': 180.4199981689453,
        'volume': 31351800},
       {'adjclose': 173.8000030517578,
        'close': 173.8000030517578,
        'date': 1534512600,
        'formatted_date': '2018-08-17',
        'high': 176.22000122070312,
        'low': 172.0399932861328,
        'open': 174.5,
        'volume': 24893200},
       {'adjclose': 172.5,
        'close': 172.5,
        'date': 1534771800,
        'formatted_date': '2018-08-20',
        'high': 174.57000732421875,
        'low': 170.91000366210938,
        'open': 174.0399932861328,
        'volume': 21518000},
       {'adjclose': 172.6199951171875,
        'close': 172.6199951171875,
        'date': 1534858200,
        'formatted_date': '2018-08-21',
        'high': 174.1699981689453,
        'low': 171.38999938964844,
        'open': 172.80999755859375,
        'volume': 19578500},
       {'adjclose': 173.63999938964844,
        'close': 173.63999938964844,
        'date': 1534944600,
        'formatted_date': '2018-08-22',
        'high': 174.24000549316406,
        'low': 172.1300048828125,
        'open': 172.2100067138672,
        'volume': 16894100},
       {'adjclose': 172.89999389648438,
        'close': 172.89999389648438,
        'date': 1535031000,
        'formatted_date': '2018-08-23',
        'high': 175.5500030517578,
        'low': 172.8300018310547,
        'open': 173.08999633789062,
        'volume': 18053600},
       {'adjclose': 174.64999389648438,
        'close': 174.64999389648438,
        'date': 1535117400,
        'formatted_date': '2018-08-24',
        'high': 174.82000732421875,
        'low': 172.9199981689453,
        'open': 173.6999969482422,
        'volume': 14631600},
       {'adjclose': 177.4600067138672,
        'close': 177.4600067138672,
        'date': 1535376600,
        'formatted_date': '2018-08-27',
        'high': 178.6699981689453,
        'low': 175.7899932861328,
        'open': 175.99000549316406,
        'volume': 17921900},
       {'adjclose': 176.25999450683594,
        'close': 176.25999450683594,
        'date': 1535463000,
        'formatted_date': '2018-08-28',
        'high': 178.24000549316406,
        'low': 175.8300018310547,
        'open': 178.10000610351562,
        'volume': 15910700},
       {'adjclose': 175.89999389648438,
        'close': 175.89999389648438,
        'date': 1535549400,
        'formatted_date': '2018-08-29',
        'high': 176.7899932861328,
        'low': 174.75,
        'open': 176.3000030517578,
        'volume': 18494100},
       {'adjclose': 177.63999938964844,
        'close': 177.63999938964844,
        'date': 1535635800,
        'formatted_date': '2018-08-30',
        'high': 179.7899932861328,
        'low': 175.6999969482422,
        'open': 175.89999389648438,
        'volume': 24216500},
       {'adjclose': 175.72999572753906,
        'close': 175.72999572753906,
        'date': 1535722200,
        'formatted_date': '2018-08-31',
        'high': 177.6199951171875,
        'low': 174.97999572753906,
        'open': 177.14999389648438,
        'volume': 18065200},
       {'adjclose': 171.16000366210938,
        'close': 171.16000366210938,
        'date': 1536067800,
        'formatted_date': '2018-09-04',
        'high': 173.88999938964844,
        'low': 168.8000030517578,
        'open': 173.5,
        'volume': 29809000},
       {'adjclose': 167.17999267578125,
        'close': 167.17999267578125,
        'date': 1536154200,
        'formatted_date': '2018-09-05',
        'high': 171.1300048828125,
        'low': 166.6699981689453,
        'open': 169.49000549316406,
        'volume': 31226700},
       {'adjclose': 162.52999877929688,
        'close': 162.52999877929688,
        'date': 1536240600,
        'formatted_date': '2018-09-06',
        'high': 166.97999572753906,
        'low': 160.0,
        'open': 166.97999572753906,
        'volume': 41514800},
       {'adjclose': 163.0399932861328,
        'close': 163.0399932861328,
        'date': 1536327000,
        'formatted_date': '2018-09-07',
        'high': 164.6300048828125,
        'low': 160.16000366210938,
        'open': 160.30999755859375,
        'volume': 24300600},
       {'adjclose': 164.17999267578125,
        'close': 164.17999267578125,
        'date': 1536586200,
        'formatted_date': '2018-09-10',
        'high': 165.00999450683594,
        'low': 162.16000366210938,
        'open': 163.50999450683594,
        'volume': 20197700},
       {'adjclose': 165.94000244140625,
        'close': 165.94000244140625,
        'date': 1536672600,
        'formatted_date': '2018-09-11',
        'high': 167.19000244140625,
        'low': 163.72000122070312,
        'open': 163.94000244140625,
        'volume': 20457100},
       {'adjclose': 162.0,
        'close': 162.0,
        'date': 1536759000,
        'formatted_date': '2018-09-12',
        'high': 164.49000549316406,
        'low': 161.8000030517578,
        'open': 163.25,
        'volume': 24078100},
       {'adjclose': 161.36000061035156,
        'close': 161.36000061035156,
        'date': 1536845400,
        'formatted_date': '2018-09-13',
        'high': 163.32000732421875,
        'low': 160.86000061035156,
        'open': 162.0,
        'volume': 25453800},
       {'adjclose': 162.32000732421875,
        'close': 162.32000732421875,
        'date': 1536931800,
        'formatted_date': '2018-09-14',
        'high': 162.83999633789062,
        'low': 160.33999633789062,
        'open': 161.72000122070312,
        'volume': 21770400},
       {'adjclose': 160.5800018310547,
        'close': 160.5800018310547,
        'date': 1537191000,
        'formatted_date': '2018-09-17',
        'high': 162.05999755859375,
        'low': 159.77000427246094,
        'open': 161.9199981689453,
        'volume': 21005300},
       {'adjclose': 160.3000030517578,
        'close': 160.3000030517578,
        'date': 1537277400,
        'formatted_date': '2018-09-18',
        'high': 161.75999450683594,
        'low': 158.8699951171875,
        'open': 159.38999938964844,
        'volume': 22465200},
       {'adjclose': 163.05999755859375,
        'close': 163.05999755859375,
        'date': 1537363800,
        'formatted_date': '2018-09-19',
        'high': 163.44000244140625,
        'low': 159.47999572753906,
        'open': 160.0800018310547,
        'volume': 19629000},
       {'adjclose': 166.02000427246094,
        'close': 166.02000427246094,
        'date': 1537450200,
        'formatted_date': '2018-09-20',
        'high': 166.4499969482422,
        'low': 164.47000122070312,
        'open': 164.5,
        'volume': 18936000},
       {'adjclose': 162.92999267578125,
        'close': 162.92999267578125,
        'date': 1537536600,
        'formatted_date': '2018-09-21',
        'high': 167.25,
        'low': 162.80999755859375,
        'open': 166.63999938964844,
        'volume': 45994800},
       {'adjclose': 165.41000366210938,
        'close': 165.41000366210938,
        'date': 1537795800,
        'formatted_date': '2018-09-24',
        'high': 165.6999969482422,
        'low': 160.8800048828125,
        'open': 161.02999877929688,
        'volume': 19222800},
       {'adjclose': 164.91000366210938,
        'close': 164.91000366210938,
        'date': 1537882200,
        'formatted_date': '2018-09-25',
        'high': 165.58999633789062,
        'low': 161.14999389648438,
        'open': 161.99000549316406,
        'volume': 27622800},
       {'adjclose': 166.9499969482422,
        'close': 166.9499969482422,
        'date': 1537968600,
        'formatted_date': '2018-09-26',
        'high': 169.3000030517578,
        'low': 164.2100067138672,
        'open': 164.3000030517578,
        'volume': 25252200},
       {'adjclose': 168.83999633789062,
        'close': 168.83999633789062,
        'date': 1538055000,
        'formatted_date': '2018-09-27',
        'high': 171.77000427246094,
        'low': 167.2100067138672,
        'open': 167.5500030517578,
        'volume': 27266900},
       {'adjclose': 164.4600067138672,
        'close': 164.4600067138672,
        'date': 1538141400,
        'formatted_date': '2018-09-28',
        'high': 168.7899932861328,
        'low': 162.55999755859375,
        'open': 168.3300018310547,
        'volume': 34265600},
       {'adjclose': 162.44000244140625,
        'close': 162.44000244140625,
        'date': 1538400600,
        'formatted_date': '2018-10-01',
        'high': 165.8800048828125,
        'low': 161.25999450683594,
        'open': 163.02999877929688,
        'volume': 26407700},
       {'adjclose': 159.3300018310547,
        'close': 159.3300018310547,
        'date': 1538487000,
        'formatted_date': '2018-10-02',
        'high': 162.27999877929688,
        'low': 158.6699981689453,
        'open': 161.5800018310547,
        'volume': 36031000},
       {'adjclose': 162.42999267578125,
        'close': 162.42999267578125,
        'date': 1538573400,
        'formatted_date': '2018-10-03',
        'high': 163.66000366210938,
        'low': 159.52999877929688,
        'open': 160.0,
        'volume': 23109500},
       {'adjclose': 158.85000610351562,
        'close': 158.85000610351562,
        'date': 1538659800,
        'formatted_date': '2018-10-04',
        'high': 161.4600067138672,
        'low': 157.35000610351562,
        'open': 161.4600067138672,
        'volume': 25739600},
       {'adjclose': 157.3300018310547,
        'close': 157.3300018310547,
        'date': 1538746200,
        'formatted_date': '2018-10-05',
        'high': 160.89999389648438,
        'low': 156.1999969482422,
        'open': 159.2100067138672,
        'volume': 25744000},
       {'adjclose': 157.25,
        'close': 157.25,
        'date': 1539005400,
        'formatted_date': '2018-10-08',
        'high': 158.33999633789062,
        'low': 154.38999938964844,
        'open': 155.5399932861328,
        'volume': 24046000},
       {'adjclose': 157.89999389648438,
        'close': 157.89999389648438,
        'date': 1539091800,
        'formatted_date': '2018-10-09',
        'high': 160.58999633789062,
        'low': 157.4199981689453,
        'open': 157.69000244140625,
        'volume': 18844400},
       {'adjclose': 151.3800048828125,
        'close': 151.3800048828125,
        'date': 1539178200,
        'formatted_date': '2018-10-10',
        'high': 157.69000244140625,
        'low': 151.30999755859375,
        'open': 156.82000732421875,
        'volume': 30610000},
       {'adjclose': 153.35000610351562,
        'close': 153.35000610351562,
        'date': 1539264600,
        'formatted_date': '2018-10-11',
        'high': 154.80999755859375,
        'low': 149.16000366210938,
        'open': 150.1300048828125,
        'volume': 35338900},
       {'adjclose': 153.74000549316406,
        'close': 153.74000549316406,
        'date': 1539351000,
        'formatted_date': '2018-10-12',
        'high': 156.88999938964844,
        'low': 151.3000030517578,
        'open': 156.72999572753906,
        'volume': 25293500},
       {'adjclose': 153.52000427246094,
        'close': 153.52000427246094,
        'date': 1539610200,
        'formatted_date': '2018-10-15',
        'high': 155.57000732421875,
        'low': 152.5500030517578,
        'open': 153.32000732421875,
        'volume': 15433500},
       {'adjclose': 158.77999877929688,
        'close': 158.77999877929688,
        'date': 1539696600,
        'formatted_date': '2018-10-16',
        'high': 159.4600067138672,
        'low': 155.00999450683594,
        'open': 155.39999389648438,
        'volume': 19180100},
       {'adjclose': 159.4199981689453,
        'close': 159.4199981689453,
        'date': 1539783000,
        'formatted_date': '2018-10-17',
        'high': 160.49000549316406,
        'low': 157.9499969482422,
        'open': 159.55999755859375,
        'volume': 17592000},
       {'adjclose': 154.9199981689453,
        'close': 154.9199981689453,
        'date': 1539869400,
        'formatted_date': '2018-10-18',
        'high': 158.66000366210938,
        'low': 153.27999877929688,
        'open': 158.50999450683594,
        'volume': 21675100},
       {'adjclose': 154.0500030517578,
        'close': 154.0500030517578,
        'date': 1539955800,
        'formatted_date': '2018-10-19',
        'high': 157.35000610351562,
        'low': 153.5500030517578,
        'open': 155.86000061035156,
        'volume': 19761300},
       {'adjclose': 154.77999877929688,
        'close': 154.77999877929688,
        'date': 1540215000,
        'formatted_date': '2018-10-22',
        'high': 157.33999633789062,
        'low': 154.4600067138672,
        'open': 154.75999450683594,
        'volume': 15424700},
       {'adjclose': 154.38999938964844,
        'close': 154.38999938964844,
        'date': 1540301400,
        'formatted_date': '2018-10-23',
        'high': 154.77000427246094,
        'low': 150.85000610351562,
        'open': 151.22000122070312,
        'volume': 19095000},
       {'adjclose': 146.0399932861328,
        'close': 146.0399932861328,
        'date': 1540387800,
        'formatted_date': '2018-10-24',
        'high': 154.64999389648438,
        'low': 145.60000610351562,
        'open': 154.27999877929688,
        'volume': 27744600},
       {'adjclose': 150.9499969482422,
        'close': 150.9499969482422,
        'date': 1540474200,
        'formatted_date': '2018-10-25',
        'high': 152.2100067138672,
        'low': 147.0,
        'open': 147.72999572753906,
        'volume': 22105700},
       {'adjclose': 145.3699951171875,
        'close': 145.3699951171875,
        'date': 1540560600,
        'formatted_date': '2018-10-26',
        'high': 149.0,
        'low': 143.8000030517578,
        'open': 145.82000732421875,
        'volume': 31303300},
       {'adjclose': 142.08999633789062,
        'close': 142.08999633789062,
        'date': 1540819800,
        'formatted_date': '2018-10-29',
        'high': 148.8300018310547,
        'low': 139.02999877929688,
        'open': 148.5,
        'volume': 31336800},
       {'adjclose': 146.22000122070312,
        'close': 146.22000122070312,
        'date': 1540906200,
        'formatted_date': '2018-10-30',
        'high': 146.63999938964844,
        'low': 139.74000549316406,
        'open': 139.94000244140625,
        'volume': 50528300},
       {'adjclose': 151.7899932861328,
        'close': 151.7899932861328,
        'date': 1540992600,
        'formatted_date': '2018-10-31',
        'high': 156.39999389648438,
        'low': 148.9600067138672,
        'open': 155.0,
        'volume': 60101300},
       {'adjclose': 151.75,
        'close': 151.75,
        'date': 1541079000,
        'formatted_date': '2018-11-01',
        'high': 152.75,
        'low': 149.35000610351562,
        'open': 151.52000427246094,
        'volume': 25640800},
       {'adjclose': 150.35000610351562,
        'close': 150.35000610351562,
        'date': 1541165400,
        'formatted_date': '2018-11-02',
        'high': 154.1300048828125,
        'low': 148.9600067138672,
        'open': 151.8000030517578,
        'volume': 24708700},
       {'adjclose': 148.67999267578125,
        'close': 148.67999267578125,
        'date': 1541428200,
        'formatted_date': '2018-11-05',
        'high': 150.19000244140625,
        'low': 147.44000244140625,
        'open': 150.10000610351562,
        'volume': 15971200},
       {'adjclose': 149.94000244140625,
        'close': 149.94000244140625,
        'date': 1541514600,
        'formatted_date': '2018-11-06',
        'high': 150.97000122070312,
        'low': 148.0,
        'open': 149.30999755859375,
        'volume': 16667100},
       {'adjclose': 151.52999877929688,
        'close': 151.52999877929688,
        'date': 1541601000,
        'formatted_date': '2018-11-07',
        'high': 153.00999450683594,
        'low': 149.8300018310547,
        'open': 151.57000732421875,
        'volume': 21877400},
       {'adjclose': 147.8699951171875,
        'close': 147.8699951171875,
        'date': 1541687400,
        'formatted_date': '2018-11-08',
        'high': 150.94000244140625,
        'low': 146.74000549316406,
        'open': 150.49000549316406,
        'volume': 24145800},
       {'adjclose': 144.9600067138672,
        'close': 144.9600067138672,
        'date': 1541773800,
        'formatted_date': '2018-11-09',
        'high': 147.75999450683594,
        'low': 144.07000732421875,
        'open': 146.75,
        'volume': 17326900},
       {'adjclose': 141.5500030517578,
        'close': 141.5500030517578,
        'date': 1542033000,
        'formatted_date': '2018-11-12',
        'high': 145.0399932861328,
        'low': 140.49000549316406,
        'open': 144.47999572753906,
        'volume': 18542100},
       {'adjclose': 142.16000366210938,
        'close': 142.16000366210938,
        'date': 1542119400,
        'formatted_date': '2018-11-13',
        'high': 144.8800048828125,
        'low': 141.6199951171875,
        'open': 142.0,
        'volume': 15141700},
       {'adjclose': 144.22000122070312,
        'close': 144.22000122070312,
        'date': 1542205800,
        'formatted_date': '2018-11-14',
        'high': 145.5800018310547,
        'low': 141.5500030517578,
        'open': 143.6999969482422,
        'volume': 22068400},
       {'adjclose': 143.85000610351562,
        'close': 143.85000610351562,
        'date': 1542292200,
        'formatted_date': '2018-11-15',
        'high': 144.83999633789062,
        'low': 140.8300018310547,
        'open': 142.3300018310547,
        'volume': 30320300},
       {'adjclose': 139.52999877929688,
        'close': 139.52999877929688,
        'date': 1542378600,
        'formatted_date': '2018-11-16',
        'high': 141.77000427246094,
        'low': 137.77000427246094,
        'open': 141.07000732421875,
        'volume': 37250600},
       {'adjclose': 131.5500030517578,
        'close': 131.5500030517578,
        'date': 1542637800,
        'formatted_date': '2018-11-19',
        'high': 137.75,
        'low': 131.2100067138672,
        'open': 137.61000061035156,
        'volume': 44362700},
       {'adjclose': 132.42999267578125,
        'close': 132.42999267578125,
        'date': 1542724200,
        'formatted_date': '2018-11-20',
        'high': 134.16000366210938,
        'low': 126.8499984741211,
        'open': 127.02999877929688,
        'volume': 41939500},
       {'adjclose': 134.82000732421875,
        'close': 134.82000732421875,
        'date': 1542810600,
        'formatted_date': '2018-11-21',
        'high': 137.19000244140625,
        'low': 134.1300048828125,
        'open': 134.39999389648438,
        'volume': 25469700},
       {'adjclose': 131.72999572753906,
        'close': 131.72999572753906,
        'date': 1542983400,
        'formatted_date': '2018-11-23',
        'high': 134.5,
        'low': 131.25999450683594,
        'open': 133.64999389648438,
        'volume': 11886100},
       {'adjclose': 136.3800048828125,
        'close': 136.3800048828125,
        'date': 1543242600,
        'formatted_date': '2018-11-26',
        'high': 137.0,
        'low': 132.77999877929688,
        'open': 133.0,
        'volume': 24263600},
       {'adjclose': 135.0,
        'close': 135.0,
        'date': 1543329000,
        'formatted_date': '2018-11-27',
        'high': 136.61000061035156,
        'low': 133.7100067138672,
        'open': 135.75,
        'volume': 20750300},
       {'adjclose': 136.75999450683594,
        'close': 136.75999450683594,
        'date': 1543415400,
        'formatted_date': '2018-11-28',
        'high': 136.7899932861328,
        'low': 131.85000610351562,
        'open': 136.27999877929688,
        'volume': 29847500},
       {'adjclose': 138.67999267578125,
        'close': 138.67999267578125,
        'date': 1543501800,
        'formatted_date': '2018-11-29',
        'high': 139.99000549316406,
        'low': 135.66000366210938,
        'open': 135.9199981689453,
        'volume': 24238700},
       {'adjclose': 140.61000061035156,
        'close': 140.61000061035156,
        'date': 1543588200,
        'formatted_date': '2018-11-30',
        'high': 140.97000122070312,
        'low': 137.36000061035156,
        'open': 138.25999450683594,
        'volume': 25732600},
       {'adjclose': 141.08999633789062,
        'close': 141.08999633789062,
        'date': 1543847400,
        'formatted_date': '2018-12-03',
        'high': 143.67999267578125,
        'low': 140.75999450683594,
        'open': 143.0,
        'volume': 24819200},
       {'adjclose': 137.92999267578125,
        'close': 137.92999267578125,
        'date': 1543933800,
        'formatted_date': '2018-12-04',
        'high': 143.38999938964844,
        'low': 137.16000366210938,
        'open': 140.72999572753906,
        'volume': 30307400},
       {'adjclose': 139.6300048828125,
        'close': 139.6300048828125,
        'date': 1544106600,
        'formatted_date': '2018-12-06',
        'high': 139.6999969482422,
        'low': 133.6699981689453,
        'open': 133.82000732421875,
        'volume': 28218100},
       {'adjclose': 137.4199981689453,
        'close': 137.4199981689453,
        'date': 1544193000,
        'formatted_date': '2018-12-07',
        'high': 140.8699951171875,
        'low': 136.66000366210938,
        'open': 139.25,
        'volume': 21195500},
       {'adjclose': 141.85000610351562,
        'close': 141.85000610351562,
        'date': 1544452200,
        'formatted_date': '2018-12-10',
        'high': 143.0500030517578,
        'low': 139.00999450683594,
        'open': 139.60000610351562,
        'volume': 26422200},
       {'adjclose': 142.0800018310547,
        'close': 142.0800018310547,
        'date': 1544538600,
        'formatted_date': '2018-12-11',
        'high': 143.8800048828125,
        'low': 141.10000610351562,
        'open': 143.8800048828125,
        'volume': 20300300},
       {'adjclose': 144.5,
        'close': 144.5,
        'date': 1544625000,
        'formatted_date': '2018-12-12',
        'high': 147.19000244140625,
        'low': 142.50999450683594,
        'open': 143.0800018310547,
        'volume': 23696900},
       {'adjclose': 145.00999450683594,
        'close': 145.00999450683594,
        'date': 1544711400,
        'formatted_date': '2018-12-13',
        'high': 145.85000610351562,
        'low': 143.19000244140625,
        'open': 145.57000732421875,
        'volume': 18148600},
       {'adjclose': 144.05999755859375,
        'close': 144.05999755859375,
        'date': 1544797800,
        'formatted_date': '2018-12-14',
        'high': 146.00999450683594,
        'low': 142.50999450683594,
        'open': 143.33999633789062,
        'volume': 21785800},
       {'adjclose': 140.19000244140625,
        'close': 140.19000244140625,
        'date': 1545057000,
        'formatted_date': '2018-12-17',
        'high': 144.9199981689453,
        'low': 138.4199981689453,
        'open': 143.0800018310547,
        'volume': 24334000},
       {'adjclose': 143.66000366210938,
        'close': 143.66000366210938,
        'date': 1545143400,
        'formatted_date': '2018-12-18',
        'high': 145.92999267578125,
        'low': 139.8300018310547,
        'open': 141.0800018310547,
        'volume': 24709100},
       {'adjclose': 133.24000549316406,
        'close': 133.24000549316406,
        'date': 1545229800,
        'formatted_date': '2018-12-19',
        'high': 144.91000366210938,
        'low': 132.5,
        'open': 141.2100067138672,
        'volume': 57404900},
       {'adjclose': 133.39999389648438,
        'close': 133.39999389648438,
        'date': 1545316200,
        'formatted_date': '2018-12-20',
        'high': 135.57000732421875,
        'low': 130.0,
        'open': 130.6999969482422,
        'volume': 40297900},
       {'adjclose': 124.94999694824219,
        'close': 124.94999694824219,
        'date': 1545402600,
        'formatted_date': '2018-12-21',
        'high': 134.89999389648438,
        'low': 123.41999816894531,
        'open': 133.38999938964844,
        'volume': 56901500},
       {'adjclose': 124.05999755859375,
        'close': 124.05999755859375,
        'date': 1545661800,
        'formatted_date': '2018-12-24',
        'high': 129.74000549316406,
        'low': 123.0199966430664,
        'open': 123.0999984741211,
        'volume': 22066000},
       {'adjclose': 134.17999267578125,
        'close': 134.17999267578125,
        'date': 1545834600,
        'formatted_date': '2018-12-26',
        'high': 134.24000549316406,
        'low': 125.88999938964844,
        'open': 126.0,
        'volume': 39723400},
       {'adjclose': 134.52000427246094,
        'close': 134.52000427246094,
        'date': 1545921000,
        'formatted_date': '2018-12-27',
        'high': 134.99000549316406,
        'low': 129.6699981689453,
        'open': 132.44000244140625,
        'volume': 31202500},
       {'adjclose': 133.1999969482422,
        'close': 133.1999969482422,
        'date': 1546007400,
        'formatted_date': '2018-12-28',
        'high': 135.9199981689453,
        'low': 132.1999969482422,
        'open': 135.33999633789062,
        'volume': 22627600},
       {'adjclose': 131.08999633789062,
        'close': 131.08999633789062,
        'date': 1546266600,
        'formatted_date': '2018-12-31',
        'high': 134.63999938964844,
        'low': 129.9499969482422,
        'open': 134.4499969482422,
        'volume': 24625300},
       {'adjclose': 135.67999267578125,
        'close': 135.67999267578125,
        'date': 1546439400,
        'formatted_date': '2019-01-02',
        'high': 137.50999450683594,
        'low': 128.55999755859375,
        'open': 128.99000549316406,
        'volume': 28146200},
       {'adjclose': 131.74000549316406,
        'close': 131.74000549316406,
        'date': 1546525800,
        'formatted_date': '2019-01-03',
        'high': 137.1699981689453,
        'low': 131.1199951171875,
        'open': 134.69000244140625,
        'volume': 22717900},
       {'adjclose': 137.9499969482422,
        'close': 137.9499969482422,
        'date': 1546612200,
        'formatted_date': '2019-01-04',
        'high': 138.0,
        'low': 133.75,
        'open': 134.00999450683594,
        'volume': 29002100},
       {'adjclose': 138.0500030517578,
        'close': 138.0500030517578,
        'date': 1546871400,
        'formatted_date': '2019-01-07',
        'high': 138.8699951171875,
        'low': 135.91000366210938,
        'open': 137.55999755859375,
        'volume': 20089300},
       {'adjclose': 142.52999877929688,
        'close': 142.52999877929688,
        'date': 1546957800,
        'formatted_date': '2019-01-08',
        'high': 143.13999938964844,
        'low': 139.5399932861328,
        'open': 139.88999938964844,
        'volume': 26263800},
       {'adjclose': 144.22999572753906,
        'close': 144.22999572753906,
        'date': 1547044200,
        'formatted_date': '2019-01-09',
        'high': 144.6999969482422,
        'low': 141.27000427246094,
        'open': 142.9499969482422,
        'volume': 22205900},
       {'adjclose': 144.1999969482422,
        'close': 144.1999969482422,
        'date': 1547130600,
        'formatted_date': '2019-01-10',
        'high': 144.55999755859375,
        'low': 140.83999633789062,
        'open': 143.0800018310547,
        'volume': 16125000},
       {'adjclose': 143.8000030517578,
        'close': 143.8000030517578,
        'date': 1547217000,
        'formatted_date': '2019-01-11',
        'high': 145.36000061035156,
        'low': 142.57000732421875,
        'open': 143.14999389648438,
        'volume': 12908000},
       {'adjclose': 145.38999938964844,
        'close': 145.38999938964844,
        'date': 1547476200,
        'formatted_date': '2019-01-14',
        'high': 146.57000732421875,
        'low': 141.27000427246094,
        'open': 142.0,
        'volume': 20520300},
       {'adjclose': 148.9499969482422,
        'close': 148.9499969482422,
        'date': 1547562600,
        'formatted_date': '2019-01-15',
        'high': 150.67999267578125,
        'low': 145.99000549316406,
        'open': 146.00999450683594,
        'volume': 24069000},
       {'adjclose': 147.5399932861328,
        'close': 147.5399932861328,
        'date': 1547649000,
        'formatted_date': '2019-01-16',
        'high': 149.64999389648438,
        'low': 147.0,
        'open': 149.0,
        'volume': 18025700},
       {'adjclose': 148.3000030517578,
        'close': 148.3000030517578,
        'date': 1547735400,
        'formatted_date': '2019-01-17',
        'high': 149.0,
        'low': 146.5,
        'open': 146.9499969482422,
        'volume': 15787900},
       {'adjclose': 150.0399932861328,
        'close': 150.0399932861328,
        'date': 1547821800,
        'formatted_date': '2019-01-18',
        'high': 152.42999267578125,
        'low': 148.5500030517578,
        'open': 149.75,
        'volume': 31029600},
       {'adjclose': 147.57000732421875,
        'close': 147.57000732421875,
        'date': 1548167400,
        'formatted_date': '2019-01-22',
        'high': 151.52999877929688,
        'low': 146.3699951171875,
        'open': 149.1999969482422,
        'volume': 22378700},
       {'adjclose': 144.3000030517578,
        'close': 144.3000030517578,
        'date': 1548253800,
        'formatted_date': '2019-01-23',
        'high': 148.8000030517578,
        'low': 143.05999755859375,
        'open': 148.27999877929688,
        'volume': 20098400},
       {'adjclose': 145.8300018310547,
        'close': 145.8300018310547,
        'date': 1548340200,
        'formatted_date': '2019-01-24',
        'high': 146.44000244140625,
        'low': 142.52000427246094,
        'open': 144.63999938964844,
        'volume': 20955500},
       {'adjclose': 149.00999450683594,
        'close': 149.00999450683594,
        'date': 1548426600,
        'formatted_date': '2019-01-25',
        'high': 149.8300018310547,
        'low': 146.5399932861328,
        'open': 147.47999572753906,
        'volume': 22237200},
       {'adjclose': 147.47000122070312,
        'close': 147.47000122070312,
        'date': 1548685800,
        'formatted_date': '2019-01-28',
        'high': 148.9600067138672,
        'low': 146.2100067138672,
        'open': 148.0500030517578,
        'volume': 15508500},
       {'adjclose': 144.19000244140625,
        'close': 144.19000244140625,
        'date': 1548772200,
        'formatted_date': '2019-01-29',
        'high': 148.10000610351562,
        'low': 143.42999267578125,
        'open': 148.08999633789062,
        'volume': 17632100},
       {'adjclose': 150.4199981689453,
        'close': 150.4199981689453,
        'date': 1548858600,
        'formatted_date': '2019-01-30',
        'high': 150.9499969482422,
        'low': 145.6999969482422,
        'open': 146.22000122070312,
        'volume': 44613200},
       {'adjclose': 166.69000244140625,
        'close': 166.69000244140625,
        'date': 1548945000,
        'formatted_date': '2019-01-31',
        'high': 171.67999267578125,
        'low': 165.0,
        'open': 165.60000610351562,
        'volume': 77233600},
       {'adjclose': 165.7100067138672,
        'close': 165.7100067138672,
        'date': 1549031400,
        'formatted_date': '2019-02-01',
        'high': 169.10000610351562,
        'low': 165.66000366210938,
        'open': 165.83999633789062,
        'volume': 30806500},
       {'adjclose': 169.25,
        'close': 169.25,
        'date': 1549290600,
        'formatted_date': '2019-02-04',
        'high': 169.3000030517578,
        'low': 163.6199951171875,
        'open': 165.6999969482422,
        'volume': 20036000},
       {'adjclose': 171.16000366210938,
        'close': 171.16000366210938,
        'date': 1549377000,
        'formatted_date': '2019-02-05',
        'high': 171.97999572753906,
        'low': 168.69000244140625,
        'open': 169.14999389648438,
        'volume': 22557000},
       {'adjclose': 170.49000549316406,
        'close': 170.49000549316406,
        'date': 1549463400,
        'formatted_date': '2019-02-06',
        'high': 172.47000122070312,
        'low': 169.27000427246094,
        'open': 171.1999969482422,
        'volume': 13281200},
       {'adjclose': 166.3800048828125,
        'close': 166.3800048828125,
        'date': 1549549800,
        'formatted_date': '2019-02-07',
        'high': 169.24000549316406,
        'low': 165.25,
        'open': 168.1999969482422,
        'volume': 17517600},
       {'adjclose': 167.3300018310547,
        'close': 167.3300018310547,
        'date': 1549636200,
        'formatted_date': '2019-02-08',
        'high': 167.3699951171875,
        'low': 164.2100067138672,
        'open': 164.47000122070312,
        'volume': 12561400},
       {'adjclose': 165.7899932861328,
        'close': 165.7899932861328,
        'date': 1549895400,
        'formatted_date': '2019-02-11',
        'high': 168.3000030517578,
        'low': 165.0800018310547,
        'open': 167.89999389648438,
        'volume': 12811200},
       {'adjclose': 165.0399932861328,
        'close': 165.0399932861328,
        'date': 1549981800,
        'formatted_date': '2019-02-12',
        'high': 168.33999633789062,
        'low': 164.5,
        'open': 166.86000061035156,
        'volume': 16292300},
       {'adjclose': 164.07000732421875,
        'close': 164.07000732421875,
        'date': 1550068200,
        'formatted_date': '2019-02-13',
        'high': 166.22000122070312,
        'low': 163.72999572753906,
        'open': 165.3800048828125,
        'volume': 14205100},
       {'adjclose': 163.9499969482422,
        'close': 163.9499969482422,
        'date': 1550154600,
        'formatted_date': '2019-02-14',
        'high': 164.8699951171875,
        'low': 162.25,
        'open': 163.19000244140625,
        'volume': 12755200},
       {'adjclose': 162.5,
        'close': 162.5,
        'date': 1550241000,
        'formatted_date': '2019-02-15',
        'high': 164.6999969482422,
        'low': 160.86000061035156,
        'open': 164.50999450683594,
        'volume': 15504400},
       {'adjclose': 162.2899932861328,
        'close': 162.2899932861328,
        'date': 1550586600,
        'formatted_date': '2019-02-19',
        'high': 164.14999389648438,
        'low': 160.3300018310547,
        'open': 160.5,
        'volume': 14345400},
       {'adjclose': 162.55999755859375,
        'close': 162.55999755859375,
        'date': 1550673000,
        'formatted_date': '2019-02-20',
        'high': 163.72000122070312,
        'low': 161.25,
        'open': 162.25,
        'volume': 11770700},
       {'adjclose': 160.0399932861328,
        'close': 160.0399932861328,
        'date': 1550759400,
        'formatted_date': '2019-02-21',
        'high': 162.24000549316406,
        'low': 159.58999633789062,
        'open': 161.92999267578125,
        'volume': 15607800},
       {'adjclose': 161.88999938964844,
        'close': 161.88999938964844,
        'date': 1550845800,
        'formatted_date': '2019-02-22',
        'high': 162.41000366210938,
        'low': 160.30999755859375,
        'open': 160.5800018310547,
        'volume': 15858500},
       {'adjclose': 164.6199951171875,
        'close': 164.6199951171875,
        'date': 1551105000,
        'formatted_date': '2019-02-25',
        'high': 166.07000732421875,
        'low': 162.89999389648438,
        'open': 163.07000732421875,
        'volume': 18737100},
       {'adjclose': 164.1300048828125,
        'close': 164.1300048828125,
        'date': 1551191400,
        'formatted_date': '2019-02-26',
        'high': 166.24000549316406,
        'low': 163.8000030517578,
        'open': 164.33999633789062,
        'volume': 13784100},
       {'adjclose': 162.80999755859375,
        'close': 162.80999755859375,
        'date': 1551277800,
        'formatted_date': '2019-02-27',
        'high': 163.92999267578125,
        'low': 160.41000366210938,
        'open': 162.89999389648438,
        'volume': 12697500},
       {'adjclose': 161.4499969482422,
        'close': 161.4499969482422,
        'date': 1551364200,
        'formatted_date': '2019-02-28',
        'high': 163.5,
        'low': 160.86000061035156,
        'open': 162.3699951171875,
        'volume': 11114200},
       {'adjclose': 162.27999877929688,
        'close': 162.27999877929688,
        'date': 1551450600,
        'formatted_date': '2019-03-01',
        'high': 163.1300048828125,
        'low': 161.69000244140625,
        'open': 162.60000610351562,
        'volume': 11097800},
       {'adjclose': 167.3699951171875,
        'close': 167.3699951171875,
        'date': 1551709800,
        'formatted_date': '2019-03-04',
        'high': 167.5,
        'low': 163.8300018310547,
        'open': 163.89999389648438,
        'volume': 18894700},
       {'adjclose': 171.25999450683594,
        'close': 171.25999450683594,
        'date': 1551796200,
        'formatted_date': '2019-03-05',
        'high': 171.8800048828125,
        'low': 166.5500030517578,
        'open': 167.3699951171875,
        'volume': 28187900},
       {'adjclose': 172.50999450683594,
        'close': 172.50999450683594,
        'date': 1551882600,
        'formatted_date': '2019-03-06',
        'high': 173.57000732421875,
        'low': 171.27000427246094,
        'open': 172.89999389648438,
        'volume': 21531700},
       {'adjclose': 169.1300048828125,
        'close': 169.1300048828125,
        'date': 1551969000,
        'formatted_date': '2019-03-07',
        'high': 171.74000549316406,
        'low': 167.61000061035156,
        'open': 171.5,
        'volume': 18306500},
       {'adjclose': 169.60000610351562,
        'close': 169.60000610351562,
        'date': 1552055400,
        'formatted_date': '2019-03-08',
        'high': 169.6199951171875,
        'low': 165.97000122070312,
        'open': 166.1999969482422,
        'volume': 13184800},
       {'adjclose': 172.07000732421875,
        'close': 172.07000732421875,
        'date': 1552311000,
        'formatted_date': '2019-03-11',
        'high': 174.3000030517578,
        'low': 171.5800018310547,
        'open': 171.60000610351562,
        'volume': 18884000},
       {'adjclose': 171.9199981689453,
        'close': 171.9199981689453,
        'date': 1552397400,
        'formatted_date': '2019-03-12',
        'high': 173.8000030517578,
        'low': 171.22000122070312,
        'open': 172.08999633789062,
        'volume': 12155300},
       {'adjclose': 173.3699951171875,
        'close': 173.3699951171875,
        'date': 1552483800,
        'formatted_date': '2019-03-13',
        'high': 174.02999877929688,
        'low': 172.1199951171875,
        'open': 172.32000732421875,
        'volume': 11973300},
       {'adjclose': 170.1699981689453,
        'close': 170.1699981689453,
        'date': 1552570200,
        'formatted_date': '2019-03-14',
        'high': 171.14999389648438,
        'low': 168.16000366210938,
        'open': 169.75999450683594,
        'volume': 18037400},
       {'adjclose': 165.97999572753906,
        'close': 165.97999572753906,
        'date': 1552656600,
        'formatted_date': '2019-03-15',
        'high': 167.5800018310547,
        'low': 162.50999450683594,
        'open': 167.16000366210938,
        'volume': 37135400},
       {'adjclose': 160.47000122070312,
        'close': 160.47000122070312,
        'date': 1552915800,
        'formatted_date': '2019-03-18',
        'high': 163.89999389648438,
        'low': 159.27999877929688,
        'open': 163.57000732421875,
        'volume': 37524200},
       {'adjclose': 161.57000732421875,
        'close': 161.57000732421875,
        'date': 1553002200,
        'formatted_date': '2019-03-19',
        'high': 163.82000732421875,
        'low': 160.82000732421875,
        'open': 161.47999572753906,
        'volume': 25611500},
       {'adjclose': 165.44000244140625,
        'close': 165.44000244140625,
        'date': 1553088600,
        'formatted_date': '2019-03-20',
        'high': 166.1199951171875,
        'low': 161.24000549316406,
        'open': 161.5,
        'volume': 20211500},
       {'adjclose': 166.0800018310547,
        'close': 166.0800018310547,
        'date': 1553175000,
        'formatted_date': '2019-03-21',
        'high': 166.38999938964844,
        'low': 163.75,
        'open': 164.88999938964844,
        'volume': 16223000},
       {'adjclose': 164.33999633789062,
        'close': 164.33999633789062,
        'date': 1553261400,
        'formatted_date': '2019-03-22',
        'high': 167.4199981689453,
        'low': 164.08999633789062,
        'open': 165.64999389648438,
        'volume': 16389200},
       {'adjclose': 166.2899932861328,
        'close': 166.2899932861328,
        'date': 1553520600,
        'formatted_date': '2019-03-25',
        'high': 166.5399932861328,
        'low': 162.0,
        'open': 163.0,
        'volume': 12631200},
       {'adjclose': 167.67999267578125,
        'close': 167.67999267578125,
        'date': 1553607000,
        'formatted_date': '2019-03-26',
        'high': 169.4499969482422,
        'low': 166.35000610351562,
        'open': 167.35000610351562,
        'volume': 15437900},
       {'adjclose': 165.8699951171875,
        'close': 165.8699951171875,
        'date': 1553693400,
        'formatted_date': '2019-03-27',
        'high': 168.94000244140625,
        'low': 164.7899932861328,
        'open': 167.85000610351562,
        'volume': 10620300},
       {'adjclose': 165.5500030517578,
        'close': 165.5500030517578,
        'date': 1553779800,
        'formatted_date': '2019-03-28',
        'high': 166.72000122070312,
        'low': 163.3300018310547,
        'open': 164.57000732421875,
        'volume': 10689200},
       {'adjclose': 166.69000244140625,
        'close': 166.69000244140625,
        'date': 1553866200,
        'formatted_date': '2019-03-29',
        'high': 167.19000244140625,
        'low': 164.80999755859375,
        'open': 166.38999938964844,
        'volume': 13455500},
       {'adjclose': 168.6999969482422,
        'close': 168.6999969482422,
        'date': 1554125400,
        'formatted_date': '2019-04-01',
        'high': 168.89999389648438,
        'low': 167.27999877929688,
        'open': 167.8300018310547,
        'volume': 10381500},
       {'adjclose': 174.1999969482422,
        'close': 174.1999969482422,
        'date': 1554211800,
        'formatted_date': '2019-04-02',
        'high': 174.89999389648438,
        'low': 169.5500030517578,
        'open': 170.13999938964844,
        'volume': 23946500},
       {'adjclose': 173.5399932861328,
        'close': 173.5399932861328,
        'date': 1554298200,
        'formatted_date': '2019-04-03',
        'high': 177.9600067138672,
        'low': 172.9499969482422,
        'open': 174.5,
        'volume': 27590100},
       {'adjclose': 176.02000427246094,
        'close': 176.02000427246094,
        'date': 1554384600,
        'formatted_date': '2019-04-04',
        'high': 178.0,
        'low': 175.52999877929688,
        'open': 176.02000427246094,
        'volume': 17847700},
       {'adjclose': 175.72000122070312,
        'close': 175.72000122070312,
        'date': 1554471000,
        'formatted_date': '2019-04-05',
        'high': 177.0,
        'low': 175.10000610351562,
        'open': 176.8800048828125,
        'volume': 9594100},
       {'adjclose': 174.92999267578125,
        'close': 174.92999267578125,
        'date': 1554730200,
        'formatted_date': '2019-04-08',
        'high': 175.5,
        'low': 174.22999572753906,
        'open': 175.2100067138672,
        'volume': 7297400},
       {'adjclose': 177.5800018310547,
        'close': 177.5800018310547,
        'date': 1554816600,
        'formatted_date': '2019-04-09',
        'high': 179.19000244140625,
        'low': 175.5500030517578,
        'open': 175.6199951171875,
        'volume': 19751000},
       {'adjclose': 177.82000732421875,
        'close': 177.82000732421875,
        'date': 1554903000,
        'formatted_date': '2019-04-10',
        'high': 178.7899932861328,
        'low': 176.5399932861328,
        'open': 178.17999267578125,
        'volume': 11701500},
       {'adjclose': 177.50999450683594,
        'close': 177.50999450683594,
        'date': 1554989400,
        'formatted_date': '2019-04-11',
        'high': 178.39999389648438,
        'low': 177.0,
        'open': 178.24000549316406,
        'volume': 8071000},
       {'adjclose': 179.10000610351562,
        'close': 179.10000610351562,
        'date': 1555075800,
        'formatted_date': '2019-04-12',
        'high': 179.6300048828125,
        'low': 177.9499969482422,
        'open': 178.0,
        'volume': 12329800},
       {'adjclose': 179.64999389648438,
        'close': 179.64999389648438,
        'date': 1555335000,
        'formatted_date': '2019-04-15',
        'high': 180.5,
        'low': 176.8699951171875,
        'open': 178.5,
        'volume': 10834800},
       {'adjclose': 178.8699951171875,
        'close': 178.8699951171875,
        'date': 1555421400,
        'formatted_date': '2019-04-16',
        'high': 180.1699981689453,
        'low': 178.3000030517578,
        'open': 179.0,
        'volume': 11215200},
       {'adjclose': 178.77999877929688,
        'close': 178.77999877929688,
        'date': 1555507800,
        'formatted_date': '2019-04-17',
        'high': 180.74000549316406,
        'low': 178.36000061035156,
        'open': 179.60000610351562,
        'volume': 9973700},
       {'adjclose': 178.27999877929688,
        'close': 178.27999877929688,
        'date': 1555594200,
        'formatted_date': '2019-04-18',
        'high': 178.8800048828125,
        'low': 177.33999633789062,
        'open': 178.8000030517578,
        'volume': 11655600},
       {'adjclose': 181.44000244140625,
        'close': 181.44000244140625,
        'date': 1555939800,
        'formatted_date': '2019-04-22',
        'high': 181.6699981689453,
        'low': 178.25,
        'open': 178.25,
        'volume': 13389900},
       {'adjclose': 183.77999877929688,
        'close': 183.77999877929688,
        'date': 1556026200,
        'formatted_date': '2019-04-23',
        'high': 184.22000122070312,
        'low': 181.47999572753906,
        'open': 182.74000549316406,
        'volume': 19954800},
       {'adjclose': 182.5800018310547,
        'close': 182.5800018310547,
        'date': 1556112600,
        'formatted_date': '2019-04-24',
        'high': 185.13999938964844,
        'low': 181.64999389648438,
        'open': 184.49000549316406,
        'volume': 37289900},
       {'adjclose': 193.25999450683594,
        'close': 193.25999450683594,
        'date': 1556199000,
        'formatted_date': '2019-04-25',
        'high': 198.47999572753906,
        'low': 192.1199951171875,
        'open': 196.97999572753906,
        'volume': 54148800},
       {'adjclose': 191.49000549316406,
        'close': 191.49000549316406,
        'date': 1556285400,
        'formatted_date': '2019-04-26',
        'high': 192.89999389648438,
        'low': 189.08999633789062,
        'open': 192.5,
        'volume': 22075000}],
      'timeZone': {'gmtOffset': -14400}},
     'NVDA': {'currency': 'USD',
      'eventsData': {'dividends': {'2018-05-23': {'amount': 0.15,
         'date': 1527082200,
         'formatted_date': '2018-05-23'},
        '2018-08-29': {'amount': 0.15,
         'date': 1535549400,
         'formatted_date': '2018-08-29'},
        '2018-11-29': {'amount': 0.16,
         'date': 1543501800,
         'formatted_date': '2018-11-29'},
        '2019-02-28': {'amount': 0.16,
         'date': 1551364200,
         'formatted_date': '2019-02-28'}}},
      'firstTradeDate': {'date': 917015400, 'formatted_date': '1999-01-22'},
      'instrumentType': 'EQUITY',
      'prices': [{'adjclose': 223.30502319335938,
        'close': 224.89999389648438,
        'date': 1525095000,
        'formatted_date': '2018-04-30',
        'high': 229.0,
        'low': 224.1199951171875,
        'open': 226.99000549316406,
        'volume': 8196100},
       {'adjclose': 225.52915954589844,
        'close': 227.13999938964844,
        'date': 1525181400,
        'formatted_date': '2018-05-01',
        'high': 227.25,
        'low': 222.1999969482422,
        'open': 224.57000732421875,
        'volume': 6344700},
       {'adjclose': 224.70501708984375,
        'close': 226.30999755859375,
        'date': 1525267800,
        'formatted_date': '2018-05-02',
        'high': 228.8000030517578,
        'low': 225.25,
        'open': 227.0,
        'volume': 6706200},
       {'adjclose': 231.33767700195312,
        'close': 232.99000549316406,
        'date': 1525354200,
        'formatted_date': '2018-05-03',
        'high': 234.0500030517578,
        'low': 225.77000427246094,
        'open': 227.60000610351562,
        'volume': 11078600},
       {'adjclose': 237.36460876464844,
        'close': 239.05999755859375,
        'date': 1525440600,
        'formatted_date': '2018-05-04',
        'high': 239.19000244140625,
        'low': 231.1300048828125,
        'open': 231.8300018310547,
        'volume': 10016500},
       {'adjclose': 246.9163818359375,
        'close': 248.67999267578125,
        'date': 1525699800,
        'formatted_date': '2018-05-07',
        'high': 250.99000549316406,
        'low': 242.88999938964844,
        'open': 243.2899932861328,
        'volume': 17190400},
       {'adjclose': 248.62417602539062,
        'close': 250.39999389648438,
        'date': 1525786200,
        'formatted_date': '2018-05-08',
        'high': 250.50999450683594,
        'low': 246.7100067138672,
        'open': 248.69000244140625,
        'volume': 12665400},
       {'adjclose': 253.9660186767578,
        'close': 255.77999877929688,
        'date': 1525872600,
        'formatted_date': '2018-05-09',
        'high': 255.8699951171875,
        'low': 250.11000061035156,
        'open': 251.2100067138672,
        'volume': 14919000},
       {'adjclose': 258.28515625,
        'close': 260.1300048828125,
        'date': 1525959000,
        'formatted_date': '2018-05-10',
        'high': 260.5,
        'low': 257.20001220703125,
        'open': 257.9200134277344,
        'volume': 24852000},
       {'adjclose': 252.7248992919922,
        'close': 254.52999877929688,
        'date': 1526045400,
        'formatted_date': '2018-05-11',
        'high': 259.7900085449219,
        'low': 250.5399932861328,
        'open': 252.77999877929688,
        'volume': 30361400},
       {'adjclose': 253.54901123046875,
        'close': 255.36000061035156,
        'date': 1526304600,
        'formatted_date': '2018-05-14',
        'high': 258.489990234375,
        'low': 254.39999389648438,
        'open': 256.07000732421875,
        'volume': 13078500},
       {'adjclose': 243.8185272216797,
        'close': 245.55999755859375,
        'date': 1526391000,
        'formatted_date': '2018-05-15',
        'high': 252.89999389648438,
        'low': 241.5,
        'open': 252.7899932861328,
        'volume': 24088200},
       {'adjclose': 244.26531982421875,
        'close': 246.00999450683594,
        'date': 1526477400,
        'formatted_date': '2018-05-16',
        'high': 248.52000427246094,
        'low': 242.50999450683594,
        'open': 244.0,
        'volume': 13845700},
       {'adjclose': 245.95326232910156,
        'close': 247.7100067138672,
        'date': 1526563800,
        'formatted_date': '2018-05-17',
        'high': 251.5,
        'low': 245.42999267578125,
        'open': 246.0800018310547,
        'volume': 12994600},
       {'adjclose': 244.19581604003906,
        'close': 245.94000244140625,
        'date': 1526650200,
        'formatted_date': '2018-05-18',
        'high': 252.3699951171875,
        'low': 245.74000549316406,
        'open': 249.80999755859375,
        'volume': 12092900},
       {'adjclose': 242.5078887939453,
        'close': 244.24000549316406,
        'date': 1526909400,
        'formatted_date': '2018-05-21',
        'high': 250.02999877929688,
        'low': 240.49000549316406,
        'open': 249.8800048828125,
        'volume': 16015600},
       {'adjclose': 240.97877502441406,
        'close': 242.6999969482422,
        'date': 1526995800,
        'formatted_date': '2018-05-22',
        'high': 245.8000030517578,
        'low': 240.25,
        'open': 244.77999877929688,
        'volume': 12956600},
       {'adjclose': 245.93646240234375,
        'close': 247.5399932861328,
        'date': 1527082200,
        'formatted_date': '2018-05-23',
        'high': 247.58999633789062,
        'low': 240.25,
        'open': 240.27999877929688,
        'volume': 11073900},
       {'adjclose': 246.0854949951172,
        'close': 247.69000244140625,
        'date': 1527168600,
        'formatted_date': '2018-05-24',
        'high': 249.39999389648438,
        'low': 245.24000549316406,
        'open': 247.38999938964844,
        'volume': 10934300},
       {'adjclose': 247.66519165039062,
        'close': 249.27999877929688,
        'date': 1527255000,
        'formatted_date': '2018-05-25',
        'high': 249.94000244140625,
        'low': 246.75999450683594,
        'open': 248.1999969482422,
        'volume': 7302800},
       {'adjclose': 246.97967529296875,
        'close': 248.58999633789062,
        'date': 1527600600,
        'formatted_date': '2018-05-29',
        'high': 251.33999633789062,
        'low': 246.6999969482422,
        'open': 248.5500030517578,
        'volume': 8817100},
       {'adjclose': 251.3511962890625,
        'close': 252.99000549316406,
        'date': 1527687000,
        'formatted_date': '2018-05-30',
        'high': 253.33999633789062,
        'low': 248.9499969482422,
        'open': 249.9499969482422,
        'volume': 9774900},
       {'adjclose': 250.5563201904297,
        'close': 252.19000244140625,
        'date': 1527773400,
        'formatted_date': '2018-05-31',
        'high': 255.1999969482422,
        'low': 251.27000427246094,
        'open': 251.6999969482422,
        'volume': 12346700},
       {'adjclose': 255.95115661621094,
        'close': 257.6199951171875,
        'date': 1527859800,
        'formatted_date': '2018-06-01',
        'high': 257.8699951171875,
        'low': 253.64999389648438,
        'open': 254.0,
        'volume': 10549200},
       {'adjclose': 263.1343078613281,
        'close': 264.8500061035156,
        'date': 1528119000,
        'formatted_date': '2018-06-04',
        'high': 265.739990234375,
        'low': 257.70001220703125,
        'open': 259.0,
        'volume': 16050600},
       {'adjclose': 263.35296630859375,
        'close': 265.07000732421875,
        'date': 1528205400,
        'formatted_date': '2018-06-05',
        'high': 266.5899963378906,
        'low': 263.1700134277344,
        'open': 264.9800109863281,
        'volume': 9792800},
       {'adjclose': 263.432373046875,
        'close': 265.1499938964844,
        'date': 1528291800,
        'formatted_date': '2018-06-06',
        'high': 265.2799987792969,
        'low': 260.7699890136719,
        'open': 261.42999267578125,
        'volume': 9283900},
       {'adjclose': 261.19696044921875,
        'close': 262.8999938964844,
        'date': 1528378200,
        'formatted_date': '2018-06-07',
        'high': 265.4800109863281,
        'low': 259.25,
        'open': 265.0,
        'volume': 9236200},
       {'adjclose': 260.5809631347656,
        'close': 262.2799987792969,
        'date': 1528464600,
        'formatted_date': '2018-06-08',
        'high': 264.0,
        'low': 259.20001220703125,
        'open': 259.9599914550781,
        'volume': 9011400},
       {'adjclose': 258.93170166015625,
        'close': 260.6199951171875,
        'date': 1528723800,
        'formatted_date': '2018-06-11',
        'high': 263.45001220703125,
        'low': 260.1000061035156,
        'open': 261.7699890136719,
        'volume': 6634300},
       {'adjclose': 260.8789978027344,
        'close': 262.5799865722656,
        'date': 1528810200,
        'formatted_date': '2018-06-12',
        'high': 263.07000732421875,
        'low': 259.6600036621094,
        'open': 261.69000244140625,
        'volume': 7979000},
       {'adjclose': 260.7001953125,
        'close': 262.3999938964844,
        'date': 1528896600,
        'formatted_date': '2018-06-13',
        'high': 265.6700134277344,
        'low': 262.0299987792969,
        'open': 262.6400146484375,
        'volume': 8455200},
       {'adjclose': 265.1809997558594,
        'close': 266.9100036621094,
        'date': 1528983000,
        'formatted_date': '2018-06-14',
        'high': 269.20001220703125,
        'low': 263.6199951171875,
        'open': 264.2200012207031,
        'volume': 10750400},
       {'adjclose': 263.54168701171875,
        'close': 265.260009765625,
        'date': 1529069400,
        'formatted_date': '2018-06-15',
        'high': 267.4800109863281,
        'low': 263.3500061035156,
        'open': 264.6000061035156,
        'volume': 10806500},
       {'adjclose': 263.3727722167969,
        'close': 265.0899963378906,
        'date': 1529328600,
        'formatted_date': '2018-06-18',
        'high': 265.79998779296875,
        'low': 262.3800048828125,
        'open': 263.4800109863281,
        'volume': 8906700},
       {'adjclose': 258.48468017578125,
        'close': 260.1700134277344,
        'date': 1529415000,
        'formatted_date': '2018-06-19',
        'high': 263.6400146484375,
        'low': 255.02000427246094,
        'open': 260.9200134277344,
        'volume': 14873300},
       {'adjclose': 260.6108093261719,
        'close': 262.30999755859375,
        'date': 1529501400,
        'formatted_date': '2018-06-20',
        'high': 264.45001220703125,
        'low': 260.2799987792969,
        'open': 261.8299865722656,
        'volume': 9244500},
       {'adjclose': 255.44447326660156,
        'close': 257.1099853515625,
        'date': 1529587800,
        'formatted_date': '2018-06-21',
        'high': 264.3399963378906,
        'low': 256.79998779296875,
        'open': 263.6000061035156,
        'volume': 8987900},
       {'adjclose': 249.32437133789062,
        'close': 250.9499969482422,
        'date': 1529674200,
        'formatted_date': '2018-06-22',
        'high': 258.489990234375,
        'low': 250.3300018310547,
        'open': 257.95001220703125,
        'volume': 10854000},
       {'adjclose': 237.57101440429688,
        'close': 239.1199951171875,
        'date': 1529933400,
        'formatted_date': '2018-06-25',
        'high': 246.8000030517578,
        'low': 235.5399932861328,
        'open': 246.64999389648438,
        'volume': 16645400},
       {'adjclose': 240.4224090576172,
        'close': 241.99000549316406,
        'date': 1530019800,
        'formatted_date': '2018-06-26',
        'high': 245.64999389648438,
        'low': 239.91000366210938,
        'open': 243.6999969482422,
        'volume': 11972100},
       {'adjclose': 234.19302368164062,
        'close': 235.72000122070312,
        'date': 1530106200,
        'formatted_date': '2018-06-27',
        'high': 246.42999267578125,
        'low': 235.5,
        'open': 243.75,
        'volume': 11347300},
       {'adjclose': 239.29974365234375,
        'close': 240.86000061035156,
        'date': 1530192600,
        'formatted_date': '2018-06-28',
        'high': 241.33999633789062,
        'low': 235.00999450683594,
        'open': 235.32000732421875,
        'volume': 8450300},
       {'adjclose': 235.36538696289062,
        'close': 236.89999389648438,
        'date': 1530279000,
        'formatted_date': '2018-06-29',
        'high': 244.0,
        'low': 236.85000610351562,
        'open': 243.49000549316406,
        'volume': 9807500},
       {'adjclose': 240.6707763671875,
        'close': 242.24000549316406,
        'date': 1530538200,
        'formatted_date': '2018-07-02',
        'high': 242.38999938964844,
        'low': 233.25999450683594,
        'open': 234.08999633789062,
        'volume': 8939300},
       {'adjclose': 235.30577087402344,
        'close': 236.83999633789062,
        'date': 1530624600,
        'formatted_date': '2018-07-03',
        'high': 243.8800048828125,
        'low': 236.5,
        'open': 243.63999938964844,
        'volume': 5568300},
       {'adjclose': 241.15760803222656,
        'close': 242.72999572753906,
        'date': 1530797400,
        'formatted_date': '2018-07-05',
        'high': 242.92999267578125,
        'low': 237.5,
        'open': 239.07000732421875,
        'volume': 7655400},
       {'adjclose': 245.72784423828125,
        'close': 247.3300018310547,
        'date': 1530883800,
        'formatted_date': '2018-07-06',
        'high': 247.6699981689453,
        'low': 240.8800048828125,
        'open': 241.74000549316406,
        'volume': 7408800},
       {'adjclose': 247.63539123535156,
        'close': 249.25,
        'date': 1531143000,
        'formatted_date': '2018-07-09',
        'high': 250.72000122070312,
        'low': 246.07000732421875,
        'open': 250.3300018310547,
        'volume': 7597000},
       {'adjclose': 251.60946655273438,
        'close': 253.25,
        'date': 1531229400,
        'formatted_date': '2018-07-10',
        'high': 254.13999938964844,
        'low': 248.1199951171875,
        'open': 249.75,
        'volume': 9000400},
       {'adjclose': 245.92654418945312,
        'close': 247.52999877929688,
        'date': 1531315800,
        'formatted_date': '2018-07-11',
        'high': 250.89999389648438,
        'low': 247.10000610351562,
        'open': 249.5,
        'volume': 9187700},
       {'adjclose': 249.60255432128906,
        'close': 251.22999572753906,
        'date': 1531402200,
        'formatted_date': '2018-07-12',
        'high': 253.1699981689453,
        'low': 248.9600067138672,
        'open': 249.36000061035156,
        'volume': 8637700},
       {'adjclose': 247.70494079589844,
        'close': 249.32000732421875,
        'date': 1531488600,
        'formatted_date': '2018-07-13',
        'high': 251.97999572753906,
        'low': 247.6199951171875,
        'open': 251.97999572753906,
        'volume': 6174700},
       {'adjclose': 246.59219360351562,
        'close': 248.1999969482422,
        'date': 1531747800,
        'formatted_date': '2018-07-16',
        'high': 250.33999633789062,
        'low': 247.6999969482422,
        'open': 248.1999969482422,
        'volume': 4925900},
       {'adjclose': 252.04664611816406,
        'close': 253.69000244140625,
        'date': 1531834200,
        'formatted_date': '2018-07-17',
        'high': 254.3000030517578,
        'low': 245.17999267578125,
        'open': 246.2100067138672,
        'volume': 9053400},
       {'adjclose': 250.0695037841797,
        'close': 251.6999969482422,
        'date': 1531920600,
        'formatted_date': '2018-07-18',
        'high': 253.9499969482422,
        'low': 249.63999938964844,
        'open': 253.38999938964844,
        'volume': 6941000},
       {'adjclose': 250.3973846435547,
        'close': 252.02999877929688,
        'date': 1532007000,
        'formatted_date': '2018-07-19',
        'high': 253.38999938964844,
        'low': 250.3300018310547,
        'open': 250.94000244140625,
        'volume': 5893800},
       {'adjclose': 249.2647705078125,
        'close': 250.88999938964844,
        'date': 1532093400,
        'formatted_date': '2018-07-20',
        'high': 253.5,
        'low': 250.4499969482422,
        'open': 251.92999267578125,
        'volume': 5558800},
       {'adjclose': 247.7943572998047,
        'close': 249.41000366210938,
        'date': 1532352600,
        'formatted_date': '2018-07-23',
        'high': 249.88999938964844,
        'low': 243.27999877929688,
        'open': 249.82000732421875,
        'volume': 7539600},
       {'adjclose': 247.09890747070312,
        'close': 248.7100067138672,
        'date': 1532439000,
        'formatted_date': '2018-07-24',
        'high': 254.85000610351562,
        'low': 248.0,
        'open': 251.35000610351562,
        'volume': 8865500},
       {'adjclose': 250.23843383789062,
        'close': 251.8699951171875,
        'date': 1532525400,
        'formatted_date': '2018-07-25',
        'high': 252.3800048828125,
        'low': 246.75,
        'open': 249.08999633789062,
        'volume': 7977800},
       {'adjclose': 253.18917846679688,
        'close': 254.83999633789062,
        'date': 1532611800,
        'formatted_date': '2018-07-26',
        'high': 256.3299865722656,
        'low': 250.3800048828125,
        'open': 251.05999755859375,
        'volume': 8128100},
       {'adjclose': 250.387451171875,
        'close': 252.02000427246094,
        'date': 1532698200,
        'formatted_date': '2018-07-27',
        'high': 256.6000061035156,
        'low': 249.83999633789062,
        'open': 256.32000732421875,
        'volume': 7385500},
       {'adjclose': 242.54856872558594,
        'close': 244.1300048828125,
        'date': 1532957400,
        'formatted_date': '2018-07-30',
        'high': 252.8300018310547,
        'low': 242.72000122070312,
        'open': 252.58999633789062,
        'volume': 8508500},
       {'adjclose': 243.27381896972656,
        'close': 244.86000061035156,
        'date': 1533043800,
        'formatted_date': '2018-07-31',
        'high': 247.8800048828125,
        'low': 242.13999938964844,
        'open': 243.7100067138672,
        'volume': 7099700},
       {'adjclose': 244.87339782714844,
        'close': 246.47000122070312,
        'date': 1533130200,
        'formatted_date': '2018-08-01',
        'high': 248.36000061035156,
        'low': 243.88999938964844,
        'open': 246.1300048828125,
        'volume': 7088900},
       {'adjclose': 248.9965057373047,
        'close': 250.6199951171875,
        'date': 1533216600,
        'formatted_date': '2018-08-02',
        'high': 250.77999877929688,
        'low': 241.2100067138672,
        'open': 243.58999633789062,
        'volume': 6741700},
       {'adjclose': 250.46693420410156,
        'close': 252.10000610351562,
        'date': 1533303000,
        'formatted_date': '2018-08-03',
        'high': 253.05999755859375,
        'low': 250.92999267578125,
        'open': 251.61000061035156,
        'volume': 5357200},
       {'adjclose': 252.38442993164062,
        'close': 254.02999877929688,
        'date': 1533562200,
        'formatted_date': '2018-08-06',
        'high': 254.1699981689453,
        'low': 249.7100067138672,
        'open': 251.58999633789062,
        'volume': 5187700},
       {'adjclose': 255.2855224609375,
        'close': 256.95001220703125,
        'date': 1533648600,
        'formatted_date': '2018-08-07',
        'high': 257.70001220703125,
        'low': 254.9199981689453,
        'open': 256.0,
        'volume': 6453300},
       {'adjclose': 256.74603271484375,
        'close': 258.4200134277344,
        'date': 1533735000,
        'formatted_date': '2018-08-08',
        'high': 260.239990234375,
        'low': 255.58999633789062,
        'open': 257.0,
        'volume': 6552500},
       {'adjclose': 254.79869079589844,
        'close': 256.4599914550781,
        'date': 1533821400,
        'formatted_date': '2018-08-09',
        'high': 259.25,
        'low': 256.1499938964844,
        'open': 259.1400146484375,
        'volume': 5107000},
       {'adjclose': 253.1394805908203,
        'close': 254.7899932861328,
        'date': 1533907800,
        'formatted_date': '2018-08-10',
        'high': 256.1000061035156,
        'low': 252.6999969482422,
        'open': 253.14999389648438,
        'volume': 6409900},
       {'adjclose': 254.4608917236328,
        'close': 256.1199951171875,
        'date': 1534167000,
        'formatted_date': '2018-08-13',
        'high': 261.0,
        'low': 255.07000732421875,
        'open': 255.13999938964844,
        'volume': 9380200},
       {'adjclose': 259.7364807128906,
        'close': 261.42999267578125,
        'date': 1534253400,
        'formatted_date': '2018-08-14',
        'high': 262.0,
        'low': 257.0199890136719,
        'open': 260.3800048828125,
        'volume': 11655500},
       {'adjclose': 257.4017333984375,
        'close': 259.0799865722656,
        'date': 1534339800,
        'formatted_date': '2018-08-15',
        'high': 263.6400146484375,
        'low': 255.89999389648438,
        'open': 262.2699890136719,
        'volume': 14778400},
       {'adjclose': 255.77230834960938,
        'close': 257.44000244140625,
        'date': 1534426200,
        'formatted_date': '2018-08-16',
        'high': 262.0,
        'low': 255.00999450683594,
        'open': 261.8999938964844,
        'volume': 20031500},
       {'adjclose': 243.23410034179688,
        'close': 244.82000732421875,
        'date': 1534512600,
        'formatted_date': '2018-08-17',
        'high': 252.97000122070312,
        'low': 243.72999572753906,
        'open': 252.94000244140625,
        'volume': 28579700},
       {'adjclose': 246.23452758789062,
        'close': 247.83999633789062,
        'date': 1534771800,
        'formatted_date': '2018-08-20',
        'high': 253.1999969482422,
        'low': 238.72000122070312,
        'open': 243.17999267578125,
        'volume': 21359700},
       {'adjclose': 251.67901611328125,
        'close': 253.32000732421875,
        'date': 1534858200,
        'formatted_date': '2018-08-21',
        'high': 253.5,
        'low': 247.6999969482422,
        'open': 248.5,
        'volume': 16849700},
       {'adjclose': 261.1174621582031,
        'close': 262.82000732421875,
        'date': 1534944600,
        'formatted_date': '2018-08-22',
        'high': 263.0199890136719,
        'low': 251.86000061035156,
        'open': 252.0,
        'volume': 18746400},
       {'adjclose': 265.1114501953125,
        'close': 266.8399963378906,
        'date': 1535031000,
        'formatted_date': '2018-08-23',
        'high': 269.4800109863281,
        'low': 260.70001220703125,
        'open': 261.260009765625,
        'volume': 18017100},
       {'adjclose': 270.45660400390625,
        'close': 272.2200012207031,
        'date': 1535117400,
        'formatted_date': '2018-08-24',
        'high': 272.80999755859375,
        'low': 267.0,
        'open': 267.17999267578125,
        'volume': 13287800},
       {'adjclose': 274.11279296875,
        'close': 275.8999938964844,
        'date': 1535376600,
        'formatted_date': '2018-08-27',
        'high': 278.8999938964844,
        'low': 272.1499938964844,
        'open': 273.4200134277344,
        'volume': 12644400},
       {'adjclose': 272.6025695800781,
        'close': 274.3800048828125,
        'date': 1535463000,
        'formatted_date': '2018-08-28',
        'high': 276.5799865722656,
        'low': 269.5299987792969,
        'open': 275.6600036621094,
        'volume': 11884600},
       {'adjclose': 276.8373107910156,
        'close': 278.489990234375,
        'date': 1535549400,
        'formatted_date': '2018-08-29',
        'high': 279.5,
        'low': 273.0799865722656,
        'open': 273.9200134277344,
        'volume': 10502700},
       {'adjclose': 276.1613464355469,
        'close': 277.80999755859375,
        'date': 1535635800,
        'formatted_date': '2018-08-30',
        'high': 281.7200012207031,
        'low': 276.32000732421875,
        'open': 277.2300109863281,
        'volume': 8665200},
       {'adjclose': 279.01434326171875,
        'close': 280.67999267578125,
        'date': 1535722200,
        'formatted_date': '2018-08-31',
        'high': 281.20001220703125,
        'low': 276.6000061035156,
        'open': 277.0,
        'volume': 7664800},
       {'adjclose': 282.0163879394531,
        'close': 283.70001220703125,
        'date': 1536067800,
        'formatted_date': '2018-09-04',
        'high': 285.2200012207031,
        'low': 279.0,
        'open': 280.1499938964844,
        'volume': 9793000},
       {'adjclose': 276.76776123046875,
        'close': 278.4200134277344,
        'date': 1536154200,
        'formatted_date': '2018-09-05',
        'high': 284.4200134277344,
        'low': 275.1499938964844,
        'open': 282.989990234375,
        'volume': 9828900},
       {'adjclose': 271.1015625,
        'close': 272.7200012207031,
        'date': 1536240600,
        'formatted_date': '2018-09-06',
        'high': 277.8599853515625,
        'low': 271.3900146484375,
        'open': 277.760009765625,
        'volume': 8069900},
       {'adjclose': 270.2466735839844,
        'close': 271.8599853515625,
        'date': 1536327000,
        'formatted_date': '2018-09-07',
        'high': 276.92999267578125,
        'low': 267.19000244140625,
        'open': 269.0,
        'volume': 7385500},
       {'adjclose': 273.0996398925781,
        'close': 274.7300109863281,
        'date': 1536586200,
        'formatted_date': '2018-09-10',
        'high': 275.92999267578125,
        'low': 271.0,
        'open': 272.7699890136719,
        'volume': 5503500},
       {'adjclose': 271.1810607910156,
        'close': 272.79998779296875,
        'date': 1536672600,
        'formatted_date': '2018-09-11',
        'high': 276.3999938964844,
        'low': 272.0199890136719,
        'open': 272.8599853515625,
        'volume': 6077800},
       {'adjclose': 266.6083679199219,
        'close': 268.20001220703125,
        'date': 1536759000,
        'formatted_date': '2018-09-12',
        'high': 271.9800109863281,
        'low': 261.9200134277344,
        'open': 271.19000244140625,
        'volume': 10477300},
       {'adjclose': 269.7297668457031,
        'close': 271.3399963378906,
        'date': 1536845400,
        'formatted_date': '2018-09-13',
        'high': 275.0,
        'low': 270.1600036621094,
        'open': 270.8599853515625,
        'volume': 7638400},
       {'adjclose': 274.78955078125,
        'close': 276.42999267578125,
        'date': 1536931800,
        'formatted_date': '2018-09-14',
        'high': 279.1000061035156,
        'low': 273.5,
        'open': 274.989990234375,
        'volume': 9673400},
       {'adjclose': 272.3043518066406,
        'close': 273.92999267578125,
        'date': 1537191000,
        'formatted_date': '2018-09-17',
        'high': 277.3800048828125,
        'low': 273.1499938964844,
        'open': 275.3999938964844,
        'volume': 5138200},
       {'adjclose': 269.41162109375,
        'close': 271.0199890136719,
        'date': 1537277400,
        'formatted_date': '2018-09-18',
        'high': 278.239990234375,
        'low': 270.75,
        'open': 274.0899963378906,
        'volume': 7488000},
       {'adjclose': 270.365966796875,
        'close': 271.9800109863281,
        'date': 1537363800,
        'formatted_date': '2018-09-19',
        'high': 272.70001220703125,
        'low': 268.25,
        'open': 270.2699890136719,
        'volume': 5621500},
       {'adjclose': 264.69976806640625,
        'close': 266.2799987792969,
        'date': 1537450200,
        'formatted_date': '2018-09-20',
        'high': 268.760009765625,
        'low': 264.1000061035156,
        'open': 267.04998779296875,
        'volume': 10764600},
       {'adjclose': 261.8865966796875,
        'close': 263.45001220703125,
        'date': 1537536600,
        'formatted_date': '2018-09-21',
        'high': 268.6000061035156,
        'low': 262.1099853515625,
        'open': 266.760009765625,
        'volume': 10878200},
       {'adjclose': 264.12322998046875,
        'close': 265.70001220703125,
        'date': 1537795800,
        'formatted_date': '2018-09-24',
        'high': 265.8399963378906,
        'low': 258.67999267578125,
        'open': 262.20001220703125,
        'volume': 7347800},
       {'adjclose': 266.817138671875,
        'close': 268.4100036621094,
        'date': 1537882200,
        'formatted_date': '2018-09-25',
        'high': 269.4200134277344,
        'low': 264.9100036621094,
        'open': 268.3699951171875,
        'volume': 7009700},
       {'adjclose': 265.33599853515625,
        'close': 266.9200134277344,
        'date': 1537968600,
        'formatted_date': '2018-09-26',
        'high': 270.239990234375,
        'low': 266.2799987792969,
        'open': 268.6099853515625,
        'volume': 6713700},
       {'adjclose': 265.8131408691406,
        'close': 267.3999938964844,
        'date': 1538055000,
        'formatted_date': '2018-09-27',
        'high': 269.20001220703125,
        'low': 266.1300048828125,
        'open': 268.3399963378906,
        'volume': 5360700},
       {'adjclose': 279.3523254394531,
        'close': 281.0199890136719,
        'date': 1538141400,
        'formatted_date': '2018-09-28',
        'high': 281.9200134277344,
        'low': 271.6000061035156,
        'open': 272.7300109863281,
        'volume': 17734900},
       {'adjclose': 287.642822265625,
        'close': 289.3599853515625,
        'date': 1538400600,
        'formatted_date': '2018-10-01',
        'high': 292.05999755859375,
        'low': 282.6000061035156,
        'open': 284.1600036621094,
        'volume': 15551500},
       {'adjclose': 284.7799072265625,
        'close': 286.4800109863281,
        'date': 1538487000,
        'formatted_date': '2018-10-02',
        'high': 292.760009765625,
        'low': 285.5799865722656,
        'open': 288.25,
        'volume': 9599100},
       {'adjclose': 285.02838134765625,
        'close': 286.7300109863281,
        'date': 1538573400,
        'formatted_date': '2018-10-03',
        'high': 289.6199951171875,
        'low': 282.5299987792969,
        'open': 289.32000732421875,
        'volume': 8013800},
       {'adjclose': 277.6325988769531,
        'close': 279.2900085449219,
        'date': 1538659800,
        'formatted_date': '2018-10-04',
        'high': 286.25,
        'low': 276.17999267578125,
        'open': 285.2699890136719,
        'volume': 9780500},
       {'adjclose': 268.2585144042969,
        'close': 269.8599853515625,
        'date': 1538746200,
        'formatted_date': '2018-10-05',
        'high': 280.79998779296875,
        'low': 267.5400085449219,
        'open': 278.2900085449219,
        'volume': 10665900},
       {'adjclose': 264.1927795410156,
        'close': 265.7699890136719,
        'date': 1539005400,
        'formatted_date': '2018-10-08',
        'high': 271.1600036621094,
        'low': 260.0799865722656,
        'open': 266.5,
        'volume': 10215300},
       {'adjclose': 263.9642028808594,
        'close': 265.5400085449219,
        'date': 1539091800,
        'formatted_date': '2018-10-09',
        'high': 268.760009765625,
        'low': 262.79998779296875,
        'open': 264.94000244140625,
        'volume': 6837500},
       {'adjclose': 244.23196411132812,
        'close': 245.69000244140625,
        'date': 1539178200,
        'formatted_date': '2018-10-10',
        'high': 263.1099853515625,
        'low': 245.60000610351562,
        'open': 261.260009765625,
        'volume': 17123500},
       {'adjclose': 233.73463439941406,
        'close': 235.1300048828125,
        'date': 1539264600,
        'formatted_date': '2018-10-11',
        'high': 247.55999755859375,
        'low': 234.25999450683594,
        'open': 242.1699981689453,
        'volume': 18135900},
       {'adjclose': 245.07691955566406,
        'close': 246.5399932861328,
        'date': 1539351000,
        'formatted_date': '2018-10-12',
        'high': 249.5399932861328,
        'low': 239.64999389648438,
        'open': 245.50999450683594,
        'volume': 15205900},
       {'adjclose': 233.983154296875,
        'close': 235.3800048828125,
        'date': 1539610200,
        'formatted_date': '2018-10-15',
        'high': 246.0,
        'low': 235.33999633789062,
        'open': 246.0,
        'volume': 11244000},
       {'adjclose': 244.37115478515625,
        'close': 245.8300018310547,
        'date': 1539696600,
        'formatted_date': '2018-10-16',
        'high': 246.27999877929688,
        'low': 237.94000244140625,
        'open': 239.92999267578125,
        'volume': 10217800},
       {'adjclose': 241.61756896972656,
        'close': 243.05999755859375,
        'date': 1539783000,
        'formatted_date': '2018-10-17',
        'high': 249.8800048828125,
        'low': 241.0800018310547,
        'open': 248.33999633789062,
        'volume': 8241700},
       {'adjclose': 238.10853576660156,
        'close': 239.52999877929688,
        'date': 1539869400,
        'formatted_date': '2018-10-18',
        'high': 247.41000366210938,
        'low': 237.08999633789062,
        'open': 245.86000061035156,
        'volume': 13100500},
       {'adjclose': 227.8100128173828,
        'close': 229.1699981689453,
        'date': 1539955800,
        'formatted_date': '2018-10-19',
        'high': 242.5500030517578,
        'low': 227.6999969482422,
        'open': 241.75999450683594,
        'volume': 15340200},
       {'adjclose': 229.8478546142578,
        'close': 231.22000122070312,
        'date': 1540215000,
        'formatted_date': '2018-10-22',
        'high': 235.32000732421875,
        'low': 227.07000732421875,
        'open': 231.27999877929688,
        'volume': 9221100},
       {'adjclose': 219.74813842773438,
        'close': 221.05999755859375,
        'date': 1540301400,
        'formatted_date': '2018-10-23',
        'high': 224.19000244140625,
        'low': 216.7100067138672,
        'open': 220.42999267578125,
        'volume': 15660900},
       {'adjclose': 198.2266082763672,
        'close': 199.41000366210938,
        'date': 1540387800,
        'formatted_date': '2018-10-24',
        'high': 221.38999938964844,
        'low': 198.85000610351562,
        'open': 219.50999450683594,
        'volume': 22107200},
       {'adjclose': 206.6065673828125,
        'close': 207.83999633789062,
        'date': 1540474200,
        'formatted_date': '2018-10-25',
        'high': 209.75,
        'low': 193.67999267578125,
        'open': 195.47000122070312,
        'volume': 23793000},
       {'adjclose': 197.11325073242188,
        'close': 198.2899932861328,
        'date': 1540560600,
        'formatted_date': '2018-10-26',
        'high': 204.83999633789062,
        'low': 193.1199951171875,
        'open': 198.30999755859375,
        'volume': 16619600},
       {'adjclose': 184.51844787597656,
        'close': 185.6199951171875,
        'date': 1540819800,
        'formatted_date': '2018-10-29',
        'high': 204.1300048828125,
        'low': 176.00999450683594,
        'open': 203.99000549316406,
        'volume': 18950400},
       {'adjclose': 201.79530334472656,
        'close': 203.0,
        'date': 1540906200,
        'formatted_date': '2018-10-30',
        'high': 203.39999389648438,
        'low': 185.6199951171875,
        'open': 186.5500030517578,
        'volume': 20179800},
       {'adjclose': 209.578857421875,
        'close': 210.8300018310547,
        'date': 1540992600,
        'formatted_date': '2018-10-31',
        'high': 212.58999633789062,
        'low': 204.00999450683594,
        'open': 209.64999389648438,
        'volume': 18644300},
       {'adjclose': 216.8156280517578,
        'close': 218.11000061035156,
        'date': 1541079000,
        'formatted_date': '2018-11-01',
        'high': 218.49000549316406,
        'low': 207.19000244140625,
        'open': 212.3000030517578,
        'volume': 14163200},
       {'adjclose': 213.64456176757812,
        'close': 214.9199981689453,
        'date': 1541165400,
        'formatted_date': '2018-11-02',
        'high': 222.0,
        'low': 210.2100067138672,
        'open': 217.72999572753906,
        'volume': 11324000},
       {'adjclose': 210.51327514648438,
        'close': 211.77000427246094,
        'date': 1541428200,
        'formatted_date': '2018-11-05',
        'high': 215.3300018310547,
        'low': 205.27999877929688,
        'open': 214.38999938964844,
        'volume': 9483300},
       {'adjclose': 209.8074951171875,
        'close': 211.05999755859375,
        'date': 1541514600,
        'formatted_date': '2018-11-06',
        'high': 214.85000610351562,
        'low': 209.55999755859375,
        'open': 211.4499969482422,
        'volume': 7475300},
       {'adjclose': 212.52127075195312,
        'close': 213.7899932861328,
        'date': 1541601000,
        'formatted_date': '2018-11-07',
        'high': 217.41000366210938,
        'low': 211.17999267578125,
        'open': 213.75,
        'volume': 12095300},
       {'adjclose': 204.767578125,
        'close': 205.99000549316406,
        'date': 1541687400,
        'formatted_date': '2018-11-08',
        'high': 211.42999267578125,
        'low': 203.8300018310547,
        'open': 211.39999389648438,
        'volume': 12783800},
       {'adjclose': 204.449462890625,
        'close': 205.6699981689453,
        'date': 1541773800,
        'formatted_date': '2018-11-09',
        'high': 209.32000732421875,
        'low': 201.0399932861328,
        'open': 202.39999389648438,
        'volume': 10331000},
       {'adjclose': 188.41519165039062,
        'close': 189.5399932861328,
        'date': 1542033000,
        'formatted_date': '2018-11-12',
        'high': 202.8699951171875,
        'low': 188.66000366210938,
        'open': 201.97999572753906,
        'volume': 15427900},
       {'adjclose': 198.12721252441406,
        'close': 199.30999755859375,
        'date': 1542119400,
        'formatted_date': '2018-11-13',
        'high': 204.2100067138672,
        'low': 193.24000549316406,
        'open': 193.49000549316406,
        'volume': 16117800},
       {'adjclose': 196.01979064941406,
        'close': 197.19000244140625,
        'date': 1542205800,
        'formatted_date': '2018-11-14',
        'high': 206.8800048828125,
        'low': 192.8300018310547,
        'open': 206.3000030517578,
        'volume': 13164500},
       {'adjclose': 201.1889190673828,
        'close': 202.38999938964844,
        'date': 1542292200,
        'formatted_date': '2018-11-15',
        'high': 205.3000030517578,
        'low': 195.5,
        'open': 196.9499969482422,
        'volume': 21017700},
       {'adjclose': 163.4541778564453,
        'close': 164.42999267578125,
        'date': 1542378600,
        'formatted_date': '2018-11-16',
        'high': 170.66000366210938,
        'low': 161.61000061035156,
        'open': 163.32000732421875,
        'volume': 49088000},
       {'adjclose': 143.84127807617188,
        'close': 144.6999969482422,
        'date': 1542637800,
        'formatted_date': '2018-11-19',
        'high': 161.82000732421875,
        'low': 144.6300048828125,
        'open': 161.7899932861328,
        'volume': 42445500},
       {'adjclose': 148.19529724121094,
        'close': 149.0800018310547,
        'date': 1542724200,
        'formatted_date': '2018-11-20',
        'high': 154.25999450683594,
        'low': 133.30999755859375,
        'open': 134.05999755859375,
        'volume': 42300800},
       {'adjclose': 143.8512420654297,
        'close': 144.7100067138672,
        'date': 1542810600,
        'formatted_date': '2018-11-21',
        'high': 155.3000030517578,
        'low': 143.61000061035156,
        'open': 154.6199951171875,
        'volume': 25637400},
       {'adjclose': 144.13951110839844,
        'close': 145.0,
        'date': 1542983400,
        'formatted_date': '2018-11-23',
        'high': 149.58999633789062,
        'low': 142.7899932861328,
        'open': 143.30999755859375,
        'volume': 10299200},
       {'adjclose': 152.14173889160156,
        'close': 153.0500030517578,
        'date': 1543242600,
        'formatted_date': '2018-11-26',
        'high': 153.47000122070312,
        'low': 146.55999755859375,
        'open': 149.88999938964844,
        'volume': 20370800},
       {'adjclose': 152.8177032470703,
        'close': 153.72999572753906,
        'date': 1543329000,
        'formatted_date': '2018-11-27',
        'high': 157.00999450683594,
        'low': 150.5500030517578,
        'open': 152.0,
        'volume': 18451500},
       {'adjclose': 159.12010192871094,
        'close': 160.07000732421875,
        'date': 1543415400,
        'formatted_date': '2018-11-28',
        'high': 160.27999877929688,
        'low': 153.1300048828125,
        'open': 158.47999572753906,
        'volume': 20113100},
       {'adjclose': 156.58267211914062,
        'close': 157.36000061035156,
        'date': 1543501800,
        'formatted_date': '2018-11-29',
        'high': 161.5,
        'low': 156.13999938964844,
        'open': 160.0,
        'volume': 13729300},
       {'adjclose': 162.6226806640625,
        'close': 163.42999267578125,
        'date': 1543588200,
        'formatted_date': '2018-11-30',
        'high': 163.86000061035156,
        'low': 155.72000122070312,
        'open': 157.75,
        'volume': 18239100},
       {'adjclose': 169.20004272460938,
        'close': 170.0399932861328,
        'date': 1543847400,
        'formatted_date': '2018-12-03',
        'high': 174.67999267578125,
        'low': 167.33999633789062,
        'open': 172.60000610351562,
        'volume': 22270100},
       {'adjclose': 156.3339080810547,
        'close': 157.11000061035156,
        'date': 1543933800,
        'formatted_date': '2018-12-04',
        'high': 168.44000244140625,
        'low': 156.5,
        'open': 168.24000549316406,
        'volume': 20302800},
       {'adjclose': 157.50807189941406,
        'close': 158.2899932861328,
        'date': 1544106600,
        'formatted_date': '2018-12-06',
        'high': 158.49000549316406,
        'low': 150.80999755859375,
        'open': 151.44000244140625,
        'volume': 17307700},
       {'adjclose': 146.88084411621094,
        'close': 147.61000061035156,
        'date': 1544193000,
        'formatted_date': '2018-12-07',
        'high': 158.8699951171875,
        'low': 145.6199951171875,
        'open': 158.4600067138672,
        'volume': 17041900},
       {'adjclose': 151.10984802246094,
        'close': 151.86000061035156,
        'date': 1544452200,
        'formatted_date': '2018-12-10',
        'high': 152.86000061035156,
        'low': 145.64999389648438,
        'open': 145.8000030517578,
        'volume': 15736800},
       {'adjclose': 147.45797729492188,
        'close': 148.19000244140625,
        'date': 1544538600,
        'formatted_date': '2018-12-11',
        'high': 155.88999938964844,
        'low': 145.0,
        'open': 155.55999755859375,
        'volume': 16797800},
       {'adjclose': 148.1644744873047,
        'close': 148.89999389648438,
        'date': 1544625000,
        'formatted_date': '2018-12-12',
        'high': 152.77999877929688,
        'low': 144.82000732421875,
        'open': 148.4199981689453,
        'volume': 16353400},
       {'adjclose': 148.1544952392578,
        'close': 148.88999938964844,
        'date': 1544711400,
        'formatted_date': '2018-12-13',
        'high': 153.3800048828125,
        'low': 147.44000244140625,
        'open': 150.7899932861328,
        'volume': 11784600},
       {'adjclose': 145.7265625,
        'close': 146.4499969482422,
        'date': 1544797800,
        'formatted_date': '2018-12-14',
        'high': 150.58999633789062,
        'low': 145.5,
        'open': 147.2100067138672,
        'volume': 11795500},
       {'adjclose': 142.8707275390625,
        'close': 143.5800018310547,
        'date': 1545057000,
        'formatted_date': '2018-12-17',
        'high': 148.14999389648438,
        'low': 141.24000549316406,
        'open': 145.24000549316406,
        'volume': 16571700},
       {'adjclose': 146.21414184570312,
        'close': 146.94000244140625,
        'date': 1545143400,
        'formatted_date': '2018-12-18',
        'high': 150.3300018310547,
        'low': 144.25,
        'open': 145.35000610351562,
        'volume': 14109300},
       {'adjclose': 137.8258056640625,
        'close': 138.50999450683594,
        'date': 1545229800,
        'formatted_date': '2018-12-19',
        'high': 147.74000549316406,
        'low': 136.42999267578125,
        'open': 145.5800018310547,
        'volume': 18634100},
       {'adjclose': 134.43263244628906,
        'close': 135.10000610351562,
        'date': 1545316200,
        'formatted_date': '2018-12-20',
        'high': 141.8000030517578,
        'low': 132.69000244140625,
        'open': 138.1699981689453,
        'volume': 18739700},
       {'adjclose': 128.9299774169922,
        'close': 129.57000732421875,
        'date': 1545402600,
        'formatted_date': '2018-12-21',
        'high': 137.5,
        'low': 128.4600067138672,
        'open': 136.1699981689453,
        'volume': 21593500},
       {'adjclose': 126.45225524902344,
        'close': 127.08000183105469,
        'date': 1545661800,
        'formatted_date': '2018-12-24',
        'high': 129.97999572753906,
        'low': 124.5,
        'open': 126.48999786376953,
        'volume': 11596000},
       {'adjclose': 132.44253540039062,
        'close': 133.10000610351562,
        'date': 1545834600,
        'formatted_date': '2018-12-26',
        'high': 133.13999938964844,
        'low': 124.45999908447266,
        'open': 128.94000244140625,
        'volume': 17377500},
       {'adjclose': 130.5220489501953,
        'close': 131.1699981689453,
        'date': 1545921000,
        'formatted_date': '2018-12-27',
        'high': 132.3800048828125,
        'low': 125.18000030517578,
        'open': 130.99000549316406,
        'volume': 15926100},
       {'adjclose': 132.98980712890625,
        'close': 133.64999389648438,
        'date': 1546007400,
        'formatted_date': '2018-12-28',
        'high': 137.38999938964844,
        'low': 130.30999755859375,
        'open': 132.0,
        'volume': 15718200},
       {'adjclose': 132.8405303955078,
        'close': 133.5,
        'date': 1546266600,
        'formatted_date': '2018-12-31',
        'high': 136.7100067138672,
        'low': 132.25999450683594,
        'open': 135.39999389648438,
        'volume': 11628500},
       {'adjclose': 135.54710388183594,
        'close': 136.22000122070312,
        'date': 1546439400,
        'formatted_date': '2019-01-02',
        'high': 138.47999572753906,
        'low': 130.0500030517578,
        'open': 130.63999938964844,
        'volume': 12718800},
       {'adjclose': 127.35774993896484,
        'close': 127.98999786376953,
        'date': 1546525800,
        'formatted_date': '2019-01-03',
        'high': 135.16000366210938,
        'low': 127.69000244140625,
        'open': 133.7899932861328,
        'volume': 17638800},
       {'adjclose': 135.5172576904297,
        'close': 136.19000244140625,
        'date': 1546612200,
        'formatted_date': '2019-01-04',
        'high': 137.72999572753906,
        'low': 129.6999969482422,
        'open': 130.94000244140625,
        'volume': 14640500},
       {'adjclose': 142.69161987304688,
        'close': 143.39999389648438,
        'date': 1546871400,
        'formatted_date': '2019-01-07',
        'high': 144.88999938964844,
        'low': 136.42999267578125,
        'open': 138.5,
        'volume': 17729000},
       {'adjclose': 139.1392822265625,
        'close': 139.8300018310547,
        'date': 1546957800,
        'formatted_date': '2019-01-08',
        'high': 146.77999877929688,
        'low': 136.89999389648438,
        'open': 146.69000244140625,
        'volume': 19650400},
       {'adjclose': 141.87570190429688,
        'close': 142.5800018310547,
        'date': 1547044200,
        'formatted_date': '2019-01-09',
        'high': 144.49000549316406,
        'low': 139.86000061035156,
        'open': 141.89999389648438,
        'volume': 15431500},
       {'adjclose': 144.51260375976562,
        'close': 145.22999572753906,
        'date': 1547130600,
        'formatted_date': '2019-01-10',
        'high': 145.5800018310547,
        'low': 139.36000061035156,
        'open': 141.8000030517578,
        'volume': 13078900},
       {'adjclose': 148.0948028564453,
        'close': 148.8300018310547,
        'date': 1547217000,
        'formatted_date': '2019-01-11',
        'high': 149.75,
        'low': 143.2100067138672,
        'open': 144.3300018310547,
        'volume': 21869100},
       {'adjclose': 149.6968536376953,
        'close': 150.44000244140625,
        'date': 1547476200,
        'formatted_date': '2019-01-14',
        'high': 151.4600067138672,
        'low': 145.77000427246094,
        'open': 146.72000122070312,
        'volume': 18254200},
       {'adjclose': 149.12966918945312,
        'close': 149.8699951171875,
        'date': 1547562600,
        'formatted_date': '2019-01-15',
        'high': 153.35000610351562,
        'low': 149.1300048828125,
        'open': 151.75999450683594,
        'volume': 15425300},
       {'adjclose': 148.10476684570312,
        'close': 148.83999633789062,
        'date': 1547649000,
        'formatted_date': '2019-01-16',
        'high': 152.3000030517578,
        'low': 148.6199951171875,
        'open': 150.97000122070312,
        'volume': 11752600},
       {'adjclose': 150.97056579589844,
        'close': 151.72000122070312,
        'date': 1547735400,
        'formatted_date': '2019-01-17',
        'high': 153.3300018310547,
        'low': 146.41000366210938,
        'open': 147.50999450683594,
        'volume': 12335900},
       {'adjclose': 156.15480041503906,
        'close': 156.92999267578125,
        'date': 1547821800,
        'formatted_date': '2019-01-18',
        'high': 157.97999572753906,
        'low': 151.64999389648438,
        'open': 153.72999572753906,
        'volume': 16283400},
       {'adjclose': 148.03512573242188,
        'close': 148.77000427246094,
        'date': 1548167400,
        'formatted_date': '2019-01-22',
        'high': 156.17999267578125,
        'low': 147.5500030517578,
        'open': 155.7100067138672,
        'volume': 16538800},
       {'adjclose': 148.55252075195312,
        'close': 149.2899932861328,
        'date': 1548253800,
        'formatted_date': '2019-01-23',
        'high': 154.5800018310547,
        'low': 148.02999877929688,
        'open': 151.0,
        'volume': 14775500},
       {'adjclose': 157.06028747558594,
        'close': 157.83999633789062,
        'date': 1548340200,
        'formatted_date': '2019-01-24',
        'high': 158.5500030517578,
        'low': 152.50999450683594,
        'open': 152.6999969482422,
        'volume': 17724300},
       {'adjclose': 159.35888671875,
        'close': 160.14999389648438,
        'date': 1548426600,
        'formatted_date': '2019-01-25',
        'high': 160.8800048828125,
        'low': 151.3000030517578,
        'open': 155.44000244140625,
        'volume': 28864300},
       {'adjclose': 137.32826232910156,
        'close': 138.00999450683594,
        'date': 1548685800,
        'formatted_date': '2019-01-28',
        'high': 141.63999938964844,
        'low': 131.0,
        'open': 136.5500030517578,
        'volume': 62788200},
       {'adjclose': 130.94993591308594,
        'close': 131.60000610351562,
        'date': 1548772200,
        'formatted_date': '2019-01-29',
        'high': 138.10000610351562,
        'low': 131.00999450683594,
        'open': 136.14999389648438,
        'volume': 28848300},
       {'adjclose': 136.71131896972656,
        'close': 137.38999938964844,
        'date': 1548858600,
        'formatted_date': '2019-01-30',
        'high': 137.97000122070312,
        'low': 131.4600067138672,
        'open': 134.6699981689453,
        'volume': 24355700},
       {'adjclose': 143.03990173339844,
        'close': 143.75,
        'date': 1548945000,
        'formatted_date': '2019-01-31',
        'high': 145.19000244140625,
        'low': 136.3800048828125,
        'open': 137.25999450683594,
        'volume': 21071300},
       {'adjclose': 144.01507568359375,
        'close': 144.72999572753906,
        'date': 1549031400,
        'formatted_date': '2019-02-01',
        'high': 146.7899932861328,
        'low': 142.5800018310547,
        'open': 144.5,
        'volume': 15626200},
       {'adjclose': 148.4430694580078,
        'close': 149.17999267578125,
        'date': 1549290600,
        'formatted_date': '2019-02-04',
        'high': 150.67999267578125,
        'low': 144.47999572753906,
        'open': 145.3699951171875,
        'volume': 13214800},
       {'adjclose': 149.2092742919922,
        'close': 149.9499969482422,
        'date': 1549377000,
        'formatted_date': '2019-02-05',
        'high': 151.42999267578125,
        'low': 148.3000030517578,
        'open': 149.66000366210938,
        'volume': 13560600},
       {'adjclose': 152.2442169189453,
        'close': 153.0,
        'date': 1549463400,
        'formatted_date': '2019-02-06',
        'high': 155.60000610351562,
        'low': 151.07000732421875,
        'open': 151.2899932861328,
        'volume': 17561600},
       {'adjclose': 146.6917724609375,
        'close': 147.4199981689453,
        'date': 1549549800,
        'formatted_date': '2019-02-07',
        'high': 151.22000122070312,
        'low': 145.69000244140625,
        'open': 151.1300048828125,
        'volume': 15928000},
       {'adjclose': 147.4380645751953,
        'close': 148.1699981689453,
        'date': 1549636200,
        'formatted_date': '2019-02-08',
        'high': 148.60000610351562,
        'low': 144.1300048828125,
        'open': 144.7100067138672,
        'volume': 11540100},
       {'adjclose': 145.7265625,
        'close': 146.4499969482422,
        'date': 1549895400,
        'formatted_date': '2019-02-11',
        'high': 148.5800018310547,
        'low': 144.5,
        'open': 146.38999938964844,
        'volume': 12379500},
       {'adjclose': 150.42324829101562,
        'close': 151.1699981689453,
        'date': 1549981800,
        'formatted_date': '2019-02-12',
        'high': 151.8000030517578,
        'low': 147.4199981689453,
        'open': 148.0,
        'volume': 14776500},
       {'adjclose': 152.12481689453125,
        'close': 152.8800048828125,
        'date': 1550068200,
        'formatted_date': '2019-02-13',
        'high': 155.8300018310547,
        'low': 151.80999755859375,
        'open': 152.36000061035156,
        'volume': 15134300},
       {'adjclose': 153.7666473388672,
        'close': 154.52999877929688,
        'date': 1550154600,
        'formatted_date': '2019-02-14',
        'high': 155.6699981689453,
        'low': 151.10000610351562,
        'open': 152.83999633789062,
        'volume': 20681600},
       {'adjclose': 156.56277465820312,
        'close': 157.33999633789062,
        'date': 1550241000,
        'formatted_date': '2019-02-15',
        'high': 163.8699951171875,
        'low': 156.4199981689453,
        'open': 162.9499969482422,
        'volume': 37918700},
       {'adjclose': 155.86622619628906,
        'close': 156.63999938964844,
        'date': 1550586600,
        'formatted_date': '2019-02-19',
        'high': 159.88999938964844,
        'low': 156.13999938964844,
        'open': 156.91000366210938,
        'volume': 13797300},
       {'adjclose': 157.76678466796875,
        'close': 158.5500030517578,
        'date': 1550673000,
        'formatted_date': '2019-02-20',
        'high': 161.25999450683594,
        'low': 157.3699951171875,
        'open': 157.82000732421875,
        'volume': 13524700},
       {'adjclose': 155.00051879882812,
        'close': 155.77000427246094,
        'date': 1550759400,
        'formatted_date': '2019-02-21',
        'high': 160.0500030517578,
        'low': 155.17999267578125,
        'open': 159.05999755859375,
        'volume': 11213700},
       {'adjclose': 158.4036407470703,
        'close': 159.19000244140625,
        'date': 1550845800,
        'formatted_date': '2019-02-22',
        'high': 159.9499969482422,
        'low': 157.30999755859375,
        'open': 157.86000061035156,
        'volume': 10043500},
       {'adjclose': 157.90611267089844,
        'close': 158.69000244140625,
        'date': 1551105000,
        'formatted_date': '2019-02-25',
        'high': 165.27999877929688,
        'low': 158.33999633789062,
        'open': 162.55999755859375,
        'volume': 16400500},
       {'adjclose': 156.32395935058594,
        'close': 157.10000610351562,
        'date': 1551191400,
        'formatted_date': '2019-02-26',
        'high': 160.75999450683594,
        'low': 155.75,
        'open': 158.5,
        'volume': 12211600},
       {'adjclose': 154.64230346679688,
        'close': 155.41000366210938,
        'date': 1551277800,
        'formatted_date': '2019-02-27',
        'high': 157.58999633789062,
        'low': 153.11000061035156,
        'open': 156.52000427246094,
        'volume': 12506400},
       {'adjclose': 153.6561737060547,
        'close': 154.25999450683594,
        'date': 1551364200,
        'formatted_date': '2019-02-28',
        'high': 155.89999389648438,
        'low': 153.36000061035156,
        'open': 155.0,
        'volume': 8123600},
       {'adjclose': 155.8376007080078,
        'close': 156.4499969482422,
        'date': 1551450600,
        'formatted_date': '2019-03-01',
        'high': 158.14999389648438,
        'low': 153.9199981689453,
        'open': 156.27000427246094,
        'volume': 8929700},
       {'adjclose': 156.16632080078125,
        'close': 156.77999877929688,
        'date': 1551709800,
        'formatted_date': '2019-03-04',
        'high': 158.9199981689453,
        'low': 154.5,
        'open': 158.0,
        'volume': 10249800},
       {'adjclose': 155.9073486328125,
        'close': 156.52000427246094,
        'date': 1551796200,
        'formatted_date': '2019-03-05',
        'high': 158.05999755859375,
        'low': 153.9600067138672,
        'open': 156.14999389648438,
        'volume': 9073100},
       {'adjclose': 151.454833984375,
        'close': 152.0500030517578,
        'date': 1551882600,
        'formatted_date': '2019-03-06',
        'high': 156.5,
        'low': 151.94000244140625,
        'open': 156.16000366210938,
        'volume': 10088100},
       {'adjclose': 148.67575073242188,
        'close': 149.25999450683594,
        'date': 1551969000,
        'formatted_date': '2019-03-07',
        'high': 151.49000549316406,
        'low': 147.39999389648438,
        'open': 151.10000610351562,
        'volume': 11252600},
       {'adjclose': 150.0503387451172,
        'close': 150.63999938964844,
        'date': 1552055400,
        'formatted_date': '2019-03-08',
        'high': 151.07000732421875,
        'low': 144.8000030517578,
        'open': 145.66000366210938,
        'volume': 10560400},
       {'adjclose': 160.50926208496094,
        'close': 161.13999938964844,
        'date': 1552311000,
        'formatted_date': '2019-03-11',
        'high': 162.05999755859375,
        'low': 149.69000244140625,
        'open': 151.58999633789062,
        'volume': 21493200},
       {'adjclose': 161.88385009765625,
        'close': 162.52000427246094,
        'date': 1552397400,
        'formatted_date': '2019-03-12',
        'high': 164.38999938964844,
        'low': 159.19000244140625,
        'open': 162.25999450683594,
        'volume': 14489400},
       {'adjclose': 167.95999145507812,
        'close': 168.6199951171875,
        'date': 1552483800,
        'formatted_date': '2019-03-13',
        'high': 169.8000030517578,
        'low': 163.72999572753906,
        'open': 164.02999877929688,
        'volume': 19222500},
       {'adjclose': 164.91195678710938,
        'close': 165.55999755859375,
        'date': 1552570200,
        'formatted_date': '2019-03-14',
        'high': 169.47000122070312,
        'low': 165.25,
        'open': 168.99000549316406,
        'volume': 12984600},
       {'adjclose': 169.1453094482422,
        'close': 169.80999755859375,
        'date': 1552656600,
        'formatted_date': '2019-03-15',
        'high': 171.52999877929688,
        'low': 167.16000366210938,
        'open': 167.3000030517578,
        'volume': 16537100},
       {'adjclose': 168.2886962890625,
        'close': 168.9499969482422,
        'date': 1552915800,
        'formatted_date': '2019-03-18',
        'high': 173.25,
        'low': 167.86000061035156,
        'open': 171.0800018310547,
        'volume': 12174800},
       {'adjclose': 175.022216796875,
        'close': 175.7100067138672,
        'date': 1553002200,
        'formatted_date': '2019-03-19',
        'high': 177.5,
        'low': 172.0800018310547,
        'open': 172.75999450683594,
        'volume': 21374300},
       {'adjclose': 173.71734619140625,
        'close': 174.39999389648438,
        'date': 1553088600,
        'formatted_date': '2019-03-20',
        'high': 179.02999877929688,
        'low': 173.0,
        'open': 176.8800048828125,
        'volume': 17978700},
       {'adjclose': 183.2200164794922,
        'close': 183.94000244140625,
        'date': 1553175000,
        'formatted_date': '2019-03-21',
        'high': 185.0,
        'low': 175.1300048828125,
        'open': 175.3300018310547,
        'volume': 20607800},
       {'adjclose': 176.80520629882812,
        'close': 177.5,
        'date': 1553261400,
        'formatted_date': '2019-03-22',
        'high': 184.8000030517578,
        'low': 176.94000244140625,
        'open': 182.83999633789062,
        'volume': 18691100},
       {'adjclose': 173.09976196289062,
        'close': 173.77999877929688,
        'date': 1553520600,
        'formatted_date': '2019-03-25',
        'high': 178.4499969482422,
        'low': 171.11000061035156,
        'open': 175.86000061035156,
        'volume': 13130300},
       {'adjclose': 176.17767333984375,
        'close': 176.8699951171875,
        'date': 1553607000,
        'formatted_date': '2019-03-26',
        'high': 181.75,
        'low': 174.60000610351562,
        'open': 179.49000549316406,
        'volume': 17587700},
       {'adjclose': 175.8091278076172,
        'close': 176.5,
        'date': 1553693400,
        'formatted_date': '2019-03-27',
        'high': 179.77000427246094,
        'low': 173.6999969482422,
        'open': 177.89999389648438,
        'volume': 11859300},
       {'adjclose': 176.5561981201172,
        'close': 177.25,
        'date': 1553779800,
        'formatted_date': '2019-03-28',
        'high': 179.89999389648438,
        'low': 175.11000061035156,
        'open': 177.5500030517578,
        'volume': 12006600},
       {'adjclose': 178.85716247558594,
        'close': 179.55999755859375,
        'date': 1553866200,
        'formatted_date': '2019-03-29',
        'high': 180.5399932861328,
        'low': 177.91000366210938,
        'open': 179.94000244140625,
        'volume': 11422400},
       {'adjclose': 181.56649780273438,
        'close': 182.27999877929688,
        'date': 1554125400,
        'formatted_date': '2019-04-01',
        'high': 183.5,
        'low': 180.3699951171875,
        'open': 183.25999450683594,
        'volume': 12095600},
       {'adjclose': 182.28366088867188,
        'close': 183.0,
        'date': 1554211800,
        'formatted_date': '2019-04-02',
        'high': 184.7899932861328,
        'low': 181.52000427246094,
        'open': 183.25,
        'volume': 11023000},
       {'adjclose': 187.88169860839844,
        'close': 188.6199951171875,
        'date': 1554298200,
        'formatted_date': '2019-04-03',
        'high': 191.0,
        'low': 184.8000030517578,
        'open': 185.0,
        'volume': 19719500},
       {'adjclose': 187.52310180664062,
        'close': 188.25999450683594,
        'date': 1554384600,
        'formatted_date': '2019-04-04',
        'high': 189.97000122070312,
        'low': 185.72999572753906,
        'open': 188.0,
        'volume': 11434400},
       {'adjclose': 190.20254516601562,
        'close': 190.9499969482422,
        'date': 1554471000,
        'formatted_date': '2019-04-05',
        'high': 191.64999389648438,
        'low': 188.52999877929688,
        'open': 190.0,
        'volume': 12043600},
       {'adjclose': 191.03927612304688,
        'close': 191.7899932861328,
        'date': 1554730200,
        'formatted_date': '2019-04-08',
        'high': 192.8000030517578,
        'low': 188.75,
        'open': 189.72000122070312,
        'volume': 10604800},
       {'adjclose': 188.51919555664062,
        'close': 189.25999450683594,
        'date': 1554816600,
        'formatted_date': '2019-04-09',
        'high': 190.88999938964844,
        'low': 187.55999755859375,
        'open': 190.44000244140625,
        'volume': 10999300},
       {'adjclose': 191.3480682373047,
        'close': 192.10000610351562,
        'date': 1554903000,
        'formatted_date': '2019-04-10',
        'high': 193.13999938964844,
        'low': 189.0500030517578,
        'open': 189.22999572753906,
        'volume': 11119300},
       {'adjclose': 190.7902374267578,
        'close': 191.5399932861328,
        'date': 1554989400,
        'formatted_date': '2019-04-11',
        'high': 193.47000122070312,
        'low': 189.5500030517578,
        'open': 192.1999969482422,
        'volume': 9365000},
       {'adjclose': 189.2662353515625,
        'close': 190.00999450683594,
        'date': 1555075800,
        'formatted_date': '2019-04-12',
        'high': 193.25999450683594,
        'low': 189.66000366210938,
        'open': 193.10000610351562,
        'volume': 11792700},
       {'adjclose': 183.97702026367188,
        'close': 184.6999969482422,
        'date': 1555335000,
        'formatted_date': '2019-04-15',
        'high': 189.89999389648438,
        'low': 183.10000610351562,
        'open': 189.6999969482422,
        'volume': 11002300},
       {'adjclose': 187.4733123779297,
        'close': 188.2100067138672,
        'date': 1555421400,
        'formatted_date': '2019-04-16',
        'high': 188.97000122070312,
        'low': 184.9600067138672,
        'open': 186.27999877929688,
        'volume': 9874100},
       {'adjclose': 186.556884765625,
        'close': 187.2899932861328,
        'date': 1555507800,
        'formatted_date': '2019-04-17',
        'high': 190.4600067138672,
        'low': 186.38999938964844,
        'open': 189.6199951171875,
        'volume': 8775100},
       {'adjclose': 185.57077026367188,
        'close': 186.3000030517578,
        'date': 1555594200,
        'formatted_date': '2019-04-18',
        'high': 188.92999267578125,
        'low': 185.17999267578125,
        'open': 187.55999755859375,
        'volume': 9524700},
       {'adjclose': 187.73226928710938,
        'close': 188.47000122070312,
        'date': 1555939800,
        'formatted_date': '2019-04-22',
        'high': 189.10000610351562,
        'low': 184.0800018310547,
        'open': 185.35000610351562,
        'volume': 6998400},
       {'adjclose': 189.9236602783203,
        'close': 190.6699981689453,
        'date': 1556026200,
        'formatted_date': '2019-04-23',
        'high': 191.92999267578125,
        'low': 188.61000061035156,
        'open': 189.0,
        'volume': 8671400},
       {'adjclose': 190.4217071533203,
        'close': 191.1699981689453,
        'date': 1556112600,
        'formatted_date': '2019-04-24',
        'high': 192.80999755859375,
        'low': 188.63999938964844,
        'open': 191.08999633789062,
        'volume': 7955100},
       {'adjclose': 186.1783905029297,
        'close': 186.91000366210938,
        'date': 1556199000,
        'formatted_date': '2019-04-25',
        'high': 190.4499969482422,
        'low': 183.6999969482422,
        'open': 189.5500030517578,
        'volume': 12482400},
       {'adjclose': 177.3928985595703,
        'close': 178.08999633789062,
        'date': 1556285400,
        'formatted_date': '2019-04-26',
        'high': 180.88999938964844,
        'low': 173.3000030517578,
        'open': 180.7100067138672,
        'volume': 21724700}],
      'timeZone': {'gmtOffset': -14400}}}
1
currency_daily
展开查看

    {'CNY=X': {'currency': 'CNY',
      'eventsData': {},
      'firstTradeDate': {'date': 991263600, 'formatted_date': '2001-05-30'},
      'instrumentType': 'CURRENCY',
      'prices': [{'adjclose': 6.336999893188477,
        'close': 6.336999893188477,
        'date': 1525042800,
        'formatted_date': '2018-04-29',
        'high': 6.336400032043457,
        'low': 6.323299884796143,
        'open': 6.334799766540527,
        'volume': 0},
       {'adjclose': 6.332099914550781,
        'close': 6.332099914550781,
        'date': 1525129200,
        'formatted_date': '2018-04-30',
        'high': 6.332399845123291,
        'low': 6.323299884796143,
        'open': 6.3317999839782715,
        'volume': 0},
       {'adjclose': 6.332300186157227,
        'close': 6.332300186157227,
        'date': 1525215600,
        'formatted_date': '2018-05-01',
        'high': 6.363999843597412,
        'low': 6.323299884796143,
        'open': 6.323299884796143,
        'volume': 0},
       {'adjclose': 6.361499786376953,
        'close': 6.361499786376953,
        'date': 1525302000,
        'formatted_date': '2018-05-02',
        'high': 6.369100093841553,
        'low': 6.337299823760986,
        'open': 6.352499961853027,
        'volume': 0},
       {'adjclose': 6.352700233459473,
        'close': 6.352700233459473,
        'date': 1525388400,
        'formatted_date': '2018-05-03',
        'high': 6.364999771118164,
        'low': 6.334700107574463,
        'open': 6.343699932098389,
        'volume': 0},
       {'adjclose': 6.361700057983398,
        'close': 6.361700057983398,
        'date': 1525647600,
        'formatted_date': '2018-05-06',
        'high': 6.367000102996826,
        'low': 6.345799922943115,
        'open': 6.352700233459473,
        'volume': 0},
       {'adjclose': 6.366099834442139,
        'close': 6.366099834442139,
        'date': 1525734000,
        'formatted_date': '2018-05-07',
        'high': 6.369699954986572,
        'low': 6.350100040435791,
        'open': 6.366300106048584,
        'volume': 0},
       {'adjclose': 6.369699954986572,
        'close': 6.369699954986572,
        'date': 1525820400,
        'formatted_date': '2018-05-08',
        'high': 6.381199836730957,
        'low': 6.35830020904541,
        'open': 6.3607001304626465,
        'volume': 0},
       {'adjclose': 6.361400127410889,
        'close': 6.361400127410889,
        'date': 1525906800,
        'formatted_date': '2018-05-09',
        'high': 6.3678998947143555,
        'low': 6.333000183105469,
        'open': 6.352399826049805,
        'volume': 0},
       {'adjclose': 6.348199844360352,
        'close': 6.348199844360352,
        'date': 1525993200,
        'formatted_date': '2018-05-10',
        'high': 6.348199844360352,
        'low': 6.321499824523926,
        'open': 6.339200019836426,
        'volume': 0},
       {'adjclose': 6.333099842071533,
        'close': 6.333099842071533,
        'date': 1526252400,
        'formatted_date': '2018-05-13',
        'high': 6.340199947357178,
        'low': 6.324100017547607,
        'open': 6.324100017547607,
        'volume': 0},
       {'adjclose': 6.3383002281188965,
        'close': 6.3383002281188965,
        'date': 1526338800,
        'formatted_date': '2018-05-14',
        'high': 6.378300189971924,
        'low': 6.3292999267578125,
        'open': 6.3292999267578125,
        'volume': 0},
       {'adjclose': 6.376800060272217,
        'close': 6.376800060272217,
        'date': 1526425200,
        'formatted_date': '2018-05-15',
        'high': 6.379000186920166,
        'low': 6.35860013961792,
        'open': 6.367800235748291,
        'volume': 0},
       {'adjclose': 6.370500087738037,
        'close': 6.370500087738037,
        'date': 1526511600,
        'formatted_date': '2018-05-16',
        'high': 6.370500087738037,
        'low': 6.352200031280518,
        'open': 6.361499786376953,
        'volume': 0},
       {'adjclose': 6.366199970245361,
        'close': 6.366199970245361,
        'date': 1526598000,
        'formatted_date': '2018-05-17',
        'high': 6.379799842834473,
        'low': 6.3572001457214355,
        'open': 6.3572001457214355,
        'volume': 0},
       {'adjclose': 6.382800102233887,
        'close': 6.382800102233887,
        'date': 1526857200,
        'formatted_date': '2018-05-20',
        'high': 6.395100116729736,
        'low': 6.3719000816345215,
        'open': 6.383200168609619,
        'volume': 0},
       {'adjclose': 6.381100177764893,
        'close': 6.381100177764893,
        'date': 1526943600,
        'formatted_date': '2018-05-21',
        'high': 6.382500171661377,
        'low': 6.3628997802734375,
        'open': 6.38070011138916,
        'volume': 0},
       {'adjclose': 6.364200115203857,
        'close': 6.364200115203857,
        'date': 1527030000,
        'formatted_date': '2018-05-22',
        'high': 6.390600204467773,
        'low': 6.363999843597412,
        'open': 6.3649001121521,
        'volume': 0},
       {'adjclose': 6.388800144195557,
        'close': 6.388800144195557,
        'date': 1527116400,
        'formatted_date': '2018-05-23',
        'high': 6.394000053405762,
        'low': 6.370999813079834,
        'open': 6.378499984741211,
        'volume': 0},
       {'adjclose': 6.376399993896484,
        'close': 6.376399993896484,
        'date': 1527202800,
        'formatted_date': '2018-05-24',
        'high': 6.392000198364258,
        'low': 6.375699996948242,
        'open': 6.378600120544434,
        'volume': 0},
       {'adjclose': 6.368599891662598,
        'close': 6.368599891662598,
        'date': 1527462000,
        'formatted_date': '2018-05-27',
        'high': 6.39900016784668,
        'low': 6.355800151824951,
        'open': 6.368500232696533,
        'volume': 0},
       {'adjclose': 6.3983001708984375,
        'close': 6.3983001708984375,
        'date': 1527548400,
        'formatted_date': '2018-05-28',
        'high': 6.421599864959717,
        'low': 6.3892998695373535,
        'open': 6.3892998695373535,
        'volume': 0},
       {'adjclose': 6.416600227355957,
        'close': 6.416600227355957,
        'date': 1527634800,
        'formatted_date': '2018-05-29',
        'high': 6.432600021362305,
        'low': 6.407599925994873,
        'open': 6.407599925994873,
        'volume': 0},
       {'adjclose': 6.418000221252441,
        'close': 6.418000221252441,
        'date': 1527721200,
        'formatted_date': '2018-05-30',
        'high': 6.418000221252441,
        'low': 6.394800186157227,
        'open': 6.408999919891357,
        'volume': 0},
       {'adjclose': 6.409299850463867,
        'close': 6.409299850463867,
        'date': 1527807600,
        'formatted_date': '2018-05-31',
        'high': 6.420899868011475,
        'low': 6.39769983291626,
        'open': 6.400300025939941,
        'volume': 0},
       {'adjclose': 6.419400215148926,
        'close': 6.419400215148926,
        'date': 1528066800,
        'formatted_date': '2018-06-03',
        'high': 6.421999931335449,
        'low': 6.397600173950195,
        'open': 6.410399913787842,
        'volume': 0},
       {'adjclose': 6.4070000648498535,
        'close': 6.4070000648498535,
        'date': 1528153200,
        'formatted_date': '2018-06-04',
        'high': 6.412300109863281,
        'low': 6.3942999839782715,
        'open': 6.407100200653076,
        'volume': 0},
       {'adjclose': 6.40500020980835,
        'close': 6.40500020980835,
        'date': 1528239600,
        'formatted_date': '2018-06-05',
        'high': 6.405600070953369,
        'low': 6.377600193023682,
        'open': 6.404900074005127,
        'volume': 0},
       {'adjclose': 6.387899875640869,
        'close': 6.387899875640869,
        'date': 1528326000,
        'formatted_date': '2018-06-06',
        'high': 6.395299911499023,
        'low': 6.381800174713135,
        'open': 6.38700008392334,
        'volume': 0},
       {'adjclose': 6.392099857330322,
        'close': 6.392099857330322,
        'date': 1528412400,
        'formatted_date': '2018-06-07',
        'high': 6.412199974060059,
        'low': 6.386099815368652,
        'open': 6.392000198364258,
        'volume': 0},
       {'adjclose': 6.405700206756592,
        'close': 6.405700206756592,
        'date': 1528671600,
        'formatted_date': '2018-06-10',
        'high': 6.407800197601318,
        'low': 6.391499996185303,
        'open': 6.396699905395508,
        'volume': 0},
       {'adjclose': 6.391600131988525,
        'close': 6.391600131988525,
        'date': 1528758000,
        'formatted_date': '2018-06-11',
        'high': 6.4079999923706055,
        'low': 6.391600131988525,
        'open': 6.3917999267578125,
        'volume': 0},
       {'adjclose': 6.4004998207092285,
        'close': 6.4004998207092285,
        'date': 1528844400,
        'formatted_date': '2018-06-12',
        'high': 6.407299995422363,
        'low': 6.3902997970581055,
        'open': 6.402299880981445,
        'volume': 0},
       {'adjclose': 6.397299766540527,
        'close': 6.397299766540527,
        'date': 1528930800,
        'formatted_date': '2018-06-13',
        'high': 6.403800010681152,
        'low': 6.38070011138916,
        'open': 6.398099899291992,
        'volume': 0},
       {'adjclose': 6.4045000076293945,
        'close': 6.4045000076293945,
        'date': 1529017200,
        'formatted_date': '2018-06-14',
        'high': 6.438899993896484,
        'low': 6.395999908447266,
        'open': 6.399899959564209,
        'volume': 0},
       {'adjclose': 6.433000087738037,
        'close': 6.433000087738037,
        'date': 1529276400,
        'formatted_date': '2018-06-17',
        'high': 6.442800045013428,
        'low': 6.427599906921387,
        'open': 6.4293999671936035,
        'volume': 0},
       {'adjclose': 6.438799858093262,
        'close': 6.438799858093262,
        'date': 1529362800,
        'formatted_date': '2018-06-18',
        'high': 6.48390007019043,
        'low': 6.4293999671936035,
        'open': 6.4293999671936035,
        'volume': 0},
       {'adjclose': 6.485499858856201,
        'close': 6.485499858856201,
        'date': 1529449200,
        'formatted_date': '2018-06-19',
        'high': 6.488699913024902,
        'low': 6.4604997634887695,
        'open': 6.48769998550415,
        'volume': 0},
       {'adjclose': 6.47160005569458,
        'close': 6.47160005569458,
        'date': 1529535600,
        'formatted_date': '2018-06-20',
        'high': 6.50540018081665,
        'low': 6.4704999923706055,
        'open': 6.471499919891357,
        'volume': 0},
       {'adjclose': 6.492099761962891,
        'close': 6.492099761962891,
        'date': 1529622000,
        'formatted_date': '2018-06-21',
        'high': 6.5065999031066895,
        'low': 6.487599849700928,
        'open': 6.492099761962891,
        'volume': 0},
       {'adjclose': 6.504300117492676,
        'close': 6.504300117492676,
        'date': 1529881200,
        'formatted_date': '2018-06-24',
        'high': 6.543499946594238,
        'low': 6.504000186920166,
        'open': 6.504000186920166,
        'volume': 0},
       {'adjclose': 6.539000034332275,
        'close': 6.539000034332275,
        'date': 1529967600,
        'formatted_date': '2018-06-25',
        'high': 6.581699848175049,
        'low': 6.525300025939941,
        'open': 6.53000020980835,
        'volume': 0},
       {'adjclose': 6.5782999992370605,
        'close': 6.5782999992370605,
        'date': 1530054000,
        'formatted_date': '2018-06-26',
        'high': 6.613800048828125,
        'low': 6.569300174713135,
        'open': 6.569300174713135,
        'volume': 0},
       {'adjclose': 6.601900100708008,
        'close': 6.601900100708008,
        'date': 1530140400,
        'formatted_date': '2018-06-27',
        'high': 6.630499839782715,
        'low': 6.596499919891357,
        'open': 6.600800037384033,
        'volume': 0},
       {'adjclose': 6.627399921417236,
        'close': 6.627399921417236,
        'date': 1530226800,
        'formatted_date': '2018-06-28',
        'high': 6.639100074768066,
        'low': 6.597799777984619,
        'open': 6.626399993896484,
        'volume': 0},
       {'adjclose': 6.624300003051758,
        'close': 6.624300003051758,
        'date': 1530486000,
        'formatted_date': '2018-07-01',
        'high': 6.668799877166748,
        'low': 6.621600151062012,
        'open': 6.621799945831299,
        'volume': 0},
       {'adjclose': 6.6666998863220215,
        'close': 6.6666998863220215,
        'date': 1530572400,
        'formatted_date': '2018-07-02',
        'high': 6.714300155639648,
        'low': 6.635499954223633,
        'open': 6.667500019073486,
        'volume': 0},
       {'adjclose': 6.640999794006348,
        'close': 6.640999794006348,
        'date': 1530658800,
        'formatted_date': '2018-07-03',
        'high': 6.643400192260742,
        'low': 6.597799777984619,
        'open': 6.640200138092041,
        'volume': 0},
       {'adjclose': 6.63129997253418,
        'close': 6.63129997253418,
        'date': 1530745200,
        'formatted_date': '2018-07-04',
        'high': 6.644700050354004,
        'low': 6.623600006103516,
        'open': 6.63129997253418,
        'volume': 0},
       {'adjclose': 6.6367998123168945,
        'close': 6.6367998123168945,
        'date': 1530831600,
        'formatted_date': '2018-07-05',
        'high': 6.66480016708374,
        'low': 6.631999969482422,
        'open': 6.637800216674805,
        'volume': 0},
       {'adjclose': 6.639200210571289,
        'close': 6.639200210571289,
        'date': 1531090800,
        'formatted_date': '2018-07-08',
        'high': 6.6427998542785645,
        'low': 6.600100040435791,
        'open': 6.641200065612793,
        'volume': 0},
       {'adjclose': 6.615200042724609,
        'close': 6.615200042724609,
        'date': 1531177200,
        'formatted_date': '2018-07-09',
        'high': 6.638000011444092,
        'low': 6.590400218963623,
        'open': 6.615600109100342,
        'volume': 0},
       {'adjclose': 6.631400108337402,
        'close': 6.631400108337402,
        'date': 1531263600,
        'formatted_date': '2018-07-10',
        'high': 6.679500102996826,
        'low': 6.628900051116943,
        'open': 6.629700183868408,
        'volume': 0},
       {'adjclose': 6.682799816131592,
        'close': 6.682799816131592,
        'date': 1531350000,
        'formatted_date': '2018-07-11',
        'high': 6.701300144195557,
        'low': 6.6529998779296875,
        'open': 6.68120002746582,
        'volume': 0},
       {'adjclose': 6.665900230407715,
        'close': 6.665900230407715,
        'date': 1531436400,
        'formatted_date': '2018-07-12',
        'high': 6.704400062561035,
        'low': 6.6508002281188965,
        'open': 6.666100025177002,
        'volume': 0},
       {'adjclose': 6.6946001052856445,
        'close': 6.6946001052856445,
        'date': 1531695600,
        'formatted_date': '2018-07-15',
        'high': 6.70419979095459,
        'low': 6.661399841308594,
        'open': 6.694200038909912,
        'volume': 0},
       {'adjclose': 6.6915998458862305,
        'close': 6.6915998458862305,
        'date': 1531782000,
        'formatted_date': '2018-07-16',
        'high': 6.705900192260742,
        'low': 6.665500164031982,
        'open': 6.681099891662598,
        'volume': 0},
       {'adjclose': 6.7067999839782715,
        'close': 6.7067999839782715,
        'date': 1531868400,
        'formatted_date': '2018-07-17',
        'high': 6.723400115966797,
        'low': 6.687399864196777,
        'open': 6.706999778747559,
        'volume': 0},
       {'adjclose': 6.717700004577637,
        'close': 6.717700004577637,
        'date': 1531954800,
        'formatted_date': '2018-07-18',
        'high': 6.782899856567383,
        'low': 6.714399814605713,
        'open': 6.717100143432617,
        'volume': 0},
       {'adjclose': 6.771699905395508,
        'close': 6.771699905395508,
        'date': 1532041200,
        'formatted_date': '2018-07-19',
        'high': 6.809199810028076,
        'low': 6.765200138092041,
        'open': 6.772900104522705,
        'volume': 0},
       {'adjclose': 6.7581000328063965,
        'close': 6.7581000328063965,
        'date': 1532300400,
        'formatted_date': '2018-07-22',
        'high': 6.796899795532227,
        'low': 6.741700172424316,
        'open': 6.758299827575684,
        'volume': 0},
       {'adjclose': 6.791999816894531,
        'close': 6.791999816894531,
        'date': 1532386800,
        'formatted_date': '2018-07-23',
        'high': 6.825300216674805,
        'low': 6.7829999923706055,
        'open': 6.7829999923706055,
        'volume': 0},
       {'adjclose': 6.790500164031982,
        'close': 6.790500164031982,
        'date': 1532473200,
        'formatted_date': '2018-07-24',
        'high': 6.804599761962891,
        'low': 6.747200012207031,
        'open': 6.781499862670898,
        'volume': 0},
       {'adjclose': 6.768700122833252,
        'close': 6.768700122833252,
        'date': 1532559600,
        'formatted_date': '2018-07-25',
        'high': 6.791800022125244,
        'low': 6.731800079345703,
        'open': 6.759699821472168,
        'volume': 0},
       {'adjclose': 6.782800197601318,
        'close': 6.782800197601318,
        'date': 1532646000,
        'formatted_date': '2018-07-26',
        'high': 6.838399887084961,
        'low': 6.782800197601318,
        'open': 6.782800197601318,
        'volume': 0},
       {'adjclose': 6.812699794769287,
        'close': 6.812699794769287,
        'date': 1532905200,
        'formatted_date': '2018-07-29',
        'high': 6.838699817657471,
        'low': 6.803699970245361,
        'open': 6.803699970245361,
        'volume': 0},
       {'adjclose': 6.814899921417236,
        'close': 6.814899921417236,
        'date': 1532991600,
        'formatted_date': '2018-07-30',
        'high': 6.840099811553955,
        'low': 6.804999828338623,
        'open': 6.804999828338623,
        'volume': 0},
       {'adjclose': 6.811699867248535,
        'close': 6.811699867248535,
        'date': 1533078000,
        'formatted_date': '2018-07-31',
        'high': 6.830100059509277,
        'low': 6.784299850463867,
        'open': 6.811800003051758,
        'volume': 0},
       {'adjclose': 6.8225998878479,
        'close': 6.8225998878479,
        'date': 1533164400,
        'formatted_date': '2018-08-01',
        'high': 6.847799777984619,
        'low': 6.794899940490723,
        'open': 6.822299957275391,
        'volume': 0},
       {'adjclose': 6.832799911499023,
        'close': 6.832799911499023,
        'date': 1533250800,
        'formatted_date': '2018-08-02',
        'high': 6.8927001953125,
        'low': 6.826300144195557,
        'open': 6.832799911499023,
        'volume': 0},
       {'adjclose': 6.833199977874756,
        'close': 6.833199977874756,
        'date': 1533510000,
        'formatted_date': '2018-08-05',
        'high': 6.8531999588012695,
        'low': 6.811399936676025,
        'open': 6.833399772644043,
        'volume': 0},
       {'adjclose': 6.854100227355957,
        'close': 6.854100227355957,
        'date': 1533596400,
        'formatted_date': '2018-08-06',
        'high': 6.861199855804443,
        'low': 6.817699909210205,
        'open': 6.85290002822876,
        'volume': 0},
       {'adjclose': 6.833600044250488,
        'close': 6.833600044250488,
        'date': 1533682800,
        'formatted_date': '2018-08-07',
        'high': 6.841000080108643,
        'low': 6.797999858856201,
        'open': 6.834499835968018,
        'volume': 0},
       {'adjclose': 6.83519983291626,
        'close': 6.83519983291626,
        'date': 1533769200,
        'formatted_date': '2018-08-08',
        'high': 6.837900161743164,
        'low': 6.807000160217285,
        'open': 6.834799766540527,
        'volume': 0},
       {'adjclose': 6.817200183868408,
        'close': 6.817200183868408,
        'date': 1533855600,
        'formatted_date': '2018-08-09',
        'high': 6.860000133514404,
        'low': 6.815499782562256,
        'open': 6.817200183868408,
        'volume': 0},
       {'adjclose': 6.846199989318848,
        'close': 6.846199989318848,
        'date': 1534114800,
        'formatted_date': '2018-08-12',
        'high': 6.8902997970581055,
        'low': 6.837200164794922,
        'open': 6.837200164794922,
        'volume': 0},
       {'adjclose': 6.889400005340576,
        'close': 6.889400005340576,
        'date': 1534201200,
        'formatted_date': '2018-08-13',
        'high': 6.892499923706055,
        'low': 6.872000217437744,
        'open': 6.890100002288818,
        'volume': 0},
       {'adjclose': 6.884699821472168,
        'close': 6.884699821472168,
        'date': 1534287600,
        'formatted_date': '2018-08-14',
        'high': 6.933800220489502,
        'low': 6.881700038909912,
        'open': 6.884699821472168,
        'volume': 0},
       {'adjclose': 6.933800220489502,
        'close': 6.933800220489502,
        'date': 1534374000,
        'formatted_date': '2018-08-15',
        'high': 6.933800220489502,
        'low': 6.880000114440918,
        'open': 6.924799919128418,
        'volume': 0},
       {'adjclose': 6.881499767303467,
        'close': 6.881499767303467,
        'date': 1534460400,
        'formatted_date': '2018-08-16',
        'high': 6.892899990081787,
        'low': 6.858500003814697,
        'open': 6.872499942779541,
        'volume': 0},
       {'adjclose': 6.8765997886657715,
        'close': 6.8765997886657715,
        'date': 1534719600,
        'formatted_date': '2018-08-19',
        'high': 6.8780999183654785,
        'low': 6.8394999504089355,
        'open': 6.876500129699707,
        'volume': 0},
       {'adjclose': 6.856800079345703,
        'close': 6.856800079345703,
        'date': 1534806000,
        'formatted_date': '2018-08-20',
        'high': 6.85699987411499,
        'low': 6.8242998123168945,
        'open': 6.847799777984619,
        'volume': 0},
       {'adjclose': 6.8454999923706055,
        'close': 6.8454999923706055,
        'date': 1534892400,
        'formatted_date': '2018-08-21',
        'high': 6.848299980163574,
        'low': 6.8302998542785645,
        'open': 6.845900058746338,
        'volume': 0},
       {'adjclose': 6.843200206756592,
        'close': 6.843200206756592,
        'date': 1534978800,
        'formatted_date': '2018-08-22',
        'high': 6.877600193023682,
        'low': 6.8308000564575195,
        'open': 6.841000080108643,
        'volume': 0},
       {'adjclose': 6.877500057220459,
        'close': 6.877500057220459,
        'date': 1535065200,
        'formatted_date': '2018-08-23',
        'high': 6.889699935913086,
        'low': 6.806399822235107,
        'open': 6.876699924468994,
        'volume': 0},
       {'adjclose': 6.800600051879883,
        'close': 6.800600051879883,
        'date': 1535324400,
        'formatted_date': '2018-08-26',
        'high': 6.825900077819824,
        'low': 6.792900085449219,
        'open': 6.796999931335449,
        'volume': 0},
       {'adjclose': 6.813300132751465,
        'close': 6.813300132751465,
        'date': 1535410800,
        'formatted_date': '2018-08-27',
        'high': 6.821400165557861,
        'low': 6.7906999588012695,
        'open': 6.810500144958496,
        'volume': 0},
       {'adjclose': 6.804200172424316,
        'close': 6.804200172424316,
        'date': 1535497200,
        'formatted_date': '2018-08-28',
        'high': 6.828400135040283,
        'low': 6.799499988555908,
        'open': 6.802299976348877,
        'volume': 0},
       {'adjclose': 6.818699836730957,
        'close': 6.818699836730957,
        'date': 1535583600,
        'formatted_date': '2018-08-29',
        'high': 6.843999862670898,
        'low': 6.817399978637695,
        'open': 6.818699836730957,
        'volume': 0},
       {'adjclose': 6.843100070953369,
        'close': 6.843100070953369,
        'date': 1535670000,
        'formatted_date': '2018-08-30',
        'high': 6.8454999923706055,
        'low': 6.825099945068359,
        'open': 6.843200206756592,
        'volume': 0},
       {'adjclose': 6.83459997177124,
        'close': 6.83459997177124,
        'date': 1535929200,
        'formatted_date': '2018-09-02',
        'high': 6.841400146484375,
        'low': 6.81279993057251,
        'open': 6.832399845123291,
        'volume': 0},
       {'adjclose': 6.8221001625061035,
        'close': 6.8221001625061035,
        'date': 1536015600,
        'formatted_date': '2018-09-03',
        'high': 6.844099998474121,
        'low': 6.797500133514404,
        'open': 6.822800159454346,
        'volume': 0},
       {'adjclose': 6.84250020980835,
        'close': 6.84250020980835,
        'date': 1536102000,
        'formatted_date': '2018-09-04',
        'high': 6.8445000648498535,
        'low': 6.826600074768066,
        'open': 6.841400146484375,
        'volume': 0},
       {'adjclose': 6.829999923706055,
        'close': 6.829999923706055,
        'date': 1536188400,
        'formatted_date': '2018-09-05',
        'high': 6.840099811553955,
        'low': 6.818299770355225,
        'open': 6.829599857330322,
        'volume': 0},
       {'adjclose': 6.834400177001953,
        'close': 6.834400177001953,
        'date': 1536274800,
        'formatted_date': '2018-09-06',
        'high': 6.849100112915039,
        'low': 6.826200008392334,
        'open': 6.8358001708984375,
        'volume': 0},
       {'adjclose': 6.839099884033203,
        'close': 6.839099884033203,
        'date': 1536534000,
        'formatted_date': '2018-09-09',
        'high': 6.865300178527832,
        'low': 6.833799839019775,
        'open': 6.833799839019775,
        'volume': 0},
       {'adjclose': 6.855299949645996,
        'close': 6.855299949645996,
        'date': 1536620400,
        'formatted_date': '2018-09-10',
        'high': 6.877500057220459,
        'low': 6.8520002365112305,
        'open': 6.855100154876709,
        'volume': 0},
       {'adjclose': 6.8744001388549805,
        'close': 6.8744001388549805,
        'date': 1536706800,
        'formatted_date': '2018-09-11',
        'high': 6.878300189971924,
        'low': 6.851500034332275,
        'open': 6.872499942779541,
        'volume': 0},
       {'adjclose': 6.859899997711182,
        'close': 6.859899997711182,
        'date': 1536793200,
        'formatted_date': '2018-09-12',
        'high': 6.862599849700928,
        'low': 6.8242998123168945,
        'open': 6.859899997711182,
        'volume': 0},
       {'adjclose': 6.842899799346924,
        'close': 6.842899799346924,
        'date': 1536879600,
        'formatted_date': '2018-09-13',
        'high': 6.867400169372559,
        'low': 6.837100028991699,
        'open': 6.843599796295166,
        'volume': 0},
       {'adjclose': 6.865600109100342,
        'close': 6.865600109100342,
        'date': 1537138800,
        'formatted_date': '2018-09-16',
        'high': 6.877500057220459,
        'low': 6.855100154876709,
        'open': 6.865799903869629,
        'volume': 0},
       {'adjclose': 6.855500221252441,
        'close': 6.855500221252441,
        'date': 1537225200,
        'formatted_date': '2018-09-17',
        'high': 6.877799987792969,
        'low': 6.853400230407715,
        'open': 6.855899810791016,
        'volume': 0},
       {'adjclose': 6.860199928283691,
        'close': 6.860199928283691,
        'date': 1537311600,
        'formatted_date': '2018-09-18',
        'high': 6.864999771118164,
        'low': 6.846499919891357,
        'open': 6.861000061035156,
        'volume': 0},
       {'adjclose': 6.84689998626709,
        'close': 6.84689998626709,
        'date': 1537398000,
        'formatted_date': '2018-09-19',
        'high': 6.8566999435424805,
        'low': 6.831999778747559,
        'open': 6.847099781036377,
        'volume': 0},
       {'adjclose': 6.845900058746338,
        'close': 6.845900058746338,
        'date': 1537484400,
        'formatted_date': '2018-09-20',
        'high': 6.860499858856201,
        'low': 6.829500198364258,
        'open': 6.845799922943115,
        'volume': 0},
       {'adjclose': 6.8566999435424805,
        'close': 6.8566999435424805,
        'date': 1537743600,
        'formatted_date': '2018-09-23',
        'high': 6.85860013961792,
        'low': 6.842299938201904,
        'open': 6.856100082397461,
        'volume': 0},
       {'adjclose': 6.8734002113342285,
        'close': 6.8734002113342285,
        'date': 1537830000,
        'formatted_date': '2018-09-24',
        'high': 6.879799842834473,
        'low': 6.85230016708374,
        'open': 6.8734002113342285,
        'volume': 0},
       {'adjclose': 6.866300106048584,
        'close': 6.866300106048584,
        'date': 1537916400,
        'formatted_date': '2018-09-25',
        'high': 6.878900051116943,
        'low': 6.86359977722168,
        'open': 6.866300106048584,
        'volume': 0},
       {'adjclose': 6.876100063323975,
        'close': 6.876100063323975,
        'date': 1538002800,
        'formatted_date': '2018-09-26',
        'high': 6.890999794006348,
        'low': 6.8684000968933105,
        'open': 6.877500057220459,
        'volume': 0},
       {'adjclose': 6.880300045013428,
        'close': 6.880300045013428,
        'date': 1538089200,
        'formatted_date': '2018-09-27',
        'high': 6.889400005340576,
        'low': 6.862500190734863,
        'open': 6.880300045013428,
        'volume': 0},
       {'adjclose': 6.8678998947143555,
        'close': 6.8678998947143555,
        'date': 1538348400,
        'formatted_date': '2018-09-30',
        'high': 6.868000030517578,
        'low': 6.85890007019043,
        'open': 6.868000030517578,
        'volume': 0},
       {'adjclose': 6.8678998947143555,
        'close': 6.8678998947143555,
        'date': 1538434800,
        'formatted_date': '2018-10-01',
        'high': 6.8678998947143555,
        'low': 6.85890007019043,
        'open': 6.85890007019043,
        'volume': 0},
       {'adjclose': 6.8678998947143555,
        'close': 6.8678998947143555,
        'date': 1538521200,
        'formatted_date': '2018-10-02',
        'high': 6.868000030517578,
        'low': 6.85890007019043,
        'open': 6.85890007019043,
        'volume': 0},
       {'adjclose': 6.867800235748291,
        'close': 6.867800235748291,
        'date': 1538607600,
        'formatted_date': '2018-10-03',
        'high': 6.8678998947143555,
        'low': 6.85890007019043,
        'open': 6.85890007019043,
        'volume': 0},
       {'adjclose': 6.8678998947143555,
        'close': 6.8678998947143555,
        'date': 1538694000,
        'formatted_date': '2018-10-04',
        'high': 6.8678998947143555,
        'low': 6.8678998947143555,
        'open': 6.8678998947143555,
        'volume': 0},
       {'adjclose': 6.85890007019043,
        'close': 6.85890007019043,
        'date': 1538953200,
        'formatted_date': '2018-10-07',
        'high': 6.932300090789795,
        'low': 6.85890007019043,
        'open': 6.85890007019043,
        'volume': 0},
       {'adjclose': 6.929800033569336,
        'close': 6.929800033569336,
        'date': 1539039600,
        'formatted_date': '2018-10-08',
        'high': 6.929800033569336,
        'low': 6.904099941253662,
        'open': 6.92080020904541,
        'volume': 0},
       {'adjclose': 6.921800136566162,
        'close': 6.921800136566162,
        'date': 1539126000,
        'formatted_date': '2018-10-09',
        'high': 6.925099849700928,
        'low': 6.907299995422363,
        'open': 6.912799835205078,
        'volume': 0},
       {'adjclose': 6.923299789428711,
        'close': 6.923299789428711,
        'date': 1539212400,
        'formatted_date': '2018-10-10',
        'high': 6.93179988861084,
        'low': 6.885799884796143,
        'open': 6.914299964904785,
        'volume': 0},
       {'adjclose': 6.888599872589111,
        'close': 6.888599872589111,
        'date': 1539298800,
        'formatted_date': '2018-10-11',
        'high': 6.927999973297119,
        'low': 6.888599872589111,
        'open': 6.888599872589111,
        'volume': 0},
       {'adjclose': 6.921199798583984,
        'close': 6.921199798583984,
        'date': 1539558000,
        'formatted_date': '2018-10-14',
        'high': 6.929100036621094,
        'low': 6.90880012512207,
        'open': 6.921500205993652,
        'volume': 0},
       {'adjclose': 6.915900230407715,
        'close': 6.915900230407715,
        'date': 1539644400,
        'formatted_date': '2018-10-15',
        'high': 6.925000190734863,
        'low': 6.901299953460693,
        'open': 6.915800094604492,
        'volume': 0},
       {'adjclose': 6.910999774932861,
        'close': 6.910999774932861,
        'date': 1539730800,
        'formatted_date': '2018-10-16',
        'high': 6.928599834442139,
        'low': 6.9019999504089355,
        'open': 6.9019999504089355,
        'volume': 0},
       {'adjclose': 6.926300048828125,
        'close': 6.926300048828125,
        'date': 1539817200,
        'formatted_date': '2018-10-17',
        'high': 6.939899921417236,
        'low': 6.924900054931641,
        'open': 6.926499843597412,
        'volume': 0},
       {'adjclose': 6.936699867248535,
        'close': 6.936699867248535,
        'date': 1539903600,
        'formatted_date': '2018-10-18',
        'high': 6.940299987792969,
        'low': 6.917399883270264,
        'open': 6.936699867248535,
        'volume': 0},
       {'adjclose': 6.928599834442139,
        'close': 6.928599834442139,
        'date': 1540162800,
        'formatted_date': '2018-10-21',
        'high': 6.946499824523926,
        'low': 6.924200057983398,
        'open': 6.928699970245361,
        'volume': 0},
       {'adjclose': 6.946499824523926,
        'close': 6.946499824523926,
        'date': 1540249200,
        'formatted_date': '2018-10-22',
        'high': 6.946499824523926,
        'low': 6.92609977722168,
        'open': 6.9375,
        'volume': 0},
       {'adjclose': 6.937399864196777,
        'close': 6.937399864196777,
        'date': 1540335600,
        'formatted_date': '2018-10-23',
        'high': 6.943399906158447,
        'low': 6.927700042724609,
        'open': 6.937399864196777,
        'volume': 0},
       {'adjclose': 6.942999839782715,
        'close': 6.942999839782715,
        'date': 1540422000,
        'formatted_date': '2018-10-24',
        'high': 6.950900077819824,
        'low': 6.9328999519348145,
        'open': 6.934000015258789,
        'volume': 0},
       {'adjclose': 6.947999954223633,
        'close': 6.947999954223633,
        'date': 1540508400,
        'formatted_date': '2018-10-25',
        'high': 6.963200092315674,
        'low': 6.933499813079834,
        'open': 6.939000129699707,
        'volume': 0},
       {'adjclose': 6.942500114440918,
        'close': 6.942500114440918,
        'date': 1540771200,
        'formatted_date': '2018-10-29',
        'high': 6.962299823760986,
        'low': 6.9415998458862305,
        'open': 6.942500114440918,
        'volume': 0},
       {'adjclose': 6.951900005340576,
        'close': 6.951900005340576,
        'date': 1540857600,
        'formatted_date': '2018-10-30',
        'high': 6.969900131225586,
        'low': 6.951900005340576,
        'open': 6.951900005340576,
        'volume': 0},
       {'adjclose': 6.966300010681152,
        'close': 6.966300010681152,
        'date': 1540944000,
        'formatted_date': '2018-10-31',
        'high': 6.976099967956543,
        'low': 6.9567999839782715,
        'open': 6.96619987487793,
        'volume': 0},
       {'adjclose': 6.974699974060059,
        'close': 6.974699974060059,
        'date': 1541030400,
        'formatted_date': '2018-11-01',
        'high': 6.974800109863281,
        'low': 6.922399997711182,
        'open': 6.974699974060059,
        'volume': 0},
       {'adjclose': 6.922399997711182,
        'close': 6.922399997711182,
        'date': 1541116800,
        'formatted_date': '2018-11-02',
        'high': 6.931000232696533,
        'low': 6.867599964141846,
        'open': 6.922399997711182,
        'volume': 0},
       {'adjclose': 6.889900207519531,
        'close': 6.889900207519531,
        'date': 1541376000,
        'formatted_date': '2018-11-05',
        'high': 6.9293999671936035,
        'low': 6.889699935913086,
        'open': 6.889900207519531,
        'volume': 0},
       {'adjclose': 6.924799919128418,
        'close': 6.924799919128418,
        'date': 1541462400,
        'formatted_date': '2018-11-06',
        'high': 6.9274001121521,
        'low': 6.904200077056885,
        'open': 6.924799919128418,
        'volume': 0},
       {'adjclose': 6.918499946594238,
        'close': 6.918499946594238,
        'date': 1541548800,
        'formatted_date': '2018-11-07',
        'high': 6.940000057220459,
        'low': 6.904699802398682,
        'open': 6.918499946594238,
        'volume': 0},
       {'adjclose': 6.909999847412109,
        'close': 6.909999847412109,
        'date': 1541635200,
        'formatted_date': '2018-11-08',
        'high': 6.935999870300293,
        'low': 6.909999847412109,
        'open': 6.909999847412109,
        'volume': 0},
       {'adjclose': 6.933499813079834,
        'close': 6.933499813079834,
        'date': 1541721600,
        'formatted_date': '2018-11-09',
        'high': 6.955999851226807,
        'low': 6.933000087738037,
        'open': 6.933199882507324,
        'volume': 0},
       {'adjclose': 6.955900192260742,
        'close': 6.955900192260742,
        'date': 1541980800,
        'formatted_date': '2018-11-12',
        'high': 6.9679999351501465,
        'low': 6.946800231933594,
        'open': 6.955900192260742,
        'volume': 0},
       {'adjclose': 6.962500095367432,
        'close': 6.962500095367432,
        'date': 1542067200,
        'formatted_date': '2018-11-13',
        'high': 6.968800067901611,
        'low': 6.943699836730957,
        'open': 6.962500095367432,
        'volume': 0},
       {'adjclose': 6.9552001953125,
        'close': 6.9552001953125,
        'date': 1542153600,
        'formatted_date': '2018-11-14',
        'high': 6.95550012588501,
        'low': 6.940499782562256,
        'open': 6.9552001953125,
        'volume': 0},
       {'adjclose': 6.94950008392334,
        'close': 6.94950008392334,
        'date': 1542240000,
        'formatted_date': '2018-11-15',
        'high': 6.9496002197265625,
        'low': 6.928999900817871,
        'open': 6.94950008392334,
        'volume': 0},
       {'adjclose': 6.938199996948242,
        'close': 6.938199996948242,
        'date': 1542326400,
        'formatted_date': '2018-11-16',
        'high': 6.951000213623047,
        'low': 6.929800033569336,
        'open': 6.938000202178955,
        'volume': 0},
       {'adjclose': 6.936999797821045,
        'close': 6.936999797821045,
        'date': 1542585600,
        'formatted_date': '2018-11-19',
        'high': 6.943999767303467,
        'low': 6.927999973297119,
        'open': 6.936999797821045,
        'volume': 0},
       {'adjclose': 6.940999984741211,
        'close': 6.940999984741211,
        'date': 1542672000,
        'formatted_date': '2018-11-20',
        'high': 6.945799827575684,
        'low': 6.927299976348877,
        'open': 6.940999984741211,
        'volume': 0},
       {'adjclose': 6.944399833679199,
        'close': 6.944399833679199,
        'date': 1542758400,
        'formatted_date': '2018-11-21',
        'high': 6.948400020599365,
        'low': 6.921000003814697,
        'open': 6.944399833679199,
        'volume': 0},
       {'adjclose': 6.926199913024902,
        'close': 6.926199913024902,
        'date': 1542844800,
        'formatted_date': '2018-11-22',
        'high': 6.936999797821045,
        'low': 6.916999816894531,
        'open': 6.926300048828125,
        'volume': 0},
       {'adjclose': 6.931000232696533,
        'close': 6.931000232696533,
        'date': 1542931200,
        'formatted_date': '2018-11-23',
        'high': 6.948299884796143,
        'low': 6.921999931335449,
        'open': 6.93120002746582,
        'volume': 0},
       {'adjclose': 6.947500228881836,
        'close': 6.947500228881836,
        'date': 1543190400,
        'formatted_date': '2018-11-26',
        'high': 6.947500228881836,
        'low': 6.926400184631348,
        'open': 6.947500228881836,
        'volume': 0},
       {'adjclose': 6.930799961090088,
        'close': 6.930799961090088,
        'date': 1543276800,
        'formatted_date': '2018-11-27',
        'high': 6.952499866485596,
        'low': 6.930799961090088,
        'open': 6.930799961090088,
        'volume': 0},
       {'adjclose': 6.9506001472473145,
        'close': 6.9506001472473145,
        'date': 1543363200,
        'formatted_date': '2018-11-28',
        'high': 6.956200122833252,
        'low': 6.942699909210205,
        'open': 6.950500011444092,
        'volume': 0},
       {'adjclose': 6.952899932861328,
        'close': 6.952899932861328,
        'date': 1543449600,
        'formatted_date': '2018-11-29',
        'high': 6.952899932861328,
        'low': 6.92710018157959,
        'open': 6.952899932861328,
        'volume': 0},
       {'adjclose': 6.941500186920166,
        'close': 6.941500186920166,
        'date': 1543536000,
        'formatted_date': '2018-11-30',
        'high': 6.958899974822998,
        'low': 6.932499885559082,
        'open': 6.9415998458862305,
        'volume': 0},
       {'adjclose': 6.958000183105469,
        'close': 6.958000183105469,
        'date': 1543795200,
        'formatted_date': '2018-12-03',
        'high': 6.959499835968018,
        'low': 6.875999927520752,
        'open': 6.958000183105469,
        'volume': 0},
       {'adjclose': 6.882299900054932,
        'close': 6.882299900054932,
        'date': 1543881600,
        'formatted_date': '2018-12-04',
        'high': 6.882299900054932,
        'low': 6.821800231933594,
        'open': 6.8821001052856445,
        'volume': 0},
       {'adjclose': 6.836299896240234,
        'close': 6.836299896240234,
        'date': 1543968000,
        'formatted_date': '2018-12-05',
        'high': 6.868299961090088,
        'low': 6.8354997634887695,
        'open': 6.836299896240234,
        'volume': 0},
       {'adjclose': 6.855800151824951,
        'close': 6.855800151824951,
        'date': 1544054400,
        'formatted_date': '2018-12-06',
        'high': 6.896699905395508,
        'low': 6.8557000160217285,
        'open': 6.855800151824951,
        'volume': 0},
       {'adjclose': 6.881700038909912,
        'close': 6.881700038909912,
        'date': 1544140800,
        'formatted_date': '2018-12-07',
        'high': 6.888599872589111,
        'low': 6.8649001121521,
        'open': 6.881700038909912,
        'volume': 0},
       {'adjclose': 6.87470006942749,
        'close': 6.87470006942749,
        'date': 1544400000,
        'formatted_date': '2018-12-10',
        'high': 6.913300037384033,
        'low': 6.865699768066406,
        'open': 6.87470006942749,
        'volume': 0},
       {'adjclose': 6.910999774932861,
        'close': 6.910999774932861,
        'date': 1544486400,
        'formatted_date': '2018-12-11',
        'high': 6.91379976272583,
        'low': 6.890200138092041,
        'open': 6.910900115966797,
        'volume': 0},
       {'adjclose': 6.89900016784668,
        'close': 6.89900016784668,
        'date': 1544572800,
        'formatted_date': '2018-12-12',
        'high': 6.89900016784668,
        'low': 6.869100093841553,
        'open': 6.89900016784668,
        'volume': 0},
       {'adjclose': 6.879000186920166,
        'close': 6.879000186920166,
        'date': 1544659200,
        'formatted_date': '2018-12-13',
        'high': 6.882900238037109,
        'low': 6.862599849700928,
        'open': 6.879000186920166,
        'volume': 0},
       {'adjclose': 6.88070011138916,
        'close': 6.88070011138916,
        'date': 1544745600,
        'formatted_date': '2018-12-14',
        'high': 6.906599998474121,
        'low': 6.8805999755859375,
        'open': 6.88070011138916,
        'volume': 0},
       {'adjclose': 6.906599998474121,
        'close': 6.906599998474121,
        'date': 1545004800,
        'formatted_date': '2018-12-17',
        'high': 6.906700134277344,
        'low': 6.8856000900268555,
        'open': 6.906599998474121,
        'volume': 0},
       {'adjclose': 6.896200180053711,
        'close': 6.896200180053711,
        'date': 1545091200,
        'formatted_date': '2018-12-18',
        'high': 6.899600028991699,
        'low': 6.881999969482422,
        'open': 6.896200180053711,
        'volume': 0},
       {'adjclose': 6.894199848175049,
        'close': 6.894199848175049,
        'date': 1545177600,
        'formatted_date': '2018-12-19',
        'high': 6.8979997634887695,
        'low': 6.886099815368652,
        'open': 6.894199848175049,
        'volume': 0},
       {'adjclose': 6.890999794006348,
        'close': 6.890999794006348,
        'date': 1545264000,
        'formatted_date': '2018-12-20',
        'high': 6.910999774932861,
        'low': 6.875100135803223,
        'open': 6.8907999992370605,
        'volume': 0},
       {'adjclose': 6.884099960327148,
        'close': 6.884099960327148,
        'date': 1545350400,
        'formatted_date': '2018-12-21',
        'high': 6.905700206756592,
        'low': 6.877799987792969,
        'open': 6.884099960327148,
        'volume': 0},
       {'adjclose': 6.905399799346924,
        'close': 6.905399799346924,
        'date': 1545609600,
        'formatted_date': '2018-12-24',
        'high': 6.910900115966797,
        'low': 6.887899875640869,
        'open': 6.905399799346924,
        'volume': 0},
       {'adjclose': 6.898099899291992,
        'close': 6.898099899291992,
        'date': 1545696000,
        'formatted_date': '2018-12-25',
        'high': 6.8983001708984375,
        'low': 6.8755998611450195,
        'open': 6.898099899291992,
        'volume': 0},
       {'adjclose': 6.8983001708984375,
        'close': 6.8983001708984375,
        'date': 1545782400,
        'formatted_date': '2018-12-26',
        'high': 6.898399829864502,
        'low': 6.881100177764893,
        'open': 6.8983001708984375,
        'volume': 0},
       {'adjclose': 6.898099899291992,
        'close': 6.898099899291992,
        'date': 1545868800,
        'formatted_date': '2018-12-27',
        'high': 6.898399829864502,
        'low': 6.855599880218506,
        'open': 6.898099899291992,
        'volume': 0},
       {'adjclose': 6.865300178527832,
        'close': 6.865300178527832,
        'date': 1545955200,
        'formatted_date': '2018-12-28',
        'high': 6.877500057220459,
        'low': 6.8445000648498535,
        'open': 6.865300178527832,
        'volume': 0},
       {'adjclose': 6.877200126647949,
        'close': 6.877200126647949,
        'date': 1546214400,
        'formatted_date': '2018-12-31',
        'high': 6.877500057220459,
        'low': 6.877200126647949,
        'open': 6.877200126647949,
        'volume': 0},
       {'adjclose': 6.877600193023682,
        'close': 6.877600193023682,
        'date': 1546300800,
        'formatted_date': '2019-01-01',
        'high': 6.877600193023682,
        'low': 6.873000144958496,
        'open': 6.877600193023682,
        'volume': 0},
       {'adjclose': 6.877500057220459,
        'close': 6.877500057220459,
        'date': 1546387200,
        'formatted_date': '2019-01-02',
        'high': 6.878499984741211,
        'low': 6.843299865722656,
        'open': 6.877500057220459,
        'volume': 0},
       {'adjclose': 6.861100196838379,
        'close': 6.861100196838379,
        'date': 1546473600,
        'formatted_date': '2019-01-03',
        'high': 6.881700038909912,
        'low': 6.861100196838379,
        'open': 6.861100196838379,
        'volume': 0},
       {'adjclose': 6.871099948883057,
        'close': 6.871099948883057,
        'date': 1546560000,
        'formatted_date': '2019-01-04',
        'high': 6.870999813079834,
        'low': 6.854899883270264,
        'open': 6.870999813079834,
        'volume': 0},
       {'adjclose': 6.8684000968933105,
        'close': 6.8684000968933105,
        'date': 1546819200,
        'formatted_date': '2019-01-07',
        'high': 6.869699954986572,
        'low': 6.839600086212158,
        'open': 6.8684000968933105,
        'volume': 0},
       {'adjclose': 6.849999904632568,
        'close': 6.849999904632568,
        'date': 1546905600,
        'formatted_date': '2019-01-08',
        'high': 6.859799861907959,
        'low': 6.834199905395508,
        'open': 6.849999904632568,
        'volume': 0},
       {'adjclose': 6.852200031280518,
        'close': 6.852200031280518,
        'date': 1546992000,
        'formatted_date': '2019-01-09',
        'high': 6.85230016708374,
        'low': 6.816400051116943,
        'open': 6.852200031280518,
        'volume': 0},
       {'adjclose': 6.8155999183654785,
        'close': 6.8155999183654785,
        'date': 1547078400,
        'formatted_date': '2019-01-10',
        'high': 6.820899963378906,
        'low': 6.772500038146973,
        'open': 6.815700054168701,
        'volume': 0},
       {'adjclose': 6.787499904632568,
        'close': 6.787499904632568,
        'date': 1547164800,
        'formatted_date': '2019-01-11',
        'high': 6.789100170135498,
        'low': 6.731299877166748,
        'open': 6.787499904632568,
        'volume': 0},
       {'adjclose': 6.76200008392334,
        'close': 6.76200008392334,
        'date': 1547424000,
        'formatted_date': '2019-01-14',
        'high': 6.7692999839782715,
        'low': 6.752299785614014,
        'open': 6.76200008392334,
        'volume': 0},
       {'adjclose': 6.767099857330322,
        'close': 6.767099857330322,
        'date': 1547510400,
        'formatted_date': '2019-01-15',
        'high': 6.768499851226807,
        'low': 6.736599922180176,
        'open': 6.767099857330322,
        'volume': 0},
       {'adjclose': 6.750999927520752,
        'close': 6.750999927520752,
        'date': 1547596800,
        'formatted_date': '2019-01-16',
        'high': 6.771200180053711,
        'low': 6.744999885559082,
        'open': 6.750999927520752,
        'volume': 0},
       {'adjclose': 6.75600004196167,
        'close': 6.75600004196167,
        'date': 1547683200,
        'formatted_date': '2019-01-17',
        'high': 6.7769999504089355,
        'low': 6.736499786376953,
        'open': 6.75600004196167,
        'volume': 0},
       {'adjclose': 6.775400161743164,
        'close': 6.775400161743164,
        'date': 1547769600,
        'formatted_date': '2019-01-18',
        'high': 6.779699802398682,
        'low': 6.760000228881836,
        'open': 6.775400161743164,
        'volume': 0},
       {'adjclose': 6.7778000831604,
        'close': 6.7778000831604,
        'date': 1548028800,
        'formatted_date': '2019-01-21',
        'high': 6.798399925231934,
        'low': 6.7778000831604,
        'open': 6.7778000831604,
        'volume': 0},
       {'adjclose': 6.797299861907959,
        'close': 6.797299861907959,
        'date': 1548115200,
        'formatted_date': '2019-01-22',
        'high': 6.809599876403809,
        'low': 6.791999816894531,
        'open': 6.7972002029418945,
        'volume': 0},
       {'adjclose': 6.807000160217285,
        'close': 6.807000160217285,
        'date': 1548201600,
        'formatted_date': '2019-01-23',
        'high': 6.807199954986572,
        'low': 6.775300025939941,
        'open': 6.807000160217285,
        'volume': 0},
       {'adjclose': 6.790999889373779,
        'close': 6.790999889373779,
        'date': 1548288000,
        'formatted_date': '2019-01-24',
        'high': 6.796299934387207,
        'low': 6.768199920654297,
        'open': 6.790900230407715,
        'volume': 0},
       {'adjclose': 6.787600040435791,
        'close': 6.787600040435791,
        'date': 1548374400,
        'formatted_date': '2019-01-25',
        'high': 6.7895002365112305,
        'low': 6.746600151062012,
        'open': 6.787700176239014,
        'volume': 0},
       {'adjclose': 6.746399879455566,
        'close': 6.746399879455566,
        'date': 1548633600,
        'formatted_date': '2019-01-28',
        'high': 6.746399879455566,
        'low': 6.727700233459473,
        'open': 6.746300220489502,
        'volume': 0},
       {'adjclose': 6.74429988861084,
        'close': 6.74429988861084,
        'date': 1548720000,
        'formatted_date': '2019-01-29',
        'high': 6.751999855041504,
        'low': 6.723800182342529,
        'open': 6.744200229644775,
        'volume': 0},
       {'adjclose': 6.73199987411499,
        'close': 6.73199987411499,
        'date': 1548806400,
        'formatted_date': '2019-01-30',
        'high': 6.73199987411499,
        'low': 6.703199863433838,
        'open': 6.73199987411499,
        'volume': 0},
       {'adjclose': 6.7154998779296875,
        'close': 6.7154998779296875,
        'date': 1548892800,
        'formatted_date': '2019-01-31',
        'high': 6.716700077056885,
        'low': 6.686800003051758,
        'open': 6.7154998779296875,
        'volume': 0},
       {'adjclose': 6.69980001449585,
        'close': 6.69980001449585,
        'date': 1548979200,
        'formatted_date': '2019-02-01',
        'high': 6.743899822235107,
        'low': 6.690800189971924,
        'open': 6.69980001449585,
        'volume': 0},
       {'adjclose': 6.743800163269043,
        'close': 6.743800163269043,
        'date': 1549238400,
        'formatted_date': '2019-02-04',
        'high': 6.743899822235107,
        'low': 6.734799861907959,
        'open': 6.743800163269043,
        'volume': 0},
       {'adjclose': 6.743800163269043,
        'close': 6.743800163269043,
        'date': 1549324800,
        'formatted_date': '2019-02-05',
        'high': 6.743899822235107,
        'low': 6.734799861907959,
        'open': 6.743800163269043,
        'volume': 0},
       {'adjclose': 6.734799861907959,
        'close': 6.734799861907959,
        'date': 1549411200,
        'formatted_date': '2019-02-06',
        'high': 6.743899822235107,
        'low': 6.734799861907959,
        'open': 6.743800163269043,
        'volume': 0},
       {'adjclose': 6.743800163269043,
        'close': 6.743800163269043,
        'date': 1549497600,
        'formatted_date': '2019-02-07',
        'high': 6.743800163269043,
        'low': 6.734799861907959,
        'open': 6.74370002746582,
        'volume': 0},
       {'adjclose': 6.743800163269043,
        'close': 6.743800163269043,
        'date': 1549584000,
        'formatted_date': '2019-02-08',
        'high': 6.743800163269043,
        'low': 6.742599964141846,
        'open': 6.743800163269043,
        'volume': 0},
       {'adjclose': 6.743800163269043,
        'close': 6.743800163269043,
        'date': 1549843200,
        'formatted_date': '2019-02-11',
        'high': 6.791999816894531,
        'low': 6.743500232696533,
        'open': 6.743800163269043,
        'volume': 0},
       {'adjclose': 6.791399955749512,
        'close': 6.791399955749512,
        'date': 1549929600,
        'formatted_date': '2019-02-12',
        'high': 6.792600154876709,
        'low': 6.760300159454346,
        'open': 6.791399955749512,
        'volume': 0},
       {'adjclose': 6.7729997634887695,
        'close': 6.7729997634887695,
        'date': 1550016000,
        'formatted_date': '2019-02-13',
        'high': 6.773200035095215,
        'low': 6.749499797821045,
        'open': 6.7729997634887695,
        'volume': 0},
       {'adjclose': 6.759399890899658,
        'close': 6.759399890899658,
        'date': 1550102400,
        'formatted_date': '2019-02-14',
        'high': 6.776199817657471,
        'low': 6.753799915313721,
        'open': 6.759399890899658,
        'volume': 0},
       {'adjclose': 6.771200180053711,
        'close': 6.771200180053711,
        'date': 1550188800,
        'formatted_date': '2019-02-15',
        'high': 6.780099868774414,
        'low': 6.76200008392334,
        'open': 6.771200180053711,
        'volume': 0},
       {'adjclose': 6.77209997177124,
        'close': 6.77209997177124,
        'date': 1550448000,
        'formatted_date': '2019-02-18',
        'high': 6.772500038146973,
        'low': 6.751500129699707,
        'open': 6.77209997177124,
        'volume': 0},
       {'adjclose': 6.765699863433838,
        'close': 6.765699863433838,
        'date': 1550534400,
        'formatted_date': '2019-02-19',
        'high': 6.7789998054504395,
        'low': 6.7519001960754395,
        'open': 6.765699863433838,
        'volume': 0},
       {'adjclose': 6.757699966430664,
        'close': 6.757699966430664,
        'date': 1550620800,
        'formatted_date': '2019-02-20',
        'high': 6.757699966430664,
        'low': 6.70959997177124,
        'open': 6.757699966430664,
        'volume': 0},
       {'adjclose': 6.720300197601318,
        'close': 6.720300197601318,
        'date': 1550707200,
        'formatted_date': '2019-02-21',
        'high': 6.724699974060059,
        'low': 6.690999984741211,
        'open': 6.720300197601318,
        'volume': 0},
       {'adjclose': 6.719099998474121,
        'close': 6.719099998474121,
        'date': 1550793600,
        'formatted_date': '2019-02-22',
        'high': 6.729000091552734,
        'low': 6.703800201416016,
        'open': 6.719099998474121,
        'volume': 0},
       {'adjclose': 6.713200092315674,
        'close': 6.713200092315674,
        'date': 1551052800,
        'formatted_date': '2019-02-25',
        'high': 6.718400001525879,
        'low': 6.676700115203857,
        'open': 6.713200092315674,
        'volume': 0},
       {'adjclose': 6.688399791717529,
        'close': 6.688399791717529,
        'date': 1551139200,
        'formatted_date': '2019-02-26',
        'high': 6.703499794006348,
        'low': 6.6793999671936035,
        'open': 6.688399791717529,
        'volume': 0},
       {'adjclose': 6.69920015335083,
        'close': 6.69920015335083,
        'date': 1551225600,
        'formatted_date': '2019-02-27',
        'high': 6.69920015335083,
        'low': 6.668799877166748,
        'open': 6.69920015335083,
        'volume': 0},
       {'adjclose': 6.686200141906738,
        'close': 6.686200141906738,
        'date': 1551312000,
        'formatted_date': '2019-02-28',
        'high': 6.6930999755859375,
        'low': 6.67140007019043,
        'open': 6.686200141906738,
        'volume': 0},
       {'adjclose': 6.692999839782715,
        'close': 6.692999839782715,
        'date': 1551398400,
        'formatted_date': '2019-03-01',
        'high': 6.709099769592285,
        'low': 6.687900066375732,
        'open': 6.692800045013428,
        'volume': 0},
       {'adjclose': 6.705399990081787,
        'close': 6.705399990081787,
        'date': 1551657600,
        'formatted_date': '2019-03-04',
        'high': 6.706200122833252,
        'low': 6.683499813079834,
        'open': 6.705399990081787,
        'volume': 0},
       {'adjclose': 6.706299781799316,
        'close': 6.706299781799316,
        'date': 1551744000,
        'formatted_date': '2019-03-05',
        'high': 6.706600189208984,
        'low': 6.688399791717529,
        'open': 6.706200122833252,
        'volume': 0},
       {'adjclose': 6.706600189208984,
        'close': 6.706600189208984,
        'date': 1551830400,
        'formatted_date': '2019-03-06',
        'high': 6.717299938201904,
        'low': 6.6975998878479,
        'open': 6.706500053405762,
        'volume': 0},
       {'adjclose': 6.710899829864502,
        'close': 6.710899829864502,
        'date': 1551916800,
        'formatted_date': '2019-03-07',
        'high': 6.714000225067139,
        'low': 6.696800231933594,
        'open': 6.7108001708984375,
        'volume': 0},
       {'adjclose': 6.714099884033203,
        'close': 6.714099884033203,
        'date': 1552003200,
        'formatted_date': '2019-03-08',
        'high': 6.7256999015808105,
        'low': 6.710000038146973,
        'open': 6.714099884033203,
        'volume': 0},
       {'adjclose': 6.720600128173828,
        'close': 6.720600128173828,
        'date': 1552262400,
        'formatted_date': '2019-03-11',
        'high': 6.725599765777588,
        'low': 6.711599826812744,
        'open': 6.720600128173828,
        'volume': 0},
       {'adjclose': 6.725500106811523,
        'close': 6.725500106811523,
        'date': 1552348800,
        'formatted_date': '2019-03-12',
        'high': 6.725500106811523,
        'low': 6.697999954223633,
        'open': 6.725399971008301,
        'volume': 0},
       {'adjclose': 6.707600116729736,
        'close': 6.707600116729736,
        'date': 1552435200,
        'formatted_date': '2019-03-13',
        'high': 6.710599899291992,
        'low': 6.696899890899658,
        'open': 6.707499980926514,
        'volume': 0},
       {'adjclose': 6.706099987030029,
        'close': 6.706099987030029,
        'date': 1552521600,
        'formatted_date': '2019-03-14',
        'high': 6.726799964904785,
        'low': 6.6971001625061035,
        'open': 6.705999851226807,
        'volume': 0},
       {'adjclose': 6.7220001220703125,
        'close': 6.7220001220703125,
        'date': 1552608000,
        'formatted_date': '2019-03-15',
        'high': 6.728300094604492,
        'low': 6.703499794006348,
        'open': 6.72189998626709,
        'volume': 0},
       {'adjclose': 6.712800025939941,
        'close': 6.712800025939941,
        'date': 1552867200,
        'formatted_date': '2019-03-18',
        'high': 6.716000080108643,
        'low': 6.701099872589111,
        'open': 6.712800025939941,
        'volume': 0},
       {'adjclose': 6.703100204467773,
        'close': 6.703100204467773,
        'date': 1552953600,
        'formatted_date': '2019-03-19',
        'high': 6.718500137329102,
        'low': 6.7027997970581055,
        'open': 6.703100204467773,
        'volume': 0},
       {'adjclose': 6.710999965667725,
        'close': 6.710999965667725,
        'date': 1553040000,
        'formatted_date': '2019-03-20',
        'high': 6.715799808502197,
        'low': 6.684599876403809,
        'open': 6.710999965667725,
        'volume': 0},
       {'adjclose': 6.693600177764893,
        'close': 6.693600177764893,
        'date': 1553126400,
        'formatted_date': '2019-03-21',
        'high': 6.698400020599365,
        'low': 6.66480016708374,
        'open': 6.69350004196167,
        'volume': 0},
       {'adjclose': 6.698200225830078,
        'close': 6.698200225830078,
        'date': 1553212800,
        'formatted_date': '2019-03-22',
        'high': 6.717199802398682,
        'low': 6.689300060272217,
        'open': 6.697999954223633,
        'volume': 0},
       {'adjclose': 6.717100143432617,
        'close': 6.717100143432617,
        'date': 1553472000,
        'formatted_date': '2019-03-25',
        'high': 6.718599796295166,
        'low': 6.699999809265137,
        'open': 6.717299938201904,
        'volume': 0},
       {'adjclose': 6.708399772644043,
        'close': 6.708399772644043,
        'date': 1553558400,
        'formatted_date': '2019-03-26',
        'high': 6.715099811553955,
        'low': 6.699399948120117,
        'open': 6.708399772644043,
        'volume': 0},
       {'adjclose': 6.714700222015381,
        'close': 6.714700222015381,
        'date': 1553644800,
        'formatted_date': '2019-03-27',
        'high': 6.726200103759766,
        'low': 6.704999923706055,
        'open': 6.714700222015381,
        'volume': 0},
       {'adjclose': 6.726200103759766,
        'close': 6.726200103759766,
        'date': 1553731200,
        'formatted_date': '2019-03-28',
        'high': 6.738699913024902,
        'low': 6.717199802398682,
        'open': 6.726200103759766,
        'volume': 0},
       {'adjclose': 6.738100051879883,
        'close': 6.738100051879883,
        'date': 1553817600,
        'formatted_date': '2019-03-29',
        'high': 6.73829984664917,
        'low': 6.697700023651123,
        'open': 6.738100051879883,
        'volume': 0},
       {'adjclose': 6.711100101470947,
        'close': 6.711100101470947,
        'date': 1554073200,
        'formatted_date': '2019-03-31',
        'high': 6.711999893188477,
        'low': 6.701200008392334,
        'open': 6.702099800109863,
        'volume': 0},
       {'adjclose': 6.7104997634887695,
        'close': 6.7104997634887695,
        'date': 1554159600,
        'formatted_date': '2019-04-01',
        'high': 6.723299980163574,
        'low': 6.701499938964844,
        'open': 6.701499938964844,
        'volume': 0},
       {'adjclose': 6.722400188446045,
        'close': 6.722400188446045,
        'date': 1554246000,
        'formatted_date': '2019-04-02',
        'high': 6.722400188446045,
        'low': 6.697299957275391,
        'open': 6.722300052642822,
        'volume': 0},
       {'adjclose': 6.701399803161621,
        'close': 6.701399803161621,
        'date': 1554332400,
        'formatted_date': '2019-04-03',
        'high': 6.719299793243408,
        'low': 6.701399803161621,
        'open': 6.701399803161621,
        'volume': 0},
       {'adjclose': 6.716599941253662,
        'close': 6.716599941253662,
        'date': 1554418800,
        'formatted_date': '2019-04-04',
        'high': 6.717700004577637,
        'low': 6.716400146484375,
        'open': 6.716700077056885,
        'volume': 0},
       {'adjclose': 6.716899871826172,
        'close': 6.716899871826172,
        'date': 1554678000,
        'formatted_date': '2019-04-07',
        'high': 6.720399856567383,
        'low': 6.705599784851074,
        'open': 6.71750020980835,
        'volume': 0},
       {'adjclose': 6.715400218963623,
        'close': 6.715400218963623,
        'date': 1554764400,
        'formatted_date': '2019-04-08',
        'high': 6.717800140380859,
        'low': 6.701099872589111,
        'open': 6.706399917602539,
        'volume': 0},
       {'adjclose': 6.7108001708984375,
        'close': 6.7108001708984375,
        'date': 1554850800,
        'formatted_date': '2019-04-09',
        'high': 6.717400074005127,
        'low': 6.701700210571289,
        'open': 6.710899829864502,
        'volume': 0},
       {'adjclose': 6.715400218963623,
        'close': 6.715400218963623,
        'date': 1554937200,
        'formatted_date': '2019-04-10',
        'high': 6.718500137329102,
        'low': 6.703999996185303,
        'open': 6.715199947357178,
        'volume': 0},
       {'adjclose': 6.718500137329102,
        'close': 6.718500137329102,
        'date': 1555023600,
        'formatted_date': '2019-04-11',
        'high': 6.72189998626709,
        'low': 6.69920015335083,
        'open': 6.718400001525879,
        'volume': 0},
       {'adjclose': 6.703199863433838,
        'close': 6.703199863433838,
        'date': 1555282800,
        'formatted_date': '2019-04-14',
        'high': 6.708499908447266,
        'low': 6.695499897003174,
        'open': 6.7032999992370605,
        'volume': 0},
       {'adjclose': 6.707699775695801,
        'close': 6.707699775695801,
        'date': 1555369200,
        'formatted_date': '2019-04-15',
        'high': 6.711299896240234,
        'low': 6.697199821472168,
        'open': 6.698699951171875,
        'volume': 0},
       {'adjclose': 6.71120023727417,
        'close': 6.71120023727417,
        'date': 1555455600,
        'formatted_date': '2019-04-16',
        'high': 6.71120023727417,
        'low': 6.67710018157959,
        'open': 6.702199935913086,
        'volume': 0},
       {'adjclose': 6.68720006942749,
        'close': 6.68720006942749,
        'date': 1555542000,
        'formatted_date': '2019-04-17',
        'high': 6.70959997177124,
        'low': 6.678199768066406,
        'open': 6.678199768066406,
        'volume': 0},
       {'adjclose': 6.708099842071533,
        'close': 6.708099842071533,
        'date': 1555628400,
        'formatted_date': '2019-04-18',
        'high': 6.708199977874756,
        'low': 6.699100017547607,
        'open': 6.699100017547607,
        'volume': 0},
       {'adjclose': 6.703400135040283,
        'close': 6.703400135040283,
        'date': 1555887600,
        'formatted_date': '2019-04-21',
        'high': 6.713099956512451,
        'low': 6.703000068664551,
        'open': 6.7058000564575195,
        'volume': 0},
       {'adjclose': 6.708499908447266,
        'close': 6.708499908447266,
        'date': 1555974000,
        'formatted_date': '2019-04-22',
        'high': 6.726399898529053,
        'low': 6.708199977874756,
        'open': 6.7083001136779785,
        'volume': 0},
       {'adjclose': 6.724899768829346,
        'close': 6.724899768829346,
        'date': 1556060400,
        'formatted_date': '2019-04-23',
        'high': 6.724999904632568,
        'low': 6.7067999839782715,
        'open': 6.71589994430542,
        'volume': 0},
       {'adjclose': 6.720900058746338,
        'close': 6.720900058746338,
        'date': 1556146800,
        'formatted_date': '2019-04-24',
        'high': 6.747900009155273,
        'low': 6.711900234222412,
        'open': 6.711900234222412,
        'volume': 0},
       {'adjclose': 6.742099761962891,
        'close': 6.742099761962891,
        'date': 1556233200,
        'formatted_date': '2019-04-25',
        'high': 6.742099761962891,
        'low': 6.719399929046631,
        'open': 6.733099937438965,
        'volume': 0},
       {'adjclose': 6.728799819946289,
        'close': 6.728799819946289,
        'date': 1556492400,
        'formatted_date': '2019-04-28',
        'high': 6.734799861907959,
        'low': 6.719699859619141,
        'open': 6.719799995422363,
        'volume': 0}],
      'timeZone': {'gmtOffset': 3600}},
     'EURUSD=X': {'currency': 'USD',
      'eventsData': {},
      'firstTradeDate': {'date': 1070236800, 'formatted_date': '2003-12-01'},
      'instrumentType': 'CURRENCY',
      'prices': [{'adjclose': 1.2122827768325806,
        'close': 1.2122827768325806,
        'date': 1525042800,
        'formatted_date': '2018-04-29',
        'high': 1.2138574123382568,
        'low': 1.2066364288330078,
        'open': 1.2128562927246094,
        'volume': 0},
       {'adjclose': 1.2081234455108643,
        'close': 1.2081234455108643,
        'date': 1525129200,
        'formatted_date': '2018-04-30',
        'high': 1.2084592580795288,
        'low': 1.1983511447906494,
        'open': 1.208313226699829,
        'volume': 0},
       {'adjclose': 1.1991558074951172,
        'close': 1.1991558074951172,
        'date': 1525215600,
        'formatted_date': '2018-05-01',
        'high': 1.2031089067459106,
        'low': 1.1954143047332764,
        'open': 1.1992132663726807,
        'volume': 0},
       {'adjclose': 1.19510018825531,
        'close': 1.19510018825531,
        'date': 1525302000,
        'formatted_date': '2018-05-02',
        'high': 1.2009127140045166,
        'low': 1.1950715780258179,
        'open': 1.1951714754104614,
        'volume': 0},
       {'adjclose': 1.1989257335662842,
        'close': 1.1989257335662842,
        'date': 1525388400,
        'formatted_date': '2018-05-03',
        'high': 1.1997599601745605,
        'low': 1.1914832592010498,
        'open': 1.1989257335662842,
        'volume': 0},
       {'adjclose': 1.195500135421753,
        'close': 1.195500135421753,
        'date': 1525647600,
        'formatted_date': '2018-05-06',
        'high': 1.1978917121887207,
        'low': 1.18995201587677,
        'open': 1.1955716609954834,
        'volume': 0},
       {'adjclose': 1.1933743953704834,
        'close': 1.1933743953704834,
        'date': 1525734000,
        'formatted_date': '2018-05-07',
        'high': 1.1938873529434204,
        'low': 1.183936357498169,
        'open': 1.1932604312896729,
        'volume': 0},
       {'adjclose': 1.1867886781692505,
        'close': 1.1867886781692505,
        'date': 1525820400,
        'formatted_date': '2018-05-08',
        'high': 1.1896122694015503,
        'low': 1.1823545694351196,
        'open': 1.186676025390625,
        'volume': 0},
       {'adjclose': 1.184721827507019,
        'close': 1.184721827507019,
        'date': 1525906800,
        'formatted_date': '2018-05-09',
        'high': 1.1942437887191772,
        'low': 1.184469223022461,
        'open': 1.1847639083862305,
        'volume': 0},
       {'adjclose': 1.1917530298233032,
        'close': 1.1917530298233032,
        'date': 1525993200,
        'formatted_date': '2018-05-10',
        'high': 1.1967878341674805,
        'low': 1.1893434524536133,
        'open': 1.191525936126709,
        'volume': 0},
       {'adjclose': 1.1952143907546997,
        'close': 1.1952143907546997,
        'date': 1526252400,
        'formatted_date': '2018-05-13',
        'high': 1.1996996402740479,
        'low': 1.1951572895050049,
        'open': 1.1951572895050049,
        'volume': 0},
       {'adjclose': 1.1931180953979492,
        'close': 1.1931180953979492,
        'date': 1526338800,
        'formatted_date': '2018-05-14',
        'high': 1.1940299272537231,
        'low': 1.182396411895752,
        'open': 1.1932035684585571,
        'volume': 0},
       {'adjclose': 1.1820889711380005,
        'close': 1.1820889711380005,
        'date': 1526425200,
        'formatted_date': '2018-05-15',
        'high': 1.1853959560394287,
        'low': 1.176567554473877,
        'open': 1.1822566986083984,
        'volume': 0},
       {'adjclose': 1.1816978454589844,
        'close': 1.1816978454589844,
        'date': 1526511600,
        'formatted_date': '2018-05-16',
        'high': 1.1836841106414795,
        'low': 1.1778563261032104,
        'open': 1.1814186573028564,
        'volume': 0},
       {'adjclose': 1.1795234680175781,
        'close': 1.1795234680175781,
        'date': 1526598000,
        'formatted_date': '2018-05-17',
        'high': 1.182228684425354,
        'low': 1.175046682357788,
        'open': 1.1792036294937134,
        'volume': 0},
       {'adjclose': 1.1766643524169922,
        'close': 1.1766643524169922,
        'date': 1526857200,
        'formatted_date': '2018-05-20',
        'high': 1.1778979301452637,
        'low': 1.1718658208847046,
        'open': 1.1763737201690674,
        'volume': 0},
       {'adjclose': 1.1792453527450562,
        'close': 1.1792453527450562,
        'date': 1526943600,
        'formatted_date': '2018-05-21',
        'high': 1.1828161478042603,
        'low': 1.1759449243545532,
        'open': 1.1788839101791382,
        'volume': 0},
       {'adjclose': 1.1788560152053833,
        'close': 1.1788560152053833,
        'date': 1527030000,
        'formatted_date': '2018-05-22',
        'high': 1.1791006326675415,
        'low': 1.168620228767395,
        'open': 1.1789672374725342,
        'volume': 0},
       {'adjclose': 1.1710150241851807,
        'close': 1.1710150241851807,
        'date': 1527116400,
        'formatted_date': '2018-05-23',
        'high': 1.174936294555664,
        'low': 1.1692214012145996,
        'open': 1.1707134246826172,
        'volume': 0},
       {'adjclose': 1.1722642183303833,
        'close': 1.1722642183303833,
        'date': 1527202800,
        'formatted_date': '2018-05-24',
        'high': 1.1733232736587524,
        'low': 1.1648359298706055,
        'open': 1.1723191738128662,
        'volume': 0},
       {'adjclose': 1.1688934564590454,
        'close': 1.1688934564590454,
        'date': 1527462000,
        'formatted_date': '2018-05-27',
        'high': 1.1730204820632935,
        'low': 1.1608469486236572,
        'open': 1.1687567234039307,
        'volume': 0},
       {'adjclose': 1.162696123123169,
        'close': 1.162696123123169,
        'date': 1527548400,
        'formatted_date': '2018-05-28',
        'high': 1.1639816761016846,
        'low': 1.1514369249343872,
        'open': 1.1627501249313354,
        'volume': 0},
       {'adjclose': 1.1539349555969238,
        'close': 1.1539349555969238,
        'date': 1527634800,
        'formatted_date': '2018-05-29',
        'high': 1.1670994758605957,
        'low': 1.1520073413848877,
        'open': 1.153761863708496,
        'volume': 0},
       {'adjclose': 1.1667250394821167,
        'close': 1.1667250394821167,
        'date': 1527721200,
        'formatted_date': '2018-05-30',
        'high': 1.1724016666412354,
        'low': 1.1642934083938599,
        'open': 1.1666160821914673,
        'volume': 0},
       {'adjclose': 1.1693171262741089,
        'close': 1.1693171262741089,
        'date': 1527807600,
        'formatted_date': '2018-05-31',
        'high': 1.1715501546859741,
        'low': 1.1629935503005981,
        'open': 1.1693308353424072,
        'volume': 0},
       {'adjclose': 1.1668611764907837,
        'close': 1.1668611764907837,
        'date': 1528066800,
        'formatted_date': '2018-06-03',
        'high': 1.174425721168518,
        'low': 1.1668747663497925,
        'open': 1.1669973134994507,
        'volume': 0},
       {'adjclose': 1.1700559854507446,
        'close': 1.1700559854507446,
        'date': 1528153200,
        'formatted_date': '2018-06-04',
        'high': 1.171385407447815,
        'low': 1.1655282974243164,
        'open': 1.1701792478561401,
        'volume': 0},
       {'adjclose': 1.1726216077804565,
        'close': 1.1726216077804565,
        'date': 1528239600,
        'formatted_date': '2018-06-05',
        'high': 1.1797001361846924,
        'low': 1.1714677810668945,
        'open': 1.1726628541946411,
        'volume': 0},
       {'adjclose': 1.178550362586975,
        'close': 1.178550362586975,
        'date': 1528326000,
        'formatted_date': '2018-06-06',
        'high': 1.1841003894805908,
        'low': 1.1783559322357178,
        'open': 1.1783976554870605,
        'volume': 0},
       {'adjclose': 1.1795234680175781,
        'close': 1.1795234680175781,
        'date': 1528412400,
        'formatted_date': '2018-06-07',
        'high': 1.181199550628662,
        'low': 1.1728416681289673,
        'open': 1.1793843507766724,
        'volume': 0},
       {'adjclose': 1.1783976554870605,
        'close': 1.1783976554870605,
        'date': 1528671600,
        'formatted_date': '2018-06-10',
        'high': 1.1820330619812012,
        'low': 1.1776067018508911,
        'open': 1.1786893606185913,
        'volume': 0},
       {'adjclose': 1.177412509918213,
        'close': 1.177412509918213,
        'date': 1528758000,
        'formatted_date': '2018-06-11',
        'high': 1.1808466911315918,
        'low': 1.174315333366394,
        'open': 1.1773293018341064,
        'volume': 0},
       {'adjclose': 1.17482590675354,
        'close': 1.17482590675354,
        'date': 1528844400,
        'formatted_date': '2018-06-12',
        'high': 1.1789672374725342,
        'low': 1.1733646392822266,
        'open': 1.1747568845748901,
        'volume': 0},
       {'adjclose': 1.1807769536972046,
        'close': 1.1807769536972046,
        'date': 1528930800,
        'formatted_date': '2018-06-13',
        'high': 1.1841607093811035,
        'low': 1.1628854274749756,
        'open': 1.1806375980377197,
        'volume': 0},
       {'adjclose': 1.1566576957702637,
        'close': 1.1566576957702637,
        'date': 1529017200,
        'formatted_date': '2018-06-14',
        'high': 1.1626555919647217,
        'low': 1.1545344591140747,
        'open': 1.156336784362793,
        'volume': 0},
       {'adjclose': 1.159595012664795,
        'close': 1.159595012664795,
        'date': 1529276400,
        'formatted_date': '2018-06-17',
        'high': 1.1623716354370117,
        'low': 1.156644344329834,
        'open': 1.1597026586532593,
        'volume': 0},
       {'adjclose': 1.1630746126174927,
        'close': 1.1630746126174927,
        'date': 1529362800,
        'formatted_date': '2018-06-18',
        'high': 1.164686679840088,
        'low': 1.153322696685791,
        'open': 1.163007140159607,
        'volume': 0},
       {'adjclose': 1.1588560342788696,
        'close': 1.1588560342788696,
        'date': 1529449200,
        'formatted_date': '2018-06-19',
        'high': 1.1600120067596436,
        'low': 1.1546010971069336,
        'open': 1.1589365005493164,
        'volume': 0},
       {'adjclose': 1.1579033136367798,
        'close': 1.1579033136367798,
        'date': 1529535600,
        'formatted_date': '2018-06-20',
        'high': 1.1628313064575195,
        'low': 1.151410460472107,
        'open': 1.1577022075653076,
        'volume': 0},
       {'adjclose': 1.1605775356292725,
        'close': 1.1605775356292725,
        'date': 1529622000,
        'formatted_date': '2018-06-21',
        'high': 1.1675995588302612,
        'low': 1.1601735353469849,
        'open': 1.1606987714767456,
        'volume': 0},
       {'adjclose': 1.1661399602890015,
        'close': 1.1661399602890015,
        'date': 1529881200,
        'formatted_date': '2018-06-24',
        'high': 1.1700011491775513,
        'low': 1.1629935503005981,
        'open': 1.1660583019256592,
        'volume': 0},
       {'adjclose': 1.1702749729156494,
        'close': 1.1702749729156494,
        'date': 1529967600,
        'formatted_date': '2018-06-25',
        'high': 1.17205810546875,
        'low': 1.1652023792266846,
        'open': 1.1701792478561401,
        'volume': 0},
       {'adjclose': 1.1650259494781494,
        'close': 1.1650259494781494,
        'date': 1530054000,
        'formatted_date': '2018-06-26',
        'high': 1.1671879291534424,
        'low': 1.1583592891693115,
        'open': 1.164808750152588,
        'volume': 0},
       {'adjclose': 1.1563634872436523,
        'close': 1.1563634872436523,
        'date': 1530140400,
        'formatted_date': '2018-06-27',
        'high': 1.1596999168395996,
        'low': 1.1528042554855347,
        'open': 1.156243085861206,
        'volume': 0},
       {'adjclose': 1.1562966108322144,
        'close': 1.1562966108322144,
        'date': 1530226800,
        'formatted_date': '2018-06-28',
        'high': 1.1682379245758057,
        'low': 1.15644371509552,
        'open': 1.15644371509552,
        'volume': 0},
       {'adjclose': 1.1678558588027954,
        'close': 1.1678558588027954,
        'date': 1530486000,
        'formatted_date': '2018-07-01',
        'high': 1.1678422689437866,
        'low': 1.1592589616775513,
        'open': 1.1678422689437866,
        'volume': 0},
       {'adjclose': 1.1642121076583862,
        'close': 1.1642121076583862,
        'date': 1530572400,
        'formatted_date': '2018-07-02',
        'high': 1.1675423383712769,
        'low': 1.1622636318206787,
        'open': 1.1640766859054565,
        'volume': 0},
       {'adjclose': 1.1659224033355713,
        'close': 1.1659224033355713,
        'date': 1530658800,
        'formatted_date': '2018-07-03',
        'high': 1.1681833267211914,
        'low': 1.1631423234939575,
        'open': 1.16593599319458,
        'volume': 0},
       {'adjclose': 1.166235089302063,
        'close': 1.166235089302063,
        'date': 1530745200,
        'formatted_date': '2018-07-04',
        'high': 1.1719757318496704,
        'low': 1.165080189704895,
        'open': 1.1661807298660278,
        'volume': 0},
       {'adjclose': 1.1695905923843384,
        'close': 1.1695905923843384,
        'date': 1530831600,
        'formatted_date': '2018-07-05',
        'high': 1.1767336130142212,
        'low': 1.1680742502212524,
        'open': 1.169385552406311,
        'volume': 0},
       {'adjclose': 1.1752262115478516,
        'close': 1.1752262115478516,
        'date': 1531090800,
        'formatted_date': '2018-07-08',
        'high': 1.179078459739685,
        'low': 1.1742877960205078,
        'open': 1.1751710176467896,
        'volume': 0},
       {'adjclose': 1.1756960153579712,
        'close': 1.1756960153579712,
        'date': 1531177200,
        'formatted_date': '2018-07-09',
        'high': 1.1762906312942505,
        'low': 1.1691941022872925,
        'open': 1.1757513284683228,
        'volume': 0},
       {'adjclose': 1.1727042198181152,
        'close': 1.1727042198181152,
        'date': 1531263600,
        'formatted_date': '2018-07-10',
        'high': 1.1755163669586182,
        'low': 1.1698368787765503,
        'open': 1.1730343103408813,
        'volume': 0},
       {'adjclose': 1.1676785945892334,
        'close': 1.1676785945892334,
        'date': 1531350000,
        'formatted_date': '2018-07-11',
        'high': 1.169700026512146,
        'low': 1.1650530099868774,
        'open': 1.167569637298584,
        'volume': 0},
       {'adjclose': 1.1665889024734497,
        'close': 1.1665889024734497,
        'date': 1531436400,
        'formatted_date': '2018-07-12',
        'high': 1.1675423383712769,
        'low': 1.1614537239074707,
        'open': 1.16637122631073,
        'volume': 0},
       {'adjclose': 1.1679104566574097,
        'close': 1.1679104566574097,
        'date': 1531695600,
        'formatted_date': '2018-07-15',
        'high': 1.1726078987121582,
        'low': 1.1676650047302246,
        'open': 1.1678968667984009,
        'volume': 0},
       {'adjclose': 1.170946478843689,
        'close': 1.170946478843689,
        'date': 1531782000,
        'formatted_date': '2018-07-16',
        'high': 1.1745359897613525,
        'low': 1.1664528846740723,
        'open': 1.1710561513900757,
        'volume': 0},
       {'adjclose': 1.1653246879577637,
        'close': 1.1653246879577637,
        'date': 1531868400,
        'formatted_date': '2018-07-17',
        'high': 1.166534423828125,
        'low': 1.1603754758834839,
        'open': 1.1657729148864746,
        'volume': 0},
       {'adjclose': 1.164564609527588,
        'close': 1.164564609527588,
        'date': 1531954800,
        'formatted_date': '2018-07-18',
        'high': 1.1657049655914307,
        'low': 1.157594919204712,
        'open': 1.1646188497543335,
        'volume': 0},
       {'adjclose': 1.1655147075653076,
        'close': 1.1655147075653076,
        'date': 1532041200,
        'formatted_date': '2018-07-19',
        'high': 1.172236680984497,
        'low': 1.1628042459487915,
        'open': 1.1654739379882812,
        'volume': 0},
       {'adjclose': 1.1741912364959717,
        'close': 1.1741912364959717,
        'date': 1532300400,
        'formatted_date': '2018-07-22',
        'high': 1.1750881671905518,
        'low': 1.1688660383224487,
        'open': 1.1741775274276733,
        'volume': 0},
       {'adjclose': 1.1694128513336182,
        'close': 1.1694128513336182,
        'date': 1532386800,
        'formatted_date': '2018-07-23',
        'high': 1.1716599464416504,
        'low': 1.1657185554504395,
        'open': 1.169864296913147,
        'volume': 0},
       {'adjclose': 1.1685519218444824,
        'close': 1.1685519218444824,
        'date': 1532473200,
        'formatted_date': '2018-07-24',
        'high': 1.1713716983795166,
        'low': 1.1667522192001343,
        'open': 1.168770432472229,
        'volume': 0},
       {'adjclose': 1.1737502813339233,
        'close': 1.1737502813339233,
        'date': 1532559600,
        'formatted_date': '2018-07-25',
        'high': 1.174315333366394,
        'low': 1.1650937795639038,
        'open': 1.1739845275878906,
        'volume': 0},
       {'adjclose': 1.1642934083938599,
        'close': 1.1642934083938599,
        'date': 1532646000,
        'formatted_date': '2018-07-26',
        'high': 1.1663167476654053,
        'low': 1.1623716354370117,
        'open': 1.1644561290740967,
        'volume': 0},
       {'adjclose': 1.16604483127594,
        'close': 1.16604483127594,
        'date': 1532905200,
        'formatted_date': '2018-07-29',
        'high': 1.1719207763671875,
        'low': 1.1649445295333862,
        'open': 1.1663167476654053,
        'volume': 0},
       {'adjclose': 1.1707408428192139,
        'close': 1.1707408428192139,
        'date': 1532991600,
        'formatted_date': '2018-07-30',
        'high': 1.1748120784759521,
        'low': 1.1692761182785034,
        'open': 1.170864224433899,
        'volume': 0},
       {'adjclose': 1.168961763381958,
        'close': 1.168961763381958,
        'date': 1533078000,
        'formatted_date': '2018-07-31',
        'high': 1.169864296913147,
        'low': 1.166534423828125,
        'open': 1.168961763381958,
        'volume': 0},
       {'adjclose': 1.1665889024734497,
        'close': 1.1665889024734497,
        'date': 1533164400,
        'formatted_date': '2018-08-01',
        'high': 1.1669973134994507,
        'low': 1.1604158878326416,
        'open': 1.1663848161697388,
        'volume': 0},
       {'adjclose': 1.1586008071899414,
        'close': 1.1586008071899414,
        'date': 1533250800,
        'formatted_date': '2018-08-02',
        'high': 1.1612001657485962,
        'low': 1.1562163829803467,
        'open': 1.1585606336593628,
        'volume': 0},
       {'adjclose': 1.1562297344207764,
        'close': 1.1562297344207764,
        'date': 1533510000,
        'formatted_date': '2018-08-05',
        'high': 1.1570056676864624,
        'low': 1.1530966758728027,
        'open': 1.156136155128479,
        'volume': 0},
       {'adjclose': 1.1558021306991577,
        'close': 1.1558021306991577,
        'date': 1533596400,
        'formatted_date': '2018-08-06',
        'high': 1.1609008312225342,
        'low': 1.1552013158798218,
        'open': 1.155748724937439,
        'volume': 0},
       {'adjclose': 1.1602946519851685,
        'close': 1.1602946519851685,
        'date': 1533682800,
        'formatted_date': '2018-08-07',
        'high': 1.1629259586334229,
        'low': 1.1574609279632568,
        'open': 1.1603351831436157,
        'volume': 0},
       {'adjclose': 1.1610760688781738,
        'close': 1.1610760688781738,
        'date': 1533769200,
        'formatted_date': '2018-08-08',
        'high': 1.1621150970458984,
        'low': 1.156176209449768,
        'open': 1.1610087156295776,
        'volume': 0},
       {'adjclose': 1.1523923873901367,
        'close': 1.1523923873901367,
        'date': 1533855600,
        'formatted_date': '2018-08-09',
        'high': 1.1539349555969238,
        'low': 1.1396141052246094,
        'open': 1.1528706550598145,
        'volume': 0},
       {'adjclose': 1.1394712924957275,
        'close': 1.1394712924957275,
        'date': 1534114800,
        'formatted_date': '2018-08-12',
        'high': 1.143379807472229,
        'low': 1.1365960836410522,
        'open': 1.1395881175994873,
        'volume': 0},
       {'adjclose': 1.1402509212493896,
        'close': 1.1402509212493896,
        'date': 1534201200,
        'formatted_date': '2018-08-13',
        'high': 1.1431001424789429,
        'low': 1.134751796722412,
        'open': 1.139847993850708,
        'volume': 0},
       {'adjclose': 1.1345715522766113,
        'close': 1.1345715522766113,
        'date': 1534287600,
        'formatted_date': '2018-08-14',
        'high': 1.1349449157714844,
        'low': 1.1302244663238525,
        'open': 1.1348161697387695,
        'volume': 0},
       {'adjclose': 1.134429931640625,
        'close': 1.134429931640625,
        'date': 1534374000,
        'formatted_date': '2018-08-15',
        'high': 1.140836238861084,
        'low': 1.1338382959365845,
        'open': 1.134429931640625,
        'volume': 0},
       {'adjclose': 1.1371389627456665,
        'close': 1.1371389627456665,
        'date': 1534460400,
        'formatted_date': '2018-08-16',
        'high': 1.1422044038772583,
        'low': 1.1367381811141968,
        'open': 1.137229561805725,
        'volume': 0},
       {'adjclose': 1.1437721252441406,
        'close': 1.1437721252441406,
        'date': 1534719600,
        'formatted_date': '2018-08-19',
        'high': 1.1449376344680786,
        'low': 1.1395231485366821,
        'open': 1.1437852382659912,
        'volume': 0},
       {'adjclose': 1.149134635925293,
        'close': 1.149134635925293,
        'date': 1534806000,
        'formatted_date': '2018-08-20',
        'high': 1.1539082527160645,
        'low': 1.1486594676971436,
        'open': 1.1489102840423584,
        'volume': 0},
       {'adjclose': 1.1576753854751587,
        'close': 1.1576753854751587,
        'date': 1534892400,
        'formatted_date': '2018-08-21',
        'high': 1.162520408630371,
        'low': 1.1554415225982666,
        'open': 1.15763521194458,
        'volume': 0},
       {'adjclose': 1.1584800481796265,
        'close': 1.1584800481796265,
        'date': 1534978800,
        'formatted_date': '2018-08-22',
        'high': 1.1589634418487549,
        'low': 1.154521107673645,
        'open': 1.1586277484893799,
        'volume': 0},
       {'adjclose': 1.154334545135498,
        'close': 1.154334545135498,
        'date': 1535065200,
        'formatted_date': '2018-08-23',
        'high': 1.1636972427368164,
        'low': 1.1539349555969238,
        'open': 1.1542812585830688,
        'volume': 0},
       {'adjclose': 1.164890170097351,
        'close': 1.164890170097351,
        'date': 1535324400,
        'formatted_date': '2018-08-26',
        'high': 1.1680878400802612,
        'low': 1.1597161293029785,
        'open': 1.164442539215088,
        'volume': 0},
       {'adjclose': 1.1683608293533325,
        'close': 1.1683608293533325,
        'date': 1535410800,
        'formatted_date': '2018-08-27',
        'high': 1.1732999086380005,
        'low': 1.1663440465927124,
        'open': 1.1683471202850342,
        'volume': 0},
       {'adjclose': 1.1691256761550903,
        'close': 1.1691256761550903,
        'date': 1535497200,
        'formatted_date': '2018-08-28',
        'high': 1.1706311702728271,
        'low': 1.1654006242752075,
        'open': 1.1693034172058105,
        'volume': 0},
       {'adjclose': 1.1709738969802856,
        'close': 1.1709738969802856,
        'date': 1535583600,
        'formatted_date': '2018-08-29',
        'high': 1.1717559099197388,
        'low': 1.1644154787063599,
        'open': 1.1709327697753906,
        'volume': 0},
       {'adjclose': 1.1664663553237915,
        'close': 1.1664663553237915,
        'date': 1535670000,
        'formatted_date': '2018-08-30',
        'high': 1.1689343452453613,
        'low': 1.1596487760543823,
        'open': 1.1665889024734497,
        'volume': 0},
       {'adjclose': 1.1601063013076782,
        'close': 1.1601063013076782,
        'date': 1535929200,
        'formatted_date': '2018-09-02',
        'high': 1.1627906560897827,
        'low': 1.1590977907180786,
        'open': 1.1598505973815918,
        'volume': 0},
       {'adjclose': 1.161548137664795,
        'close': 1.161548137664795,
        'date': 1536015600,
        'formatted_date': '2018-09-03',
        'high': 1.1615750789642334,
        'low': 1.153322696685791,
        'open': 1.16130530834198,
        'volume': 0},
       {'adjclose': 1.1586545705795288,
        'close': 1.1586545705795288,
        'date': 1536102000,
        'formatted_date': '2018-09-04',
        'high': 1.1632641553878784,
        'low': 1.1546810865402222,
        'open': 1.1588022708892822,
        'volume': 0},
       {'adjclose': 1.1635212898254395,
        'close': 1.1635212898254395,
        'date': 1536188400,
        'formatted_date': '2018-09-05',
        'high': 1.165623426437378,
        'low': 1.1607661247253418,
        'open': 1.1634942293167114,
        'volume': 0},
       {'adjclose': 1.1620069742202759,
        'close': 1.1620069742202759,
        'date': 1536274800,
        'formatted_date': '2018-09-06',
        'high': 1.1650937795639038,
        'low': 1.1563901901245117,
        'open': 1.1623852252960205,
        'volume': 0},
       {'adjclose': 1.1561094522476196,
        'close': 1.1561094522476196,
        'date': 1536534000,
        'formatted_date': '2018-09-09',
        'high': 1.161440134048462,
        'low': 1.1527643203735352,
        'open': 1.1558955907821655,
        'volume': 0},
       {'adjclose': 1.159595012664795,
        'close': 1.159595012664795,
        'date': 1536620400,
        'formatted_date': '2018-09-10',
        'high': 1.1642799377441406,
        'low': 1.1566845178604126,
        'open': 1.1593396663665771,
        'volume': 0},
       {'adjclose': 1.1596084833145142,
        'close': 1.1596084833145142,
        'date': 1536706800,
        'formatted_date': '2018-09-11',
        'high': 1.1648223400115967,
        'low': 1.1570860147476196,
        'open': 1.159595012664795,
        'volume': 0},
       {'adjclose': 1.1629259586334229,
        'close': 1.1629259586334229,
        'date': 1536793200,
        'formatted_date': '2018-09-12',
        'high': 1.1700832843780518,
        'low': 1.16096830368042,
        'open': 1.1626555919647217,
        'volume': 0},
       {'adjclose': 1.1691803932189941,
        'close': 1.1691803932189941,
        'date': 1536879600,
        'formatted_date': '2018-09-13',
        'high': 1.1721267700195312,
        'low': 1.1655691862106323,
        'open': 1.1690436601638794,
        'volume': 0},
       {'adjclose': 1.1628988981246948,
        'close': 1.1628988981246948,
        'date': 1537138800,
        'formatted_date': '2018-09-16',
        'high': 1.1695905923843384,
        'low': 1.162358283996582,
        'open': 1.162358283996582,
        'volume': 0},
       {'adjclose': 1.1669156551361084,
        'close': 1.1669156551361084,
        'date': 1537225200,
        'formatted_date': '2018-09-17',
        'high': 1.1720443964004517,
        'low': 1.1669156551361084,
        'open': 1.1669156551361084,
        'volume': 0},
       {'adjclose': 1.167992353439331,
        'close': 1.167992353439331,
        'date': 1537311600,
        'formatted_date': '2018-09-18',
        'high': 1.1716461181640625,
        'low': 1.165338158607483,
        'open': 1.167883276939392,
        'volume': 0},
       {'adjclose': 1.167460560798645,
        'close': 1.167460560798645,
        'date': 1537398000,
        'formatted_date': '2018-09-19',
        'high': 1.1776995658874512,
        'low': 1.1672834157943726,
        'open': 1.1674060821533203,
        'volume': 0},
       {'adjclose': 1.1775927543640137,
        'close': 1.1775927543640137,
        'date': 1537484400,
        'formatted_date': '2018-09-20',
        'high': 1.180163860321045,
        'low': 1.1735711097717285,
        'open': 1.1776067018508911,
        'volume': 0},
       {'adjclose': 1.1751019954681396,
        'close': 1.1751019954681396,
        'date': 1537743600,
        'formatted_date': '2018-09-23',
        'high': 1.1815024614334106,
        'low': 1.172525405883789,
        'open': 1.1751019954681396,
        'volume': 0},
       {'adjclose': 1.175295352935791,
        'close': 1.175295352935791,
        'date': 1537830000,
        'formatted_date': '2018-09-24',
        'high': 1.1792453527450562,
        'low': 1.1732544898986816,
        'open': 1.1753228902816772,
        'volume': 0},
       {'adjclose': 1.1763184070587158,
        'close': 1.1763184070587158,
        'date': 1537916400,
        'formatted_date': '2018-09-25',
        'high': 1.1776995658874512,
        'low': 1.1728966236114502,
        'open': 1.1766090393066406,
        'volume': 0},
       {'adjclose': 1.1748534440994263,
        'close': 1.1748534440994263,
        'date': 1538002800,
        'formatted_date': '2018-09-26',
        'high': 1.1759172677993774,
        'low': 1.1664528846740723,
        'open': 1.1747153997421265,
        'volume': 0},
       {'adjclose': 1.1637378931045532,
        'close': 1.1637378931045532,
        'date': 1538089200,
        'formatted_date': '2018-09-27',
        'high': 1.1653001308441162,
        'low': 1.1570591926574707,
        'open': 1.1636837720870972,
        'volume': 0},
       {'adjclose': 1.1605371236801147,
        'close': 1.1605371236801147,
        'date': 1538348400,
        'formatted_date': '2018-09-30',
        'high': 1.1621285676956177,
        'low': 1.156510591506958,
        'open': 1.160496711730957,
        'volume': 0},
       {'adjclose': 1.157755732536316,
        'close': 1.157755732536316,
        'date': 1538434800,
        'formatted_date': '2018-10-01',
        'high': 1.1582117080688477,
        'low': 1.1506686210632324,
        'open': 1.157755732536316,
        'volume': 0},
       {'adjclose': 1.1551746129989624,
        'close': 1.1551746129989624,
        'date': 1538521200,
        'formatted_date': '2018-10-02',
        'high': 1.159326195716858,
        'low': 1.1516358852386475,
        'open': 1.155041217803955,
        'volume': 0},
       {'adjclose': 1.147631287574768,
        'close': 1.147631287574768,
        'date': 1538607600,
        'formatted_date': '2018-10-03',
        'high': 1.153599500656128,
        'low': 1.1464602947235107,
        'open': 1.147736668586731,
        'volume': 0},
       {'adjclose': 1.1518083810806274,
        'close': 1.1518083810806274,
        'date': 1538694000,
        'formatted_date': '2018-10-04',
        'high': 1.1542545557022095,
        'low': 1.1487782001495361,
        'open': 1.1517553329467773,
        'volume': 0},
       {'adjclose': 1.1522595882415771,
        'close': 1.1522595882415771,
        'date': 1538953200,
        'formatted_date': '2018-10-07',
        'high': 1.1531364917755127,
        'low': 1.146092414855957,
        'open': 1.1523923873901367,
        'volume': 0},
       {'adjclose': 1.1494120359420776,
        'close': 1.1494120359420776,
        'date': 1539039600,
        'formatted_date': '2018-10-08',
        'high': 1.150483250617981,
        'low': 1.1433275938034058,
        'open': 1.1494648456573486,
        'volume': 0},
       {'adjclose': 1.1506949663162231,
        'close': 1.1506949663162231,
        'date': 1539126000,
        'formatted_date': '2018-10-09',
        'high': 1.1541999578475952,
        'low': 1.1480661630630493,
        'open': 1.1504037380218506,
        'volume': 0},
       {'adjclose': 1.1533360481262207,
        'close': 1.1533360481262207,
        'date': 1539212400,
        'formatted_date': '2018-10-10',
        'high': 1.1597565412521362,
        'low': 1.1532163619995117,
        'open': 1.1532163619995117,
        'volume': 0},
       {'adjclose': 1.1590440273284912,
        'close': 1.1590440273284912,
        'date': 1539298800,
        'formatted_date': '2018-10-11',
        'high': 1.1609547138214111,
        'low': 1.1536953449249268,
        'open': 1.1590440273284912,
        'volume': 0},
       {'adjclose': 1.1551345586776733,
        'close': 1.1551345586776733,
        'date': 1539558000,
        'formatted_date': '2018-10-14',
        'high': 1.1605640649795532,
        'low': 1.1543611288070679,
        'open': 1.1550945043563843,
        'volume': 0},
       {'adjclose': 1.1583458185195923,
        'close': 1.1583458185195923,
        'date': 1539644400,
        'formatted_date': '2018-10-15',
        'high': 1.1620069742202759,
        'low': 1.156711220741272,
        'open': 1.1583324670791626,
        'volume': 0},
       {'adjclose': 1.1575279235839844,
        'close': 1.1575279235839844,
        'date': 1539730800,
        'formatted_date': '2018-10-16',
        'high': 1.1582117080688477,
        'low': 1.1521799564361572,
        'open': 1.15763521194458,
        'volume': 0},
       {'adjclose': 1.1500862836837769,
        'close': 1.1500862836837769,
        'date': 1539817200,
        'formatted_date': '2018-10-17',
        'high': 1.1527377367019653,
        'low': 1.1482902765274048,
        'open': 1.1500862836837769,
        'volume': 0},
       {'adjclose': 1.1460003852844238,
        'close': 1.1460003852844238,
        'date': 1539903600,
        'formatted_date': '2018-10-18',
        'high': 1.151450276374817,
        'low': 1.1433666944503784,
        'open': 1.145514726638794,
        'volume': 0},
       {'adjclose': 1.1509466171264648,
        'close': 1.1509466171264648,
        'date': 1540162800,
        'formatted_date': '2018-10-21',
        'high': 1.1551998853683472,
        'low': 1.1462368965148926,
        'open': 1.1511188745498657,
        'volume': 0},
       {'adjclose': 1.1467890739440918,
        'close': 1.1467890739440918,
        'date': 1540249200,
        'formatted_date': '2018-10-22',
        'high': 1.1489763259887695,
        'low': 1.1439945697784424,
        'open': 1.1464734077453613,
        'volume': 0},
       {'adjclose': 1.147315263748169,
        'close': 1.147315263748169,
        'date': 1540335600,
        'formatted_date': '2018-10-23',
        'high': 1.1475785970687866,
        'low': 1.138407588005066,
        'open': 1.1472625732421875,
        'volume': 0},
       {'adjclose': 1.1399258375167847,
        'close': 1.1399258375167847,
        'date': 1540422000,
        'formatted_date': '2018-10-24',
        'high': 1.143079161643982,
        'low': 1.1366219520568848,
        'open': 1.1398738622665405,
        'volume': 0},
       {'adjclose': 1.1377859115600586,
        'close': 1.1377859115600586,
        'date': 1540508400,
        'formatted_date': '2018-10-25',
        'high': 1.139847993850708,
        'low': 1.133619785308838,
        'open': 1.1375141143798828,
        'volume': 0},
       {'adjclose': 1.1398738622665405,
        'close': 1.1398738622665405,
        'date': 1540771200,
        'formatted_date': '2018-10-29',
        'high': 1.1415785551071167,
        'low': 1.1364411115646362,
        'open': 1.1398738622665405,
        'volume': 0},
       {'adjclose': 1.137617588043213,
        'close': 1.137617588043213,
        'date': 1540857600,
        'formatted_date': '2018-10-30',
        'high': 1.1387057304382324,
        'low': 1.1347389221191406,
        'open': 1.1375141143798828,
        'volume': 0},
       {'adjclose': 1.1346358060836792,
        'close': 1.1346358060836792,
        'date': 1540944000,
        'formatted_date': '2018-10-31',
        'high': 1.1360150575637817,
        'low': 1.1311705112457275,
        'open': 1.1345844268798828,
        'volume': 0},
       {'adjclose': 1.1316697597503662,
        'close': 1.1316697597503662,
        'date': 1541030400,
        'formatted_date': '2018-11-01',
        'high': 1.1413179636001587,
        'low': 1.1313753128051758,
        'open': 1.1313880681991577,
        'volume': 0},
       {'adjclose': 1.1403288841247559,
        'close': 1.1403288841247559,
        'date': 1541116800,
        'formatted_date': '2018-11-02',
        'high': 1.1455409526824951,
        'low': 1.1375658512115479,
        'open': 1.1402769088745117,
        'volume': 0},
       {'adjclose': 1.1397570371627808,
        'close': 1.1397570371627808,
        'date': 1541376000,
        'formatted_date': '2018-11-05',
        'high': 1.1406410932540894,
        'low': 1.135524868965149,
        'open': 1.1397050619125366,
        'volume': 0},
       {'adjclose': 1.141291856765747,
        'close': 1.141291856765747,
        'date': 1541462400,
        'formatted_date': '2018-11-06',
        'high': 1.1438113451004028,
        'low': 1.1393284797668457,
        'open': 1.140862226486206,
        'volume': 0},
       {'adjclose': 1.1438506841659546,
        'close': 1.1438506841659546,
        'date': 1541548800,
        'formatted_date': '2018-11-07',
        'high': 1.149993658065796,
        'low': 1.1400558948516846,
        'open': 1.144099235534668,
        'volume': 0},
       {'adjclose': 1.1434059143066406,
        'close': 1.1434059143066406,
        'date': 1541635200,
        'formatted_date': '2018-11-08',
        'high': 1.144426703453064,
        'low': 1.1405109167099,
        'open': 1.1433275938034058,
        'volume': 0},
       {'adjclose': 1.1368415355682373,
        'close': 1.1368415355682373,
        'date': 1541721600,
        'formatted_date': '2018-11-09',
        'high': 1.1369191408157349,
        'low': 1.132502794265747,
        'open': 1.1368545293807983,
        'volume': 0},
       {'adjclose': 1.132502794265747,
        'close': 1.132502794265747,
        'date': 1541980800,
        'formatted_date': '2018-11-12',
        'high': 1.1332728862762451,
        'low': 1.1241639852523804,
        'open': 1.1324771642684937,
        'volume': 0},
       {'adjclose': 1.1233429908752441,
        'close': 1.1233429908752441,
        'date': 1542067200,
        'formatted_date': '2018-11-13',
        'high': 1.1291906833648682,
        'low': 1.1223218441009521,
        'open': 1.1224100589752197,
        'volume': 0},
       {'adjclose': 1.1311193704605103,
        'close': 1.1311193704605103,
        'date': 1542153600,
        'formatted_date': '2018-11-14',
        'high': 1.1339668035507202,
        'low': 1.126481294631958,
        'open': 1.1316057443618774,
        'volume': 0},
       {'adjclose': 1.131183385848999,
        'close': 1.131183385848999,
        'date': 1542240000,
        'formatted_date': '2018-11-15',
        'high': 1.1351124048233032,
        'low': 1.1274974346160889,
        'open': 1.1313625574111938,
        'volume': 0},
       {'adjclose': 1.1324899196624756,
        'close': 1.1324899196624756,
        'date': 1542326400,
        'formatted_date': '2018-11-16',
        'high': 1.141422152519226,
        'low': 1.1322592496871948,
        'open': 1.13252854347229,
        'volume': 0},
       {'adjclose': 1.141396164894104,
        'close': 1.141396164894104,
        'date': 1542585600,
        'formatted_date': '2018-11-19',
        'high': 1.1462894678115845,
        'low': 1.1394453048706055,
        'open': 1.1412137746810913,
        'volume': 0},
       {'adjclose': 1.1455016136169434,
        'close': 1.1455016136169434,
        'date': 1542672000,
        'formatted_date': '2018-11-20',
        'high': 1.1472758054733276,
        'low': 1.1387057304382324,
        'open': 1.1454753875732422,
        'volume': 0},
       {'adjclose': 1.1372424364089966,
        'close': 1.1372424364089966,
        'date': 1542758400,
        'formatted_date': '2018-11-21',
        'high': 1.1422044038772583,
        'low': 1.1366348266601562,
        'open': 1.137268304824829,
        'volume': 0},
       {'adjclose': 1.1388354301452637,
        'close': 1.1388354301452637,
        'date': 1542844800,
        'formatted_date': '2018-11-22',
        'high': 1.1434059143066406,
        'low': 1.1386280059814453,
        'open': 1.1388872861862183,
        'volume': 0},
       {'adjclose': 1.1403158903121948,
        'close': 1.1403158903121948,
        'date': 1542931200,
        'formatted_date': '2018-11-23',
        'high': 1.1419435739517212,
        'low': 1.1332343816757202,
        'open': 1.1402637958526611,
        'volume': 0},
       {'adjclose': 1.1337354183197021,
        'close': 1.1337354183197021,
        'date': 1543190400,
        'formatted_date': '2018-11-26',
        'high': 1.1383557319641113,
        'low': 1.132733702659607,
        'open': 1.1338896751403809,
        'volume': 0},
       {'adjclose': 1.1333370208740234,
        'close': 1.1333370208740234,
        'date': 1543276800,
        'formatted_date': '2018-11-27',
        'high': 1.1344943046569824,
        'low': 1.1279425621032715,
        'open': 1.1334270238876343,
        'volume': 0},
       {'adjclose': 1.1298797130584717,
        'close': 1.1298797130584717,
        'date': 1543363200,
        'formatted_date': '2018-11-28',
        'high': 1.130799651145935,
        'low': 1.1267732381820679,
        'open': 1.129713773727417,
        'volume': 0},
       {'adjclose': 1.1368545293807983,
        'close': 1.1368545293807983,
        'date': 1543449600,
        'formatted_date': '2018-11-29',
        'high': 1.1401468515396118,
        'low': 1.1349579095840454,
        'open': 1.1366606950759888,
        'volume': 0},
       {'adjclose': 1.1392766237258911,
        'close': 1.1392766237258911,
        'date': 1543536000,
        'formatted_date': '2018-11-30',
        'high': 1.1401208639144897,
        'low': 1.1314777135849,
        'open': 1.1392766237258911,
        'volume': 0},
       {'adjclose': 1.1342240571975708,
        'close': 1.1342240571975708,
        'date': 1543795200,
        'formatted_date': '2018-12-03',
        'high': 1.1380059719085693,
        'low': 1.132169485092163,
        'open': 1.1341854333877563,
        'volume': 0},
       {'adjclose': 1.135486125946045,
        'close': 1.135486125946045,
        'date': 1543881600,
        'formatted_date': '2018-12-04',
        'high': 1.14177405834198,
        'low': 1.1343270540237427,
        'open': 1.135589361190796,
        'volume': 0},
       {'adjclose': 1.1342884302139282,
        'close': 1.1342884302139282,
        'date': 1543968000,
        'formatted_date': '2018-12-05',
        'high': 1.1360280513763428,
        'low': 1.1315033435821533,
        'open': 1.1343655586242676,
        'volume': 0},
       {'adjclose': 1.13490629196167,
        'close': 1.13490629196167,
        'date': 1544054400,
        'formatted_date': '2018-12-06',
        'high': 1.1412267684936523,
        'low': 1.132336139678955,
        'open': 1.1347260475158691,
        'volume': 0},
       {'adjclose': 1.1374752521514893,
        'close': 1.1374752521514893,
        'date': 1544140800,
        'formatted_date': '2018-12-07',
        'high': 1.1410704851150513,
        'low': 1.1361312866210938,
        'open': 1.137682318687439,
        'volume': 0},
       {'adjclose': 1.1400948762893677,
        'close': 1.1400948762893677,
        'date': 1544400000,
        'formatted_date': '2018-12-10',
        'high': 1.1445575952529907,
        'low': 1.1362345218658447,
        'open': 1.140380859375,
        'volume': 0},
       {'adjclose': 1.1356538534164429,
        'close': 1.1356538534164429,
        'date': 1544486400,
        'formatted_date': '2018-12-11',
        'high': 1.1399389505386353,
        'low': 1.1307612657546997,
        'open': 1.135499119758606,
        'volume': 0},
       {'adjclose': 1.1323105096817017,
        'close': 1.1323105096817017,
        'date': 1544572800,
        'formatted_date': '2018-12-12',
        'high': 1.138044834136963,
        'low': 1.1316184997558594,
        'open': 1.1322848796844482,
        'volume': 0},
       {'adjclose': 1.1373459100723267,
        'close': 1.1373459100723267,
        'date': 1544659200,
        'formatted_date': '2018-12-13',
        'high': 1.139250636100769,
        'low': 1.1333627700805664,
        'open': 1.137268304824829,
        'volume': 0},
       {'adjclose': 1.1363636255264282,
        'close': 1.1363636255264282,
        'date': 1544745600,
        'formatted_date': '2018-12-14',
        'high': 1.1366219520568848,
        'low': 1.1270780563354492,
        'open': 1.1363248825073242,
        'volume': 0},
       {'adjclose': 1.1305949687957764,
        'close': 1.1305949687957764,
        'date': 1545004800,
        'formatted_date': '2018-12-17',
        'high': 1.1353960037231445,
        'low': 1.1304799318313599,
        'open': 1.130671739578247,
        'volume': 0},
       {'adjclose': 1.1349835395812988,
        'close': 1.1349835395812988,
        'date': 1545091200,
        'formatted_date': '2018-12-18',
        'high': 1.1403002738952637,
        'low': 1.133863925933838,
        'open': 1.1349965333938599,
        'volume': 0},
       {'adjclose': 1.1375399827957153,
        'close': 1.1375399827957153,
        'date': 1545177600,
        'formatted_date': '2018-12-19',
        'high': 1.1439684629440308,
        'low': 1.1375658512115479,
        'open': 1.1375658512115479,
        'volume': 0},
       {'adjclose': 1.1389521360397339,
        'close': 1.1389521360397339,
        'date': 1545264000,
        'formatted_date': '2018-12-20',
        'high': 1.1484880447387695,
        'low': 1.1378376483917236,
        'open': 1.138783574104309,
        'volume': 0},
       {'adjclose': 1.1456853151321411,
        'close': 1.1456853151321411,
        'date': 1545350400,
        'formatted_date': '2018-12-21',
        'high': 1.147446870803833,
        'low': 1.138783574104309,
        'open': 1.1457772254943848,
        'volume': 0},
       {'adjclose': 1.1372811794281006,
        'close': 1.1372811794281006,
        'date': 1545609600,
        'formatted_date': '2018-12-24',
        'high': 1.143837571144104,
        'low': 1.137203574180603,
        'open': 1.137203574180603,
        'volume': 0},
       {'adjclose': 1.140393853187561,
        'close': 1.140393853187561,
        'date': 1545696000,
        'formatted_date': '2018-12-25',
        'high': 1.1422044038772583,
        'low': 1.1370097398757935,
        'open': 1.1405109167099,
        'volume': 0},
       {'adjclose': 1.1415525674819946,
        'close': 1.1415525674819946,
        'date': 1545782400,
        'formatted_date': '2018-12-26',
        'high': 1.1419435739517212,
        'low': 1.137617588043213,
        'open': 1.1413440704345703,
        'volume': 0},
       {'adjclose': 1.1361312866210938,
        'close': 1.1361312866210938,
        'date': 1545868800,
        'formatted_date': '2018-12-27',
        'high': 1.1434321403503418,
        'low': 1.1359118223190308,
        'open': 1.1363636255264282,
        'volume': 0},
       {'adjclose': 1.143105387687683,
        'close': 1.143105387687683,
        'date': 1545955200,
        'formatted_date': '2018-12-28',
        'high': 1.147315263748169,
        'low': 1.1430922746658325,
        'open': 1.1430922746658325,
        'volume': 0},
       {'adjclose': 1.1439945697784424,
        'close': 1.1439945697784424,
        'date': 1546214400,
        'formatted_date': '2018-12-31',
        'high': 1.1465917825698853,
        'low': 1.14223051071167,
        'open': 1.1438899040222168,
        'volume': 0},
       {'adjclose': 1.1493064165115356,
        'close': 1.1493064165115356,
        'date': 1546300800,
        'formatted_date': '2019-01-01',
        'high': 1.155001163482666,
        'low': 1.146499752998352,
        'open': 1.1494252681732178,
        'volume': 0},
       {'adjclose': 1.14617121219635,
        'close': 1.14617121219635,
        'date': 1546387200,
        'formatted_date': '2019-01-02',
        'high': 1.1497001647949219,
        'low': 1.1345715522766113,
        'open': 1.1461317539215088,
        'volume': 0},
       {'adjclose': 1.1318106651306152,
        'close': 1.1318106651306152,
        'date': 1546473600,
        'formatted_date': '2019-01-03',
        'high': 1.1409143209457397,
        'low': 1.131733775138855,
        'open': 1.131733775138855,
        'volume': 0},
       {'adjclose': 1.1391078233718872,
        'close': 1.1391078233718872,
        'date': 1546560000,
        'formatted_date': '2019-01-04',
        'high': 1.14177405834198,
        'low': 1.1348161697387695,
        'open': 1.1390948295593262,
        'volume': 0},
       {'adjclose': 1.1410444974899292,
        'close': 1.1410444974899292,
        'date': 1546819200,
        'formatted_date': '2019-01-07',
        'high': 1.147446870803833,
        'low': 1.1405240297317505,
        'open': 1.141291856765747,
        'volume': 0},
       {'adjclose': 1.1479737758636475,
        'close': 1.1479737758636475,
        'date': 1546905600,
        'formatted_date': '2019-01-08',
        'high': 1.1486331224441528,
        'low': 1.1424654722213745,
        'open': 1.1479343175888062,
        'volume': 0},
       {'adjclose': 1.1456066370010376,
        'close': 1.1456066370010376,
        'date': 1546992000,
        'formatted_date': '2019-01-09',
        'high': 1.1540148258209229,
        'low': 1.144164800643921,
        'open': 1.1457247734069824,
        'volume': 0},
       {'adjclose': 1.1554949283599854,
        'close': 1.1554949283599854,
        'date': 1547078400,
        'formatted_date': '2019-01-10',
        'high': 1.157139539718628,
        'low': 1.151145339012146,
        'open': 1.1555217504501343,
        'volume': 0},
       {'adjclose': 1.151012897491455,
        'close': 1.151012897491455,
        'date': 1547164800,
        'formatted_date': '2019-01-11',
        'high': 1.1539002656936646,
        'low': 1.1459741592407227,
        'open': 1.1515165567398071,
        'volume': 0},
       {'adjclose': 1.146013617515564,
        'close': 1.146013617515564,
        'date': 1547424000,
        'formatted_date': '2019-01-14',
        'high': 1.148369312286377,
        'low': 1.1451605558395386,
        'open': 1.1462763547897339,
        'volume': 0},
       {'adjclose': 1.1472889184951782,
        'close': 1.1472889184951782,
        'date': 1547510400,
        'formatted_date': '2019-01-15',
        'high': 1.1491611003875732,
        'low': 1.1386150121688843,
        'open': 1.147315263748169,
        'volume': 0},
       {'adjclose': 1.1416828632354736,
        'close': 1.1416828632354736,
        'date': 1547596800,
        'formatted_date': '2019-01-16',
        'high': 1.14223051071167,
        'low': 1.1378893852233887,
        'open': 1.141409158706665,
        'volume': 0},
       {'adjclose': 1.1398088932037354,
        'close': 1.1398088932037354,
        'date': 1547683200,
        'formatted_date': '2019-01-17',
        'high': 1.1407711505889893,
        'low': 1.1372424364089966,
        'open': 1.1398999691009521,
        'volume': 0},
       {'adjclose': 1.13926362991333,
        'close': 1.13926362991333,
        'date': 1547769600,
        'formatted_date': '2019-01-18',
        'high': 1.1410315036773682,
        'low': 1.1354217529296875,
        'open': 1.1391856670379639,
        'volume': 0},
       {'adjclose': 1.1365574598312378,
        'close': 1.1365574598312378,
        'date': 1548028800,
        'formatted_date': '2019-01-21',
        'high': 1.1388224363327026,
        'low': 1.1357957124710083,
        'open': 1.1365444660186768,
        'volume': 0},
       {'adjclose': 1.136932134628296,
        'close': 1.136932134628296,
        'date': 1548115200,
        'formatted_date': '2019-01-22',
        'high': 1.1375269889831543,
        'low': 1.1336840391159058,
        'open': 1.1369578838348389,
        'volume': 0},
       {'adjclose': 1.1364023685455322,
        'close': 1.1364023685455322,
        'date': 1548201600,
        'formatted_date': '2019-01-23',
        'high': 1.1393154859542847,
        'low': 1.1351640224456787,
        'open': 1.1363766193389893,
        'volume': 0},
       {'adjclose': 1.1388224363327026,
        'close': 1.1388224363327026,
        'date': 1548288000,
        'formatted_date': '2019-01-24',
        'high': 1.1393414735794067,
        'low': 1.131324052810669,
        'open': 1.1387057304382324,
        'volume': 0},
       {'adjclose': 1.1313496828079224,
        'close': 1.1313496828079224,
        'date': 1548374400,
        'formatted_date': '2019-01-25',
        'high': 1.1411616802215576,
        'low': 1.1305822134017944,
        'open': 1.1309914588928223,
        'volume': 0},
       {'adjclose': 1.1413049697875977,
        'close': 1.1413049697875977,
        'date': 1548633600,
        'formatted_date': '2019-01-28',
        'high': 1.1445575952529907,
        'low': 1.1390948295593262,
        'open': 1.141265869140625,
        'volume': 0},
       {'adjclose': 1.143000841140747,
        'close': 1.143000841140747,
        'date': 1548720000,
        'formatted_date': '2019-01-29',
        'high': 1.1450556516647339,
        'low': 1.1411746740341187,
        'open': 1.1429747343063354,
        'volume': 0},
       {'adjclose': 1.1435366868972778,
        'close': 1.1435366868972778,
        'date': 1548806400,
        'formatted_date': '2019-01-30',
        'high': 1.1450294256210327,
        'low': 1.140862226486206,
        'open': 1.1435105800628662,
        'volume': 0},
       {'adjclose': 1.1487650871276855,
        'close': 1.1487650871276855,
        'date': 1548892800,
        'formatted_date': '2019-01-31',
        'high': 1.1513707637786865,
        'low': 1.1450556516647339,
        'open': 1.1485539674758911,
        'volume': 0},
       {'adjclose': 1.1449507474899292,
        'close': 1.1449507474899292,
        'date': 1548979200,
        'formatted_date': '2019-02-01',
        'high': 1.1488442420959473,
        'low': 1.1435105800628662,
        'open': 1.145081877708435,
        'volume': 0},
       {'adjclose': 1.1455278396606445,
        'close': 1.1455278396606445,
        'date': 1549238400,
        'formatted_date': '2019-02-04',
        'high': 1.1462632417678833,
        'low': 1.1425436735153198,
        'open': 1.1457247734069824,
        'volume': 0},
       {'adjclose': 1.1436283588409424,
        'close': 1.1436283588409424,
        'date': 1549324800,
        'formatted_date': '2019-02-05',
        'high': 1.1442956924438477,
        'low': 1.1403288841247559,
        'open': 1.14357590675354,
        'volume': 0},
       {'adjclose': 1.140992522239685,
        'close': 1.140992522239685,
        'date': 1549411200,
        'formatted_date': '2019-02-06',
        'high': 1.141096591949463,
        'low': 1.1375399827957153,
        'open': 1.1408753395080566,
        'volume': 0},
       {'adjclose': 1.1365960836410522,
        'close': 1.1365960836410522,
        'date': 1549497600,
        'formatted_date': '2019-02-07',
        'high': 1.1370097398757935,
        'low': 1.1326054334640503,
        'open': 1.1366348266601562,
        'volume': 0},
       {'adjclose': 1.1338768005371094,
        'close': 1.1338768005371094,
        'date': 1549584000,
        'formatted_date': '2019-02-08',
        'high': 1.1350995302200317,
        'low': 1.132182240486145,
        'open': 1.1339925527572632,
        'volume': 0},
       {'adjclose': 1.1324259042739868,
        'close': 1.1324259042739868,
        'date': 1549843200,
        'formatted_date': '2019-02-11',
        'high': 1.133144497871399,
        'low': 1.1273448467254639,
        'open': 1.1324259042739868,
        'volume': 0},
       {'adjclose': 1.1279042959213257,
        'close': 1.1279042959213257,
        'date': 1549929600,
        'formatted_date': '2019-02-12',
        'high': 1.1319899559020996,
        'low': 1.125885248184204,
        'open': 1.128031611442566,
        'volume': 0},
       {'adjclose': 1.1334655284881592,
        'close': 1.1334655284881592,
        'date': 1550016000,
        'formatted_date': '2019-02-13',
        'high': 1.134429931640625,
        'low': 1.1282861232757568,
        'open': 1.1332728862762451,
        'volume': 0},
       {'adjclose': 1.12649405002594,
        'close': 1.12649405002594,
        'date': 1550102400,
        'formatted_date': '2019-02-14',
        'high': 1.130825161933899,
        'low': 1.1250618696212769,
        'open': 1.126405119895935,
        'volume': 0},
       {'adjclose': 1.1295350790023804,
        'close': 1.1295350790023804,
        'date': 1550188800,
        'formatted_date': '2019-02-15',
        'high': 1.1298158168792725,
        'low': 1.1234945058822632,
        'open': 1.1294713020324707,
        'volume': 0},
       {'adjclose': 1.1298030614852905,
        'close': 1.1298030614852905,
        'date': 1550448000,
        'formatted_date': '2019-02-18',
        'high': 1.1334141492843628,
        'low': 1.1294840574264526,
        'open': 1.1294840574264526,
        'volume': 0},
       {'adjclose': 1.131196141242981,
        'close': 1.131196141242981,
        'date': 1550534400,
        'formatted_date': '2019-02-19',
        'high': 1.1341854333877563,
        'low': 1.1277008056640625,
        'open': 1.131208896636963,
        'volume': 0},
       {'adjclose': 1.1343011856079102,
        'close': 1.1343011856079102,
        'date': 1550620800,
        'formatted_date': '2019-02-20',
        'high': 1.1369578838348389,
        'low': 1.1325926780700684,
        'open': 1.1343011856079102,
        'volume': 0},
       {'adjclose': 1.1346358060836792,
        'close': 1.1346358060836792,
        'date': 1550707200,
        'formatted_date': '2019-02-21',
        'high': 1.1365832090377808,
        'low': 1.1322592496871948,
        'open': 1.1346358060836792,
        'volume': 0},
       {'adjclose': 1.1343011856079102,
        'close': 1.1343011856079102,
        'date': 1550793600,
        'formatted_date': '2019-02-22',
        'high': 1.1355764865875244,
        'low': 1.131874680519104,
        'open': 1.1339796781539917,
        'volume': 0},
       {'adjclose': 1.1342240571975708,
        'close': 1.1342240571975708,
        'date': 1551052800,
        'formatted_date': '2019-02-25',
        'high': 1.1367511749267578,
        'low': 1.13379967212677,
        'open': 1.1340183019638062,
        'volume': 0},
       {'adjclose': 1.1367511749267578,
        'close': 1.1367511749267578,
        'date': 1551139200,
        'formatted_date': '2019-02-26',
        'high': 1.1378635168075562,
        'low': 1.1346487998962402,
        'open': 1.1366219520568848,
        'volume': 0},
       {'adjclose': 1.1393154859542847,
        'close': 1.1393154859542847,
        'date': 1551225600,
        'formatted_date': '2019-02-27',
        'high': 1.140380859375,
        'low': 1.1363893747329712,
        'open': 1.1394193172454834,
        'volume': 0},
       {'adjclose': 1.1380189657211304,
        'close': 1.1380189657211304,
        'date': 1551312000,
        'formatted_date': '2019-02-28',
        'high': 1.1422044038772583,
        'low': 1.1360796689987183,
        'open': 1.1377859115600586,
        'volume': 0},
       {'adjclose': 1.1373459100723267,
        'close': 1.1373459100723267,
        'date': 1551398400,
        'formatted_date': '2019-03-01',
        'high': 1.1408882141113281,
        'low': 1.135434627532959,
        'open': 1.137255311012268,
        'volume': 0},
       {'adjclose': 1.1375917196273804,
        'close': 1.1375917196273804,
        'date': 1551657600,
        'formatted_date': '2019-03-04',
        'high': 1.1375269889831543,
        'low': 1.1310553550720215,
        'open': 1.1375269889831543,
        'volume': 0},
       {'adjclose': 1.1337354183197021,
        'close': 1.1337354183197021,
        'date': 1551744000,
        'formatted_date': '2019-03-05',
        'high': 1.1339154243469238,
        'low': 1.1293182373046875,
        'open': 1.133825421333313,
        'volume': 0},
       {'adjclose': 1.1307101249694824,
        'close': 1.1307101249694824,
        'date': 1551830400,
        'formatted_date': '2019-03-06',
        'high': 1.132502794265747,
        'low': 1.1291651725769043,
        'open': 1.1306205987930298,
        'volume': 0},
       {'adjclose': 1.1314009428024292,
        'close': 1.1314009428024292,
        'date': 1551916800,
        'formatted_date': '2019-03-07',
        'high': 1.1319899559020996,
        'low': 1.1208752393722534,
        'open': 1.1312474012374878,
        'volume': 0},
       {'adjclose': 1.1198333501815796,
        'close': 1.1198333501815796,
        'date': 1552003200,
        'formatted_date': '2019-03-08',
        'high': 1.1244546175003052,
        'low': 1.1186057329177856,
        'open': 1.1201971769332886,
        'volume': 0},
       {'adjclose': 1.1232421398162842,
        'close': 1.1232421398162842,
        'date': 1552262400,
        'formatted_date': '2019-03-11',
        'high': 1.1257457733154297,
        'low': 1.1222589015960693,
        'open': 1.123103380203247,
        'volume': 0},
       {'adjclose': 1.1259232759475708,
        'close': 1.1259232759475708,
        'date': 1552348800,
        'formatted_date': '2019-03-12',
        'high': 1.129433035850525,
        'low': 1.1250239610671997,
        'open': 1.125885248184204,
        'volume': 0},
       {'adjclose': 1.1287446022033691,
        'close': 1.1287446022033691,
        'date': 1552435200,
        'formatted_date': '2019-03-13',
        'high': 1.1313753128051758,
        'low': 1.1279042959213257,
        'open': 1.1286808252334595,
        'volume': 0},
       {'adjclose': 1.133105993270874,
        'close': 1.133105993270874,
        'date': 1552521600,
        'formatted_date': '2019-03-14',
        'high': 1.133594036102295,
        'low': 1.1294713020324707,
        'open': 1.1332857608795166,
        'volume': 0},
       {'adjclose': 1.1308379173278809,
        'close': 1.1308379173278809,
        'date': 1552608000,
        'formatted_date': '2019-03-15',
        'high': 1.1343011856079102,
        'low': 1.1302244663238525,
        'open': 1.1307612657546997,
        'volume': 0},
       {'adjclose': 1.1319772005081177,
        'close': 1.1319772005081177,
        'date': 1552867200,
        'formatted_date': '2019-03-18',
        'high': 1.1359764337539673,
        'low': 1.1234692335128784,
        'open': 1.1319899559020996,
        'volume': 0},
       {'adjclose': 1.133619785308838,
        'close': 1.133619785308838,
        'date': 1552953600,
        'formatted_date': '2019-03-19',
        'high': 1.1363636255264282,
        'low': 1.1334270238876343,
        'open': 1.13355553150177,
        'volume': 0},
       {'adjclose': 1.135486125946045,
        'close': 1.135486125946045,
        'date': 1553040000,
        'formatted_date': '2019-03-20',
        'high': 1.1367511749267578,
        'low': 1.1336454153060913,
        'open': 1.1353057622909546,
        'volume': 0},
       {'adjclose': 1.1427918672561646,
        'close': 1.1427918672561646,
        'date': 1553126400,
        'formatted_date': '2019-03-21',
        'high': 1.1439945697784424,
        'low': 1.1355119943618774,
        'open': 1.143000841140747,
        'volume': 0},
       {'adjclose': 1.1375011205673218,
        'close': 1.1375011205673218,
        'date': 1553212800,
        'formatted_date': '2019-03-22',
        'high': 1.139211654663086,
        'low': 1.1275609731674194,
        'open': 1.1373976469039917,
        'volume': 0},
       {'adjclose': 1.129586100578308,
        'close': 1.129586100578308,
        'date': 1553472000,
        'formatted_date': '2019-03-25',
        'high': 1.1331701278686523,
        'low': 1.1290504932403564,
        'open': 1.129611611366272,
        'volume': 0},
       {'adjclose': 1.131580114364624,
        'close': 1.131580114364624,
        'date': 1553558400,
        'formatted_date': '2019-03-26',
        'high': 1.1328877210617065,
        'low': 1.1279551982879639,
        'open': 1.1314520835876465,
        'volume': 0},
       {'adjclose': 1.127484679222107,
        'close': 1.127484679222107,
        'date': 1553644800,
        'formatted_date': '2019-03-27',
        'high': 1.1285535097122192,
        'low': 1.1242650747299194,
        'open': 1.1274465322494507,
        'volume': 0},
       {'adjclose': 1.1251758337020874,
        'close': 1.1251758337020874,
        'date': 1553731200,
        'formatted_date': '2019-03-28',
        'high': 1.1262998580932617,
        'low': 1.121516227722168,
        'open': 1.1251378059387207,
        'volume': 0},
       {'adjclose': 1.1230024099349976,
        'close': 1.1230024099349976,
        'date': 1553817600,
        'formatted_date': '2019-03-29',
        'high': 1.1246063709259033,
        'low': 1.1210887432098389,
        'open': 1.1229519844055176,
        'volume': 0},
       {'adjclose': 1.1223849058151245,
        'close': 1.1223849058151245,
        'date': 1554073200,
        'formatted_date': '2019-03-31',
        'high': 1.1250239610671997,
        'low': 1.1209882497787476,
        'open': 1.1223469972610474,
        'volume': 0},
       {'adjclose': 1.1205737590789795,
        'close': 1.1205737590789795,
        'date': 1554159600,
        'formatted_date': '2019-04-01',
        'high': 1.1214005947113037,
        'low': 1.1184556484222412,
        'open': 1.1205987930297852,
        'volume': 0},
       {'adjclose': 1.1203854084014893,
        'close': 1.1203854084014893,
        'date': 1554246000,
        'formatted_date': '2019-04-02',
        'high': 1.125499963760376,
        'low': 1.1202473640441895,
        'open': 1.1202850341796875,
        'volume': 0},
       {'adjclose': 1.1246949434280396,
        'close': 1.1246949434280396,
        'date': 1554332400,
        'formatted_date': '2019-04-03',
        'high': 1.124985933303833,
        'low': 1.1209254264831543,
        'open': 1.124530553817749,
        'volume': 0},
       {'adjclose': 1.1225864887237549,
        'close': 1.1225864887237549,
        'date': 1554418800,
        'formatted_date': '2019-04-04',
        'high': 1.1241512298583984,
        'low': 1.1211642026901245,
        'open': 1.1224603652954102,
        'volume': 0},
       {'adjclose': 1.121956706047058,
        'close': 1.121956706047058,
        'date': 1554678000,
        'formatted_date': '2019-04-07',
        'high': 1.1274083852767944,
        'low': 1.1215540170669556,
        'open': 1.1222084760665894,
        'volume': 0},
       {'adjclose': 1.1256444454193115,
        'close': 1.1256444454193115,
        'date': 1554764400,
        'formatted_date': '2019-04-08',
        'high': 1.1287955045700073,
        'low': 1.1256444454193115,
        'open': 1.1256444454193115,
        'volume': 0},
       {'adjclose': 1.126697063446045,
        'close': 1.126697063446045,
        'date': 1554850800,
        'formatted_date': '2019-04-09',
        'high': 1.1282861232757568,
        'low': 1.123103380203247,
        'open': 1.12649405002594,
        'volume': 0},
       {'adjclose': 1.1276500225067139,
        'close': 1.1276500225067139,
        'date': 1554937200,
        'formatted_date': '2019-04-10',
        'high': 1.1287446022033691,
        'low': 1.1256064176559448,
        'open': 1.1276118755340576,
        'volume': 0},
       {'adjclose': 1.1260753870010376,
        'close': 1.1260753870010376,
        'date': 1555023600,
        'formatted_date': '2019-04-11',
        'high': 1.132502794265747,
        'low': 1.1258344650268555,
        'open': 1.1259359121322632,
        'volume': 0},
       {'adjclose': 1.1305055618286133,
        'close': 1.1305055618286133,
        'date': 1555282800,
        'formatted_date': '2019-04-14',
        'high': 1.1322463750839233,
        'low': 1.1299434900283813,
        'open': 1.130365014076233,
        'volume': 0},
       {'adjclose': 1.1304928064346313,
        'close': 1.1304928064346313,
        'date': 1555369200,
        'formatted_date': '2019-04-15',
        'high': 1.1314995288848877,
        'low': 1.128604531288147,
        'open': 1.130441665649414,
        'volume': 0},
       {'adjclose': 1.128502607345581,
        'close': 1.128502607345581,
        'date': 1555455600,
        'formatted_date': '2019-04-16',
        'high': 1.13237464427948,
        'low': 1.1281843185424805,
        'open': 1.1285152435302734,
        'volume': 0},
       {'adjclose': 1.129713773727417,
        'close': 1.129713773727417,
        'date': 1555542000,
        'formatted_date': '2019-04-17',
        'high': 1.130600094795227,
        'low': 1.1237722635269165,
        'open': 1.1300712823867798,
        'volume': 0},
       {'adjclose': 1.1235954761505127,
        'close': 1.1235954761505127,
        'date': 1555628400,
        'formatted_date': '2019-04-18',
        'high': 1.125112533569336,
        'low': 1.1233052015304565,
        'open': 1.123608112335205,
        'volume': 0},
       {'adjclose': 1.1244546175003052,
        'close': 1.1244546175003052,
        'date': 1555887600,
        'formatted_date': '2019-04-21',
        'high': 1.1263798475265503,
        'low': 1.1236711740493774,
        'open': 1.1244546175003052,
        'volume': 0},
       {'adjclose': 1.1258978843688965,
        'close': 1.1258978843688965,
        'date': 1555974000,
        'formatted_date': '2019-04-22',
        'high': 1.1261261701583862,
        'low': 1.1193444728851318,
        'open': 1.125885248184204,
        'volume': 0},
       {'adjclose': 1.122435212135315,
        'close': 1.122435212135315,
        'date': 1556060400,
        'formatted_date': '2019-04-23',
        'high': 1.1224603652954102,
        'low': 1.1183055639266968,
        'open': 1.1224478483200073,
        'volume': 0},
       {'adjclose': 1.1153494119644165,
        'close': 1.1153494119644165,
        'date': 1556146800,
        'formatted_date': '2019-04-24',
        'high': 1.1164003610610962,
        'low': 1.1121737957000732,
        'open': 1.1156978607177734,
        'volume': 0},
       {'adjclose': 1.113684892654419,
        'close': 1.113684892654419,
        'date': 1556233200,
        'formatted_date': '2019-04-25',
        'high': 1.1172809600830078,
        'low': 1.112297534942627,
        'open': 1.113709807395935,
        'volume': 0},
       {'adjclose': 1.1150261163711548,
        'close': 1.1150261163711548,
        'date': 1556492400,
        'formatted_date': '2019-04-28',
        'high': 1.116994023323059,
        'low': 1.1145538091659546,
        'open': 1.1149017810821533,
        'volume': 0}],
      'timeZone': {'gmtOffset': 3600}},
     'JPY=X': {'currency': 'JPY',
      'eventsData': {},
      'firstTradeDate': {'date': 846633600, 'formatted_date': '1996-10-30'},
      'instrumentType': 'CURRENCY',
      'prices': [{'adjclose': 109.0979995727539,
        'close': 109.0979995727539,
        'date': 1525042800,
        'formatted_date': '2018-04-29',
        'high': 109.43900299072266,
        'low': 109.0199966430664,
        'open': 109.09500122070312,
        'volume': 0},
       {'adjclose': 109.322998046875,
        'close': 109.322998046875,
        'date': 1525129200,
        'formatted_date': '2018-04-30',
        'high': 109.78700256347656,
        'low': 109.25800323486328,
        'open': 109.30599975585938,
        'volume': 0},
       {'adjclose': 109.87200164794922,
        'close': 109.87200164794922,
        'date': 1525215600,
        'formatted_date': '2018-05-01',
        'high': 109.99800109863281,
        'low': 109.6520004272461,
        'open': 109.84600067138672,
        'volume': 0},
       {'adjclose': 109.8270034790039,
        'close': 109.8270034790039,
        'date': 1525302000,
        'formatted_date': '2018-05-02',
        'high': 109.84400177001953,
        'low': 108.93000030517578,
        'open': 109.8219985961914,
        'volume': 0},
       {'adjclose': 109.09600067138672,
        'close': 109.09600067138672,
        'date': 1525388400,
        'formatted_date': '2018-05-03',
        'high': 109.26100158691406,
        'low': 108.64900207519531,
        'open': 109.11900329589844,
        'volume': 0},
       {'adjclose': 109.14600372314453,
        'close': 109.14600372314453,
        'date': 1525647600,
        'formatted_date': '2018-05-06',
        'high': 109.38200378417969,
        'low': 108.75700378417969,
        'open': 109.13899993896484,
        'volume': 0},
       {'adjclose': 108.94300079345703,
        'close': 108.94300079345703,
        'date': 1525734000,
        'formatted_date': '2018-05-07',
        'high': 109.33100128173828,
        'low': 108.85800170898438,
        'open': 108.94000244140625,
        'volume': 0},
       {'adjclose': 109.02400207519531,
        'close': 109.02400207519531,
        'date': 1525820400,
        'formatted_date': '2018-05-08',
        'high': 109.82099914550781,
        'low': 109.0009994506836,
        'open': 109.03900146484375,
        'volume': 0},
       {'adjclose': 109.84700012207031,
        'close': 109.84700012207031,
        'date': 1525906800,
        'formatted_date': '2018-05-09',
        'high': 109.98699951171875,
        'low': 109.33200073242188,
        'open': 109.82599639892578,
        'volume': 0},
       {'adjclose': 109.43599700927734,
        'close': 109.43599700927734,
        'date': 1525993200,
        'formatted_date': '2018-05-10',
        'high': 109.56199645996094,
        'low': 109.16100311279297,
        'open': 109.46399688720703,
        'volume': 0},
       {'adjclose': 109.33799743652344,
        'close': 109.33799743652344,
        'date': 1526252400,
        'formatted_date': '2018-05-13',
        'high': 109.63500213623047,
        'low': 109.20999908447266,
        'open': 109.32599639892578,
        'volume': 0},
       {'adjclose': 109.73100280761719,
        'close': 109.73100280761719,
        'date': 1526338800,
        'formatted_date': '2018-05-14',
        'high': 110.36199951171875,
        'low': 109.6729965209961,
        'open': 109.72899627685547,
        'volume': 0},
       {'adjclose': 110.2969970703125,
        'close': 110.2969970703125,
        'date': 1526425200,
        'formatted_date': '2018-05-15',
        'high': 110.37899780273438,
        'low': 110.04299926757812,
        'open': 110.28299713134766,
        'volume': 0},
       {'adjclose': 110.35900115966797,
        'close': 110.35900115966797,
        'date': 1526511600,
        'formatted_date': '2018-05-16',
        'high': 110.85800170898438,
        'low': 110.09500122070312,
        'open': 110.37999725341797,
        'volume': 0},
       {'adjclose': 110.8280029296875,
        'close': 110.8280029296875,
        'date': 1526598000,
        'formatted_date': '2018-05-17',
        'high': 111.0719985961914,
        'low': 110.65599822998047,
        'open': 110.84400177001953,
        'volume': 0},
       {'adjclose': 110.87999725341797,
        'close': 110.87999725341797,
        'date': 1526857200,
        'formatted_date': '2018-05-20',
        'high': 111.38500213623047,
        'low': 110.90599822998047,
        'open': 110.91799926757812,
        'volume': 0},
       {'adjclose': 110.97799682617188,
        'close': 110.97799682617188,
        'date': 1526943600,
        'formatted_date': '2018-05-21',
        'high': 111.1709976196289,
        'low': 110.8010025024414,
        'open': 111.00700378417969,
        'volume': 0},
       {'adjclose': 110.72599792480469,
        'close': 110.72599792480469,
        'date': 1527030000,
        'formatted_date': '2018-05-22',
        'high': 110.8740005493164,
        'low': 109.55899810791016,
        'open': 110.7300033569336,
        'volume': 0},
       {'adjclose': 109.86900329589844,
        'close': 109.86900329589844,
        'date': 1527116400,
        'formatted_date': '2018-05-23',
        'high': 109.91300201416016,
        'low': 108.97599792480469,
        'open': 109.90899658203125,
        'volume': 0},
       {'adjclose': 109.31199645996094,
        'close': 109.31199645996094,
        'date': 1527202800,
        'formatted_date': '2018-05-24',
        'high': 109.72100067138672,
        'low': 109.11900329589844,
        'open': 109.33000183105469,
        'volume': 0},
       {'adjclose': 109.62300109863281,
        'close': 109.62300109863281,
        'date': 1527462000,
        'formatted_date': '2018-05-27',
        'high': 109.73100280761719,
        'low': 109.2509994506836,
        'open': 109.63700103759766,
        'volume': 0},
       {'adjclose': 109.38899993896484,
        'close': 109.38899993896484,
        'date': 1527548400,
        'formatted_date': '2018-05-28',
        'high': 109.38700103759766,
        'low': 108.47599792480469,
        'open': 109.38700103759766,
        'volume': 0},
       {'adjclose': 108.39399719238281,
        'close': 108.39399719238281,
        'date': 1527634800,
        'formatted_date': '2018-05-29',
        'high': 109.05999755859375,
        'low': 108.39900207519531,
        'open': 108.4489974975586,
        'volume': 0},
       {'adjclose': 108.71199798583984,
        'close': 108.71199798583984,
        'date': 1527721200,
        'formatted_date': '2018-05-30',
        'high': 108.98400115966797,
        'low': 108.4000015258789,
        'open': 108.7239990234375,
        'volume': 0},
       {'adjclose': 108.7490005493164,
        'close': 108.7490005493164,
        'date': 1527807600,
        'formatted_date': '2018-05-31',
        'high': 109.72000122070312,
        'low': 108.76200103759766,
        'open': 108.76499938964844,
        'volume': 0},
       {'adjclose': 109.5979995727539,
        'close': 109.5979995727539,
        'date': 1528066800,
        'formatted_date': '2018-06-03',
        'high': 109.7490005493164,
        'low': 109.37300109863281,
        'open': 109.5979995727539,
        'volume': 0},
       {'adjclose': 109.96299743652344,
        'close': 109.96299743652344,
        'date': 1528153200,
        'formatted_date': '2018-06-04',
        'high': 109.98600006103516,
        'low': 109.59300231933594,
        'open': 109.9729995727539,
        'volume': 0},
       {'adjclose': 109.85900115966797,
        'close': 109.85900115966797,
        'date': 1528239600,
        'formatted_date': '2018-06-05',
        'high': 110.21499633789062,
        'low': 109.8010025024414,
        'open': 109.87300109863281,
        'volume': 0},
       {'adjclose': 110.125,
        'close': 110.125,
        'date': 1528326000,
        'formatted_date': '2018-06-06',
        'high': 110.21499633789062,
        'low': 109.8499984741211,
        'open': 110.11699676513672,
        'volume': 0},
       {'adjclose': 109.69400024414062,
        'close': 109.69400024414062,
        'date': 1528412400,
        'formatted_date': '2018-06-07',
        'high': 109.84500122070312,
        'low': 109.1989974975586,
        'open': 109.72200012207031,
        'volume': 0},
       {'adjclose': 109.44300079345703,
        'close': 109.44300079345703,
        'date': 1528671600,
        'formatted_date': '2018-06-10',
        'high': 110.0469970703125,
        'low': 109.39900207519531,
        'open': 109.51000213623047,
        'volume': 0},
       {'adjclose': 110.38600158691406,
        'close': 110.38600158691406,
        'date': 1528758000,
        'formatted_date': '2018-06-11',
        'high': 110.47000122070312,
        'low': 110.0999984741211,
        'open': 110.36199951171875,
        'volume': 0},
       {'adjclose': 110.4520034790039,
        'close': 110.4520034790039,
        'date': 1528844400,
        'formatted_date': '2018-06-12',
        'high': 110.7040023803711,
        'low': 110.34300231933594,
        'open': 110.46600341796875,
        'volume': 0},
       {'adjclose': 110.24199676513672,
        'close': 110.24199676513672,
        'date': 1528930800,
        'formatted_date': '2018-06-13',
        'high': 110.45700073242188,
        'low': 109.91899871826172,
        'open': 110.24400329589844,
        'volume': 0},
       {'adjclose': 110.6449966430664,
        'close': 110.6449966430664,
        'date': 1529017200,
        'formatted_date': '2018-06-14',
        'high': 110.89700317382812,
        'low': 110.39199829101562,
        'open': 110.66100311279297,
        'volume': 0},
       {'adjclose': 110.61699676513672,
        'close': 110.61699676513672,
        'date': 1529276400,
        'formatted_date': '2018-06-17',
        'high': 110.64900207519531,
        'low': 110.30799865722656,
        'open': 110.62300109863281,
        'volume': 0},
       {'adjclose': 110.13800048828125,
        'close': 110.13800048828125,
        'date': 1529362800,
        'formatted_date': '2018-06-18',
        'high': 110.19300079345703,
        'low': 109.55899810791016,
        'open': 110.16899871826172,
        'volume': 0},
       {'adjclose': 110.07099914550781,
        'close': 110.07099914550781,
        'date': 1529449200,
        'formatted_date': '2018-06-19',
        'high': 110.24400329589844,
        'low': 109.87000274658203,
        'open': 110.08100128173828,
        'volume': 0},
       {'adjclose': 110.35199737548828,
        'close': 110.35199737548828,
        'date': 1529535600,
        'formatted_date': '2018-06-20',
        'high': 110.7490005493164,
        'low': 109.88600158691406,
        'open': 110.34400177001953,
        'volume': 0},
       {'adjclose': 109.9520034790039,
        'close': 109.9520034790039,
        'date': 1529622000,
        'formatted_date': '2018-06-21',
        'high': 110.20899963378906,
        'low': 109.802001953125,
        'open': 109.93599700927734,
        'volume': 0},
       {'adjclose': 109.93699645996094,
        'close': 109.93699645996094,
        'date': 1529881200,
        'formatted_date': '2018-06-24',
        'high': 109.93499755859375,
        'low': 109.38099670410156,
        'open': 109.93499755859375,
        'volume': 0},
       {'adjclose': 109.64299774169922,
        'close': 109.64299774169922,
        'date': 1529967600,
        'formatted_date': '2018-06-25',
        'high': 110.01599884033203,
        'low': 109.38899993896484,
        'open': 109.63300323486328,
        'volume': 0},
       {'adjclose': 110.09700012207031,
        'close': 110.09700012207031,
        'date': 1530054000,
        'formatted_date': '2018-06-26',
        'high': 110.47899627685547,
        'low': 109.68800354003906,
        'open': 110.12999725341797,
        'volume': 0},
       {'adjclose': 110.21499633789062,
        'close': 110.21499633789062,
        'date': 1530140400,
        'formatted_date': '2018-06-27',
        'high': 110.41100311279297,
        'low': 109.9739990234375,
        'open': 110.22899627685547,
        'volume': 0},
       {'adjclose': 110.48600006103516,
        'close': 110.48600006103516,
        'date': 1530226800,
        'formatted_date': '2018-06-28',
        'high': 110.87100219726562,
        'low': 110.38800048828125,
        'open': 110.44200134277344,
        'volume': 0},
       {'adjclose': 110.70999908447266,
        'close': 110.70999908447266,
        'date': 1530486000,
        'formatted_date': '2018-07-01',
        'high': 111.0530014038086,
        'low': 110.60600280761719,
        'open': 110.74500274658203,
        'volume': 0},
       {'adjclose': 110.87100219726562,
        'close': 110.87100219726562,
        'date': 1530572400,
        'formatted_date': '2018-07-02',
        'high': 111.1259994506836,
        'low': 110.51000213623047,
        'open': 110.88700103759766,
        'volume': 0},
       {'adjclose': 110.40799713134766,
        'close': 110.40799713134766,
        'date': 1530658800,
        'formatted_date': '2018-07-03',
        'high': 110.5459976196289,
        'low': 110.28199768066406,
        'open': 110.4000015258789,
        'volume': 0},
       {'adjclose': 110.50199890136719,
        'close': 110.50199890136719,
        'date': 1530745200,
        'formatted_date': '2018-07-04',
        'high': 110.7030029296875,
        'low': 110.29499816894531,
        'open': 110.49700164794922,
        'volume': 0},
       {'adjclose': 110.5790023803711,
        'close': 110.5790023803711,
        'date': 1530831600,
        'formatted_date': '2018-07-05',
        'high': 110.77799987792969,
        'low': 110.38400268554688,
        'open': 110.55500030517578,
        'volume': 0},
       {'adjclose': 110.4219970703125,
        'close': 110.4219970703125,
        'date': 1531090800,
        'formatted_date': '2018-07-08',
        'high': 110.7760009765625,
        'low': 110.36000061035156,
        'open': 110.4229965209961,
        'volume': 0},
       {'adjclose': 110.9530029296875,
        'close': 110.9530029296875,
        'date': 1531177200,
        'formatted_date': '2018-07-09',
        'high': 111.34300231933594,
        'low': 110.92400360107422,
        'open': 110.94100189208984,
        'volume': 0},
       {'adjclose': 110.83100128173828,
        'close': 110.83100128173828,
        'date': 1531263600,
        'formatted_date': '2018-07-10',
        'high': 111.62000274658203,
        'low': 110.77400207519531,
        'open': 110.875,
        'volume': 0},
       {'adjclose': 111.95800018310547,
        'close': 111.95800018310547,
        'date': 1531350000,
        'formatted_date': '2018-07-11',
        'high': 112.61599731445312,
        'low': 111.98600006103516,
        'open': 111.98600006103516,
        'volume': 0},
       {'adjclose': 112.66500091552734,
        'close': 112.66500091552734,
        'date': 1531436400,
        'formatted_date': '2018-07-12',
        'high': 112.79299926757812,
        'low': 112.36900329589844,
        'open': 112.65499877929688,
        'volume': 0},
       {'adjclose': 112.39900207519531,
        'close': 112.39900207519531,
        'date': 1531695600,
        'formatted_date': '2018-07-15',
        'high': 112.54900360107422,
        'low': 112.2509994506836,
        'open': 112.40299987792969,
        'volume': 0},
       {'adjclose': 112.3740005493164,
        'close': 112.3740005493164,
        'date': 1531782000,
        'formatted_date': '2018-07-16',
        'high': 112.89900207519531,
        'low': 112.23500061035156,
        'open': 112.36299896240234,
        'volume': 0},
       {'adjclose': 113.01200103759766,
        'close': 113.01200103759766,
        'date': 1531868400,
        'formatted_date': '2018-07-17',
        'high': 113.12899780273438,
        'low': 112.72000122070312,
        'open': 112.99099731445312,
        'volume': 0},
       {'adjclose': 112.79100036621094,
        'close': 112.79100036621094,
        'date': 1531954800,
        'formatted_date': '2018-07-18',
        'high': 113.14700317382812,
        'low': 112.65399932861328,
        'open': 112.802001953125,
        'volume': 0},
       {'adjclose': 112.36299896240234,
        'close': 112.36299896240234,
        'date': 1532041200,
        'formatted_date': '2018-07-19',
        'high': 112.61299896240234,
        'low': 111.64600372314453,
        'open': 112.37200164794922,
        'volume': 0},
       {'adjclose': 111.0530014038086,
        'close': 111.0530014038086,
        'date': 1532300400,
        'formatted_date': '2018-07-22',
        'high': 111.4209976196289,
        'low': 110.77899932861328,
        'open': 111.05799865722656,
        'volume': 0},
       {'adjclose': 111.45999908447266,
        'close': 111.45999908447266,
        'date': 1532386800,
        'formatted_date': '2018-07-23',
        'high': 111.44999694824219,
        'low': 110.97599792480469,
        'open': 111.44999694824219,
        'volume': 0},
       {'adjclose': 111.24099731445312,
        'close': 111.24099731445312,
        'date': 1532473200,
        'formatted_date': '2018-07-24',
        'high': 111.36000061035156,
        'low': 110.90499877929688,
        'open': 111.26799774169922,
        'volume': 0},
       {'adjclose': 110.84500122070312,
        'close': 110.84500122070312,
        'date': 1532559600,
        'formatted_date': '2018-07-25',
        'high': 111.1989974975586,
        'low': 110.60299682617188,
        'open': 110.8759994506836,
        'volume': 0},
       {'adjclose': 111.14600372314453,
        'close': 111.14600372314453,
        'date': 1532646000,
        'formatted_date': '2018-07-26',
        'high': 111.21600341796875,
        'low': 110.90499877929688,
        'open': 111.13899993896484,
        'volume': 0},
       {'adjclose': 110.93399810791016,
        'close': 110.93399810791016,
        'date': 1532905200,
        'formatted_date': '2018-07-29',
        'high': 111.15599822998047,
        'low': 110.89399719238281,
        'open': 110.9219970703125,
        'volume': 0},
       {'adjclose': 110.99400329589844,
        'close': 110.99400329589844,
        'date': 1532991600,
        'formatted_date': '2018-07-30',
        'high': 111.9530029296875,
        'low': 110.85900115966797,
        'open': 110.98899841308594,
        'volume': 0},
       {'adjclose': 111.80799865722656,
        'close': 111.80799865722656,
        'date': 1533078000,
        'formatted_date': '2018-07-31',
        'high': 112.13700103759766,
        'low': 111.69999694824219,
        'open': 111.79499816894531,
        'volume': 0},
       {'adjclose': 111.62000274658203,
        'close': 111.62000274658203,
        'date': 1533164400,
        'formatted_date': '2018-08-01',
        'high': 111.7239990234375,
        'low': 111.33000183105469,
        'open': 111.63700103759766,
        'volume': 0},
       {'adjclose': 111.69000244140625,
        'close': 111.69000244140625,
        'date': 1533250800,
        'formatted_date': '2018-08-02',
        'high': 111.78299713134766,
        'low': 111.0999984741211,
        'open': 111.6989974975586,
        'volume': 0},
       {'adjclose': 111.23400115966797,
        'close': 111.23400115966797,
        'date': 1533510000,
        'formatted_date': '2018-08-05',
        'high': 111.52200317382812,
        'low': 111.16699981689453,
        'open': 111.21700286865234,
        'volume': 0},
       {'adjclose': 111.33999633789062,
        'close': 111.33999633789062,
        'date': 1533596400,
        'formatted_date': '2018-08-06',
        'high': 111.36399841308594,
        'low': 110.9990005493164,
        'open': 111.3280029296875,
        'volume': 0},
       {'adjclose': 111.34500122070312,
        'close': 111.34500122070312,
        'date': 1533682800,
        'formatted_date': '2018-08-07',
        'high': 111.41999816894531,
        'low': 110.83999633789062,
        'open': 111.34700012207031,
        'volume': 0},
       {'adjclose': 110.89199829101562,
        'close': 110.89199829101562,
        'date': 1533769200,
        'formatted_date': '2018-08-08',
        'high': 111.1780014038086,
        'low': 110.70999908447266,
        'open': 110.90299987792969,
        'volume': 0},
       {'adjclose': 111.09100341796875,
        'close': 111.09100341796875,
        'date': 1533855600,
        'formatted_date': '2018-08-09',
        'high': 111.12799835205078,
        'low': 110.51799774169922,
        'open': 111.06400299072266,
        'volume': 0},
       {'adjclose': 110.62899780273438,
        'close': 110.62899780273438,
        'date': 1534114800,
        'formatted_date': '2018-08-12',
        'high': 110.927001953125,
        'low': 110.11499786376953,
        'open': 110.64900207519531,
        'volume': 0},
       {'adjclose': 110.66100311279297,
        'close': 110.66100311279297,
        'date': 1534201200,
        'formatted_date': '2018-08-13',
        'high': 111.12300109863281,
        'low': 110.5979995727539,
        'open': 110.5979995727539,
        'volume': 0},
       {'adjclose': 111.24600219726562,
        'close': 111.24600219726562,
        'date': 1534287600,
        'formatted_date': '2018-08-14',
        'high': 111.41799926757812,
        'low': 110.43599700927734,
        'open': 111.25299835205078,
        'volume': 0},
       {'adjclose': 110.57599639892578,
        'close': 110.57599639892578,
        'date': 1534374000,
        'formatted_date': '2018-08-15',
        'high': 110.91000366210938,
        'low': 110.47200012207031,
        'open': 110.58499908447266,
        'volume': 0},
       {'adjclose': 111.00399780273438,
        'close': 111.00399780273438,
        'date': 1534460400,
        'formatted_date': '2018-08-16',
        'high': 111.03500366210938,
        'low': 110.322998046875,
        'open': 110.99299621582031,
        'volume': 0},
       {'adjclose': 110.4749984741211,
        'close': 110.4749984741211,
        'date': 1534719600,
        'formatted_date': '2018-08-19',
        'high': 110.67500305175781,
        'low': 110.30999755859375,
        'open': 110.47699737548828,
        'volume': 0},
       {'adjclose': 109.947998046875,
        'close': 109.947998046875,
        'date': 1534806000,
        'formatted_date': '2018-08-20',
        'high': 110.48899841308594,
        'low': 109.7760009765625,
        'open': 109.93599700927734,
        'volume': 0},
       {'adjclose': 110.13400268554688,
        'close': 110.13400268554688,
        'date': 1534892400,
        'formatted_date': '2018-08-21',
        'high': 110.60900115966797,
        'low': 110.02999877929688,
        'open': 110.10099792480469,
        'volume': 0},
       {'adjclose': 110.58799743652344,
        'close': 110.58799743652344,
        'date': 1534978800,
        'formatted_date': '2018-08-22',
        'high': 111.28500366210938,
        'low': 110.552001953125,
        'open': 110.55999755859375,
        'volume': 0},
       {'adjclose': 111.36699676513672,
        'close': 111.36699676513672,
        'date': 1535065200,
        'formatted_date': '2018-08-23',
        'high': 111.48100280761719,
        'low': 111.14099884033203,
        'open': 111.33799743652344,
        'volume': 0},
       {'adjclose': 111.28199768066406,
        'close': 111.28199768066406,
        'date': 1535324400,
        'formatted_date': '2018-08-26',
        'high': 111.33799743652344,
        'low': 110.94400024414062,
        'open': 111.28900146484375,
        'volume': 0},
       {'adjclose': 111.13700103759766,
        'close': 111.13700103759766,
        'date': 1535410800,
        'formatted_date': '2018-08-27',
        'high': 111.35099792480469,
        'low': 110.94000244140625,
        'open': 111.1259994506836,
        'volume': 0},
       {'adjclose': 111.16200256347656,
        'close': 111.16200256347656,
        'date': 1535497200,
        'formatted_date': '2018-08-28',
        'high': 111.81199645996094,
        'low': 111.12899780273438,
        'open': 111.16100311279297,
        'volume': 0},
       {'adjclose': 111.71199798583984,
        'close': 111.71199798583984,
        'date': 1535583600,
        'formatted_date': '2018-08-29',
        'high': 111.74600219726562,
        'low': 111.13600158691406,
        'open': 111.69100189208984,
        'volume': 0},
       {'adjclose': 110.9990005493164,
        'close': 110.9990005493164,
        'date': 1535670000,
        'formatted_date': '2018-08-30',
        'high': 111.08599853515625,
        'low': 110.68599700927734,
        'open': 110.99800109863281,
        'volume': 0},
       {'adjclose': 111.14399719238281,
        'close': 111.14399719238281,
        'date': 1535929200,
        'formatted_date': '2018-09-02',
        'high': 111.16600036621094,
        'low': 110.85099792480469,
        'open': 111.14099884033203,
        'volume': 0},
       {'adjclose': 111.08799743652344,
        'close': 111.08799743652344,
        'date': 1536015600,
        'formatted_date': '2018-09-03',
        'high': 111.5250015258789,
        'low': 110.91699981689453,
        'open': 111.06099700927734,
        'volume': 0},
       {'adjclose': 111.46099853515625,
        'close': 111.46099853515625,
        'date': 1536102000,
        'formatted_date': '2018-09-04',
        'high': 111.75199890136719,
        'low': 111.40499877929688,
        'open': 111.44599914550781,
        'volume': 0},
       {'adjclose': 111.4489974975586,
        'close': 111.4489974975586,
        'date': 1536188400,
        'formatted_date': '2018-09-05',
        'high': 111.43099975585938,
        'low': 110.84700012207031,
        'open': 111.43099975585938,
        'volume': 0},
       {'adjclose': 110.49500274658203,
        'close': 110.49500274658203,
        'date': 1536274800,
        'formatted_date': '2018-09-06',
        'high': 111.23300170898438,
        'low': 110.3949966430664,
        'open': 110.48600006103516,
        'volume': 0},
       {'adjclose': 110.91999816894531,
        'close': 110.91999816894531,
        'date': 1536534000,
        'formatted_date': '2018-09-09',
        'high': 111.18499755859375,
        'low': 110.875,
        'open': 110.91400146484375,
        'volume': 0},
       {'adjclose': 111.14800262451172,
        'close': 111.14800262451172,
        'date': 1536620400,
        'formatted_date': '2018-09-10',
        'high': 111.59200286865234,
        'low': 111.1510009765625,
        'open': 111.15899658203125,
        'volume': 0},
       {'adjclose': 111.60700225830078,
        'close': 111.60700225830078,
        'date': 1536706800,
        'formatted_date': '2018-09-11',
        'high': 111.60199737548828,
        'low': 111.21900177001953,
        'open': 111.5979995727539,
        'volume': 0},
       {'adjclose': 111.22000122070312,
        'close': 111.22000122070312,
        'date': 1536793200,
        'formatted_date': '2018-09-12',
        'high': 111.94499969482422,
        'low': 111.1719970703125,
        'open': 111.1719970703125,
        'volume': 0},
       {'adjclose': 112.01200103759766,
        'close': 112.01200103759766,
        'date': 1536879600,
        'formatted_date': '2018-09-13',
        'high': 112.16500091552734,
        'low': 111.75399780273438,
        'open': 112.0469970703125,
        'volume': 0},
       {'adjclose': 111.9530029296875,
        'close': 111.9530029296875,
        'date': 1537138800,
        'formatted_date': '2018-09-16',
        'high': 112.11699676513672,
        'low': 111.85700225830078,
        'open': 111.95099639892578,
        'volume': 0},
       {'adjclose': 111.69000244140625,
        'close': 111.69000244140625,
        'date': 1537225200,
        'formatted_date': '2018-09-17',
        'high': 112.375,
        'low': 111.66699981689453,
        'open': 111.66699981689453,
        'volume': 0},
       {'adjclose': 112.2770004272461,
        'close': 112.2770004272461,
        'date': 1537311600,
        'formatted_date': '2018-09-18',
        'high': 112.4260025024414,
        'low': 112.19000244140625,
        'open': 112.28700256347656,
        'volume': 0},
       {'adjclose': 112.31700134277344,
        'close': 112.31700134277344,
        'date': 1537398000,
        'formatted_date': '2018-09-19',
        'high': 112.57499694824219,
        'low': 112.05999755859375,
        'open': 112.31700134277344,
        'volume': 0},
       {'adjclose': 112.49500274658203,
        'close': 112.49500274658203,
        'date': 1537484400,
        'formatted_date': '2018-09-20',
        'high': 112.87100219726562,
        'low': 112.46399688720703,
        'open': 112.48300170898438,
        'volume': 0},
       {'adjclose': 112.52400207519531,
        'close': 112.52400207519531,
        'date': 1537743600,
        'formatted_date': '2018-09-23',
        'high': 112.68399810791016,
        'low': 112.44400024414062,
        'open': 112.5250015258789,
        'volume': 0},
       {'adjclose': 112.78600311279297,
        'close': 112.78600311279297,
        'date': 1537830000,
        'formatted_date': '2018-09-24',
        'high': 112.95700073242188,
        'low': 112.73999786376953,
        'open': 112.79499816894531,
        'volume': 0},
       {'adjclose': 112.96900177001953,
        'close': 112.96900177001953,
        'date': 1537916400,
        'formatted_date': '2018-09-25',
        'high': 113.0459976196289,
        'low': 112.7699966430664,
        'open': 112.97699737548828,
        'volume': 0},
       {'adjclose': 112.7040023803711,
        'close': 112.7040023803711,
        'date': 1538002800,
        'formatted_date': '2018-09-26',
        'high': 113.3949966430664,
        'low': 112.56999969482422,
        'open': 112.69999694824219,
        'volume': 0},
       {'adjclose': 113.35700225830078,
        'close': 113.35700225830078,
        'date': 1538089200,
        'formatted_date': '2018-09-27',
        'high': 113.64900207519531,
        'low': 113.33000183105469,
        'open': 113.38899993896484,
        'volume': 0},
       {'adjclose': 113.7959976196289,
        'close': 113.7959976196289,
        'date': 1538348400,
        'formatted_date': '2018-09-30',
        'high': 114.05400085449219,
        'low': 113.73799896240234,
        'open': 113.78399658203125,
        'volume': 0},
       {'adjclose': 113.94599914550781,
        'close': 113.94599914550781,
        'date': 1538434800,
        'formatted_date': '2018-10-01',
        'high': 114.00700378417969,
        'low': 113.52799987792969,
        'open': 113.95800018310547,
        'volume': 0},
       {'adjclose': 113.5770034790039,
        'close': 113.5770034790039,
        'date': 1538521200,
        'formatted_date': '2018-10-02',
        'high': 114.2239990234375,
        'low': 113.51799774169922,
        'open': 113.5739974975586,
        'volume': 0},
       {'adjclose': 114.48600006103516,
        'close': 114.48600006103516,
        'date': 1538607600,
        'formatted_date': '2018-10-03',
        'high': 114.51100158691406,
        'low': 113.66200256347656,
        'open': 114.48899841308594,
        'volume': 0},
       {'adjclose': 113.89399719238281,
        'close': 113.89399719238281,
        'date': 1538694000,
        'formatted_date': '2018-10-04',
        'high': 114.08599853515625,
        'low': 113.56400299072266,
        'open': 113.89900207519531,
        'volume': 0},
       {'adjclose': 113.71499633789062,
        'close': 113.71499633789062,
        'date': 1538953200,
        'formatted_date': '2018-10-07',
        'high': 113.94000244140625,
        'low': 113.00199890136719,
        'open': 113.69599914550781,
        'volume': 0},
       {'adjclose': 113.09700012207031,
        'close': 113.09700012207031,
        'date': 1539039600,
        'formatted_date': '2018-10-08',
        'high': 113.37999725341797,
        'low': 112.94000244140625,
        'open': 113.09300231933594,
        'volume': 0},
       {'adjclose': 112.99800109863281,
        'close': 112.99800109863281,
        'date': 1539126000,
        'formatted_date': '2018-10-09',
        'high': 113.27200317382812,
        'low': 112.6050033569336,
        'open': 112.9990005493164,
        'volume': 0},
       {'adjclose': 112.09200286865234,
        'close': 112.09200286865234,
        'date': 1539212400,
        'formatted_date': '2018-10-10',
        'high': 112.51799774169922,
        'low': 111.98699951171875,
        'open': 112.12100219726562,
        'volume': 0},
       {'adjclose': 112.08000183105469,
        'close': 112.08000183105469,
        'date': 1539298800,
        'formatted_date': '2018-10-11',
        'high': 112.48999786376953,
        'low': 112.00700378417969,
        'open': 112.10199737548828,
        'volume': 0},
       {'adjclose': 112.19200134277344,
        'close': 112.19200134277344,
        'date': 1539558000,
        'formatted_date': '2018-10-14',
        'high': 112.21900177001953,
        'low': 111.62300109863281,
        'open': 112.21900177001953,
        'volume': 0},
       {'adjclose': 111.84100341796875,
        'close': 111.84100341796875,
        'date': 1539644400,
        'formatted_date': '2018-10-15',
        'high': 112.28500366210938,
        'low': 111.81300354003906,
        'open': 111.84700012207031,
        'volume': 0},
       {'adjclose': 112.34200286865234,
        'close': 112.34200286865234,
        'date': 1539730800,
        'formatted_date': '2018-10-16',
        'high': 112.41400146484375,
        'low': 112.01799774169922,
        'open': 112.31400299072266,
        'volume': 0},
       {'adjclose': 112.62799835205078,
        'close': 112.62799835205078,
        'date': 1539817200,
        'formatted_date': '2018-10-17',
        'high': 112.7249984741211,
        'low': 112.08999633789062,
        'open': 112.61799621582031,
        'volume': 0},
       {'adjclose': 112.18499755859375,
        'close': 112.18499755859375,
        'date': 1539903600,
        'formatted_date': '2018-10-18',
        'high': 112.62300109863281,
        'low': 112.1989974975586,
        'open': 112.21099853515625,
        'volume': 0},
       {'adjclose': 112.4800033569336,
        'close': 112.4800033569336,
        'date': 1540162800,
        'formatted_date': '2018-10-21',
        'high': 112.8740005493164,
        'low': 112.35199737548828,
        'open': 112.45099639892578,
        'volume': 0},
       {'adjclose': 112.75700378417969,
        'close': 112.75700378417969,
        'date': 1540249200,
        'formatted_date': '2018-10-22',
        'high': 112.79499816894531,
        'low': 111.96199798583984,
        'open': 112.74099731445312,
        'volume': 0},
       {'adjclose': 112.44400024414062,
        'close': 112.44400024414062,
        'date': 1540335600,
        'formatted_date': '2018-10-23',
        'high': 112.73699951171875,
        'low': 112.33100128173828,
        'open': 112.4469985961914,
        'volume': 0},
       {'adjclose': 112.01200103759766,
        'close': 112.01200103759766,
        'date': 1540422000,
        'formatted_date': '2018-10-24',
        'high': 112.63099670410156,
        'low': 111.82499694824219,
        'open': 112.02899932861328,
        'volume': 0},
       {'adjclose': 112.3499984741211,
        'close': 112.3499984741211,
        'date': 1540508400,
        'formatted_date': '2018-10-25',
        'high': 112.43399810791016,
        'low': 111.38500213623047,
        'open': 112.31300354003906,
        'volume': 0},
       {'adjclose': 111.90799713134766,
        'close': 111.90799713134766,
        'date': 1540771200,
        'formatted_date': '2018-10-29',
        'high': 112.5510025024414,
        'low': 111.79000091552734,
        'open': 111.91200256347656,
        'volume': 0},
       {'adjclose': 112.3239974975586,
        'close': 112.3239974975586,
        'date': 1540857600,
        'formatted_date': '2018-10-30',
        'high': 112.9729995727539,
        'low': 112.30699920654297,
        'open': 112.30699920654297,
        'volume': 0},
       {'adjclose': 113.052001953125,
        'close': 113.052001953125,
        'date': 1540944000,
        'formatted_date': '2018-10-31',
        'high': 113.375,
        'low': 112.8280029296875,
        'open': 113.05699920654297,
        'volume': 0},
       {'adjclose': 112.85099792480469,
        'close': 112.85099792480469,
        'date': 1541030400,
        'formatted_date': '2018-11-01',
        'high': 112.99500274658203,
        'low': 112.64199829101562,
        'open': 112.84600067138672,
        'volume': 0},
       {'adjclose': 112.71499633789062,
        'close': 112.71499633789062,
        'date': 1541116800,
        'formatted_date': '2018-11-02',
        'high': 113.10299682617188,
        'low': 112.66100311279297,
        'open': 112.7229995727539,
        'volume': 0},
       {'adjclose': 113.13899993896484,
        'close': 113.13899993896484,
        'date': 1541376000,
        'formatted_date': '2018-11-05',
        'high': 113.32099914550781,
        'low': 113.07499694824219,
        'open': 113.13300323486328,
        'volume': 0},
       {'adjclose': 113.24600219726562,
        'close': 113.24600219726562,
        'date': 1541462400,
        'formatted_date': '2018-11-06',
        'high': 113.43599700927734,
        'low': 113.10800170898438,
        'open': 113.27300262451172,
        'volume': 0},
       {'adjclose': 113.36299896240234,
        'close': 113.36299896240234,
        'date': 1541548800,
        'formatted_date': '2018-11-07',
        'high': 113.80799865722656,
        'low': 112.94999694824219,
        'open': 113.35199737548828,
        'volume': 0},
       {'adjclose': 113.5469970703125,
        'close': 113.5469970703125,
        'date': 1541635200,
        'formatted_date': '2018-11-08',
        'high': 113.875,
        'low': 113.5510025024414,
        'open': 113.56600189208984,
        'volume': 0},
       {'adjclose': 113.9530029296875,
        'close': 113.9530029296875,
        'date': 1541721600,
        'formatted_date': '2018-11-09',
        'high': 114.00199890136719,
        'low': 113.65599822998047,
        'open': 113.95899963378906,
        'volume': 0},
       {'adjclose': 113.84600067138672,
        'close': 113.84600067138672,
        'date': 1541980800,
        'formatted_date': '2018-11-12',
        'high': 114.18399810791016,
        'low': 113.66000366210938,
        'open': 113.83799743652344,
        'volume': 0},
       {'adjclose': 113.69599914550781,
        'close': 113.69599914550781,
        'date': 1542067200,
        'formatted_date': '2018-11-13',
        'high': 114.13999938964844,
        'low': 113.59200286865234,
        'open': 113.66000366210938,
        'volume': 0},
       {'adjclose': 113.78900146484375,
        'close': 113.78900146484375,
        'date': 1542153600,
        'formatted_date': '2018-11-14',
        'high': 113.99600219726562,
        'low': 113.65499877929688,
        'open': 113.79299926757812,
        'volume': 0},
       {'adjclose': 113.56400299072266,
        'close': 113.56400299072266,
        'date': 1542240000,
        'formatted_date': '2018-11-15',
        'high': 113.6500015258789,
        'low': 113.10099792480469,
        'open': 113.55899810791016,
        'volume': 0},
       {'adjclose': 113.55500030517578,
        'close': 113.55500030517578,
        'date': 1542326400,
        'formatted_date': '2018-11-16',
        'high': 113.60199737548828,
        'low': 112.67900085449219,
        'open': 113.55899810791016,
        'volume': 0},
       {'adjclose': 112.7300033569336,
        'close': 112.7300033569336,
        'date': 1542585600,
        'formatted_date': '2018-11-19',
        'high': 112.86499786376953,
        'low': 112.4489974975586,
        'open': 112.72699737548828,
        'volume': 0},
       {'adjclose': 112.44300079345703,
        'close': 112.44300079345703,
        'date': 1542672000,
        'formatted_date': '2018-11-20',
        'high': 112.73100280761719,
        'low': 112.30000305175781,
        'open': 112.45600128173828,
        'volume': 0},
       {'adjclose': 112.7030029296875,
        'close': 112.7030029296875,
        'date': 1542758400,
        'formatted_date': '2018-11-21',
        'high': 113.14199829101562,
        'low': 112.7020034790039,
        'open': 112.71199798583984,
        'volume': 0},
       {'adjclose': 113.02100372314453,
        'close': 113.02100372314453,
        'date': 1542844800,
        'formatted_date': '2018-11-22',
        'high': 113.12300109863281,
        'low': 112.87999725341797,
        'open': 113.02100372314453,
        'volume': 0},
       {'adjclose': 112.97799682617188,
        'close': 112.97799682617188,
        'date': 1542931200,
        'formatted_date': '2018-11-23',
        'high': 113.00499725341797,
        'low': 112.66400146484375,
        'open': 112.99800109863281,
        'volume': 0},
       {'adjclose': 112.91899871826172,
        'close': 112.91899871826172,
        'date': 1543190400,
        'formatted_date': '2018-11-26',
        'high': 113.58799743652344,
        'low': 112.90399932861328,
        'open': 112.92400360107422,
        'volume': 0},
       {'adjclose': 113.50399780273438,
        'close': 113.50399780273438,
        'date': 1543276800,
        'formatted_date': '2018-11-27',
        'high': 113.83200073242188,
        'low': 113.40599822998047,
        'open': 113.51499938964844,
        'volume': 0},
       {'adjclose': 113.76699829101562,
        'close': 113.76699829101562,
        'date': 1543363200,
        'formatted_date': '2018-11-28',
        'high': 114.01499938964844,
        'low': 113.70999908447266,
        'open': 113.7770004272461,
        'volume': 0},
       {'adjclose': 113.55500030517578,
        'close': 113.55500030517578,
        'date': 1543449600,
        'formatted_date': '2018-11-29',
        'high': 113.60800170898438,
        'low': 113.20099639892578,
        'open': 113.56999969482422,
        'volume': 0},
       {'adjclose': 113.41100311279297,
        'close': 113.41100311279297,
        'date': 1543536000,
        'formatted_date': '2018-11-30',
        'high': 113.59600067138672,
        'low': 113.33799743652344,
        'open': 113.41200256347656,
        'volume': 0},
       {'adjclose': 113.76300048828125,
        'close': 113.76300048828125,
        'date': 1543795200,
        'formatted_date': '2018-12-03',
        'high': 113.75800323486328,
        'low': 113.37300109863281,
        'open': 113.75800323486328,
        'volume': 0},
       {'adjclose': 113.58699798583984,
        'close': 113.58699798583984,
        'date': 1543881600,
        'formatted_date': '2018-12-04',
        'high': 113.61399841308594,
        'low': 112.72000122070312,
        'open': 113.58899688720703,
        'volume': 0},
       {'adjclose': 112.6989974975586,
        'close': 112.6989974975586,
        'date': 1543968000,
        'formatted_date': '2018-12-05',
        'high': 113.22599792480469,
        'low': 112.68299865722656,
        'open': 112.6969985961914,
        'volume': 0},
       {'adjclose': 113.0510025024414,
        'close': 113.0510025024414,
        'date': 1544054400,
        'formatted_date': '2018-12-06',
        'high': 113.15299987792969,
        'low': 112.23999786376953,
        'open': 113.06199645996094,
        'volume': 0},
       {'adjclose': 112.68900299072266,
        'close': 112.68900299072266,
        'date': 1544140800,
        'formatted_date': '2018-12-07',
        'high': 112.92500305175781,
        'low': 112.56300354003906,
        'open': 112.73100280761719,
        'volume': 0},
       {'adjclose': 112.50199890136719,
        'close': 112.50199890136719,
        'date': 1544400000,
        'formatted_date': '2018-12-10',
        'high': 113.04900360107422,
        'low': 112.2490005493164,
        'open': 112.50599670410156,
        'volume': 0},
       {'adjclose': 113.18099975585938,
        'close': 113.18099975585938,
        'date': 1544486400,
        'formatted_date': '2018-12-11',
        'high': 113.4530029296875,
        'low': 113.00599670410156,
        'open': 113.19999694824219,
        'volume': 0},
       {'adjclose': 113.38400268554688,
        'close': 113.38400268554688,
        'date': 1544572800,
        'formatted_date': '2018-12-12',
        'high': 113.51200103759766,
        'low': 113.16000366210938,
        'open': 113.38400268554688,
        'volume': 0},
       {'adjclose': 113.28500366210938,
        'close': 113.28500366210938,
        'date': 1544659200,
        'formatted_date': '2018-12-13',
        'high': 113.7020034790039,
        'low': 113.28700256347656,
        'open': 113.28700256347656,
        'volume': 0},
       {'adjclose': 113.55999755859375,
        'close': 113.55999755859375,
        'date': 1544745600,
        'formatted_date': '2018-12-14',
        'high': 113.66799926757812,
        'low': 113.31900024414062,
        'open': 113.572998046875,
        'volume': 0},
       {'adjclose': 113.38999938964844,
        'close': 113.38999938964844,
        'date': 1545004800,
        'formatted_date': '2018-12-17',
        'high': 113.51699829101562,
        'low': 112.87699890136719,
        'open': 113.39099884033203,
        'volume': 0},
       {'adjclose': 112.8290023803711,
        'close': 112.8290023803711,
        'date': 1545091200,
        'formatted_date': '2018-12-18',
        'high': 112.83200073242188,
        'low': 112.25,
        'open': 112.83200073242188,
        'volume': 0},
       {'adjclose': 112.52400207519531,
        'close': 112.52400207519531,
        'date': 1545177600,
        'formatted_date': '2018-12-19',
        'high': 112.58399963378906,
        'low': 112.13300323486328,
        'open': 112.49700164794922,
        'volume': 0},
       {'adjclose': 112.41000366210938,
        'close': 112.41000366210938,
        'date': 1545264000,
        'formatted_date': '2018-12-20',
        'high': 112.5989990234375,
        'low': 111.33100128173828,
        'open': 112.4219970703125,
        'volume': 0},
       {'adjclose': 111.1709976196289,
        'close': 111.1709976196289,
        'date': 1545350400,
        'formatted_date': '2018-12-21',
        'high': 111.44999694824219,
        'low': 110.93900299072266,
        'open': 111.197998046875,
        'volume': 0},
       {'adjclose': 111.05400085449219,
        'close': 111.05400085449219,
        'date': 1545609600,
        'formatted_date': '2018-12-24',
        'high': 111.13999938964844,
        'low': 110.26699829101562,
        'open': 111.0999984741211,
        'volume': 0},
       {'adjclose': 110.31099700927734,
        'close': 110.31099700927734,
        'date': 1545696000,
        'formatted_date': '2018-12-25',
        'high': 110.34400177001953,
        'low': 109.99099731445312,
        'open': 110.31400299072266,
        'volume': 0},
       {'adjclose': 110.4020004272461,
        'close': 110.4020004272461,
        'date': 1545782400,
        'formatted_date': '2018-12-26',
        'high': 110.697998046875,
        'low': 110.28600311279297,
        'open': 110.43099975585938,
        'volume': 0},
       {'adjclose': 111.20600128173828,
        'close': 111.20600128173828,
        'date': 1545868800,
        'formatted_date': '2018-12-27',
        'high': 111.22200012207031,
        'low': 110.65299987792969,
        'open': 111.22100067138672,
        'volume': 0},
       {'adjclose': 110.8550033569336,
        'close': 110.8550033569336,
        'date': 1545955200,
        'formatted_date': '2018-12-28',
        'high': 110.93000030517578,
        'low': 110.22200012207031,
        'open': 110.86000061035156,
        'volume': 0},
       {'adjclose': 110.33000183105469,
        'close': 110.33000183105469,
        'date': 1546214400,
        'formatted_date': '2018-12-31',
        'high': 110.46800231933594,
        'low': 109.65899658203125,
        'open': 110.3239974975586,
        'volume': 0},
       {'adjclose': 109.62999725341797,
        'close': 109.62999725341797,
        'date': 1546300800,
        'formatted_date': '2019-01-01',
        'high': 109.63400268554688,
        'low': 109.58999633789062,
        'open': 109.62999725341797,
        'volume': 0},
       {'adjclose': 109.66799926757812,
        'close': 109.66799926757812,
        'date': 1546387200,
        'formatted_date': '2019-01-02',
        'high': 109.67400360107422,
        'low': 108.7300033569336,
        'open': 109.66000366210938,
        'volume': 0},
       {'adjclose': 107.44100189208984,
        'close': 107.44100189208984,
        'date': 1546473600,
        'formatted_date': '2019-01-03',
        'high': 108.27100372314453,
        'low': 106.7760009765625,
        'open': 107.44999694824219,
        'volume': 0},
       {'adjclose': 107.80799865722656,
        'close': 107.80799865722656,
        'date': 1546560000,
        'formatted_date': '2019-01-04',
        'high': 108.58300018310547,
        'low': 107.51300048828125,
        'open': 107.86599731445312,
        'volume': 0},
       {'adjclose': 108.52200317382812,
        'close': 108.52200317382812,
        'date': 1546819200,
        'formatted_date': '2019-01-07',
        'high': 108.625,
        'low': 108.03600311279297,
        'open': 108.48899841308594,
        'volume': 0},
       {'adjclose': 108.61599731445312,
        'close': 108.61599731445312,
        'date': 1546905600,
        'formatted_date': '2019-01-08',
        'high': 109.0770034790039,
        'low': 108.44999694824219,
        'open': 108.64299774169922,
        'volume': 0},
       {'adjclose': 108.7760009765625,
        'close': 108.7760009765625,
        'date': 1546992000,
        'formatted_date': '2019-01-09',
        'high': 108.9800033569336,
        'low': 108.06400299072266,
        'open': 108.7509994506836,
        'volume': 0},
       {'adjclose': 108.18900299072266,
        'close': 108.18900299072266,
        'date': 1547078400,
        'formatted_date': '2019-01-10',
        'high': 108.322998046875,
        'low': 107.77300262451172,
        'open': 108.16200256347656,
        'volume': 0},
       {'adjclose': 108.2979965209961,
        'close': 108.2979965209961,
        'date': 1547164800,
        'formatted_date': '2019-01-11',
        'high': 108.57099914550781,
        'low': 108.15399932861328,
        'open': 108.28700256347656,
        'volume': 0},
       {'adjclose': 108.45800018310547,
        'close': 108.45800018310547,
        'date': 1547424000,
        'formatted_date': '2019-01-14',
        'high': 108.4749984741211,
        'low': 107.99800109863281,
        'open': 108.46600341796875,
        'volume': 0},
       {'adjclose': 108.25,
        'close': 108.25,
        'date': 1547510400,
        'formatted_date': '2019-01-15',
        'high': 108.75,
        'low': 108.20700073242188,
        'open': 108.24500274658203,
        'volume': 0},
       {'adjclose': 108.64399719238281,
        'close': 108.64399719238281,
        'date': 1547596800,
        'formatted_date': '2019-01-16',
        'high': 108.90699768066406,
        'low': 108.37100219726562,
        'open': 108.65399932861328,
        'volume': 0},
       {'adjclose': 109.03700256347656,
        'close': 109.03700256347656,
        'date': 1547683200,
        'formatted_date': '2019-01-17',
        'high': 109.08799743652344,
        'low': 108.68900299072266,
        'open': 109.03600311279297,
        'volume': 0},
       {'adjclose': 109.15299987792969,
        'close': 109.15299987792969,
        'date': 1547769600,
        'formatted_date': '2019-01-18',
        'high': 109.79199981689453,
        'low': 109.14299774169922,
        'open': 109.14299774169922,
        'volume': 0},
       {'adjclose': 109.66100311279297,
        'close': 109.66100311279297,
        'date': 1548028800,
        'formatted_date': '2019-01-21',
        'high': 109.697998046875,
        'low': 109.48200225830078,
        'open': 109.65699768066406,
        'volume': 0},
       {'adjclose': 109.66999816894531,
        'close': 109.66999816894531,
        'date': 1548115200,
        'formatted_date': '2019-01-22',
        'high': 109.6780014038086,
        'low': 109.27999877929688,
        'open': 109.66300201416016,
        'volume': 0},
       {'adjclose': 109.3550033569336,
        'close': 109.3550033569336,
        'date': 1548201600,
        'formatted_date': '2019-01-23',
        'high': 109.9739990234375,
        'low': 109.36499786376953,
        'open': 109.36499786376953,
        'volume': 0},
       {'adjclose': 109.49199676513672,
        'close': 109.49199676513672,
        'date': 1548288000,
        'formatted_date': '2019-01-24',
        'high': 109.79199981689453,
        'low': 109.427001953125,
        'open': 109.47699737548828,
        'volume': 0},
       {'adjclose': 109.59700012207031,
        'close': 109.59700012207031,
        'date': 1548374400,
        'formatted_date': '2019-01-25',
        'high': 109.94300079345703,
        'low': 109.53500366210938,
        'open': 109.59200286865234,
        'volume': 0},
       {'adjclose': 109.4000015258789,
        'close': 109.4000015258789,
        'date': 1548633600,
        'formatted_date': '2019-01-28',
        'high': 109.51899719238281,
        'low': 109.16400146484375,
        'open': 109.38800048828125,
        'volume': 0},
       {'adjclose': 109.25399780273438,
        'close': 109.25399780273438,
        'date': 1548720000,
        'formatted_date': '2019-01-29',
        'high': 109.52999877929688,
        'low': 109.14099884033203,
        'open': 109.26300048828125,
        'volume': 0},
       {'adjclose': 109.41699981689453,
        'close': 109.41699981689453,
        'date': 1548806400,
        'formatted_date': '2019-01-30',
        'high': 109.73600006103516,
        'low': 109.22599792480469,
        'open': 109.41200256347656,
        'volume': 0},
       {'adjclose': 108.98100280761719,
        'close': 108.98100280761719,
        'date': 1548892800,
        'formatted_date': '2019-01-31',
        'high': 108.99500274658203,
        'low': 108.5,
        'open': 108.95700073242188,
        'volume': 0},
       {'adjclose': 108.84400177001953,
        'close': 108.84400177001953,
        'date': 1548979200,
        'formatted_date': '2019-02-01',
        'high': 109.56199645996094,
        'low': 108.75,
        'open': 108.84600067138672,
        'volume': 0},
       {'adjclose': 109.43800354003906,
        'close': 109.43800354003906,
        'date': 1549238400,
        'formatted_date': '2019-02-04',
        'high': 110.13999938964844,
        'low': 109.4729995727539,
        'open': 109.4800033569336,
        'volume': 0},
       {'adjclose': 109.96099853515625,
        'close': 109.96099853515625,
        'date': 1549324800,
        'formatted_date': '2019-02-05',
        'high': 110.03399658203125,
        'low': 109.78700256347656,
        'open': 109.98500061035156,
        'volume': 0},
       {'adjclose': 109.94100189208984,
        'close': 109.94100189208984,
        'date': 1549411200,
        'formatted_date': '2019-02-06',
        'high': 110.04900360107422,
        'low': 109.55899810791016,
        'open': 109.93499755859375,
        'volume': 0},
       {'adjclose': 109.9739990234375,
        'close': 109.9739990234375,
        'date': 1549497600,
        'formatted_date': '2019-02-07',
        'high': 110.0770034790039,
        'low': 109.60399627685547,
        'open': 109.98600006103516,
        'volume': 0},
       {'adjclose': 109.75599670410156,
        'close': 109.75599670410156,
        'date': 1549584000,
        'formatted_date': '2019-02-08',
        'high': 109.88999938964844,
        'low': 109.65399932861328,
        'open': 109.76000213623047,
        'volume': 0},
       {'adjclose': 109.80999755859375,
        'close': 109.80999755859375,
        'date': 1549843200,
        'formatted_date': '2019-02-11',
        'high': 110.44499969482422,
        'low': 109.7770004272461,
        'open': 109.81700134277344,
        'volume': 0},
       {'adjclose': 110.4000015258789,
        'close': 110.4000015258789,
        'date': 1549929600,
        'formatted_date': '2019-02-12',
        'high': 110.6449966430664,
        'low': 110.3479995727539,
        'open': 110.39199829101562,
        'volume': 0},
       {'adjclose': 110.51499938964844,
        'close': 110.51499938964844,
        'date': 1550016000,
        'formatted_date': '2019-02-13',
        'high': 110.88099670410156,
        'low': 110.50199890136719,
        'open': 110.51300048828125,
        'volume': 0},
       {'adjclose': 110.9229965209961,
        'close': 110.9229965209961,
        'date': 1550102400,
        'formatted_date': '2019-02-14',
        'high': 111.12100219726562,
        'low': 110.51100158691406,
        'open': 110.93800354003906,
        'volume': 0},
       {'adjclose': 110.53800201416016,
        'close': 110.53800201416016,
        'date': 1550188800,
        'formatted_date': '2019-02-15',
        'high': 110.63700103759766,
        'low': 110.26000213623047,
        'open': 110.53900146484375,
        'volume': 0},
       {'adjclose': 110.56400299072266,
        'close': 110.56400299072266,
        'date': 1550448000,
        'formatted_date': '2019-02-18',
        'high': 110.60700225830078,
        'low': 110.46399688720703,
        'open': 110.54299926757812,
        'volume': 0},
       {'adjclose': 110.59100341796875,
        'close': 110.59100341796875,
        'date': 1550534400,
        'formatted_date': '2019-02-19',
        'high': 110.81099700927734,
        'low': 110.4540023803711,
        'open': 110.5989990234375,
        'volume': 0},
       {'adjclose': 110.5719985961914,
        'close': 110.5719985961914,
        'date': 1550620800,
        'formatted_date': '2019-02-20',
        'high': 110.94400024414062,
        'low': 110.59400177001953,
        'open': 110.59700012207031,
        'volume': 0},
       {'adjclose': 110.76499938964844,
        'close': 110.76499938964844,
        'date': 1550707200,
        'formatted_date': '2019-02-21',
        'high': 110.8489990234375,
        'low': 110.59700012207031,
        'open': 110.77899932861328,
        'volume': 0},
       {'adjclose': 110.70800018310547,
        'close': 110.70800018310547,
        'date': 1550793600,
        'formatted_date': '2019-02-22',
        'high': 110.9000015258789,
        'low': 110.62999725341797,
        'open': 110.70099639892578,
        'volume': 0},
       {'adjclose': 110.77200317382812,
        'close': 110.77200317382812,
        'date': 1551052800,
        'formatted_date': '2019-02-25',
        'high': 111.07099914550781,
        'low': 110.5790023803711,
        'open': 110.76899719238281,
        'volume': 0},
       {'adjclose': 111.0459976196289,
        'close': 111.0459976196289,
        'date': 1551139200,
        'formatted_date': '2019-02-26',
        'high': 111.06600189208984,
        'low': 110.66999816894531,
        'open': 111.03500366210938,
        'volume': 0},
       {'adjclose': 110.55599975585938,
        'close': 110.55599975585938,
        'date': 1551225600,
        'formatted_date': '2019-02-27',
        'high': 110.96600341796875,
        'low': 110.35700225830078,
        'open': 110.5510025024414,
        'volume': 0},
       {'adjclose': 110.86199951171875,
        'close': 110.86199951171875,
        'date': 1551312000,
        'formatted_date': '2019-02-28',
        'high': 111.43499755859375,
        'low': 110.66000366210938,
        'open': 110.87300109863281,
        'volume': 0},
       {'adjclose': 111.35700225830078,
        'close': 111.35700225830078,
        'date': 1551398400,
        'formatted_date': '2019-03-01',
        'high': 111.97599792480469,
        'low': 111.37100219726562,
        'open': 111.37100219726562,
        'volume': 0},
       {'adjclose': 111.93800354003906,
        'close': 111.93800354003906,
        'date': 1551657600,
        'formatted_date': '2019-03-04',
        'high': 112.00700378417969,
        'low': 111.66300201416016,
        'open': 111.9229965209961,
        'volume': 0},
       {'adjclose': 111.7770004272461,
        'close': 111.7770004272461,
        'date': 1551744000,
        'formatted_date': '2019-03-05',
        'high': 112.12899780273438,
        'low': 111.76000213623047,
        'open': 111.76000213623047,
        'volume': 0},
       {'adjclose': 111.86599731445312,
        'close': 111.86599731445312,
        'date': 1551830400,
        'formatted_date': '2019-03-06',
        'high': 111.91000366210938,
        'low': 111.61399841308594,
        'open': 111.8550033569336,
        'volume': 0},
       {'adjclose': 111.62300109863281,
        'close': 111.62300109863281,
        'date': 1551916800,
        'formatted_date': '2019-03-07',
        'high': 111.84100341796875,
        'low': 111.4800033569336,
        'open': 111.64199829101562,
        'volume': 0},
       {'adjclose': 111.63400268554688,
        'close': 111.63400268554688,
        'date': 1552003200,
        'formatted_date': '2019-03-08',
        'high': 111.63899993896484,
        'low': 110.83000183105469,
        'open': 111.63800048828125,
        'volume': 0},
       {'adjclose': 111.08000183105469,
        'close': 111.08000183105469,
        'date': 1552262400,
        'formatted_date': '2019-03-11',
        'high': 111.2959976196289,
        'low': 110.87799835205078,
        'open': 111.0770034790039,
        'volume': 0},
       {'adjclose': 111.34200286865234,
        'close': 111.34200286865234,
        'date': 1552348800,
        'formatted_date': '2019-03-12',
        'high': 111.4530029296875,
        'low': 111.10700225830078,
        'open': 111.3239974975586,
        'volume': 0},
       {'adjclose': 111.30599975585938,
        'close': 111.30599975585938,
        'date': 1552435200,
        'formatted_date': '2019-03-13',
        'high': 111.45500183105469,
        'low': 111.1449966430664,
        'open': 111.3219985961914,
        'volume': 0},
       {'adjclose': 111.19599914550781,
        'close': 111.19599914550781,
        'date': 1552521600,
        'formatted_date': '2019-03-14',
        'high': 111.72200012207031,
        'low': 111.1449966430664,
        'open': 111.19599914550781,
        'volume': 0},
       {'adjclose': 111.75299835205078,
        'close': 111.75299835205078,
        'date': 1552608000,
        'formatted_date': '2019-03-15',
        'high': 111.89600372314453,
        'low': 111.38999938964844,
        'open': 111.77100372314453,
        'volume': 0},
       {'adjclose': 111.56099700927734,
        'close': 111.56099700927734,
        'date': 1552867200,
        'formatted_date': '2019-03-18',
        'high': 111.62000274658203,
        'low': 111.41200256347656,
        'open': 111.5479965209961,
        'volume': 0},
       {'adjclose': 111.37300109863281,
        'close': 111.37300109863281,
        'date': 1552953600,
        'formatted_date': '2019-03-19',
        'high': 111.46900177001953,
        'low': 111.15899658203125,
        'open': 111.38400268554688,
        'volume': 0},
       {'adjclose': 111.4010009765625,
        'close': 111.4010009765625,
        'date': 1553040000,
        'formatted_date': '2019-03-20',
        'high': 111.68800354003906,
        'low': 111.375,
        'open': 111.4280014038086,
        'volume': 0},
       {'adjclose': 110.66000366210938,
        'close': 110.66000366210938,
        'date': 1553126400,
        'formatted_date': '2019-03-21',
        'high': 110.94499969482422,
        'low': 110.30899810791016,
        'open': 110.64399719238281,
        'volume': 0},
       {'adjclose': 110.80599975585938,
        'close': 110.80599975585938,
        'date': 1553212800,
        'formatted_date': '2019-03-22',
        'high': 110.88500213623047,
        'low': 109.73999786376953,
        'open': 110.81199645996094,
        'volume': 0},
       {'adjclose': 110.08100128173828,
        'close': 110.08100128173828,
        'date': 1553472000,
        'formatted_date': '2019-03-25',
        'high': 110.22899627685547,
        'low': 109.72899627685547,
        'open': 110.12000274658203,
        'volume': 0},
       {'adjclose': 110.06800079345703,
        'close': 110.06800079345703,
        'date': 1553558400,
        'formatted_date': '2019-03-26',
        'high': 110.67500305175781,
        'low': 110.0009994506836,
        'open': 110.06400299072266,
        'volume': 0},
       {'adjclose': 110.55400085449219,
        'close': 110.55400085449219,
        'date': 1553644800,
        'formatted_date': '2019-03-27',
        'high': 110.69300079345703,
        'low': 110.24700164794922,
        'open': 110.5479965209961,
        'volume': 0},
       {'adjclose': 110.48999786376953,
        'close': 110.48999786376953,
        'date': 1553731200,
        'formatted_date': '2019-03-28',
        'high': 110.81700134277344,
        'low': 110.03099822998047,
        'open': 110.48500061035156,
        'volume': 0},
       {'adjclose': 110.63700103759766,
        'close': 110.63700103759766,
        'date': 1553817600,
        'formatted_date': '2019-03-29',
        'high': 110.93599700927734,
        'low': 110.54000091552734,
        'open': 110.6780014038086,
        'volume': 0},
       {'adjclose': 110.99500274658203,
        'close': 110.99500274658203,
        'date': 1554073200,
        'formatted_date': '2019-03-31',
        'high': 111.31099700927734,
        'low': 110.86299896240234,
        'open': 110.99299621582031,
        'volume': 0},
       {'adjclose': 111.45099639892578,
        'close': 111.45099639892578,
        'date': 1554159600,
        'formatted_date': '2019-04-01',
        'high': 111.43399810791016,
        'low': 111.2509994506836,
        'open': 111.43399810791016,
        'volume': 0},
       {'adjclose': 111.30500030517578,
        'close': 111.30500030517578,
        'date': 1554246000,
        'formatted_date': '2019-04-02',
        'high': 111.5739974975586,
        'low': 111.20999908447266,
        'open': 111.31999969482422,
        'volume': 0},
       {'adjclose': 111.3949966430664,
        'close': 111.3949966430664,
        'date': 1554332400,
        'formatted_date': '2019-04-03',
        'high': 111.61699676513672,
        'low': 111.33799743652344,
        'open': 111.37300109863281,
        'volume': 0},
       {'adjclose': 111.65799713134766,
        'close': 111.65799713134766,
        'date': 1554418800,
        'formatted_date': '2019-04-04',
        'high': 111.81600189208984,
        'low': 111.61000061035156,
        'open': 111.65699768066406,
        'volume': 0},
       {'adjclose': 111.71099853515625,
        'close': 111.71099853515625,
        'date': 1554678000,
        'formatted_date': '2019-04-07',
        'high': 111.7030029296875,
        'low': 111.28399658203125,
        'open': 111.6969985961914,
        'volume': 0},
       {'adjclose': 111.45600128173828,
        'close': 111.45600128173828,
        'date': 1554764400,
        'formatted_date': '2019-04-08',
        'high': 111.56400299072266,
        'low': 110.98999786376953,
        'open': 111.44999694824219,
        'volume': 0},
       {'adjclose': 111.1050033569336,
        'close': 111.1050033569336,
        'date': 1554850800,
        'formatted_date': '2019-04-09',
        'high': 111.23999786376953,
        'low': 110.88700103759766,
        'open': 111.1050033569336,
        'volume': 0},
       {'adjclose': 110.98500061035156,
        'close': 110.98500061035156,
        'date': 1554937200,
        'formatted_date': '2019-04-10',
        'high': 111.52100372314453,
        'low': 110.99099731445312,
        'open': 110.99099731445312,
        'volume': 0},
       {'adjclose': 111.62100219726562,
        'close': 111.62100219726562,
        'date': 1555023600,
        'formatted_date': '2019-04-11',
        'high': 112.0199966430664,
        'low': 111.63500213623047,
        'open': 111.64900207519531,
        'volume': 0},
       {'adjclose': 112.02799987792969,
        'close': 112.02799987792969,
        'date': 1555282800,
        'formatted_date': '2019-04-14',
        'high': 112.08300018310547,
        'low': 111.88800048828125,
        'open': 112.03500366210938,
        'volume': 0},
       {'adjclose': 111.94300079345703,
        'close': 111.94300079345703,
        'date': 1555369200,
        'formatted_date': '2019-04-15',
        'high': 112.03399658203125,
        'low': 111.8489990234375,
        'open': 111.95099639892578,
        'volume': 0},
       {'adjclose': 111.99299621582031,
        'close': 111.99299621582031,
        'date': 1555455600,
        'formatted_date': '2019-04-16',
        'high': 112.15799713134766,
        'low': 111.9260025024414,
        'open': 111.98699951171875,
        'volume': 0},
       {'adjclose': 112.03600311279297,
        'close': 112.03600311279297,
        'date': 1555542000,
        'formatted_date': '2019-04-17',
        'high': 112.04399871826172,
        'low': 111.78199768066406,
        'open': 112.04399871826172,
        'volume': 0},
       {'adjclose': 111.98899841308594,
        'close': 111.98899841308594,
        'date': 1555628400,
        'formatted_date': '2019-04-18',
        'high': 112.00299835205078,
        'low': 111.89700317382812,
        'open': 111.98600006103516,
        'volume': 0},
       {'adjclose': 111.91000366210938,
        'close': 111.91000366210938,
        'date': 1555887600,
        'formatted_date': '2019-04-21',
        'high': 111.98699951171875,
        'low': 111.88400268554688,
        'open': 111.90899658203125,
        'volume': 0},
       {'adjclose': 111.92900085449219,
        'close': 111.92900085449219,
        'date': 1555974000,
        'formatted_date': '2019-04-22',
        'high': 112.02400207519531,
        'low': 111.66400146484375,
        'open': 111.93299865722656,
        'volume': 0},
       {'adjclose': 111.87699890136719,
        'close': 111.87699890136719,
        'date': 1556060400,
        'formatted_date': '2019-04-23',
        'high': 111.96800231933594,
        'low': 111.69000244140625,
        'open': 111.86499786376953,
        'volume': 0},
       {'adjclose': 112.12999725341797,
        'close': 112.12999725341797,
        'date': 1556146800,
        'formatted_date': '2019-04-24',
        'high': 112.22599792480469,
        'low': 111.4010009765625,
        'open': 112.13999938964844,
        'volume': 0},
       {'adjclose': 111.53900146484375,
        'close': 111.53900146484375,
        'date': 1556233200,
        'formatted_date': '2019-04-25',
        'high': 111.90799713134766,
        'low': 111.427001953125,
        'open': 111.50599670410156,
        'volume': 0},
       {'adjclose': 111.59300231933594,
        'close': 111.59300231933594,
        'date': 1556492400,
        'formatted_date': '2019-04-28',
        'high': 111.88300323486328,
        'low': 111.57499694824219,
        'open': 111.60099792480469,
        'volume': 0}],
      'timeZone': {'gmtOffset': 3600}}}

学过 Pandas 之后,我们应该可以把上面的「原始数据」转换成 DataFrame,代码如下:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
def data_converter( price_data, code, asset ):
    # convert raw data to dataframe
    if asset == 'FX':
        code = str(code[3:] if code[:3]=='USD' else code) + '=X'
        
    columns =['open', 'close', 'low', 'high']
    price_dict = price_data[code]['prices']
    index = [ p['formatted_date'] for p in price_dict ]
    price =[ [p[c] for c in columns] for p in price_dict ]
    
    data = pd.DataFrame( price,
                         index=pd.Index(index, name='date'),
                         columns=pd.Index(columns, name='OHLC') )
    return data

第 3 行完全是为了 YahooFinancial 里面的输入格式准备的。如果 Asset 是股票类,直接用其股票代码;如果 Asset 是汇率类,一般参数写成 EURUSD 或 USDJPY

  • 如果是 EURUSD,转换成 EURUSD=X

  • 如果是 USDJPY,转换成 JPY=X

第 6 行定义好开盘价、收盘价、最低价和最高价的标签。

第 7 行获取出一个「字典」格式的数据。

第 8, 9 行用列表解析式 (list comprehension) 将日期和价格获取出来。

第 11 到 13 行定义一个 DataFrame

  • 值为第 9 行得到的 price 列表

  • 行标签为第 8 行得到的 index 列表

  • 列标签为第 6 行定义好的 columns 列表

处理过后的数据格式美如画,不信你看 (用 EURUSD 和 NVDA 举例)

1
2
EURUSD = data_converter( currency_daily, 'EURUSD', 'FX' )
EURUSD.head(3).append(EURUSD.tail(3))
1
2
NVDA = data_converter( stock_daily, 'NVDA',' EQ' )
NVDA.head(3).append(NVDA.tail(3))

OHLC open close low high
date
2018-04-30 226.990005 224.899994 224.119995 229.000000
2018-05-01 224.570007 227.139999 222.199997 227.250000
2018-05-02 227.000000 226.309998 225.250000 228.800003
2019-04-24 191.089996 191.169998 188.639999 192.809998
2019-04-25 189.550003 186.910004 183.699997 190.449997
2019-04-26 180.710007 178.089996 173.300003 180.889999

3.2 直方图

直方图 (histogram chart),又称质量分布图,是一种统计报告图,由一系列高度不等的纵向条纹或线段表示数据分布的情况。 一般用横轴表示数据类型,纵轴表示分布情况。在 Matplotlib 里的语法是

  • plt.hist()

  • ax.hist()

我们先看看英伟达 (NVDA) 的价格分布。

1
p_NVDA = NVDA['close']
1
2
3
4
5
6
7
8
fig = plt.figure( figsize=(8,4) )

plt.hist( p_NVDA, bins=30, color=dt_hex )
plt.xlabel('Nvidia Price')
plt.ylabel('Number of Days Observed')
plt.title('Frequency Distribution of Nvidia Prices, Apr-2018 to Apr-2019')

plt.show()

https://pic./2020/06/22/e439dda8ec80f.png

在本例中函数 hist() 里的参数有

  • p_NVDA:Series,也可以是 list 或者 ndarray

  • bins:分成多少堆

  • colors:用之前定义的深青色

从上图可看出,NVDA 的价格分布在有 220 划分的两个范围 (regime)。在 2018 年 11 月 16 日 (星期五),英伟达第三季度的报表低于预期,那么股价暴跌 19%,在之后的星期一,又跌 12%,两个交易日股价一下子从原来的 220 左右跌到 150。

在研究股票价格序列中,由于收益率有些好的统计性质,我们对其更感兴趣,接下来再看看英伟达 (NVDA) 的对数收益 (log-return) 的分布。

1
2
3
date = p_NVDA.index
price = p_NVDA.values
r_NVDA = pd.Series( np.log(price[1:]/price[:-1]),index=date[1:] )
1
2
3
4
5
6
7
8
fig = plt.figure( figsize=(8,4) )

plt.hist( r_NVDA, bins=30, color=dt_hex )
plt.xlabel('Nvidia Daily Log-Return')
plt.ylabel('Number of Days Observed')
plt.title('Frequency Distribution of Nvidia Daily Log-Return, Apr-2018 to Apr-2019')

plt.show()

https://pic./2020/06/22/40115bb466f91.png

首先对数收益的计算公式为

r(t) = ln(P(t)/P(t-1)

得到 r_NVDA。计算一天的收益率需要两天的价格,因此用 p_NVDA 计算 r_NVDA 时,会丢失最新一天的数据,因此我们用 date[1:] 作为 r_NVDA 的行标签 (index)。

不考虑在 -0.20 和 -0.15 那两个极端值,对数收益率的分布像一个正态分布 (人人都喜欢正态分布)。

3.3 散点图

散点图 (scatter chart) 用两组数据构成多个坐标点,考察坐标点的分布,判断两变量之间是否存在某种联系的分布模式。在 Matplotlib 里的语法是

  • plt.scatter()

  • ax.scatter()

我们看看中美两大电商亚马逊 (AMZN) 和阿里巴巴 (BABA) 之间的价格和对数收益率的联系。

首先计算价格和对数收益率。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
AMZN = data_converter( stock_daily, 'AMZN', ' EQ' )
BABA = data_converter( stock_daily, 'BABA', ' EQ' )

p_AMZN = AMZN['close']
p_BABA = BABA['close']

date = p_AMZN.index
price = p_AMZN.values
r_AMZN = pd.Series( np.log(price[1:]/price[:-1]),index=date[1:] )

date = p_BABA.index
price = p_BABA.values
r_BABA = pd.Series( np.log(price[1:]/price[:-1]),index=date[1:] )

用两个子图分别展示「价格」和「收益率」的散点图。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
fig, axes = plt.subplots( nrows=1, ncols=2, figsize=(14,6) )

axes[0].scatter( p_AMZN, p_BABA, color=dt_hex )
axes[0].set_xlabel('Amazon Price')
axes[0].set_ylabel('Alibaba Price')
axes[0].set_title('Daily Price from Apr-2018 to Apr-2019')

axes[1].scatter( r_AMZN, r_BABA, color=r_hex )
axes[1].set_xlabel('Amazon Log-Return')
axes[1].set_ylabel('Alibaba Log-Return')
axes[1].set_title('Daily Returns from Apr-2018 to Apr-2019')

plt.show()

https://pic./2020/06/22/82cbeeb34ef13.png

在本例中函数 scatter() 里的参数有

  • p_AMZN (r_AMZN):Series,也可以是 list 或者 ndarray

  • p_BABA (r_BABA):Series,也可以是 list 或者 ndarray

  • colors:用之前定义的深青色和红色

从右图来看,亚马逊和阿里巴巴在这段时期的表现正相关,如果做线性回归是一条斜率为正的线。

3.4 折线图

折线图 (line chart) 显示随时间而变化的连续数据,因此非常适用于显示在相等时间间隔下数据的趋势。在 Matplotlib 里的语法是

  • plt.plot()

  • ax.plot()

我们来看看如何画 EURUSD 的 20 天和 60 天移动平均 (moving average, MA) 线。

首先获取 EURUSD 的收盘价。

1
2
3
curr = 'EURUSD'
EURUSD = data_converter( currency_daily, curr, 'FX' )
rate = EURUSD['close']

用 Pandas 里面的 rolling() 函数来计算 MA,在画出收盘价,MA20 和 MA60 三条折线。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
fig = plt.figure( figsize=(16,6) )
ax = fig.add_subplot(1,1,1)

ax.set_title( curr + ' - Moving Average')
ax.set_xticks( range(0,len(rate.index),10) )
ax.set_xticklabels( [rate.index[i] for i in ax.get_xticks()], rotation=90 );

ax.plot( rate, color=dt_hex, linewidth=2,label='Close' )

MA_20 = rate.rolling(20).mean()
MA_60 = rate.rolling(60).mean()

ax.plot(MA_20, color=r_hex, linewidth=2, label='MA20')
ax.plot(MA_60, color=g_hex, linewidth=2, label='MA60')

ax.legend(loc=0);

https://pic./2020/06/22/202e38a6e1c84.png

在本例中函数 plot() 里的参数有

  • rate, MA_20, MA_60:Series,也可以是 list 或者 ndarray

  • colors:用之前定义的深青色,红色,绿色

  • linewidth:像素 2

  • label:用于显示图例

上面代码最关键的就是第 10 和 11 行,用 rolling(n) 函数对 rate 求 n 天移动均值。从图中注意到绿色的 MA60最短,红色的 MA20 其次。原因很简单,假如一年有 252 个交易日,那么第 1 个 MA60 值需要第 1 到 60 个汇率,第 2 个 MA60 值需要第 2 到 61 个汇率,第 193 个 MA60 值需要第 193 到 252 个汇率。最终只有 193 个 MA60。同理可得到只有 223 个 MA20。

双均线策略如下:MA60 和 MA20 必有交点,若 20 天平均线「上穿越」60 天均线,则为买入点;反之为卖出点。该策略基于不同天数均线的交叉点抓住股票的强势和弱势时刻进行交易。

3.5 饼状图

饼状图 (pie chart) 是一个划分为几个扇形的圆形统计图表,用于描述量、频率或百分比之间的相对关系。 在饼状图中,每个扇区面积大小为其所表示的数量的比例。在 Matplotlib 里的语法是

  • plt.pie()

  • ax.pie()

我们来看看如何画出一个股票投资组合在 2019 年 4 月 26 日的饼状图,假设组合里面有 100 股英伟达,20 股亚马逊,50 股阿里巴巴,30 股脸书和 40 股苹果 (一个科技股爱好者的组合 )。

首先计算组合里五支股票在 2019 年 4 月 26 日的市值 (market value, MV)。

1
2
3
4
5
stock_list = ['NVDA','AMZN','BABA','FB','AAPL' ]
date = '2019-04-26'

MV = [ data_converter(stock_daily, code, ' EQ')['close'][date] for code in stock_list ]
MV = np.array(MV) * np.array([100,20,50,30,40])

第 4 行用了列表解析式来获取 stock_list 每支股票的价格,第 5 行将价格乘上数量得到市值。

设定好五种颜色和百分数格式 %.0f%% (小数点后面保留 0 位),画出饼状图。

1
2
3
4
5
6
fig = plt.figure( figsize=(7,7) )
ax = fig.add_subplot(1,1,1)

ax.pie( MV, labels=stock_list, colors=[dt_hex,r_hex,g_hex,tn_hex,g25_hex], autopct='%.0f%%' )

plt.show()

https://pic./2020/06/22/202e38a6e1c84.png

在本例中函数 pie() 里的参数有

  • MV:股票组合市值,ndarray

  • labels:标识,list

  • colors:用之前定义的一组颜色,list

  • autopct:显示百分数的格式,str

虽然画出了饼状图,但看起来有些别扭,且听下节分解如何改进。

3.6 同理心


为用户习惯考虑

把饼当成钟,大多数人习惯顺时针的看里面的内容,因此把面积最大的那块的一条边 (见下图) 放在 12 点的位置最能突显其重要性,之后按面积从大到小顺时针排列。

在画饼状图前,我们需要额外做两件事:

  1. 按升序排列 5 只股票的市值

  2. 设定 pie() 的相关参数达到上述「最大块放 12 点位置」的效果

首先按市值大小按升序排序。

1
2
3
4
5
idx = MV.argsort()[::-1]
MV = MV[idx]
stock_list = [ stock_list[i] for i in idx ]
print( MV )
print( stock_list )
[39012.60009766 17808.99963379  9354.49981689  8172.00012207
  5744.70016479]
['AMZN', 'NVDA', 'BABA', 'AAPL', 'FB']

设定参数

  • startangle = 90 是说第一片扇形 (AMZN 深青色那块) 的左边在 90 度位置

  • counterclock = False 是说顺时针拜访每块扇形

1
2
3
4
5
6
7
fig = plt.figure( figsize=(7,7) )
ax = fig.add_subplot(1,1,1)

ax.pie( MV, labels=stock_list, colors=[dt_hex,r_hex,g_hex,tn_hex,g25_hex], \
       autopct='%.0f%%',startangle=90, counterclock=False )

plt.show()

https://pic./2020/06/22/202e38a6e1c84.png

和上节最后的图相比,现在这饼状图看上去是不是顺眼多了。你承不承认你第一眼就注意到 12 点那个位置的扇形?


为图表信息考虑

当饼状图里面扇形多过 5 个时,面积相近的扇形大小并不容易一眼辨别出来,不信看上图的 BABA 和 APPL,没看到数字很难看出那个面积大。但绝大多数人是感官动物,图形和数字肯定先选择看图形,这个时候用柱状图 (bar chart) 来代替饼状图,每个市值成分大小一目了然 (好图就是能让用户能最快的抓住核心信息)。

用 ax.bar() 函数来画柱状图,为了和饼状图的信息一致,几个关键操作为

  • 第 4 行计算出市值的百分数 pct_MV

  • 第 8, 9 行设置横轴刻度 (0,1,2,3,4) 和标签 (stock_list)

  • 第 12, 13 行在特定位置上 (x+0.04, y+0.05/100) 将 pct_MV 以 {0:.0%} 的格式 (不保留小数点) 写出来,这些位置试几次看图的效果就可以确定下来。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
fig = plt.figure( figsize=(8,6) )
ax = fig.add_subplot(1,1,1)

pct_MV = MV / np.sum(MV)
index = np.arange(len(pct_MV))

ax.bar( index, pct_MV, facecolor=r_hex, edgecolor=dt_hex)
ax.set_xticks( index )
ax.set_xticklabels( stock_list )
ax.set_ylim( 0, np.max(pct_MV)*1.1 )

for x,y in zip(index,pct_MV):
    ax.text(x+0.04,y+0.05/100,'{0:.0%}'.format(y), ha='center', va='bottom' )

plt.show()

https://pic./2020/06/22/acee0668ac84e.png

在本例中函数 bar() 里的参数有

  • index:横轴刻度,ndarray

  • pct_MV:股票组合市值比例,ndarray

  • facecolor:柱状颜色,红色

  • edgecolor:柱边颜色,深青色

如果柱状很多时,或者标签名字很长时,用横向柱状图 (horizontal bar chart),函数为 ax.barh()。代码和上面非常类似,就是把横轴和纵轴的调换了一下。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
fig = plt.figure( figsize=(8,4) )
ax = fig.add_subplot(1,1,1)

pct_MV = MV[::-1] / np.sum(MV)
index = np.arange(len(pct_MV))

ax.barh( index, pct_MV, facecolor=r_hex, edgecolor=dt_hex )
ax.set_yticks( index )
ax.set_yticklabels( stock_list[::-1] )
ax.set_xlim( 0, np.max(pct_MV)*1.1 )

for x,y in zip(pct_MV,index):
    ax.text(x+0.04,y,'{0:.0%}'.format(x), ha='right', va='center' )

plt.show()

https://pic./2020/06/22/c2d0adfa600d5.png

为色盲用户考虑

世界上有 1/12 的男人和 1/200 的女人都有不同程度的色盲症状。因此当你将结果展示给重要客户时,最好考虑到这一点,我相信对方会非常欣赏你这种「同理心」。

幸运的是,Matplotlib 里面有专门为色盲考虑的色彩风格,首先用下列语句看查看所有的色彩风格。

1
print(plt.style.available)
['bmh', 'classic', 'dark_background', 'fast', 'fivethirtyeight', 'ggplot', 'grayscale', 'seaborn-bright', 'seaborn-colorblind', 'seaborn-dark-palette', 'seaborn-dark', 'seaborn-darkgrid', 'seaborn-deep', 'seaborn-muted', 'seaborn-notebook', 'seaborn-paper', 'seaborn-pastel', 'seaborn-poster', 'seaborn-talk', 'seaborn-ticks', 'seaborn-white', 'seaborn-whitegrid', 'seaborn', 'Solarize_Light2', '_classic_test']

不难发现 seaborn-colorblind就是我们所需要的。下面我们看看不同色彩风格下的「饼状图」和「柱状图」。

首先看从 R 中借用过来的大名鼎鼎的 ggplot 的效果。

1
plt.style.use('ggplot')
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
fig, axes = plt.subplots( nrows=1, ncols=2, figsize=(14,7) )

axes[0].pie( MV, labels=stock_list,autopct='%.0f%%', \
             startangle=90, counterclock=False )

pct_MV = MV[::-1] / np.sum(MV)
index = np.arange(len(pct_MV))

axes[1].barh( index, pct_MV )
axes[1].set_yticks( index )
axes[1].set_yticklabels( stock_list[::-1] )
axes[1].set_xlim( 0, np.max(pct_MV)*1.1 )

for x,y in zip(pct_MV,index):
    axes[1].text(x+0.04,y,'{0:.0%}'.format(x), ha='right', va='center' )

plt.tight_layout()
plt.show()

https://pic./2020/06/22/2c35e9685b6ab.png

再看 seaborn-colorblind 的效果(先执行下面代码,再重新执行上面代码)。

1
plt.style.use('seaborn-colorblind')

4 总结

本贴的思路非常清晰:

  • 第一部分了解 Matplotlib 的绘图逻辑,以及里面包含的画图元素以及它们之间的层级。

  • 第二部分深度学 Matplotlib,只研究折线图,通过研究它的属性,一步步改进图的尺寸、像素、线条颜色宽度风格、坐标轴边界、刻度标签、图例、多图、多坐标系、标注、透明度等等,画出了一幅美图。

  • 第三部分广度学 Matplotlib,通过数据的分布联系比较构成研究了直方图、散点图、折线图和饼状图,最后还为用户着想 (习惯、色盲等等) 画出更能有效表达信息的图。

基本绘图流程

https://pic./2020/06/22/cc6ede0e82fb3.png

我们现在处于一个大数据的时代,制图能力现在和写作能力一样重要。任何人现在都可以用各种制图工具或者编程语言来画图,但是很少人懂得画出好图。

好图不是指的绚烂的颜色 (fancy colors) 和复杂的层级 (complex layers),当一张图里的信息能够以最清晰和有效的方式传递给使用者,那么这张图就是好图。

Stay Tuned!

https://pic./2020/05/12/f0e6dce0060f9.png