Hello
I’d like to fetch data from Alpha Vantage and save it to Backendless and (later) create a Dashboard of processed data on frontend.
I have the response object in Page Data, which looks like this:
and I’d like to save like Symbol ( MSFT), time stamp, indicator ID (SMA) and its value to DB, but I have problems with manipulating of nested, complex objects.
Could anyone suggest me a YT video, a docs page where such a use case is detailed?
Thank you!
when I run mine ( also printing and logging extracted data of tickerSymbol), my log shows it is undefined.
also, my code saves a record into DB, but without the data I need (tickerSymbol), so DB table only shows: objectId, ownerId, created, updated.
I use input fields of a page to set up API call query parameters and it looks like this:
In which component did you define variables: “avResponse” and “objectToSave”?
I did it in Button’s On Click event.
When I create them on page level ( On Page Enter ) as empty objects, they are not available in Button logic level.
Where do you think I go wrong?
Thank you!
You should define all the variables at the same level where the logic is. Add more print statements to log everything you can, such as avResponse_BAK, the result of Get property "2 Symbol", etc. If the data is not being saved in the database, it means it get into the object you’re saving.
Just to inform others who might find this thread later:
the query what Mark and I made was different:
in my case tickerSymbol has a "1: Symbol" key,
while in Mark’s query, which worked with his Codeless logic, it is: "2. Symbol" !
So check it for yourself before copy it
Thank you Mark!