Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Backtesting with Bid Ask entries?
Collapse
X
-
Yes, provided you coded the strategy to be a MultiSeries one to execute on bid / ask series instead of the last - http://www.ninjatrader.com/support/h...s/nt7/add3.htm
-
For backtesting you need to add the series, as the GetCurrentBid / Ask are just the Close price on historical data.Originally posted by kenb2004 View PostIf I'm using a 1 minute chart and this is my entry code:
EnterLongLimit(DefaultQuantity, GetCurrentAsk() + OffsetBuy * TickSize, "BuyAsk");
do I need to add:
Add(PeriodType.Tick, 1);
to backtest accurately?
And you would need to add the bid / ask MarketDataType series and not just a one tick series.
Comment
-
There's unfortunately no ready made sample available currently - thanks suggesting it. You would do it through code and a MultiSeries strategy - add the bid and ask series to your Initialize() and then execute to those series -
Add(string instrumentName, PeriodType periodType, int period, MarketDataType marketDataType)
Comment
-
If I add this:
Initialize()
Add(Instrument.FullName, PeriodType.Tick, 1, MarketDataType.Bid);
Add(Instrument.FullName, PeriodType.Tick, 1, MarketDataType.Ask);
OnBarUpdate()
if(BarsInProgress == 0) //Main Chart interval
{
}
else if(BarsInProgress == 1) //Bid Tick Chart interval
{
}
else if(BarsInProgress == 2) //Ask Tick Chart interval
{
}
else
{
// Just a place holder. This should never be reached.
}
Do I need to have "Save Chart Data as Historical" checked in Tools>Options>Data>Real-Time data? And is this the right code for me to backtest bid ask in a 1 minute strategy? By the way, this "sample code" is from one of your threads.Last edited by kenb2004; 11-24-2010, 01:57 PM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
649 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
576 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment