LSEG Data Library for Python

close

The close method closes the streaming connection to the Pricing data.

Module

lseg.data

Syntax

close()

Parameters

None

Returned value

OpenState.Closed

Usage

The following example demonstrates how to close a previously opened pricing stream:

import lseg.data as ld


stream = ld.open_pricing_stream(
    universe=['GBP=', 'EUR=', 'JPY='],
    fields=['BID', 'ASK'],
)

stream.close()

OpenState.Closed

24 words (0:08 mins)