Announcement
Collapse
Looking for a User App or Add-On built by the NinjaTrader community?
Visit NinjaTrader EcoSystem and our free User App Share!
Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less
Partner 728x90
Collapse
NinjaTrader
BarsInProgress
Collapse
X
-
Originally posted by NinjaTrader_Bertrand View PostNot exactly, you point to the specific data you wish to use, but you do not tell the code when to do it. If the primary series gets an update, if the secondary gets an update etc, that's what BarsInProgress is used for.
Code:protected override void Initialize() ....... BarsRequired = userValueFromVariables; Add("MyStock", PeriodType.Day, 1); ........... protected override void OnBarUpdate() if (CurrentBars[0] <= BarsRequired || CurrentBars[1] <= BarsRequired) return; [B][COLOR="Green"]//Here I enter LONG, than SHORT, so add BarsInProgress here for both LONG and SHORT[/COLOR] if (BarInProgress==0) {[/B] if (Closes[1][0]>myS && conditions for long) { there are only main stock values in use: Close[0] etc. and nothing from added instrument } if (Closes[1][0]<myS && conditions for Short) { there are only main stock values in use: Close[0] etc. and nothing from added instrument } [B]}[/B][COLOR="green"] //and here we close if()[/COLOR] if (conditions for trails) {there are only main stock values in use} protected override void OnExecution(IExecution execution) {there is EntryOrder and trails operating.}
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by ark321, Today, 07:30 PM
|
0 responses
2 views
0 likes
|
Last Post
by ark321
Today, 07:30 PM
|
||
Started by olisav57, Today, 07:25 PM
|
0 responses
4 views
0 likes
|
Last Post
by olisav57
Today, 07:25 PM
|
||
Started by duck_CA, 08-06-2024, 05:24 PM
|
4 responses
73 views
0 likes
|
Last Post
by duck_CA
Today, 06:45 PM
|
||
Started by defa0009, Today, 06:44 PM
|
0 responses
7 views
0 likes
|
Last Post
by defa0009
Today, 06:44 PM
|
||
Started by janio973, Today, 06:39 PM
|
0 responses
5 views
0 likes
|
Last Post
by janio973
Today, 06:39 PM
|
Comment