PDA

View Full Version : Backtesting


AO76
05-22-2007, 08:49 PM
I'm using the AtmStrategyCreate to enter a trade. I would like to enter a trade at the Current Bid - 1. Will using "Bars.CurrentBid-1" work?

Thanks.

NinjaTrader_Ray
05-23-2007, 07:04 AM
What does 1 represent? If its a price value of 1 then yes, that would work. If you want it to be a tick/pip or penny? Then you would write the following.

CurrentBid - TickSize

AO76
05-23-2007, 09:48 AM
Thanks, TickSize is what I was looking for.