Your user guide has been very helpful, but it always seems to end before it really explains my questions.
Like what is the difference between branching: "if, else if, else" and "if, if, if, else"?
When should bools be used and when should methods() be used.
I've tried using methods() and bools, but when I try to combine them, I get an error:
Operator '&&’ cannot be applied to operands of type ‘bool' and ‘void’ for the code:
protected override void OnBarUpdate()
{
if (TimeToTrade && UpTrend())
do something...
thanks

Comment