I currently planning for build a stock trading app using react for study purpose. Is there is any api that can give realtime stock price data and if you can please suggest me a good charting package for my project.
Free realtime stockprice data and how to add stock charts like realworld trading app
1.5k Views Asked by Shahin Salim At
1
There are 1 best solutions below
Related Questions in REACTJS
- What is `_dereq_()` inside React?
- React TypeError: React.renderComponent is not a function
- React - saving a component in the ref callback
- React Rails component: manually triggering a re-render
- React, ES6 - getInitialState was defined on a plain JavaScript class
- How to get multiple selected options value in React JS?
- React.render replace container instead of inserting into
- reactjs datagrid use html
- props is not initialized in react component
- How to display xml data using Reactjs
- hooking up the data model in ReactJS - syntax
- ReactJS: How to use an immutable empty array or object
- How to use Sinon.js FakeXMLHttpRequest with superagent?
- React select onChange is not working
- ReactJS - Tutorial Comment System > Threaded commenting
Related Questions in DJANGO
- Display images on Django Template Site
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Django invalid literal for int() with base 10:
- Removing URL features from tokens in NLTK
- Django Noob URL to from Root Page to sub Page
- Django Admin tables not displaying correctly
- Django with chartkick
- Django urls.py not rendering correct template
- django form errors before submit
- django admin: custom app_index with context
- Display multiple models in one view in Django
- Unexpected NoReverseMatch error when using include() in urls patterns
- Search for a key in django.core.cache
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- Django flush won't load fixtures
Related Questions in CHARTS
- disable sorting in lineChart series in Primefaces?
- xaml c# chart with custom axis label
- D3 Pie Chart with only one part of JSON data
- How to add gradient color fill to the points of scatter plot using google Charts?
- Adding value in Google Charts
- vertical bar chart with with user input and validation
- Pure CSS3 or SVG animated Doughnut Chart
- Highchart Z-Index practice not functioning
- Changing code to get vertical bars in javascript
- Custom chart in Excel
- How to set the same number of data points in a Line Chart?
- How to change Google Charts number format for controllers?
- How to Visually represents Parent->Child->Grand Child on Small screen
- How to make xaxis to show dates using jqPlots
- AmCharts - Position ChartScrollbar on Bottom?
Related Questions in TRADING
- PlotText result is overlapped in amibroker
- Error while using aroon function in R
- How to get realtime stock market quotes through an http request without flooding/hitting request limit (Algotrading)
- What's the maximum end date value for bloomberg intraday request
- Python pandas "filter" a time series for trading days only
- Nonce Override in python ccxt
- QuickFix/n - MDStreamID
- How do you create a new array from all NON empty values in another array?
- Pandas dataframe - timeseries overnight returns
- CEX order book market update
- UI for a trading application in C# WPF
- Routine to work out if today is a trading day on the NYSE?
- How to show real time data on a windows and a web application?
- Black Scholes options pricing
- How can i get the value of previous highest high in pinescript?
Related Questions in STOCKTWITS
- Implementing Stocktwit Share in php loop?
- How to specify dates when retrieving a stocktwits stream
- Post a chart in python StockTwits API
- where can i find nifty 50 stocks list yearwise, from 5 years back
- How to use the watchlist ID to access messages via the Stocktwits API?
- Stocktwits api public streams/symbol stops working
- StockTwits API Streaming and Search Used Like Twitter Streaming
- Implementing StockTwits share in WordPress sharing
- Vader lexicon results don't add up to 1.0
- Free realtime stockprice data and how to add stock charts like realworld trading app
- sentiment analysis-training for 3 classes sentiment using 2 classes dataset
- Access_token is authorizing but subsequent calls reset to the owner of the clientid
- Successful Message Push To StockTwits, Chart Not Showing
- Can you use the StockTwits api without using OAuth?
- REST API to stocktwits.com in R
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As your question is vague, it all depends on what you want to achieve. From my experience in working in wealth management, you will not find a reliable API and especially realtime for free.
If you're making a PoC, you might want to use EOD data which is usually available for free.
EOD API shortlist:
If you really need reliable realtime data, you might want to have a look at :
The lists written above are not exhaustive and i have no interest in any of those API's listed. Just run a proper google search and I am sure you will find what fits you.
Beside, concerning the data visualisation library your tags mention django and reactjs. It is not very clear if you want to display data from a ui framework or from django directly. Therefore I will list what I know the most :
Hope my answer will give you some lights.