Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

VWAP Order Flow Strategy

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

    VWAP Order Flow Strategy

    I'm new and need assistance in coding an Order Flow VWAP Crossover strategy. I have a lifetime NT8 license. Anyone have a template I could use? Thanks.

    #2
    Maybe you intended to post in the NT8 forum? In any case - in NT8 at least - you can use this code to retrieve the vwap value if you have the order flow license:

    Code:
    // Put this in the OnBarUpdate() section:
    
    double vwapVal = OrderFlowVWAP(VWAPResolution.Standard, TradingHours.String2TradingHours("Default 24 x 7"), VWAPStandardDeviations.None, 1, 2, 3).VWAP[0];
    Print("The current VWAP is: " + vwapVal);
    Then you can look into the strategy sample provided with NT8 "SampleMACrossover.cs" for a very clear and simple crossover logic to manage your trades. Good luck!

    Comment


      #3
      Yes, I did mean to post that in NT8 (I'm a newb). Thanks for the reply - will give that a shot!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by rocketman7, Today, 02:12 AM
      5 responses
      21 views
      0 likes
      Last Post rocketman7  
      Started by trilliantrader, 04-18-2024, 08:16 AM
      7 responses
      27 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by samish18, 04-17-2024, 08:57 AM
      17 responses
      65 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by briansaul, Today, 05:31 AM
      1 response
      13 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by PaulMohn, Today, 03:49 AM
      1 response
      12 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X