// Get current bid price
const bid = this.api.GetMarketInformation('EURUSD', this.api.APIConstants.PRICE_TYPE_BID)
console.log(`Current bid: ${bid}`)
// Get symbol point value
const point = this.api.GetMarketInformation('EURUSD', this.api.APIConstants.SYMBOL_POINT_VALUE)
console.log(`Point value: ${point}`)
// Get decimal places
const digits = this.api.GetMarketInformation('EURUSD', this.api.APIConstants.SYMBOL_DECIMAL_PLACES)
console.log(`Decimal places: ${digits}`)
// Get spread in points
const spread = this.api.GetMarketInformation('EURUSD', this.api.APIConstants.SYMBOL_SPREAD_POINTS)
console.log(`Spread in points: ${spread}`)
// Get lot size
const lotSize = this.api.GetMarketInformation('EURUSD', this.api.APIConstants.TRADE_LOT_SIZE)
console.log(`Lot size: ${lotSize}`)