krok 0.0.2 copy "krok: ^0.0.2" to clipboard
krok: ^0.0.2 copied to clipboard

Kraken Crypto API plus command line client for Dart. Inspired by the python clikraken tool.

example/lib/example.dart

import 'package:cli_util/cli_util.dart';
import 'package:krok/krok.dart';
import 'package:path/path.dart';

main() async {
  final api = KrakenApi.fromFile(join(applicationConfigHome("clikraken"), "kraken.key"));
  try {
    await retrieveAssetPairs(api);
    await placeOrder(api);

    // but see the existing commands in `lib/cli/command/` for examples of what you can do...

    // if you don't do this, the program won't exit:
  } finally {
    api.close();
  }
}

Future<void> retrieveAssetPairs(KrakenApi api) async {
  // call the Kraken API:
  final pairs = await api.retrieve(KrakenRequest.assetPairs());

  // do something with the received data...

  // for this example, only printing the keys:
  print(pairs.keys);

  // but see the existing commands in `lib/cli/command/` for examples of what you can do...
}

Future<void> placeOrder(KrakenApi api) async {
  final resultWithTxid = await api.retrieve(KrakenRequest.addOrder(
    orderType: OrderType.takeProfitLimit,
    direction: OrderDirection.sell,
    volume: 8,
    pair: "CFGUSD",
    price: KrakenPrice.fromString("1.0", trailingStop: false),
    price2: KrakenPrice.fromString("-1%", trailingStop: false),
    // forOrderPlacement allows the "+<seconds>" variant evaluated on the exchange:
    expireTime: KrakenTime.forOrderPlacement("+5"),
    // this in contrast would evaluate here in the client and may cause drift issues:
    //expireTime: KrakenTime.forOrderPlacement("5s"),
  ));
  print(resultWithTxid);
}
0
likes
0
pub points
0%
popularity

Publisher

verified publisherberlinfactor.com

Kraken Crypto API plus command line client for Dart. Inspired by the python clikraken tool.

Repository (GitHub)
View/report issues

Topics

#kraken #api #client #dart

License

unknown (license)

Dependencies

ansi, args, cli_util, crypto, http, path

More

Packages that depend on krok