An open API service indexing awesome lists of open source software.

https://github.com/putraxor/fix_dart

Dart Fix Protocol 4.4 Client Library
https://github.com/putraxor/fix_dart

dart fixprotocol

Last synced: 5 months ago
JSON representation

Dart Fix Protocol 4.4 Client Library

Awesome Lists containing this project

README

          

## FixDart
Dart Fix Protocol 4.4 Client Library

### Usage

A simple usage example:

```dart
import 'package:fix_dart/fix_dart.dart';

void main() async {
var client = FixDart(
host: '0.0.0.0',
port: 0000,
username: '-',
password: '-',
senderCompID: '-',
targetCompID: '-');

client.connect(
autoReconnect: false,
onConnected: () {
client.subscribeMarketData('EURUSD.spa');
},
onQuoteReceived: (quote) {
print(quote.describe());
},
);
}

```

## Limitation
Current limitation of this library:
- Only support market data
- Only support FIX 4.4
- No SSL support