|
|
Search
You searched for the word(s):
< 1 second(s)
-
so im looking at other posts and it seems that the exit swing signal is a type of RSI or even a stochrsi. has anyone tried trading it with overbought oversold levels. i know thats not what it was intended for, but what if you sold when the indicator crossed below 80 and bought as it crossed above 20?
-
sorry about that. sometimes i post questions without too much reserch first. i did see a thread about this before. you came up with this code
n:=10;myVolatility:=ATR(1)/ATR(n);{plot/return}myVolatility;
-
Volatility Ratio = True Range / EMA of True Range for the past n periods.
how do i tun this into a metastock formula?
-
x:=Fml(''macd elders''); If(x>=Ref(x,-1),x,0); If(x<Ref(x,-1),x,0)
-
sorry that didnt come out right, here it is again
x:=Fml(''macd elders'');
If(x>=Ref(x,-1),x,0);
If(x
-
actually, i just figured it out. heres the formula
x:=Fml(''macd elders'');
If(x>=Ref(x,-1),x,0);
If(x
you have to first copy the formula for macd elders
-
looking for the formula to color elders macd histogram red for down, green for up. i have this formula for his macd
( Mov( C,12,E ) - Mov( C,26,E ) ) - Mov( ( Mov( C,12,E ) - Mov( C,26,E ) ),9,E )
now, i looked on the site and found a formula for colored macd histogram
x:=MACD() - Mov(MACD(),9,E); If(x>=Ref(x,-1),x,0); If(x<Ref(x,-1),x,0)
-
does anyone know about the delta plus system by welles wilder? i checked out the website, and was wondering if the were any codes for metastock...
-
im running metastock v10 real time. my data server is esignal. my weekly charts are not updated real time. is there something i can do to fix this?
michael
-
every time i try to access expert advisor i get this messeage:
c:\ program files\equis\metastock\ms90expt.dta: sharing violation. how do i fix this?
-
is there a plug in to help recognize chart patterns with point and figure
-
any expert formulas for elliot wave? has anyone tried the elliot wave plug-in
|
|