Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Count only small trades results

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

    Count only small trades results

    Hi,

    I would like to count trades results during backtest but only these trades which quantity is small (for example: below 1000 units). Is it possible?

    #2
    Hello kucharek,
    Thanks for writing in and I am happy to assist you.

    Performace.AllTrades returns the TradeCollection taken by the strategy. You can further custom code it to filter is as per your desire. A basic code would look like:

    Code:
    int count = 0;
    foreach (Trade t in Performance.AllTrades)
    {
    	if (t.Entry.Quantity <= 1000)
    	{
    		count++;
    	}
    }
    Print(count);


    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by kinfxhk, 07-14-2026, 09:39 AM
    0 responses
    89 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 10:18 AM
    0 responses
    92 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 09:50 AM
    0 responses
    70 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 07:21 AM
    0 responses
    87 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-11-2026, 02:11 AM
    0 responses
    64 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X