THV (demande service)

Posez vos questions relatives au trading, Aidez les autres membres, et découvrez les nombreuses discussions de ce forum dédié à l'apprentissage et la formation sur la bourse et la finance.

Modérateur : Administrateurs

Message
Auteur
Avatar de l’utilisateur
jmrt
VideoBourse family
Messages : 878
Inscription : 10 mars 2010, 10:32

THV (demande service)

#1 Message par jmrt »

Thv (demande d’un service)
A la suite de la publication sur le site fxpros.fr de la dernière vidéo de Fabien Labrousse, je m’intéresse à la méthode thv que je ne connais pas. Elle pourrait, éventuellement, ajouter quelque chose à mon système de trading du moins, je le pense.
J’aurais aimé si c’est possible que lui-même ou un autre utilisateur de cette méthode « post » 3 captures d’écran de la fenêtre prix (mt4) (1 minute, 5 minutes, 60 minutes) avec les indicateurs thv (nuage surtout) sur lesquelles seraient superposés en plus de ce qui existe dans cette méthode les deux indicateurs ci-dessous.

//+------------------------------------------------------------------+
//| Guppy Mulitple Moving Average (Short).mq4 |
//| Code written by - Matt Trigwell |
//| |
//+------------------------------------------------------------------+

// ***** For information on how to use this fantastic indicator *****
// http://www.guppytraders.com/
// http://www.market-analyst.com/kb/articl ... ng_Average
// http://tradermike.net/2004/05/another_l ... g_averages
// http://karakoyunlar.blogspot.com

// ***** INSTRUCTIONS *****
// Add the GMMA Short indicator and the GMMA Long indicator to your charts.
// This is the GMMA Short indicator


#property copyright "Code written by - Matt Trigwell and modified by Ozkan Karakoyunlar"


#property indicator_chart_window
//#property indicator_separate_window
#property indicator_buffers 6
#property indicator_color1 DeepSkyBlue
#property indicator_color2 DeepSkyBlue
#property indicator_color3 DeepSkyBlue
#property indicator_color4 DeepSkyBlue
#property indicator_color5 DeepSkyBlue
#property indicator_color6 DeepSkyBlue

//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
double ExtMapBuffer4[];
double ExtMapBuffer5[];
double ExtMapBuffer6[];

//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_LINE,EMPTY,1,indicator_color1);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_LINE,EMPTY,1,indicator_color2);
SetIndexBuffer(1,ExtMapBuffer2);
SetIndexStyle(2,DRAW_LINE,EMPTY,1,indicator_color3);
SetIndexBuffer(2,ExtMapBuffer3);
SetIndexStyle(3,DRAW_LINE,EMPTY,1,indicator_color4);
SetIndexBuffer(3,ExtMapBuffer4);
SetIndexStyle(4,DRAW_LINE,EMPTY,1,indicator_color5);
SetIndexBuffer(4,ExtMapBuffer5);
SetIndexStyle(5,DRAW_LINE,EMPTY,1,indicator_color6);
SetIndexBuffer(5,ExtMapBuffer6);
//----
return(0);
}

int deinit()
{
return(0);
}

