This is a trading item or a component that was created using QuantShare by one of our members.
This item can be downloaded and used by QuantShare Trading Software.
Trading items are of different types. There are data downloaders, trading indicators, trading systems, watchlists, composites/indices...
You can use this item and hundreds of others for free by downloading QuantShare.
Top Reasons Why You Should Use QuantShare:
Works with US and international markets (stock, forex, options, futures, ETF...)
Offers you the tools that will help you become a profitable trader
Allows you to implement any trading ideas
Exchange items and ideas with other QuantShare users
Our support team is very responsive and will answer any of your questions
We will implement any features you suggest
Very low price and much more features than the majority of other trading software
This item downloads French companies news data. Data retrieved from an RSS feed is transformed and inserted in a custom intraday database. The data is provided by a French website (www.boursier.com).
This news feed (RSS) is downloaded separately for each stock. The database, which stores the news items, is called 'france_rss_news' and it contains five fields.
These fields contain different pieces of information about the news articles. The 'Date' field gets the news date, the 'Title' field gets the news title, the 'Description' field gets a small description of the news content, the 'Tag' field tells what the news is about (Example: Chiffre d'affaires, Resulats, Avis AMF, Divers...) and finally the 'Link' field gets the URL of the news article.
Here are some examples of how this item's data can be used with the QuantShare language:
To plot a time-series that displays the number of news per bar:
a = GetDataCount('france_rss_news','title');
plot(a, 'link', colorRed,ChartLine,StyleOwnScale);
To plot a time-series that shows news articles that are about the company revenues (Chiffre d'affaires):
a = GetDataStringCount('france_rss_news', 'tag', 'Chiffre daffaires');
plot(a, 'link', colorRed,ChartLine,StyleOwnScale);
Here is an advanced trading rule; it uses the Buy Indicator:
a = GetDataStringCount('france_rss_news', 'tag', 'Chiffre daffaires');
d = buy_indicator(a > 0, 10, 300) > 5 && a > 0;
plot(d, 'link', colorBlack,ChartLine,StyleOwnScale);
It plots a value of one on bars where news with the tag 'Chiffre daffaires' occurred and when the average future 10-bars return of all the news that has the same tag (lookback period of 300 bars) is above 5%.
You have to log in to bookmark this object What is this?
>>>> More trading objects? click here to search for trading sytems, downloaders, screens, custom drawing tools, indicators... by country, market or style.