If I want to pull just monthly time series, how do I change the following RHISORY formula?
RHistory(A4:D4,".Timestamp;.Close","START:"&$A$2&" END:"&$A$3&" INTERVAL:1D","FRQ:SNAP","SORT:ASC TSREPEAT:NO NULL:" &"SKIP" &" Transpose:N",A7)
@salman.khoja01
You can use the Excel Formula Builder to check valid values of parameters. For monthly data, the Interval is 1MO.
INTERVAL:1MO
According to the Eikon Excel Help page, the valid values of Interval are:
INTERVAL defines the interval between each data point retrieved. The list of available values is instrument and field-specific. It can have these values.{TICK, TAS, TAQ, TASTAQ, 1M, 5M, 15M, 60M, 1D, 1W, 1MO, 1Y}INTERVAL:TICK to retrieve data for each change in a particular price value (trade price, bid, ask, and so on) for the requested instrumentINTERVAL:TAS to retrieve historical time and sales data, that is, a historical record of trades for the requested instrument, sorted by timeINTERVAL:TAQ to retrieve historical time and quotes data, that is, a historical record of quotes for the requested instrument, sorted by timeINTERVAL:TASTAQ to retrieve time series data for trades and quotes, that is, a historical record of trades and quotes, sorted by timeINTERVAL:1M for 1 minuteINTERVAL:5M for 5 minutesINTERVAL:15M for 15 minutesINTERVAL:60M for 60 minutesINTERVAL:1D for 1 dayINTERVAL:1W for 1 weekINTERVAL:1MO for 1 monthINTERVAL:1Y for 1 yearDefault value: None.You must define INTERVAL for RHistory.