Announcement

Collapse
No announcement yet.

Stocks is moving higher for 45 minutes

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Stocks is moving higher for 45 minutes

    Hi,

    I'm looking to build my own indicator,

    i want to build when a stock is moving higher from the previous close and is moving higher for 45 minutes on a 15 minute timeframe (3 candles) and the price is also more than $1 up from the previus close than I want an alert.

    regards

  • #2
    my code for a 3 bar move so far:

    if(open(-2) > close(-2) && high(-1) < high(-2) && low(-1) < low(-2) && low(0) > low(-1) && high(0) > high(-1) )

    How can I add the condition the move between open(2) - open(0) > 1?

    Comment

    Working...
    X