Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
auto pitchfork
Collapse
X
-
Tags: None
-
I've been trying my hand at code such an auto pitchfork but ran into a problem. I can't get the fork to draw more than 38 bars back from the current (0) bar (& yes that many bars exist).
for example:
This works
DrawAndrewsPitchfork("FORKU", 0, 1060, 0, 1070, 38, 170);
Doesn't Work
DrawAndrewsPitchfork("FORKU", 0, 1060, 0, 1070, 39, 170);
Anybody have any suggestions as to what I might be doing wrong or need to check for?Last edited by i001962; 10-23-2009, 08:59 PM.
Comment
-
i001962, the only way to be sure that many bars exist is to return out of the code if that many bars do not exist. Here is a link that will take you to a tip that describes how to check if you have enough bars.
Basically your OnBarUpdate() should look something like this:
If that doesn't fix it, do you have any error or anything in your logs (right-most tab in Control Center)?Code:protected override void OnBarUpdate() { // very important this is first if (CurrentBar < 39) return; // the rest of your code goes here }AustinNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
152 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
305 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
244 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
345 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
176 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment