View the Change Log. ...
NinjaTrader 6.5 Beta is here!
The team at NinjaTrader is very excited to bring you NinjaTrader Version 6.5 Beta with over 160 user driven enhancements. You are welcome to use this beta release and report back any issues you run across in this forum section.
Quote from Pr0crast:
I'm on 6.0 right now but I did notice one of the ninja guys saying some channel drawing bugs etc were fixed for 6.5. Is it worth going to the beta?
Quote from PointOne:
I use paintbars to colour the volume pane background depending on whether price went up relative to the prior bar (grey), down (pink), inside (no color) or outside (light blue). I also colour the volume bars based on the prior bar close. That gives me the IF1 visibly as when price goes up beyond prior bar close the volume bar is black, down red and level grey.
Quote from bi9foot:
FYI, what you showed was done using AmiBroker.
Quote from LostTrader:
Thanks!! I knew I stole that sample from some-body on these forums...![]()
AmiBroker is my fall-back plan - I have gotten used to QuoteTracker, but suspect I want more scripting capability and am trying NinjaTrader first - the market recording & replay is a big plus.
input: offset(0),
upperline(2),
lowerline(-2);
var: Spread (0),
STRSQZ (0),
close1(0),
close2(0);
close1 = close data1;
close2 = close data2;
Spread = close1 - close2;
STRSQZ = spread - offset;
If STRSQZ > upperline then setplotcolor (1, green)
else
If STRSQZ < lowerline then setplotcolor (1, red);
Plot1 (STRSQZ, "STRSQZ");
plot2 (0,"Zero") ;
plot3 (upperline, "Upperline");
plot4 (lowerline, "Lowerline");