int start()
{
int i,j,limit,counted_bars=IndicatorCounted();


if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;

for(i=0; i<limit; i++){
ExtMapBuffer1=iMA(NULL,0,3,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer2=iMA(NULL,0,5,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer3=iMA(NULL,0,8,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer4=iMA(NULL,0,10,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer5=iMA(NULL,0,12,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer6=iMA(NULL,0,15,0,MODE_EMA,PRICE_CLOSE,i);
}


return(0);
}
//+------------------------------------------------------------------+

//+------------------------------------------------------------------+
//| Guppy Mulitple Moving Average (Long).mq4 |
//| Code written by - Matt Trigwell |
//| |
//+------------------------------------------------------------------+

// ***** INSTRUCTIONS *****
// Add the GMMA Short indicator and the GMMA Long indicator to your charts.
// This is the GMMA Long indicator

// ***** For information on how to use this fantastic indicator *****
// http://www.guppytraders.com/
// http://www.market-analyst.com/kb/articl ... ng_Average
// http://tradermike.net/2004/05/another_l ... g_averages
// http://karakoyunlar.blogspot.com

#property copyright "Code written by - Matt Trigwell and modified by Ozkan Karakoyunlar"

#property indicator_chart_window
//#property indicator_separate_window
#property indicator_buffers 6
#property indicator_color1 Red
#property indicator_color2 Red
#property indicator_color3 Red
#property indicator_color4 Red
#property indicator_color5 Red
#property indicator_color6 Red

//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
double ExtMapBuffer4[];
double ExtMapBuffer5[];
double ExtMapBuffer6[];

//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_LINE,EMPTY,1);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_LINE,EMPTY,1);
SetIndexBuffer(1,ExtMapBuffer2);
SetIndexStyle(2,DRAW_LINE,EMPTY,1);
SetIndexBuffer(2,ExtMapBuffer3);
SetIndexStyle(3,DRAW_LINE,EMPTY,1);
SetIndexBuffer(3,ExtMapBuffer4);
SetIndexStyle(4,DRAW_LINE,EMPTY,1);
SetIndexBuffer(4,ExtMapBuffer5);
SetIndexStyle(5,DRAW_LINE,EMPTY,1);
SetIndexBuffer(5,ExtMapBuffer6);
//----
return(0);
}

int deinit()
{
return(0);
}

int start()
{
int i,j,limit,counted_bars=IndicatorCounted();


if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;

for(i=0; i<limit; i++){
ExtMapBuffer1=iMA(NULL,0,30,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer2=iMA(NULL,0,35,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer3=iMA(NULL,0,40,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer4=iMA(NULL,0,45,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer5[i]=iMA(NULL,0,50,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer6[i]=iMA(NULL,0,60,0,MODE_EMA,PRICE_CLOSE,i);
}


return(0);
}
//+------------------------------------------------------------------+
Grand merci par avance à celui ou celle qui m’aidera pour le temps qu’il (elle) passera. Evidemment, ses commentaires éventuels sont les bienvenus. jmrt
Mon blog : FXprotechnics

Avatar de l’utilisateur
Fabien LABROUSSE
Administrateur
Messages : 17027
Inscription : 17 mars 2008, 19:41
Localisation : Paris, France

Re: THV (demande service)

#2 Message par Fabien LABROUSSE »

Voici les 3 screenshot demandés:
thv-m1.jpg
thv-m5.jpg
thv-h1.jpg
Concernant les codes que tu as posté, peux tu nous en dire plus stp?

Ceux sont des indicateurs? Tu souhaites faire un mix des deux stratégies?

Concernant THV, si tu lis l'Anglais, tu as toutes les informations nécessaires sur le sujet officiel de ce projet sur ForexFactory:

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

La Structure (par VideoBourse) : Formation sur mesure et évolutive pour optimiser compréhension et résultats en trading

📈 Informations et inscriptions : https://forms.gle/A2vnZduSwv2wPFSS7

🤝 Contact et échanges avec la communauté : Discord, mail, téléphone, LinkedIn...

📖 Marchés en aparté : Témoignages de traders, investisseurs, analystes et économistes sur les marchés financiers

Avatar de l’utilisateur
jmrt
VideoBourse family
Messages : 878
Inscription : 10 mars 2010, 10:32

Re: THV (demande service)

#3 Message par jmrt »

1.vi je lis l'anglais thx pour le lien (no problem avec skakespeare)
2.les codes donnes sont ceux des deux indicateurs mm lt et ct de Mr guppy
3. exact, j'aurais voulu voir le mix des deux stratégies
4 comme je suis habitué depuis de nombreux mois a Mr guppy, je voudrais pas l'abandonner
(personne le demande dailleurs lol)
5 un mix serait peut-être intéressant pour moi
6 en fait ce nuage plus guppy serait peut etre avantageux dans mon cas
7 voila voilou j'espère je demande pas trop de boulot

thx in advance
Mon blog : FXprotechnics

Avatar de l’utilisateur
Fabien LABROUSSE
Administrateur
Messages : 17027
Inscription : 17 mars 2008, 19:41
Localisation : Paris, France

Re: THV (demande service)

#4 Message par Fabien LABROUSSE »

Très bien, n'hésites pas à indiquer les résultats que tu obtiens avec ce mélange de stratégies.

Tu as un compte MyFxBook pour le suivi de tes résultats?

Peux tu présenter rapidement l'indicateur "Mr guppy" stp?
Image

La Structure (par VideoBourse) : Formation sur mesure et évolutive pour optimiser compréhension et résultats en trading

📈 Informations et inscriptions : https://forms.gle/A2vnZduSwv2wPFSS7

🤝 Contact et échanges avec la communauté : Discord, mail, téléphone, LinkedIn...

📖 Marchés en aparté : Témoignages de traders, investisseurs, analystes et économistes sur les marchés financiers

Répondre