01 <?xml version="1.0" encoding="UTF-8"?>
02 <stock xmlns="http://anychart.com/products/stock/schemas/1.9.0/schema.xsd">
03   <data>
04     <data_sets>
05       <data_set id="dataSet1" source_url="./../../csv-data/ixic_daily_short.csv">
06         <csv_settings ignore_first_row="true" rows_separator="\n" columns_separator="," />
07         <locale>
08           <date_time>
09             <format><![CDATA[%yyyy%MM%dd]]></format>
10           </date_time>
11         </locale>
12       </data_set>
13     </data_sets>
14     <data_providers>
15       <general_data_providers>
16         <data_provider data_set="dataSet1" id="dp1">
17           <fields>
18             <field type="Open" column="1" approximation_type="Open" />
19             <field type="High" column="2" approximation_type="High" />
20             <field type="Low" column="3" approximation_type="Low" />
21             <field type="Close" column="4" approximation_type="Close" />
22           </fields>
23         </data_provider>
24       </general_data_providers>
25       <scroller_data_providers>
26         <data_provider data_set="dataSet1" column="4" />
27       </scroller_data_providers>
28     </data_providers>
29   </data>
30   <settings>
31     <data_grouping enabled="false" max_visible_points="720" />
32     <inside_margin right="40" />
33     <charts>
34       <chart height="100">
35         <legend>
36           <date_time enabled="false" />
37         </legend>
38         <series_list>
39           <series type="Candlestick" data_provider="dp1" color="#0066DD">
40             <name><![CDATA[^IXIC]]></name>
41             <legend_item line_break="true" />
42             <candlestick_series width="0.5">
43               <rising>
44                 <line enabled="true" color="#000000" thickness="1" opacity="1" />
45                 <border enabled="true" color="#000000" thickness="1" opacity="1" />
46                 <fill enabled="true" color="#FFFFFF" opacity="1" />
47               </rising>
48               <falling>
49                 <line enabled="true" color="#000000" thickness="1" opacity="1" />
50                 <border enabled="true" color="#000000" thickness="1" opacity="1" />
51                 <fill enabled="true" color="#494949" opacity="1" />
52               </falling>
53             </candlestick_series>
54           </series>
55         </series_list>
56         <technical_indicators>
57           <technical_indicator type="BBands" data_provider="dp1">
58             <bbands_indicator period="20" deviation="2">
59               <upper_series>
60                 <name><![CDATA[BBands(20,2)]]></name>
61                 <line_series thickness="2" />
62               </upper_series>
63               <lower_series>
64                 <line_series thickness="2" />
65               </lower_series>
66             </bbands_indicator>
67           </technical_indicator>
68         </technical_indicators>
69         <value_axes>
70           <primary position="Right">
71             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
72               <font family="Verdana" color="#444444" bold="true" size="9" />
73               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
74             </labels>
75             <scale minimum_offset="0" />
76             <grid>
77               <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
78             </grid>
79             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
80           </primary>
81         </value_axes>
82         <x_axis>
83           <major_grid>
84             <line opacity="1" color="#D9D9D9" />
85           </major_grid>
86           <minor_grid>
87             <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
88           </minor_grid>
89         </x_axis>
90       </chart>
91       <chart height="50">
92         <legend>
93           <title enabled="false" />
94           <date_time enabled="false" />
95         </legend>
96         <value_axes>
97           <primary position="Right">
98             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
99               <font family="Verdana" color="#444444" bold="true" size="9" />
100               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
101             </labels>
102             <grid>
103               <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
104             </grid>
105             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
106             <zero_line enabled="false" />
107           </primary>
108         </value_axes>
109         <x_axis>
110           <major_grid>
111             <line opacity="1" color="#D9D9D9" />
112           </major_grid>
113           <minor_grid>
114             <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
115           </minor_grid>
116           <labels enabled="false" />
117         </x_axis>
118         <technical_indicators>
119           <technical_indicator type="BBandsB" data_provider="dp1">
120             <bbands_b_indicator period="20" deviation="2">
121               <series color="#BD240C" type="Line">
122                 <name><![CDATA[BBands %B(20,2)]]></name>
123                 <line_series thickness="2" />
124               </series>
125             </bbands_b_indicator>
126           </technical_indicator>
127         </technical_indicators>
128       </chart>
129     </charts>
130     <range_selector enabled="true" />
131     <time_scale>
132       <selected_range type="YTD" />
133     </time_scale>
134   </settings>
135 </stock>
01{
02  data: {
03    dataSets: [
04      {
05        id: "dataSet1",
06        sourceUrl: "./../../csv-data/ixic_daily_short.csv",
07        csvSettings: {
08          ignoreFirstRow: true,
09          rowsSeparator: "\n",
10          columnsSeparator: ","
11        },
12        locale: {
13          dateTime: {
14            format: "%yyyy%MM%dd"
15          }
16        }
17      }
18    ],
19    dataProviders: {
20      generalDataProviders: [
21        {
22          dataSet: "dataSet1",
23          id: "dp1",
24          fields: [
25            {
26              type: "Open",
27              column: 1,
28              approximationType: "Open"
29            },
30            {
31              type: "High",
32              column: 2,
33              approximationType: "High"
34            },
35            {
36              type: "Low",
37              column: 3,
38              approximationType: "Low"
39            },
40            {
41              type: "Close",
42              column: 4,
43              approximationType: "Close"
44            }
45          ]
46        }
47      ],
48      scrollerDataProviders: [
49        {
50          dataSet: "dataSet1",
51          column: 4
52        }
53      ]
54    }
55  },
56  settings: {
57    dataGrouping: {
58      enabled: false,
59      maxVisiblePoints: 720
60    },
61    insideMargin: {
62      right: 40
63    },
64    charts: [
65      {
66        height: 100,
67        legend: {
68          dateTime: {
69            enabled: false
70          }
71        },
72        seriesList: [
73          {
74            type: "Candlestick",
75            dataProvider: "dp1",
76            color: "#0066DD",
77            name: "^IXIC",
78            legendItem: {
79              lineBreak: true
80            },
81            candlestickSeries: {
82              width: 0.5,
83              rising: {
84                line: {
85                  enabled: true,
86                  color: "#000000",
87                  thickness: 1,
88                  opacity: 1
89                },
90                border: {
91                  enabled: true,
92                  color: "#000000",
93                  thickness: 1,
94                  opacity: 1
95                },
96                fill: {
97                  enabled: true,
98                  color: "#FFFFFF",
99                  opacity: 1
100                }
101              },
102              falling: {
103                line: {
104                  enabled: true,
105                  color: "#000000",
106                  thickness: 1,
107                  opacity: 1
108                },
109                border: {
110                  enabled: true,
111                  color: "#000000",
112                  thickness: 1,
113                  opacity: 1
114                },
115                fill: {
116                  enabled: true,
117                  color: "#494949",
118                  opacity: 1
119                }
120              }
121            }
122          }
123        ],
124        technicalIndicators: [
125          {
126            type: "BBands",
127            dataProvider: "dp1",
128            bbandsIndicator: {
129              period: 20,
130              deviation: 2,
131              upperSeries: {
132                name: "BBands(20,2)",
133                lineSeries: {
134                  thickness: 2
135                }
136              },
137              lowerSeries: {
138                lineSeries: {
139                  thickness: 2
140                }
141              }
142            }
143          }
144        ],
145        valueAxes: {
146          primary: {
147            position: "Right",
148            labels: {
149              position: "Outside",
150              padding: 3,
151              valign: "Center",
152              showFirst: true,
153              showLast: true,
154              font: {
155                family: "Verdana",
156                color: "#444444",
157                bold: true,
158                size: 9
159              },
160              format: "{%Value}{numDecimals:2,trailingZeros:false}"
161            },
162            scale: {
163              minimumOffset: 0
164            },
165            grid: {
166              line: {
167                dashed: true,
168                dashLength: 3,
169                dashSpace: 3,
170                pixelHinting: true
171              }
172            },
173            tickmarks: {
174              enabled: true,
175              showFirst: true,
176              showLast: true,
177              thickness: 1,
178              size: 3,
179              pixelHinting: true,
180              color: "#333333"
181            }
182          }
183        },
184        xAxis: {
185          majorGrid: {
186            line: {
187              opacity: 1,
188              color: "#D9D9D9"
189            }
190          },
191          minorGrid: {
192            line: {
193              dashed: true,
194              dashLength: 3,
195              dashSpace: 3,
196              pixelHinting: true
197            }
198          }
199        }
200      },
201      {
202        height: 50,
203        legend: {
204          title: {
205            enabled: false
206          },
207          dateTime: {
208            enabled: false
209          }
210        },
211        valueAxes: {
212          primary: {
213            position: "Right",
214            labels: {
215              position: "Outside",
216              padding: 3,
217              valign: "Center",
218              showFirst: true,
219              showLast: true,
220              font: {
221                family: "Verdana",
222                color: "#444444",
223                bold: true,
224                size: 9
225              },
226              format: "{%Value}{numDecimals:2,trailingZeros:false}"
227            },
228            grid: {
229              line: {
230                dashed: true,
231                dashLength: 3,
232                dashSpace: 3,
233                pixelHinting: true
234              }
235            },
236            tickmarks: {
237              enabled: true,
238              showFirst: true,
239              showLast: true,
240              thickness: 1,
241              size: 3,
242              pixelHinting: true,
243              color: "#333333"
244            },
245            zeroLine: {
246              enabled: false
247            }
248          }
249        },
250        xAxis: {
251          majorGrid: {
252            line: {
253              opacity: 1,
254              color: "#D9D9D9"
255            }
256          },
257          minorGrid: {
258            line: {
259              dashed: true,
260              dashLength: 3,
261              dashSpace: 3,
262              pixelHinting: true
263            }
264          },
265          labels: {
266            enabled: false
267          }
268        },
269        technicalIndicators: [
270          {
271            type: "BBandsB",
272            dataProvider: "dp1",
273            bbandsBIndicator: {
274              period: 20,
275              deviation: 2,
276              series: {
277                color: "#BD240C",
278                type: "Line",
279                name: "BBands %B(20,2)",
280                lineSeries: {
281                  thickness: 2
282                }
283              }
284            }
285          }
286        ]
287      }
288    ],
289    rangeSelector: {
290      enabled: true
291    },
292    timeScale: {
293      selectedRange: {
294        type: "YTD"
295      }
296    }
297  }
298}

The information contained in this website is for general information purposes only. All sample data provided on this site is for demonstration purposes only.


The logos and names of other companies and products mentioned on this site are copyright and/or trademarks of their respective owners.


The content on this site, including news, quotes, data and other information, is provided for your personal information only, and is intended for demonstration purposes only. Content on this site is not appropriate for the purposes of making a decision to carry out a transaction or trade. Nor does it provide any form of advice (investment, tax, legal) amounting to investment advice, or make any recommendations regarding particular financial instruments, investments or products.


In no event AnyChart will be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of this website.


This site may point to other Internet sites that may be of interest to you, however AnyChart does not endorse or take responsibility for the content on such other sites.


Market data and News provided by and copyright RediNews, Incorporated.