Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to Reset using BarsSinceExitExecution

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

    How to Reset using BarsSinceExitExecution

    My logic for BarsSinceEntryExecution is working but it seems my integer variable StopBars is not being reset to 0 upon a position exit before my SetStopLoss method call.

    if (BarsSinceEntryExecution()>=0)
    {
    StopBars=BarsSinceEntryExecution();
    }
    else
    {
    StopBars=0;
    }

    // I'm trying to reset my ticks calculation here.
    if (BarsSinceExitExecution()==0)
    {
    StopBars=0;
    }
    DynamicStopTicks=Some Function using StopBars as a Variable);
    SetStopLoss("", CalculationMode.Ticks,DynamicStopTicks, true);
    Last edited by DuggyLou; 04-08-2017, 07:07 AM.

    #2
    I thought about it during the night and I realize that the call of BarsSinceEntryExecution is overwriting the StopBars value on the next OnBarUpdate call. Should be a simple fix by setting a flag once I reset StopBars and modifying my if then statement. looking for whether my flag has been set or not. Thanks

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    43 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    29 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    46 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    38 views
    0 likes
    Last Post CarlTrading  
    Working...
    X