VertexFX Bridge Liquidity Provider (LP) API is a .NET Class Library DLL used for implementing new LP in the VertexFX Bridge application. All what you need is to build your own .NET Class Library project, with Assembly name prefix VFX from project properties. The project should have class name LP inherited fromVertexFXBridgeLPAPI.VertexFXLPclass over the provided API, then build the DLL after overriding the needed functions, finally copy this DLL (with its dependences) in the LP References folder of the VertexFX Bridge application which is located in “[userappdata]RoamingVertexFX Bridge” folder in order to be supported.
After finishing your LP DLL, you may test it using the Tester application included when installing the VertexFX Bridge LP API.
When installing VertexFX Bridge LP API you will have:
- The Class Library DLL (VertexFXBridgeLP.dll), which you have to add its reference in your own LP Class Library project.
- The API tester (VertexFX Bridge LP API Tester.exe), which you can use for testing your own DLL. This application has a wizard, if passed, your DLL is eligible and is supported in VertexFX Bridge.
- Open source .NET sample, of how to build an LP DLL, built over VertexFX Client API.
Visit VertexFX Bridge LP API Help Index
check theVertexFX Bridge LP API Tester