Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers, Unverified Users Joined: 10/28/2004(UTC) Posts: 3,111 Location: Perth, Western Australia
Was thanked: 16 time(s) in 16 post(s)
|
Akira, Welcome to the Forum... I think you will benefit greatly by reading the MS Users Manual and attempting
all the exercises in the free Equis Formula Primer (from the downloads
section). Both of these will give you the knowledge and know-how to
build your own indicators, experts, explorations and systems; simple
ones like expressed in this thread, and with some time and practice you
will be able to code more complex ideas. To get you started try this: Code:
mul:=2;
prd:=20;
stdh := Mov(C,prd,E)+mul*(Stdev(C,prd));
stdl := Mov(C,prd,E)-mul*(Stdev(C,prd));
{plot}
stdh;
stdl;
OR Code:
mul:=Input("StDev Multiplier",1,100,2);
prd:=Input("Periods",1,100,20);
stdh := Mov(C,prd,E)+mul*(Stdev(C,prd));
stdl := Mov(C,prd,E)-mul*(Stdev(C,prd));
{plot}
stdh;
stdl;
Hope this helps wabbit [:D]
|