Candles class

The candle data returns a list of candles. Close price, high price, low price, open price, status, timestamps, from, to and resolution are required. The from, to and resolution are optional.

Constructors

Candles(List<double> close, List<double> high, List<double> low, List<double> open, String status, List<int> timestamps, {int? from, int? to, String? resolution})

Properties

close List<double>
getter/setter pair
from int?
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
high List<double>
getter/setter pair
low List<double>
getter/setter pair
open List<double>
getter/setter pair
resolution String?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
status String
getter/setter pair
timestamps List<int>
getter/setter pair
to int?
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromJson(Map<String, dynamic> json) Candles