Front-end Control Collection: A Complete Guide to UI Components (58) - K-line Cycle Chart [source code with explanation at the end of the article]

In today's digital age, web applications have become an important part of our lives. Whether it's a social media platform, e-commerce website or online tool, the heart of a modern web application is its user interface (UI). One of the key components of the user interface is the front-end controls.

Front-end controls are an indispensable element in web development. They provide us with the tools to build a variety of interactive and feature-rich web applications. Whether you are a new front-end developer or an experienced engineer, understanding and mastering front-end controls is key to improving your web development skills.

This blog series will take you deep into the world of front-end controls. We'll look at a variety of UI components in detail, ranging from simple buttons and form controls to complex charting and map integration. Whether you're looking to improve your skills or find ways to build impressive user experiences, this series will provide you with valuable knowledge.

Over the next few articles, we'll explore the different types of front-end controls, discussing their uses, best practices, and real-world examples. Whether your interest is building beautiful UIs, improving user experience, or learning the latest web development techniques, this series will help.

Are you ready to explore the power of front-end controls? let's start!

1. Demo address

Visit URL: http://59.110.22.223:8080/Model_qianduan/professional_kline_chart.html

image-20230915095144257

2. Common sense of controls

Custom controls
Custom controls are compiled server-side controls that encapsulate user interface and other functions into reusable packages. Compared with standard controls, custom controls have a different tag prefix. And having to do it shows no difference other than registration and deployment. In addition, custom controls have their own object model, can fire events, and support all Microsoft Visual Studio design features, such as the Properties Window, Visual Designer, Property Builder, and Toolbox.

The user controls are mentioned above. Just like creating a page, drag and drop the system controls in the designer to design the interface, and then add the necessary event codes to these controls. It is purely a combination. The custom control is to "implement from scratch" the underlying function of the control. Write a class that inherits from Control and implements the INamingContainer interface. It even overrides the Render method of the control, controls the html code generated by the control, and implements the response to return data from the browser. Events and processing of returned data are not only called custom controls, they can also be called composite controls.

When using custom controls, you can click on the toolbox on the right side of the vs software, right-click on the blank space on the toolbox to select an item – click “Browse” under the .NET Framework component tab – and find the custom control you want to add ( .dll file)–Open–OK. This way you can drag that custom control out of the toolbox and use it. Commonly used controls include: paging controls, text editors, Crystal Reports, ActiveReports, etc.

Development method:
1. Development of custom controls, that is, inheriting the accumulation of Control to implement server controls.

2. Develop user controls.

Creating a user control is similar to creating a regular ASP.NET web page, but there are some differences. The steps are:

① Create an .ascx text file. This is the first difference between user controls and asp.net web pages, which use the extension .aspx.

② Add the @Control directive at the top of the text file and set the selected programming language through the language attribute. This is the second difference between user controls and web pages. (The latter uses the @page directive).

③Add HTML markup text and asp.net server controls to the text file. You can add any html tag other than html, body and form. This is because user controls cannot be used alone and must be used as part of the web page. This is the third difference between user controls and web pages.

Three, source code

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Awesome-pyecharts</title>
                <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/echarts.min.js"></script>

