Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Highest Price after Position Entry
Collapse
X
-
Highest Price after Position Entry
I am trying to find a way to record the highest price the stock will reach AFTER the position is entered. This is to identify that if a stock goes above a specific threshold, a value will become TRUE and new conditions will be used for further entry/exit. What is the best way to record the prices after entry to find the highest, or is there an easier function to use?
ThanksTags: None
-
Hello,
I have provided a sample below of how you could record the highest price after you have entered a position. Please let me know if you have any questions on the sample below:
Code:#region Variables private IOrder entryOrder = null; private double highestPrice; #endregion protected override void OnBarUpdate() { if(SMA(20)[0] > Close[0] && entryOrder = null) EnterLong(); if(Position.MarketPosition != MarketPosition.Flat && High[0] > highestPrice) highestPrice = High[0]; } protected override void OnExecution(IExecution execution) { if(entryOrder == execution.Order) highestPrice = High[0]; }Cody B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
89 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
92 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
70 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
87 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
64 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment