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

Execute when bar crosses SMA

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

    Execute when bar crosses SMA

    I know it's silly but how do I execute a buy to cover when it crosses 20 period SMA?
    Attached Files

    #2
    Hello JT1230,

    Thanks for your post.

    As you are using the Bollinger indicator it would make sense to use that as the comparison. You could code something like:

    if (Position.MarketPosition == MarketPosition.Short && Close[0] > = Bollinger(2, 20).Middle[0])
    {
    ExitShort();
    }

    You may want to change Close for High, depends on your needs,

    ExitShort: "Generates a buy to cover market order to exit a short position." Helpguide link: http://ninjatrader.com/support/helpG...?exitshort.htm
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by f.saeidi, Today, 08:01 PM
    0 responses
    2 views
    0 likes
    Last Post f.saeidi  
    Started by Rapine Heihei, Today, 07:51 PM
    0 responses
    3 views
    0 likes
    Last Post Rapine Heihei  
    Started by frslvr, 04-11-2024, 07:26 AM
    5 responses
    96 views
    1 like
    Last Post caryc123  
    Started by algospoke, 04-17-2024, 06:40 PM
    6 responses
    49 views
    0 likes
    Last Post algospoke  
    Started by arvidvanstaey, Today, 02:19 PM
    4 responses
    11 views
    0 likes
    Last Post arvidvanstaey  
    Working...
    X