
07-23-2006, 08:26 AM
|
 |
Senior Member
|
|
Join Date: Jan 2006
Posts: 377
|
|
Quote:
|
Originally Posted by spahiu
here is the formula behind the dots, in VT code
FL := Mov( pr,Sh,tpma ) - Mov( pr,Lg,tpma );
SL := Mov(Mov( pr,Sh,tpma ) - Mov( pr,Lg,tpma ),sig,tr);
OsMA:=FL-SL;
Buydot:=if(OsMA<-abovbelow and OsMA>ref(OsMA,-1),1,0);
PlaceBuydot:=If(buydot=1 and Ref(BuyDot,-1)=0,L-0.0003,null);
Selldot:=if(OsMA>abovbelow and OsMA<ref(OsMA,-1),1,0);
PlaceSelldot:=If(Selldot=1 and ref(SellDot,-1)=0,H+0.0003,null);
BuyLine:=If(Buydot=1,C,prev);
|
What is the abovebelow value?
|