Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Strategies that Reflect Superdome Please!!!

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

    Strategies that Reflect Superdome Please!!!

    Dear Santa,

    I have been very good this year. Could you please ask NT if they could build some strategies that mirror the types of trades available on the superdome. Trailing stops and scaleouts, ect.

    Automated trading examples of these along the others currently provided would be nice.

    As always, the milk and cookies will be by the fireplace.

    RJay
    Last edited by RJay; 12-15-2008, 03:16 PM.
    RJay
    NinjaTrader Ecosystem Vendor - Innovative Trading Solutions

    #2
    Points for a creative approach for a suggestion! I will add this to our list
    RayNinjaTrader Customer Service

    Comment


      #3
      rt6176, Good one!

      Ray, A lot of posts that I read, and I try to read them all, have issues with Order Management. I have yet to get the correct sequencing for onBar, onOrder ... that will not leave orders open or positions unprotected. I believe that there are only 4 major ways of trading 1) All In All Out, 2) Scale In All Out, 3) All In Scale Out 4) Scale In Scale Out. Within each catagory you have stops and targets. Personally I would find it very helpful to have an Order Management Template for each or at least #1, and #4. Until I can get comfortable with knowing that the OM part of a strategy is working properly there is not much incentive to purchase a LifeTime license for me. So would you give it some serious consideration. Please. I would be more than happy to help in any way. Right now I feel like I am searching for minnows in a vast ocean. As far as indicator development, well I have become well versed on that part. Its the ^&% #*^* Order Management that has me blocked. I have included a template that I have been working with to give you a better understanding.

      Variables
      {
      private int stopLoss = 8; // in ticks
      private int profitTarget = 8; // in ticks
      private in t barsTillCancel= 5;
      private bool enterBuy = false;
      private bool enterSell = false;
      }

      Initialize
      {
      blah
      blah
      stuff
      stuff
      }

      onBarUpdate
      {
      if (Users code to signal Buy Entry) enterBuy = true;
      else;
      enterBuy = false;

      if (Users code to signal SellEntry) enterSell = true;
      else;
      enterSell = false;

      //*******************************
      // Template handles all Order Management from Here Down
      //*******************************

      if (barsTillCancel ) Cancel Order;

      if(position Flat && enterBuy == true)
      {
      NT Staff code doing it the right way
      }
      if(position Flat && enterSell == true)
      {
      NT Staff code doing it the right way
      }

      }
      Attached Files
      Last edited by TAJTrades; 12-15-2008, 03:39 PM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by samish18, Yesterday, 08:57 AM
      11 responses
      28 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by yertle, Today, 08:38 AM
      1 response
      5 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by love2code2trade, Yesterday, 01:45 PM
      3 responses
      22 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by trilliantrader, Today, 08:16 AM
      2 responses
      6 views
      0 likes
      Last Post trilliantrader  
      Started by samish18, Today, 08:31 AM
      1 response
      2 views
      0 likes
      Last Post NinjaTrader_Clayton  
      Working...
      X