PDA

Afficher la version compl?te : plz m'aider à réparer cet indieur



Paxy5
04/03/2009, 14h31
1 Pi?ce jointe (s) ne fonctionne plus

https://www.sundytrading.com/attachments/15185442171415711533.ex4

Zegassix
25/01/2022, 07h36
aucun fichier de code (mq4) = aucun correctif

Paxy5
25/01/2022, 08h57
// ----------------------------------------------- ------------------- /| Supernova.mq4 |/ ----------------------------------------------- ------------------- #property indior_chart_window #property indior_buffers 2 #propri?t? indior_color1 DodgerBlue #property indior_color2 Magenta extern int SF = 1; extern bool Visual_Alert = false; extern bool Audio_Alert = true; cha?ne externe Audio_Up_File = alert.wav; cha?ne externe Audio_Down_File = alert.wav; bool externe Email_Alert = false; extern int Count_Bars = 1000; extern int Arrow_Offset = 10; double ExtMapBuffer1 []; double ExtMapBuffer2 []; bool up = false; bool dn = false; datetime last_t = 0; int init () {SetIndexStyle (0, DRAW_ARROW); SetIndexArrow (0,108); SetIndexBuffer (0, ExtMapBuffer1); SetIndexEmptyValue (0,0,0); SetIndexStyle (1, DRAW_ARROW); SetIndexArrow (1 108); SetIndexBuffer (1, ExtMapBuffer2); SetIndexEmptyValue (1,0,0); retour (0); } int deinit () {return (0);} int start () {int l = 0; if (Count_Barsgt; Bars) {l = Bars;} autre {l = Count_Bars;} pour (int i = l; igt; = 0; i -) {ExtMapBuffer1 [i] = 0; ExtMapBuffer2 [i] = 0; double qqe0_0 = iCustom (symbole (), 0, QQE, SF, 0, i); double qqe0_1 = iCustom (symbole (), 0, QQE, SF, 0, i 1); double qqe1_0 = iCustom (symbole (), 0, QQE, SF, 1, i); double qqe1_1 = iCustom (symbole (), 0, QQE, SF, 1, i 1); if (qqe0_0gt; qqe1_0 qqe0_1lt; = qqe1_1! up) {ExtMapBuffer1 [i] = Faible [i] -Arrow_Offset * Point; up = true; dn = faux; } if (qqe0_0lt; qqe1_0 qqe0_1gt; = qqe1_1! dn) {ExtMapBuffer2 [i] = ?lev? [i] Arrow_Offset * Point; dn = vrai; up = false; }} if (ExtMapBuffer1 [0] gt; 0) {if (Visual_Alert) Alerte (crois? sur: Symbol () at TimeToStr (TimeCurrent ())); if (Audio_Alert) PlaySound (Fichier_Automatique); if (Email_Alert) SendMail (Alerte QQE_Cross, croisement sur: Symbol () at TimeToStr (TimeCurrent ())); } if (ExtMapBuffer2 [0] gt; 0) {if (Visual_Alert) Alerte (Traverser sur: Symbol () at TimeToStr (TimeCurrent ())); if (Audio_Alert) PlaySound (Fichier audio_down); if (Email_Alert) SendMail (Alerte QQE_Cross, Traverser sur: Symbol () at TimeToStr (TimeCurrent ())); } return (0); }

Dazieleh
25/01/2022, 10h18
Votre indieur d?pend de la pr?sence d'un autre indieur nomm? QQE. Vous devriez d'abord v?rifier si l'autre indieur est dans votre dossier d'indieurs personnalis?s. Cela pourrait ?tre la raison pour laquelle cela ne fonctionne pas.

Paxy5
25/01/2022, 11h39
merci beaucoup ?a marche maintenant