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?
JSParticipant
Senior
Hi,
TodayChangePerc = (Close / DOpen(0) – 1) * 100 >= 7
@Zasinas2000
As I have already asked you to do and as well described in the basic rules highlighted in YELLOW below, 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.
Thanks 🙂
my apologies, I am new member here, will stick to the rules :), thanks for informing
hi again,
it seems to be it doesnt work correctly, please check attached image:
any chances someone can double check this filter? as it is doesnt work properly. Thanks in advance.