Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Trading forex

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

    #16
    re

    I want bar closed above ema and than +15 pips buy.



    Originally posted by NinjaTrader_Josh View Post
    forexx,

    So you want if the price closes above the EMA by 15 pips to trade?

    Code:
    if (CrossAbove(Close, EMA(20)[0] + 15 * TickSize, 1))
         EnterLong();

    Comment


      #17
      Yes If Previouse Bar has "closed above ema" and next bar is abov ema again +15 Pips then buy.




      Originally posted by forexx View Post
      I want bar closed above ema and than +15 pips buy.

      Comment


        #18
        Josh's snippet would sent a market order once price is above the EMA + the 15 pip offset, if you work with CalculateOnBarClose = false this would also trigger intrabar then.

        Comment


          #19
          If I have bars on calculation on false, then it will deactive bars ago option fully? or just will allow you to submit buy and sell within the same bar....??
          Then why my code does not match with the picture below?
          if (CrossAbove(EMA(Close,Fast), EMA(Close,Slow)[0]+ 15 * TickSize , 1))

          {
          EnterLong(DefaultQuantity,
          "");
          }


          Thanks

          Originally posted by NinjaTrader_Bertrand View Post
          Josh's snippet would sent a market order once price is above the EMA + the 15 pip offset, if you work with CalculateOnBarClose = false this would also trigger intrabar then.
          Attached Files
          Last edited by XXtrem; 11-26-2010, 12:29 AM.

          Comment


            #20
            Setting CalculateOnBarClose = false would have no effect in backtesting, here the order is placed one bar after the condition to enter triggered.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by CaptainJack, 04-24-2026, 11:07 PM
            0 responses
            18 views
            0 likes
            Last Post CaptainJack  
            Started by Mindset, 04-21-2026, 06:46 AM
            0 responses
            120 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by M4ndoo, 04-20-2026, 05:21 PM
            0 responses
            174 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Started by M4ndoo, 04-19-2026, 05:54 PM
            0 responses
            92 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Started by cmoran13, 04-16-2026, 01:02 PM
            0 responses
            134 views
            0 likes
            Last Post cmoran13  
            Working...
            X