Overblog
Suivre ce blog Administration + Créer mon blog
24 juillet 2009 5 24 /07 /juillet /2009 20:19



Si vous appréciez l’indicateur Grey Zone de Bill Williams ,vous pouvez simplement modifier le code ,et utiliser le système avec les Macd :

 

Vous pouvez faire un indicateur Grey Zone Macd  moyennes exponentielles et macd
– signal (moyenne exponentielle) – premier graphe.(9 , 19, signal 6).

 

Vous pouvez adapter le Grey Zone avec macd dema ,avec signal (moyenne exponentielle).

second graphe.(12 , 26 , signal 9).

Etc , etc .....................
 



Bons trades.





Partager cet article
Repost0
Published by SOHOCOOL - dans Bill Williams
19 juillet 2009 7 19 /07 /juillet /2009 18:01

Le grey zone de bill williams , est simple d'utilisation :

Quand l'awesome et  l'accélération / décélération sont de la même couleur :le marché est
très haussier (vert) ,ou très baissier (rouge).

Sinon , c'est la Gray Zone : le marché est en transition(bleu).


Voir Trading in the zone:(anglais).

http://www.alpari.co.uk/en/alpari_academy/market_analysis/bill_chaos/trading_zone.html

Bons trades.


///Code PRT GreyZone Bill Williams///


////Mettre les 3 en histogramme
rem a/o awesome oscilator  mm simple et median price
//variable p= mm courte défaut 5 -- q = mm longue  par défaut 34
// varible r = moyenne signal par défaut 5

a1=Average[p](medianprice)

b1=Average[q](medianprice)

c1=a1-b1


si=average[r](c1)

ac=c1-si

/////////////////////////////////////////////////////////////////////////////////////


if ac > ac[1]  and c1>C1[1] Then
 dd =1
 
else
 dd=0
 
endif

if ac< ac[1] and c1 < c1[1] then
 ee=1
 
else
 ee=0
 
endif

if (ac<ac[1] and c1>c1[1]) or ( ac>ac[1] and c1<c1[1]) then
 ff=1
else
 ff=0
endif


return dd COLOURED(0,153,0)as"Up",ee COLOURED(255,0,0)as"down",ff COLOURED(0,0,255)as"transition"

/////////////////////////fin du code

 

 

 

Partager cet article
Repost0
Published by SOHOCOOL - dans Bill Williams
8 mai 2009 5 08 /05 /mai /2009 19:12

Indicateur fractal de B.Wiliams modifié en canal ,et avec un millieu (RET).

http://www.forexfactory.com/showthread.php?t=164704

http://translate.google.be/translate?prev=hp&hl=fr&js=n&u=http%3A%2F%2Fwww.forexfactory.com%2Fshowthread.php%3Ft%3D164704&sl=en&tl=fr


/////////// FRACTAL CHANNEL  V5
//Varible = cp  - par défaut =2  --( takbir = 5)

if high[cp] >= highest[2*cp+1](high) then
 LH = 1
else
 LH=0
endif

if low[cp] <= lowest[2*cp+1](low)  then
 LL= -1
else
 LL=0
endif

if LH=1 then
 hil = high[cp]
 
endif

if LL  = -1 then
 LOL=low[cp]
 
endif

if high > hil then
 hil = high
endif

if low < lol then
 lol = low
endif

mid = (hil + lol) / 2

return lol coloured(255,0,0) as "fractal bas",hil coloured(0,255,0) as"fractal haut",mid coloured(0,0,255) as"milieu"

///////////////////////////FIN

 

 


Partager cet article
Repost0
Published by SOHOCOOL - dans Bill Williams
3 mai 2009 7 03 /05 /mai /2009 08:33

L'oscillateur AC - accélération / décélération de Bill Williams, ci-dessous un lien pour les explications d'utilisation:

http://translate.google.be/translate?prev=hp&hl=fr&js=n&u=http%3A%2F%2Fwww.alpari-idc.com%2Fen%2F%2Falpari_academy%2Fmarket_analysis%2Fbill_chaos%2Fac.html&sl=en&tl=fr

