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 Aviram Y, Today, 05:29 AM
    0 responses
    2 views
    0 likes
    Last Post Aviram Y  
    Started by quantismo, 04-17-2024, 05:13 PM
    3 responses
    25 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by ScottWalsh, 04-16-2024, 04:29 PM
    7 responses
    34 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by cls71, Today, 04:45 AM
    0 responses
    6 views
    0 likes
    Last Post cls71
    by cls71
     
    Started by mjairg, 07-20-2023, 11:57 PM
    3 responses
    217 views
    1 like
    Last Post PaulMohn  
    Working...
    X