Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

on price change second series condition within on bar close entry strategy

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

    on price change second series condition within on bar close entry strategy

    Hi, I'm working on a strategy that enters trades on a 1 minute time frame based on the 1 minute current bar's closing condition, paired with a 60 minute prior bar's closing condition. I'd like to try the strategy with the 1 minute's close paired with the current 60 minute's condition (e.g. the 60 minute bar that my 1 minute bar is within, is currently a green 60 minute candle. How might i write that inside the onbar update code?

    Here's the version with the prior 60 minute bar

    else if (State == State.Configure)
    {
    AddDataSeries(Data.BarsPeriodType.Minute, 60);
    AddDataSeries(Data.BarsPeriodType.Minute, 30);
    }
    else if (State == State.DataLoaded)
    {
    SMA1 = SMA(Close, Convert.ToInt32(StopSma));
    SMA1.Plots[0].Brush = Brushes.Goldenrod;
    AddChartIndicator(SMA1);
    SetProfitTarget("", CalculationMode.Ticks, 200);
    SetStopLoss("", CalculationMode.Ticks, 50, false);
    }
    }

    protected override void OnBarUpdate()
    {
    if (BarsInProgress != 0)
    return;

    if (CurrentBars[0] < 1
    || CurrentBars[1] < 1)
    return;

    // Set 1
    if ((Close[0] > Open[0])
    && (Closes[1][1] > Opens[1][1])
    && (Close[1] < Open[1]))
    {
    EnterLongLimit(Convert.ToInt32(DefaultQuantity), Median[0], "");
    }

    thanks,
    David

    #2
    Hello trader3000a,

    I see that you are using both series in your condition, using Closes[BarsInProgress][BarsAgo] is the way you could pick which data series you are using data from.

    Are you seeing a problem with the code or what specific question did you have surrounding the condition you provided?

    One suggestion that I could make here would be to use Market orders by using EnterLong, that could be used for testing to ensure you are seeing entries. Limit orders have the chance to expire if not filled within 1 bar.

    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    93 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    152 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    80 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    53 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    65 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X