Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Strategy Analzer
Collapse
X
-
Hi, Please first use Print in your strategy to see if the code is actually running. E.g. place a print within your Entry condition to see if it's hitting the signal:
Print("Processing entry condition " + Time[0])
if(<entry condition>)
{
Print("Entry Condition Reached " + Time[0]);
EnterLong();
}
Comment
-
ok thanks again.
Can I just check if there is anything I can use to detect if the code is running on a chart or backtest (SA)?
would be good if Visual Studio could be used to debug SA? anyway tracked issue down to
Code://chart ok but issues with SA Draw.TextFixed(this, "tagTK", msg, TextPosition.BottomLeft, Brushes.White, ChartControl.Properties.LabelFont, null, Brushes.Gray, 70); //all ok Draw.TextFixed(this, "tagTK", msg, TextPosition.BottomLeft, Brushes.White, this.myFont, null, Brushes.Gray, 70);
Last edited by dibDab; 03-02-2023, 03:53 AM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
58 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
133 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
73 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
45 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
50 views
0 likes
|
Last Post
|

Comment