Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

MarketPosition

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

    MarketPosition

    Hi,

    Trying to get a strategy that just exits immediately after entering a trade.

    //If Short exit Short
    if (Position.MarketPosition = MarketPosition.Short)
    {
    ExitShort(
    100);
    Print(
    "Exited Short for Profit");

    }


    For Marketposition if i say NOT EQUALS it compiles. If i have EQUALS it will not compile.

    Appreciate the help

    Cheers

    NinjaScript FileErrorCodeLineColumnStrategy\GapCounter.csNon-invocable member 'NinjaTrader.Cbi.MarketPosition.Short' cannot be used like a method.CS1955 - click for info5249Strategy\GapCounter.csCannot implicitly convert type 'NinjaTrader.Cbi.MarketPosition' to 'bool'CS0029 - click for info528

    #2
    if (Position.MarketPosition = MarketPosition.Short)

    is an assignation, not a comparison.

    You want:
    Code:
     
    if (Position.MarketPosition [B][COLOR=red]==[/COLOR][/B] MarketPosition.Short)

    Comment


      #3
      Thanks Koganam!

      First week of C# so still unfamiliar with the syntax

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      647 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      369 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      108 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      572 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      573 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X