can someone help me ad here 7%up

Forums ProRealTime English forum ProScreener support can someone help me ad here 7%up

  • This topic has 1 reply, 2 voices, and was last updated 7 hours ago by avatarJS.
Viewing 2 posts - 1 through 2 (of 2 total)
  • #252811

    HI I have a code:

    //MinDailyCapital = 10000
    MinTradedShares = 10000
    //MinPrice = 1
    //MaxPrice = 20

    //setup = (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
    setup = (volume >= MinTradedShares)
    if intradaybarindex=0 then //day<>day[1] then
    d=1
    VWAP=typicalprice
    else
    d=d+1
    if volume >0 then
    VWAP = SUMMATION[d](volume*typicalprice)/SUMMATION[d](volume)
    endif
    endif

    Price = (close >= 1) AND (close <= 20)

    screener[setup and close>VWAP and Price]

     

    But I also need that stock to be 7%up or more for today, does someone can help me with this?

    #252960
    JS

    Hi,

    TodayChangePerc = (Close / DOpen(0) – 1) * 100 >= 7

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

Create your free account now and post your request to benefit from the help of the community
Register or Login