Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 376 Bytes

PROJECT.md

File metadata and controls

21 lines (15 loc) · 376 Bytes

ib-flex-reader

This library can help you with fetching flex queries from Interactive Brokers.

Usage

Simple call the library by passing your token and queryId:

	...
	FlexResult result = new Reader().GetByApi(token, queryId).Result;
	...

Or pass an already downloaded file:

	...
	FlexQueryResponse result = new Reader().GetByString(content);
	...