mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-16 17:48:05 +00:00
Codacy cleanup
This commit is contained in:
@@ -23,7 +23,6 @@ public class MAX_Series : Single_TSeries_Indicator
|
||||
double _max = TValue.v;
|
||||
for (int i = 0; i < this._buffer.Count; i++)
|
||||
{
|
||||
//_max = (this._buffer[i] > _max) ? this._buffer[i] : _max;
|
||||
_max = Math.Max(this._buffer[i], _max);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user