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 ETFVoyageur, Today, 07:55 PM
              0 responses
              1 view
              0 likes
              Last Post ETFVoyageur  
              Started by janio973, Today, 07:24 PM
              1 response
              6 views
              0 likes
              Last Post NinjaTrader_Manfred  
              Started by aligator, 01-06-2022, 12:14 PM
              4 responses
              240 views
              0 likes
              Last Post john_44573  
              Started by reynoldsn, Today, 05:56 PM
              0 responses
              12 views
              0 likes
              Last Post reynoldsn  
              Started by bortz, 11-06-2023, 08:04 AM
              51 responses
              1,993 views
              0 likes
              Last Post aligator  
              Working...
              X