Mon compte
Déjà membre ? S'identifier
Non inscrit ? S'inscrire
 
+ Répondre à la discussion
Page 1 sur 10 1 2 3 ... DernièreDernière
Affichage des résultats 1 à 10 sur 93
  1. #1
    Membre Star fungraphic est actif et passionnant fungraphic est actif et passionnant
    Date d'inscription
    January 2008
    Localisation
    le 72
    Messages
    441
    Pouvoir de réputation
    0

    Une Methode elite pour MT4 Une Methode elite pour MT4

    Salut à tous voici une methode pour trader avec metatrader 4.

    Je l'utilise actuellement et je trouve quelles est très bien pour mes besoin.
    Donc avis au amateur





    Voici l'indicateur plus le template.
    Fichiers attachés

  2. #2
    Membre Star fungraphic est actif et passionnant fungraphic est actif et passionnant
    Date d'inscription
    January 2008
    Localisation
    le 72
    Messages
    441
    Pouvoir de réputation
    0

    Coucou c'est encore moi!!!

    Et si vous me donniez votre avis sur ce template et indicateur.

    J'aimerais bien avoir votre avis!!!

    Car il y a quand mème 42 visite et aucun post

    Merci

  3. #3
    Membre lvl 50 nubuck deviendra bientot célèbre...
    Date d'inscription
    April 2007
    Localisation
    france (oise)
    Messages
    67
    Pouvoir de réputation
    9

    merci merci

    merci je regarde ça si vous en avait d autre en MT4 je suis preneur

  4. #4
    Membre Star fungraphic est actif et passionnant fungraphic est actif et passionnant
    Date d'inscription
    January 2008
    Localisation
    le 72
    Messages
    441
    Pouvoir de réputation
    0

    Bon ok pour vous encourager je vais posté un truc sur la journée d'aujourd'hui!

    Voici un petit graph sur lAUD/USD de cet après midi à l'heure ou personne ou presque ne s'attendaient à un retournement!!!

    Je pense que mon graph se passe de commentaire mis à part que j'utilise cet indicateur sur le 15 minutes.

    Voila à vous de jugez si vous n'aviez pas envie de le testé pe etre que ceci vous décidera!!!
    Images attachées

  5. #5
    Membre Star rozario est actif et passionnant rozario est actif et passionnant rozario est actif et passionnant Avatar de rozario
    Date d'inscription
    March 2008
    Localisation
    Lille
    Messages
    992
    Pouvoir de réputation
    29

    je vais te poster un message, je vois que tu te démenes avec tes graphes !
    c'est sympa de nous en faire pas alors je viens t'encourager !
    mais je ne suis pas sur mt4 donc je ne peux pas l'essayer mais sinon il a l'air de bien marcher cet indicateur !
    il donne pas beaucoup de faux signaux...
    sur le dernier graphe, qu'est ce qui te faire racheter ta position ? le fait que ton indicateur se retourne à la hausse ?

    c'est basé sur quoi cet indicateur, ça ressemble à du cci mais il y a d'autres trucs en même temps...
    en tous cas il est assez clair et pas trop de faux signaux, ce qu'on demande à un indic en gros ! faudra que tu nous dise si il tiens la durée...

    ciao
    "The tape tells all" S. Weinstein

  6. #6
    Membre lvl 25 kskusanagi est sur la route de la réputation...
    Date d'inscription
    December 2007
    Localisation
    Coree du sud
    Messages
    26
    Pouvoir de réputation
    7

    Moi non plus je suis pas sur MT4 mais y'a surement moyen de convertir le code pour les autres plateforme (je vais voir va pour AVAFX).

    Sinon est ce que ce serait possible d'avoir le plot du MACD et RSI pour voir les correlations ?

    Merci pour cette suggestion~

  7. #7
    Membre Performance mishino est sur la route de la réputation...
    Date d'inscription
    October 2007
    Localisation
    Guadeloupe
    Messages
    167
    Pouvoir de réputation
    7

    bonjour
    Je voudrais bien te donner mon avis, mais ton indicateur ne fonctionne pas sur mon MT4 !!!
    y a t'il un problème dans le ZIP ! envoies le moi en fichier .txt

  8. #8
    Membre lvl 5 bolgard est sur la route de la réputation...
    Date d'inscription
    April 2008
    Messages
    21
    Pouvoir de réputation
    7

    Bonjour, je viend d'installer cet indicateur sur ma MT4 Fxlite en compte demo. On va voir ce que cela donne. Je vous tiens au courant.

  9. #9
    Membre Star fungraphic est actif et passionnant fungraphic est actif et passionnant
    Date d'inscription
    January 2008
    Localisation
    le 72
    Messages
    441
    Pouvoir de réputation
    0

    Voici le code

    //+------------------------------------------------------------------+
    //| Real Woodie CCI.mq4 |
    //| Based on the code of Jason Robinson (jnrtrading). |
    //| |
    //| After read the Woodie introductory document I started a search |
    //| for the right coloured CCI. |
    //| I can´t find anyone in accomplish with the explanation of Woodie |
    //| So, I take the code from another CCI, and I added |
    //| the center LSMA line according to the official explanation. |
    //| Everything you see is an exact copy like it´s explained in the |
    //| document new_woodie_do1. Specially the colors. |
    //| If you have some doubts can obtain a copy |
    //| from Relocate |
    //| |
    //| Linuxser 2007 |
    //| for any doubts or suggestions contact me on forex-TSD forum |
    //+------------------------------------------------------------------+
    #property copyright "Under The GNU General Public License"
    #property link "www.gnu.org"


    #property indicator_separate_window
    #property indicator_buffers 8
    #property indicator_color1 Blue
    #property indicator_color2 Red //SaddleBrown
    #property indicator_color3 Gray
    #property indicator_color4 Gold
    #property indicator_color5 Black
    #property indicator_color6 Crimson
    #property indicator_color7 Lime //Gold <<<<<<<<<<<<<<<<<<<<<<<<<<
    #property indicator_color8 Red //Gold <<<<<<<<<<<<<<<<<<<<<<<<<<
    #property indicator_level1 300
    #property indicator_level2 200
    #property indicator_level3 100
    #property indicator_level4 -100
    #property indicator_level5 -200
    #property indicator_level6 -300
    #property indicator_levelcolor Black
    #property indicator_levelstyle STYLE_DOT
    #property indicator_levelwidth 1


    //---- input parameters
    extern int TrendCCI_Period = 14;//14
    extern int EntryCCI_Period = 6;//6
    extern int LSMAPeriod = 25; // LSMA period
    extern int Trend_period = 5;
    extern int CountBars=1000;
    extern int CCISize=2;
    extern int TCCISize=1;
    extern int TrendSize=1;
    extern int NoTrendSize=1;
    extern bool ShowLSMA=true;
    extern int LineSize3=1;


    double TrendCCI[];
    double EntryCCI[];
    double CCITrendUp[];
    double CCITrendDown[];
    double CCINoTrend[];
    double CCITimeBar[];
    double ZeroLine[];
    double LSMABuffer1[];
    double LSMABuffer2[];
    int EMAPeriod = 34; // ÅÌÀ period
    int FromZero = 0; // Distance from zero level
    double LineHighEMA[];
    double LineLowEMA[];

    int trendUp, trendDown;

    //+------------------------------------------------------------------+
    //| Custom indicator initialization function |
    //+------------------------------------------------------------------+
    int init() {
    //---- indicators
    SetIndexStyle(4, DRAW_LINE, STYLE_SOLID,CCISize);
    SetIndexBuffer(4, TrendCCI);
    SetIndexLabel(4, "TrendCCI");
    SetIndexStyle(0, DRAW_HISTOGRAM, 0,TrendSize);
    SetIndexBuffer(0, CCITrendUp);
    SetIndexLabel (0, NULL);
    SetIndexStyle(1, DRAW_HISTOGRAM, 0,TrendSize);
    SetIndexBuffer(1, CCITrendDown);
    SetIndexLabel (1, NULL);
    SetIndexStyle(2, DRAW_HISTOGRAM, 0,NoTrendSize);
    SetIndexBuffer(2, CCINoTrend);
    SetIndexLabel (2, NULL);
    SetIndexStyle(3, DRAW_HISTOGRAM, 0,NoTrendSize);
    SetIndexBuffer(3, CCITimeBar);
    SetIndexLabel (3, NULL);
    SetIndexStyle(5, DRAW_LINE, STYLE_SOLID,TCCISize);// 1 <<<<<<<<<<<<<<<<<<<<<<<<<<<
    SetIndexBuffer(5, EntryCCI);
    SetIndexLabel(5, "EntryCCI");
    SetIndexStyle(6, DRAW_ARROW, STYLE_SOLID,LineSize3);
    SetIndexBuffer(6, LSMABuffer2);
    SetIndexLabel (6, NULL);
    SetIndexArrow(6,167);
    SetIndexStyle(7, DRAW_ARROW, STYLE_SOLID,LineSize3);
    SetIndexBuffer(7, LSMABuffer1);
    SetIndexArrow(7,167);
    SetIndexLabel (7, NULL);
    //----
    return(0);
    }
    //+------------------------------------------------------------------+
    //| Custor indicator deinitialization function |
    //+------------------------------------------------------------------+
    int deinit()
    {
    //----

    //----
    return(0);
    }
    //+------------------------------------------------------------------+
    //| Custom indicator iteration function |
    //+------------------------------------------------------------------+
    int start() {

    int limit, i, trendCCI, entryCCI;
    int counted_bars = IndicatorCounted();
    static datetime prevtime = 0;
    //---- check for possible errors
    if(counted_bars < 0) return(-1);
    //---- last counted bar will be recounted
    if(counted_bars > 0) counted_bars--;

    limit=Bars;//-counted_bars;

    SetIndexDrawBegin(0,Bars-CountBars);
    SetIndexDrawBegin(1,Bars-CountBars);
    SetIndexDrawBegin(2,Bars-CountBars);
    SetIndexDrawBegin(3,Bars-CountBars);
    SetIndexDrawBegin(4,Bars-CountBars);
    SetIndexDrawBegin(5,Bars-CountBars);
    SetIndexDrawBegin(6,Bars-CountBars);
    SetIndexDrawBegin(7,Bars-CountBars);


    trendCCI = TrendCCI_Period;
    entryCCI = EntryCCI_Period;

    IndicatorShortName("[CCI: " + trendCCI + "] [TCCI: " + entryCCI + "] [per LSMA: " + LSMAPeriod + "] [Trend: " + Trend_period + "] Values CCI|TCCI:");

    for(i = limit; i >= 0; i--) {
    CCINoTrend[i] = 0;
    CCITrendDown[i] = 0;
    CCITimeBar[i] = 0;
    CCITrendUp[i] = 0;
    ZeroLine[i] = 0;
    TrendCCI[i] = iCCI(NULL, 0, trendCCI, PRICE_TYPICAL, i);
    EntryCCI[i] = iCCI(NULL, 0, entryCCI, PRICE_TYPICAL, i);

    if(TrendCCI[i] > 0 && TrendCCI[i+1] < 0) {
    if (trendDown > Trend_period) trendUp = 0;
    }
    if (TrendCCI[i] > 0) {
    if (trendUp < Trend_period){
    CCINoTrend[i] = TrendCCI[i];
    trendUp++;
    }
    if (trendUp == Trend_period) {
    CCITimeBar[i] = TrendCCI[i];
    trendUp++;
    }
    if (trendUp > Trend_period) {
    CCITrendUp[i] = TrendCCI[i];
    }
    }
    if(TrendCCI[i] < 0 && TrendCCI[i+1] > 0) {
    if (trendUp > Trend_period) trendDown = 0;
    }
    if (TrendCCI[i] < 0) {

    if (trendDown < Trend_period){
    CCINoTrend[i] = TrendCCI[i];
    trendDown++;
    }
    if (trendDown == Trend_period) {
    CCITimeBar[i] = TrendCCI[i];
    trendDown++;
    }
    if (trendDown > Trend_period) {
    CCITrendDown[i] = TrendCCI[i];
    }
    }
    }

    //---- Color Middle Line LSMA
    if(ShowLSMA==true)
    {
    double sum, lengthvar, tmp, wt;
    int shift;
    int Draw4HowLong, loopbegin;

    if (counted_bars<0) return;
    if (counted_bars>0) counted_bars--;
    counted_bars = Bars - counted_bars;
    for (shift=0; shift<counted_bars; shift++) {
    LineLowEMA[shift] = -FromZero;
    LineHighEMA[shift] = -FromZero;

    double EmaValue = iMA(NULL, 0, EMAPeriod, 0, MODE_EMA, PRICE_TYPICAL, shift);
    if (Close[shift]>EmaValue) LineHighEMA[shift] = EMPTY_VALUE;
    if (Close[shift]<EmaValue) LineLowEMA[shift] = EMPTY_VALUE;
    }

    Draw4HowLong = Bars-LSMAPeriod - 5;
    loopbegin = Draw4HowLong - LSMAPeriod - 1;

    for(shift=loopbegin; shift>=0; shift--) {
    sum = 0;
    for (i=LSMAPeriod; i>=1; i--) {
    lengthvar = LSMAPeriod + 1;
    lengthvar /= 3;
    tmp = 0;
    tmp = (i - lengthvar) * Close[LSMAPeriod-i+shift];
    sum+=tmp;
    }
    wt = sum * 6 / (LSMAPeriod * (LSMAPeriod + 1));

    LSMABuffer1[shift] = 0;
    LSMABuffer2[shift] = 0;

    if (wt>Close[shift]) LSMABuffer2[shift] = EMPTY_VALUE;
    if (wt<Close[shift]) LSMABuffer1[shift] = EMPTY_VALUE;
    }
    }

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

  10. #10
    Membre Star greg1700 est très intéressant
    Date d'inscription
    October 2007
    Localisation
    suisse
    Messages
    486
    Pouvoir de réputation
    13

    salut a tous;

    je vous mets un lien (site en anglais)

    dessus vous trouverez quelques strategies a tester elles vous permettront aussi de regarder ce qui se fait un peu il y a differents niveaux de strategie.

    je vous souhaite de bonnes lectures mais en vous précisant quand meme que rien ne vaut SA propre stratégie ......... en prenant differentes choses de ce qu'il existe deja il est toujours plus facile de monter ses propres choses

    bons trades a tous

    oups j'allait oublier Forex strategies revealed

    greg1700
    venez poser vos questions sur le chat et enrichir la communauté par votre savoir....... amicalement greg1700

Discussions similaires

  1. Méthode Scalp MT4
    Par Herzou dans le forum Trading Divers
    Réponses: 126
    Dernier message: 10/08/2010, 08h59
  2. Slavir : ma méthode de trading
    Par SLAVIR dans le forum Trading Divers
    Réponses: 33
    Dernier message: 01/09/2009, 15h15
  3. Methode Dean Malone pour MT4
    Par Herzou dans le forum Trading Divers
    Réponses: 19
    Dernier message: 17/05/2008, 21h27
  4. Méthode CatFX pour MT4
    Par Herzou dans le forum Trading Divers
    Réponses: 0
    Dernier message: 06/04/2008, 18h41
  5. qui à essayé cette methode ?
    Par phil0007 dans le forum Trading Divers
    Réponses: 2
    Dernier message: 11/08/2007, 14h58

Ajouter aux Favoris | Plan du site | Archives | Forex | Contact