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="KeltnerChannels" data_provider="dp1">
58             <keltner_channels_indicator atr_period="20" multiplier="2" ema_period="10">
59               <upper_series color="#ac00ae" type="Spline">
60                 <line_series thickness="1" />
61                 <name><![CDATA[KELT(20,2,10)]]></name>
62               </upper_series>
63               <lower_series color="#ac00ae" type="Spline">
64                 <line_series thickness="1" />
65               </lower_series>
66               <ema_series color="#ac00ae" type="Spline">
67                 <line_series thickness="1" opacity="0.4" />
68               </ema_series>
69             </keltner_channels_indicator>
70           </technical_indicator>
71         </technical_indicators>
72         <value_axes>
73           <primary position="Right">
74             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
75               <font family="Verdana" color="#444444" bold="true" size="9" />
76               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
77             </labels>
78             <scale minimum_offset="0" />
79             <grid>
80               <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
81             </grid>
82             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
83           </primary>
84         </value_axes>
85         <x_axis>
86           <major_grid>
87             <line opacity="1" color="#D9D9D9" />
88           </major_grid>
89           <minor_grid>
90             <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
91           </minor_grid>
92         </x_axis>
93       </chart>
94     </charts>
95     <range_selector enabled="true" />
96     <time_scale>
97       <selected_range type="YTD" />
98     </time_scale>
99   </settings>
100 </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: "KeltnerChannels",
127            dataProvider: "dp1",
128            keltnerChannelsIndicator: {
129              atrPeriod: 20,
130              multiplier: 2,
131              emaPeriod: 10,
132              upperSeries: {
133                color: "#ac00ae",
134                type: "Spline",
135                lineSeries: {
136                  thickness: 1
137                },
138                name: "KELT(20,2,10)"
139              },
140              lowerSeries: {
141                color: "#ac00ae",
142                type: "Spline",
143                lineSeries: {
144                  thickness: 1
145                }
146              },
147              emaSeries: {
148                color: "#ac00ae",
149                type: "Spline",
150                lineSeries: {
151                  thickness: 1,
152                  opacity: 0.4
153                }
154              }
155            }
156          }
157        ],
158        valueAxes: {
159          primary: {
160            position: "Right",
161            labels: {
162              position: "Outside",
163              padding: 3,
164              valign: "Center",
165              showFirst: true,
166              showLast: true,
167              font: {
168                family: "Verdana",
169                color: "#444444",
170                bold: true,
171                size: 9
172              },
173              format: "{%Value}{numDecimals:2,trailingZeros:false}"
174            },
175            scale: {
176              minimumOffset: 0
177            },
178            grid: {
179              line: {
180                dashed: true,
181                dashLength: 3,
182                dashSpace: 3,
183                pixelHinting: true
184              }
185            },
186            tickmarks: {
187              enabled: true,
188              showFirst: true,
189              showLast: true,
190              thickness: 1,
191              size: 3,
192              pixelHinting: true,
193              color: "#333333"
194            }
195          }
196        },
197        xAxis: {
198          majorGrid: {
199            line: {
200              opacity: 1,
201              color: "#D9D9D9"
202            }
203          },
204          minorGrid: {
205            line: {
206              dashed: true,
207              dashLength: 3,
208              dashSpace: 3,
209              pixelHinting: true
210            }
211          }
212        }
213      }
214    ],
215    rangeSelector: {
216      enabled: true
217    },
218    timeScale: {
219      selectedRange: {
220        type: "YTD"
221      }
222    }
223  }
224}

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.