Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Swings and Pivots Marker

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

    Swings and Pivots Marker

    Hey Guys, I'm stumped. I simply want to Draw a Letter On top or Below a Swinging Bar. at Higher Swing Lows and Highs, and at Lower Swing Lows and Highs


    how do I get the indicator to draw an "S" as soon as that Down Bar Reverses. Look at this Pic. I show EXACTLY what I'm trying to accomplish. but How do I get this done?

    World's leading screen capture + recorder from Snagit + Screencast by Techsmith. Capture, edit and share professional-quality content seamlessly.

    #2
    All swing and zig zag indicators only identify the swing highs and lows several bars later and draw then back. If you select the swing strength as 4 - such as shown in your screenshot - you can use DrawText to draw the "S", but then draw it 5 bars ago, when the swing high or low have been detected.

    I prefer to use a zigzag indicator which is based on both the swing strength and the minimum deviation. Higher highs and lows are plotted as green dots, while lower highs and lows appear as red dots.
    Attached Files

    Comment


      #3
      Hello ginx10k,

      Thank you for your post.

      You can use the following code:
      Code:
      int sBar = Swing(5).SwingLowBar(0, 1, CurrentBar-1);
      DrawText(CurrentBar.ToString(), "S", sBar, Low[sBar], Color.Black);

      Comment

      Latest Posts

      Collapse

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