GetCashFlow: GetCashFlow

View source: R/GetCashFlow.R

GetCashFlowR Documentation

GetCashFlow

Description

Get data of quaterly Financial Cash Flows

Usage

GetCashFlow(Symbol = "SAP",

 URL = "yahoo", Silent = TRUE,Port=4445L,...)

Arguments

Symbol

ticker string

URL

provider of data as a string

yahoo: automatic web scrapping

morningstar: uses api to data bases

Silent

if no warnings=TRUE

Port

in the caseof yahoo: port accessable for direct internet connection

...

in the case of yahoo: further arguments for rsDriver

Details

yahoo and morningstar work currently

Value

dataframe of financial Cash Flow

Author(s)

Michael Thrun, Hamza Tayyab

References

Thrun, M.C., Knowledge Discovery in Quarterly Financial Data of Stocks Based on the Prime Standard using a Hybrid of a Swarm with SOM, in European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning (ESANN), M. Verleysen, Editor. 2019: Bruges, Belgium

See Also

GetFinancialTimeSeries

Examples

#DF=GetCashFlow(Symbol='SAP',URL='morningstar')


Symbols=GetYahooSymbols()
n=length(Symbols)
CashFlow=c()
for(i in 1:n){
  try({
  temp=GetCashFlow(Symbols[i],'yahoo',check=F)
  CashFlow=c(CashFlow,temp)
  })
  print(i)
}


Mthrun/TSAT documentation built on Feb. 5, 2024, 11:15 p.m.