Hi, I was wondering If it is possible to create a screener which will show the amount of float/share size and high volume for intraday trading for going long stocks?
Yes but do you want these values (float and high volume) to be shown or to be used as filters in order to sort the stocks?
Thank you for replying. I would like it to show the float and filter through the volume of 1000000+, if that is possible? Once again thank you.
It is not possible to know the real float of a stock since it is a fondamental data which is not available in ProScreener. However, sometimes float is referenced as only Volume of shares available or as stock price multiplied by Volume.
Anyway, you can filter the stocks by one of these 2 methods with the below code:
float = volume>1000000
screener[float](volume)
float = price*volume>1000000
screener[float](price*volume)