Have you seen this indicator in Ninjatrader 7 or 8
if not, can somebody help to make this, as it is only 5 lines for Low and 5 lines for High
and I got this code from TradeStation
++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++
{ Search Tag: WA-Brkout of X Bar Low }
{ Search Tag: WA-Brkout of X Bar High }
input:
Length( 14 ) [DisplayName = "Length", ToolTip =
"Enter the number of bars over which to track the lowest low."] ;
if Low < Lowest( Low, Length )[1] then
begin
Plot1( Low, !( "BrkoutLo" ) ) ;
Alert ;
end ;
input:
Length( 14 ) [DisplayName = "Length", ToolTip =
"Enter the number of bars over which to track the highest high."] ;
if High > Highest( High, Length )[1] then
begin
Plot1( High, !( "BrkoutHi" ) ) ;
Alert ;
end ;
{ ** Copyright © TradeStation Technologies, Inc. All Rights Reserved **
** TradeStation reserves the right to modify or overwrite this analysis technique
with each release. ** }
++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++
++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++




Comment