将自定义TA添加到chart.Posn()

时间:2016-05-19 22:36:50

标签: r quantstrat blotter

我遇到与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();

这就是我输出的样子(我在红框中突出显示了问题): enter image description here

1 个答案:

答案 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;