Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/19/13 11:29:28 (11 years ago)
Author:
gkronber
Message:

#1508

  • fixed a bug in the ECB problem instance provider (reversed time series)
  • improved the ProblemInstanceProviderViewGeneric class to show a progress bar while loading the problem instance
  • fixed the build fail (in SolutionLineChartView)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Trading.Views/3.4/SolutionLineChartView.cs

    r9796 r9991  
    6565        this.chart.Series[SIGNALS_SERIES_NAME].Tag = Content;
    6666
    67         IEnumerable<double> accumulatedPrice = GetAccumulatedPrices(Content.ProblemData.Dataset.GetDoubleValues(Content.ProblemData.PriceVariable));
     67        IEnumerable<double> accumulatedPrice = GetAccumulatedPrices(Content.ProblemData.Dataset.GetDoubleValues(Content.ProblemData.PriceChangeVariable));
    6868        this.chart.Series.Add(PRICEVARIABLE_SERIES_NAME);
    6969        this.chart.Series[PRICEVARIABLE_SERIES_NAME].LegendText = PRICEVARIABLE_SERIES_NAME;
     
    7272        this.chart.Series[PRICEVARIABLE_SERIES_NAME].Tag = Content;
    7373
    74         IEnumerable<double> profit = OnlineProfitCalculator.GetProfits(Content.ProblemData.Dataset.GetDoubleValues(Content.ProblemData.PriceVariable), Content.Signals, Content.ProblemData.TransactionCosts);
     74        IEnumerable<double> profit = OnlineProfitCalculator.GetProfits(Content.ProblemData.Dataset.GetDoubleValues(Content.ProblemData.PriceChangeVariable), Content.Signals, Content.ProblemData.TransactionCosts);
    7575        IEnumerable<double> accumulatedProfits = GetAccumulatedPrices(profit);
    7676        this.chart.Series.Add(ASSET_SERIES_NAME);
Note: See TracChangeset for help on using the changeset viewer.