大家晚上好。我有一个脚本,我想让用户选择是否在我的情节上显示价格气泡。我已经创建了一个输入参数,但看起来你不能在 if 块中调用 hide 函数。以下看起来很简单,但没有编译......任何解决方法?
input hidePriceBubbles = no;
.
.
.
plot p_amLows = amLows;
p_amLows.SetStyle(Curve.POINTS);
p_amLows.SetDefaultColor(Color.YELLOW);
if hidePriceBubbles then {
p_amLows.HideBubble(); <--- "can not be called within branching"
} else {
}