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           </series>
43         </series_list>
44         <value_axes>
45           <primary position="Right">
46             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
47               <font family="Verdana" color="#444444" bold="true" size="9" />
48               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
49             </labels>
50             <scale minimum_offset="0" />
51             <grid>
52               <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
53             </grid>
54             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
55           </primary>
56         </value_axes>
57         <x_axis>
58           <major_grid>
59             <line opacity="1" color="#D9D9D9" />
60           </major_grid>
61           <minor_grid>
62             <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
63           </minor_grid>
64         </x_axis>
65       </chart>
66       <chart height="50">
67         <legend>
68           <title enabled="false" />
69           <date_time enabled="false" />
70         </legend>
71         <value_axes>
72           <primary position="Right">
73             <labels position="Outside" padding="3" valign="Center" show_first="false" show_last="false">
74               <font family="Verdana" color="#444444" bold="true" size="9" />
75               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
76             </labels>
77             <scale minimum_mode="CustomValue" minimum="-10" maximum_mode="CustomValue" maximum="110" interval_mode="CustomValue" interval="20" />
78             <grid>
79               <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
80             </grid>
81             <tickmarks enabled="true" show_first="false" show_last="false" thickness="1" size="3" pixel_hinting="true" color="#333333" />
82             <zero_line enabled="false" />
83             <axis_markers>
84               <line_markers>
85                 <line_marker value="30">
86                   <line color="#AAAAAA" />
87                 </line_marker>
88                 <line_marker value="50">
89                   <line color="#004492" dashed="true" dash_length="4" dash_space="4" pixel_hinting="true" />
90                 </line_marker>
91                 <line_marker value="70">
92                   <line color="#AAAAAA" />
93                 </line_marker>
94               </line_markers>
95             </axis_markers>
96           </primary>
97         </value_axes>
98         <x_axis>
99           <labels enabled="false" />
100           <major_grid>
101             <line opacity="1" color="#D9D9D9" />
102           </major_grid>
103           <minor_grid>
104             <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
105           </minor_grid>
106         </x_axis>
107         <technical_indicators>
108           <technical_indicator type="Aroon" data_provider="dp1">
109             <aroon_indicator period="25">
110               <up_series type="Line" color="#1b8d1b">
111                 <name><![CDATA[Aroon(25)]]></name>
112                 <line_series thickness="2" />
113               </up_series>
114               <down_series type="Line" color="#d01414">
115                 <line_series thickness="2" />
116               </down_series>
117             </aroon_indicator>
118           </technical_indicator>
119         </technical_indicators>
120       </chart>
121     </charts>
122     <range_selector enabled="true" />
123     <time_scale>
124       <selected_range type="YTD" />
125     </time_scale>
126   </settings>
127 </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          }
82        ],
83        valueAxes: {
84          primary: {
85            position: "Right",
86            labels: {
87              position: "Outside",
88              padding: 3,
89              valign: "Center",
90              showFirst: true,
91              showLast: true,
92              font: {
93                family: "Verdana",
94                color: "#444444",
95                bold: true,
96                size: 9
97              },
98              format: "{%Value}{numDecimals:2,trailingZeros:false}"
99            },
100            scale: {
101              minimumOffset: 0
102            },
103            grid: {
104              line: {
105                dashed: true,
106                dashLength: 3,
107                dashSpace: 3,
108                pixelHinting: true
109              }
110            },
111            tickmarks: {
112              enabled: true,
113              showFirst: true,
114              showLast: true,
115              thickness: 1,
116              size: 3,
117              pixelHinting: true,
118              color: "#333333"
119            }
120          }
121        },
122        xAxis: {
123          majorGrid: {
124            line: {
125              opacity: 1,
126              color: "#D9D9D9"
127            }
128          },
129          minorGrid: {
130            line: {
131              dashed: true,
132              dashLength: 3,
133              dashSpace: 3,
134              pixelHinting: true
135            }
136          }
137        }
138      },
139      {
140        height: 50,
141        legend: {
142          title: {
143            enabled: false
144          },
145          dateTime: {
146            enabled: false
147          }
148        },
149        valueAxes: {
150          primary: {
151            position: "Right",
152            labels: {
153              position: "Outside",
154              padding: 3,
155              valign: "Center",
156              showFirst: false,
157              showLast: false,
158              font: {
159                family: "Verdana",
160                color: "#444444",
161                bold: true,
162                size: 9
163              },
164              format: "{%Value}{numDecimals:2,trailingZeros:false}"
165            },
166            scale: {
167              minimumMode: "CustomValue",
168              minimum: -10,
169              maximumMode: "CustomValue",
170              maximum: 110,
171              intervalMode: "CustomValue",
172              interval: 20
173            },
174            grid: {
175              line: {
176                dashed: true,
177                dashLength: 3,
178                dashSpace: 3,
179                pixelHinting: true
180              }
181            },
182            tickmarks: {
183              enabled: true,
184              showFirst: false,
185              showLast: false,
186              thickness: 1,
187              size: 3,
188              pixelHinting: true,
189              color: "#333333"
190            },
191            zeroLine: {
192              enabled: false
193            },
194            axisMarkers: {
195              lineMarkers: [
196                {
197                  value: 30,
198                  line: {
199                    color: "#AAAAAA"
200                  }
201                },
202                {
203                  value: 50,
204                  line: {
205                    color: "#004492",
206                    dashed: true,
207                    dashLength: 4,
208                    dashSpace: 4,
209                    pixelHinting: true
210                  }
211                },
212                {
213                  value: 70,
214                  line: {
215                    color: "#AAAAAA"
216                  }
217                }
218              ]
219            }
220          }
221        },
222        xAxis: {
223          labels: {
224            enabled: false
225          },
226          majorGrid: {
227            line: {
228              opacity: 1,
229              color: "#D9D9D9"
230            }
231          },
232          minorGrid: {
233            line: {
234              dashed: true,
235              dashLength: 3,
236              dashSpace: 3,
237              pixelHinting: true
238            }
239          }
240        },
241        technicalIndicators: [
242          {
243            type: "Aroon",
244            dataProvider: "dp1",
245            aroonIndicator: {
246              period: 25,
247              upSeries: {
248                type: "Line",
249                color: "#1b8d1b",
250                name: "Aroon(25)",
251                lineSeries: {
252                  thickness: 2
253                }
254              },
255              downSeries: {
256                type: "Line",
257                color: "#d01414",
258                lineSeries: {
259                  thickness: 2
260                }
261              }
262            }
263          }
264        ]
265      }
266    ],
267    rangeSelector: {
268      enabled: true
269    },
270    timeScale: {
271      selectedRange: {
272        type: "YTD"
273      }
274    }
275  }
276}

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.