Welcome to our new support center! Some articles may still be missing; they will be added shortly. For the old support documentation go to https://support.altrady.com. If you have questions, open a new ticket here. New tickets on support.altrady.com won’t be answered; existing tickets will be finalised there.

Altrady Support Altrady Support
1
Closed This request is closed. You can still comment, but it stays closed unless the team reopens it. General

"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

Sign in to join the discussion.