Gann HiLo Activator?
Author: vingadordomal
Creation Date: 12/22/2010 9:11 AM
profile picture

vingadordomal

#1
Hello friends.
I searched but could not find the answer, then I'll ask for y'all:
Where is the Hilo Activator in Wealth-Lab 6?
If he does not have that version could pass me the code?

The code for Metastock is:
Periods:=
Input("Periodo,3 or 6",1,100,6);

HLd:=If(CLOSE>Ref(Mov(H,Periods,S),-1),
{then}1,
{else}If(CLOSE<Ref(Mov(L,Periods,S),-1),
{then}-1,
{else}0));
HLv:=ValueWhen(1,HLd<>0,HLd);
HiLo:=If(HLv=-1,
{then}Mov(H,Periods,S),
{else}Mov(L,Periods,S));
HiLo;
profile picture

Eugene

#2
Hello,

Even if we find the code, what would you do with it? You've registered just minutes ago under the made-up name "Evil Avenger" (the English for Vingador do Mal) and haven't taken a free trial of Wealth-Lab Developer 6 yet (the international version supported in your part of the world). I'm all puzzled.
profile picture

vingadordomal

#3
I am testing the software in a few hours of a friend.
I use metastock, but I'm thinking about buying the Wealth-Lab 6 if I can mount my system in it.
Excuse me if this forum is only for registered, if you want to delete my topic please feel free to do.
profile picture

vingadordomal

#4
And vingadordomal is my nickname I use in various forums in Portuguese.
profile picture

Cone

#5
The formula doesn't make sense to me. It assigns a value of 1 or -1 to HLd, but then assigns the same value to HLv (in the ValueWhen statement) and doesn't do anything else with HLd. Then it makes assignments that it could have done in the "HLd :=" statement.

Maybe it's that I don't understand MSFL, but here's what it translates to, as I see it:
CODE:
Please log in to see this code.
profile picture

vingadordomal

#6
Cone I tested and was equal to my metastock.
Thanks!
This website uses cookies to improve your experience. We'll assume you're ok with that, but you can opt-out if you wish (Read more).