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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    55 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    132 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    73 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    45 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    49 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X