Jump to content
Software FX Community

praemium

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by praemium

  1. Is it posssible to add an extra candlestick for another stock as a study? Please help me!
  2. I found an example from the forum to have two candlesticks on the same chart, but it uses the normal ChartFX. In my case, I need to have all the financial functions, so ChartFX Financial extension must be used. Any help would be appreciated.
  3. I am using ChartFX financial rather than normal ChartFX. Thanks!
  4. After I add 4 more series to the chart, the chart does not display any data except the message "The current chart gallery settings is inconsistent with the number of series in your data. Some gallery types require a specific number of series." Should I set financial DataBindingSettings to match the number of series I have? I could not find any place to set the extra series I added.
  5. Thanks for the reply. When I have one candlestick, I do something like this: chart1.DataSourceSettings.Fields.Add(new FieldMap("Date", FieldUsage.XValue)); chart1.DataSourceSettings.Fields.Add( new FieldMap("Open", FieldUsage.Value));chart1.DataSourceSettings.Fields.Add(new FieldMap("High", FieldUsage.Value)); chart1.DataSourceSettings.Fields.Add( new FieldMap("Low", FieldUsage.Value));chart1.DataSourceSettings.Fields.Add( new FieldMap("Close", FieldUsage.Value));financial1.DataBindingSettings.OpenSeries = 0; financial1.DataBindingSettings.HighSeries = 1; financial1.DataBindingSettings.LowSeries = 2; financial1.DataBindingSettings.CloseSeries = 3; financial1.Gallery.Analytical.PriceDisplay = (( PriceDisplay)Enum.Parse(typeof(PriceDisplay), "CandleStick")); When I add 4 more series to the chart, how do I set the financial DataBindingSettings? Thanks! chart1.DataSourceSettings.Fields.Add(new FieldMap("Open1", FieldUsage.Value)); chart1.DataSourceSettings.Fields.Add( new FieldMap("High1", FieldUsage.Value));chart1.DataSourceSettings.Fields.Add(new FieldMap("Low1", FieldUsage.Value)); chart1.DataSourceSettings.Fields.Add( new FieldMap("Close1", FieldUsage.Value));
  6. Hi, I have a chart which has data (high, low, open and close) displayed as candlestick. I am wondering whether it is possible to add an extra series on the same chart. What I am doing is to compare the price of a stock with the other one. Regards, Simon
×
×
  • Create New...