Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Pivot point as stoploss

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

    Pivot point as stoploss

    Hello there,
    I'm working on a different stoploss. The goal is to use the pivot point indicator and use the S3 as my stoploss value.
    I setup the indicator and it works fine and shows the lines/values on my chart. However when I use setstoploss it doesn't set a stoploss.
    Code:
    Pivots1                = Pivots(Close, PivotRange.Monthly, HLCCalculationMode.DailyBars, 0, 0, 0, 20); This is the line for the pivots
    SetStopLoss("@", CalculationMode.Price, Pivots1.S3[0], false); this is the line for the stoploss

    #2
    Hello SebastiaanR,

    Thank you for your post.

    Debugging steps should be taken to monitor the strategy as it is executing to determine why the SetStopLoss order was ignored.

    In order to better understand how the code is working, I recommend adding some debugging prints to your strategy. By adding debugging prints for the values used to evaluate your conditions, outside of those conditions you can observe if the strategy's logic is allowing your order submission methods to fire.

    If you are seeing your order submission being reached, but it is not executing, there may be an issue where the strategy is hitting an internal rule that is not allowing you to re-enter. TraceOrders can be used in the strategy (set in State.SetDefaults or in the Strategy Builder under Default Properties) so it prints its order feedback, and you may also observe the log tab of the Control Center for additional information.

    Some items to check when you are taking debugging steps:
    1. Are your strategy's conditions allowing your order submission methods to be reached?
    2. Is the strategy currently in a position that is preventing it from submitting another entry order?
    3. Do you see any errors in the log tab of the Control Center or do Trace Orders give you any feedback?
    I've included some tips for debugging below.

    Debugging Tips - https://ninjatrader.com/support/help...script_cod.htm

    TraceOrders - https://ninjatrader.com/support/help...aceorders2.htm

    Debugging in the Strategy Builder - https://drive.google.com/file/d/1mTq...w?usp=drivesdk

    Debugging Demo - https://drive.google.com/file/d/1rOz...w?usp=drivesdk

    Please let us know if we may assist further.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Today, 05:17 AM
    0 responses
    19 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    119 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    63 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    41 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    45 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X