"Avoiding barcode charts" - Market - Filters
In the market filtering, could you please add a filter on the average pricetick percentage. This will avoid seeing the charts where 1 tick on it self is already a "huge" candle. I like to hide everything below 0.2%
decimal p= 100 * (symbol.PriceTickSize) / symbol.CurrentPrice;
if (p > config.MinPercentagePriceTickSize)
{
string s =string.Format("{0} {1} tick size percentage to high {2:N3}", DateTime.Now.ToLocalTime(), symbol.Name, p);
return;
}
Suggested over 4 years ago
1 comment
[email protected]
You can approximate this by filtering for minimum BTC price of 0.00000500
about 4 years ago