Ensure that you are within a function that has candle data passed into it.
Then you can use candle.high, candle.low as regular variables.
etc
Code:
function check(candle) {}
Then you can use candle.high, candle.low as regular variables.
Code:
console.log(`Candle High = ${candle.high}`);
etc