protected override void Initialize()
{
Add(PeriodType.Day, 1);
Add(PeriodType.Day, 5);
CalculateOnBarClose = false;
}
/// <summary>
/// Called on each bar update event (incoming tick)
/// </summary>
protected override void OnBarUpdate()
{
// Condition set 1 Long Entry, current price > week high & current price < 5% from day low.
// And time to start/stop entering positions.
if ((BarsInProgress == 0) //OnBarUpdate called for 5min bars
&& (Close[0] > Highs[2][0] && Close[0] < Lows[1][0] * 1.05)
&& (ToTime(Time[0]) >= timestart && ToTime(Time[0]) < timeend))
//Dayhigh - Daylow > ATR20*.75. AvDailyVol>500k, Stocks $10-90, and ATR>1.5 & ATR<3.
{avgdailyvolume = SMA(Volumes[1],20)[0];}
if ((BarsInProgress == 1) //OnBarUpdate called for daily bars
&& (Highs[1][0] - Lows[1][0] > ATR(BarsArray[1], 20)[0]*ATRrange)
&& (avgdailyvolume > 500000)
&& (Closes[1][1] >= 10 && Closes[1][1] <= 90)
&& (ATR(BarsArray[1], 20)[0] > 1.5 && ATR(BarsArray[1], 20)[0] < 3))
{
EnterLong(200);
}
// Condition set 2 Fixed Stop,
if ((BarsInProgress == 0) && (Position.MarketPosition == MarketPosition.Flat))
{
SetStopLoss(CalculationMode.Price, ATR(BarsArray[1], 14)[0]*longstopATRperc);
}
// Condition set 3 Trail Trigger & Trail How
else if ((BarsInProgress == 0)
&& (Position.MarketPosition == MarketPosition.Long && ToTime(Time[0]) > 93500))
{SetStopLoss(CalculationMode.Price, Swing(1).SwingLowBar(0, 1, 10));}
// Condition set 4 Long Exit,
if (ToTime(Time[0]) >= 155000)
{
ExitLong(200);
}
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
No backtest results
Collapse
X
-
No backtest results
Is there anything obvious I have wrong with the strategy code below, I'm not getting any results in the backtest for a month run on all dow stocks. I haven't used this thing in a while, but I have other old strategies that are getting results.
Code:Tags: None
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
68 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
38 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
62 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
62 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment