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>
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         <technical_indicators>
45           <technical_indicator type="PriceChannels" data_provider="dp1">
46             <price_channels_indicator period="25" use_range_based_series="true">
47               <range_based_series color="#004492" type="RangeArea">
48                 <range_area_series>
49                   <fill color="%Color" opacity="0.04" />
50                   <high>
51                     <line thickness="1" color="%Color" opacity="0.8" />
52                   </high>
53                   <low>
54                     <line thickness="1" color="%Color" opacity="0.8" />
55                   </low>
56                 </range_area_series>
57                 <name><![CDATA[Price Channels(25)]]></name>
58               </range_based_series>
59               <center_series color="#004492" type="Line">
60                 <line_series thickness="1" opacity="0.6" />
61               </center_series>
62             </price_channels_indicator>
63           </technical_indicator>
64         </technical_indicators>
65         <value_axes>
66           <primary position="Right">
67             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
68               <font family="Verdana" color="#444444" bold="true" size="9" />
69               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
70             </labels>
71             <scale minimum_offset="0" />
72             <grid>
73               <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
74             </grid>
75             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
76           </primary>
77         </value_axes>
78         <x_axis>
79           <major_grid>
80             <line opacity="1" color="#D9D9D9" />
81           </major_grid>
82           <minor_grid>
83             <line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
84           </minor_grid>
85         </x_axis>
86       </chart>
87     </charts>
88     <range_selector enabled="true" />
89     <time_scale>
90       <selected_range type="Unit" unit="Year" count="1" />
91     </time_scale>
92   </settings>
93 </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        legend: {
67          dateTime: {
68            enabled: false
69          }
70        },
71        seriesList: [
72          {
73            type: "Candlestick",
74            dataProvider: "dp1",
75            color: "#0066DD",
76            name: "^IXIC",
77            legendItem: {
78              lineBreak: true
79            }
80          }
81        ],
82        technicalIndicators: [
83          {
84            type: "PriceChannels",
85            dataProvider: "dp1",
86            priceChannelsIndicator: {
87              period: 25,
88              useRangeBasedSeries: true,
89              rangeBasedSeries: {
90                color: "#004492",
91                type: "RangeArea",
92                rangeAreaSeries: {
93                  fill: {
94                    color: "%Color",
95                    opacity: 0.04
96                  },
97                  high: {
98                    line: {
99                      thickness: 1,
100                      color: "%Color",
101                      opacity: 0.8
102                    }
103                  },
104                  low: {
105                    line: {
106                      thickness: 1,
107                      color: "%Color",
108                      opacity: 0.8
109                    }
110                  }
111                },
112                name: "Price Channels(25)"
113              },
114              centerSeries: {
115                color: "#004492",
116                type: "Line",
117                lineSeries: {
118                  thickness: 1,
119                  opacity: 0.6
120                }
121              }
122            }
123          }
124        ],
125        valueAxes: {
126          primary: {
127            position: "Right",
128            labels: {
129              position: "Outside",
130              padding: 3,
131              valign: "Center",
132              showFirst: true,
133              showLast: true,
134              font: {
135                family: "Verdana",
136                color: "#444444",
137                bold: true,
138                size: 9
139              },
140              format: "{%Value}{numDecimals:2,trailingZeros:false}"
141            },
142            scale: {
143              minimumOffset: 0
144            },
145            grid: {
146              line: {
147                dashed: true,
148                dashLength: 3,
149                dashSpace: 3,
150                pixelHinting: true
151              }
152            },
153            tickmarks: {
154              enabled: true,
155              showFirst: true,
156              showLast: true,
157              thickness: 1,
158              size: 3,
159              pixelHinting: true,
160              color: "#333333"
161            }
162          }
163        },
164        xAxis: {
165          majorGrid: {
166            line: {
167              opacity: 1,
168              color: "#D9D9D9"
169            }
170          },
171          minorGrid: {
172            line: {
173              dashed: true,
174              dashLength: 3,
175              dashSpace: 3,
176              pixelHinting: true
177            }
178          }
179        }
180      }
181    ],
182    rangeSelector: {
183      enabled: true
184    },
185    timeScale: {
186      selectedRange: {
187        type: "Unit",
188        unit: "Year",
189        count: 1
190      }
191    }
192  }
193}

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.