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
The Year to date change is a trading indicator that is usually used to calculate the percentage change of a stock's last closing price compared to the previous year close price. You can also use the indicator to calculate the Year to date percentage change of any other time-series or indicator.
The trading indicator name is "YearGain". The first and only argument it accepts is the time-series that will be used to calculate the Year to date percentage gain. Example: YearGain(close) to get a stock percent increase or decrease in a given year. The indicator won't work if historical data of a stock covers less than one year.
The indicator has many applications. For example, the indicator can be applied to calculate the YTD change of another stock or index and compare that value to the YTD change of the current stock.
a = YearGain(GetSeries("^GSPC", close));
b = YearGain(close);
res = b - a;
In the above example, I simply referenced an external index (S&P 500) using the "GetSeries" function, and then calculated the difference between the Year to date change of current active stock and the Year to date change of the S&P 500 Index. The result can be called the Year to date relative strength index.