Respectfully,
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Strategy Time Period wrong
Collapse
X
-
Strategy Time Period wrong
When I load a strategy through a chart, lets say a 150tick chart for example. My strategy is not referencing the chart it is loaded on (150tick), it is instead referencing a 60 min chart. Is there something I am doing wrong? I just want to be able to load a strategy into the chart, and have it reference that chart period, not a 60min. Is the 60 min period maybe programmed in the script? Any help would be great!
Respectfully, -
Hello Corbett,
Thank you for your response.
Go to Tools > Edit NinjaScript > Strategy > select your strategy > OK > look in the Initialize() method for calls to Add() for other period types.
Information on multiple series scripts can be found at the following link: http://www.ninjatrader.com/support/h...nstruments.htm
Comment
-
#region Initialize
protected override void Initialize()
{
//TraceOrders = true;
CalculateOnBarClose = false;
logbufer = new List<string>();
SetProfitTarget(CalculationMode.Ticks, take);
SetStopLoss(CalculationMode.Ticks, stop);
timerFlatten = new Timer();
timerFlatten.Elapsed += new ElapsedEventHandler(OnTimerElapsedFl);
timerFlatten.Interval = timerIntervalFl;
}
#endregion
Comment
-
Hello Corbett,
Thank you for your response.
Please send me your log and trace files for today so that I may look into what occurred.
You can do this by going to the Control Center-> Help-> Mail to Platform Support.
Please reference this thread in the body of the e-mail: "http://www.ninjatrader.com/support/forum/showthread.php?t=73135"
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
102 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
144 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
71 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
125 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
79 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment