PDA

View Full Version : vervort MA Strategy


alfa123
10-12-2010, 01:30 PM
over all a good Strategy.i try this for scalping.the worst thing it do,when reverse the entry.Absolutly,no need to reverse.Results can be way better if it do not reverse.I need some help here if some body can fix this problem.

NinjaTrader_RyanM
10-12-2010, 01:38 PM
Hello alfa123,

By default entries will reverse a position. What you can do is add a check to all entries if you're flat.

if (Position.MarketPosition == MarketPosition.Flat) (http://www.ninjatrader-support.com/HelpGuideV6/MarketPosition.html)
{
//Enter statements here.
}

alfa123
10-18-2010, 01:10 PM
i change default entreies but still have the same problem.i want complete stop for reversing position.just hit the target or stop or i close mannually.

NinjaTrader_RyanM
10-18-2010, 01:16 PM
If you entry conditions evaluate true, then there will be entries. You will have to define your conditions further if this isn't what you want.