Hello, I have been looking for both indicators in WL7, but I havent found them.
Can you give the code for both indicators??
Thank you very much.
Can you give the code for both indicators??
Thank you very much.
Rename
Hi,
If something doesn't exist there probably is a new or even more efficient way to achieve the goal. If you tell us what your objective with these indicators is, we'll try to help.
If something doesn't exist there probably is a new or even more efficient way to achieve the goal. If you tell us what your objective with these indicators is, we'll try to help.
Hi,
Well, I am converting code from Wl6 to Wl7 and I need the equivalence for
barra1= LowestBar.Value(x1, Low, x2);
and the same for:
barra2 = HighestBar.Value (y1, High, y2);
Well, I am converting code from Wl6 to Wl7 and I need the equivalence for
barra1= LowestBar.Value(x1, Low, x2);
and the same for:
barra2 = HighestBar.Value (y1, High, y2);
They have become GetHighestBar and GetLowestBar now and are properties of a TimeSeries - not standalone indicators anymore. Check out the QuickRef for more info. Here's how you call them now:
CODE:
var barra2 = bars.High.GetHighestBar(idx, y2);
This was helpful!
Now we have got enough posts that I am able to find help on most of the stuffs when converting from WL6 script to WL7 script.
Now we have got enough posts that I am able to find help on most of the stuffs when converting from WL6 script to WL7 script.
Just to be on the safe side: please make sure you've downloaded the updated QuickRef v6.9.
You'll find the link in "Sticky Posts" on Discussions page under:
"Quick WL6.9 to WL7 Translation Guide"
You'll find the link in "Sticky Posts" on Discussions page under:
"Quick WL6.9 to WL7 Translation Guide"
Your Response
Post
Edit Post
Login is required