Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Power of Three (PO3)

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

  • danwcw
    replied
    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.

    Leave a comment:


  • furman87
    replied
    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.

    Leave a comment:


  • MiCe1999
    replied
    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.

    Leave a comment:


  • danwcw
    replied
    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.

    Leave a comment:


  • rockmanx00
    replied
    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.

    Leave a comment:


  • MiCe1999
    replied
    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.

    Leave a comment:


  • FishTrade
    replied
    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

    Leave a comment:


  • rockmanx00
    replied
    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.

    Leave a comment:


  • MiCe1999
    replied
    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.

    Leave a comment:


  • michelz
    replied
    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!

    Leave a comment:


  • rockmanx00
    replied
    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 ..

    Leave a comment:


  • michelz
    replied
    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.

    Leave a comment:


  • rockmanx00
    replied
    Originally posted by michelz View Post


    Many thanks! Downloaded your indicator and things look very cool on the NT desktop chart. I only noticed that changing the fill color of the bar (up) doesn't work with the indicator. I want to have it in the color 'MediumSpringGreen', for example. Is there a way to fix this?
    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;​​
    Last edited by rockmanx00; 04-22-2025, 09:40 AM.

    Leave a comment:


  • michelz
    replied
    Originally posted by rockmanx00 View Post
    I attempted to make one too. You can change the colors or the wicks, outline for Up/Down candles, the fill color of those candles, and the ability to choose a bar type and a period. You can also choose not to display the value text on the side....


    *Edit*
    Added Displays to show the Bar type and period above, and a timer for the higher time frame below. There are also boolean you can uncheck if you don't want them displayed, but are on by default.

    Changed some of the formatting so the text and HTF candle centers nicely. Also moved the Open and Low texts to the left side of the candle so they no longer overlap each other.

    Fixed more centering issues.

    Fixed overlapping issue when displaying price. I didn't check to see it worked with green candles, so I fixed some of the logic and it works now.

    Fixed some Properties window formatting and descriptions.

    Added a check to ensure that the secondary is a Higher time frame.
    The Secondary time frame can be either "Second", "Minute" or "Day" time frames.
    If the Secondary time frame chosen is lower than the Primary time frame, or the Primary time frame is not either "Second", "Minute" or "Day" time frames, the indicator will default to the Primary data series data.

    Download from the User App Share here: https://ninjatraderecosystem.com/use...-of-three-po3/

    Many thanks! Downloaded your indicator and things look very cool on the NT desktop chart. I only noticed that changing the fill color of the bar (up) doesn't work with the indicator. I want to have it in the color 'MediumSpringGreen', for example. Is there a way to fix this?
    Attached Files
    Last edited by michelz; 04-22-2025, 08:49 AM.

    Leave a comment:


  • danwcw
    replied
    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.
    Was about to reach out hoping for the same but you did it already. Thank you so much. It's a dream come true to have multiple TFs on the same chart. The Fib is an ingenius addon. Looking forward to future improvements Thank you again.

    Leave a comment:

Latest Posts

Collapse

Topics Statistics Last Post
Started by Mindset, 04-21-2026, 06:46 AM
0 responses
77 views
0 likes
Last Post Mindset
by Mindset
 
Started by M4ndoo, 04-20-2026, 05:21 PM
0 responses
109 views
0 likes
Last Post M4ndoo
by M4ndoo
 
Started by M4ndoo, 04-19-2026, 05:54 PM
0 responses
57 views
0 likes
Last Post M4ndoo
by M4ndoo
 
Started by cmoran13, 04-16-2026, 01:02 PM
0 responses
108 views
0 likes
Last Post cmoran13  
Started by PaulMohn, 04-10-2026, 11:11 AM
0 responses
65 views
0 likes
Last Post PaulMohn  
Working...
X