Range filters (where you slide a handle to change ranges) are not possible with native Toolset Features.
You would have to add your voice to a feature request that asks for this, you can do this here:
https://toolset.com/home/contact-us/suggest-a-new-feature-for-toolset/
As of now, you could also follow some users' solutions in this forum, however, there is no unique, inhouse or recommended solution as of yet.
A few threads where you can find inspiration on the subject of custom coding such search, often with examples:
https://toolset.com/forums/topic/how-to-create-a-range-slider-filter-for-a-view/
https://toolset.com/forums/topic/range-slider-of-custom-field/
https://toolset.com/forums/topic/slider-value/
What you can do in Views, however, is let a Filter find items "between" 2 main values.
This can be set when adding New Filters in the Toolset Search and pagination section.
Inserting the filter offers an option in the Filter Comparison section (Using this comparison), where you can choose "between".
This then produces 2 inputs in the search, one for min and one for max.
But you cannot create several of those min/max fields, just one each.
Now, you could use that, to achieve your goal, by setting up such search for the field with a min and max input, as described above, and then producing a few HTML links, in the View, where you simply link to the page where the view is inserted and append the required URL parameters, like ?min=1&?max=500.
If clicked they would lead to the page with the view (or reload it, if inserted in the view itself) and since the links would pass the URL query parameters for the max and min inputs of the Custom Search, you could gradually load "ranges" of results by clicking each respective link (?min=1&?max=500, ?min=500&?max=1000 etc etc)
Please let me know if you'd need more assistance on any of these possible solutions.