oversold property

double oversold
final

Oversold value for RSI indicator.

Defaults to 20.

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
           indicators: <TechnicalIndicators<dynamic, dynamic>>[
           RsiIndicator<dynamic, dynamic>(
               oversold : 30,
             ),
       ));
}

Implementation

final double oversold;