Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Intrabar Signal Analysis - Single Output When True

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

    Intrabar Signal Analysis - Single Output When True

    Hi, I have a question regarding evaluating a signal intrabar but preventing that signal from re-outputting a true signal (if this makes sense?). Currently I am calculating OnPriceChange and would prefer to keep the OnPriceChange evaluation method but would like it signal only one time. I.e. using OnPriceChange -> if xxx is true, output. When price changes xxx is evaluated again but if true again, do nothing. Any chance there's an example or method of something like this?

    #2
    Hello itsthefriz,

    Thank you for your note.

    To clarify, you want the signal to be generated once per bar, intrabar using OnPriceChange to calculate, is that correct?

    You could create a bool variable and call it something like SignalGenerated. Within your condition block that triggers the signal, check that SignalGenerated is false before actually generating the signal, and if it's false, set SignalGenerated to true, and output your signal. Then, reset the signal on the first tick of the next bar using IsFirstTickOfBar:

    private bool SignalGenerated = false;

    if (IsFirstTickOfBar)
    {
    SignalGenerated = false;
    }

    if (your conditions to generate signal && SignalGenerated == false)
    {
    SignalGenerated = true;
    // generate your signal here
    }

    Please let us know if we may be of further assistance to you.

    Comment


      #3
      Ah, that's a great idea setting up a bool signal to prevent it from constantly evaluating, thank you for the help!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      67 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      150 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      162 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      99 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      286 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Working...
      X