Précédent   Forum Forex > Trading Forex > Trading Divers

Trading Divers Les indicateurs techniques - Le money management - Les livres Forex...

mahmoud timmer
Réponse
 
LinkBack Outils de la discussion Modes d'affichage
Vieux 14/01/2009, 00h19   #21 (permalink)
Membre Star
 
Avatar de boursicoton
 
Date d'inscription: juillet 2007
Localisation: correze
Messages: 309
Pouvoir de réputation: 7
boursicoton deviendra bientot célèbre...
Par défaut

ben non, pas pu le corriger....il manque la partie qui affiche.....
boursicoton est déconnecté   Réponse avec citation
Vieux 14/01/2009, 00h27   #22 (permalink)
Membre Star
 
Avatar de pipsforever
 
Date d'inscription: novembre 2008
Localisation: Belgique
Messages: 894
Pouvoir de réputation: 35
pipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnant
Envoyer un message via MSN à pipsforever Envoyer un message via Skype™ à pipsforever
Par défaut

je donne celui qui est directement dans les fichier de mon metatrader si la ca va pas ben.... je ne puis plus rien faire.

en fait je le place directement dans le ficjier de metatrader

dicque local c
programme
FxPro(pour moi)
experts
indicators


je le met directement dans le dossier "indicator" puis je redemarre ma plateforme

je sais que ce n'est pas la facon de faire mais il n'y as que come sa que j'arrive a mettre de nouveaux indics
Fichiers attachés
Type de fichier : ex4 Mahmoud Amer -Timing H.ex4 (11,3 Ko, 119 affichages)
__________________
The market is not your problem. Your problem is that you see the market as your problem ! Ce sont les première phrase du livre 'trading chaos" :)

Dernière modification par pipsforever ; 14/01/2009 à 00h33
pipsforever est déconnecté   Réponse avec citation
Vieux 14/01/2009, 00h29   #23 (permalink)
Membre Star
 
Avatar de boursicoton
 
Date d'inscription: juillet 2007
Localisation: correze
Messages: 309
Pouvoir de réputation: 7
boursicoton deviendra bientot célèbre...
Par défaut

tu ne l'as pas en .mql ?
il faut redemarrer metatrader pour que le fichier soit vu, voir compilé...en ex4 !
mais un erreur apparait à la compilation....donc pas d'affichage !

Dernière modification par boursicoton ; 14/01/2009 à 00h38
boursicoton est déconnecté   Réponse avec citation
Vieux 14/01/2009, 00h37   #24 (permalink)
Membre Star
 
Avatar de pipsforever
 
Date d'inscription: novembre 2008
Localisation: Belgique
Messages: 894
Pouvoir de réputation: 35
pipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnant
Envoyer un message via MSN à pipsforever Envoyer un message via Skype™ à pipsforever
Par défaut

non!

dans mon fichier indicators il ny as que celui là et pour l'instant il fonctionne encore.

tout a l'heure je l'ais fait en mql et c'est celui que j'ais mis dans un post de cette discution, celui que vous avis pris et qui ne fonctionne pas.
__________________
The market is not your problem. Your problem is that you see the market as your problem ! Ce sont les première phrase du livre 'trading chaos" :)
pipsforever est déconnecté   Réponse avec citation
Vieux 14/01/2009, 01h31   #25 (permalink)
Membre Star
 
Avatar de pipsforever
 
Date d'inscription: novembre 2008
Localisation: Belgique
Messages: 894
Pouvoir de réputation: 35
pipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnant
Envoyer un message via MSN à pipsforever Envoyer un message via Skype™ à pipsforever
Par défaut

Quote:
Originally Posted by funyoo
Ok, here is another version. The EA will only enter one trade per bar.

Dear Funyoo,

The last version of your EA is working fine thanks to you.

I am trying to check the impact of a "timing indicator" that seems usefull in filtering many bad trades. I found this timing indicator that you find attached in a forum dicussing the Belkhayate system.

The timing indicator states sell and buy areas where the trades can only be taken, basicaly only if the bar is red in the sell area a short trading signal using your EA should be taken and vice versa.

I have used an indicator "1_out_hist" to grabe the historical data of this timing indicator and do my analysis in excel to check out its impact on your EA. the "1_out_hist" grabs data very well on the normal MT4 indicator but when I apply it to any cutom indicator all I get is the last value of the indicator throughout all history.

I attached for you the following files:

1. 1_out_hist.mq4: the indicator I used to grab data from the timing indicator
2. Mahmoud Amer -Timing H.ex4: the timing indicator, I have only the compiled version but I managed to get this part of the code that states the extern variables and the buffer necessary to know for the "1_out_hist.mq4" :

