all.equal.instrument: instrument all.equal method

Description Usage Arguments Note Author(s) See Also Examples

Description

This is most useful for seeing the difference between two instrument objects.

Usage

1
2
3
  ## S3 method for class 'instrument'
 all.equal(target, current,
    char.n = 2, collapse = ";", ...)

Arguments

char.n

If length of a character vector is char.n or less it will be treated as a single element. A negative value for char.n will be treated as if it were positive Inf.

collapse

Only used if a character vector is of length less than char.n. Unless collapse is NULL, it will be used in a call to paste. If collapse is NULL, each element of the character vector will be compared separately.

Note

ALPHA code. Subject to change

Author(s)

Garrett See

See Also

getInstrument, instrument.table, buildHierarchy

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## Not run: 
currency("USD")
stock("SPY", "USD", validExchanges=c("SMART", "ARCA", "BATS", "BEX"))
stock("DIA", "USD", validExchanges=c("SMART", "ARCA", "ISLAND"),
     ExtraField="something")

all.equal(getInstrument("SPY"), getInstrument("DIA"))
all.equal(getInstrument("SPY"), getInstrument("DIA"), char.n=5)
all.equal(getInstrument("SPY"), getInstrument("DIA"), char.n=5, collapse=NULL)

all.equal(getInstrument("DIA"), getInstrument("USD"))

## End(Not run)

R-Finance/FinancialInstrument documentation built on May 8, 2019, 3:52 a.m.