I have the following code:
protected override void OnBarUpdate()
{
// Condition set 1
if (<condition1>)
{
EnterLong(DefaultQuantity, "LONG");
}
// Condition set 2
if (<condition2>)
{
EnterShort(DefaultQuantity, "SHORT");
}
}
Reason I ask is that, when I view the strategy in the control panel, I see it in the Strategy tab, but I dont see it in the Postion tab.
Am I doing something wrong here?
Thanks


Comment