Point
Syntax
Point(): numberReturn Value
Description
Example
// Get point value
const point = this.api.Point();
console.log(`Point value: ${point}`);
// Calculate spread in points
const spreadPoints = (this.api.Ask() - this.api.Bid()) / this.api.Point();
console.log(`Spread in points: ${spreadPoints}`);
// Calculate price movement
const priceChange = (currentPrice - previousPrice) / this.api.Point();
console.log(`Price moved ${priceChange} points`);Last updated