Metastock omzetten in vesticode of EL - Metastock omzetten i

Moderator: Perry

Metastock omzetten in vesticode of EL - Metastock omzetten i

Berichtdoor zjoskebest » za 10 apr 2004, 21:46

In zijn algemeenheid: Is er iemand die Metastock om kan zetten in easylanguage . Ik heb hieronder een voorbeeldje staan:

Elder Ray and The Force Index in MetaStock for Windows

Please refer to Dr. Elder for interpretation.

Here are the formulas for calculating the Elder Ray, and the Force Index.

Bull Power: H - Mov(C,13,E) (High minus the moving average)
Bear Power: L - Mov(C,13,E) (Low minus the moving average)

To plot the Elder Ray:

Create the two custom formulas from above.
?
Open the base security.
?
Plot a 13-Period Exponential Moving Average of the closing price in a new inner window.
?
Drag the Bear Power formula and drop it in a new inner window.
?
Drag the Bull Power formula and drop it in a new inner window.
?
Or, you may drop all three indicators in the same inner window if you wish.
The formula for the force index is:

V*(C-ref(C,-1))

NOTE: This formula requires the presence of volume data to work

To plot this formula as a histogram, after dropping the formula in an inner window, right click on the indicator and select properties. Select styles and choose the histogram.

dank je
Ask a question and you?re a fool for three minutes; do not ask a question and you?re a fool for the rest of your life.?
zjoskebest
 
Berichten: 24
Geregistreerd op: zo 15 dec 2002, 20:46
Woonplaats: Best

Metastock omzetten in vesticode of EL

Berichtdoor Paul M » za 10 apr 2004, 22:08

value function BearPower (value xNumberOfBars=13) begin
value xEMA, ?xBear;
xEMA := XAverage(Close,xNumberOfBars);
xBear := Low-xEMA;
?
plot1(xBear,'BearPower');
end;

value function BullPower (value xNumberOfBars=13) begin
value xEMA, xBull;
xEMA := XAverage(Close,xNumberOfBars);
xBull := High-xEMA;
?
plot1(xBull,'BullPower');
end;

value function ForceIndex () begin
value xForceIndex;
xForceIndex:= Volume*(Close-close[1]);
plot1(xForceIndex,'xForceIndex');
end;

Paul
Paul M
 
Berichten: 263
Geregistreerd op: vr 13 dec 2002, 23:21


Keer terug naar Suggesties en vragen

Wie is er online

Gebruikers op dit forum: Geen geregistreerde gebruikers en 3 gasten

cron