above VWAP

Viewing 5 posts - 1 through 5 (of 5 total)
  • #252771

    can someone help me with the code:

     

    MinDailyCapital = 100000
    // The minimum total capital traded today, yesterday, or the day before. Capital is calculated as price * volume.

    MinPrice = 1
    // The minimum price of each security.

    MaxPrice = 20
    // The maximum price of each security.

    SCREENER [(volume[2] * DClose(2) > MinDailyCapital or volume[1] * DClose(1) > MinDailyCapital or volume * DClose(0) > MinDailyCapital)AND close > MinPrice AND close < MaxPrice AND (close / DClose(1) – 1) * 100 > 5](abs(1 – close / DClose(1)) * 100 AS “var”)
    // Sorting criteria of results: highest variations in price today (gains or losses).

    I need it the price would be above VWAP,

     

    #252792

    Hi. Here you have:

    1 user thanked author for this post.
    #252798

    Please post your topic in the correct forum:

    •  ProRealTime Platform Support: only platform related issues.
    • ProOrder: only strategy topics.
    • ProBuilder: only indicator topics.
    • ProScreener: only screener topics
    • General Discussion: any other topics.
    • Welcome New Members: for new forum members to introduce themselves.

    I moved it from ProBuilder. Thanks 🙂

     

     

    #252799

    hi, yes but price must be 1-20 usd. thanks.

    #252803

    @Zasinas2000

    Do not double post. Ask your question only once and only in one forum. All double posts will be deleted anyway so posting the same question multiple times will just be wasting your own time and will not get you an answer any quicker. Double posting just creates confusion in the forums.

    This topic will be closed.

     

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘above VWAP’ is closed to new replies.