PureBytes Links
Trading Reference Links
|
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
|