Sridhar
Results
1
comments of
Sridhar
```cs candles.Add(new Candle( //dateTime: Datetime of trading day/hour/minute/second, open: (decimal)Math.Log((double)cand.Open), high: (decimal)Math.Log((double)cand.High), low: (decimal)Math.Log((double)cand.Low), close: (decimal)Math.Log((double)cand.Close), cand.Volume) ); ``` Now momentum: I'm looking only for the last value. ```cs var...