Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Position.Avgprice

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Position.Avgprice

    Print ("Position.AvgPrice = " + Position.AvgPrice);
    EnterLongStop(High[1] + (entry * ATR(14)[0]), "");

    Why does this print a value before I have entered the trade?

    is this Position.AvgPrice looking at my last trade or something???

    how do i clear this value or set it to 0 as it seems to be messing up my calculations further on in my code..

    or could somebody tell me why this is happening?

    #2
    Hello James 377,

    Position.Avg price returns zero when you're flat.

    You could check that you are in a position prior to accessing it.

    if (Position.MarketPosition != MarketPosition.Flat)
    Print ("Position.AvgPrice = " + Position.AvgPrice);
    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    27 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    117 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    69 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    226 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    415 views
    0 likes
    Last Post CaptainJack  
    Working...
    X