Maxim Zharkovskiy
Technical indicators are essential part of any trading toolkit. Nowdays market reality is a high-speed trading, so it's important to watch closely price fluctations at a real-time mode.This application gives to the user the possibility:
Now you can build up your own trading strategy in the most exciting market segment - tech stocks.
The user set the following parameters:
Once symbol, date range and scale are choosen a stock chart appears and if necessary is redrawn.
In the current version of the application three indicators are given:
Let's have a look on an example: Microsoft, date range from '2001-01-01' until now, daily scale, indicator - MACD (see next slide)
library(quantmod)
getSymbols("MSFT", src = 'yahoo', from = '2001-01-01',auto.assign = TRUE)
chartSeries(MSFT,TA="addMACD()",theme = chartTheme("white"), type = "line")