http://www.alpari-idc.com/en//alpari_academy/market_analysis/bill_chaos/ac.html

aussi:

http://translate.google.be/translate?prev=hp&hl=fr&js=n&u=http%3A%2F%2Fwww.metaquotes.net%2Ftechanalysis%2Findicators%2Faccelerator_decelerator&sl=en&tl=fr

http://www.metaquotes.net/techanalysis/indicators/accelerator_decelerator


///////A/C   début
//variable p défaut = 5
//variable q défaut =34
// variable du signal défaut = 5

 

a1=Average[p](medianprice)

b1=Average[q](medianprice)


c1=a1-b1


si=average[r](c1)


ac=c1-si

if ac > ac[1] then
 d=ac
 f=1
else
 
 if ac <= ac[1] then
  
  
  d=ac
  f=-1
  
 endif
endif

 


return d coloured by f as " Accel - Deccel"

 

//////////////FIN


























































Partager cet article
Repost0
Published by SOHOCOOL - dans Bill Williams
30 avril 2009 4 30 /04 /avril /2009 23:00

L' awesome de Bill Williams ,aussi appellé Elliot Wave oscillateur .

 Ci-dessous un lien avec une video explicative :

http://www.walmaster.com/mailing/081003/index.asp


ci-dessous lien explications en anglais.

http://translate.google.be/translate?prev=hp&hl=fr&js=n&u=http%3A%2F%2Fwww.metaquotes.net%2Ftechanalysis%2Findicators%2Fawesome_oscillator&sl=en&tl=fr

http://www.metaquotes.net/techanalysis/indicators/awesome_oscillator


http://translate.google.be/translate?prev=hp&hl=fr&js=n&u=http%3A%2F%2Fwww.alpari-idc.com%2Fen%2F%2Falpari_academy%2Fmarket_analysis%2Fbill_chaos%2Fac.html&sl=en&tl=fr


PDF CHAOS 2 : http://www.forexfactory.com/attachment.php?attachmentid=150283&d=1222093116


Code prorealtime :

/////////début

rem a/o awesome oscilator  mm simple et median price

// variable =p- moyenne courte -défaut =5
//variable=q - moyenne longue - défaut = 34


a1=Average[p](medianprice)

b1=Average[q](medianprice)

c1=a1-b1

if c1 > c1[1] then
 d=c1
 f=1
 
else
 
 if c1 <= c1[1] then
  
  d=c1
  f=-1
  
 endif
endif

return d coloured by f as "awesome"


////////////////fin

Partager cet article
Repost0
Published by SOHOCOOL - dans Bill Williams
11 avril 2009 6 11 /04 /avril /2009 08:33

Voici une methode simplifiée ,par rapport au code de Hk-lisse , mais avec une variable.

ci-dessous 2 graphes ,le premier avec variable =2 et, le second avec variable =5

Il me semble que ce code est plus facile d'utilisation .

Pour explication voir :

 http://www.metaquotes.net/techanalysis/indicators/fractal


http://www.forexfactory.com/showthread.php?t=164704

/////////// FRACTALS DE BILL WILLIAMS
//Varible = cp  - par défaut =2


if high[cp] >= highest[2*cp+1](high) then
 LH = 1
else
 LH=0
endif

if low[cp] <= lowest[2*cp+1](low)  then
 LL= -1
else
 LL=0
endif

if LH=1 then
 hil = high[cp]
 
endif

if LL  = -1 then
 LOL=low[cp]
 
endif

 

return lol coloured(255,0,0) as "bas",hil coloured(0,255,0) as"haut"

/////////////fin




























 






























POUR METATRADER : ci-dessous indicateur Takbir modifié, si vous mettez les
2 variables sur 2 vous avez l'indicateur FRACTALS de BILL WILLIAMS
-si les 2 variables sur 5 (left-right) le Takbir.
-si variables left = 2 et right =1 vous avez le Scalper version II de HK-lisse. 

http://ultrashare.net/hosting/fl/9ff14a0342

Partager cet article
Repost0
- dans Bill Williams