Camillo Posted June 8, 2018 Report Share Posted June 8, 2018 Is it possible to write something in the graph with the advanced mode ?For example the value of some variables of the paintbar for debugging.See my attached image : Quote Link to comment Share on other sites More sharing options...
Mike Medved Posted June 15, 2018 Report Share Posted June 15, 2018 Debugging paintbars is something we're looking at. Quote Link to comment Share on other sites More sharing options...
Camillo Posted June 18, 2018 Author Report Share Posted June 18, 2018 (edited) Debugging paintbars is something we're looking at. Thank you for that Another question : If I write this code : HMA3 would be represented by a line on the graph such as HMA (22) and HMA (50) Edited June 18, 2018 by Camillo Quote Link to comment Share on other sites More sharing options...
Jerry Medved Posted August 21, 2018 Report Share Posted August 21, 2018 sorry, this was missed I think. Yes you can do that. you can add 2 lines: SetColor("HMA3", SysColor.MainIndicator1); SetYValue(HMA3); SetYValue will only work if the color is set prior to it being called. Quote Link to comment Share on other sites More sharing options...
deelousy Posted October 28, 2018 Report Share Posted October 28, 2018 +1 for writing on the chart. I have volume values I wanted to print onto chart, based from values from the Weis Wave Vol (almost trying to recreate his zigzag volume indicator). Btw, I'm happy I ended up getting a subscription. The scanner features alone are a godsend for trading crypto. Quote Link to comment Share on other sites More sharing options...
Jerry Medved Posted October 28, 2018 Report Share Posted October 28, 2018 Can't write freely on the chart using the Paintbar. However, assuming you are using Advanced mode, you can SetShape and change the values based on your computations. For example, I just made this sample Paintbar show a different value above each candle: public void MainCalculation() { SetColor(SysColor.MainIndicator1); this.SetShape((PBShape)(200 + shapeIndex++)); if (shapeIndex > 35) shapeIndex = 0; return; } int shapeIndex = 0; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.