Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Power of Three (PO3)

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

    #31
    Originally posted by rockmanx00 View Post

    I posted a fix for this in an earlier post...Since I use the same color schemes, I didn't notice that changing the color didn't do anything. You need to replace this section in OnStateChange. Let me know if you run into any other problems. The original code you are replacing, if I remember correctly, should be hard coded colors.

    TextBrush = xTextBrush;
    UpCandleOutlineBrush = xUpCandleOutlineBrush;
    DownCandleOutlineBrush = xDownCandleOutlineBrush;
    WickBrush = xWickBrush;
    UpCandleFillBrush = xUpCandleFillBrush;
    DownCandleFillBrush = xDownCandleFillBrush;​​
    1.) Regarding changing the colors of the bars that don't work with the indicator, I am not so handy with changing the code to be honest with you. That's why I downloaded the indicator itself! I looked at the provided code earlier here, but can't find the coding part you referring to in order to fix the color issue of the bars.

    2.) Also, I am wondering if there is a way to show a horizontal line from the highest, lowest point + price level of my 4H PO3 bar all the way to the left of my 1M candles? Please see the yellow arrows I drew within the attached screenshot.

    Many thanks!​​
    Attached Files
    Last edited by michelz; 04-25-2025, 08:01 AM.

    Comment


      #32
      Creating the lines should be possible. I've done something similar with plots. However I'm not using plots with this indicator. The easiest way would be to make a straight line that extends to the beginning of the screen's x axis, as I am grabbing the higher data series OHLC, I don't know if I could pinpoint where that line would start on the lower timeframe without drastically editing the code ..

      Comment


        #33
        Originally posted by rockmanx00 View Post
        Creating the lines should be possible. I've done something similar with plots. However I'm not using plots with this indicator. The easiest way would be to make a straight line that extends to the beginning of the screen's x axis, as I am grabbing the higher data series OHLC, I don't know if I could pinpoint where that line would start on the lower timeframe without drastically editing the code ..
        Thanks Rockmanx00!

        Comment


          #34
          Originally posted by rockmanx00 View Post
          Creating the lines should be possible. I've done something similar with plots. However I'm not using plots with this indicator. The easiest way would be to make a straight line that extends to the beginning of the screen's x axis, as I am grabbing the higher data series OHLC, I don't know if I could pinpoint where that line would start on the lower timeframe without drastically editing the code ..
          I think one way to do it would be to look back from CurrentBar until primarybar is found with H equal H of PO3 candle (same for L). It's not too different from the code I posted earlier: https://forum.ninjatrader.com/forum/...09#post1335409
          Last edited by MiCe1999; 04-27-2025, 12:29 PM.

          Comment


            #35
            Originally posted by MiCe1999 View Post

            I think one way to do it would be to look back from CurrentBar until primarybar is found with H equal H of PO3 candle (same for L). It's not to different from the code I posted earlier: https://forum.ninjatrader.com/forum/...09#post1335409
            I was thinking of that as an option, but I wasn't sure how resource intensive that would be. I'll probably play around with it and see what I can figure out.

            Comment


              #36
              Originally posted by rockmanx00 View Post
              Nice. I bought something that almost does the same thing. I think it didn't quite overlay as nicely though, was off slightly so I never used it. Pretty sure I paid about $100 or so for it. Good job.
              furman87, this is much better than PO3, I think. Have you shared this any where? Please guide. Thanks

              Comment


                #37
                Originally posted by rockmanx00 View Post

                I was thinking of that as an option, but I wasn't sure how resource intensive that would be. I'll probably play around with it and see what I can figure out.
                High/Low bar index finding loop would (within onbarupdate) only need to run when high or low of PO3 changes, otherwise index value can be cached and used in onrender to get x with GetXByBarIndex()
                Last edited by MiCe1999; 04-26-2025, 06:43 PM.

                Comment


                  #38
                  Originally posted by MiCe1999 View Post

                  High/Low bar index finding loop would (within onbarupdate) only need to run when high or low of PO3 changes, otherwise index value can be cached and used in onrender to get x with GetXByBarIndex()
                  Ok....I hadn't really given that other post a good look until now. I'll look it over and think about ways to incorporate that. Thanks.

                  Comment


                    #39
                    Originally posted by MiCe1999 View Post
                    MarginMultiCandlesticks3.cs : Added Fibonacci retracement lines and ability to shift the candles so few indicators can be used on the same chart. It's not optimized for performance, be sure to validate that it works on your PC.
                    Hi, thank you very much for this indicator again. It has worked very well for me with H1 and H4 aligned with M5 TFs.

                    Would it be possible to include the options of having daily and weekly PO3? Was just reviewing NQ for past week and thought the Weekly PO3 paired with Daily and H1 TFs would have been perfect for classic buy week. Thanks in advance.

                    Comment


                      #40
                      Originally posted by danwcw View Post

                      Hi, thank you very much for this indicator again. It has worked very well for me with H1 and H4 aligned with M5 TFs.

                      Would it be possible to include the options of having daily and weekly PO3? Was just reviewing NQ for past week and thought the Weekly PO3 paired with Daily and H1 TFs would have been perfect for classic buy week. Thanks in advance.
                      I did make another version for testing: MarginMultiCandlesticksFibs.cs . That one has customizable (fib) levels (coma delimited string, can have as many levels as needed) and custom series (I only tested hourly and daily, not sure how well range/volume/etc series work).​
                      Attached Files
                      Last edited by MiCe1999; 04-27-2025, 12:30 PM.

                      Comment


                        #41
                        Originally posted by FishTrade View Post

                        furman87, this is much better than PO3, I think. Have you shared this any where? Please guide. Thanks
                        FishTrade I just submitted it as an indicator called "Higher Timeframe Candles", I've never submitted an indicator before, but I guess it will show up in the ecosystem when it is approved. Thanks and hope it helps you out.

                        Comment


                          #42
                          Originally posted by MiCe1999 View Post

                          I did make another version for testing: MarginMultiCandlesticksFibs.cs . That one has customizable (fib) levels (coma delimited string, can have as many levels as needed) and custom series (I only tested hourly and daily, not sure how well range/volume/etc series work).​
                          This version is so good with Daily & Weekly PO3. I saw yesterday right before my eyes how the weekly PO3 manipulated Mon/Tue low before expansion. And when all HTF H1, H4, Daily and Weekly are aligned in the same direction, then just sit back and enjoy the ride. Thank you so much for making this possible. I will test more and revert with thoughts for future upgrades.

                          Comment

                          Latest Posts

                          Collapse

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