Pagina 1 van 1

MFI - Money flow ind

BerichtGeplaatst: vr 09 apr 2004, 10:38
door zjoskebest
Hallo mede vesticsgebruikers

Heeft iemand de easylanguage code voorhanden van de MFI indicator ..?

Wie kan mij daar aan helpen

Groet

Jos

MFI

BerichtGeplaatst: vr 09 apr 2004, 11:50
door GMe
{*******************************************************************
Description: This Indicator plots MFI
Provided By: Omega Research, Inc. (c) Copyright 1999
********************************************************************}

Inputs: MyVol(Volume);

Plot1(MFI(MyVol), "MFI");

{Alert Criteria}
If Plot1 > Highest(Plot1, 20)[1] OR Plot1 < Lowest(Plot1,20)[1] Then
Alert("MFI indicates that a significant move is possible");

{MFI Commentary}
#BeginCmtry
Commentary(ExpertMFI(Plot1));
#End;

MFI

BerichtGeplaatst: vr 09 apr 2004, 16:21
door zjoskebest
Geert

Dank je wel

Jos

MFI

BerichtGeplaatst: vr 09 apr 2004, 18:37
door zjoskebest
Geert

Helaas krijg ik niets geplot. Waar kan dat aan liggen..?

vrgr
Jos

MFI

BerichtGeplaatst: vr 09 apr 2004, 21:46
door GMe
Geen idee, hier heb je nog de bijbehorende MFI functie uit TS. Misschien zit het daar in..............




{*******************************************************************
Description: This Function returns MFI
Provided By: Omega Research, Inc. (c) Copyright 1999
********************************************************************}

Inputs: MyVol(NumericSimple);
Variables: Return(0);

Return = 0 ;
If MyVol > 0 Then
Return = Range / MyVol * 100;

MFI = Return;