Giter VIP home page Giter VIP logo

vesper_android's People

Contributors

ambertbk avatar ericchen1248 avatar ginomcfino avatar simonangel1 avatar varocarras avatar

Watchers

 avatar  avatar  avatar

vesper_android's Issues

Load in user watchlist from firebase. Add new items to watch list.

Load in the user watchlist from firestore, You can use this code snippet.

DocumentSnapshot snapshot = State.getDatabase().collection("user").document(State.currentUser.getUid()).get().getResult();
List<String> watchlist = (List<String>) snapshot.get("watchlist");

This will need to chain in to Alvaro's api, to fetch current stock price and growth. For now just use some placeholders for them.

Create a ListView on the Homepage (bottom portion of the screen.) Each item in the list view is a item with
"TICKER PRICE CHANGE" fields.

Implement a function inside lib.Helpers that will add a new item to the watchlist, You can use something like this

// Code I used to update a device array of a user.
State.database.collection("users").document(State.currentUser.getUid()).update("devices", FieldValue.arrayUnion(State.fcmDeviceToken));

We will chain the UI side of adding it to the watchlist in the future (probably still you but I'll give you more details later on)

Test issue

Testing an issue for slack notifications

Provide a static function inside alphavantage service to request data on a ticker

public TYPE getInfo(string TICKER)

Return the most current data we have of the stock price and the growth (daily growth?)
====^^==== required

====v v ==== better to have, not absolutely required.
Would be better for latency and our API quota if you could make it so I can pass in a Enumerable<String> tickers, and you can get all these data in a single API call, returning them as a list of strings

Filter news based on ticker.

public TYPE getNews(string ticker)

Pull news data from yahoo. Filter and keep only news that is relevant to the ticker.

Create a list view that will display each item with the follwing

  1. News Title
  2. News Data,
  3. Link

And when clicking on this item, will open up a webview that loads this page, as well as an X button to close the webview. We do NOT want to switch activities to view the different news.

This list view will need to be placed on a page the Alvaro is currently working on, so make sure your xml can be copied over directly.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.