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 bortz, 11-06-2023, 08:04 AM
    47 responses
    1,608 views
    0 likes
    Last Post aligator  
    Started by jaybedreamin, Today, 05:56 PM
    0 responses
    9 views
    0 likes
    Last Post jaybedreamin  
    Started by DJ888, 04-16-2024, 06:09 PM
    6 responses
    19 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by Jon17, Today, 04:33 PM
    0 responses
    6 views
    0 likes
    Last Post Jon17
    by Jon17
     
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    16 views
    0 likes
    Last Post Javierw.ok  
    Working...
    X