gpt4 book ai didi

c++ - 在运行的 while 循环中从 QLineSeries 更新 QChart

转载 作者:行者123 更新时间:2023-11-30 04:59:57 29 4
gpt4 key购买 nike

我想让我的 QChart 在一个点被添加到附加到它的 QLineSeries 对象时动态更新,但似乎这个更新只发生在我正在运行的 while 循环完成之后。我在 interface.cpp 中使用所说的 while 循环调用函数 updatePlot() 将数据点添加到线系列,但这只会在 while 循环完全完成后更新图表。这里发生的伪代码:

qtwindow.cpp

// Constructor that initializes the series which will be passed into the interface
AlgoWindow::AlgoWindow( ..., TradingInterface* interface, ... ) {

...

QLineSeries* series = new QLineSeries();
QLineSeries* benchmark = new QLineSeries();

QChart* chart = new QChart();
chart->addSeries(series);
chart->addSeries(benchmark);

// Also creates custom axes which are attached to each series
...
}

// Slot connected to a button signal
void AlgoWindow::buttonClicked() {

// Runs the backtest
interface->runbacktest(..., series, benchmark, ...);
}

接口(interface).cpp

void TradingInterface::runbacktest(..., QtCharts::QLineSeries* algoplot, QtCharts::QLineSeries* benchplot) {

// Runs a huge while loop that continuously checks for events
while (continue_backtest) {
if (!eventsqueue.isEmpty()) {
// Handle each event for the bar
} else {
// All events have been handled for the day, so plot
updatePlot(algoplot, benchplot);
}
}
}

void TradingInterface::updatePlot(QtCharts::QLineSeries *algoseries,
QtCharts::QLineSeries *benchseries) {

// Get the date and the information to put in each point
long date = portfolio.bars->latestDates.back();
double equitycurve = portfolio.all_holdings.rbegin().operator*().second["equitycurve"];
double benchcurve = benchmarkportfolio.all_holdings.rbegin().operator*.second["equitycurve"];

// Append the new points to their respective QLineSeries
algoseries->append(date * 1000, equitycurve*100);
benchseries->append(date * 1000, benchcurve*100);
}

这没有给我任何错误并且 while 循环完成,但线条仅在 runbacktest() 退出后绘制。然后它会正确绘制所有数据,但一次绘制。

我需要做的是在每次添加行时更新 QChart,我猜这是使用某种形式的自定义信号槽监听器,但我不知道如何去做。如果图表在函数完成后才会更新,甚至可以在 QChart 框架内实现吗?

此外,我已经尝试过 QChart::update() 和 QChartView::repaint()。两者都产生了相同的结果。

编辑: 我尝试设置一个新线程,只要数据完成,它就会向主线程发出信号,但它似乎没有任何改变。在输入所有数据之后,QChart 仍然不会更新。我添加了几行来帮助调试,看起来发出信号的函数运行得很好,但是接收信号的槽函数只在线程完成后运行。不仅如此,通过 sleep 减慢信号速度并不会使其绘制缓慢(就像我想的那样),因为 QChart 仍然拒绝更新,直到最终更新到 addData() 之后。

最佳答案

要么删除您的 while 循环并使用计时器一次执行一个步骤。

或者在另一个线程中运行您的 runbacktest 函数,并在数据准备就绪时发送信号以更新 UI 线程中的 QChart

无论哪种方式,您都需要将控制权交还给事件循环,以便重新绘制图表。

关于c++ - 在运行的 while 循环中从 QLineSeries 更新 QChart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50996127/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com