Method to find lowest and highest of the data series

SajiT

New member
Joined
Aug 22, 2021
Posts
3
Likes
1
Any methods available in the SDK to return the price and index of the lowest price of the DataSeries?
 

danielputra

Active member
Joined
Jul 22, 2021
Posts
29
Likes
53
You can use
dataSeries.lowest(dataSeries.size() - 1, dataSeries.size(), Enums.BarInput.LOW);
 
Top