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 CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      173 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      91 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      129 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      208 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      186 views
      0 likes
      Last Post CarlTrading  
      Working...
      X