[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

is it possible to conditionally execute an includesignal



PureBytes Links

Trading Reference Links

Dear Samuel,

Both signals seem to be activated.
No matter what InTrend is, XCross and BreakOut are firing.

This would seem to be the only way to conditionally execute signals.
The StrategyBuilder does not allow for conditional execution.

Thanks,
Eric

{code segment}

if InTrend then
begin
    includesignal: "XCross", 5, 10;
end else
begin
    includesignal: "BreakOut", 10;
end;

{end}