Skip to content

Commit

Permalink
Fix README & version
Browse files Browse the repository at this point in the history
  • Loading branch information
ttldtor committed Oct 20, 2023
1 parent 338df0c commit eb42ddf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)

project(dxFeedGraalCxxApi)

set(DXFCXX_VERSION "v0.2.2-alpha" CACHE STRING "The dxFeed Graal CXX API package version")
set(DXFCXX_VERSION "v0.3.0-alpha" CACHE STRING "The dxFeed Graal CXX API package version")

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,8 @@ versions)
* [DxFeedIpfConnect](https://github.com/dxFeed/dxfeed-graal-cxx-api/blob/main/samples/cpp/DxFeedIpfConnect/src/main.cpp)
This sample demonstrates how to subscribe to available symbols using IPF. It uses a `DxFeed` instance singleton
and `dxfeed.properties` file
* [DxFeedLiveIpfSample](https://github.com/dxFeed/dxfeed-graal-cxx-api/blob/main/samples/cpp/DxFeedLiveIpfSample/src/main.cpp)
This sample demonstrates how to an instrument profile URL and reads instrument profiles with support of streaming live updates.

## Current State

Expand Down Expand Up @@ -438,12 +440,20 @@ versions)
profile information about a market
instrument ([Java API sample](https://github.com/devexperts/QD/blob/master/dxfeed-samples/src/main/java/com/dxfeed/sample/ipf/DXFeedIpfConnect.java))
- [ ] dxFeed Graal C API
- [ ] dxFeed Graal C++ API
- [x] dxFeed Graal C++ API
- [InstrumentProfileReader](https://docs.dxfeed.com/dxfeed/api/com/dxfeed/ipf/InstrumentProfileReader.html) reads
instrument profiles from the stream using Instrument Profile Format (IPF).
- [ ] dxFeed Graal C API
- [x] dxFeed Graal C++ API
- [InstrumentProfileConnection](https://docs.dxfeed.com/dxfeed/api/com/dxfeed/ipf/live/InstrumentProfileConnection.html)
connects to an instrument profile URL and reads instrument profiles with support of streaming live updates.
- [ ] dxFeed Graal C API
- [x] dxFeed Graal C++ API
- [InstrumentProfileCollector](https://docs.dxfeed.com/dxfeed/api/com/dxfeed/ipf/live/InstrumentProfileCollector.html)
collects instrument profile updates and provides the live instrument profiles
list ([Java API sample](https://github.com/devexperts/QD/blob/master/dxfeed-samples/src/main/java/com/dxfeed/sample/ipf/DXFeedLiveIpfSample.java))
- [ ] dxFeed Graal C API
- [ ] dxFeed Graal C++ API
- [x] dxFeed Graal C++ API
- [Schedule](https://docs.dxfeed.com/dxfeed/api/com/dxfeed/schedule/Schedule.html) provides API to retrieve and
explore various exchanges’ trading schedules and different financial instrument
classes ([Java API sample](https://github.com/devexperts/QD/blob/master/dxfeed-samples/src/main/java/com/dxfeed/sample/schedule/ScheduleSample.java))
Expand Down

0 comments on commit eb42ddf

Please sign in to comment.