|
ap·pren·ticeGuru
 Veteran
 Posts: 123
Joined: 10/22/2010
Location: Columbia, MD
User Profile |
Happy weekend All.
I need help in syntax of following:
Assuming I have an "omniscript" of any kind as a filter block for Long & Short trend:
a = Long trend
b = Short trend
c= Consolidation, where trend of a & b intersect together
Looking for a system to extract "c" so no signal is fired when there is an overlap of a & b.
Or is there another way to go around this in the strategy filter block ?
An example pic is attached for your review.
Any ideas. Thanks.
Attached file : SignalConflict01.png (92KB - 179 downloads)
|
|
Jim Dean
 Sage
       Posts: 3433
Joined: 3/13/2006
Location: L'ville, GA
User Profile |
Long: a and not(b)
Short: b and not(a)
… if I understood you correctly
|
|
ap·pren·ticeGuru
 Veteran
 Posts: 123
Joined: 10/22/2010
Location: Columbia, MD
User Profile |
Yes, correctly interpreted.
|