Carrot reference
Functions

stockPrice()

Given a Date, returns the value of shares on that date.

Syntax

stockPrice([date][, symbol])

  • date - (optional) the date of the returned stock price
  • symbol - (optional) the ticker symbol of the stock
  • Return type: Number

Sample usage

stockPrice('2019-01-01') returns the value of the stock price on 01/01/2019.

Supported data types

Input type

Return type

Logic

Date

Number

If a Date value is passed, the stock price on that date will be returned.

Unsupported data types

Null

Unsupported data types return Null.