> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ninjatrader.com/_mcp/server.

# AtmStrategyChangeEntryOrder()

## Definition

Changes the price of the specified entry order.

## Method Return Value

Returns true if the specified order was found; otherwise false.

## Syntax

`AtmStrategyChangeEntryOrder(double limitPrice, double stopPrice, string orderId)`

## Parameters

| Parameter  | Description                               |
| ---------- | ----------------------------------------- |
| limitPrice | Order limit price                         |
| stopPrice  | Order stop price                          |
| orderId    | The unique identifier for the entry order |

## Examples

```csharp
protected override void OnBarUpdate()
{
     AtmStrategyChangeEntryOrder(GetCurrentBid(), 0, "orderIdValue");
}
```