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
- Host: GitHub
- URL: https://github.com/putraxor/fix_dart
- Owner: putraxor
- License: gpl-3.0
- Created: 2020-10-04T13:43:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-21T17:19:02.000Z (about 5 years ago)
- Last Synced: 2024-04-24T05:59:03.788Z (almost 2 years ago)
- Topics: dart, fixprotocol
- Language: Dart
- Homepage:
- Size: 57.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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