If not, I will appreciate if anyone in the community can build and share in spare time. thanks in advance.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Price Volume Trend
Collapse
X
-
Price Volume Trend
Hi, is Price Volume Trend (PVT) indicator available for Ninja? It seems quite interesting and shows quite a bit improvement over other similar indicators. Take a look at this: http://chartfilter.com/reports/c36.htm
If not, I will appreciate if anyone in the community can build and share in spare time. thanks in advance.Tags: None
-
This is very similar to OBV (On Balance Volume) as shown the chart below and the attached indicator. Instead of accumulating the up or down volume in OBV, the PVT is multiplying the volume by the Price rate of change.Originally posted by warrior View PostHi, is Price Volume Trend (PVT) indicator available for Ninja?
Alternatively do the following:
Open the Ninjascript editor for OBV and replace what's in the OnBarUpdate section of the code for OBV with the following and you should have it (save the indicator as something else before compiling:
Code:if (CurrentBar == 0) Value.Set(0); else { if (Close[1] != 0) Value.Set(Value[1]+ ( (Close[0] - Close[1]) / Close[1] * Volume[0]) ); else Value.Set ( 0 ); /* if (Close[0] > Close[1]) Value.Set(Value[1]+ Volume[0]); else if (Close[0] < Close[1]) Value.Set(Value[1] - Volume[0]); else Value.Set(Value[1]); */ }
Comment
-
Hey Warrior,
I got your private message...but when I tried to respond to it, apparently your private message folder is full and you cannot accept more messages.
To answer your question about the Multi-Timeframe moving averages:
Yes...visit the website wikipage below, and look under the Multi-Timeframe moving averages page
http://sbgtrading.wiki.zoho.com
There's short screencast video link on the page, it covers the operation of the moving averages in some detail. These moving averages accomplish exactly what you're looking for.
Let me know if you have any questions! Email me at [email protected]
Thanks,
Ben
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
333 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment