Super Trend - True/False statement help

Hello Darren,
I want to create a True/False statement for my watchlist when the condition is met on the SuperTrend. I asked the Scriptor Bot, but it is giving me all sorts of runarounds.

CLOSE() CrossesAbove ST(BARS=10, MULTI=1.00)
CLOSE() CrossesAbove ST(MULTI=2.00, BARS=11)
CLOSE() CrossesAbove ST(MULTI=3.00, BARS=12)

Same for the Crosses Below.

Thank you,
Mo

Here is an AMD chart that I managed to display with bars, but I couldn’t create a statement for it.

Hi Mo,

We had a look at the logs and the scripterbot gave the correct formula for your request (close crossing above the 3 SuperTrends on the same day).

If you just want to show when all 3 are above the ST (regardless of when they crossed) then replace CrossesAbove in the formula with >

Okay, thanks. I’ll give it another try and see how it goes.