#property copyright "Mahmoud Amer, Copyright © 2009"
#property link "pisces7644@hotmail.com"

#property indicator_separate_window
#property indicator_minimum 0.0
#property indicator_maximum 40.0
#property indicator_buffers 8
#property indicator_color1 Black
#property indicator_color2 Black
#property indicator_color3 Black
#property indicator_color4 Black
#property indicator_color5 Black
#property indicator_color6 Black
#property indicator_color7 Black
#property indicator_color8 Black

#import "user32.dll"
int GetDC(int a0);
int ReleaseDC(int a0, int a1);
#import "gdi32.dll"
int GetPixel(int a0, int a1, int a2);
#import

extern color Bars_Up = Blue;
extern color Bars_Down = Red;
extern color Levels_Color = LightSteelBlue;
extern color Text_Color1 = Red;
extern color Text_Color2 = Blue;
int gi_96 = Snow;
int gi_100 = DarkGray;
int gi_104 = 240;
int gi_108 = 4;
int gi_112 = 0;
double gd_116 = 1.0;
int gi_124 = 500;
double gda_128[];
double gda_132[];
double gda_136[];
double gda_140[];
double gda_144[];
double gda_148[];
double gda_152[];
double gda_156[];
extern int fr = 40;
int gi_164 = 15;
int gi_168 = 30;
int gi_172 = 0;
string gs_176;
int gi_184;
int gi_188 = 100;

int init() {
int li_0 = WindowHandle(Symbol(), Period());
int li_4 = GetDC(li_0);
gi_184 = GetPixel(li_4, 1, 2);
ReleaseDC(li_0, li_4);
gi_96 = gi_184;
gi_100 = gi_184;
SetIndexBuffer(0, gda_128);
SetIndexBuffer(1, gda_132);
SetIndexBuffer(2, gda_136);
SetIndexBuffer(3, gda_152);
SetIndexBuffer(4, gda_140);
SetIndexBuffer(5, gda_144);
SetIndexBuffer(6, gda_148);
SetIndexBuffer(7, gda_156);
SetIndexStyle(0, DRAW_HISTOGRAM, STYLE_SOLID, 14, Bars_Up);
SetIndexStyle(1, DRAW_HISTOGRAM, STYLE_SOLID, 14, Bars_Down);
SetIndexStyle(2, DRAW_HISTOGRAM, STYLE_SOLID, 14, gi_100);
SetIndexStyle(3, DRAW_HISTOGRAM, STYLE_SOLID, 14, gi_96);
SetIndexStyle(4, DRAW_HISTOGRAM, STYLE_SOLID, 0, Bars_Up);
SetIndexStyle(5, DRAW_HISTOGRAM, STYLE_SOLID, 0, Bars_Down);
SetIndexStyle(6, DRAW_HISTOGRAM, STYLE_SOLID, 14, gi_100);
SetIndexStyle(7, DRAW_HISTOGRAM, STYLE_SOLID, 10, gi_96);
Comment(" Mahmoud Amer "
+ "\n"
+ "pisces7644@hotmail.com");
gs_176 = "Mahmoud Amer _ Timing";
IndicatorShortName(gs_176);
if (StringFind(Symbol(), "JPY") >= 0) gi_188 = 100;
else gi_188 = 10000;
ObjectDelete("A");
ObjectDelete("B");
ObjectDelete("Buy");
ObjectDelete("Sell");
return (0);
}

3. excel file of the data grabed usin the "1_out_hist.mq4", forget the first line in the sheet as i didnt chage it in the code "open, high, low..."

For the timing indicator to work, you need to all DLL import and you may need to restart MT4.

Can you please have a look, what I need is to grab the historical values of the timing indicator to use them in excel.


a million thanks to you funyou.

Way2Freedom
Attached Files Mahmoud Amer -Timing H.ex4 (11.3 KB, 65 views)
1_out_hist.mq4 (4.4 KB, 53 views)
GBPUSD30.txt (269.6 KB, 38 views)







Voice ce que j'ais trouvé sur le forum ou j'ais pris l'indic
Fichiers attachés
Type de fichier : mq4 1_out_hist.mq4 (4,4 Ko, 67 affichages)
__________________
The market is not your problem. Your problem is that you see the market as your problem ! Ce sont les première phrase du livre 'trading chaos" :)
pipsforever est déconnecté   Réponse avec citation
Vieux 14/01/2009, 08h46   #26 (permalink)
Membre Performance
 
Avatar de dmbsys
 
Date d'inscription: septembre 2008
Localisation: Belgique
Messages: 112
Pouvoir de réputation: 7
dmbsys est très intéressant
Par défaut

Bonjour,

