Wolfram Computation Meets Knowledge

How do I use financial indicators as functions?

Financial indicators take OHLCV (Open, High, Low, Close, Volume) datasets as arguments and return a list of values. For example, the function FinancialData provides Google’s OHLCV values:

data = FinancialData["GOOG", "OHLCV", All];

FinancialData returns a list of pairs, each consisting of the date and the OHLCV values on that date. Consider the first pair of values in data:

First[data]
{{2004, 8, 19}, {100., 104.06, 95.96, 100.34, 22351900}}

The first list represents the date of August 19, 2004. The second list gives the open, high, low, close, and volume values for the stock on that date, respectively.

For example, we can run a simple moving average on the data. FinancialIndicator["SimpleMovingAverage"] represents a function that takes our data and returns the simple moving average. To apply the simple moving average to the data, evaluate:

FinancialIndicator["SimpleMovingAverage"][data]

By looking at the documentation for the SimpleMovingAverage indicator, you can find how to specify the time range that the average covers. The function FinancialIndicator["SimpleMovingAverage", 50] averages over fifty days for example.

Is this article helpful?
Yes
No

Any comments?

Thank you for your feedback.

Submit

Contact Support

Whether you have a question about billing, activation or something more technical, we are ready to help you.

1-800-WOLFRAM (+1-217-398-0700 for international callers)

Customer Support

Monday–Friday
8am–5pm US Central Time

  • Product registration or activation
  • Pre-sales information and ordering
  • Help with installation and first launch

Advanced Technical Support (for eligible customers)

Monday–Thursday
8am–5pm US Central Time

Friday
8:30–10am & 11am–5pm US Central Time

  • Priority technical support
  • Product assistance from Wolfram experts
  • Help with Wolfram Language programming
  • Advanced installation support