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
-
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 krpkevin, Today, 07:50 AM
|
0 responses
1 view
0 likes
|
Last Post
![]()
by krpkevin
Today, 07:50 AM
|
||
Started by robforee2, Yesterday, 06:11 PM
|
2 responses
14 views
1 like
|
Last Post
|
||
Started by minds2010, Today, 03:38 AM
|
1 response
11 views
0 likes
|
Last Post
|
||
Started by DTSSTS, Yesterday, 07:11 PM
|
2 responses
32 views
0 likes
|
Last Post
|
||
Started by ntbone, Yesterday, 11:42 PM
|
2 responses
18 views
0 likes
|
Last Post
![]()
by ntbone
Today, 07:39 AM
|
Comment