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 burtoninlondon, Today, 12:38 AM
      0 responses
      5 views
      0 likes
      Last Post burtoninlondon  
      Started by AaronKoRn, Yesterday, 09:49 PM
      0 responses
      14 views
      0 likes
      Last Post AaronKoRn  
      Started by carnitron, Yesterday, 08:42 PM
      0 responses
      11 views
      0 likes
      Last Post carnitron  
      Started by strategist007, Yesterday, 07:51 PM
      0 responses
      13 views
      0 likes
      Last Post strategist007  
      Started by StockTrader88, 03-06-2021, 08:58 AM
      44 responses
      3,983 views
      3 likes
      Last Post jhudas88  
      Working...
      X