candlesticks 0.2.3 copy "candlesticks: ^0.2.3" to clipboard
candlesticks: ^0.2.3 copied to clipboard

outdated

A flutter candlesticks chart for android, ios and the web; It contains optimized animations, indicators and socket connection ability.

candlesticks #

A flutter candlesticks chart for android, ios and the web; It contains optimized animations indicators and socket connection ability.

Gif

Installation #

  1. Add this to your package's pubspec.yaml file:
dependencies:
  candlesticks: ^0.2.1
  1. Get the package using your IDE's GUI or via command line with
$ flutter pub get

Usage #

import 'package:candlesticks/candlesticks.dart';

Candle #

[Candle] class contains five required double variables that hold a single candle data: high, low, open, close and volume. It can be instantiated using its default constructor or fromJson named custructor.

final candle =  Candle(open: 1780.36, high: 1873.93, low: 1755.34, close: 1848.56, volume: 0);

Candlesticks #

[Candlesticks] widget requires only a list of candles. And that's it. It is recommended to wrap [Candlesticks] with the [AspectRatio] widget.

134
likes
0
pub points
87%
popularity

Publisher

verified publisherrmzy.dev

A flutter candlesticks chart for android, ios and the web; It contains optimized animations, indicators and socket connection ability.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on candlesticks