Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Using the WMA() API on indexed arraybars?

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

    Using the WMA() API on indexed arraybars?

    I am creating a strategy script. In it, I need to use two pricing array bars.

    Say the Primary is symbol DIS and the secondary is symbol C.

    I am able to calculate the current Ask Spread between these two symbols by using:
    dCurrAskSpread = GetCurrentAsk( 0 ) - GetCurrentAsk( 1 );
    where 0 indexes DIS, and 1 indexes C.

    This is good.


    I also need to be able to calculate the WMA between these two symbols.
    However, it appears that WMA() only operates on the current BarsInProgress data.

    That is, it doesn't appear that I can do the following:
    dCurrWMAspread = WMA( High (for symbol DIS), 10 ) - WMA( High (for symbol C), 10 );

    How do I go about calculating WMA for the symbol C when the DIS tick update is happening?
    Likewsie, the reverse is true when the C tick update is happening.

    #2
    The correct syntax is:

    WMA(Highs[0], 10) - WMA(Highs[1], 10);

    Additional information - http://www.ninjatrader-support.com/H...eV6/Highs.html

    RayNinjaTrader Customer Service

    Comment


      #3
      Thanks much--that did the trick!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by traderqz, Today, 09:44 AM
      2 responses
      4 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by stafe, 04-15-2024, 08:34 PM
      8 responses
      40 views
      0 likes
      Last Post stafe
      by stafe
       
      Started by rocketman7, Today, 09:41 AM
      2 responses
      6 views
      0 likes
      Last Post rocketman7  
      Started by rocketman7, Today, 02:12 AM
      7 responses
      31 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by guillembm, Yesterday, 11:25 AM
      3 responses
      16 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Working...
      X