Is it possible to use "if not" criteria for buy setup?
Author: lookingbackon
Creation Date: 3/10/2011 3:09 AM
profile picture

lookingbackon

#1
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
profile picture

Eugene

#2
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# ?
profile picture

Cone

#3
Just to mention

if( !(A<B && A>C) )

- should be equivalent to -

if (A>B || A<C)
profile picture

lookingbackon

#4
Thanks for the support.
This website uses cookies to improve your experience. We'll assume you're ok with that, but you can opt-out if you wish (Read more).