Getting Started example not working

I am using: VCcode, JavaScript, NodeJS

I copy pasted the example in
Getting Started

and I get this error in the console:

const params = Object.assign(Object.assign({}, options), { symbols: symbols.join(“,”), limit: limit, page_token: pageToken });
TypeError: symbols.join is not a function

symbol = "BTCUSD";

Must be:

symbol = ["BTC/USD"];
1 Like