https://github.com/gabbersepp/ib-flex-reader
Easily read an interactive brokers flex query from the official API or pass an already downloaded report
https://github.com/gabbersepp/ib-flex-reader
broker finance flex interactive query
Last synced: about 2 months ago
JSON representation
Easily read an interactive brokers flex query from the official API or pass an already downloaded report
- Host: GitHub
- URL: https://github.com/gabbersepp/ib-flex-reader
- Owner: gabbersepp
- License: mit
- Created: 2018-10-18T05:21:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-15T23:00:36.000Z (over 1 year ago)
- Last Synced: 2025-03-21T14:58:23.105Z (2 months ago)
- Topics: broker, finance, flex, interactive, query
- Language: C#
- Homepage: https://jodekadev.de
- Size: 261 KB
- Stars: 15
- Watchers: 7
- Forks: 9
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ib-flex-reader
This library can help you with fetching flex queries from Interactive Brokers.
Just pass Token and Query ID and wait until it has finished.[](https://travis-ci.org/gabbersepp/ib-flex-reader) [](https://www.nuget.org/packages/Biehler.IbFlexReader/)
## Usage
Simple call the library by passing your token and queryId:
```c#
...
FlexResult result = new Reader().GetByApi(token, queryId).Result;
...
```Or pass an already downloaded file:
```c#
...
FlexQueryResponse result = new Reader().GetByString(content);
...
```## Install
`nuget install Biehler.IbFlexReader`## Requirements
It requires your application to be .NET Standard 2.0 compliant.## IB Setup
Please read the wiki to be informed about the required IB setup.## [Release Notes](https://github.com/gabbersepp/ib-flex-reader/releases)