Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Store the close price for a reference.

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

    Store the close price for a reference.

    Hi,
    I would appreciate if someone can help me with this.

    Step1 I want to store the close price as a value only when the price crosses below lower BB.

    Step2 I want to use that value to scale in a position.
    ie: if Close[0] < value - (3* ATR(14)[0])
    EnterLong(1,"" Lg1");

    Step2 I want to use that value to scale in a position. if Close[0] < value - (6* ATR(14)[0])
    EnterLong(2,"" Lg2");

    The problem I have is storing the value under a specific conditions.

    Many Thx,
    RNR123

    #2
    rnr123, you would just need to check for your condition and then assign the close value to your variable as it returns true, for example -

    Code:
     
    if (Close[0] > Bollinger(2, 20).Upper[0] && Close[1] < Bollinger(2, 20).Upper[1]);
    myValue = Close[0];
    This will store the close price to the variable myValue only if it crossed above the upper Bollinger Band, then you can use this in further calculations.
    BertrandNinjaTrader Customer Service

    Comment


      #3
      Thanks

      Thank you Bertrand

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by rhyminkevin, Today, 04:58 PM
      3 responses
      47 views
      0 likes
      Last Post Anfedport  
      Started by iceman2018, Today, 05:07 PM
      0 responses
      5 views
      0 likes
      Last Post iceman2018  
      Started by lightsun47, Today, 03:51 PM
      0 responses
      7 views
      0 likes
      Last Post lightsun47  
      Started by 00nevest, Today, 02:27 PM
      1 response
      14 views
      0 likes
      Last Post 00nevest  
      Started by futtrader, 04-21-2024, 01:50 AM
      4 responses
      50 views
      0 likes
      Last Post futtrader  
      Working...
      X