Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Tharp SQN Calculation within Indicator

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

    Tharp SQN Calculation within Indicator

    I found a piece of NT 6 code which has calculated the Tharp SQN

    double stddev = 0;
    double tradeProf;
    double numTrades = systemPerformance.AllTrades.Count;
    double avgProfit = (systemPerformance.AllTrades.TradesPerformance.Gro ssProfit + systemPerformance.AllTrades.TradesPerformance.Gros sLoss) / numTrades;

    foreach (Trade t in systemPerformance.AllTrades)
    {
    tradeProf = (t.ProfitPoints * t.Quantity *
    t.Entry.Instrument.MasterInstrument.PointValue);
    stddev += Math.Pow(tradeProf - avgProfit, 2);
    }

    stddev /= numTrades;
    stddev = Math.Sqrt(stddev);
    double sqn = (Math.Sqrt(numTrades) * avgProfit) / stddev;

    In NT8, what exactly means the Quantity and PointValue Property within the systemPerformance.AllTrades collection?

    #2
    Hello,

    Thank you for the post.

    In this situation, the Quantity and PointValue are objects of this individual trade with values that relate to the Quantity of the trade and the Point value of the instrument that placed the trade. The script is looping over all of the trades in the collection systemPerformance.AllTrades.

    The Instrument.MasterInstrument.PointValue refers to the Master Instrument definition, this is the Instrument manager window and the point value it displays in there. As a quick note, the Instrument object is the direct instrument that your script is working with I.E. ES 12-17 where the Instrument.MasterInstrument object is the Definition of the instrument in the manager or ES. This is still the same in NT8:

    Code:
    Trade t;
    t.Entry.Instrument.MasterInstrument.PointValue
    The Quantity of the Trade was the amount traded, this is also still the same in NT8:

    Code:
    Trade t;
    t.Quantity
    Definitions:

    For Point Value:


    For Trade:


    For the sub-object Entry which is an Execution object:


    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    648 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    369 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    108 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    572 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    574 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X