我遇到与Add Technical Indicator to chart.Posn
相同的问题然而,我正在使用自定义指标,它正在绘制位置图表顶部。有人可以帮我吗?我正在使用的指标是适当的,但任何定义的自定义指标解决方案都会有所帮助。
这是我的chart.Posn()电话:
context.Set<Parent>()
.Include(x => x.Childs)
.Where(x => x.SomeProp > 10)
.ToList();
context.Set<Parent>()
.Where(x => x.SomeProp > 10)
.Include(x => x.Childs)
.ToList();
答案 0 :(得分:0)
对我有用的解决方案是add_TA功能。例如,
std::cout << "starting application event loop" << std::endl;
const int ret = a.exec();
std::cout << "after exec" << std::endl; // or any other code here
return ret;