AVGetSectorPerformance

AVGetSectorPerformance Current and historical sector performances calculated from S&P500 incumbents

new AVGetSectorPerformance(recalc_trigger: any): any
Parameters
recalc_trigger (any) (Optional) Argument to force recalc of function.
Returns
any: Current and historical sector performances calculated from S&P500 incumbents

AVSearchEquitySymbol

AVSearchEquitySymbol Search for equity symbols given a string

new AVSearchEquitySymbol(search_string: string): any
Parameters
search_string (string) A string representing the equity symbol to search for.
Returns
any: A list of possible matches to the query

AVGetAvailableCryptoCurrencies

AVGetAvailableCryptoCurrencies Gets the currently available crypto currencies.

new AVGetAvailableCryptoCurrencies(recalc_trigger: any): any
Parameters
recalc_trigger (any) (Optional) Argument to force recalc of function.
Returns
any: A list of available crypto currencies. Both code and description.

AVGetAvailablePhysicalCurrencies

AVGetAvailablePhysicalCurrencies Gets the currently available physical currencies.

new AVGetAvailablePhysicalCurrencies(recalc_trigger: any): any
Parameters
recalc_trigger (any) (Optional) Argument to force recalc of function.
Returns
any: A list of available physical currencies. Both code and description.

AVGetCurrentEquityQuote

AVGetCurrentEquityQuote Gets the current equity quote for a symbol.

new AVGetCurrentEquityQuote(symbol: string, field_name: string, recalc_trigger: any): any
Parameters
symbol (string) Equity symbol.
field_name (string) (Optional) The name of the specific quote field. If 'all' or not specified will return full quote.
recalc_trigger (any) (Optional) Argument to force recalc of function.
Returns
any: The global equity quote and associated info.

AVGetCurrencyExchangeRate

AVGetCurrencyExchangeRate Gets the current exchange rate between 2 currencies.

new AVGetCurrencyExchangeRate(from_currency: string, to_currency: string, field_name: string, recalc_trigger: any): any
Parameters
from_currency (string) Currency code converting from.
to_currency (string) Currency code converting to.
field_name (string) (Optional) The name of the specific quote field. If 'all' or not specified will return full quote.
recalc_trigger (any) (Optional) Argument to force recalc of function.
Returns
any: The exchange rate and associated info.

AVGetEquitySeries

AVGetEquitySeries Gets the historical equity quotes for a series.

new AVGetEquitySeries(symbol: string, interval: string, is_adjusted: string, opt_outputsize: string, recalc_trigger: any): any
Parameters
symbol (string) Equity symbol.
interval (string) Frequency of returned time series (Monthly,Weekly,Daily,60min,30min,15min,5min,1min).
is_adjusted (string) For raw equity quotes this is 'false'. Adjustments are for corporate actions.
opt_outputsize (string) (Optional: 'compact' default) Full or compact series (full, compact).
recalc_trigger (any) (Optional) Argument to force recalc of function.
Returns
any: The equity price history.

AVGetCurrencySeries

AVGetCurrencySeries Gets the historical exchange rate between 2 currencies.

new AVGetCurrencySeries(from_currency: string, to_currency: string, interval: string, opt_outputsize: string, recalc_trigger: any): any
Parameters
from_currency (string) Currency code converting from.
to_currency (string) Currency code converting to.
interval (string) Frequency of returned time series (Monthly,Weekly,Daily,60min,30min,15min,5min,1min).
opt_outputsize (string) (Optional: 'compact' default) Full or compact series (full, compact).
recalc_trigger (any) (Optional) Argument to force recalc of function.
Returns
any: The exchange rate history.

AVGetTechnicalIndicator

AVGetTechnicalIndicator Gets the specified Technical Indicator history for a specific equity. See Full Documentation

new AVGetTechnicalIndicator(symbol: string, indicator: string, interval: string, argument_array: range, recalc_trigger: any): any
Parameters
symbol (string) Equity symbol.
indicator (string) Name of the Indicator.
interval (string) Frequency of returned time series (Monthly,Weekly,Daily,60min,30min,15min,5min,1min).
argument_array (range) 2 Column range with arguments specfic to this indicator.
recalc_trigger (any) (Optional) Argument to force recalc of function.
Returns
any: The indicator history.