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 reynoldsn, Today, 02:34 PM
      0 responses
      5 views
      0 likes
      Last Post reynoldsn  
      Started by nightstalker, Today, 02:05 PM
      0 responses
      9 views
      0 likes
      Last Post nightstalker  
      Started by llanqui, Yesterday, 09:59 AM
      8 responses
      28 views
      0 likes
      Last Post llanqui
      by llanqui
       
      Started by quicksandatl, Today, 01:39 PM
      1 response
      6 views
      0 likes
      Last Post quicksandatl  
      Started by md4866, 05-01-2024, 08:15 PM
      2 responses
      18 views
      0 likes
      Last Post md4866
      by md4866
       
      Working...
      X