Overblog
Editer l'article Suivre ce blog Administration + Créer mon blog
26 mai 2008 1 26 /05 /mai /2008 18:20

The Better Volume Indicator.

Sur le site emini-watch.com, l'auteur présente un indicateur qui lui permettrait d'analyser les volumes pour sélectionner ses trades sur l'ES, future du SP500.  Voici une vue en daily du future Gold avec l'indicateur :



- En rouge :
Climax volume - high volume and high range.
- En vert : High volume churn - high volume but low range.
- En magenta : Climax volume plus High volume churn - both the above conditions (rare).
- En blanc : Low volume churn - low volume and high range.
- En jaune : Low volume - just low volume but not a low volume churn bar.
Je vous renvoie au site pour de plus amples informations.

Il faut mettre les indicateurs en mode histogramme et bien respecter les couleurs : cyan, puis jaune, puis rouge ,puis vert, puis blanc, puis magenta, et enfin, rouge de nouveau.  Voici le code pour Prorealtime :

/////// Better Volume Indicator from emini-watch.com ////////////
vv1=volume
vv2=range*volume
if range<>0 then
    vv3=volume/range
endif
vv4=average[100](vv1)
if vv1=lowest[20](vv1) then
    lowvol=vv1
else
    lowvol=0
endif
if vv2=highest[20](vv2) then
    climax=vv1
else
    climax=0
endif
if vv3=highest[20](vv3) then
    chum=vv1
else
    chum=0
endif
if vv2=highest[20](vv2) and vv3=highest[20](vv3) then
    chumclim=vv1
else
    chumclim=0
endif
if vv3=lowest[20](vv3) then
    lowchum=vv1
else
    lowchum=0
endif
return vv1,lowvol,climax,chum,lowchum,chumclim,vv4

Partager cet article
Repost0

commentaires