Il faut un indicateur spécifique pour : Mahmoud Amer-Timing H afin qu'il fonctionne correctement.

Cet indicateur est : COG qui est différent de Center of Gravity.

Dans le code source de Mahmoud Amer-Timing H, il y a :
Code:
      l_icustom_92 = iCustom(Symbol(), 0, "COG", gi_104, gi_108, gi_112, gd_116, gi_124, 0, li_8);
      l_icustom_100 = iCustom(Symbol(), 0, "COG", gi_104, gi_108, gi_112, gd_116, gi_124, 1, li_8);
      l_icustom_108 = iCustom(Symbol(), 0, "COG", gi_104, gi_108, gi_112, gd_116, gi_124, 2, li_8);
      l_icustom_116 = iCustom(Symbol(), 0, "COG", gi_104, gi_108, gi_112, gd_116, gi_124, 3, li_8);
      l_icustom_124 = iCustom(Symbol(), 0, "COG", gi_104, gi_108, gi_112, gd_116, gi_124, 4, li_8);
      l_icustom_132 = iCustom(Symbol(), 0, "COG", gi_104, gi_108, gi_112, gd_116, gi_124, 5, li_8);
      l_icustom_140 = iCustom(Symbol(), 0, "COG", gi_104, gi_108, gi_112, gd_116, gi_124, 6, li_8);
Quelqu'un a cet indicateur ?
__________________
dmbsys :rolleyes:
Test PipMaker v14
dmbsys est déconnecté   Réponse avec citation
Vieux 14/01/2009, 08h54   #27 (permalink)
Membre Star
 
Avatar de pipsforever
 
Date d'inscription: novembre 2008
Localisation: Belgique
Messages: 894
Pouvoir de réputation: 35
pipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnant
Envoyer un message via MSN à pipsforever Envoyer un message via Skype™ à pipsforever
Par défaut

hé voila...

en fait c'est le centre de gravité que j'ais déja donné..

Center Of Gravity
C.O.G
Fichiers attachés
Type de fichier : mq4 COG.mq4 (5,8 Ko, 109 affichages)
__________________
The market is not your problem. Your problem is that you see the market as your problem ! Ce sont les première phrase du livre 'trading chaos" :)

Dernière modification par pipsforever ; 14/01/2009 à 09h09
pipsforever est déconnecté   Réponse avec citation
Vieux 14/01/2009, 08h59   #28 (permalink)
Membre Star
 
Avatar de pipsforever
 
Date d'inscription: novembre 2008
Localisation: Belgique
Messages: 894
Pouvoir de réputation: 35
pipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnantpipsforever est actif et passionnant
Envoyer un message via MSN à pipsforever Envoyer un message via Skype™ à pipsforever
Par défaut prévision de mahoud

aujourd'hui l'eur/usd devrais monté, dumoin c'est ce que nous fait comprendre Mahoud timming, ce qui est confirmé par le Rsi et par le CCI, voyons voir ce que vaut cet indic!!!
Images attachées
Type de fichier : jpg eur usd.jpg (19,0 Ko, 122 affichages)
__________________
The market is not your problem. Your problem is that you see the market as your problem ! Ce sont les première phrase du livre 'trading chaos" :)
pipsforever est déconnecté   Réponse avec citation
Vieux 14/01/2009, 10h08   #29 (permalink)
Membre lvl 75
 
Avatar de saminot
 
Date d'inscription: août 2008
Localisation: Bangkok,Thailande
Messages: 96
Pouvoir de réputation: 3
saminot est sur la route de la réputation...
Par défaut

j'ai essaye d'utiliser le mahmoud timmer ce matin, il ouvre le cadre d'indicateur sur le graph , mais pas de chandelier visible a l'interieur ... quelqun a le meme soucis ?
__________________
'' Le temps est une délivrance ''
saminot est déconnecté   Réponse avec citation
Vieux 14/01/2009, 11h28   #30 (permalink)
Membre Star
 
Avatar de boursicoton
 
Date d'inscription: juillet 2007
Localisation: correze
Messages: 309
Pouvoir de réputation: 7
boursicoton deviendra bientot célèbre...
Par défaut

marche en mettant cog...c'est tout bon ! merci.....
precision : le mamhoud est toujours out, c'est le mahmoud ..timing qui est ok !

Dernière modification par boursicoton ; 14/01/2009 à 11h45
boursicoton est déconnecté   Réponse avec citation
Réponse

Liens sociaux

Outils de la discussion
Modes d'affichage

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui






Fuseau horaire GMT +1. Il est actuellement 02h56.


Ajouter aux Favoris | Plan du site | Archives | Forum finance | FX Trading | Forex | Contact


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35