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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    50 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    16 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    22 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    23 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X