Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Back testing strategy and adding or loading indicators/template to output chart
Collapse
X
-
Do a Help Search for "Add" and you will find this:
protected override void Initialize()
{
// Add a 5 minute Bars object - BarsInProgress index = 1
Add(PeriodType.Minute, 5);
// Add a 100 tick Bars object for the ES 12-06 contract - BarsInProgress index = 2
Add("ES 12-06", PeriodType.Tick, 100);
// Charts a 20 period simple moving average to the chart
Add(SMA(20));
}
Look at the last Add command.
-
Back testing strategy and adding or loading indicators/template to output chart
I am (back)testing a strategy with historical data. In the output chart I can see the buy and sell signals. When I want to insert indicators (or a template) in the output chart I am losing the buy and sell signals from the back testing strategy. Is there a way to add or load indicators in the output chart (afterwards) without losing the buy and sell signals?Tags: None
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by Zek303, 10-20-2024, 06:17 PM
|
4 responses
65 views
0 likes
|
Last Post
by bltdavid
Today, 01:52 PM
|
||
Started by jointkp1, Today, 01:11 PM
|
0 responses
8 views
0 likes
|
Last Post
by jointkp1
Today, 01:11 PM
|
||
Started by warpinator, Today, 01:01 PM
|
0 responses
13 views
0 likes
|
Last Post
by warpinator
Today, 01:01 PM
|
||
Started by C_Hardy, 11-28-2024, 05:44 PM
|
9 responses
66 views
0 likes
|
Last Post
by C_Hardy
Today, 12:41 PM
|
||
Started by kellyboy, Today, 11:29 AM
|
0 responses
9 views
0 likes
|
Last Post
by kellyboy
Today, 11:29 AM
|
Leave a comment: