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 helpwanted, Today, 03:06 AM
      1 response
      16 views
      0 likes
      Last Post sarafuenonly123  
      Started by Brevo, Today, 01:45 AM
      0 responses
      11 views
      0 likes
      Last Post Brevo
      by Brevo
       
      Started by aussugardefender, Today, 01:07 AM
      0 responses
      6 views
      0 likes
      Last Post aussugardefender  
      Started by pvincent, 06-23-2022, 12:53 PM
      14 responses
      244 views
      0 likes
      Last Post Nyman
      by Nyman
       
      Started by TraderG23, 12-08-2023, 07:56 AM
      9 responses
      387 views
      1 like
      Last Post Gavini
      by Gavini
       
      Working...
      X