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

Price crosses above or below

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

    Price crosses above or below

    Hi I am trying to develop my first strategy with the Wizard. I would like it to go short when it crossed BELOW indicatorA and the second,third or fourth candle closes below indicatorA by 4 ticks or more after it has crossed. (EMA indicator as an example) Only take trades between 9.50AM and 3:40PM.

    Conditon builder code:
    ///<summary>
    /// Called on each bar update event (incoming tick)
    ///</summary>
    protectedoverridevoid OnBarUpdate()
    {
    // Condition set 1
    if (ToTime(Time[1]) >= ToTime(9, 50, 0)
    && CrossBelow(Close, EMA(
    14), 1)
    && Close[
    0] + 4 * TickSize >= EMA(14)[0]
    && ToTime(Time[
    0]) <= ToTime(15, 40, 0))
    {
    PlaySound(
    @"C:\Program Files (x86)\NinjaTrader 6.5\sounds\Alert1.wav");
    EnterShortLimit(DefaultQuantity,
    0, "");
    }

    Attached pics to illustrate.

    Thanks
    Attached Files
    Last edited by Trad3r; 10-31-2009, 04:44 PM.

    #2
    Hello,

    What is it doing or not doing?

    I noticed that you want it to look at multiple bars back (4). This line only looks at the current bar because of [0]:
    Close[0] + 4 * TickSize >= EMA(14)[0]

    You will need to use the 'bars ago' option and have multiple conditions to capture the multiple bar checks. At least that is one way to do it, which I feel is the easiest.
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mestor, 03-10-2023, 01:50 AM
    16 responses
    388 views
    0 likes
    Last Post z.franck  
    Started by rtwave, 04-12-2024, 09:30 AM
    4 responses
    31 views
    0 likes
    Last Post rtwave
    by rtwave
     
    Started by yertle, Yesterday, 08:38 AM
    7 responses
    29 views
    0 likes
    Last Post yertle
    by yertle
     
    Started by bmartz, 03-12-2024, 06:12 AM
    2 responses
    22 views
    0 likes
    Last Post bmartz
    by bmartz
     
    Started by funk10101, Today, 12:02 AM
    0 responses
    7 views
    0 likes
    Last Post funk10101  
    Working...
    X