PDA

View Full Version : New Metastock 9.0 and Tradesim


AZGuy
24th April 2004, 06:18 AM
Hello,
I am new to both programs. I am trying to enter the new point and figure sell signals formulas found in Metastock 9.0 under the expert advisor. However, when I copy and paste the formula for the double bottom sell signal to the ExitTrigger:=

Double Bottom sell signal:

data:= FmlVar("** P & F Values **","DATA");
box:= LastValue(FmlVar("** P & F Values **","BOX"));
reva:= LastValue(FmlVar("** P & F Values **","REVERSAL"));
thresh:=LastValue(FmlVar("** P & F Values **","THRESHOLD"));

newx:=ExtFml("PointFig.pointfig",data,box,reva,thresh,col)=1 AND ExtFml("PointFig.pointfig",data,box,reva,thresh,rev)=1;

Cross(ValueWhen(1,newx,Ref(ExtFml("PointFig.pointfig",data,box,reva,thresh,box),-1)),ExtFml("PointFig.pointfig",data,box,reva,thresh,box))

I get the following error: (This is not a recognized name, constant or operator.)

Any ideas?
Thanks :roll:

drl711
27th May 2004, 02:00 AM
This is not a recognized name, constant or operator.)

Can you define "this"-what word or value is it pointing to? When this error comes up,where is your mouse cursor hovering over/-it may be pointing to the item.

These formulas need the "P&F Values" indicator . Is it available?

Just a guess.

:idea: