MinDailyCapital = 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
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
screener[setup and close>VWAP]
can someonw help me with the code. Instead of MinimumDailyCapital, I ineed minimum trades shares today is 10.000 can someone help me with this?
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 🙂
You mean replacing the current conditions with Volume, like this one?
//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
screener[setup and close>VWAP]
hi, yes but price must be 1-20usd. Thanks in advance
There you go:
//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]
hi and big big thanks. but it says something is wrong with line 18.
Use MyPrice instead of Price
Dear Ivan,
Can we also add that stock must be at least 7% up for today? Is that possible?
Thanks in advance
I meant change 7% up for today or more. Thanks.
JSParticipant
Senior
Hi,
TodayChangePerc = (Close / DOpen(0) – 1) * 100 >= 7
which line should I add it? it gives me an error when I am adding it. Thanks in advance
JSParticipant
Senior
Try this one:
MinTradedShares = 10000
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
myPrice=(close>=1) AND (close<=20)
TodayChangePerc=(Close/DOpen(0)-1)*100>=7
screener[setup and close>VWAP and myPrice and TodayChangePerc]