Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions Technical/ClusterSearch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ public partial class ClusterSearch : Indicator
private bool _onlyOneSelectionPerBar;
private Filter _pipsFromHigh = new() { Value = 100000000 };
private Filter _pipsFromLow = new() { Value = 100000000 };
private decimal _pocPrice;
private decimal _pocVolume;
private PriceLocation _priceLocation = PriceLocation.Any;
private int _priceRange = 1;
private bool _showPriceSelection = true;
Expand Down Expand Up @@ -425,9 +423,6 @@ private void CalculateBarFull(int bar)
var candle = GetCandle(bar);

_lastSeriesBar.Clear();
_pocPrice = 0;
_pocVolume = 0;

_lastBarFormationValid = CheckBarFormation(candle);

if (!_lastBarFormationValid)
Expand Down Expand Up @@ -462,9 +457,6 @@ private void CalculateBarFull(int bar)
if (pocInfo is null || pocInfo.Volume is 0)
return;

_pocPrice = pocInfo.Price;
_pocVolume = pocInfo.Volume;

var inRange = false;

foreach (var range in ranges)
Expand Down