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 yertle, Yesterday, 08:38 AM
    7 responses
    28 views
    0 likes
    Last Post yertle
    by yertle
     
    Started by bmartz, 03-12-2024, 06:12 AM
    2 responses
    20 views
    0 likes
    Last Post bmartz
    by bmartz
     
    Started by funk10101, Today, 12:02 AM
    0 responses
    4 views
    0 likes
    Last Post funk10101  
    Started by gravdigaz6, Yesterday, 11:40 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by MarianApalaghiei, Yesterday, 10:49 PM
    3 responses
    10 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Working...
    X