Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

volume profile with size filter??

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    volume profile with size filter??

    are there any indicators that plot volume on the price panel, horizontally, like volume profile, but with a size filter? so that only executions over a certain number of contracts are displayed. am i searching wrong or does this not exist?


    is there a way to set up volume profile to use some size filtered volume rather than the input series volume?

    any help would be appreciated on this.

    #2
    Hi Jim, I would unfortunately not be aware of any customizations that would offer such a filtering for the input volume.

    You might want to contact this vendor as an example, they offer a very comprensive study collection in that area which perhaps can offer this type of config -

    Comment


      #3
      Hi Jim,

      I just had a look at the Volume Profile Indicator for another requirement of mine.

      Regarding your question to filter by volume - at a first glance, this looks fairly easy. You just need to wrap the following code in OnMarketData with an if clause based on e.Volume and whatever size filter you require. You could of course make the size a Property/Parameter to support different filter sizes for different contracts, etc.

      Best,
      Peter

      if (!volumeInfo.ContainsKey(price))
      volumeInfo.Add(price, new VolumeInfoItem());

      VolumeInfoItem volumeInfoItem = volumeInfo[price];

      if (price >= askPrice)
      volumeInfoItem.up += volume;
      else
      if (price <= bidPrice)
      volumeInfoItem.down += volume;
      else
      volumeInfoItem.neutral += volume;

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      591 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      343 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      556 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      553 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X