- ago
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.
0
1,114
Solved
5 Replies

Reply

Bookmark

Sort
- ago
#1
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.
0
- ago
#2
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);
0
- ago
#3
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);
1
Best Answer
- ago
#4
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.
0
- ago
#5
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"
1

Reply

Bookmark

Sort