PureBytes Links
Trading Reference Links
|
Yes, you can create compound conditional statements as in your example.
Best regards,
Benjamin Blanco,
( former TradeStation Technologies, Inc. employee of six years )
http://www.blancofamily.net/ezlang.htm
----- Original Message -----
From: "Romi Ghose" <r.ghose@xxxxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Thursday, August 29, 2002 9:58 PM
Subject: EL Question
Just as an example can I write a condition statement like this?:
Condition1 = Plot1 <> Plot2 AND Plot1 > Plot2 AND Plot1[1] < Plot2[1];
or do I have to break it down like this?:
Condition1 = Plot1 <> Plot2;
Condition2 = Plot1 > Plot2;
Condition3 = Plot1[1] < Plot2[1];
Thanks in advance for any input
Romi
ps: I'll be using these conditions to generate alert in radarscreen
|