()
| 43 | { Color = Colors.DarkGreen, VisualType = VisualMode.Histogram }; |
| 44 | |
| 45 | public DeltaIntensity() : |
| 46 | base(true) |
| 47 | { |
| 48 | Panel = IndicatorDataProvider.NewPanel; |
| 49 | DataSeries[0] = _posSeries; |
| 50 | DataSeries.Add(_negSeries); |
| 51 | DataSeries.Add(_VolSecPos); |
| 52 | DataSeries.Add(_VolSecNeg); |
| 53 | |
| 54 | DataSeries.Add(_Weird); |
| 55 | DataSeries.Add(_DeltaDivRed); |
| 56 | DataSeries.Add(_DeltaDivGreen); |
| 57 | } |
| 58 | |
| 59 | protected override void OnCalculate(int bar, decimal value) |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected