Optuma Forums › Optuma Scripting › Close crosses below st › Reply To: Close crosses below st
June 21, 2021 at 8:57 am
#65030
- Topics: 5
- Replies: 625
- Posts: 630
Hi,
If the second criteria has to occur directly after the first criteria triggers the following script would work:
1 2 3 4 5 6 7 8 |
// Close crosses below Super Trend V1 = CLOSE() CrossesBelow ST(MULTI=2.00) ; //Close crosses below previous low V2 = CLOSE() CrossesBelow LOW(1) ; //V1 passed yesterday and V2 passed today V1[1] == 1 and V2 |