</head>
<body >
    <div id="5b379cc118844409b7b2160539d5541e" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_5b379cc118844409b7b2160539d5541e = echarts.init(
            document.getElementById('5b379cc118844409b7b2160539d5541e'), 'white', {renderer: 'canvas'});
            var barData = [[18.4, 18.58, 18.33, 18.79, 67.0, 1, 0.04, 0.11, 0.09], [18.56, 18.25, 18.19, 18.56, 55.0, 0, -0.0, 0.08, 0.09], [18.3, 18.22, 18.05, 18.41, 37.0, 0, 0.01, 0.09, 0.09], [18.18, 18.69, 18.02, 18.98, 89.0, 0, 0.03, 0.1, 0.08], [18.42, 18.29, 18.22, 18.48, 43.0, 0, -0.06, 0.05, 0.08], [18.26, 18.19, 18.08, 18.36, 46.0, 0, -0.1, 0.03, 0.09], [18.33, 18.07, 17.98, 18.35, 65.0, 0, -0.15, 0.03, 0.1], [18.08, 18.04, 17.88, 18.13, 37.0, 0, -0.19, 0.03, 0.12], [17.96, 17.86, 17.82, 17.99, 35.0, 0, -0.24, 0.03, 0.15], [17.85, 17.81, 17.8, 17.93, 27.0, 0, -0.24, 0.06, 0.18], [17.79, 17.93, 17.78, 18.08, 43.0, 0, -0.22, 0.11, 0.22], [17.78, 17.83, 17.78, 18.04, 27.0, 0, -0.2, 0.15, 0.25], [17.84, 17.9, 17.84, 18.06, 34.0, 0, -0.12, 0.22, 0.28], [17.97, 18.36, 17.85, 18.39, 62.0, 0, -0.0, 0.3, 0.3], [18.3, 18.57, 18.18, 19.08, 177.0, 0, 0.07, 0.33, 0.3], [18.53, 18.68, 18.3, 18.71, 95.0, 0, 0.12, 0.35, 0.29], [18.75, 19.08, 18.75, 19.98, 202.0, 1, 0.16, 0.35, 0.27], [18.85, 18.64, 18.56, 18.99, 85.0, 0, 0.09, 0.29, 0.25], [18.64, 18.44, 18.31, 18.64, 50.0, 0, 0.06, 0.27, 0.23], [18.55, 18.27, 18.17, 18.57, 43.0, 0, 0.05, 0.25, 0.23], [18.13, 18.14, 18.09, 18.34, 35.0, 0, 0.05, 0.24, 0.22], [18.01, 18.1, 17.93, 18.17, 34.0, 0, 0.07, 0.25, 0.21], [18.2, 18.14, 18.08, 18.45, 58.0, 0, 0.11, 0.25, 0.2], [18.23, 18.16, 18.0, 18.45, 47.0, 0, 0.13, 0.25, 0.19], [18.08, 18.2, 18.05, 18.25, 32.0, 0, 0.15, 0.24, 0.17], [18.15, 18.15, 18.11, 18.29, 36.0, 0, 0.13, 0.21, 0.15], [18.16, 18.19, 18.12, 18.34, 47.0, 0, 0.11, 0.18, 0.13], [18.23, 17.88, 17.7, 18.23, 62.0, 0, 0.03, 0.13, 0.11], [17.85, 17.73, 17.56, 17.85, 66.0, 0, -0.03, 0.09, 0.11], [17.79, 17.53, 17.5, 17.92, 63.0, 0, -0.1, 0.06, 0.11], [17.51, 17.04, 16.9, 17.51, 67.0, 0, -0.16, 0.05, 0.13], [17.07, 17.2, 16.98, 17.32, 55.0, 0, -0.12, 0.09, 0.15], [17.28, 17.11, 16.91, 17.28, 39.0, 0, -0.09, 0.12, 0.16], [17.13, 17.91, 17.05, 17.99, 102.0, 0, -0.01, 0.17, 0.18], [17.8, 17.78, 17.61, 17.98, 71.0, 0, -0.09, 0.14, 0.18], [17.6, 17.25, 17.13, 17.69, 51.0, 0, -0.18, 0.1, 0.19], [17.2, 17.39, 17.15, 17.45, 43.0, 0, -0.19, 0.12, 0.22], [17.3, 17.42, 17.18, 17.62, 45.0, 0, -0.23, 0.13, 0.24], [17.33, 17.39, 17.32, 17.59, 44.0, 0, -0.29, 0.13, 0.28], [17.39, 17.26, 17.21, 17.65, 44.0, 0, -0.37, 0.13, 0.32], [17.23, 16.92, 16.66, 17.26, 114.0, 1, -0.44, 0.15, 0.37], [16.75, 17.06, 16.5, 17.09, 94.0, 0, -0.44, 0.21, 0.44], [17.03, 17.03, 16.9, 17.06, 46.0, 0, -0.44, 0.28, 0.5], [17.08, 16.96, 16.87, 17.09, 30.0, 0, -0.4, 0.36, 0.56], [17.0, 17.1, 16.95, 17.12, 50.0, 0, -0.3, 0.47, 0.62], [17.09, 17.52, 17.04, 18.06, 156.0, 0, -0.14, 0.59, 0.66], [17.43, 18.23, 17.35, 18.45, 152.0, 1, 0.02, 0.69, 0.68], [18.14, 18.27, 18.06, 18.32, 94.0, 0, 0.08, 0.72, 0.68], [18.28, 18.19, 18.17, 18.71, 108.0, 0, 0.13, 0.73, 0.67], [18.18, 18.14, 18.01, 18.31, 37.0, 0, 0.19, 0.74, 0.65], [18.22, 18.33, 18.2, 18.36, 48.0, 0, 0.26, 0.75, 0.62], [18.35, 17.84, 17.8, 18.39, 48.0, 0, 0.27, 0.72, 0.59], [17.83, 17.94, 17.71, 17.97, 36.0, 0, 0.36, 0.73, 0.55], [17.9, 18.26, 17.55, 18.3, 71.0, 1, 0.43, 0.71, 0.5], [18.12, 17.99, 17.91, 18.33, 72.0, 0, 0.4, 0.63, 0.43], [17.91, 17.28, 17.16, 17.95, 37.0, 1, 0.34, 0.55, 0.38], [17.17, 17.23, 17.0, 17.55, 51.0, 0, 0.37, 0.51, 0.33], [17.2, 17.31, 17.06, 17.33, 31.0, 0, 0.37, 0.46, 0.28], [17.15, 16.67, 16.51, 17.15, 19.0, 0, 0.3, 0.37, 0.22], [16.8, 16.81, 16.61, 17.06, 60.0, 0, 0.29, 0.32, 0.18], [16.68, 16.04, 16.0, 16.68, 65.0, 0, 0.2, 0.24, 0.14], [16.03, 15.98, 15.88, 16.25, 46.0, 0, 0.2, 0.21, 0.11], [16.21, 15.87, 15.78, 16.21, 57.0, 0, 0.2, 0.18, 0.08], [15.55, 15.89, 15.52, 15.96, 42.0, 0, 0.2, 0.16, 0.05], [15.87, 15.48, 15.45, 15.92, 34.0, 1, 0.17, 0.11, 0.02], [15.39, 15.42, 15.36, 15.7, 26.0, 0, 0.21, 0.1, -0.0], [15.58, 15.71, 15.35, 15.77, 38.0, 0, 0.25, 0.09, -0.03], [15.56, 15.52, 15.24, 15.68, 38.0, 0, 0.23, 0.05, -0.07], [15.41, 15.3, 15.28, 15.68, 35.0, 0, 0.21, 0.0, -0.1], [15.48, 15.28, 15.13, 15.49, 30.0, 0, 0.21, -0.02, -0.13], [15.29, 15.48, 15.2, 15.49, 21.0, 0, 0.2, -0.06, -0.16], [15.33, 14.86, 14.78, 15.39, 30.0, 0, 0.12, -0.13, -0.19], [14.96, 15.0, 14.84, 15.22, 51.0, 0, 0.13, -0.14, -0.2], [14.96, 14.72, 14.62, 15.06, 25.0, 0, 0.1, -0.17, -0.22], [14.75, 14.99, 14.62, 15.08, 36.0, 0, 0.13, -0.17, -0.24], [14.98, 14.72, 14.48, 15.18, 27.0, 0, 0.1, -0.21, -0.26], [14.65, 14.85, 14.65, 14.95, 18.0, 0, 0.11, -0.21, -0.27], [14.72, 14.67, 14.55, 14.8, 23.0, 0, 0.1, -0.24, -0.29], [14.79, 14.88, 14.69, 14.93, 22.0, 0, 0.13, -0.24, -0.3], [14.9, 14.86, 14.78, 14.93, 16.0, 0, 0.12, -0.26, -0.32], [14.5, 14.66, 14.47, 14.82, 19.0, 0, 0.11, -0.28, -0.34], [14.77, 14.94, 14.72, 15.05, 26.0, 0, 0.14, -0.28, -0.35], [14.95, 15.03, 14.88, 15.07, 38.0, 0, 0.12, -0.31, -0.37], [14.95, 14.9, 14.87, 15.06, 28.0, 0, 0.07, -0.35, -0.39], [14.9, 14.75, 14.68, 14.94, 22.0, 0, 0.03, -0.38, -0.4], [14.88, 15.01, 14.79, 15.11, 38.0, 1, 0.01, -0.4, -0.4], [15.01, 14.83, 14.72, 15.01, 24.0, 0, -0.09, -0.45, -0.4], [14.75, 14.81, 14.67, 14.87, 21.0, 0, -0.17, -0.48, -0.39], [14.81, 14.25, 14.21, 14.81, 51.0, 1, -0.27, -0.5, -0.37], [14.35, 14.45, 14.28, 14.57, 28.0, 0, -0.26, -0.46, -0.33], [14.43, 14.56, 14.04, 14.6, 48.0, 0, -0.25, -0.41, -0.29], [14.56, 14.65, 14.36, 14.78, 32.0, 0, -0.21, -0.36, -0.25], [14.79, 14.96, 14.72, 14.97, 60.0, 0, -0.13, -0.29, -0.22], [14.95, 15.15, 14.91, 15.19, 53.0, 1, -0.05, -0.23, -0.21], [15.14, 15.97, 15.02, 16.02, 164.0, 1, 0.06, -0.17, -0.2], [15.9, 15.78, 15.65, 16.0, 41.0, 0, 0.04, -0.19, -0.21], [15.78, 15.96, 15.21, 15.99, 45.0, 0, 0.05, -0.19, -0.21], [15.73, 16.05, 15.41, 16.08, 74.0, 0, 0.03, -0.2, -0.22], [15.82, 15.66, 15.65, 15.98, 19.0, 0, -0.02, -0.23, -0.22], [15.59, 15.76, 15.42, 15.78, 32.0, 0, 0.01, -0.22, -0.22], [15.78, 15.72, 15.65, 16.04, 31.0, 0, 0.03, -0.2, -0.22], [15.81, 15.86, 15.6, 15.99, 35.0, 0, 0.1, -0.18, -0.23], [15.88, 16.42, 15.79, 16.45, 123.0, 0, 0.17, -0.16, -0.24], [16.39, 16.23, 16.11, 16.4, 46.0, 0, 0.14, -0.2, -0.26], [16.39, 16.17, 16.04, 16.4, 59.0, 0, 0.13, -0.22, -0.28], [16.21, 16.22, 16.11, 16.44, 50.0, 0, 0.12, -0.24, -0.3], [16.27, 16.19, 16.16, 16.42, 33.0, 0, 0.1, -0.27, -0.32], [16.26, 16.18, 16.18, 16.29, 19.0, 0, 0.08, -0.3, -0.33], [16.18, 16.11, 16.01, 16.23, 23.0, 0, 0.04, -0.33, -0.35], [16.12, 16.13, 16.1, 16.2, 15.0, 0, 0.0, -0.35, -0.35], [16.15, 15.85, 15.81, 16.2, 22.0, 0, -0.06, -0.38, -0.35], [15.9, 15.79, 15.76, 16.05, 19.0, 0, -0.06, -0.37, -0.34], [15.79, 16.24, 15.78, 16.3, 29.0, 0, -0.03, -0.35, -0.33], [16.3, 16.09, 16.02, 16.35, 25.0, 0, -0.07, -0.37, -0.33], [16.18, 16.27, 15.98, 16.3, 38.0, 0, -0.08, -0.36, -0.32], [16.13, 16.34, 16.07, 16.37, 39.0, 0, -0.13, -0.37, -0.31], [16.21, 16.26, 16.19, 16.35, 30.0, 0, -0.2, -0.39, -0.29], [16.32, 16.1, 16.05, 16.35, 29.0, 1, -0.26, -0.39, -0.26], [16.0, 16.16, 15.98, 16.21, 22.0, 0, -0.28, -0.37, -0.23], [16.16, 16.31, 16.15, 16.57, 31.0, 0, -0.3, -0.33, -0.19], [16.41, 16.29, 16.12, 16.41, 17.0, 0, -0.31, -0.3, -0.14], [16.39, 16.48, 16.0, 16.68, 40.0, 0, -0.3, -0.25, -0.1], [16.5, 16.46, 16.37, 16.68, 22.0, 0, -0.27, -0.19, -0.06], [16.56, 16.93, 16.46, 17.04, 58.0, 0, -0.2, -0.12, -0.02], [16.76, 17.06, 16.72, 17.27, 50.0, 0, -0.16, -0.07, 0.01], [17.21, 17.11, 17.02, 17.23, 30.0, 0, -0.12, -0.02, 0.03], [17.11, 17.33, 16.8, 17.36, 78.0, 0, -0.04, 0.03, 0.05], [17.27, 17.69, 17.17, 17.93, 79.0, 0, 0.05, 0.08, 0.06], [17.6, 17.87, 17.56, 18.02, 55.0, 0, 0.09, 0.1, 0.05], [17.75, 17.9, 17.41, 17.96, 39.0, 1, 0.11, 0.09, 0.04], [17.81, 17.91, 17.6, 17.95, 39.0, 0, 0.12, 0.08, 0.02], [17.9, 17.88, 17.81, 17.95, 25.0, 0, 0.12, 0.06, 0.0], [17.93, 17.88, 17.67, 17.93, 28.0, 0, 0.11, 0.04, -0.01], [17.87, 17.75, 17.73, 17.92, 19.0, 0, 0.08, 0.01, -0.03], [17.79, 17.7, 17.56, 17.85, 35.0, 0, 0.05, -0.01, -0.04], [17.7, 17.65, 17.59, 17.71, 24.0, 0, 0.02, -0.04, -0.05], [17.65, 17.62, 17.46, 17.7, 20.0, 0, -0.03, -0.06, -0.05], [17.62, 17.32, 17.3, 17.65, 29.0, 0, -0.1, -0.09, -0.05], [17.33, 17.3, 17.21, 17.45, 23.0, 0, -0.13, -0.1, -0.03], [17.11, 17.04, 16.98, 17.41, 28.0, 0, -0.15, -0.09, -0.01], [17.06, 17.15, 17.06, 17.32, 20.0, 0, -0.12, -0.05, 0.01], [17.02, 17.46, 17.02, 17.58, 26.0, 0, -0.07, -0.01, 0.03], [17.41, 17.57, 17.34, 17.62, 23.0, 0, -0.06, 0.01, 0.03], [17.55, 17.5, 17.48, 17.64, 37.0, 0, -0.06, 0.01, 0.04], [17.49, 17.48, 17.39, 17.53, 13.0, 0, -0.03, 0.03, 0.05], [17.41, 17.82, 17.39, 17.87, 46.0, 0, 0.01, 0.06, 0.06], [17.74, 17.81, 17.67, 17.86, 17.0, 0, -0.01, 0.05, 0.05], [17.76, 17.88, 17.7, 17.93, 14.0, 0, -0.03, 0.04, 0.06], [17.88, 17.52, 17.48, 17.97, 16.0, 0, -0.09, 0.02, 0.06], [17.51, 17.33, 17.32, 17.51, 8.0, 0, -0.09, 0.03, 0.07], [17.59, 17.55, 17.44, 17.59, 10.0, 0, -0.03, 0.07, 0.08], [17.5, 17.69, 17.5, 17.8, 12.0, 0, 0.0, 0.09, 0.09], [17.77, 17.66, 17.62, 17.77, 7.0, 0, 0.03, 0.1, 0.09], [17.75, 17.84, 17.62, 17.87, 20.0, 0, 0.08, 0.12, 0.08], [17.88, 18.0, 17.81, 18.03, 41.0, 0, 0.1, 0.12, 0.07], [18.09, 17.83, 17.73, 18.09, 22.0, 0, 0.08, 0.1, 0.06], [17.82, 17.73, 17.66, 17.88, 10.0, 0, 0.07, 0.08, 0.05], [17.8, 17.78, 17.71, 17.83, 9.0, 0, 0.08, 0.08, 0.04], [17.73, 17.64, 17.56, 17.83, 12.0, 0, 0.07, 0.06, 0.03], [17.76, 17.8, 17.59, 17.87, 11.0, 0, 0.08, 0.06, 0.02], [17.75, 17.77, 17.65, 17.84, 9.0, 0, 0.04, 0.03, 0.01], [17.58, 17.32, 17.29, 17.79, 16.0, 0, -0.02, -0.01, 0.0], [17.33, 17.38, 17.29, 17.5, 10.0, 0, -0.01, 0.0, 0.0], [17.25, 17.39, 17.25, 17.46, 18.0, 0, 0.0, 0.01, 0.0], [17.26, 17.4, 17.26, 17.46, 22.0, 0, 0.01, 0.01, 0.0], [17.38, 17.5, 17.37, 17.67, 13.0, 0, 0.03, 0.02, 0.0], [17.62, 17.51, 17.42, 17.63, 15.0, 0, 0.03, 0.01, -0.0], [17.53, 17.54, 17.5, 17.7, 11.0, 0, 0.02, 0.0, -0.01], [17.5, 17.5, 17.46, 17.6, 10.0, 0, -0.01, -0.01, -0.01], [17.52, 17.26, 17.24, 17.53, 16.0, 0, -0.04, -0.03, -0.01], [17.26, 17.25, 17.18, 17.38, 60.0, 0, -0.03, -0.02, -0.0], [17.25, 17.28, 17.18, 17.33, 19.0, 0, -0.01, -0.0, 0.0], [17.25, 17.29, 17.21, 17.32, 13.0, 0, 0.02, 0.01, 0.0], [17.31, 17.45, 17.27, 17.49, 21.0, 0, 0.07, 0.04, 0.0], [17.47, 17.5, 17.39, 17.55, 17.0, 0, 0.11, 0.04, -0.01], [17.5, 17.63, 17.49, 17.66, 10.0, 0, 0.14, 0.05, -0.03], [17.63, 17.72, 17.63, 17.92, 17.0, 0, 0.16, 0.03, -0.05], [17.79, 17.56, 17.45, 17.79, 18.0, 0, 0.14, 0.0, -0.07], [17.53, 17.42, 17.31, 17.54, 20.0, 0, 0.14, -0.02, -0.09], [17.41, 17.51, 17.35, 17.52, 15.0, 0, 0.16, -0.03, -0.11], [17.5, 17.39, 17.35, 17.51, 15.0, 0, 0.16, -0.05, -0.13], [17.49, 17.48, 17.4, 17.55, 16.0, 0, 0.17, -0.07, -0.15], [17.48, 17.71, 17.46, 17.75, 25.0, 0, 0.16, -0.1, -0.18], [17.13, 17.05, 17.02, 17.39, 28.0, 0, 0.07, -0.17, -0.2], [17.07, 17.09, 17.0, 17.16, 12.0, 0, 0.08, -0.17, -0.21], [17.08, 17.14, 17.08, 17.17, 11.0, 0, 0.09, -0.18, -0.22], [17.15, 17.26, 17.13, 17.49, 24.0, 0, 0.1, -0.19, -0.23], [17.26, 17.12, 17.09, 17.33, 13.0, 0, 0.07, -0.21, -0.25], [17.1, 17.07, 17.02, 17.14, 11.0, 0, 0.06, -0.23, -0.26], [17.07, 17.24, 17.07, 17.27, 14.0, 0, 0.07, -0.23, -0.27], [17.25, 17.08, 17.03, 17.25, 10.0, 0, 0.04, -0.26, -0.28], [17.09, 17.12, 17.01, 17.18, 8.0, 0, 0.04, -0.26, -0.28], [17.05, 17.17, 17.05, 17.2, 11.0, 0, 0.04, -0.27, -0.29], [17.2, 17.37, 16.89, 17.38, 32.0, 0, 0.02, -0.28, -0.29], [17.19, 17.14, 17.09, 17.29, 19.0, 0, -0.04, -0.32, -0.3], [17.15, 17.16, 17.04, 17.23, 12.0, 0, -0.08, -0.33, -0.29], [17.15, 17.18, 17.1, 17.24, 19.0, 0, -0.13, -0.34, -0.28], [17.21, 17.15, 17.12, 17.25, 9.0, 0, -0.19, -0.36, -0.26], [17.08, 17.07, 17.01, 17.16, 9.0, 0, -0.25, -0.36, -0.24], [17.11, 17.06, 16.98, 17.12, 11.0, 1, -0.29, -0.35, -0.2], [17.06, 17.1, 17.05, 17.15, 16.0, 0, -0.33, -0.32, -0.16], [17.14, 17.13, 17.07, 17.15, 13.0, 0, -0.35, -0.29, -0.11], [17.13, 17.17, 17.1, 17.2, 25.0, 0, -0.35, -0.24, -0.06], [17.17, 17.28, 17.15, 17.29, 18.0, 0, -0.31, -0.17, -0.01], [17.3, 17.45, 17.26, 17.87, 31.0, 0, -0.24, -0.09, 0.03], [17.51, 17.99, 17.47, 18.0, 44.0, 0, -0.14, -0.0, 0.07], [18.1, 18.42, 18.02, 18.99, 81.0, 0, -0.09, 0.04, 0.09], [18.64, 18.31, 18.12, 18.87, 60.0, 0, -0.1, 0.05, 0.1], [18.43, 18.4, 18.31, 18.68, 21.0, 0, -0.08, 0.08, 0.11], [18.33, 18.23, 18.13, 18.65, 32.0, 0, -0.07, 0.09, 0.13], [18.34, 18.62, 18.31, 18.75, 39.0, 0, 0.0, 0.14, 0.14], [18.62, 18.69, 18.51, 18.8, 20.0, 0, 0.01, 0.14, 0.13], [18.61, 18.66, 18.52, 19.0, 28.0, 0, 0.01, 0.14, 0.13], [18.66, 18.62, 18.43, 18.7, 19.0, 0, 0.0, 0.13, 0.13], [18.57, 18.51, 18.19, 18.64, 19.0, 0, -0.0, 0.13, 0.13], [18.49, 18.55, 18.44, 18.6, 16.0, 0, 0.01, 0.13, 0.13], [18.46, 18.27, 18.03, 18.48, 20.0, 0, 0.01, 0.13, 0.13], [18.24, 18.44, 18.23, 18.52, 19.0, 0, 0.07, 0.17, 0.13], [18.36, 18.63, 18.36, 18.76, 15.0, 0, 0.13, 0.18, 0.12], [18.6, 18.62, 18.55, 18.78, 15.0, 0, 0.16, 0.18, 0.1], [18.52, 18.68, 18.48, 18.72, 17.0, 0, 0.19, 0.17, 0.08], [18.68, 18.75, 18.57, 18.82, 19.0, 0, 0.2, 0.15, 0.05], [18.75, 18.51, 18.43, 18.78, 17.0, 0, 0.18, 0.11, 0.02], [18.51, 18.56, 18.4, 18.62, 17.0, 0, 0.17, 0.08, -0.0], [18.58, 18.53, 18.48, 18.63, 8.0, 0, 0.13, 0.04, -0.03], [18.52, 18.33, 18.31, 18.57, 8.0, 0, 0.06, -0.02, -0.05], [18.16, 17.9, 17.81, 18.18, 28.0, 0, -0.02, -0.07, -0.06], [17.91, 17.91, 17.9, 18.08, 13.0, 0, -0.05, -0.08, -0.05], [17.99, 17.54, 17.48, 17.99, 22.0, 0, -0.09, -0.09, -0.05], [17.55, 17.81, 17.55, 17.88, 16.0, 0, -0.06, -0.06, -0.03], [17.8, 17.74, 17.67, 17.85, 10.0, 0, -0.06, -0.05, -0.02], [17.75, 17.88, 17.75, 17.95, 7.0, 0, -0.03, -0.03, -0.02], [17.99, 17.97, 17.88, 18.17, 12.0, 0, -0.02, -0.02, -0.01], [17.99, 17.98, 17.93, 18.09, 13.0, 0, -0.01, -0.01, -0.01], [17.91, 18.0, 17.85, 18.09, 14.0, 0, -0.0, -0.01, -0.01], [17.97, 18.07, 17.94, 18.1, 10.0, 0, 0.0, -0.01, -0.01], [18.06, 17.89, 17.83, 18.06, 10.0, 0, -0.0, -0.01, -0.01], [17.96, 18.0, 17.92, 18.07, 10.0, 0, 0.03, 0.01, -0.01], [17.96, 18.0, 17.95, 18.1, 8.0, 0, 0.06, 0.02, -0.01], [18.03, 18.3, 18.03, 18.38, 19.0, 0, 0.11, 0.04, -0.02], [18.33, 18.33, 18.26, 18.49, 12.0, 0, 0.1, 0.02, -0.04], [18.28, 18.15, 18.1, 18.31, 10.0, 0, 0.07, -0.02, -0.05], [18.15, 18.09, 18.05, 18.21, 10.0, 0, 0.06, -0.03, -0.06], [18.1, 18.1, 18.0, 18.15, 12.0, 0, 0.04, -0.05, -0.07], [18.07, 17.86, 17.83, 18.1, 12.0, 0, 0.01, -0.07, -0.08], [17.86, 17.93, 17.84, 17.99, 14.0, 0, 0.03, -0.07, -0.08], [17.93, 17.88, 17.83, 18.05, 11.0, 0, 0.03, -0.07, -0.08], [17.9, 17.89, 17.83, 17.98, 12.0, 0, 0.05, -0.06, -0.09], [17.91, 17.91, 17.82, 17.93, 12.0, 0, 0.07, -0.06, -0.09], [17.93, 18.31, 17.86, 18.42, 29.0, 0, 0.11, -0.05, -0.1], [18.31, 18.13, 18.09, 18.46, 19.0, 0, 0.06, -0.09, -0.12], [18.12, 17.97, 17.95, 18.15, 14.0, 0, 0.02, -0.12, -0.13], [18.06, 17.81, 17.77, 18.06, 21.0, 0, -0.01, -0.13, -0.13], [17.8, 17.9, 17.8, 18.05, 20.0, 0, -0.01, -0.13, -0.13], [17.87, 17.86, 17.72, 17.96, 12.0, 0, -0.02, -0.14, -0.13], [17.87, 17.98, 17.79, 17.99, 18.0, 0, -0.03, -0.14, -0.12], [17.86, 17.84, 17.76, 17.94, 30.0, 0, -0.06, -0.15, -0.12], [17.83, 17.93, 17.79, 17.97, 27.0, 0, -0.07, -0.14, -0.11], [17.9, 17.91, 17.87, 18.0, 26.0, 0, -0.09, -0.15, -0.1], [17.91, 17.89, 17.85, 17.93, 20.0, 0, -0.11, -0.14, -0.09], [17.92, 17.99, 17.89, 18.06, 26.0, 0, -0.12, -0.13, -0.07], [18.0, 17.89, 17.77, 18.08, 34.0, 0, -0.15, -0.13, -0.06], [17.95, 18.0, 17.94, 18.11, 27.0, 0, -0.15, -0.11, -0.03], [17.95, 18.02, 17.93, 18.08, 27.0, 0, -0.17, -0.1, -0.01], [18.0, 18.04, 17.95, 18.25, 35.0, 0, -0.18, -0.08, 0.01], [18.1, 18.18, 18.03, 18.24, 25.0, 0, -0.18, -0.06, 0.04], [18.23, 18.12, 18.05, 18.29, 23.0, 0, -0.21, -0.04, 0.06], [18.11, 18.12, 18.01, 18.14, 27.0, 0, -0.21, -0.01, 0.09], [18.12, 18.1, 18.03, 18.16, 18.0, 0, -0.19, 0.03, 0.12], [18.08, 18.34, 18.08, 18.68, 41.0, 0, -0.13, 0.08, 0.15], [18.37, 18.37, 18.28, 18.49, 52.0, 0, -0.09, 0.12, 0.17], [18.4, 18.84, 18.37, 18.9, 66.0, 0, -0.02, 0.17, 0.18], [18.77, 18.74, 18.61, 18.97, 26.0, 0, -0.02, 0.17, 0.18], [18.8, 18.99, 18.66, 19.02, 40.0, 0, -0.01, 0.18, 0.19], [19.1, 18.65, 18.52, 19.2, 85.0, 0, -0.06, 0.16, 0.19], [18.65, 18.75, 18.51, 18.76, 49.0, 0, -0.06, 0.17, 0.2], [18.76, 18.55, 18.47, 18.82, 39.0, 0, -0.08, 0.17, 0.21], [18.55, 18.49, 18.41, 18.64, 53.0, 0, -0.06, 0.19, 0.22], [18.53, 18.49, 18.24, 18.54, 48.0, 0, -0.02, 0.21, 0.23], [18.39, 18.66, 18.34, 18.67, 50.0, 0, 0.03, 0.25, 0.23], [18.66, 18.6, 18.57, 18.78, 31.0, 0, 0.08, 0.26, 0.23], [18.65, 18.62, 18.58, 18.71, 12.0, 0, 0.15, 0.29, 0.21], [18.67, 18.76, 18.62, 18.88, 26.0, 0, 0.25, 0.32, 0.19], [18.76, 19.2, 18.75, 19.34, 62.0, 0, 0.34, 0.33, 0.16], [19.16, 19.25, 18.9, 19.65, 79.0, 1, 0.34, 0.28, 0.11], [19.09, 18.88, 18.81, 19.2, 24.0, 0, 0.27, 0.2, 0.06], [18.8, 18.82, 18.8, 19.14, 32.0, 0, 0.23, 0.13, 0.02], [18.73, 18.24, 18.2, 18.73, 36.0, 0, 0.13, 0.05, -0.01], [18.24, 18.18, 18.12, 18.4, 24.0, 0, 0.1, 0.02, -0.03], [18.15, 18.01, 17.93, 18.18, 24.0, 0, 0.06, -0.02, -0.05], [17.99, 17.79, 17.7, 17.99, 29.0, 1, 0.02, -0.05, -0.05], [17.83, 17.81, 17.77, 17.98, 30.0, 0, 0.0, -0.05, -0.06], [17.85, 17.72, 17.65, 17.85, 21.0, 0, -0.03, -0.07, -0.06], [17.77, 17.6, 17.54, 17.77, 18.0, 0, -0.04, -0.08, -0.05], [17.56, 17.75, 17.39, 17.77, 16.0, 0, -0.04, -0.07, -0.05], [17.73, 17.71, 17.65, 17.82, 10.0, 0, -0.06, -0.07, -0.04], [17.72, 17.62, 17.49, 17.77, 26.0, 0, -0.09, -0.07, -0.03], [17.6, 17.49, 17.43, 17.62, 28.0, 0, -0.09, -0.06, -0.02], [17.53, 17.6, 17.47, 17.61, 22.0, 0, -0.05, -0.03, -0.01], [17.6, 17.92, 17.57, 17.98, 28.0, 1, 0.0, 0.0, 0.0]]
        var option_5b379cc118844409b7b2160539d5541e = {
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "candlestick",
            "colorBy": "series",
            "xAxisIndex": 0,
            "yAxisIndex": 0,
            "data": [
                [
                    18.4,
                    18.58,
                    18.33,
                    18.79,
                    67.0,
                    1,
                    0.04,
                    0.11,
                    0.09
                ],
                [
                    18.56,
                    18.25,
                    18.19,
                    18.56,
                    55.0,
                    0,
                    -0.0,
                    0.08,
                    0.09
                ],
                [
                    18.3,
                    18.22,
                    18.05,
                    18.41,
                    37.0,
                    0,
                    0.01,
                    0.09,
                    0.09
                ],
                [
                    18.18,
                    18.69,
                    18.02,
                    18.98,
                    89.0,
                    0,
                    0.03,
                    0.1,
                    0.08
                ],
                [
                    18.42,
                    18.29,
                    18.22,
                    18.48,
                    43.0,
                    0,
                    -0.06,
                    0.05,
                    0.08
                ],
                [
                    18.26,
                    18.19,
                    18.08,
                    18.36,
                    46.0,
                    0,
                    -0.1,
                    0.03,
                    0.09
                ],
                [
                    18.33,
                    18.07,
                    17.98,
                    18.35,
                    65.0,
                    0,
                    -0.15,
                    0.03,
                    0.1
                ],
                [
                    18.08,
                    18.04,
                    17.88,
                    18.13,
                    37.0,
                    0,
                    -0.19,
                    0.03,
                    0.12
                ],
                [
                    17.96,
                    17.86,
                    17.82,
                    17.99,
                    35.0,
                    0,
                    -0.24,
                    0.03,
                    0.15
                ],
                [
                    17.85,
                    17.81,
                    17.8,
                    17.93,
                    27.0,
                    0,
                    -0.24,
                    0.06,
                    0.18
                ],
                [
                    17.79,
                    17.93,
                    17.78,
                    18.08,
                    43.0,
                    0,
                    -0.22,
                    0.11,
                    0.22
                ],
                [
                    17.78,
                    17.83,
                    17.78,
                    18.04,
                    27.0,
                    0,
                    -0.2,
                    0.15,
                    0.25
                ],
                [
                    17.84,
                    17.9,
                    17.84,
                    18.06,
                    34.0,
                    0,
                    -0.12,
                    0.22,
                    0.28
                ],
                [
                    17.97,
                    18.36,
                    17.85,
                    18.39,
                    62.0,
                    0,
                    -0.0,
                    0.3,
                    0.3
                ],
                [
                    18.3,
                    18.57,
                    18.18,
                    19.08,
                    177.0,
                    0,
                    0.07,
                    0.33,
                    0.3
                ],
                [
                    18.53,
                    18.68,
                    18.3,
                    18.71,
                    95.0,
                    0,
                    0.12,
                    0.35,
                    0.29
                ],
                [
                    18.75,
                    19.08,
                    18.75,
                    19.98,
                    202.0,
                    1,
                    0.16,
                    0.35,
                    0.27
                ],
                [
                    18.85,
                    18.64,
                    18.56,
                    18.99,
                    85.0,
                    0,
                    0.09,
                    0.29,
                    0.25
                ],
                [
                    18.64,
                    18.44,
                    18.31,
                    18.64,
                    50.0,
                    0,
                    0.06,
                    0.27,
                    0.23
                ],
                [
                    18.55,
                    18.27,
                    18.17,
                    18.57,
                    43.0,
                    0,
                    0.05,
                    0.25,
                    0.23
                ],
                [
                    18.13,
                    18.14,
                    18.09,
                    18.34,
                    35.0,
                    0,
                    0.05,
                    0.24,
                    0.22
                ],
                [
                    18.01,
                    18.1,
                    17.93,
                    18.17,
                    34.0,
                    0,
                    0.07,
                    0.25,
                    0.21
                ],
                [
                    18.2,
                    18.14,
                    18.08,
                    18.45,
                    58.0,
                    0,
                    0.11,
                    0.25,
                    0.2
                ],
                [
                    18.23,
                    18.16,
                    18.0,
                    18.45,
                    47.0,
                    0,
                    0.13,
                    0.25,
                    0.19
                ],
                [
                    18.08,
                    18.2,
                    18.05,
                    18.25,
                    32.0,
                    0,
                    0.15,
                    0.24,
                    0.17
                ],
                [
                    18.15,
                    18.15,
                    18.11,
                    18.29,
                    36.0,
                    0,
                    0.13,
                    0.21,
                    0.15
                ],
                [
                    18.16,
                    18.19,
                    18.12,
                    18.34,
                    47.0,
                    0,
                    0.11,
                    0.18,
                    0.13
                ],
                [
                    18.23,
                    17.88,
                    17.7,
                    18.23,
                    62.0,
                    0,
                    0.03,
                    0.13,
                    0.11
                ],
                [
                    17.85,
                    17.73,
                    17.56,
                    17.85,
                    66.0,
                    0,
                    -0.03,
                    0.09,
                    0.11
                ],
                [
                    17.79,
                    17.53,
                    17.5,
                    17.92,
                    63.0,
                    0,
                    -0.1,
                    0.06,
                    0.11
                ],
                [
                    17.51,
                    17.04,
                    16.9,
                    17.51,
                    67.0,
                    0,
                    -0.16,
                    0.05,
                    0.13
                ],
                [
                    17.07,
                    17.2,
                    16.98,
                    17.32,
                    55.0,
                    0,
                    -0.12,
                    0.09,
                    0.15
                ],
                [
                    17.28,
                    17.11,
                    16.91,
                    17.28,
                    39.0,
                    0,
                    -0.09,
                    0.12,
                    0.16
                ],
                [
                    17.13,
                    17.91,
                    17.05,
                    17.99,
                    102.0,
                    0,
                    -0.01,
                    0.17,
                    0.18
                ],
                [
                    17.8,
                    17.78,
                    17.61,
                    17.98,
                    71.0,
                    0,
                    -0.09,
                    0.14,
                    0.18
                ],
                [
                    17.6,
                    17.25,
                    17.13,
                    17.69,
                    51.0,
                    0,
                    -0.18,
                    0.1,
                    0.19
                ],
                [
                    17.2,
                    17.39,
                    17.15,
                    17.45,
                    43.0,
                    0,
                    -0.19,
                    0.12,
                    0.22
                ],
                [
                    17.3,
                    17.42,
                    17.18,
                    17.62,
                    45.0,
                    0,
                    -0.23,
                    0.13,
                    0.24
                ],
                [
                    17.33,
                    17.39,
                    17.32,
                    17.59,
                    44.0,
                    0,
                    -0.29,
                    0.13,
                    0.28
                ],
                [
                    17.39,
                    17.26,
                    17.21,
                    17.65,
                    44.0,
                    0,
                    -0.37,
                    0.13,
                    0.32
                ],
                [
                    17.23,
                    16.92,
                    16.66,
                    17.26,
                    114.0,
                    1,
                    -0.44,
                    0.15,
                    0.37
                ],
                [
                    16.75,
                    17.06,
                    16.5,
                    17.09,
                    94.0,
                    0,
                    -0.44,
                    0.21,
                    0.44
                ],
                [
                    17.03,
                    17.03,
                    16.9,
                    17.06,
                    46.0,
                    0,
                    -0.44,
                    0.28,
                    0.5
                ],
                [
                    17.08,
                    16.96,
                    16.87,
                    17.09,
                    30.0,
                    0,
                    -0.4,
                    0.36,
                    0.56
                ],
                [
                    17.0,
                    17.1,
                    16.95,
                    17.12,
                    50.0,
                    0,
                    -0.3,
                    0.47,
                    0.62
                ],
                [
                    17.09,
                    17.52,
                    17.04,
                    18.06,
                    156.0,
                    0,
                    -0.14,
                    0.59,
                    0.66
                ],
                [
                    17.43,
                    18.23,
                    17.35,
                    18.45,
                    152.0,
                    1,
                    0.02,
                    0.69,
                    0.68
                ],
                [
                    18.14,
                    18.27,
                    18.06,
                    18.32,
                    94.0,
                    0,
                    0.08,
                    0.72,
                    0.68
                ],
                [
                    18.28,
                    18.19,
                    18.17,
                    18.71,
                    108.0,
                    0,
                    0.13,
                    0.73,
                    0.67
                ],
                [
                    18.18,
                    18.14,
                    18.01,
                    18.31,
                    37.0,
                    0,
                    0.19,
                    0.74,
                    0.65
                ],
                [
                    18.22,
                    18.33,
                    18.2,
                    18.36,
                    48.0,
                    0,
                    0.26,
                    0.75,
                    0.62
                ],
                [
                    18.35,
                    17.84,
                    17.8,
                    18.39,
                    48.0,
                    0,
                    0.27,
                    0.72,
                    0.59
                ],
                [
                    17.83,
                    17.94,
                    17.71,
                    17.97,
                    36.0,
                    0,
                    0.36,
                    0.73,
                    0.55
                ],
                [
                    17.9,
                    18.26,
                    17.55,
                    18.3,
                    71.0,
                    1,
                    0.43,
                    0.71,
                    0.5
                ],
                [
                    18.12,
                    17.99,
                    17.91,
                    18.33,
                    72.0,
                    0,
                    0.4,
                    0.63,
                    0.43
                ],
                [
                    17.91,
                    17.28,
                    17.16,
                    17.95,
                    37.0,
                    1,
                    0.34,
                    0.55,
                    0.38
                ],
                [
                    17.17,
                    17.23,
                    17.0,
                    17.55,
                    51.0,
                    0,
                    0.37,
                    0.51,
                    0.33
                ],
                [
                    17.2,
                    17.31,
                    17.06,
                    17.33,
                    31.0,
                    0,
                    0.37,
                    0.46,
                    0.28
                ],
                [
                    17.15,
                    16.67,
                    16.51,
                    17.15,
                    19.0,
                    0,
                    0.3,
                    0.37,
                    0.22
                ],
                [
                    16.8,
                    16.81,
                    16.61,
                    17.06,
                    60.0,
                    0,
                    0.29,
                    0.32,
                    0.18
                ],
                [
                    16.68,
                    16.04,
                    16.0,
                    16.68,
                    65.0,
                    0,
                    0.2,
                    0.24,
                    0.14
                ],
                [
                    16.03,
                    15.98,
                    15.88,
                    16.25,
                    46.0,
                    0,
                    0.2,
                    0.21,
                    0.11
                ],
                [
                    16.21,
                    15.87,
                    15.78,
                    16.21,
                    57.0,
                    0,
                    0.2,
                    0.18,
                    0.08
                ],
                [
                    15.55,
                    15.89,
                    15.52,
                    15.96,
                    42.0,
                    0,
                    0.2,
                    0.16,
                    0.05
                ],
                [
                    15.87,
                    15.48,
                    15.45,
                    15.92,
                    34.0,
                    1,
                    0.17,
                    0.11,
                    0.02
                ],
                [
                    15.39,
                    15.42,
                    15.36,
                    15.7,
                    26.0,
                    0,
                    0.21,
                    0.1,
                    -0.0
                ],
                [
                    15.58,
                    15.71,
                    15.35,
                    15.77,
                    38.0,
                    0,
                    0.25,
                    0.09,
                    -0.03
                ],
                [
                    15.56,
                    15.52,
                    15.24,
                    15.68,
                    38.0,
                    0,
                    0.23,
                    0.05,
                    -0.07
                ],
                [
                    15.41,
                    15.3,
                    15.28,
                    15.68,
                    35.0,
                    0,
                    0.21,
                    0.0,
                    -0.1
                ],
                [
                    15.48,
                    15.28,
                    15.13,
                    15.49,
                    30.0,
                    0,
                    0.21,
                    -0.02,
                    -0.13
                ],
                [
                    15.29,
                    15.48,
                    15.2,
                    15.49,
                    21.0,
                    0,
                    0.2,
                    -0.06,
                    -0.16
                ],
                [
                    15.33,
                    14.86,
                    14.78,
                    15.39,
                    30.0,
                    0,
                    0.12,
                    -0.13,
                    -0.19
                ],
                [
                    14.96,
                    15.0,
                    14.84,
                    15.22,
                    51.0,
                    0,
                    0.13,
                    -0.14,
                    -0.2
                ],
                [
                    14.96,
                    14.72,
                    14.62,
                    15.06,
                    25.0,
                    0,
                    0.1,
                    -0.17,
                    -0.22
                ],
                [
                    14.75,
                    14.99,
                    14.62,
                    15.08,
                    36.0,
                    0,
                    0.13,
                    -0.17,
                    -0.24
                ],
                [
                    14.98,
                    14.72,
                    14.48,
                    15.18,
                    27.0,
                    0,
                    0.1,
                    -0.21,
                    -0.26
                ],
                [
                    14.65,
                    14.85,
                    14.65,
                    14.95,
                    18.0,
                    0,
                    0.11,
                    -0.21,
                    -0.27
                ],
                [
                    14.72,
                    14.67,
                    14.55,
                    14.8,
                    23.0,
                    0,
                    0.1,
                    -0.24,
                    -0.29
                ],
                [
                    14.79,
                    14.88,
                    14.69,
                    14.93,
                    22.0,
                    0,
                    0.13,
                    -0.24,
                    -0.3
                ],
                [
                    14.9,
                    14.86,
                    14.78,
                    14.93,
                    16.0,
                    0,
                    0.12,
                    -0.26,
                    -0.32
                ],
                [
                    14.5,
                    14.66,
                    14.47,
                    14.82,
                    19.0,
                    0,
                    0.11,
                    -0.28,
                    -0.34
                ],
                [
                    14.77,
                    14.94,
                    14.72,
                    15.05,
                    26.0,
                    0,
                    0.14,
                    -0.28,
                    -0.35
                ],
                [
                    14.95,
                    15.03,
                    14.88,
                    15.07,
                    38.0,
                    0,
                    0.12,
                    -0.31,
                    -0.37
                ],
                [
                    14.95,
                    14.9,
                    14.87,
                    15.06,
                    28.0,
                    0,
                    0.07,
                    -0.35,
                    -0.39
                ],
                [
                    14.9,
                    14.75,
                    14.68,
                    14.94,
                    22.0,
                    0,
                    0.03,
                    -0.38,
                    -0.4
                ],
                [
                    14.88,
                    15.01,
                    14.79,
                    15.11,
                    38.0,
                    1,
                    0.01,
                    -0.4,
                    -0.4
                ],
                [
                    15.01,
                    14.83,
                    14.72,
                    15.01,
                    24.0,
                    0,
                    -0.09,
                    -0.45,
                    -0.4
                ],
                [
                    14.75,
                    14.81,
                    14.67,
                    14.87,
                    21.0,
                    0,
                    -0.17,
                    -0.48,
                    -0.39
                ],
                [
                    14.81,
                    14.25,
                    14.21,
                    14.81,
                    51.0,
                    1,
                    -0.27,
                    -0.5,
                    -0.37
                ],
                [
                    14.35,
                    14.45,
                    14.28,
                    14.57,
                    28.0,
                    0,
                    -0.26,
                    -0.46,
                    -0.33
                ],
                [
                    14.43,
                    14.56,
                    14.04,
                    14.6,
                    48.0,
                    0,
                    -0.25,
                    -0.41,
                    -0.29
                ],
                [
                    14.56,
                    14.65,
                    14.36,
                    14.78,
                    32.0,
                    0,
                    -0.21,
                    -0.36,
                    -0.25
                ],
                [
                    14.79,
                    14.96,
                    14.72,
                    14.97,
                    60.0,
                    0,
                    -0.13,
                    -0.29,
                    -0.22
                ],
                [
                    14.95,
                    15.15,
                    14.91,
                    15.19,
                    53.0,
                    1,
                    -0.05,
                    -0.23,
                    -0.21
                ],
                [
                    15.14,
                    15.97,
                    15.02,
                    16.02,
                    164.0,
                    1,
                    0.06,
                    -0.17,
                    -0.2
                ],
                [
                    15.9,
                    15.78,
                    15.65,
                    16.0,
                    41.0,
                    0,
                    0.04,
                    -0.19,
                    -0.21
                ],
                [
                    15.78,
                    15.96,
                    15.21,
                    15.99,
                    45.0,
                    0,
                    0.05,
                    -0.19,
                    -0.21
                ],
                [
                    15.73,
                    16.05,
                    15.41,
                    16.08,
                    74.0,
                    0,
                    0.03,
                    -0.2,
                    -0.22
                ],
                [
                    15.82,
                    15.66,
                    15.65,
                    15.98,
                    19.0,
                    0,
                    -0.02,
                    -0.23,
                    -0.22
                ],
                [
                    15.59,
                    15.76,
                    15.42,
                    15.78,
                    32.0,
                    0,
                    0.01,
                    -0.22,
                    -0.22
                ],
                [
                    15.78,
                    15.72,
                    15.65,
                    16.04,
                    31.0,
                    0,
                    0.03,
                    -0.2,
                    -0.22
                ],
                [
                    15.81,
                    15.86,
                    15.6,
                    15.99,
                    35.0,
                    0,
                    0.1,
                    -0.18,
                    -0.23
                ],
                [
                    15.88,
                    16.42,
                    15.79,
                    16.45,
                    123.0,
                    0,
                    0.17,
                    -0.16,
                    -0.24
                ],
                [
                    16.39,
                    16.23,
                    16.11,
                    16.4,
                    46.0,
                    0,
                    0.14,
                    -0.2,
                    -0.26
                ],
                [
                    16.39,
                    16.17,
                    16.04,
                    16.4,
                    59.0,
                    0,
                    0.13,
                    -0.22,
                    -0.28
                ],
                [
                    16.21,
                    16.22,
                    16.11,
                    16.44,
                    50.0,
                    0,
                    0.12,
                    -0.24,
                    -0.3
                ],
                [
                    16.27,
                    16.19,
                    16.16,
                    16.42,
                    33.0,
                    0,
                    0.1,
                    -0.27,
                    -0.32
                ],
                [
                    16.26,
                    16.18,
                    16.18,
                    16.29,
                    19.0,
                    0,
                    0.08,
                    -0.3,
                    -0.33
                ],
                [
                    16.18,
                    16.11,
                    16.01,
                    16.23,
                    23.0,
                    0,
                    0.04,
                    -0.33,
                    -0.35
                ],
                [
                    16.12,
                    16.13,
                    16.1,
                    16.2,
                    15.0,
                    0,
                    0.0,
                    -0.35,
                    -0.35
                ],
                [
                    16.15,
                    15.85,
                    15.81,
                    16.2,
                    22.0,
                    0,
                    -0.06,
                    -0.38,
                    -0.35
                ],
                [
                    15.9,
                    15.79,
                    15.76,
                    16.05,
                    19.0,
                    0,
                    -0.06,
                    -0.37,
                    -0.34
                ],
                [
                    15.79,
                    16.24,
                    15.78,
                    16.3,
                    29.0,
                    0,
                    -0.03,
                    -0.35,
                    -0.33
                ],
                [
                    16.3,
                    16.09,
                    16.02,
                    16.35,
                    25.0,
                    0,
                    -0.07,
                    -0.37,
                    -0.33
                ],
                [
                    16.18,
                    16.27,
                    15.98,
                    16.3,
                    38.0,
                    0,
                    -0.08,
                    -0.36,
                    -0.32
                ],
                [
                    16.13,
                    16.34,
                    16.07,
                    16.37,
                    39.0,
                    0,
                    -0.13,
                    -0.37,
                    -0.31
                ],
                [
                    16.21,
                    16.26,
                    16.19,
                    16.35,
                    30.0,
                    0,
                    -0.2,
                    -0.39,
                    -0.29
                ],
                [
                    16.32,
                    16.1,
                    16.05,
                    16.35,
                    29.0,
                    1,
                    -0.26,
                    -0.39,
                    -0.26
                ],
                [
                    16.0,
                    16.16,
                    15.98,
                    16.21,
                    22.0,
                    0,
                    -0.28,
                    -0.37,
                    -0.23
                ],
                [
                    16.16,
                    16.31,
                    16.15,
                    16.57,
                    31.0,
                    0,
                    -0.3,
                    -0.33,
                    -0.19
                ],
                [
                    16.41,
                    16.29,
                    16.12,
                    16.41,
                    17.0,
                    0,
                    -0.31,
                    -0.3,
                    -0.14
                ],
                [
                    16.39,
                    16.48,
                    16.0,
                    16.68,
                    40.0,
                    0,
                    -0.3,
                    -0.25,
                    -0.1
                ],
                [
                    16.5,
                    16.46,
                    16.37,
                    16.68,
                    22.0,
                    0,
                    -0.27,
                    -0.19,
                    -0.06
                ],
                [
                    16.56,
                    16.93,
                    16.46,
                    17.04,
                    58.0,
                    0,
                    -0.2,
                    -0.12,
                    -0.02
                ],
                [
                    16.76,
                    17.06,
                    16.72,
                    17.27,
                    50.0,
                    0,
                    -0.16,
                    -0.07,
                    0.01
                ],
                [
                    17.21,
                    17.11,
                    17.02,
                    17.23,
                    30.0,
                    0,
                    -0.12,
                    -0.02,
                    0.03
                ],
                [
                    17.11,
                    17.33,
                    16.8,
                    17.36,
                    78.0,
                    0,
                    -0.04,
                    0.03,
                    0.05
                ],
                [
                    17.27,
                    17.69,
                    17.17,
                    17.93,
                    79.0,
                    0,
                    0.05,
                    0.08,
                    0.06
                ],
                [
                    17.6,
                    17.87,
                    17.56,
                    18.02,
                    55.0,
                    0,
                    0.09,
                    0.1,
                    0.05
                ],
                [
                    17.75,
                    17.9,
                    17.41,
                    17.96,
                    39.0,
                    1,
                    0.11,
                    0.09,
                    0.04
                ],
                [
                    17.81,
                    17.91,
                    17.6,
                    17.95,
                    39.0,
                    0,
                    0.12,
                    0.08,
                    0.02
                ],
                [
                    17.9,
                    17.88,
                    17.81,
                    17.95,
                    25.0,
                    0,
                    0.12,
                    0.06,
                    0.0
                ],
                [
                    17.93,
                    17.88,
                    17.67,
                    17.93,
                    28.0,
                    0,
                    0.11,
                    0.04,
                    -0.01
                ],
                [
                    17.87,
                    17.75,
                    17.73,
                    17.92,
                    19.0,
                    0,
                    0.08,
                    0.01,
                    -0.03
                ],
                [
                    17.79,
                    17.7,
                    17.56,
                    17.85,
                    35.0,
                    0,
                    0.05,
                    -0.01,
                    -0.04
                ],
                [
                    17.7,
                    17.65,
                    17.59,
                    17.71,
                    24.0,
                    0,
                    0.02,
                    -0.04,
                    -0.05
                ],
                [
                    17.65,
                    17.62,
                    17.46,
                    17.7,
                    20.0,
                    0,
                    -0.03,
                    -0.06,
                    -0.05
                ],
                [
                    17.62,
                    17.32,
                    17.3,
                    17.65,
                    29.0,
                    0,
                    -0.1,
                    -0.09,
                    -0.05
                ],
                [
                    17.33,
                    17.3,
                    17.21,
                    17.45,
                    23.0,
                    0,
                    -0.13,
                    -0.1,
                    -0.03
                ],
                [
                    17.11,
                    17.04,
                    16.98,
                    17.41,
                    28.0,
                    0,
                    -0.15,
                    -0.09,
                    -0.01
                ],
                [
                    17.06,
                    17.15,
                    17.06,
                    17.32,
                    20.0,
                    0,
                    -0.12,
                    -0.05,
                    0.01
                ],
                [
                    17.02,
                    17.46,
                    17.02,
                    17.58,
                    26.0,
                    0,
                    -0.07,
                    -0.01,
                    0.03
                ],
                [
                    17.41,
                    17.57,
                    17.34,
                    17.62,
                    23.0,
                    0,
                    -0.06,
                    0.01,
                    0.03
                ],
                [
                    17.55,
                    17.5,
                    17.48,
                    17.64,
                    37.0,
                    0,
                    -0.06,
                    0.01,
                    0.04
                ],
                [
                    17.49,
                    17.48,
                    17.39,
                    17.53,
                    13.0,
                    0,
                    -0.03,
                    0.03,
                    0.05
                ],
                [
                    17.41,
                    17.82,
                    17.39,
                    17.87,
                    46.0,
                    0,
                    0.01,
                    0.06,
                    0.06
                ],
                [
                    17.74,
                    17.81,
                    17.67,
                    17.86,
                    17.0,
                    0,
                    -0.01,
                    0.05,
                    0.05
                ],
                [
                    17.76,
                    17.88,
                    17.7,
                    17.93,
                    14.0,
                    0,
                    -0.03,
                    0.04,
                    0.06
                ],
                [
                    17.88,
                    17.52,
                    17.48,
                    17.97,
                    16.0,
                    0,
                    -0.09,
                    0.02,
                    0.06
                ],
                [
                    17.51,
                    17.33,
                    17.32,
                    17.51,
                    8.0,
                    0,
                    -0.09,
                    0.03,
                    0.07
                ],
                [
                    17.59,
                    17.55,
                    17.44,
                    17.59,
                    10.0,
                    0,
                    -0.03,
                    0.07,
                    0.08
                ],
                [
                    17.5,
                    17.69,
                    17.5,
                    17.8,
                    12.0,
                    0,
                    0.0,
                    0.09,
                    0.09
                ],
                [
                    17.77,
                    17.66,
                    17.62,
                    17.77,
                    7.0,
                    0,
                    0.03,
                    0.1,
                    0.09
                ],
                [
                    17.75,
                    17.84,
                    17.62,
                    17.87,
                    20.0,
                    0,
                    0.08,
                    0.12,
                    0.08
                ],
                [
                    17.88,
                    18.0,
                    17.81,
                    18.03,
                    41.0,
                    0,
                    0.1,
                    0.12,
                    0.07
                ],
                [
                    18.09,
                    17.83,
                    17.73,
                    18.09,
                    22.0,
                    0,
                    0.08,
                    0.1,
                    0.06
                ],
                [
                    17.82,
                    17.73,
                    17.66,
                    17.88,
                    10.0,
                    0,
                    0.07,
                    0.08,
                    0.05
                ],
                [
                    17.8,
                    17.78,
                    17.71,
                    17.83,
                    9.0,
                    0,
                    0.08,
                    0.08,
                    0.04
                ],
                [
                    17.73,
                    17.64,
                    17.56,
                    17.83,
                    12.0,
                    0,
                    0.07,
                    0.06,
                    0.03
                ],
                [
                    17.76,
                    17.8,
                    17.59,
                    17.87,
                    11.0,
                    0,
                    0.08,
                    0.06,
                    0.02
                ],
                [
                    17.75,
                    17.77,
                    17.65,
                    17.84,
                    9.0,
                    0,
                    0.04,
                    0.03,
                    0.01
                ],
                [
                    17.58,
                    17.32,
                    17.29,
                    17.79,
                    16.0,
                    0,
                    -0.02,
                    -0.01,
                    0.0
                ],
                [
                    17.33,
                    17.38,
                    17.29,
                    17.5,
                    10.0,
                    0,
                    -0.01,
                    0.0,
                    0.0
                ],
                [
                    17.25,
                    17.39,
                    17.25,
                    17.46,
                    18.0,
                    0,
                    0.0,
                    0.01,
                    0.0
                ],
                [
                    17.26,
                    17.4,
                    17.26,
                    17.46,
                    22.0,
                    0,
                    0.01,
                    0.01,
                    0.0
                ],
                [
                    17.38,
                    17.5,
                    17.37,
                    17.67,
                    13.0,
                    0,
                    0.03,
                    0.02,
                    0.0
                ],
                [
                    17.62,
                    17.51,
                    17.42,
                    17.63,
                    15.0,
                    0,
                    0.03,
                    0.01,
                    -0.0
                ],
                [
                    17.53,
                    17.54,
                    17.5,
                    17.7,
                    11.0,
                    0,
                    0.02,
                    0.0,
                    -0.01
                ],
                [
                    17.5,
                    17.5,
                    17.46,
                    17.6,
                    10.0,
                    0,
                    -0.01,
                    -0.01,
                    -0.01
                ],
                [
                    17.52,
                    17.26,
                    17.24,
                    17.53,
                    16.0,
                    0,
                    -0.04,
                    -0.03,
                    -0.01
                ],
                [
                    17.26,
                    17.25,
                    17.18,
                    17.38,
                    60.0,
                    0,
                    -0.03,
                    -0.02,
                    -0.0
                ],
                [
                    17.25,
                    17.28,
                    17.18,
                    17.33,
                    19.0,
                    0,
                    -0.01,
                    -0.0,
                    0.0
                ],
                [
                    17.25,
                    17.29,
                    17.21,
                    17.32,
                    13.0,
                    0,
                    0.02,
                    0.01,
                    0.0
                ],
                [
                    17.31,
                    17.45,
                    17.27,
                    17.49,
                    21.0,
                    0,
                    0.07,
                    0.04,
                    0.0
                ],
                [
                    17.47,
                    17.5,
                    17.39,
                    17.55,
                    17.0,
                    0,
                    0.11,
                    0.04,
                    -0.01
                ],
                [
                    17.5,
                    17.63,
                    17.49,
                    17.66,
                    10.0,
                    0,
                    0.14,
                    0.05,
                    -0.03
                ],
                [
                    17.63,
                    17.72,
                    17.63,
                    17.92,
                    17.0,
                    0,
                    0.16,
                    0.03,
                    -0.05
                ],
                [
                    17.79,
                    17.56,
                    17.45,
                    17.79,
                    18.0,
                    0,
                    0.14,
                    0.0,
                    -0.07
                ],
                [
                    17.53,
                    17.42,
                    17.31,
                    17.54,
                    20.0,
                    0,
                    0.14,
                    -0.02,
                    -0.09
                ],
                [
                    17.41,
                    17.51,
                    17.35,
                    17.52,
                    15.0,
                    0,
                    0.16,
                    -0.03,
                    -0.11
                ],
                [
                    17.5,
                    17.39,
                    17.35,
                    17.51,
                    15.0,
                    0,
                    0.16,
                    -0.05,
                    -0.13
                ],
                [
                    17.49,
                    17.48,
                    17.4,
                    17.55,
                    16.0,
                    0,
                    0.17,
                    -0.07,
                    -0.15
                ],
                [
                    17.48,
                    17.71,
                    17.46,
                    17.75,
                    25.0,
                    0,
                    0.16,
                    -0.1,
                    -0.18
                ],
                [
                    17.13,
                    17.05,
                    17.02,
                    17.39,
                    28.0,
                    0,
                    0.07,
                    -0.17,
                    -0.2
                ],
                [
                    17.07,
                    17.09,
                    17.0,
                    17.16,
                    12.0,
                    0,
                    0.08,
                    -0.17,
                    -0.21
                ],
                [
                    17.08,
                    17.14,
                    17.08,
                    17.17,
                    11.0,
                    0,
                    0.09,
                    -0.18,
                    -0.22
                ],
                [
                    17.15,
                    17.26,
                    17.13,
                    17.49,
                    24.0,
                    0,
                    0.1,
                    -0.19,
                    -0.23
                ],
                [
                    17.26,
                    17.12,
                    17.09,
                    17.33,
                    13.0,
                    0,
                    0.07,
                    -0.21,
                    -0.25
                ],
                [
                    17.1,
                    17.07,
                    17.02,
                    17.14,
                    11.0,
                    0,
                    0.06,
                    -0.23,
                    -0.26
                ],
                [
                    17.07,
                    17.24,
                    17.07,
                    17.27,
                    14.0,
                    0,
                    0.07,
                    -0.23,
                    -0.27
                ],
                [
                    17.25,
                    17.08,
                    17.03,
                    17.25,
                    10.0,
                    0,
                    0.04,
                    -0.26,
                    -0.28
                ],
                [
                    17.09,
                    17.12,
                    17.01,
                    17.18,
                    8.0,
                    0,
                    0.04,
                    -0.26,
                    -0.28
                ],
                [
                    17.05,
                    17.17,
                    17.05,
                    17.2,
                    11.0,
                    0,
                    0.04,
                    -0.27,
                    -0.29
                ],
                [
                    17.2,
                    17.37,
                    16.89,
                    17.38,
                    32.0,
                    0,
                    0.02,
                    -0.28,
                    -0.29
                ],
                [
                    17.19,
                    17.14,
                    17.09,
                    17.29,
                    19.0,
                    0,
                    -0.04,
                    -0.32,
                    -0.3
                ],
                [
                    17.15,
                    17.16,
                    17.04,
                    17.23,
                    12.0,
                    0,
                    -0.08,
                    -0.33,
                    -0.29
                ],
                [
                    17.15,
                    17.18,
                    17.1,
                    17.24,
                    19.0,
                    0,
                    -0.13,
                    -0.34,
                    -0.28
                ],
                [
                    17.21,
                    17.15,
                    17.12,
                    17.25,
                    9.0,
                    0,
                    -0.19,
                    -0.36,
                    -0.26
                ],
                [
                    17.08,
                    17.07,
                    17.01,
                    17.16,
                    9.0,
                    0,
                    -0.25,
                    -0.36,
                    -0.24
                ],
                [
                    17.11,
                    17.06,
                    16.98,
                    17.12,
                    11.0,
                    1,
                    -0.29,
                    -0.35,
                    -0.2
                ],
                [
                    17.06,
                    17.1,
                    17.05,
                    17.15,
                    16.0,
                    0,
                    -0.33,
                    -0.32,
                    -0.16
                ],
                [
                    17.14,
                    17.13,
                    17.07,
                    17.15,
                    13.0,
                    0,
                    -0.35,
                    -0.29,
                    -0.11
                ],
                [
                    17.13,
                    17.17,
                    17.1,
                    17.2,
                    25.0,
                    0,
                    -0.35,
                    -0.24,
                    -0.06
                ],
                [
                    17.17,
                    17.28,
                    17.15,
                    17.29,
                    18.0,
                    0,
                    -0.31,
                    -0.17,
                    -0.01
                ],
                [
                    17.3,
                    17.45,
                    17.26,
                    17.87,
                    31.0,
                    0,
                    -0.24,
                    -0.09,
                    0.03
                ],
                [
                    17.51,
                    17.99,
                    17.47,
                    18.0,
                    44.0,
                    0,
                    -0.14,
                    -0.0,
                    0.07
                ],
                [
                    18.1,
                    18.42,
                    18.02,
                    18.99,
                    81.0,
                    0,
                    -0.09,
                    0.04,
                    0.09
                ],
                [
                    18.64,
                    18.31,
                    18.12,
                    18.87,
                    60.0,
                    0,
                    -0.1,
                    0.05,
                    0.1
                ],
                [
                    18.43,
                    18.4,
                    18.31,
                    18.68,
                    21.0,
                    0,
                    -0.08,
                    0.08,
                    0.11
                ],
                [
                    18.33,
                    18.23,
                    18.13,
                    18.65,
                    32.0,
                    0,
                    -0.07,
                    0.09,
                    0.13
                ],
                [
                    18.34,
                    18.62,
                    18.31,
                    18.75,
                    39.0,
                    0,
                    0.0,
                    0.14,
                    0.14
                ],
                [
                    18.62,
                    18.69,
                    18.51,
                    18.8,
                    20.0,
                    0,
                    0.01,
                    0.14,
                    0.13
                ],
                [
                    18.61,
                    18.66,
                    18.52,
                    19.0,
                    28.0,
                    0,
                    0.01,
                    0.14,
                    0.13
                ],
                [
                    18.66,
                    18.62,
                    18.43,
                    18.7,
                    19.0,
                    0,
                    0.0,
                    0.13,
                    0.13
                ],
                [
                    18.57,
                    18.51,
                    18.19,
                    18.64,
                    19.0,
                    0,
                    -0.0,
                    0.13,
                    0.13
                ],
                [
                    18.49,
                    18.55,
                    18.44,
                    18.6,
                    16.0,
                    0,
                    0.01,
                    0.13,
                    0.13
                ],
                [
                    18.46,
                    18.27,
                    18.03,
                    18.48,
                    20.0,
                    0,
                    0.01,
                    0.13,
                    0.13
                ],
                [
                    18.24,
                    18.44,
                    18.23,
                    18.52,
                    19.0,
                    0,
                    0.07,
                    0.17,
                    0.13
                ],
                [
                    18.36,
                    18.63,
                    18.36,
                    18.76,
                    15.0,
                    0,
                    0.13,
                    0.18,
                    0.12
                ],
                [
                    18.6,
                    18.62,
                    18.55,
                    18.78,
                    15.0,
                    0,
                    0.16,
                    0.18,
                    0.1
                ],
                [
                    18.52,
                    18.68,
                    18.48,
                    18.72,
                    17.0,
                    0,
                    0.19,
                    0.17,
                    0.08
                ],
                [
                    18.68,
                    18.75,
                    18.57,
                    18.82,
                    19.0,
                    0,
                    0.2,
                    0.15,
                    0.05
                ],
                [
                    18.75,
                    18.51,
                    18.43,
                    18.78,
                    17.0,
                    0,
                    0.18,
                    0.11,
                    0.02
                ],
                [
                    18.51,
                    18.56,
                    18.4,
                    18.62,
                    17.0,
                    0,
                    0.17,
                    0.08,
                    -0.0
                ],
                [
                    18.58,
                    18.53,
                    18.48,
                    18.63,
                    8.0,
                    0,
                    0.13,
                    0.04,
                    -0.03
                ],
                [
                    18.52,
                    18.33,
                    18.31,
                    18.57,
                    8.0,
                    0,
                    0.06,
                    -0.02,
                    -0.05
                ],
                [
                    18.16,
                    17.9,
                    17.81,
                    18.18,
                    28.0,
                    0,
                    -0.02,
                    -0.07,
                    -0.06
                ],
                [
                    17.91,
                    17.91,
                    17.9,
                    18.08,
                    13.0,
                    0,
                    -0.05,
                    -0.08,
                    -0.05
                ],
                [
                    17.99,
                    17.54,
                    17.48,
                    17.99,
                    22.0,
                    0,
                    -0.09,
                    -0.09,
                    -0.05
                ],
                [
                    17.55,
                    17.81,
                    17.55,
                    17.88,
                    16.0,
                    0,
                    -0.06,
                    -0.06,
                    -0.03
                ],
                [
                    17.8,
                    17.74,
                    17.67,
                    17.85,
                    10.0,
                    0,
                    -0.06,
                    -0.05,
                    -0.02
                ],
                [
                    17.75,
                    17.88,
                    17.75,
                    17.95,
                    7.0,
                    0,
                    -0.03,
                    -0.03,
                    -0.02
                ],
                [
                    17.99,
                    17.97,
                    17.88,
                    18.17,
                    12.0,
                    0,
                    -0.02,
                    -0.02,
                    -0.01
                ],
                [
                    17.99,
                    17.98,
                    17.93,
                    18.09,
                    13.0,
                    0,
                    -0.01,
                    -0.01,
                    -0.01
                ],
                [
                    17.91,
                    18.0,
                    17.85,
                    18.09,
                    14.0,
                    0,
                    -0.0,
                    -0.01,
                    -0.01
                ],
                [
                    17.97,
                    18.07,
                    17.94,
                    18.1,
                    10.0,
                    0,
                    0.0,
                    -0.01,
                    -0.01
                ],
                [
                    18.06,
                    17.89,
                    17.83,
                    18.06,
                    10.0,
                    0,
                    -0.0,
                    -0.01,
                    -0.01
                ],
                [
                    17.96,
                    18.0,
                    17.92,
                    18.07,
                    10.0,
                    0,
                    0.03,
                    0.01,
                    -0.01
                ],
                [
                    17.96,
                    18.0,
                    17.95,
                    18.1,
                    8.0,
                    0,
                    0.06,
                    0.02,
                    -0.01
                ],
                [
                    18.03,
                    18.3,
                    18.03,
                    18.38,
                    19.0,
                    0,
                    0.11,
                    0.04,
                    -0.02
                ],
                [
                    18.33,
                    18.33,
                    18.26,
                    18.49,
                    12.0,
                    0,
                    0.1,
                    0.02,
                    -0.04
                ],
                [
                    18.28,
                    18.15,
                    18.1,
                    18.31,
                    10.0,
                    0,
                    0.07,
                    -0.02,
                    -0.05
                ],
                [
                    18.15,
                    18.09,
                    18.05,
                    18.21,
                    10.0,
                    0,
                    0.06,
                    -0.03,
                    -0.06
                ],
                [
                    18.1,
                    18.1,
                    18.0,
                    18.15,
                    12.0,
                    0,
                    0.04,
                    -0.05,
                    -0.07
                ],
                [
                    18.07,
                    17.86,
                    17.83,
                    18.1,
                    12.0,
                    0,
                    0.01,
                    -0.07,
                    -0.08
                ],
                [
                    17.86,
                    17.93,
                    17.84,
                    17.99,
                    14.0,
                    0,
                    0.03,
                    -0.07,
                    -0.08
                ],
                [
                    17.93,
                    17.88,
                    17.83,
                    18.05,
                    11.0,
                    0,
                    0.03,
                    -0.07,
                    -0.08
                ],
                [
                    17.9,
                    17.89,
                    17.83,
                    17.98,
                    12.0,
                    0,
                    0.05,
                    -0.06,
                    -0.09
                ],
                [
                    17.91,
                    17.91,
                    17.82,
                    17.93,
                    12.0,
                    0,
                    0.07,
                    -0.06,
                    -0.09
                ],
                [
                    17.93,
                    18.31,
                    17.86,
                    18.42,
                    29.0,
                    0,
                    0.11,
                    -0.05,
                    -0.1
                ],
                [
                    18.31,
                    18.13,
                    18.09,
                    18.46,
                    19.0,
                    0,
                    0.06,
                    -0.09,
                    -0.12
                ],
                [
                    18.12,
                    17.97,
                    17.95,
                    18.15,
                    14.0,
                    0,
                    0.02,
                    -0.12,
                    -0.13
                ],
                [
                    18.06,
                    17.81,
                    17.77,
                    18.06,
                    21.0,
                    0,
                    -0.01,
                    -0.13,
                    -0.13
                ],
                [
                    17.8,
                    17.9,
                    17.8,
                    18.05,
                    20.0,
                    0,
                    -0.01,
                    -0.13,
                    -0.13
                ],
                [
                    17.87,
                    17.86,
                    17.72,
                    17.96,
                    12.0,
                    0,
                    -0.02,
                    -0.14,
                    -0.13
                ],
                [
                    17.87,
                    17.98,
                    17.79,
                    17.99,
                    18.0,
                    0,
                    -0.03,
                    -0.14,
                    -0.12
                ],
                [
                    17.86,
                    17.84,
                    17.76,
                    17.94,
                    30.0,
                    0,
                    -0.06,
                    -0.15,
                    -0.12
                ],
                [
                    17.83,
                    17.93,
                    17.79,
                    17.97,
                    27.0,
                    0,
                    -0.07,
                    -0.14,
                    -0.11
                ],
                [
                    17.9,
                    17.91,
                    17.87,
                    18.0,
                    26.0,
                    0,
                    -0.09,
                    -0.15,
                    -0.1
                ],
                [
                    17.91,
                    17.89,
                    17.85,
                    17.93,
                    20.0,
                    0,
                    -0.11,
                    -0.14,
                    -0.09
                ],
                [
                    17.92,
                    17.99,
                    17.89,
                    18.06,
                    26.0,
                    0,
                    -0.12,
                    -0.13,
                    -0.07
                ],
                [
                    18.0,
                    17.89,
                    17.77,
                    18.08,
                    34.0,
                    0,
                    -0.15,
                    -0.13,
                    -0.06
                ],
                [
                    17.95,
                    18.0,
                    17.94,
                    18.11,
                    27.0,
                    0,
                    -0.15,
                    -0.11,
                    -0.03
                ],
                [
                    17.95,
                    18.02,
                    17.93,
                    18.08,
                    27.0,
                    0,
                    -0.17,
                    -0.1,
                    -0.01
                ],
                [
                    18.0,
                    18.04,
                    17.95,
                    18.25,
                    35.0,
                    0,
                    -0.18,
                    -0.08,
                    0.01
                ],
                [
                    18.1,
                    18.18,
                    18.03,
                    18.24,
                    25.0,
                    0,
                    -0.18,
                    -0.06,
                    0.04
                ],
                [
                    18.23,
                    18.12,
                    18.05,
                    18.29,
                    23.0,
                    0,
                    -0.21,
                    -0.04,
                    0.06
                ],
                [
                    18.11,
                    18.12,
                    18.01,
                    18.14,
                    27.0,
                    0,
                    -0.21,
                    -0.01,
                    0.09
                ],
                [
                    18.12,
                    18.1,
                    18.03,
                    18.16,
                    18.0,
                    0,
                    -0.19,
                    0.03,
                    0.12
                ],
                [
                    18.08,
                    18.34,
                    18.08,
                    18.68,
                    41.0,
                    0,
                    -0.13,
                    0.08,
                    0.15
                ],
                [
                    18.37,
                    18.37,
                    18.28,
                    18.49,
                    52.0,
                    0,
                    -0.09,
                    0.12,
                    0.17
                ],
                [
                    18.4,
                    18.84,
                    18.37,
                    18.9,
                    66.0,
                    0,
                    -0.02,
                    0.17,
                    0.18
                ],
                [
                    18.77,
                    18.74,
                    18.61,
                    18.97,
                    26.0,
                    0,
                    -0.02,
                    0.17,
                    0.18
                ],
                [
                    18.8,
                    18.99,
                    18.66,
                    19.02,
                    40.0,
                    0,
                    -0.01,
                    0.18,
                    0.19
                ],
                [
                    19.1,
                    18.65,
                    18.52,
                    19.2,
                    85.0,
                    0,
                    -0.06,
                    0.16,
                    0.19
                ],
                [
                    18.65,
                    18.75,
                    18.51,
                    18.76,
                    49.0,
                    0,
                    -0.06,
                    0.17,
                    0.2
                ],
                [
                    18.76,
                    18.55,
                    18.47,
                    18.82,
                    39.0,
                    0,
                    -0.08,
                    0.17,
                    0.21
                ],
                [
                    18.55,
                    18.49,
                    18.41,
                    18.64,
                    53.0,
                    0,
                    -0.06,
                    0.19,
                    0.22
                ],
                [
                    18.53,
                    18.49,
                    18.24,
                    18.54,
                    48.0,
                    0,
                    -0.02,
                    0.21,
                    0.23
                ],
                [
                    18.39,
                    18.66,
                    18.34,
                    18.67,
                    50.0,
                    0,
                    0.03,
                    0.25,
                    0.23
                ],
                [
                    18.66,
                    18.6,
                    18.57,
                    18.78,
                    31.0,
                    0,
                    0.08,
                    0.26,
                    0.23
                ],
                [
                    18.65,
                    18.62,
                    18.58,
                    18.71,
                    12.0,
                    0,
                    0.15,
                    0.29,
                    0.21
                ],
                [
                    18.67,
                    18.76,
                    18.62,
                    18.88,
                    26.0,
                    0,
                    0.25,
                    0.32,
                    0.19
                ],
                [
                    18.76,
                    19.2,
                    18.75,
                    19.34,
                    62.0,
                    0,
                    0.34,
                    0.33,
                    0.16
                ],
                [
                    19.16,
                    19.25,
                    18.9,
                    19.65,
                    79.0,
                    1,
                    0.34,
                    0.28,
                    0.11
                ],
                [
                    19.09,
                    18.88,
                    18.81,
                    19.2,
                    24.0,
                    0,
                    0.27,
                    0.2,
                    0.06
                ],
                [
                    18.8,
                    18.82,
                    18.8,
                    19.14,
                    32.0,
                    0,
                    0.23,
                    0.13,
                    0.02
                ],
                [
                    18.73,
                    18.24,
                    18.2,
                    18.73,
                    36.0,
                    0,
                    0.13,
                    0.05,
                    -0.01
                ],
                [
                    18.24,
                    18.18,
                    18.12,
                    18.4,
                    24.0,
                    0,
                    0.1,
                    0.02,
                    -0.03
                ],
                [
                    18.15,
                    18.01,
                    17.93,
                    18.18,
                    24.0,
                    0,
                    0.06,
                    -0.02,
                    -0.05
                ],
                [
                    17.99,
                    17.79,
                    17.7,
                    17.99,
                    29.0,
                    1,
                    0.02,
                    -0.05,
                    -0.05
                ],
                [
                    17.83,
                    17.81,
                    17.77,
                    17.98,
                    30.0,
                    0,
                    0.0,
                    -0.05,
                    -0.06
                ],
                [
                    17.85,
                    17.72,
                    17.65,
                    17.85,
                    21.0,
                    0,
                    -0.03,
                    -0.07,
                    -0.06
                ],
                [
                    17.77,
                    17.6,
                    17.54,
                    17.77,
                    18.0,
                    0,
                    -0.04,
                    -0.08,
                    -0.05
                ],
                [
                    17.56,
                    17.75,
                    17.39,
                    17.77,
                    16.0,
                    0,
                    -0.04,
                    -0.07,
                    -0.05
                ],
                [
                    17.73,
                    17.71,
                    17.65,
                    17.82,
                    10.0,
                    0,
                    -0.06,
                    -0.07,
                    -0.04
                ],
                [
                    17.72,
                    17.62,
                    17.49,
                    17.77,
                    26.0,
                    0,
                    -0.09,
                    -0.07,
                    -0.03
                ],
                [
                    17.6,
                    17.49,
                    17.43,
                    17.62,
                    28.0,
                    0,
                    -0.09,
                    -0.06,
                    -0.02
                ],
                [
                    17.53,
                    17.6,
                    17.47,
                    17.61,
                    22.0,
                    0,
                    -0.05,
                    -0.03,
                    -0.01
                ],
                [
                    17.6,
                    17.92,
                    17.57,
                    17.98,
                    28.0,
                    1,
                    0.0,
                    0.0,
                    0.0
                ]
            ],
            "markPoint": {
                "label": {
                    "show": true,
                    "position": "inside",
                    "color": "#fff",
                    "margin": 8
                },
                "data": [
                    {
                        "name": "\u6700\u5927\u503c",
                        "type": "max"
                    },
                    {
                        "name": "\u6700\u5c0f\u503c",
                        "type": "min"
                    }
                ]
            },
            "markLine": {
                "silent": false,
                "symbol": [
                    "circle",
                    "none"
                ],
                "precision": 2,
                "label": {
                    "show": true,
                    "position": "middle",
                    "color": "blue",
                    "margin": 8,
                    "fontSize": 15
                },
                "data": [
                    [
                        {
                            "xAxis": 0,
                            "yAxis": 18.79,
                            "value": 134.0
                        },
                        {
                            "xAxis": 0,
                            "yAxis": 18.79
                        }
                    ],
                    [
                        {
                            "xAxis": 0,
                            "yAxis": 18.79,
                            "value": "134.0 M"
                        },
                        {
                            "xAxis": 0,
                            "yAxis": 18.79
                        }
                    ],
                    [
                        {
                            "xAxis": 0,
                            "yAxis": 18.79,
                            "value": 939.0
                        },
                        {
                            "xAxis": 16,
                            "yAxis": 19.98
                        }
                    ],
                    [
                        {
                            "xAxis": 16,
                            "yAxis": 19.98,
                            "value": "404.0 M"
                        },
                        {
                            "xAxis": 16,
                            "yAxis": 19.98
                        }
                    ],
                    [
                        {
                            "xAxis": 16,
                            "yAxis": 19.98,
                            "value": 1421.0
                        },
                        {
                            "xAxis": 40,
                            "yAxis": 16.66
                        }
                    ],
                    [
                        {
                            "xAxis": 40,
                            "yAxis": 16.66,
                            "value": "228.0 M"
                        },
                        {
                            "xAxis": 40,
                            "yAxis": 16.66
                        }
                    ],
                    [
                        {
                            "xAxis": 40,
                            "yAxis": 16.66,
                            "value": 490.0
                        },
                        {
                            "xAxis": 46,
                            "yAxis": 18.45
                        }
                    ],
                    [
                        {
                            "xAxis": 46,
                            "yAxis": 18.45,
                            "value": "304.0 M"
                        },
                        {
                            "xAxis": 46,
                            "yAxis": 18.45
                        }
                    ],
                    [
                        {
                            "xAxis": 46,
                            "yAxis": 18.45,
                            "value": 523.0
                        },
                        {
                            "xAxis": 53,
                            "yAxis": 18.3
                        }
                    ],
                    [
                        {
                            "xAxis": 53,
                            "yAxis": 18.3,
                            "value": "142.0 M"
                        },
                        {
                            "xAxis": 53,
                            "yAxis": 18.3
                        }
                    ],
                    [
                        {
                            "xAxis": 53,
                            "yAxis": 18.3,
                            "value": 143.0
                        },
                        {
                            "xAxis": 55,
                            "yAxis": 17.16
                        }
                    ],
                    [
                        {
                            "xAxis": 55,
                            "yAxis": 17.16,
                            "value": "74.0 M"
                        },
                        {
                            "xAxis": 55,
                            "yAxis": 17.16
                        }
                    ],
                    [
                        {
                            "xAxis": 55,
                            "yAxis": 17.16,
                            "value": 408.0
                        },
                        {
                            "xAxis": 64,
                            "yAxis": 15.45
                        }
                    ],
                    [
                        {
                            "xAxis": 64,
                            "yAxis": 15.45,
                            "value": "68.0 M"
                        },
                        {
                            "xAxis": 64,
                            "yAxis": 15.45
                        }
                    ],
                    [
                        {
                            "xAxis": 64,
                            "yAxis": 15.45,
                            "value": 603.0
                        },
                        {
                            "xAxis": 85,
                            "yAxis": 15.11
                        }
                    ],
                    [
                        {
                            "xAxis": 85,
                            "yAxis": 15.11,
                            "value": "76.0 M"
                        },
                        {
                            "xAxis": 85,
                            "yAxis": 15.11
                        }
                    ],
                    [
                        {
                            "xAxis": 85,
                            "yAxis": 15.11,
                            "value": 83.0
                        },
                        {
                            "xAxis": 88,
                            "yAxis": 14.21
                        }
                    ],
                    [
                        {
                            "xAxis": 88,
                            "yAxis": 14.21,
                            "value": "102.0 M"
                        },
                        {
                            "xAxis": 88,
                            "yAxis": 14.21
                        }
                    ],
                    [
                        {
                            "xAxis": 88,
                            "yAxis": 14.21,
                            "value": 219.0
                        },
                        {
                            "xAxis": 93,
                            "yAxis": 15.19
                        }
                    ],
                    [
                        {
                            "xAxis": 93,
                            "yAxis": 15.19,
                            "value": "106.0 M"
                        },
                        {
                            "xAxis": 93,
                            "yAxis": 15.19
                        }
                    ],
                    [
                        {
                            "xAxis": 93,
                            "yAxis": 15.19,
                            "value": 53.0
                        },
                        {
                            "xAxis": 94,
                            "yAxis": 16.02
                        }
                    ],
                    [
                        {
                            "xAxis": 94,
                            "yAxis": 16.02,
                            "value": "328.0 M"
                        },
                        {
                            "xAxis": 94,
                            "yAxis": 16.02
                        }
                    ],
                    [
                        {
                            "xAxis": 94,
                            "yAxis": 16.02,
                            "value": 1011.0
                        },
                        {
                            "xAxis": 117,
                            "yAxis": 16.05
                        }
                    ],
                    [
                        {
                            "xAxis": 117,
                            "yAxis": 16.05,
                            "value": "58.0 M"
                        },
                        {
                            "xAxis": 117,
                            "yAxis": 16.05
                        }
                    ],
                    [
                        {
                            "xAxis": 117,
                            "yAxis": 16.05,
                            "value": 511.0
                        },
                        {
                            "xAxis": 129,
                            "yAxis": 17.96
                        }
                    ],
                    [
                        {
                            "xAxis": 129,
                            "yAxis": 17.96,
                            "value": "78.0 M"
                        },
                        {
                            "xAxis": 129,
                            "yAxis": 17.96
                        }
                    ],
                    [
                        {
                            "xAxis": 129,
                            "yAxis": 17.96,
                            "value": 1331.0
                        },
                        {
                            "xAxis": 199,
                            "yAxis": 16.98
                        }
                    ],
                    [
                        {
                            "xAxis": 199,
                            "yAxis": 16.98,
                            "value": "22.0 M"
                        },
                        {
                            "xAxis": 199,
                            "yAxis": 16.98
                        }
                    ],
                    [
                        {
                            "xAxis": 199,
                            "yAxis": 16.98,
                            "value": 2103.0
                        },
                        {
                            "xAxis": 284,
                            "yAxis": 19.65
                        }
                    ],
                    [
                        {
                            "xAxis": 284,
                            "yAxis": 19.65,
                            "value": "158.0 M"
                        },
                        {
                            "xAxis": 284,
                            "yAxis": 19.65
                        }
                    ],
                    [
                        {
                            "xAxis": 284,
                            "yAxis": 19.65,
                            "value": 219.0
                        },
                        {
                            "xAxis": 290,
                            "yAxis": 17.7
                        }
                    ],
                    [
                        {
                            "xAxis": 290,
                            "yAxis": 17.7,
                            "value": "58.0 M"
                        },
                        {
                            "xAxis": 290,
                            "yAxis": 17.7
                        }
                    ],
                    [
                        {
                            "xAxis": 290,
                            "yAxis": 17.7,
                            "value": 200.0
                        },
                        {
                            "xAxis": 299,
                            "yAxis": 17.98
                        }
                    ],
                    [
                        {
                            "xAxis": 299,
                            "yAxis": 17.98,
                            "value": "56.0 M"
                        },
                        {
                            "xAxis": 299,
                            "yAxis": 17.98
                        }
                    ]
                ]
            },
            "itemStyle": {
                "color": "#ef232a",
                "color0": "#14b143",
                "borderColor": "#ef232a",
                "borderColor0": "#14b143"
            },
            "markArea": {
                "silent": true,
                "label": {
                    "show": true,
                    "margin": 8
                },
                "data": [
                    [
                        {
                            "xAxis": 0,
                            "yAxis": 18.79,
                            "value": 134.0
                        },
                        {
                            "xAxis": 0,
                            "yAxis": 18.79
                        }
                    ],
                    [
                        {
                            "xAxis": 0,
                            "yAxis": 18.79,
                            "value": "134.0 M"
                        },
                        {
                            "xAxis": 0,
                            "yAxis": 18.79
                        }
                    ],
                    [
                        {
                            "xAxis": 0,
                            "yAxis": 18.79,
                            "value": 939.0
                        },
                        {
                            "xAxis": 16,
                            "yAxis": 19.98
                        }
                    ],
                    [
                        {
                            "xAxis": 16,
                            "yAxis": 19.98,
                            "value": "404.0 M"
                        },
                        {
                            "xAxis": 16,
                            "yAxis": 19.98
                        }
                    ],
                    [
                        {
                            "xAxis": 16,
                            "yAxis": 19.98,
                            "value": 1421.0
                        },
                        {
                            "xAxis": 40,
                            "yAxis": 16.66
                        }
                    ],
                    [
                        {
                            "xAxis": 40,
                            "yAxis": 16.66,
                            "value": "228.0 M"
                        },
                        {
                            "xAxis": 40,
                            "yAxis": 16.66
                        }
                    ],
                    [
                        {
                            "xAxis": 40,
                            "yAxis": 16.66,
                            "value": 490.0
                        },
                        {
                            "xAxis": 46,
                            "yAxis": 18.45
                        }
                    ],
                    [
                        {
                            "xAxis": 46,
                            "yAxis": 18.45,
                            "value": "304.0 M"
                        },
                        {
                            "xAxis": 46,
                            "yAxis": 18.45
                        }
                    ],
                    [
                        {
                            "xAxis": 46,
                            "yAxis": 18.45,
                            "value": 523.0
                        },
                        {
                            "xAxis": 53,
                            "yAxis": 18.3
                        }
                    ],
                    [
                        {
                            "xAxis": 53,
                            "yAxis": 18.3,
                            "value": "142.0 M"
                        },
                        {
                            "xAxis": 53,
                            "yAxis": 18.3
                        }
                    ],
                    [
                        {
                            "xAxis": 53,
                            "yAxis": 18.3,
                            "value": 143.0
                        },
                        {
                            "xAxis": 55,
                            "yAxis": 17.16
                        }
                    ],
                    [
                        {
                            "xAxis": 55,
                            "yAxis": 17.16,
                            "value": "74.0 M"
                        },
                        {
                            "xAxis": 55,
                            "yAxis": 17.16
                        }
                    ],
                    [
                        {
                            "xAxis": 55,
                            "yAxis": 17.16,
                            "value": 408.0
                        },
                        {
                            "xAxis": 64,
                            "yAxis": 15.45
                        }
                    ],
                    [
                        {
                            "xAxis": 64,
                            "yAxis": 15.45,
                            "value": "68.0 M"
                        },
                        {
                            "xAxis": 64,
                            "yAxis": 15.45
                        }
                    ],
                    [
                        {
                            "xAxis": 64,
                            "yAxis": 15.45,
                            "value": 603.0
                        },
                        {
                            "xAxis": 85,
                            "yAxis": 15.11
                        }
                    ],
                    [
                        {
                            "xAxis": 85,
                            "yAxis": 15.11,
                            "value": "76.0 M"
                        },
                        {
                            "xAxis": 85,
                            "yAxis": 15.11
                        }
                    ],
                    [
                        {
                            "xAxis": 85,
                            "yAxis": 15.11,
                            "value": 83.0
                        },
                        {
                            "xAxis": 88,
                            "yAxis": 14.21
                        }
                    ],
                    [
                        {
                            "xAxis": 88,
                            "yAxis": 14.21,
                            "value": "102.0 M"
                        },
                        {
                            "xAxis": 88,
                            "yAxis": 14.21
                        }
                    ],
                    [
                        {
                            "xAxis": 88,
                            "yAxis": 14.21,
                            "value": 219.0
                        },
                        {
                            "xAxis": 93,
                            "yAxis": 15.19
                        }
                    ],
                    [
                        {
                            "xAxis": 93,
                            "yAxis": 15.19,
                            "value": "106.0 M"
                        },
                        {
                            "xAxis": 93,
                            "yAxis": 15.19
                        }
                    ],
                    [
                        {
                            "xAxis": 93,
                            "yAxis": 15.19,
                            "value": 53.0
                        },
                        {
                            "xAxis": 94,
                            "yAxis": 16.02
                        }
                    ],
                    [
                        {
                            "xAxis": 94,
                            "yAxis": 16.02,
                            "value": "328.0 M"
                        },
                        {
                            "xAxis": 94,
                            "yAxis": 16.02
                        }
                    ],
                    [
                        {
                            "xAxis": 94,
                            "yAxis": 16.02,
                            "value": 1011.0
                        },
                        {
                            "xAxis": 117,
                            "yAxis": 16.05
                        }
                    ],
                    [
                        {
                            "xAxis": 117,
                            "yAxis": 16.05,
                            "value": "58.0 M"
                        },
                        {
                            "xAxis": 117,
                            "yAxis": 16.05
                        }
                    ],
                    [
                        {
                            "xAxis": 117,
                            "yAxis": 16.05,
                            "value": 511.0
                        },
                        {
                            "xAxis": 129,
                            "yAxis": 17.96
                        }
                    ],
                    [
                        {
                            "xAxis": 129,
                            "yAxis": 17.96,
                            "value": "78.0 M"
                        },
                        {
                            "xAxis": 129,
                            "yAxis": 17.96
                        }
                    ],
                    [
                        {
                            "xAxis": 129,
                            "yAxis": 17.96,
                            "value": 1331.0
                        },
                        {
                            "xAxis": 199,
                            "yAxis": 16.98
                        }
                    ],
                    [
                        {
                            "xAxis": 199,
                            "yAxis": 16.98,
                            "value": "22.0 M"
                        },
                        {
                            "xAxis": 199,
                            "yAxis": 16.98
                        }
                    ],
                    [
                        {
                            "xAxis": 199,
                            "yAxis": 16.98,
                            "value": 2103.0
                        },
                        {
                            "xAxis": 284,
                            "yAxis": 19.65
                        }
                    ],
                    [
                        {
                            "xAxis": 284,
                            "yAxis": 19.65,
                            "value": "158.0 M"
                        },
                        {
                            "xAxis": 284,
                            "yAxis": 19.65
                        }
                    ],
                    [
                        {
                            "xAxis": 284,
                            "yAxis": 19.65,
                            "value": 219.0
                        },
                        {
                            "xAxis": 290,
                            "yAxis": 17.7
                        }
                    ],
                    [
                        {
                            "xAxis": 290,
                            "yAxis": 17.7,
                            "value": "58.0 M"
                        },
                        {
                            "xAxis": 290,
                            "yAxis": 17.7
                        }
                    ],
                    [
                        {
                            "xAxis": 290,
                            "yAxis": 17.7,
                            "value": 200.0
                        },
                        {
                            "xAxis": 299,
                            "yAxis": 17.98
                        }
                    ],
                    [
                        {
                            "xAxis": 299,
                            "yAxis": 17.98,
                            "value": "56.0 M"
                        },
                        {
                            "xAxis": 299,
                            "yAxis": 17.98
                        }
                    ]
                ]
            },
            "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
            }
        },
        {
            "type": "line",
            "name": "MA5",
            "connectNulls": false,
            "xAxisIndex": 0,
            "yAxisIndex": 0,
            "symbolSize": 4,
            "showSymbol": true,
            "smooth": true,
            "clip": true,
            "step": false,
            "data": [
                [
                    "2015-10-16",
                    "-"
                ],
                [
                    "2015-10-19",
                    "-"
                ],
                [
                    "2015-10-20",
                    "-"
                ],
                [
                    "2015-10-21",
                    "-"
                ],
                [
                    "2015-10-22",
                    "-"
                ],
                [
                    "2015-10-23",
                    18.33
                ],
                [
                    "2015-10-26",
                    18.29
                ],
                [
                    "2015-10-27",
                    18.26
                ],
                [
                    "2015-10-28",
                    18.09
                ],
                [
                    "2015-10-29",
                    17.99
                ],
                [
                    "2015-10-30",
                    17.94
                ],
                [
                    "2015-11-02",
                    17.89
                ],
                [
                    "2015-11-03",
                    17.87
                ],
                [
                    "2015-11-04",
                    17.97
                ],
                [
                    "2015-11-05",
                    18.12
                ],
                [
                    "2015-11-06",
                    18.27
                ],
                [
                    "2015-11-09",
                    18.52
                ],
                [
                    "2015-11-10",
                    18.67
                ],
                [
                    "2015-11-11",
                    18.68
                ],
                [
                    "2015-11-12",
                    18.62
                ],
                [
                    "2015-11-13",
                    18.51
                ],
                [
                    "2015-11-16",
                    18.32
                ],
                [
                    "2015-11-17",
                    18.22
                ],
                [
                    "2015-11-18",
                    18.16
                ],
                [
                    "2015-11-19",
                    18.15
                ],
                [
                    "2015-11-20",
                    18.15
                ],
                [
                    "2015-11-23",
                    18.17
                ],
                [
                    "2015-11-24",
                    18.12
                ],
                [
                    "2015-11-25",
                    18.03
                ],
                [
                    "2015-11-26",
                    17.9
                ],
                [
                    "2015-11-27",
                    17.67
                ],
                [
                    "2015-11-30",
                    17.48
                ],
                [
                    "2015-12-01",
                    17.32
                ],
                [
                    "2015-12-02",
                    17.36
                ],
                [
                    "2015-12-03",
                    17.41
                ],
                [
                    "2015-12-04",
                    17.45
                ],
                [
                    "2015-12-07",
                    17.49
                ],
                [
                    "2015-12-08",
                    17.55
                ],
                [
                    "2015-12-09",
                    17.45
                ],
                [
                    "2015-12-10",
                    17.34
                ],
                [
                    "2015-12-11",
                    17.28
                ],
                [
                    "2015-12-14",
                    17.21
                ],
                [
                    "2015-12-15",
                    17.13
                ],
                [
                    "2015-12-16",
                    17.05
                ],
                [
                    "2015-12-17",
                    17.01
                ],
                [
                    "2015-12-18",
                    17.13
                ],
                [
                    "2015-12-21",
                    17.37
                ],
                [
                    "2015-12-22",
                    17.62
                ],
                [
                    "2015-12-23",
                    17.86
                ],
                [
                    "2015-12-24",
                    18.07
                ],
                [
                    "2015-12-25",
                    18.23
                ],
                [
                    "2015-12-28",
                    18.15
                ],
                [
                    "2015-12-29",
                    18.09
                ],
                [
                    "2015-12-30",
                    18.1
                ],
                [
                    "2015-12-31",
                    18.07
                ],
                [
                    "2016-01-04",
                    17.86
                ],
                [
                    "2016-01-05",
                    17.74
                ],
                [
                    "2016-01-06",
                    17.61
                ],
                [
                    "2016-01-07",
                    17.3
                ],
                [
                    "2016-01-08",
                    17.06
                ],
                [
                    "2016-01-11",
                    16.81
                ],
                [
                    "2016-01-12",
                    16.56
                ],
                [
                    "2016-01-13",
                    16.27
                ],
                [
                    "2016-01-14",
                    16.12
                ],
                [
                    "2016-01-15",
                    15.85
                ],
                [
                    "2016-01-18",
                    15.73
                ],
                [
                    "2016-01-19",
                    15.67
                ],
                [
                    "2016-01-20",
                    15.6
                ],
                [
                    "2016-01-21",
                    15.49
                ],
                [
                    "2016-01-22",
                    15.45
                ],
                [
                    "2016-01-25",
                    15.46
                ],
                [
                    "2016-01-26",
                    15.29
                ],
                [
                    "2016-01-27",
                    15.18
                ],
                [
                    "2016-01-28",
                    15.07
                ],
                [
                    "2016-01-29",
                    15.01
                ],
                [
                    "2016-02-01",
                    14.86
                ],
                [
                    "2016-02-02",
                    14.86
                ],
                [
                    "2016-02-03",
                    14.79
                ],
                [
                    "2016-02-04",
                    14.82
                ],
                [
                    "2016-02-05",
                    14.8
                ],
                [
                    "2016-02-15",
                    14.78
                ],
                [
                    "2016-02-16",
                    14.8
                ],
                [
                    "2016-02-17",
                    14.87
                ],
                [
                    "2016-02-18",
                    14.88
                ],
                [
                    "2016-02-19",
                    14.86
                ],
                [
                    "2016-02-22",
                    14.93
                ],
                [
                    "2016-02-23",
                    14.9
                ],
                [
                    "2016-02-24",
                    14.86
                ],
                [
                    "2016-02-25",
                    14.73
                ],
                [
                    "2016-02-26",
                    14.67
                ],
                [
                    "2016-02-29",
                    14.58
                ],
                [
                    "2016-03-01",
                    14.54
                ],
                [
                    "2016-03-02",
                    14.57
                ],
                [
                    "2016-03-03",
                    14.75
                ],
                [
                    "2016-03-04",
                    15.06
                ],
                [
                    "2016-03-07",
                    15.3
                ],
                [
                    "2016-03-08",
                    15.56
                ],
                [
                    "2016-03-09",
                    15.78
                ],
                [
                    "2016-03-10",
                    15.88
                ],
                [
                    "2016-03-11",
                    15.84
                ],
                [
                    "2016-03-14",
                    15.83
                ],
                [
                    "2016-03-15",
                    15.81
                ],
                [
                    "2016-03-16",
                    15.88
                ],
                [
                    "2016-03-17",
                    16.0
                ],
                [
                    "2016-03-18",
                    16.08
                ],
                [
                    "2016-03-21",
                    16.18
                ],
                [
                    "2016-03-22",
                    16.25
                ],
                [
                    "2016-03-23",
                    16.2
                ],
                [
                    "2016-03-24",
                    16.17
                ],
                [
                    "2016-03-25",
                    16.17
                ],
                [
                    "2016-03-28",
                    16.09
                ],
                [
                    "2016-03-29",
                    16.01
                ],
                [
                    "2016-03-30",
                    16.02
                ],
                [
                    "2016-03-31",
                    16.02
                ],
                [
                    "2016-04-01",
                    16.05
                ],
                [
                    "2016-04-05",
                    16.15
                ],
                [
                    "2016-04-06",
                    16.24
                ],
                [
                    "2016-04-07",
                    16.21
                ],
                [
                    "2016-04-08",
                    16.23
                ],
                [
                    "2016-04-11",
                    16.23
                ],
                [
                    "2016-04-12",
                    16.22
                ],
                [
                    "2016-04-13",
                    16.27
                ],
                [
                    "2016-04-14",
                    16.34
                ],
                [
                    "2016-04-15",
                    16.49
                ],
                [
                    "2016-04-18",
                    16.64
                ],
                [
                    "2016-04-19",
                    16.81
                ],
                [
                    "2016-04-20",
                    16.98
                ],
                [
                    "2016-04-21",
                    17.22
                ],
                [
                    "2016-04-22",
                    17.41
                ],
                [
                    "2016-04-25",
                    17.58
                ],
                [
                    "2016-04-26",
                    17.74
                ],
                [
                    "2016-04-27",
                    17.85
                ],
                [
                    "2016-04-28",
                    17.89
                ],
                [
                    "2016-04-29",
                    17.86
                ],
                [
                    "2016-05-03",
                    17.82
                ],
                [
                    "2016-05-04",
                    17.77
                ],
                [
                    "2016-05-05",
                    17.72
                ],
                [
                    "2016-05-06",
                    17.61
                ],
                [
                    "2016-05-09",
                    17.52
                ],
                [
                    "2016-05-10",
                    17.39
                ],
                [
                    "2016-05-11",
                    17.29
                ],
                [
                    "2016-05-12",
                    17.25
                ],
                [
                    "2016-05-13",
                    17.3
                ],
                [
                    "2016-05-16",
                    17.34
                ],
                [
                    "2016-05-17",
                    17.43
                ],
                [
                    "2016-05-18",
                    17.57
                ],
                [
                    "2016-05-19",
                    17.64
                ],
                [
                    "2016-05-20",
                    17.7
                ],
                [
                    "2016-05-23",
                    17.7
                ],
                [
                    "2016-05-24",
                    17.67
                ],
                [
                    "2016-05-25",
                    17.62
                ],
                [
                    "2016-05-26",
                    17.59
                ],
                [
                    "2016-05-27",
                    17.55
                ],
                [
                    "2016-05-30",
                    17.61
                ],
                [
                    "2016-05-31",
                    17.75
                ],
                [
                    "2016-06-01",
                    17.8
                ],
                [
                    "2016-06-02",
                    17.81
                ],
                [
                    "2016-06-03",
                    17.84
                ],
                [
                    "2016-06-06",
                    17.8
                ],
                [
                    "2016-06-07",
                    17.76
                ],
                [
                    "2016-06-08",
                    17.74
                ],
                [
                    "2016-06-13",
                    17.66
                ],
                [
                    "2016-06-14",
                    17.58
                ],
                [
                    "2016-06-15",
                    17.53
                ],
                [
                    "2016-06-16",
                    17.45
                ],
                [
                    "2016-06-17",
                    17.4
                ],
                [
                    "2016-06-20",
                    17.44
                ],
                [
                    "2016-06-21",
                    17.47
                ],
                [
                    "2016-06-22",
                    17.49
                ],
                [
                    "2016-06-23",
                    17.46
                ],
                [
                    "2016-06-24",
                    17.41
                ],
                [
                    "2016-06-27",
                    17.37
                ],
                [
                    "2016-06-28",
                    17.32
                ],
                [
                    "2016-06-29",
                    17.31
                ],
                [
                    "2016-06-30",
                    17.35
                ],
                [
                    "2016-07-01",
                    17.43
                ],
                [
                    "2016-07-04",
                    17.52
                ],
                [
                    "2016-07-05",
                    17.57
                ],
                [
                    "2016-07-06",
                    17.57
                ],
                [
                    "2016-07-07",
                    17.57
                ],
                [
                    "2016-07-08",
                    17.52
                ],
                [
                    "2016-07-11",
                    17.47
                ],
                [
                    "2016-07-12",
                    17.5
                ],
                [
                    "2016-07-13",
                    17.43
                ],
                [
                    "2016-07-14",
                    17.34
                ],
                [
                    "2016-07-15",
                    17.29
                ],
                [
                    "2016-07-18",
                    17.25
                ],
                [
                    "2016-07-19",
                    17.13
                ],
                [
                    "2016-07-20",
                    17.14
                ],
                [
                    "2016-07-21",
                    17.17
                ],
                [
                    "2016-07-22",
                    17.15
                ],
                [
                    "2016-07-25",
                    17.13
                ],
                [
                    "2016-07-26",
                    17.14
                ],
                [
                    "2016-07-27",
                    17.2
                ],
                [
                    "2016-07-28",
                    17.18
                ],
                [
                    "2016-07-29",
                    17.19
                ],
                [
                    "2016-08-01",
                    17.2
                ],
                [
                    "2016-08-02",
                    17.2
                ],
                [
                    "2016-08-03",
                    17.14
                ],
                [
                    "2016-08-04",
                    17.12
                ],
                [
                    "2016-08-05",
                    17.11
                ],
                [
                    "2016-08-08",
                    17.1
                ],
                [
                    "2016-08-09",
                    17.11
                ],
                [
                    "2016-08-10",
                    17.15
                ],
                [
                    "2016-08-11",
                    17.23
                ],
                [
                    "2016-08-12",
                    17.4
                ],
                [
                    "2016-08-15",
                    17.66
                ],
                [
                    "2016-08-16",
                    17.89
                ],
                [
                    "2016-08-17",
                    18.11
                ],
                [
                    "2016-08-18",
                    18.27
                ],
                [
                    "2016-08-19",
                    18.4
                ],
                [
                    "2016-08-22",
                    18.45
                ],
                [
                    "2016-08-23",
                    18.52
                ],
                [
                    "2016-08-24",
                    18.56
                ],
                [
                    "2016-08-25",
                    18.62
                ],
                [
                    "2016-08-26",
                    18.61
                ],
                [
                    "2016-08-29",
                    18.52
                ],
                [
                    "2016-08-30",
                    18.48
                ],
                [
                    "2016-08-31",
                    18.48
                ],
                [
                    "2016-09-01",
                    18.5
                ],
                [
                    "2016-09-02",
                    18.53
                ],
                [
                    "2016-09-05",
                    18.62
                ],
                [
                    "2016-09-06",
                    18.64
                ],
                [
                    "2016-09-07",
                    18.62
                ],
                [
                    "2016-09-08",
                    18.61
                ],
                [
                    "2016-09-09",
                    18.54
                ],
                [
                    "2016-09-12",
                    18.37
                ],
                [
                    "2016-09-13",
                    18.25
                ],
                [
                    "2016-09-14",
                    18.04
                ],
                [
                    "2016-09-19",
                    17.9
                ],
                [
                    "2016-09-20",
                    17.78
                ],
                [
                    "2016-09-21",
                    17.78
                ],
                [
                    "2016-09-22",
                    17.79
                ],
                [
                    "2016-09-23",
                    17.88
                ],
                [
                    "2016-09-26",
                    17.91
                ],
                [
                    "2016-09-27",
                    17.98
                ],
                [
                    "2016-09-28",
                    17.98
                ],
                [
                    "2016-09-29",
                    17.99
                ],
                [
                    "2016-09-30",
                    17.99
                ],
                [
                    "2016-10-10",
                    18.05
                ],
                [
                    "2016-10-11",
                    18.1
                ],
                [
                    "2016-10-12",
                    18.16
                ],
                [
                    "2016-10-13",
                    18.17
                ],
                [
                    "2016-10-14",
                    18.19
                ],
                [
                    "2016-10-17",
                    18.11
                ],
                [
                    "2016-10-18",
                    18.03
                ],
                [
                    "2016-10-19",
                    17.97
                ],
                [
                    "2016-10-20",
                    17.93
                ],
                [
                    "2016-10-21",
                    17.89
                ],
                [
                    "2016-10-24",
                    17.98
                ],
                [
                    "2016-10-25",
                    18.02
                ],
                [
                    "2016-10-26",
                    18.04
                ],
                [
                    "2016-10-27",
                    18.03
                ],
                [
                    "2016-10-28",
                    18.02
                ],
                [
                    "2016-10-31",
                    17.93
                ],
                [
                    "2016-11-01",
                    17.9
                ],
                [
                    "2016-11-02",
                    17.88
                ],
                [
                    "2016-11-03",
                    17.9
                ],
                [
                    "2016-11-04",
                    17.9
                ],
                [
                    "2016-11-07",
                    17.91
                ],
                [
                    "2016-11-08",
                    17.91
                ],
                [
                    "2016-11-09",
                    17.92
                ],
                [
                    "2016-11-10",
                    17.94
                ],
                [
                    "2016-11-11",
                    17.96
                ],
                [
                    "2016-11-14",
                    17.99
                ],
                [
                    "2016-11-15",
                    18.03
                ],
                [
                    "2016-11-16",
                    18.07
                ],
                [
                    "2016-11-17",
                    18.1
                ],
                [
                    "2016-11-18",
                    18.11
                ],
                [
                    "2016-11-21",
                    18.17
                ],
                [
                    "2016-11-22",
                    18.21
                ],
                [
                    "2016-11-23",
                    18.35
                ],
                [
                    "2016-11-24",
                    18.48
                ],
                [
                    "2016-11-25",
                    18.66
                ],
                [
                    "2016-11-28",
                    18.72
                ],
                [
                    "2016-11-29",
                    18.79
                ],
                [
                    "2016-11-30",
                    18.74
                ],
                [
                    "2016-12-01",
                    18.69
                ],
                [
                    "2016-12-02",
                    18.59
                ],
                [
                    "2016-12-05",
                    18.59
                ],
                [
                    "2016-12-06",
                    18.56
                ],
                [
                    "2016-12-07",
                    18.57
                ],
                [
                    "2016-12-08",
                    18.63
                ],
                [
                    "2016-12-09",
                    18.77
                ],
                [
                    "2016-12-12",
                    18.89
                ],
                [
                    "2016-12-13",
                    18.94
                ],
                [
                    "2016-12-14",
                    18.98
                ],
                [
                    "2016-12-15",
                    18.88
                ],
                [
                    "2016-12-16",
                    18.67
                ],
                [
                    "2016-12-19",
                    18.43
                ],
                [
                    "2016-12-20",
                    18.21
                ],
                [
                    "2016-12-21",
                    18.01
                ],
                [
                    "2016-12-22",
                    17.9
                ],
                [
                    "2016-12-23",
                    17.79
                ],
                [
                    "2016-12-26",
                    17.73
                ],
                [
                    "2016-12-27",
                    17.72
                ],
                [
                    "2016-12-28",
                    17.68
                ],
                [
                    "2016-12-29",
                    17.63
                ],
                [
                    "2016-12-30",
                    17.63
                ],
                [
                    "2017-01-03",
                    17.67
                ]
            ],
            "hoverAnimation": true,
            "label": {
                "show": false,
                "margin": 8
            },
            "logBase": 10,
            "seriesLayoutBy": "column",
            "lineStyle": {
                "show": true,
                "width": 1,
                "opacity": 0.5,
                "curveness": 0,
                "type": "solid"
            },
            "areaStyle": {
                "opacity": 0
            },
            "zlevel": 0,
            "z": 0
        },
        {
            "type": "bar",
            "name": "Volumn",
            "xAxisIndex": 1,
            "yAxisIndex": 1,
            "legendHoverLink": true,
            "data": [
                67,
                55,
                37,
                89,
                43,
                46,
                65,
                37,
                35,
                27,
                43,
                27,
                34,
                62,
                177,
                95,
                202,
                85,
                50,
                43,
                35,
                34,
                58,
                47,
                32,
                36,
                47,
                62,
                66,
                63,
                67,
                55,
                39,
                102,
                71,
                51,
                43,
                45,
                44,
                44,
                114,
                94,
                46,
                30,
                50,
                156,
                152,
                94,
                108,
                37,
                48,
                48,
                36,
                71,
                72,
                37,
                51,
                31,
                19,
                60,
                65,
                46,
                57,
                42,
                34,
                26,
                38,
                38,
                35,
                30,
                21,
                30,
                51,
                25,
                36,
                27,
                18,
                23,
                22,
                16,
                19,
                26,
                38,
                28,
                22,
                38,
                24,
                21,
                51,
                28,
                48,
                32,
                60,
                53,
                164,
                41,
                45,
                74,
                19,
                32,
                31,
                35,
                123,
                46,
                59,
                50,
                33,
                19,
                23,
                15,
                22,
                19,
                29,
                25,
                38,
                39,
                30,
                29,
                22,
                31,
                17,
                40,
                22,
                58,
                50,
                30,
                78,
                79,
                55,
                39,
                39,
                25,
                28,
                19,
                35,
                24,
                20,
                29,
                23,
                28,
                20,
                26,
                23,
                37,
                13,
                46,
                17,
                14,
                16,
                8,
                10,
                12,
                7,
                20,
                41,
                22,
                10,
                9,
                12,
                11,
                9,
                16,
                10,
                18,
                22,
                13,
                15,
                11,
                10,
                16,
                60,
                19,
                13,
                21,
                17,
                10,
                17,
                18,
                20,
                15,
                15,
                16,
                25,
                28,
                12,
                11,
                24,
                13,
                11,
                14,
                10,
                8,
                11,
                32,
                19,
                12,
                19,
                9,
                9,
                11,
                16,
                13,
                25,
                18,
                31,
                44,
                81,
                60,
                21,
                32,
                39,
                20,
                28,
                19,
                19,
                16,
                20,
                19,
                15,
                15,
                17,
                19,
                17,
                17,
                8,
                8,
                28,
                13,
                22,
                16,
                10,
                7,
                12,
                13,
                14,
                10,
                10,
                10,
                8,
                19,
                12,
                10,
                10,
                12,
                12,
                14,
                11,
                12,
                12,
                29,
                19,
                14,
                21,
                20,
                12,
                18,
                30,
                27,
                26,
                20,
                26,
                34,
                27,
                27,
                35,
                25,
                23,
                27,
                18,
                41,
                52,
                66,
                26,
                40,
                85,
                49,
                39,
                53,
                48,
                50,
                31,
                12,
                26,
                62,
                79,
                24,
                32,
                36,
                24,
                24,
                29,
                30,
                21,
                18,
                16,
                10,
                26,
                28,
                22,
                28
            ],
            "realtimeSort": false,
            "showBackground": false,
            "stackStrategy": "samesign",
            "cursor": "pointer",
            "barMinHeight": 0,
            "barCategoryGap": "20%",
            "barGap": "30%",
            "large": false,
            "largeThreshold": 400,
            "seriesLayoutBy": "column",
            "datasetIndex": 0,
            "clip": true,
            "zlevel": 0,
            "z": 2,
            "label": {
                "show": false,
                "margin": 8
            },
            "itemStyle": {
                "color":                 function(params) {                    var colorList;                    if (barData[params.dataIndex][1] > barData[params.dataIndex][0]) {                        colorList = '#ef232a';                    } else {                        colorList = '#14b143';                    }                    return colorList;                }                
            }
        },
        {
            "type": "bar",
            "name": "MACD",
            "xAxisIndex": 2,
            "yAxisIndex": 2,
            "legendHoverLink": true,
            "data": [
                0.04,
                -0.0,
                0.01,
                0.03,
                -0.06,
                -0.1,
                -0.15,
                -0.19,
                -0.24,
                -0.24,
                -0.22,
                -0.2,
                -0.12,
                -0.0,
                0.07,
                0.12,
                0.16,
                0.09,
                0.06,
                0.05,
                0.05,
                0.07,
                0.11,
                0.13,
                0.15,
                0.13,
                0.11,
                0.03,
                -0.03,
                -0.1,
                -0.16,
                -0.12,
                -0.09,
                -0.01,
                -0.09,
                -0.18,
                -0.19,
                -0.23,
                -0.29,
                -0.37,
                -0.44,
                -0.44,
                -0.44,
                -0.4,
                -0.3,
                -0.14,
                0.02,
                0.08,
                0.13,
                0.19,
                0.26,
                0.27,
                0.36,
                0.43,
                0.4,
                0.34,
                0.37,
                0.37,
                0.3,
                0.29,
                0.2,
                0.2,
                0.2,
                0.2,
                0.17,
                0.21,
                0.25,
                0.23,
                0.21,
                0.21,
                0.2,
                0.12,
                0.13,
                0.1,
                0.13,
                0.1,
                0.11,
                0.1,
                0.13,
                0.12,
                0.11,
                0.14,
                0.12,
                0.07,
                0.03,
                0.01,
                -0.09,
                -0.17,
                -0.27,
                -0.26,
                -0.25,
                -0.21,
                -0.13,
                -0.05,
                0.06,
                0.04,
                0.05,
                0.03,
                -0.02,
                0.01,
                0.03,
                0.1,
                0.17,
                0.14,
                0.13,
                0.12,
                0.1,
                0.08,
                0.04,
                0.0,
                -0.06,
                -0.06,
                -0.03,
                -0.07,
                -0.08,
                -0.13,
                -0.2,
                -0.26,
                -0.28,
                -0.3,
                -0.31,
                -0.3,
                -0.27,
                -0.2,
                -0.16,
                -0.12,
                -0.04,
                0.05,
                0.09,
                0.11,
                0.12,
                0.12,
                0.11,
                0.08,
                0.05,
                0.02,
                -0.03,
                -0.1,
                -0.13,
                -0.15,
                -0.12,
                -0.07,
                -0.06,
                -0.06,
                -0.03,
                0.01,
                -0.01,
                -0.03,
                -0.09,
                -0.09,
                -0.03,
                0.0,
                0.03,
                0.08,
                0.1,
                0.08,
                0.07,
                0.08,
                0.07,
                0.08,
                0.04,
                -0.02,
                -0.01,
                0.0,
                0.01,
                0.03,
                0.03,
                0.02,
                -0.01,
                -0.04,
                -0.03,
                -0.01,
                0.02,
                0.07,
                0.11,
                0.14,
                0.16,
                0.14,
                0.14,
                0.16,
                0.16,
                0.17,
                0.16,
                0.07,
                0.08,
                0.09,
                0.1,
                0.07,
                0.06,
                0.07,
                0.04,
                0.04,
                0.04,
                0.02,
                -0.04,
                -0.08,
                -0.13,
                -0.19,
                -0.25,
                -0.29,
                -0.33,
                -0.35,
                -0.35,
                -0.31,
                -0.24,
                -0.14,
                -0.09,
                -0.1,
                -0.08,
                -0.07,
                0.0,
                0.01,
                0.01,
                0.0,
                -0.0,
                0.01,
                0.01,
                0.07,
                0.13,
                0.16,
                0.19,
                0.2,
                0.18,
                0.17,
                0.13,
                0.06,
                -0.02,
                -0.05,
                -0.09,
                -0.06,
                -0.06,
                -0.03,
                -0.02,
                -0.01,
                -0.0,
                0.0,
                -0.0,
                0.03,
                0.06,
                0.11,
                0.1,
                0.07,
                0.06,
                0.04,
                0.01,
                0.03,
                0.03,
                0.05,
                0.07,
                0.11,
                0.06,
                0.02,
                -0.01,
                -0.01,
                -0.02,
                -0.03,
                -0.06,
                -0.07,
                -0.09,
                -0.11,
                -0.12,
                -0.15,
                -0.15,
                -0.17,
                -0.18,
                -0.18,
                -0.21,
                -0.21,
                -0.19,
                -0.13,
                -0.09,
                -0.02,
                -0.02,
                -0.01,
                -0.06,
                -0.06,
                -0.08,
                -0.06,
                -0.02,
                0.03,
                0.08,
                0.15,
                0.25,
                0.34,
                0.34,
                0.27,
                0.23,
                0.13,
                0.1,
                0.06,
                0.02,
                0.0,
                -0.03,
                -0.04,
                -0.04,
                -0.06,
                -0.09,
                -0.09,
                -0.05,
                0.0
            ],
            "realtimeSort": false,
            "showBackground": false,
            "stackStrategy": "samesign",
            "cursor": "pointer",
            "barMinHeight": 0,
            "barCategoryGap": "20%",
            "barGap": "30%",
            "large": false,
            "largeThreshold": 400,
            "seriesLayoutBy": "column",
            "datasetIndex": 0,
            "clip": true,
            "zlevel": 0,
            "z": 2,
            "label": {
                "show": false,
                "margin": 8
            },
            "itemStyle": {
                "color":                         function(params) {                            var colorList;                            if (params.data >= 0) {                              colorList = '#ef232a';                            } else {                              colorList = '#14b143';                            }                            return colorList;                        }                        
            }
        },
        {
            "type": "line",
            "name": "DIF",
            "connectNulls": false,
            "xAxisIndex": 2,
            "yAxisIndex": 2,
            "symbolSize": 4,
            "showSymbol": true,
            "smooth": false,
            "clip": true,
            "step": false,
            "data": [
                [
                    "2015-10-16",
                    0.11
                ],
                [
                    "2015-10-19",
                    0.08
                ],
                [
                    "2015-10-20",
                    0.09
                ],
                [
                    "2015-10-21",
                    0.1
                ],
                [
                    "2015-10-22",
                    0.05
                ],
                [
                    "2015-10-23",
                    0.03
                ],
                [
                    "2015-10-26",
                    0.03
                ],
                [
                    "2015-10-27",
                    0.03
                ],
                [
                    "2015-10-28",
                    0.03
                ],
                [
                    "2015-10-29",
                    0.06
                ],
                [
                    "2015-10-30",
                    0.11
                ],
                [
                    "2015-11-02",
                    0.15
                ],
                [
                    "2015-11-03",
                    0.22
                ],
                [
                    "2015-11-04",
                    0.3
                ],
                [
                    "2015-11-05",
                    0.33
                ],
                [
                    "2015-11-06",
                    0.35
                ],
                [
                    "2015-11-09",
                    0.35
                ],
                [
                    "2015-11-10",
                    0.29
                ],
                [
                    "2015-11-11",
                    0.27
                ],
                [
                    "2015-11-12",
                    0.25
                ],
                [
                    "2015-11-13",
                    0.24
                ],
                [
                    "2015-11-16",
                    0.25
                ],
                [
                    "2015-11-17",
                    0.25
                ],
                [
                    "2015-11-18",
                    0.25
                ],
                [
                    "2015-11-19",
                    0.24
                ],
                [
                    "2015-11-20",
                    0.21
                ],
                [
                    "2015-11-23",
                    0.18
                ],
                [
                    "2015-11-24",
                    0.13
                ],
                [
                    "2015-11-25",
                    0.09
                ],
                [
                    "2015-11-26",
                    0.06
                ],
                [
                    "2015-11-27",
                    0.05
                ],
                [
                    "2015-11-30",
                    0.09
                ],
                [
                    "2015-12-01",
                    0.12
                ],
                [
                    "2015-12-02",
                    0.17
                ],
                [
                    "2015-12-03",
                    0.14
                ],
                [
                    "2015-12-04",
                    0.1
                ],
                [
                    "2015-12-07",
                    0.12
                ],
                [
                    "2015-12-08",
                    0.13
                ],
                [
                    "2015-12-09",
                    0.13
                ],
                [
                    "2015-12-10",
                    0.13
                ],
                [
                    "2015-12-11",
                    0.15
                ],
                [
                    "2015-12-14",
                    0.21
                ],
                [
                    "2015-12-15",
                    0.28
                ],
                [
                    "2015-12-16",
                    0.36
                ],
                [
                    "2015-12-17",
                    0.47
                ],
                [
                    "2015-12-18",
                    0.59
                ],
                [
                    "2015-12-21",
                    0.69
                ],
                [
                    "2015-12-22",
                    0.72
                ],
                [
                    "2015-12-23",
                    0.73
                ],
                [
                    "2015-12-24",
                    0.74
                ],
                [
                    "2015-12-25",
                    0.75
                ],
                [
                    "2015-12-28",
                    0.72
                ],
                [
                    "2015-12-29",
                    0.73
                ],
                [
                    "2015-12-30",
                    0.71
                ],
                [
                    "2015-12-31",
                    0.63
                ],
                [
                    "2016-01-04",
                    0.55
                ],
                [
                    "2016-01-05",
                    0.51
                ],
                [
                    "2016-01-06",
                    0.46
                ],
                [
                    "2016-01-07",
                    0.37
                ],
                [
                    "2016-01-08",
                    0.32
                ],
                [
                    "2016-01-11",
                    0.24
                ],
                [
                    "2016-01-12",
                    0.21
                ],
                [
                    "2016-01-13",
                    0.18
                ],
                [
                    "2016-01-14",
                    0.16
                ],
                [
                    "2016-01-15",
                    0.11
                ],
                [
                    "2016-01-18",
                    0.1
                ],
                [
                    "2016-01-19",
                    0.09
                ],
                [
                    "2016-01-20",
                    0.05
                ],
                [
                    "2016-01-21",
                    0.0
                ],
                [
                    "2016-01-22",
                    -0.02
                ],
                [
                    "2016-01-25",
                    -0.06
                ],
                [
                    "2016-01-26",
                    -0.13
                ],
                [
                    "2016-01-27",
                    -0.14
                ],
                [
                    "2016-01-28",
                    -0.17
                ],
                [
                    "2016-01-29",
                    -0.17
                ],
                [
                    "2016-02-01",
                    -0.21
                ],
                [
                    "2016-02-02",
                    -0.21
                ],
                [
                    "2016-02-03",
                    -0.24
                ],
                [
                    "2016-02-04",
                    -0.24
                ],
                [
                    "2016-02-05",
                    -0.26
                ],
                [
                    "2016-02-15",
                    -0.28
                ],
                [
                    "2016-02-16",
                    -0.28
                ],
                [
                    "2016-02-17",
                    -0.31
                ],
                [
                    "2016-02-18",
                    -0.35
                ],
                [
                    "2016-02-19",
                    -0.38
                ],
                [
                    "2016-02-22",
                    -0.4
                ],
                [
                    "2016-02-23",
                    -0.45
                ],
                [
                    "2016-02-24",
                    -0.48
                ],
                [
                    "2016-02-25",
                    -0.5
                ],
                [
                    "2016-02-26",
                    -0.46
                ],
                [
                    "2016-02-29",
                    -0.41
                ],
                [
                    "2016-03-01",
                    -0.36
                ],
                [
                    "2016-03-02",
                    -0.29
                ],
                [
                    "2016-03-03",
                    -0.23
                ],
                [
                    "2016-03-04",
                    -0.17
                ],
                [
                    "2016-03-07",
                    -0.19
                ],
                [
                    "2016-03-08",
                    -0.19
                ],
                [
                    "2016-03-09",
                    -0.2
                ],
                [
                    "2016-03-10",
                    -0.23
                ],
                [
                    "2016-03-11",
                    -0.22
                ],
                [
                    "2016-03-14",
                    -0.2
                ],
                [
                    "2016-03-15",
                    -0.18
                ],
                [
                    "2016-03-16",
                    -0.16
                ],
                [
                    "2016-03-17",
                    -0.2
                ],
                [
                    "2016-03-18",
                    -0.22
                ],
                [
                    "2016-03-21",
                    -0.24
                ],
                [
                    "2016-03-22",
                    -0.27
                ],
                [
                    "2016-03-23",
                    -0.3
                ],
                [
                    "2016-03-24",
                    -0.33
                ],
                [
                    "2016-03-25",
                    -0.35
                ],
                [
                    "2016-03-28",
                    -0.38
                ],
                [
                    "2016-03-29",
                    -0.37
                ],
                [
                    "2016-03-30",
                    -0.35
                ],
                [
                    "2016-03-31",
                    -0.37
                ],
                [
                    "2016-04-01",
                    -0.36
                ],
                [
                    "2016-04-05",
                    -0.37
                ],
                [
                    "2016-04-06",
                    -0.39
                ],
                [
                    "2016-04-07",
                    -0.39
                ],
                [
                    "2016-04-08",
                    -0.37
                ],
                [
                    "2016-04-11",
                    -0.33
                ],
                [
                    "2016-04-12",
                    -0.3
                ],
                [
                    "2016-04-13",
                    -0.25
                ],
                [
                    "2016-04-14",
                    -0.19
                ],
                [
                    "2016-04-15",
                    -0.12
                ],
                [
                    "2016-04-18",
                    -0.07
                ],
                [
                    "2016-04-19",
                    -0.02
                ],
                [
                    "2016-04-20",
                    0.03
                ],
                [
                    "2016-04-21",
                    0.08
                ],
                [
                    "2016-04-22",
                    0.1
                ],
                [
                    "2016-04-25",
                    0.09
                ],
                [
                    "2016-04-26",
                    0.08
                ],
                [
                    "2016-04-27",
                    0.06
                ],
                [
                    "2016-04-28",
                    0.04
                ],
                [
                    "2016-04-29",
                    0.01
                ],
                [
                    "2016-05-03",
                    -0.01
                ],
                [
                    "2016-05-04",
                    -0.04
                ],
                [
                    "2016-05-05",
                    -0.06
                ],
                [
                    "2016-05-06",
                    -0.09
                ],
                [
                    "2016-05-09",
                    -0.1
                ],
                [
                    "2016-05-10",
                    -0.09
                ],
                [
                    "2016-05-11",
                    -0.05
                ],
                [
                    "2016-05-12",
                    -0.01
                ],
                [
                    "2016-05-13",
                    0.01
                ],
                [
                    "2016-05-16",
                    0.01
                ],
                [
                    "2016-05-17",
                    0.03
                ],
                [
                    "2016-05-18",
                    0.06
                ],
                [
                    "2016-05-19",
                    0.05
                ],
                [
                    "2016-05-20",
                    0.04
                ],
                [
                    "2016-05-23",
                    0.02
                ],
                [
                    "2016-05-24",
                    0.03
                ],
                [
                    "2016-05-25",
                    0.07
                ],
                [
                    "2016-05-26",
                    0.09
                ],
                [
                    "2016-05-27",
                    0.1
                ],
                [
                    "2016-05-30",
                    0.12
                ],
                [
                    "2016-05-31",
                    0.12
                ],
                [
                    "2016-06-01",
                    0.1
                ],
                [
                    "2016-06-02",
                    0.08
                ],
                [
                    "2016-06-03",
                    0.08
                ],
                [
                    "2016-06-06",
                    0.06
                ],
                [
                    "2016-06-07",
                    0.06
                ],
                [
                    "2016-06-08",
                    0.03
                ],
                [
                    "2016-06-13",
                    -0.01
                ],
                [
                    "2016-06-14",
                    0.0
                ],
                [
                    "2016-06-15",
                    0.01
                ],
                [
                    "2016-06-16",
                    0.01
                ],
                [
                    "2016-06-17",
                    0.02
                ],
                [
                    "2016-06-20",
                    0.01
                ],
                [
                    "2016-06-21",
                    0.0
                ],
                [
                    "2016-06-22",
                    -0.01
                ],
                [
                    "2016-06-23",
                    -0.03
                ],
                [
                    "2016-06-24",
                    -0.02
                ],
                [
                    "2016-06-27",
                    -0.0
                ],
                [
                    "2016-06-28",
                    0.01
                ],
                [
                    "2016-06-29",
                    0.04
                ],
                [
                    "2016-06-30",
                    0.04
                ],
                [
                    "2016-07-01",
                    0.05
                ],
                [
                    "2016-07-04",
                    0.03
                ],
                [
                    "2016-07-05",
                    0.0
                ],
                [
                    "2016-07-06",
                    -0.02
                ],
                [
                    "2016-07-07",
                    -0.03
                ],
                [
                    "2016-07-08",
                    -0.05
                ],
                [
                    "2016-07-11",
                    -0.07
                ],
                [
                    "2016-07-12",
                    -0.1
                ],
                [
                    "2016-07-13",
                    -0.17
                ],
                [
                    "2016-07-14",
                    -0.17
                ],
                [
                    "2016-07-15",
                    -0.18
                ],
                [
                    "2016-07-18",
                    -0.19
                ],
                [
                    "2016-07-19",
                    -0.21
                ],
                [
                    "2016-07-20",
                    -0.23
                ],
                [
                    "2016-07-21",
                    -0.23
                ],
                [
                    "2016-07-22",
                    -0.26
                ],
                [
                    "2016-07-25",
                    -0.26
                ],
                [
                    "2016-07-26",
                    -0.27
                ],
                [
                    "2016-07-27",
                    -0.28
                ],
                [
                    "2016-07-28",
                    -0.32
                ],
                [
                    "2016-07-29",
                    -0.33
                ],
                [
                    "2016-08-01",
                    -0.34
                ],
                [
                    "2016-08-02",
                    -0.36
                ],
                [
                    "2016-08-03",
                    -0.36
                ],
                [
                    "2016-08-04",
                    -0.35
                ],
                [
                    "2016-08-05",
                    -0.32
                ],
                [
                    "2016-08-08",
                    -0.29
                ],
                [
                    "2016-08-09",
                    -0.24
                ],
                [
                    "2016-08-10",
                    -0.17
                ],
                [
                    "2016-08-11",
                    -0.09
                ],
                [
                    "2016-08-12",
                    -0.0
                ],
                [
                    "2016-08-15",
                    0.04
                ],
                [
                    "2016-08-16",
                    0.05
                ],
                [
                    "2016-08-17",
                    0.08
                ],
                [
                    "2016-08-18",
                    0.09
                ],
                [
                    "2016-08-19",
                    0.14
                ],
                [
                    "2016-08-22",
                    0.14
                ],
                [
                    "2016-08-23",
                    0.14
                ],
                [
                    "2016-08-24",
                    0.13
                ],
                [
                    "2016-08-25",
                    0.13
                ],
                [
                    "2016-08-26",
                    0.13
                ],
                [
                    "2016-08-29",
                    0.13
                ],
                [
                    "2016-08-30",
                    0.17
                ],
                [
                    "2016-08-31",
                    0.18
                ],
                [
                    "2016-09-01",
                    0.18
                ],
                [
                    "2016-09-02",
                    0.17
                ],
                [
                    "2016-09-05",
                    0.15
                ],
                [
                    "2016-09-06",
                    0.11
                ],
                [
                    "2016-09-07",
                    0.08
                ],
                [
                    "2016-09-08",
                    0.04
                ],
                [
                    "2016-09-09",
                    -0.02
                ],
                [
                    "2016-09-12",
                    -0.07
                ],
                [
                    "2016-09-13",
                    -0.08
                ],
                [
                    "2016-09-14",
                    -0.09
                ],
                [
                    "2016-09-19",
                    -0.06
                ],
                [
                    "2016-09-20",
                    -0.05
                ],
                [
                    "2016-09-21",
                    -0.03
                ],
                [
                    "2016-09-22",
                    -0.02
                ],
                [
                    "2016-09-23",
                    -0.01
                ],
                [
                    "2016-09-26",
                    -0.01
                ],
                [
                    "2016-09-27",
                    -0.01
                ],
                [
                    "2016-09-28",
                    -0.01
                ],
                [
                    "2016-09-29",
                    0.01
                ],
                [
                    "2016-09-30",
                    0.02
                ],
                [
                    "2016-10-10",
                    0.04
                ],
                [
                    "2016-10-11",
                    0.02
                ],
                [
                    "2016-10-12",
                    -0.02
                ],
                [
                    "2016-10-13",
                    -0.03
                ],
                [
                    "2016-10-14",
                    -0.05
                ],
                [
                    "2016-10-17",
                    -0.07
                ],
                [
                    "2016-10-18",
                    -0.07
                ],
                [
                    "2016-10-19",
                    -0.07
                ],
                [
                    "2016-10-20",
                    -0.06
                ],
                [
                    "2016-10-21",
                    -0.06
                ],
                [
                    "2016-10-24",
                    -0.05
                ],
                [
                    "2016-10-25",
                    -0.09
                ],
                [
                    "2016-10-26",
                    -0.12
                ],
                [
                    "2016-10-27",
                    -0.13
                ],
                [
                    "2016-10-28",
                    -0.13
                ],
                [
                    "2016-10-31",
                    -0.14
                ],
                [
                    "2016-11-01",
                    -0.14
                ],
                [
                    "2016-11-02",
                    -0.15
                ],
                [
                    "2016-11-03",
                    -0.14
                ],
                [
                    "2016-11-04",
                    -0.15
                ],
                [
                    "2016-11-07",
                    -0.14
                ],
                [
                    "2016-11-08",
                    -0.13
                ],
                [
                    "2016-11-09",
                    -0.13
                ],
                [
                    "2016-11-10",
                    -0.11
                ],
                [
                    "2016-11-11",
                    -0.1
                ],
                [
                    "2016-11-14",
                    -0.08
                ],
                [
                    "2016-11-15",
                    -0.06
                ],
                [
                    "2016-11-16",
                    -0.04
                ],
                [
                    "2016-11-17",
                    -0.01
                ],
                [
                    "2016-11-18",
                    0.03
                ],
                [
                    "2016-11-21",
                    0.08
                ],
                [
                    "2016-11-22",
                    0.12
                ],
                [
                    "2016-11-23",
                    0.17
                ],
                [
                    "2016-11-24",
                    0.17
                ],
                [
                    "2016-11-25",
                    0.18
                ],
                [
                    "2016-11-28",
                    0.16
                ],
                [
                    "2016-11-29",
                    0.17
                ],
                [
                    "2016-11-30",
                    0.17
                ],
                [
                    "2016-12-01",
                    0.19
                ],
                [
                    "2016-12-02",
                    0.21
                ],
                [
                    "2016-12-05",
                    0.25
                ],
                [
                    "2016-12-06",
                    0.26
                ],
                [
                    "2016-12-07",
                    0.29
                ],
                [
                    "2016-12-08",
                    0.32
                ],
                [
                    "2016-12-09",
                    0.33
                ],
                [
                    "2016-12-12",
                    0.28
                ],
                [
                    "2016-12-13",
                    0.2
                ],
                [
                    "2016-12-14",
                    0.13
                ],
                [
                    "2016-12-15",
                    0.05
                ],
                [
                    "2016-12-16",
                    0.02
                ],
                [
                    "2016-12-19",
                    -0.02
                ],
                [
                    "2016-12-20",
                    -0.05
                ],
                [
                    "2016-12-21",
                    -0.05
                ],
                [
                    "2016-12-22",
                    -0.07
                ],
                [
                    "2016-12-23",
                    -0.08
                ],
                [
                    "2016-12-26",
                    -0.07
                ],
                [
                    "2016-12-27",
                    -0.07
                ],
                [
                    "2016-12-28",
                    -0.07
                ],
                [
                    "2016-12-29",
                    -0.06
                ],
                [
                    "2016-12-30",
                    -0.03
                ],
                [
                    "2017-01-03",
                    0.0
                ]
            ],
            "hoverAnimation": true,
            "label": {
                "show": false,
                "margin": 8
            },
            "logBase": 10,
            "seriesLayoutBy": "column",
            "lineStyle": {
                "show": true,
                "width": 1,
                "opacity": 1,
                "curveness": 0,
                "type": "solid"
            },
            "areaStyle": {
                "opacity": 0
            },
            "zlevel": 0,
            "z": 0
        },
        {
            "type": "line",
            "name": "DIF",
            "connectNulls": false,
            "xAxisIndex": 2,
            "yAxisIndex": 2,
            "symbolSize": 4,
            "showSymbol": true,
            "smooth": false,
            "clip": true,
            "step": false,
            "data": [
                [
                    "2015-10-16",
                    0.09
                ],
                [
                    "2015-10-19",
                    0.09
                ],
                [
                    "2015-10-20",
                    0.09
                ],
                [
                    "2015-10-21",
                    0.08
                ],
                [
                    "2015-10-22",
                    0.08
                ],
                [
                    "2015-10-23",
                    0.09
                ],
                [
                    "2015-10-26",
                    0.1
                ],
                [
                    "2015-10-27",
                    0.12
                ],
                [
                    "2015-10-28",
                    0.15
                ],
                [
                    "2015-10-29",
                    0.18
                ],
                [
                    "2015-10-30",
                    0.22
                ],
                [
                    "2015-11-02",
                    0.25
                ],
                [
                    "2015-11-03",
                    0.28
                ],
                [
                    "2015-11-04",
                    0.3
                ],
                [
                    "2015-11-05",
                    0.3
                ],
                [
                    "2015-11-06",
                    0.29
                ],
                [
                    "2015-11-09",
                    0.27
                ],
                [
                    "2015-11-10",
                    0.25
                ],
                [
                    "2015-11-11",
                    0.23
                ],
                [
                    "2015-11-12",
                    0.23
                ],
                [
                    "2015-11-13",
                    0.22
                ],
                [
                    "2015-11-16",
                    0.21
                ],
                [
                    "2015-11-17",
                    0.2
                ],
                [
                    "2015-11-18",
                    0.19
                ],
                [
                    "2015-11-19",
                    0.17
                ],
                [
                    "2015-11-20",
                    0.15
                ],
                [
                    "2015-11-23",
                    0.13
                ],
                [
                    "2015-11-24",
                    0.11
                ],
                [
                    "2015-11-25",
                    0.11
                ],
                [
                    "2015-11-26",
                    0.11
                ],
                [
                    "2015-11-27",
                    0.13
                ],
                [
                    "2015-11-30",
                    0.15
                ],
                [
                    "2015-12-01",
                    0.16
                ],
                [
                    "2015-12-02",
                    0.18
                ],
                [
                    "2015-12-03",
                    0.18
                ],
                [
                    "2015-12-04",
                    0.19
                ],
                [
                    "2015-12-07",
                    0.22
                ],
                [
                    "2015-12-08",
                    0.24
                ],
                [
                    "2015-12-09",
                    0.28
                ],
                [
                    "2015-12-10",
                    0.32
                ],
                [
                    "2015-12-11",
                    0.37
                ],
                [
                    "2015-12-14",
                    0.44
                ],
                [
                    "2015-12-15",
                    0.5
                ],
                [
                    "2015-12-16",
                    0.56
                ],
                [
                    "2015-12-17",
                    0.62
                ],
                [
                    "2015-12-18",
                    0.66
                ],
                [
                    "2015-12-21",
                    0.68
                ],
                [
                    "2015-12-22",
                    0.68
                ],
                [
                    "2015-12-23",
                    0.67
                ],
                [
                    "2015-12-24",
                    0.65
                ],
                [
                    "2015-12-25",
                    0.62
                ],
                [
                    "2015-12-28",
                    0.59
                ],
                [
                    "2015-12-29",
                    0.55
                ],
                [
                    "2015-12-30",
                    0.5
                ],
                [
                    "2015-12-31",
                    0.43
                ],
                [
                    "2016-01-04",
                    0.38
                ],
                [
                    "2016-01-05",
                    0.33
                ],
                [
                    "2016-01-06",
                    0.28
                ],
                [
                    "2016-01-07",
                    0.22
                ],
                [
                    "2016-01-08",
                    0.18
                ],
                [
                    "2016-01-11",
                    0.14
                ],
                [
                    "2016-01-12",
                    0.11
                ],
                [
                    "2016-01-13",
                    0.08
                ],
                [
                    "2016-01-14",
                    0.05
                ],
                [
                    "2016-01-15",
                    0.02
                ],
                [
                    "2016-01-18",
                    -0.0
                ],
                [
                    "2016-01-19",
                    -0.03
                ],
                [
                    "2016-01-20",
                    -0.07
                ],
                [
                    "2016-01-21",
                    -0.1
                ],
                [
                    "2016-01-22",
                    -0.13
                ],
                [
                    "2016-01-25",
                    -0.16
                ],
                [
                    "2016-01-26",
                    -0.19
                ],
                [
                    "2016-01-27",
                    -0.2
                ],
                [
                    "2016-01-28",
                    -0.22
                ],
                [
                    "2016-01-29",
                    -0.24
                ],
                [
                    "2016-02-01",
                    -0.26
                ],
                [
                    "2016-02-02",
                    -0.27
                ],
                [
                    "2016-02-03",
                    -0.29
                ],
                [
                    "2016-02-04",
                    -0.3
                ],
                [
                    "2016-02-05",
                    -0.32
                ],
                [
                    "2016-02-15",
                    -0.34
                ],
                [
                    "2016-02-16",
                    -0.35
                ],
                [
                    "2016-02-17",
                    -0.37
                ],
                [
                    "2016-02-18",
                    -0.39
                ],
                [
                    "2016-02-19",
                    -0.4
                ],
                [
                    "2016-02-22",
                    -0.4
                ],
                [
                    "2016-02-23",
                    -0.4
                ],
                [
                    "2016-02-24",
                    -0.39
                ],
                [
                    "2016-02-25",
                    -0.37
                ],
                [
                    "2016-02-26",
                    -0.33
                ],
                [
                    "2016-02-29",
                    -0.29
                ],
                [
                    "2016-03-01",
                    -0.25
                ],
                [
                    "2016-03-02",
                    -0.22
                ],
                [
                    "2016-03-03",
                    -0.21
                ],
                [
                    "2016-03-04",
                    -0.2
                ],
                [
                    "2016-03-07",
                    -0.21
                ],
                [
                    "2016-03-08",
                    -0.21
                ],
                [
                    "2016-03-09",
                    -0.22
                ],
                [
                    "2016-03-10",
                    -0.22
                ],
                [
                    "2016-03-11",
                    -0.22
                ],
                [
                    "2016-03-14",
                    -0.22
                ],
                [
                    "2016-03-15",
                    -0.23
                ],
                [
                    "2016-03-16",
                    -0.24
                ],
                [
                    "2016-03-17",
                    -0.26
                ],
                [
                    "2016-03-18",
                    -0.28
                ],
                [
                    "2016-03-21",
                    -0.3
                ],
                [
                    "2016-03-22",
                    -0.32
                ],
                [
                    "2016-03-23",
                    -0.33
                ],
                [
                    "2016-03-24",
                    -0.35
                ],
                [
                    "2016-03-25",
                    -0.35
                ],
                [
                    "2016-03-28",
                    -0.35
                ],
                [
                    "2016-03-29",
                    -0.34
                ],
                [
                    "2016-03-30",
                    -0.33
                ],
                [
                    "2016-03-31",
                    -0.33
                ],
                [
                    "2016-04-01",
                    -0.32
                ],
                [
                    "2016-04-05",
                    -0.31
                ],
                [
                    "2016-04-06",
                    -0.29
                ],
                [
                    "2016-04-07",
                    -0.26
                ],
                [
                    "2016-04-08",
                    -0.23
                ],
                [
                    "2016-04-11",
                    -0.19
                ],
                [
                    "2016-04-12",
                    -0.14
                ],
                [
                    "2016-04-13",
                    -0.1
                ],
                [
                    "2016-04-14",
                    -0.06
                ],
                [
                    "2016-04-15",
                    -0.02
                ],
                [
                    "2016-04-18",
                    0.01
                ],
                [
                    "2016-04-19",
                    0.03
                ],
                [
                    "2016-04-20",
                    0.05
                ],
                [
                    "2016-04-21",
                    0.06
                ],
                [
                    "2016-04-22",
                    0.05
                ],
                [
                    "2016-04-25",
                    0.04
                ],
                [
                    "2016-04-26",
                    0.02
                ],
                [
                    "2016-04-27",
                    0.0
                ],
                [
                    "2016-04-28",
                    -0.01
                ],
                [
                    "2016-04-29",
                    -0.03
                ],
                [
                    "2016-05-03",
                    -0.04
                ],
                [
                    "2016-05-04",
                    -0.05
                ],
                [
                    "2016-05-05",
                    -0.05
                ],
                [
                    "2016-05-06",
                    -0.05
                ],
                [
                    "2016-05-09",
                    -0.03
                ],
                [
                    "2016-05-10",
                    -0.01
                ],
                [
                    "2016-05-11",
                    0.01
                ],
                [
                    "2016-05-12",
                    0.03
                ],
                [
                    "2016-05-13",
                    0.03
                ],
                [
                    "2016-05-16",
                    0.04
                ],
                [
                    "2016-05-17",
                    0.05
                ],
                [
                    "2016-05-18",
                    0.06
                ],
                [
                    "2016-05-19",
                    0.05
                ],
                [
                    "2016-05-20",
                    0.06
                ],
                [
                    "2016-05-23",
                    0.06
                ],
                [
                    "2016-05-24",
                    0.07
                ],
                [
                    "2016-05-25",
                    0.08
                ],
                [
                    "2016-05-26",
                    0.09
                ],
                [
                    "2016-05-27",
                    0.09
                ],
                [
                    "2016-05-30",
                    0.08
                ],
                [
                    "2016-05-31",
                    0.07
                ],
                [
                    "2016-06-01",
                    0.06
                ],
                [
                    "2016-06-02",
                    0.05
                ],
                [
                    "2016-06-03",
                    0.04
                ],
                [
                    "2016-06-06",
                    0.03
                ],
                [
                    "2016-06-07",
                    0.02
                ],
                [
                    "2016-06-08",
                    0.01
                ],
                [
                    "2016-06-13",
                    0.0
                ],
                [
                    "2016-06-14",
                    0.0
                ],
                [
                    "2016-06-15",
                    0.0
                ],
                [
                    "2016-06-16",
                    0.0
                ],
                [
                    "2016-06-17",
                    0.0
                ],
                [
                    "2016-06-20",
                    -0.0
                ],
                [
                    "2016-06-21",
                    -0.01
                ],
                [
                    "2016-06-22",
                    -0.01
                ],
                [
                    "2016-06-23",
                    -0.01
                ],
                [
                    "2016-06-24",
                    -0.0
                ],
                [
                    "2016-06-27",
                    0.0
                ],
                [
                    "2016-06-28",
                    0.0
                ],
                [
                    "2016-06-29",
                    0.0
                ],
                [
                    "2016-06-30",
                    -0.01
                ],
                [
                    "2016-07-01",
                    -0.03
                ],
                [
                    "2016-07-04",
                    -0.05
                ],
                [
                    "2016-07-05",
                    -0.07
                ],
                [
                    "2016-07-06",
                    -0.09
                ],
                [
                    "2016-07-07",
                    -0.11
                ],
                [
                    "2016-07-08",
                    -0.13
                ],
                [
                    "2016-07-11",
                    -0.15
                ],
                [
                    "2016-07-12",
                    -0.18
                ],
                [
                    "2016-07-13",
                    -0.2
                ],
                [
                    "2016-07-14",
                    -0.21
                ],
                [
                    "2016-07-15",
                    -0.22
                ],
                [
                    "2016-07-18",
                    -0.23
                ],
                [
                    "2016-07-19",
                    -0.25
                ],
                [
                    "2016-07-20",
                    -0.26
                ],
                [
                    "2016-07-21",
                    -0.27
                ],
                [
                    "2016-07-22",
                    -0.28
                ],
                [
                    "2016-07-25",
                    -0.28
                ],
                [
                    "2016-07-26",
                    -0.29
                ],
                [
                    "2016-07-27",
                    -0.29
                ],
                [
                    "2016-07-28",
                    -0.3
                ],
                [
                    "2016-07-29",
                    -0.29
                ],
                [
                    "2016-08-01",
                    -0.28
                ],
                [
                    "2016-08-02",
                    -0.26
                ],
                [
                    "2016-08-03",
                    -0.24
                ],
                [
                    "2016-08-04",
                    -0.2
                ],
                [
                    "2016-08-05",
                    -0.16
                ],
                [
                    "2016-08-08",
                    -0.11
                ],
                [
                    "2016-08-09",
                    -0.06
                ],
                [
                    "2016-08-10",
                    -0.01
                ],
                [
                    "2016-08-11",
                    0.03
                ],
                [
                    "2016-08-12",
                    0.07
                ],
                [
                    "2016-08-15",
                    0.09
                ],
                [
                    "2016-08-16",
                    0.1
                ],
                [
                    "2016-08-17",
                    0.11
                ],
                [
                    "2016-08-18",
                    0.13
                ],
                [
                    "2016-08-19",
                    0.14
                ],
                [
                    "2016-08-22",
                    0.13
                ],
                [
                    "2016-08-23",
                    0.13
                ],
                [
                    "2016-08-24",
                    0.13
                ],
                [
                    "2016-08-25",
                    0.13
                ],
                [
                    "2016-08-26",
                    0.13
                ],
                [
                    "2016-08-29",
                    0.13
                ],
                [
                    "2016-08-30",
                    0.13
                ],
                [
                    "2016-08-31",
                    0.12
                ],
                [
                    "2016-09-01",
                    0.1
                ],
                [
                    "2016-09-02",
                    0.08
                ],
                [
                    "2016-09-05",
                    0.05
                ],
                [
                    "2016-09-06",
                    0.02
                ],
                [
                    "2016-09-07",
                    -0.0
                ],
                [
                    "2016-09-08",
                    -0.03
                ],
                [
                    "2016-09-09",
                    -0.05
                ],
                [
                    "2016-09-12",
                    -0.06
                ],
                [
                    "2016-09-13",
                    -0.05
                ],
                [
                    "2016-09-14",
                    -0.05
                ],
                [
                    "2016-09-19",
                    -0.03
                ],
                [
                    "2016-09-20",
                    -0.02
                ],
                [
                    "2016-09-21",
                    -0.02
                ],
                [
                    "2016-09-22",
                    -0.01
                ],
                [
                    "2016-09-23",
                    -0.01
                ],
                [
                    "2016-09-26",
                    -0.01
                ],
                [
                    "2016-09-27",
                    -0.01
                ],
                [
                    "2016-09-28",
                    -0.01
                ],
                [
                    "2016-09-29",
                    -0.01
                ],
                [
                    "2016-09-30",
                    -0.01
                ],
                [
                    "2016-10-10",
                    -0.02
                ],
                [
                    "2016-10-11",
                    -0.04
                ],
                [
                    "2016-10-12",
                    -0.05
                ],
                [
                    "2016-10-13",
                    -0.06
                ],
                [
                    "2016-10-14",
                    -0.07
                ],
                [
                    "2016-10-17",
                    -0.08
                ],
                [
                    "2016-10-18",
                    -0.08
                ],
                [
                    "2016-10-19",
                    -0.08
                ],
                [
                    "2016-10-20",
                    -0.09
                ],
                [
                    "2016-10-21",
                    -0.09
                ],
                [
                    "2016-10-24",
                    -0.1
                ],
                [
                    "2016-10-25",
                    -0.12
                ],
                [
                    "2016-10-26",
                    -0.13
                ],
                [
                    "2016-10-27",
                    -0.13
                ],
                [
                    "2016-10-28",
                    -0.13
                ],
                [
                    "2016-10-31",
                    -0.13
                ],
                [
                    "2016-11-01",
                    -0.12
                ],
                [
                    "2016-11-02",
                    -0.12
                ],
                [
                    "2016-11-03",
                    -0.11
                ],
                [
                    "2016-11-04",
                    -0.1
                ],
                [
                    "2016-11-07",
                    -0.09
                ],
                [
                    "2016-11-08",
                    -0.07
                ],
                [
                    "2016-11-09",
                    -0.06
                ],
                [
                    "2016-11-10",
                    -0.03
                ],
                [
                    "2016-11-11",
                    -0.01
                ],
                [
                    "2016-11-14",
                    0.01
                ],
                [
                    "2016-11-15",
                    0.04
                ],
                [
                    "2016-11-16",
                    0.06
                ],
                [
                    "2016-11-17",
                    0.09
                ],
                [
                    "2016-11-18",
                    0.12
                ],
                [
                    "2016-11-21",
                    0.15
                ],
                [
                    "2016-11-22",
                    0.17
                ],
                [
                    "2016-11-23",
                    0.18
                ],
                [
                    "2016-11-24",
                    0.18
                ],
                [
                    "2016-11-25",
                    0.19
                ],
                [
                    "2016-11-28",
                    0.19
                ],
                [
                    "2016-11-29",
                    0.2
                ],
                [
                    "2016-11-30",
                    0.21
                ],
                [
                    "2016-12-01",
                    0.22
                ],
                [
                    "2016-12-02",
                    0.23
                ],
                [
                    "2016-12-05",
                    0.23
                ],
                [
                    "2016-12-06",
                    0.23
                ],
                [
                    "2016-12-07",
                    0.21
                ],
                [
                    "2016-12-08",
                    0.19
                ],
                [
                    "2016-12-09",
                    0.16
                ],
                [
                    "2016-12-12",
                    0.11
                ],
                [
                    "2016-12-13",
                    0.06
                ],
                [
                    "2016-12-14",
                    0.02
                ],
                [
                    "2016-12-15",
                    -0.01
                ],
                [
                    "2016-12-16",
                    -0.03
                ],
                [
                    "2016-12-19",
                    -0.05
                ],
                [
                    "2016-12-20",
                    -0.05
                ],
                [
                    "2016-12-21",
                    -0.06
                ],
                [
                    "2016-12-22",
                    -0.06
                ],
                [
                    "2016-12-23",
                    -0.05
                ],
                [
                    "2016-12-26",
                    -0.05
                ],
                [
                    "2016-12-27",
                    -0.04
                ],
                [
                    "2016-12-28",
                    -0.03
                ],
                [
                    "2016-12-29",
                    -0.02
                ],
                [
                    "2016-12-30",
                    -0.01
                ],
                [
                    "2017-01-03",
                    0.0
                ]
            ],
            "hoverAnimation": true,
            "label": {
                "show": false,
                "margin": 8
            },
            "logBase": 10,
            "seriesLayoutBy": "column",
            "lineStyle": {
                "show": true,
                "width": 1,
                "opacity": 1,
                "curveness": 0,
                "type": "solid"
            },
            "areaStyle": {
                "opacity": 0
            },
            "zlevel": 0,
            "z": 0
        }
    ],
    "legend": [
        {
            "data": [
                "",
                "MA5"
            ],
            "selected": {},
            "show": true,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        },
        {
            "data": [
                "Volumn"
            ],
            "selected": {},
            "show": false,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        },
        {
            "data": [
                "MACD",
                "DIF",
                "DIF"
            ],
            "selected": {},
            "show": false,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "axis",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "xAxis": [
        {
            "type": "category",
            "show": true,
            "scale": true,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "axisLine": {
                "show": true,
                "onZero": false,
                "onZeroAxisIndex": 0
            },
            "inverse": false,
            "offset": 0,
            "splitNumber": 20,
            "boundaryGap": false,
            "min": "dataMin",
            "max": "dataMax",
            "minInterval": 0,
            "splitLine": {
                "show": false,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            },
            "data": [
                "2015-10-16",
                "2015-10-19",
                "2015-10-20",
                "2015-10-21",
                "2015-10-22",
                "2015-10-23",
                "2015-10-26",
                "2015-10-27",
                "2015-10-28",
                "2015-10-29",
                "2015-10-30",
                "2015-11-02",
                "2015-11-03",
                "2015-11-04",
                "2015-11-05",
                "2015-11-06",
                "2015-11-09",
                "2015-11-10",
                "2015-11-11",
                "2015-11-12",
                "2015-11-13",
                "2015-11-16",
                "2015-11-17",
                "2015-11-18",
                "2015-11-19",
                "2015-11-20",
                "2015-11-23",
                "2015-11-24",
                "2015-11-25",
                "2015-11-26",
                "2015-11-27",
                "2015-11-30",
                "2015-12-01",
                "2015-12-02",
                "2015-12-03",
                "2015-12-04",
                "2015-12-07",
                "2015-12-08",
                "2015-12-09",
                "2015-12-10",
                "2015-12-11",
                "2015-12-14",
                "2015-12-15",
                "2015-12-16",
                "2015-12-17",
                "2015-12-18",
                "2015-12-21",
                "2015-12-22",
                "2015-12-23",
                "2015-12-24",
                "2015-12-25",
                "2015-12-28",
                "2015-12-29",
                "2015-12-30",
                "2015-12-31",
                "2016-01-04",
                "2016-01-05",
                "2016-01-06",
                "2016-01-07",
                "2016-01-08",
                "2016-01-11",
                "2016-01-12",
                "2016-01-13",
                "2016-01-14",
                "2016-01-15",
                "2016-01-18",
                "2016-01-19",
                "2016-01-20",
                "2016-01-21",
                "2016-01-22",
                "2016-01-25",
                "2016-01-26",
                "2016-01-27",
                "2016-01-28",
                "2016-01-29",
                "2016-02-01",
                "2016-02-02",
                "2016-02-03",
                "2016-02-04",
                "2016-02-05",
                "2016-02-15",
                "2016-02-16",
                "2016-02-17",
                "2016-02-18",
                "2016-02-19",
                "2016-02-22",
                "2016-02-23",
                "2016-02-24",
                "2016-02-25",
                "2016-02-26",
                "2016-02-29",
                "2016-03-01",
                "2016-03-02",
                "2016-03-03",
                "2016-03-04",
                "2016-03-07",
                "2016-03-08",
                "2016-03-09",
                "2016-03-10",
                "2016-03-11",
                "2016-03-14",
                "2016-03-15",
                "2016-03-16",
                "2016-03-17",
                "2016-03-18",
                "2016-03-21",
                "2016-03-22",
                "2016-03-23",
                "2016-03-24",
                "2016-03-25",
                "2016-03-28",
                "2016-03-29",
                "2016-03-30",
                "2016-03-31",
                "2016-04-01",
                "2016-04-05",
                "2016-04-06",
                "2016-04-07",
                "2016-04-08",
                "2016-04-11",
                "2016-04-12",
                "2016-04-13",
                "2016-04-14",
                "2016-04-15",
                "2016-04-18",
                "2016-04-19",
                "2016-04-20",
                "2016-04-21",
                "2016-04-22",
                "2016-04-25",
                "2016-04-26",
                "2016-04-27",
                "2016-04-28",
                "2016-04-29",
                "2016-05-03",
                "2016-05-04",
                "2016-05-05",
                "2016-05-06",
                "2016-05-09",
                "2016-05-10",
                "2016-05-11",
                "2016-05-12",
                "2016-05-13",
                "2016-05-16",
                "2016-05-17",
                "2016-05-18",
                "2016-05-19",
                "2016-05-20",
                "2016-05-23",
                "2016-05-24",
                "2016-05-25",
                "2016-05-26",
                "2016-05-27",
                "2016-05-30",
                "2016-05-31",
                "2016-06-01",
                "2016-06-02",
                "2016-06-03",
                "2016-06-06",
                "2016-06-07",
                "2016-06-08",
                "2016-06-13",
                "2016-06-14",
                "2016-06-15",
                "2016-06-16",
                "2016-06-17",
                "2016-06-20",
                "2016-06-21",
                "2016-06-22",
                "2016-06-23",
                "2016-06-24",
                "2016-06-27",
                "2016-06-28",
                "2016-06-29",
                "2016-06-30",
                "2016-07-01",
                "2016-07-04",
                "2016-07-05",
                "2016-07-06",
                "2016-07-07",
                "2016-07-08",
                "2016-07-11",
                "2016-07-12",
                "2016-07-13",
                "2016-07-14",
                "2016-07-15",
                "2016-07-18",
                "2016-07-19",
                "2016-07-20",
                "2016-07-21",
                "2016-07-22",
                "2016-07-25",
                "2016-07-26",
                "2016-07-27",
                "2016-07-28",
                "2016-07-29",
                "2016-08-01",
                "2016-08-02",
                "2016-08-03",
                "2016-08-04",
                "2016-08-05",
                "2016-08-08",
                "2016-08-09",
                "2016-08-10",
                "2016-08-11",
                "2016-08-12",
                "2016-08-15",
                "2016-08-16",
                "2016-08-17",
                "2016-08-18",
                "2016-08-19",
                "2016-08-22",
                "2016-08-23",
                "2016-08-24",
                "2016-08-25",
                "2016-08-26",
                "2016-08-29",
                "2016-08-30",
                "2016-08-31",
                "2016-09-01",
                "2016-09-02",
                "2016-09-05",
                "2016-09-06",
                "2016-09-07",
                "2016-09-08",
                "2016-09-09",
                "2016-09-12",
                "2016-09-13",
                "2016-09-14",
                "2016-09-19",
                "2016-09-20",
                "2016-09-21",
                "2016-09-22",
                "2016-09-23",
                "2016-09-26",
                "2016-09-27",
                "2016-09-28",
                "2016-09-29",
                "2016-09-30",
                "2016-10-10",
                "2016-10-11",
                "2016-10-12",
                "2016-10-13",
                "2016-10-14",
                "2016-10-17",
                "2016-10-18",
                "2016-10-19",
                "2016-10-20",
                "2016-10-21",
                "2016-10-24",
                "2016-10-25",
                "2016-10-26",
                "2016-10-27",
                "2016-10-28",
                "2016-10-31",
                "2016-11-01",
                "2016-11-02",
                "2016-11-03",
                "2016-11-04",
                "2016-11-07",
                "2016-11-08",
                "2016-11-09",
                "2016-11-10",
                "2016-11-11",
                "2016-11-14",
                "2016-11-15",
                "2016-11-16",
                "2016-11-17",
                "2016-11-18",
                "2016-11-21",
                "2016-11-22",
                "2016-11-23",
                "2016-11-24",
                "2016-11-25",
                "2016-11-28",
                "2016-11-29",
                "2016-11-30",
                "2016-12-01",
                "2016-12-02",
                "2016-12-05",
                "2016-12-06",
                "2016-12-07",
                "2016-12-08",
                "2016-12-09",
                "2016-12-12",
                "2016-12-13",
                "2016-12-14",
                "2016-12-15",
                "2016-12-16",
                "2016-12-19",
                "2016-12-20",
                "2016-12-21",
                "2016-12-22",
                "2016-12-23",
                "2016-12-26",
                "2016-12-27",
                "2016-12-28",
                "2016-12-29",
                "2016-12-30",
                "2017-01-03"
            ]
        },
        {
            "type": "category",
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 1,
            "axisLabel": {
                "show": false,
                "margin": 8
            },
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            },
            "data": [
                "2015-10-16",
                "2015-10-19",
                "2015-10-20",
                "2015-10-21",
                "2015-10-22",
                "2015-10-23",
                "2015-10-26",
                "2015-10-27",
                "2015-10-28",
                "2015-10-29",
                "2015-10-30",
                "2015-11-02",
                "2015-11-03",
                "2015-11-04",
                "2015-11-05",
                "2015-11-06",
                "2015-11-09",
                "2015-11-10",
                "2015-11-11",
                "2015-11-12",
                "2015-11-13",
                "2015-11-16",
                "2015-11-17",
                "2015-11-18",
                "2015-11-19",
                "2015-11-20",
                "2015-11-23",
                "2015-11-24",
                "2015-11-25",
                "2015-11-26",
                "2015-11-27",
                "2015-11-30",
                "2015-12-01",
                "2015-12-02",
                "2015-12-03",
                "2015-12-04",
                "2015-12-07",
                "2015-12-08",
                "2015-12-09",
                "2015-12-10",
                "2015-12-11",
                "2015-12-14",
                "2015-12-15",
                "2015-12-16",
                "2015-12-17",
                "2015-12-18",
                "2015-12-21",
                "2015-12-22",
                "2015-12-23",
                "2015-12-24",
                "2015-12-25",
                "2015-12-28",
                "2015-12-29",
                "2015-12-30",
                "2015-12-31",
                "2016-01-04",
                "2016-01-05",
                "2016-01-06",
                "2016-01-07",
                "2016-01-08",
                "2016-01-11",
                "2016-01-12",
                "2016-01-13",
                "2016-01-14",
                "2016-01-15",
                "2016-01-18",
                "2016-01-19",
                "2016-01-20",
                "2016-01-21",
                "2016-01-22",
                "2016-01-25",
                "2016-01-26",
                "2016-01-27",
                "2016-01-28",
                "2016-01-29",
                "2016-02-01",
                "2016-02-02",
                "2016-02-03",
                "2016-02-04",
                "2016-02-05",
                "2016-02-15",
                "2016-02-16",
                "2016-02-17",
                "2016-02-18",
                "2016-02-19",
                "2016-02-22",
                "2016-02-23",
                "2016-02-24",
                "2016-02-25",
                "2016-02-26",
                "2016-02-29",
                "2016-03-01",
                "2016-03-02",
                "2016-03-03",
                "2016-03-04",
                "2016-03-07",
                "2016-03-08",
                "2016-03-09",
                "2016-03-10",
                "2016-03-11",
                "2016-03-14",
                "2016-03-15",
                "2016-03-16",
                "2016-03-17",
                "2016-03-18",
                "2016-03-21",
                "2016-03-22",
                "2016-03-23",
                "2016-03-24",
                "2016-03-25",
                "2016-03-28",
                "2016-03-29",
                "2016-03-30",
                "2016-03-31",
                "2016-04-01",
                "2016-04-05",
                "2016-04-06",
                "2016-04-07",
                "2016-04-08",
                "2016-04-11",
                "2016

Guess you like

Origin blog.csdn.net/m0_63324772/article/details/133097674
Recommended