Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Question about Swing Indicator

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

    Question about Swing Indicator

    Hi -- just a question about the Swing indicator.

    When I first connect to my data provider in the morning and open a new chart, the chart will show so-many 'days back' of data. If I have a Swing indicator on the chart, it will carry over the swing value from the day before. So that the following code will reflect the Swing value from yesterday if there is not a new Swing pivot for the current day yet:

    CurrentSH = Swing(Strength).SwingHigh[Strength];

    I would like to NOT have the previous day's Swing pivots carry over to the next day. I want each day to start with CurrentSH=0 until a new pivot is created in the current trading day (let's say since Midnight). Is there a way to do this in a strategy?

    Thanks!
    Bryan

    #2
    Not that I am aware of, you would have to code your own version of a swing indicator.
    RayNinjaTrader Customer Service

    Comment


      #3
      OK. Is there anything that would indicate which bar or date or time or something that Swing(Strength).SwingHigh[Strength] is based on? If not, then I think I can probably customize the Swing code to store that and keep it as a property maybe. Do you have an idea of how to code that? I'm not sure I can add a new property to an indicator or not.

      Something like Swing.SwingHigh.Bar or Swing.SwingHigh.Date.
      Last edited by cassb; 05-13-2008, 08:20 AM.

      Comment


        #4
        Something like -

        Time[Swing(int strength).SwingHighBar(int barsAgo, int instance, int lookBackPeriod)]

        Will return a DateTime object.
        RayNinjaTrader Customer Service

        Comment


          #5
          Originally posted by NinjaTrader_Ray View Post
          Something like -

          Time[Swing(int strength).SwingHighBar(int barsAgo, int instance, int lookBackPeriod)]

          Will return a DateTime object.
          Excellent, Ray -- I'll play around with that, thanks!

          Bryan

          Comment


            #6
            Simple solution:

            Code:
                        if (ToDay(Time[Swing(5).SwingLowBar(0, 1, 100)]) == ToDay(Time[0]))  // Only evaluate swing value if set during the current trading session.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            595 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            343 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            103 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            556 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            554 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X