Conversation
If no symbols are found
for(i in 1:length(Symbols)) {
Browse[2]> 1:length(Symbols)
[1] 1 0
But then this is correct.
Browse[2]> seq_along(Symbols) # REPLACED
integer(0)
Browse[2]>
Heavily based on getSymbols.MySQL.Rd, but it has some PostgreSQL specifics.
|
Adds the function ( with documentation ) getSymbols.PostgreSQL This very very similar to the getSymbols.MySQL code. What is more/different follows. This function can have PostgreSQL tables named MSFT returning symbols and columns MSFT and MSFT.Open. Also, this function can have PostgreSQL tables named msft returning symbols Two extra parameters may be passed: options and search_path. options: is a pass-through to the RPostgreSQL connection. search_path: allows the user to set a specific search path when looking for PostgreSQL tables. Otherwise, this is the same as the getSymbols.MySQL code. |
|
Please close. I have implemented this elsewhere. |
If no symbols are found
But then this is correct.
I made those changes everywhere in the file.