Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

entry price variable not working!!!

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

    entry price variable not working!!!

    how do I set a variable under onbarupdate to set to the price I entered the market at?

    double EntryPrice = Position.AvgPrice;

    this doesnt seem to be working for me as when I added

    double EntryPrice = Position.AvgPrice;
    Print(EntryPrice);

    it printed 0! yes...a load of zeros?!!

    can anybody help me here???

    #2
    Hello James377,

    Yes, it will be zero if you are not in a position. You may want to consider this check.

    if (Position.MarketPosition != MarketPosition.Flat)
    {
    double EntryPrice = Position.AvgPrice;
    Print(EntryPrice);
    }
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      thanks for this but the output window is just returning a load of zeros again?? why is this??help!

      Comment


        #4
        profitfactor = 2;
        EntryPrice = Position.AvgPrice;
        //Print(EntryPrice);
        SetProfitTarget("", CalculationMode.Price,EntryPrice + (profitfactor * TickSize));

        any ideas why this wont work in onbarupdate?

        Comment


          #5
          Make sure you've recompiled, removed any instances of the strategy and try again.

          If you have any issues, please post the most recent OnBarUpdate() block for the code you're working with.
          Ryan M.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by argusthome, 03-08-2026, 10:06 AM
          0 responses
          85 views
          0 likes
          Last Post argusthome  
          Started by NabilKhattabi, 03-06-2026, 11:18 AM
          0 responses
          47 views
          0 likes
          Last Post NabilKhattabi  
          Started by Deep42, 03-06-2026, 12:28 AM
          0 responses
          29 views
          0 likes
          Last Post Deep42
          by Deep42
           
          Started by TheRealMorford, 03-05-2026, 06:15 PM
          0 responses
          32 views
          0 likes
          Last Post TheRealMorford  
          Started by Mindset, 02-28-2026, 06:16 AM
          0 responses
          67 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Working...
          X