Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Max Probability Optimization

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

    Max Probability Optimization

    What is the objective, intention, or aim of this optimization selection?

    #2
    I'm not entirely sure I know what you're referring to and I may need some further clarification. Do you have a link or screenshot you could show me?

    Are you perhaps asking about Genetic Algorithm settings: http://www.ninjatrader.com/support/h..._algorithm.htm

    Let me know how I can further assist.
    LanceNinjaTrader Customer Service

    Comment


      #3
      max probability is a choice of method when optimizing a strategy.

      optimizing to max net profit, max profit factor, etc. is self explanatory. what does max probability mean?

      Comment


        #4
        Ok thank you for the clarification

        It is the Standard Deviation of the Trade Performance in Percent divided by the sqrt of all the trades taken which is then further divided by the AvgProfit and then compared statistically to all trades to find out the number of trades that were successful vs the number of trades that fell below the above cut off for success or failure as defined above. To give you probability of each trade being profitable and specifically the maximum probability of trades that had success will be filtered to the top when optimizing on this value.
        LanceNinjaTrader Customer Service

        Comment


          #5
          will you expand on that explanation please. what is the aim of this optimization is a couple sentences or less?

          my optimization output results in all negative total net profits, % of profitable trades ranging from 0 to 65% and profit factors between 0 and .80.

          this optimization result is contradicting a profitable system.

          Comment


            #6
            This optimization will give you probability of each trade being profitable and specifically the maximum probability of trades that had success will be filtered to the top when optimizing on this value.

            Here is the code for this calculation:
            Code:
            double div    = systemPerformance.AllTrades.TradesPerformance.Percent.StdDev / Math.Sqrt(systemPerformance.AllTrades.TradesCount);
                            double t    = Stat.StudTp(systemPerformance.AllTrades.TradesPerformance.Percent.AvgProfit / div, systemPerformance.AllTrades.TradesCount - 1);
                            return (div <= 0.5 ? 1 - t : t);
            If you're only seeing negative results that's because none of the optimizations returned had positive returns.
            LanceNinjaTrader Customer Service

            Comment


              #7
              Originally posted by Ironplates View Post
              What is the objective, intention, or aim of this optimization selection?
              As with all optimizations, the intent is to find the optimal parameters to reach the objective. In this case, the objective would be to find the parameters that would result in trades that have the maximum probability of success.

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by FrazMann, Today, 11:21 AM
              0 responses
              3 views
              0 likes
              Last Post FrazMann  
              Started by geddyisodin, Yesterday, 05:20 AM
              8 responses
              51 views
              0 likes
              Last Post NinjaTrader_Gaby  
              Started by cmtjoancolmenero, Yesterday, 03:58 PM
              10 responses
              36 views
              0 likes
              Last Post NinjaTrader_ChelseaB  
              Started by DayTradingDEMON, Today, 09:28 AM
              4 responses
              24 views
              0 likes
              Last Post DayTradingDEMON  
              Started by George21, Today, 10:07 AM
              1 response
              19 views
              0 likes
              Last Post NinjaTrader_ChristopherJ  
              Working...
              X