Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Problem with multitimeframe strategy

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

    Problem with multitimeframe strategy

    I found my error, excuse me.
    You can erase this message if you want.

    Thank's a lot.


    Good morning,
    I test a MTF strategy (5/60 min) and I have a problem.
    I explain exit strategy:
    The system must exit the order when the close of hour candle is superior at the EMA 10 hour.
    The system work with 2 time frame 5 and 60 min.
    My code is:
    protected override void Initialize()
    {
    Add(Instrument.FullName,PeriodType.Minute, 60,MarketDataType.Bid);

    CalculateOnBarClose = true;
    }
    After:
    protected override void OnBarUpdate()
    {
    if(BarsInProgress==1)
    {
    ema10hour=EMA(Close,maCourteLenght)[0];
    }

    //exit condition
    if(BarsInProgress==1)
    {
    if(Position.MarketPosition == MarketPosition.Short && CrossAbove(Close,ema10hour,1))
    ExitShort("CS2", "S");
    }
    }

    The system exit me well but not at the good price like you see in the joint picture. The price whose take by the statment is the price of the EMA and it should take the close price.

    Thank's for your help.
    Attached Files
    Last edited by neo-13; 01-21-2013, 12:05 PM.

    #2
    Thanks for the update Neo, we're glad to hear you could isolate and resolve. All the best.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    68 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    36 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    61 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    62 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Working...
    X