i have an interesting strategy in tradestation format, and would like to know how to buy 1 tick above the Bar with the Lowest(LOW, 3) in ninjatrader script?
B1(2), // Long momentum length
S1(16), // Short momentum length
B2(4), // Long RSI length
S2(9) // Short RSI Length
If (Momentum( CLOSE , B1) > 0 and RSI( CLOSE , B2) CROSS UNDER 60) then begin
BUY ("B1")cntracts CONTRACT NEXT BAR Lowest( LOW , 3) + 0.01 LIMIT ;
end;
If (Momentum( CLOSE , S1) < 0 and RSI( CLOSE , S2) CROSS OVER 40) then begin
SELLSHORT ("S1")cntracts CONTRACT NEXT BAR Highest( HIGH , 3) - 0.01 LIMIT ;
end;

Comment