Hello,
Is it possible to use following criteria in WLD for buy setup?
CODE:
Please log in to see this code.
If it's possible, what's the correct syntax?
Appreciate for the help.
Barry
Size:
Color:
Yes it's possible. However, it's not purely a Wealth-Lab question: that's C# 101.
CODE:
Please log in to see this code.
Check out this Wealth-Lab Wiki FAQ:
How do I start with C# ?
Size:
Color:
Just to mention
if( !(A<B && A>C) )
- should be equivalent to -
if (A>B || A<C)
Size:
Color:
Thanks for the support.
Size:
Color: