Thanks MicroDrie for your interest. I really appreciate this.
I have been to much inefficient explaining my case, so I am going to present it from a different perspective.
The process that I use in windows (coded in vb.net) and that I would like to emulate in B4A has three parts:
1. I execute a call to the Yahoo Finance web page using a WebRequest object wr=WebRequest.Create("
https://finance.yahoo.com/quote/" & tkt), where tkt is the code of the stock ticket, like TSLA for Tesla o V for Visa.
2. I extract the text of the WebRequest with the method
wresp = wr.GetResponse()
3. Once I have the text, I seach it looking for some fixed words inside the text and obtaine the price and other data of the stock, using String functions.
a. Can I do something similar using B4A?
Or
b. If I have an app running in my cell named Yahoo Finance that shows the price of a stocks list at the screen, can I develop an app that extracts the prices from that app?