PDA

View Full Version : Range indicator


T2020
07-29-2009, 11:24 AM
I would like to plot this indicator in the lower right hand corner of pane 1 ,
the same way Bar timer or tick counter are plotted . No histogram . Just tell
me the max range of the current bar .No count down of any kind . What
would it take to do that . tia

NinjaTrader_ChristopherJ
07-29-2009, 11:31 AM
Hello T2020,

Thank you for your post.

Unfortunately this is not available as default within NinjaTrader at this time, however I will forward this to our development team for future considerations.

This is possible but would require custom programming. If you yourself are not a programmer, any of the NinjaScript consultants listed at the following link could code this project for you:

http://www.ninjatrader.com/webnew/partners_onlinetrading_NinjaScript.htm

Please let me know if I may be of further assistance.

T2020
07-29-2009, 12:00 PM
Thanks for the generic answer . :rolleyes:

roonius
07-29-2009, 01:19 PM
I would like to plot this indicator in the lower right hand corner of pane 1 ,
the same way Bar timer or tick counter are plotted . No histogram . Just tell
me the max range of the current bar .No count down of any kind . What
would it take to do that . tia

DrawTextFixed("currentrange", (High[0] - Low[0]).ToString(), TextPosition.BottomRight);

T2020
07-29-2009, 04:47 PM
DrawTextFixed("currentrange", (High[0] - Low[0]).ToString(), TextPosition.BottomRight);
Thank you kindly . I'll have to work on font size and maybe add bold to it
some day ,but it does what I want .
Thanks again . :)

Ashtree gambler
11-29-2011, 02:00 AM
Thank you kindly . I'll have to work on font size and maybe add bold to it
some day ,but it does what I want .
Thanks again . :)
Hope there are still people out there !

This looks like a great indicator, I've tried educating myself to be able to bring the code into NT but lets say it has not gone well.

Please could someone turn this into an indicator I could import or point me in the direction of a similar indicator that may now be out there ?

Many thanks.

koganam
11-29-2011, 10:26 AM
Hope there are still people out there !

This looks like a great indicator, I've tried educating myself to be able to bring the code into NT but lets say it has not gone well.

Please could someone turn this into an indicator I could import or point me in the direction of a similar indicator that may now be out there ?

Many thanks.

Just create a new indicator using the wizard, without specifying anything.

Then replace the OnBarUpdate() code block text with what roonius gave out in the earlier post.

Ashtree gambler
11-30-2011, 01:17 AM
Wow, it worked, many thanks.