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

Add AtmStrategy StopStrategy to my strategy entries

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

    Add AtmStrategy StopStrategy to my strategy entries

    The AtmStrategy and ATM StopStrategy templates are quite good.


    If I have my entry order condition how I want it, can I call the AtmStrategy and orStopStrategy

    #2
    To be more explicit and easier to answer.
    I can enter long on criteria but I do not know how to invoke the AtmStrategyCreate properly


    EnterLong works
    ApplyATMLong Does not work




    if (CrossAbove(GetCurrentAsk(0), MyEntryCriteria, 1))
    {
    EnterLong(Convert.ToInt32(DefaultQuantity), "");
    //ApplyATMLong();
    }

    }


    protected void ApplyATMLong(){

    atmStrategyId = GetAtmStrategyUniqueId();
    atmStrategyOrderId = GetAtmStrategyUniqueId();

    AtmStrategyCreate( OrderAction.Buy,
    OrderType.Market, 0, 0,
    TimeInForce.Day,
    atmStrategyOrderId,
    "MyAtmStrategy",
    atmStrategyId, (atmCallbackErrorCode, atmCallbackId) =>
    {
    if (atmCallbackId == atmStrategyId) /// checks that the call back is returned for the current atmStrategyId stored
    {
    if (atmCallbackErrorCode == Cbi.ErrorCode.NoError) /// check the atm call back for any error codes
    {
    isAtmStrategyCreated = true; /// if no error, set private bool to true to indicate the atm strategy is created
    }
    }
    });
    }​
    Attached Files

    Comment


      #3
      Hello BartMan,

      Thanks for your post.

      Atm Strategy Methods would be used to place an entry order with protective orders attached that are handled by an Atm Strategy Template using the AtmStrategyCreate() method.

      Atm Strategy Methods: https://ninjatrader.com/support/help...gy_methods.htm
      AtmStrategyCreate: https://ninjatrader.com/support/help...tegycreate.htm

      The SampleAtmStrategy script that comes default with NinjaTrader could be viewed for an example of how Atm Strategy Methods can be used in a NinjaScript Strategy. To view the script, open a New > NinjaScript Editor window, open the Strategies folder, and double-click on the SampleAtmStrategy file.

      Using ATM Strategies in NinjaScript: https://ninjatrader.com/support/help...strategies.htm

      Let me know if I may assist further.
      Brandon H.NinjaTrader Customer Service

      Comment


        #4
        Thank you, I had read the //support/help links but had missed the SampleAtmStrategy.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by StockTrader88, 03-06-2021, 08:58 AM
        45 responses
        3,992 views
        3 likes
        Last Post johntraderuser2  
        Started by TAJTrades, Today, 09:46 AM
        0 responses
        7 views
        0 likes
        Last Post TAJTrades  
        Started by rhyminkevin, Yesterday, 04:58 PM
        5 responses
        62 views
        0 likes
        Last Post dp8282
        by dp8282
         
        Started by realblubb, Today, 09:28 AM
        0 responses
        8 views
        0 likes
        Last Post realblubb  
        Started by AaronKoRn, Yesterday, 09:49 PM
        1 response
        19 views
        0 likes
        Last Post Rikazkhan007  
        Working...
        X