Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by benmarkal, Yesterday, 12:52 PM
    3 responses
    22 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by helpwanted, Today, 03:06 AM
    1 response
    18 views
    0 likes
    Last Post sarafuenonly123  
    Started by Brevo, Today, 01:45 AM
    0 responses
    11 views
    0 likes
    Last Post Brevo
    by Brevo
     
    Started by aussugardefender, Today, 01:07 AM
    0 responses
    6 views
    0 likes
    Last Post aussugardefender  
    Started by pvincent, 06-23-2022, 12:53 PM
    14 responses
    244 views
    0 likes
    Last Post Nyman
    by Nyman
     
    Working...
    X