Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 3/7/2005(UTC) Posts: 1,346
|
hey andre.... now thats interesting... using the function list should rule out errors of most any kind.... i created the indicator, an explorer, expert and system using your formula and fml name.... everything works fine here.... can you apply your indicators to charts...... still studying on it......h
ao
Mov((H+L)/2,5,S)-Mov((H+L)/2,34,S)
ao ref>
pds:= Input("pds",1,50,1);
Fml("ao")>Ref(Fml("ao"),-pds)
-------------------------------
ao < ref
pds:= Input("pds",1,50,1);
Fml("ao")<Ref(Fml("ao"),-pds)
Exploration
----------------------------------------------------------------
Col A: bullish Fml("ao")>Ref(Fml("ao"),-1)
Col B: bearish Fml("ao")<Ref(Fml("ao"),-1)
---------------------------------------------------------------
Filter enabled Yes
Periodicity Daily
Records required 4000
ao
{ao with inputs}
sma:= Input("slow periods",3,200,34);
fma:=Input("fast periods",2,199,5);
Mov((H+L)/2,fma,S)-Mov((H+L)/2,sma,S)
ao expert
trends
bullish
Fml("ao")>Ref(Fml("ao"),-1)
bearish
Fml("ao")<Ref(Fml("ao"),-1)
---------------------------
|