============== TE Entry Price ============== This indicator gives an entry price signal that nominally matches the binary 'Enter Long' signal of the 'PS Fractal Trading System' system tests in MetaStock. The 'Trade Equity' family of indicators can use either price or binary signals and this indicat or is useful for demonstrating entries where the entry signal is also the entry price (stop). Note that it makes no pretence of being a valid system entry and should not be treated as such. ---8<--------------------------- {TE Entry Price} {rlarsen@man.quik.co.nz} {use for 'Timed Exit' demonstration} F1:=ValueWhen(1,H=0.1 AND F1<0.5),F1+.005, If(F1<0.1,F1+.001,F1+.01)); If(Buy,Max(O,Min(H,Target)),0); ---8<--------------------------- ========== Timed Exit ========== This indicator times an exit to occur after the user specified number of periods has passed. Secondary entry signals will be ignored. ---8<--------------------------- {Timed Exit} {rlarsen@man.quik.co.nz} D:= 10; {exit delay from entry leading edge} N:=Fml("TE Entry Price")>0; {entry signal} Tr:=If(PREV<=0,N>0, If(BarsSince(PREV<=0)>=D,-1,1)); Tr=-1; ---8<--------------------------- http://www.metastocktips.co.nz/