Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Buysellpresure Question

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

    Buysellpresure Question

    Hello everyone i am trying to incoperate the Buysellpresure into a strategy however I must be doing it wrong because it only shows the 50% line. I am trying to set a condition so that if the buypresure is greater than 80% for a period of 10 seconds then trigger a long entry and of course the opposite is true for a short entry. I do understand that this indicator in strategy can not be backtested, I plan to experiment on a live basis in simulation mode. If anyone can help it would be great, thanks in advance.

    #2
    Hi tomonly23,

    This appears to be an issue with the CalculateOnBarClose setting.

    First, ensure COBC = false in the strategy.

    Then, edit the BuySellPressure indicator, and create a new instance of it under another name. (Tools>Edit NS>Indicator>Right click>Save As>BuySellPressure2) Edit the indicator and completely delete the CalculateOnBarClose = false; line from the Initialize() section. Compile the indicator.

    Now, call that new instance of the indicator from your strategy.
    TimNinjaTrader Customer Service

    Comment


      #3
      Quick Reply

      Thanks for your help Tim,

      One further question, I can not seem to figure out how to use the BuySellVolume in a strategy basically I would like to set a condition where if the "Buys" is greater than 80% of the BuySellVolume bar then trigger a long entry and vise versa.

      Thanks Tom

      Comment


        #4
        Hi tomonly23,

        The BuySell Volume indicator can not be accessed programmatically. Alternatively, use the BuySell Pressure indicator for programmatic access.

        You can access the BuySellPressure() with something like....

        Code:
        if (BuySellPressure(Close).BuyPressure[0] > 80)
        do something;
        More info at - http://www.ninjatrader-support.com/H...uySellPressure
        TimNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by ageeholdings, Today, 07:43 AM
        0 responses
        6 views
        0 likes
        Last Post ageeholdings  
        Started by pibrew, Today, 06:37 AM
        0 responses
        4 views
        0 likes
        Last Post pibrew
        by pibrew
         
        Started by rbeckmann05, Yesterday, 06:48 PM
        1 response
        14 views
        0 likes
        Last Post bltdavid  
        Started by llanqui, Today, 03:53 AM
        0 responses
        6 views
        0 likes
        Last Post llanqui
        by llanqui
         
        Started by burtoninlondon, Today, 12:38 AM
        0 responses
        12 views
        0 likes
        Last Post burtoninlondon  
        Working...
        X