fix_dart 0.0.1+7 copy "fix_dart: ^0.0.1+7" to clipboard
fix_dart: ^0.0.1+7 copied to clipboard

Dart Fix Protocol 4.4 Client Library

FixDart #

Dart Fix Protocol 4.4 Client Library

Usage #

A simple usage example:

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
7
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Dart Fix Protocol 4.4 Client Library

Repository (GitHub)
View/report issues

License

GPL-3.0 (LICENSE)

More

Packages that depend on fix_dart