Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
VWAP Order Flow Strategy
Collapse
X
-
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.Tags: None
-
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:
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!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);
- Likes 1
-
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
23 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
115 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
222 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
406 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|

Comment