Skip to content

Commit

Permalink
chore(docs): mention that autoc is decomissioned (closes #337)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadicc committed Nov 23, 2021
1 parent 6b95d7e commit 0a6df7a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const results = await yahooFInance.search('AAPL', { someOption: true, etc });
```

Available modules:
[`autoc`](./docs/modules/autoc.md),
~[`autoc`](./docs/modules/autoc.md)~,
[`historical`](./docs/modules/historical.md),
[`quote`](./docs/modules/quote.md),
[`quoteSummary`](./docs/modules/quoteSummary.md) (submodules:
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const result = await yahooFinance.module(query, queryOpts, moduleOpts);
<a name="modules"></a>
## Modules

1. [autoc](./modules/autoc.md) - autocomplete, great for symbol lookup.
1. ~[autoc](./modules/autoc.md)~ - decomissioned, use [search](./modules/search.md) instead.
1. [_chart](./modules/chart.md) - chart, like historical on steroids.
1. [historical](./modules/historical.md) - historical market prices.
1. [quote](./modules/quote.md) - essential symbol info.
Expand Down
7 changes: 6 additions & 1 deletion docs/modules/autoc.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# autoc (auto complete)
# ~~autoc (auto complete)~~

NB: Yahoo decomissioned their autoc server sometime before 20 Nov 2021
(issue [#337](https://github.com/gadicc/node-yahoo-finance2/issues/337])).
Use [search](./search.md) instead (just like they do).


## Usage:

Expand Down
2 changes: 1 addition & 1 deletion docs/modules/quote.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ await yahooFinance.quote(symbol, queryOptions, moduleOptions);
### Symbol

Symbol name as used by Yahoo (often the stock ticker). You can find it
using [autoc](./auto.md) or [search](./search.md). You can also provide
using [search](./search.md). You can also provide
an array of symbols, and you'll receive an array of results back.

### Query Options
Expand Down

0 comments on commit 0a6df7a

Please sign in to comment.