search for: dividends

Displaying 20 results from an estimated 74 matches for "dividends".

Did you mean: dividend
2018 Mar 15
1
Adjusting OHCL data via quantmod
...-data-and-adjusting-for-corporate-actions?ex=10) (and quantmod documentation) to determine how Alpha Vantage's data is adjusted. Here are my findings: -It seems that Alpha Vantage's OHLC data are unadjusted, and the adjusted close column provided is adjusted for splits, and split-adjusted dividends. -If I use AV's adjusted close column to adjust my OHCL data, my data will be adjusted for splits, and split-adjusted dividends. (So, I can use adjustOHLC(), with argument use.Adjusted = TRUE to adjust for splits, and split-adjusted dividends) Evidence: ### library(quantmod) #AV data getSymb...
2008 Oct 02
1
RBloomberg to get dividend
I try to use RBloomberg to get the dividend for IBM. However, blpGetData(conn, "IBM EQUITY", field="EQY_DVD_HIST_ALL", start=as.chron("1980-01-01")) doesn't work. It returns EQY_DVD_HIST_ALL (10/02/08 14:46:36) NA I have to used blpGetData(conn, "IBM EQUITY", "EQY_DVD_SH_12M_NET",
2009 Apr 27
1
Extract one element from yahooKeystats data
I am trying to extract one particular piece of data(Float) from all the data returned by yahooKeystats, but thus far I'm having no luck. This is what I've got so far: > library(fImport) Loading required package: timeSeries Loading required package: timeDate > data<-yahooKeystats("IBM") trying URL 'http://finance.yahoo.com/q/ks?s=IBM' Content type 'text/html;
2001 Feb 01
1
constructing a vector from a dataframe and another vector
...20010928 GE 0.137 and a character vector of symbols that might, for example, look like this: syms <- c("ADBE", "AAPL", "ED", "ED", "ADBE") >From these two data objects, I'd like to construct the following numeric vector of dividends: divvec <- c( .025, .025, .025, .550, .410, .550, .410, .550, .410, .025, .025, .025) In other words, I'd like to construct a numeric vector by replacing each symbol in syms by the dividends associated with that symbol in the dataframe divs. Symbols can occur more than once in syms, an...
2020 Aug 30
5
BUG: complete misunterstanding of the MS-ABI
Objects compiled for the MS-ABI don't conform to it! Data types beyond 64 bit MUST BE returned by the callee via the hidden first argument allocated by the caller, NOT in XMM0! Demo/proof: from this source --- llvm-bug.c --- #ifndef __clang__ typedef struct { unsigned __int64 low; unsigned __int64 high; } __uint128_t; #else __attribute__((ms_abi)) #endif __uint128_t
2014 Oct 02
0
[PATCH] drm/nouveau: gk20a: Fix type of dividend in do_div()
From: Thierry Reding <treding at nvidia.com> The semantics of do_div() are (see include/asm-generic/div64.h): uint32_t do_div(uint64_t *n, uint32_t base) Using a different type will therefore cause the following warning (as seen on xtensa/allmodconfig): CC [M] drivers/gpu/drm/nouveau/core/subdev/clock/gk20a.o In file included from arch/xtensa/include/generated/asm/div64.h:1:0,
2007 Aug 18
1
[LLVMdev] Soft floating point support
This patch supplies software IEEE floating point support. The comment from the patch reproduced below says all there is to say. This patch contains the prior "cleanup" patch; please don't apply that one. Please let me know of any bugs. It is tested reasonably well, but until I put together random tests it's hard to have 100% confidence. Neil. /* A self-contained host- and
2005 Jun 23
2
quotient and remainder
hi netters Is there a function in R that can compute the quotient and remainder of a division calculation? such that when 11 is given as the dividend and 5 the divider, the function returns 2(quotient) and 1(remainder). Thanks a lot! _________________________________________________________________ 伱佲伔佈佅伮佋佖 MSN Explorer: http://explorer.msn.com/lccn/
2007 Nov 27
2
[LLVMdev] Other Intrinsics?
Do you have plans to add other intrinsics? I'm curious as to why there is an llvm.sin intrinsic and an llvm.cos intrinsic, but no llvm.atan intrinsic. Why is there an llvm.pow intrinsic but no llvm.log intrinsic? Also, have you thought about integer intrinsics like multiprecision multiply (u32xu32->u64) and multiprecision divide (u64/u32->(dividend:u32,remainder:u32))? Regards,
2012 Aug 27
2
Assigning colors on low p-values in table
Hi all R-users, I?m trying to assign colors on those p-value in my table output that fall above a certain critical value, let?s say a p-value >0.05. My table looks like this: Assets ADF-Level P-Value ADF-First D P-Value ADF-Second D P-Value [1,] Liabilities -2.3109 0.1988 -3.162 0.025 -6.0281
2007 Mar 22
2
[LLVMdev] a question about constant fold for fdiv
Reid Spencer wrote: > On Thu, 2007-03-22 at 15:50 -0700, leo han wrote: > >> Hello, I have a question about the constant folding for fdiv instructions. >> For the instruction "fdiv double 0.0, 0.0", the folded result is inf. I >> think this should be nan. Can anyone tell me why it is not nan? >> > > I think the specification says that it is
2006 Jun 26
0
[klibc 35/43] sparc support for klibc
The parts of klibc specific to the sparc architecture. Signed-off-by: H. Peter Anvin <hpa at zytor.com> --- commit 1b5c93603ed3460ed1fba9e5d453a6fa54d0ccce tree 7fb0a134b3add408c02b470616d440ad398d86d3 parent 94473ed85b00ec45ff8ee6cac62f60a368ff4534 author H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun 2006 16:58:47 -0700 committer H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun
2004 Jan 07
0
One thing to watch out for is adjustments: - if the data is not adjusted for dividends and splits then you may be able to just download data since your last download yourself but depending on what you want to do with the data you may get misleading results. For example, if the stock trades at $100 and there is a 2 for 1 split then the next day there will be twice as many shares wit...
2007 Jun 14
1
ISOLINUX: Updating ISOLINUX.CFG Q
I have a non-bug related question, which has been giving me fits for a while. Can ISOLINUX.CFG be updated on a multi-session disc ? It seems not, as I make m/s CDs all the time and can change every other file on the disc, exc ISOLINUX.CFG. My best guess at this point is that ISOLINUX.BIN can't access secondary sessions on the disc, pos related to the boot-info-table patch. Whether
2007 Mar 22
0
[LLVMdev] a question about constant fold for fdiv
Jeff Cohen wrote: > Reid Spencer wrote: >> On Thu, 2007-03-22 at 15:50 -0700, leo han wrote: >> >>> Hello, I have a question about the constant folding for fdiv instructions. >>> For the instruction "fdiv double 0.0, 0.0", the folded result is inf. I >>> think this should be nan. Can anyone tell me why it is not nan? >>>
2007 Oct 11
5
cpufreq: weird bug in set_time_scale
On my test machine, in set_time_scale(), the following code: ts->mul_frac = div_frac(MILLISECS(1000), tps32); crashes with a division by zero error if tps32 == 1000000000d. Unfortunately, tps32 is often that value. Does anyone know why this happens? I''ve resolved it temporarily by checking for tps32 == 1000000000 and changing the value slightly (101000010d works fine on my test
2019 Jan 30
2
[FORGED] r-base is already the newest version (3.5.2-1bionic)
...ers most: The first two columns are 'ii'. That is as official to "you're good" as you'll ever get. Again, I would consider familiarising myself with some Debian/Ubuntu/Mate/... tutorials. It's not unlike becoming familiar with S/R terminology. It will pay back. With dividends. Dirk -- http://dirk.eddelbuettel.com | @eddelbuettel | edd at debian.org
2008 Dec 14
1
how to convert factors to numbers
...relatively new to using R. I am using R version 2.8.0. I have a program that downloads stock data from Yahoo! Finance and stores it to a text file on my hard drive. The text file contains the date, opening price, high price, low price, closing price, volume and adjusted price (i.e., adjusted for dividends and splits). I want to read and manipulate the data in R. However, when I use read.table, it treats all of the data as "factors" and I do not know how to treat the data as numbers: > spy<-read.table("c:\\StockData\\SPY.txt") > attach(spy) > names(spy)<-c("...
2008 Feb 19
1
recursive function help
...I can see. [Yes, this is a recursive function for multivariate cumulative normal. It seems to match (so far for k=2 without recursion) the existing R functions from packages mvtnorm and mnormt. It is from D. Cassimon, et al. Closed-form valuation of American call options on stocks paying multiple dividends. Finance Research Letters 4 (2007) 33-48.] Thank you to anyone who can shed some light on this. David L. Reiner, PhD Rho Trading Securities, LLC
2008 Sep 02
1
R Newbie: quantmod and zoo: Warning in rbind.zoo(...) : column names differ
...o; I am trying following but getting a warning message : Warning in rbind.zoo(...) : column names differ, no matter whatever I do. Also I do not want to specify column names manually, since I am just writing a wrapper function around getSymbols to get chunks of data from various sources - oanda, dividends etc. I tried giving col.names = T/F, header = T/F and skip = 1 but no help. I think problem is that getSymbols returns a zoo objects whose index/first column is null. I write these data in a file and read it again using read.zoo; when I try to append to these data (using one more call to getSymb...