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 dcriador, Yesterday, 01:43 AM
          5 responses
          26 views
          0 likes
          Last Post dcriador  
          Started by James650, Today, 08:25 AM
          1 response
          2 views
          0 likes
          Last Post NinjaTrader_ChristopherJ  
          Started by Rogers101, 05-05-2024, 11:30 AM
          14 responses
          40 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Started by MSerag, Yesterday, 11:52 PM
          2 responses
          21 views
          0 likes
          Last Post MSerag
          by MSerag
           
          Started by ETFVoyageur, 04-30-2024, 06:05 PM
          11 responses
          80 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Working...
          X