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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    669 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    378 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    111 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    575 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    580 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X