How can I program R / to see global market every morning

Discussion in 'App Development' started by jk90029, Apr 17, 2014.

  1. Dear-

    As usual, most want to the global market up/down, for example, http://www.bloomberg.com/markets/

    For my (his) own layout, we like to program ourselves, with own(programmable) frame and layout.

    Here I like to use R to retrieve, for example,

    1) DowJone
    2) SnP
    3) Germany and France market changes

    with % figure and with colored bar

    *****************************************************************************

    Now, what is the R command to retrieve up/down percent, so that I can see everything in the morning as soon as I run MORNING() in R every morning?

    Probably it includes require() and/or library().
     
  2. Butterball

    Butterball

    Goto odesk.com and get someone to program this for you. Tell them to look into quantmod and quandl (both for data) and possibly ggplot2 for your graphs.
     
  3. Thanks for reply. I will check odesk.com

    ********************************

    It seems general freelancing work.

    For some special area for API use in selected brokerage (such as IB and TradeKing), is there any other suitable website to find some helper?
     
  4. 2rosy

    2rosy

    library(quantmod)
    getSymbols("SPY")
    pctchg=Delt(SPY$SPY.Adjusted)

    PM me for the elite version
     
  5. Appreciated.