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 Hwop38, 05-04-2026, 07:02 PM
      0 responses
      175 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      331 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      253 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      356 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      183 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X