Semi automatic trading
Forums › ProRealTime forum Français › Support ProBuilder › Semi automatic trading
- This topic has 20 replies, 3 voices, and was last updated 2 years ago by
gfx.
-
-
04/11/2017 at 9:40 PM #31786
bonjour a tous bon nombre d entre nous utilise un système manuel pour trader qui contient parfois plusieurs indicateur qui prennent de la place sur nos écrans et certain d entre nous n utilise que 2 ou 3 écrans selon leur moyen ou besoin. de plus nous devons parfois attendre et parfois longtemps que nos indicateurs nous donne le signal pour entré en position. en effectuant pas mal de recherche a ce sujet sur internet je suis tombé sur un système semi automatique qui permet d enlevé tout les indicateurs de l écrans et nous donné ce fameux signal par rapport à notre stratégie de plus toute les positions sont comptabilisé et nous permet d avoir un money management a jour. le seul hic est que ce système à été crée il y à 6 ans et les codes de programmation ne sont plus à jour, j ai commencé à partir de la 10.2 et suis maintenant en 10.3 donc je nage complètement d autant plus que ce système contient 7 codes différent le 1er contient les conditions et stratégie que vous programmer ensuite il y 3 long avec le Money management et 3 short et MM. je joint quelques image pour vous donné une idée du résultat. j ai essayer de faire en sorte qu il fonctionne sur la 10.3 mais mon niveau ne me le permet pas si quelqu’un est intéressé pour m aidé à recodé afin de le partagé avec les autres membres de ce forum.
merci
Hello all, many of us use a manual trader system that sometimes contains several indicators that take up space on our screens and some of us use only 2 or 3 screens depending on their means or need. Moreover we sometimes have to wait and sometimes for a long time that our indicators give us the signal to enter into position. By doing a lot of research on this subject on the internet I came across a semi automatic system that allows to remove all the indicators of the screens and gave us this famous signal in relation to our strategy of more all positions are counted and allows us D have a money management a day. The only problem is that this system was created 6 years ago and the programming codes are no longer up to date, I started from 10.2 and am now in 10.3 so I swam all the more so as this system contains 7 different codes the 1st contains the conditions and strategy that you program then there 3 along with Money management and 3 short and MM. I attached a few images to give you an idea of the result. I have tried to make it work on the 10.3 but my level does not allow me if someone is interested to help me recode it in order to share it with the other members of this forum. thank you
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202/////// A LIRE ATTENTIVEMENT AVANT L'UTILISATION DU TRADING SEMI AUTOMATIQUE /////////// LE PROGRAMME CI DESSOUS EST LIBRE DE TOUTE MODIFICATION. EN EFFET, IL VOUS PERMET/// DE CONSTRUIRE VOTRE STRATEGIE DE TRADING ET DE LA COMMUNIQUER AU TRADING SEMI/// AUTOMATIQUE. AVANT TOUTE MODIFICATION, PRENEZ SOINS DE COPIER TOUT SON CONTENU/// DANS UN FICHIER TEXTE QUE VOUS CONSERVEREZ PRECIEUSEMENT./// LE TRADING SEMI AUTOMATIQUE N'EST PAS UN SYSTEME DE TRADING. AINSI, POUR L'UTILISER/// VOUS DEVEZ LUI ADJOINDRE VOTRE SYSTEME DE TRADING PERSONNEL. POUR CE FAIRE, VOUS/// DEVEZ COPIER ET COLLER VOTRE SYSTEME DE TRADING DANS L'INDICATEUR PROREALTIME/// 'GNT@SYS' QUE VOUS TROUVEREZ DANS LA LISTE DES INDICATEURS UNE FOIS LE MODULE/// 'GNT@TSA' INSTALLE SUR VOTRE PLATEFORME. L'INDICATEUR 'GNT@SYS' EST LE SEUL INDICATEUR/// QUI EST UTILISE PAR LE PROGRAMME 'GNT@TSA'./// L'INDICATEUR 'GNT@SYS' EST UNE STRUCTURE PROFORMAT POUR VOUS GUIDER DANS LA/// COMMUNICATION DES DONNEES NECCESSAIRES AU FONCTIONNEMENT DU 'GNT@TSA'/// A TITRE D'EXEMPLE, UN SYSTEME DE TRADING FICTIF EST FOURNI PAR DEFAUT DANS L'INDICATEUR/// 'GNT@SYS'. IL PERMET D'ILLUSTRER L'UTILISATION DU 'GNT@TSA' SUR LE MARCHE DES DEVISES/// DIT 'FOREX'. ATTENTION, NE PAS UTILISER CE SYSTEME FICTIF !/// EN VOICI CI DESSOUS UN DESCRIPTIF.// Signal Alerte : Croissement d'une moyenne mobile exponentielle de 8 périodes avec une// moyenne mobile exponentielle de 21 périodes// Signal Entrée en position : Rebond du cours (prix) sur la moyenne mobile// exponentielle de 21 périodes// Signal d'invalidation : Croissement, dans le sens inverse au signal d'alerte, des deux// moyennes mobiles, rapidement après la prise de position sur le marché.// Signal de prise de bénéfice : Croissement de la moyenne mobile exponentielle de 21// périodes par le cours de clôture.// Signal de clôture de position : Croissement, dans le sens inverse au signal d'alerte,// des deux moyennes mobiles.// STOP DE PROTECTION A 10 PIPS AU DELA DU PUS HAUT/BAS A L'INSTANT DU SIGNAL// OBJECTIF DE SORTIE A 40 PIPS AU DELA DU PUS HAUT/BAS A L'INSTANT DU SIGNAL/////////////////////////////////////////////////////////////////////////////////////////// Initialisation des variables//////////////////////////////////////////////////////////////////////////////////////////// CI APRES DEUX VARIABLES POUR LA GESTION DE LA TENDANCE DANS LE SYSTEME DE TRADING/// FICTIFTrda = 1Trdv = 0/// CI APRES, TOUTES LES VARIABLES NECESSAIRES AU TRADING SEMI AUTOMTIQUE POUR VOUS/// GUIDER DANS LA GESTION DE VOS POSITIONSLgAle = 1ShAle = 0LgSig = 1ShSig = 0StopPrice = 0ObjPrice = 0LgBenSig = 1ShBenSig = 0LgOutSig = 1ShOutSig = 0LgInvSig = 1ShInvSig = 0/////////////////////////////////////////////////////////////////////////////////////////// Appel des fonctions externes ou calcul d'indicateurs sous jacents à la stratégie/////////////////////////////////////////////////////////////////////////////////////////EMASh = ExponentialAverage[20](close)EMALg = ExponentialAverage[50](close)/////////////////////////////////////////////////////////////////////////////////////////// Gestion des filtres//////////////////////////////////////////////////////////////////////////////////////////// LA TENDANCE EST DEFINIE PAR LA POSITION DE LA MOYENNE MOBILE COURTE, PAR RAPPORT A LA/// MOYENNE MOBILE LONGUEIf EMASh >= EMALg ThenTRDA = 1TRDV = 0ElseTRDA = 0EndifIf EMASh < EMALg ThenTRDV = 1TRDA = 0ElseTRDV = 0Endif/////////////////////////////////////////////////////////////////////////////////////////// Gestion des signaux/////////////////////////////////////////////////////////////////////////////////////////// Signal d'alerte ////------------------//// LE SIGNAL D'ALERTE ET ISSUE DU CROISSEMENT DES DEUX MOYENNES MOBILES EXPONENTIELLESLgAle = EMASh crosses over EMALg /// Signal d'alerte à la hausseShAle = EMASh crosses under EMALg /// Signal d'alerte à la baisse// Signal d'entrée en position ////-----------------------------//// LE SIGNAL D'ENTREE EN POSITION EST ISSU DU REBOND DES PRIX SUR LA MOYENNE MOBILE EXPONENTIELLE DE 21 PERIODESLgSig = TRDA AND ((Close crosses over EMALg) OR (Close > EMALg AND OPEN > CLOSE))ShSig = TRDV AND ((Close crosses under EMALg) OR (Close < EMALg) OR (High >= EMALg AND CLOSE < EMALg)) AND (OPEN < CLOSE)// Signal d'invalidation de la position ////-------------------------------------//// IL Y A INVALIDATION DU SIGNAL SI NOUVEAU CROISSEMENT, DANS LE SENS INVERSE DES DEUX MOYENNES MOBILES.LgInvSig = EMASh crosses under EMALgShInvSig = EMASh crosses over EMALg// Si vous ne souhaitez pas utiliser un signal d'invalidation, alors il suffit// d'attribuer la valeur 0 à la variable. Comme ci dessous !// LgInvSig = 0// ShInvSig = 0// Signal de prise de bénéfice ////----------------------------//// IL Y A UN SIGNAL DE PRISE DE BENENFICES SI LE COURS EN CLOTURE CROISE LA MOYENNE MOBILE EXPONENTIELLE DE 21 PERIODESLgBenSig = CLOSE crosses under EMALgShBenSig = CLOSE crosses over EMALg// Si vous ne souhaitez pas utiliser un signal de prise de bénéfice, alors il suffit// d'attribuer la valeur 0 à la variable. Comme ci dessous !// LgBenSig = 0// ShBenSig = 0// Signal de sortie de position ////------------------------------//// IL Y A SIGNAL DE SORTIE SI NOUVEAU CROISSEMENT, DANS LE SENS INVERSE DES DEUX MOYENNES MOBILES.LgOutSig = EMASh crosses under EMALgShOutSig = EMASh crosses over EMALg/////////////////////////////////////////////////////////////////////////////////////////////// Stop & Objectif//////////////////////////////////////////////////////////////////////////////////////////// IL EST IMPORTANT DE COMMUNIQUER AU TRADING SEMI AUTOMATIQUE VOTRE NIVEAU DE SORTIE ET/// VOTRE OBJECTIF AU MOMENT OU VOUS AVEC VOTRE SIGNAL D'ENTREE EN POSITION./// ATTENTION, VOUS AVEZ LA POSSIBILITE DE TRANSMETTRE UNE VALEUR ISSUE D'UN CALCUL FIXE,/// SOIT PRIX/COURS PLUS OU MOINS X% OU X POINTS OU PIPS. MAIS EGALEMENT D'UN INDICATEUR, /// SOIT LA VALEUR D'UNE MOYENNE MOBILE PLUS OU MOINS X% OU X POINTS OU PIPS./// TOUTEFOIS, CES DONNES NE SONT TRANSMISES QU'A L'INSTANT DU SIGNAL D'ENTREE EN/// POSITION/// SI ENTREE EN POSITION LONGUE ////If LgSig = 1 ThenStopPrice = LOW - 0.001ObjPrice = HIGH + 15Endif/// SI ENTREE EN POSITION COURTE ////If ShSig = 1 ThenStopPrice = HIGH + 0.001ObjPrice = Low - 15Endif/////////////////////////////////////////////////////////////////////////////////////////// Gestion des retours/////////////////////////////////////////////////////////////////////////////////////////// CI APRES LA LIGNE LA PLUS IMPORTANTE DU PROGRAMME GNT@SYS, CELLE QUI VA PERMETTRE// LA TRANSMISSION DES VALEURS DE VOTRE SYSTEME DE TRADING AU TRADING SEMI AUTOMATIQUE// GNT@TSA// VOUS TROUVEREZ CI APRES 12 VALEURS A RETOURNER. NE PAS MODIFIER CETTE LIGNE AU RISQUE // DE CREER UN DYSFONCTIONNEMENT DU TRADING SEMI AUTOMATIQUE. SI VOUS N'UTILISEZ PAS CERTAINS SIGNAUX, ALORS AFFECTEZ LEUR UNE VALEUR DE 0 DANS LE PROGRAMME CI DESSUS.Return LgAle as "LgAle", ShAle as "ShAle", LgSig as "LgSig" , ShSig as "ShSig" , StopPrice as "StopPrice" , ObjPrice as "ObjectifPrice", LgInvSig as "LgInvSig", ShInvSig as "ShInvSig", LgBenSig as "LgBenSig" , ShBenSig as "ShBenSig", LgOutSig as "LgOutSig", ShOutSig as "ShOutSig"123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615GNT@TSA-Long//////////////////////////////////////////////////////////////////////////////////////////// Variable de paramétrage ////////////////////////////////////////////////////////////////////////////////////////////Once FinObj = FinObjOnce FinObjSup = FinObjSupOnce FinBenef = FinBenefOnce FinType = FinTypeOnce Spread = SpreadOnce SprType = SprTypeOnce Pymd = PymdOnce Annee = AnneeOnce Mois = MoisOnce Jour = Jour//////////////////////////////////////////////////////////////////////////////////////////// Filtre de Temps ////////////////////////////////////////////////////////////////////////////////////////////If (Annee > 1950 AND Annee < 2050) AND Mois < 13 AND Jour <32 ThenIf (Year > Annee) OR (Year = Annee AND Month => Mois and Day => Jour) Then//////////////////////////////////////////////////////////////////////////////////////////// Initialisation des variables ////////////////////////////////////////////////////////////////////////////////////////////// Active - Conditions actives ou non sur plusieurs bougiesOnce PosLgOpenActiv = 0Once PosLgFinActiv = 0Once PosLgFinSupActiv = 0Once PosLgObjActiv = 0// Indic - Indications visuelles sur la bougie en coursOnce PosLgInIndic = 0PosLgAleIndic = 0PosLgStopIndic = 0PosLgInvIndic = 0PosLgFinIndic = 0PosLgFinPlusIndic = 0PosLgObjIndic = 0PosLgPydIndic = 0PosLgBenTrendIndic = 0PosLgBenIndic = 0PosLgOutIndic = 0xHIndic = 0// Price - Divers prix de l'actif pour gestion de la position// Price - Divers prix de l'actif pour gestion des statistiquesOnce PosLgOpenPrice = 0Once PosLgClosePrice = 0Once PosLgBenefPrice = 0Once PosLgStopPrice = 0Once PosStopPrice = 0Once PosLgObjPrice = 0Once NextObjPrice = 0Once NextObjSupPrice = 0Once BenefObjPrice = 0// StatOnce NbTrLg = 0Once NbTrLgSto = 0Once NbTrLgInv = 0Once NbTrLgFin = 0Once NbTrLgObj = 0Once NbTrLgWin = 0Once NbTrLgLos = 0Once GainTrLg= 0Once TotGainTrLg = 0Once AvgGainTrLg = 0Once LosTrLg = 0Once TotLosTrLg = 0Once AvgLosTrLg = 0PosNbBar = 0Once PosBarIn = 0Once PosBarOut = 0Once CountPosBar = 0Once NbMoyPosBar = 0Once MinPosNbBar = 0Once MaxPosNbBar = 0Once StopPosNbBar = 0Once InvPosNbBar = 0Once FinPosNbBar = 0Once ObjPosNbBar = 0Once WinPosNbBar = 0Once LosPosNbBar = 0// Input - Variables provenant du système de tradingLgAle = 0 // Signal d'alerteLgSig = 0 // Signal d'entrée longStopPrice = 0 // Prix du STOPObjPrice = 0 // Prix de l'objectifLgInvSig = 0 // Signal d'invalidation du signal d'entréeLgBenSig = 0 // Signal de prise de bénéficeLgOutSig = 0 // Signal de sortie de position/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Appel fonctions externes///////////////////////////////////////////////////////////////////////////////////////////////////////////////////LgAle, ignored, LgSig , ignored, StopPrice, ObjPrice, LgInvSig, ignored, LgBenSig, ignored, LgOutSig, ignored = CALL "GNT@SYS"////////////////////////////////////////////////////////////////////////////////////// Gestion d'un signal d'alerte /////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv = 0 Then // Si nous sommes en positionIf LgAle <> 0 ThenPosLgAleIndic = 3EndIfEndIf///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Gestion d'un signal de prise de position///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Signal position longIf LgSig <> 0 Then // Si provenance d'un signal du système de trading sous jacent ...xHIndic = 3 // Signal d'entrée en positionIf PosLgOpenActiv <> 0 Then // Si déjà en position longuexHIndic = xHIndic / 3*2 // Signal de pyramidage.... possible !!If Pymd <> 0 Then // Si option de pyramidageIf Pymd = 1 Then // Si option de pyramidage après financementIf PosLgFinActiv <> 0 Then // Fiancement ok ?PosLgPydIndic = 1EndIfEndIfIf Pymd = 2 Then // Si option de Pyramidage à tout prixPosLgPydIndic = 1EndIFEndIfEndifElsexHIndic =0 // Absence de signalEndIf/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION INDICATEUR POSITION///////////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv <> 0 Then // Si nous sommes en position// IndicPosLgInIndic = 1 // Indicateur de position ONIf PosLgObjActiv <> 0 Then // Si l'objectif a été atteintPosLgInIndic = PosLgInIndic /2 // Indicateur de position "ON - Allegée"EndIfElse // Si nonPosLgInIndic = 0 // Indicateur de position OFFEndif///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DU GAIN EN POSITION///////////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv <> 0 ThenGainTrLg = Close - PosLgOpenPrice // Calcul du gain en cours de positionElseGainTrLg = 0Endif///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DU FINANCEMENT///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// FINANCEMENT PRUDENTIf FinObj <> 0 ThenIf PosLgOpenActiv <> 0 Then // Si nous sommes en positionIf PosLgFinActiv = 0 then // Non financée// Financement absolu !! ou Relatif !!If FinType = 0 ThenNextObjPrice = PosLgOpenPrice + FinObjElseNextObjPrice = PosLgOpenPrice * ( 1 + ( FinObj / 100))EndifIf High => (NextObjPrice) Then // Que le prix franchit l'objectif// de financement prudentPosLgFinIndic = 2 // Indicateur de financement prudentPosLgFinPlusIndic = 0 // Indicateur de financement audacieuxPosLgFinActiv = 1 // Financement activéNbTrLgFin = NbTrLgFin + 1 // Compteur de positions financéesFinPosNbBar = FinPosNbBar + (BarIndex - PosBarIn) // Compteur du nombre de jours pour financementElsePosLgFinIndic = 0PosLgFinPlusIndic = 0EndifElsePosLgFinIndic = 0PosLgFinPlusIndic = 0EndifEndifEndIf// FINANCEMENT AUDACIEUX //If (FinObjSup <> 0 AND FinObjSup > FinObj) OR (FinObj = 0 AND FinObjSup <> 0) ThenIf PosLgOpenActiv <> 0 ThenIf (PosLgFinActiv <> 0 OR FinObj = 0) and PosLgFinSupActiv = 0 Then// Financement absolu !! ou Relatif !!If FinType = 0 ThenNextObjSupPrice = PosLgOpenPrice + FinObjSupElseNextObjSupPrice = PosLgOpenPrice * ( 1 + (FinObjSup / 100))EndifIf High => (NextObjSupPrice) ThenPosLgFinIndic = PosLgFinIndicPosLgFinPlusIndic = 2PosLgFinSupActiv = 1ElsePosLgFinIndic = PosLgFinIndicPosLgFinPlusIndic = 0PosLgFinSupActiv = 0EndifEndifEndifEndIf////////////////////////////////////////////////////////////////////////////////////////////////////////////////// POSITION GAGANTE SORTIE SUR OBJECTIF///////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv <> 0 Then// ********************** Prise de Bénéfices sur objectif **********************If PosLgObjActiv = 0 ThenIf High => PosLgObjPrice ThenPosLgObjIndic = 1.5PosLgObjActiv = 1NbTrLgObj = NbTrLgObj + 1ObjPosNbBar = ObjPosNbBar + (BarIndex - PosBarIn)ElsePosLgObjIndic = 0EndIfEndIf// ********************** Prise de Bénéfices sur signal **********************If LgBenSig = 1 ThenPosLgBenIndic = 1ElsePosLgBenIndic = 0Endif// ********************** Prise de Bénéfices en tendance ********************** //If FinBenef <> 0 AND FinBenef > MAX(FinObj, FinObjSup) ThenIf PosLgFinActiv = 1 Then// Financement absolu !! ou Relatif !!If FinType = 0 ThenBenefObjPrice = PosLgBenefPrice + FinBenefElseBenefObjPrice = PosLgBenefPrice * ( 1 + (FinBenef / 100))EndifIf High >= BenefObjPrice ThenPosLgBenTrendIndic = 1.5If FinType = 0 ThenPosLgBenefPrice = PosLgBenefPrice + FinBenefElsePosLgBenefPrice = PosLgBenefPrice * ( 1 + (FinBenef / 100))EndifElsePosLgBenTrendIndic = 0EndifEndifEndIf// ********************** ********************** //EndIf///////////////////////////////////////////////////////////////////////////////////////////////////// GESTION SORTIE DE POSITION//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// POSITION PERDANTE SORTIE SUR STOP OU INVALIDATION DU SIGNAL //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv <> 0 Then // Si nous sommes en positionIf Low <= PosLgStopPrice OR ( LgInvSig <> 0 AND PosLgFinActiv = 0 AND PosLgFinSupActiv = 0) Or LgOutSig <> 0 Then// soit un signal d'invalidation soit un prix de cloture inférieur au STOP// soit un signal de sortie....// Cas de l'invalidation du signalIf LgInvSig <> 0 AND PosLgFinActiv = 0 ThenPosLgInvIndic = 1.5//StatNbTrLgInv = NbTrLgInv + 1InvPosNbBar = InvPosNbBar + (BarIndex - PosBarIn)InvPosNbBar = InvPosNbBarEndIf// Cas du signal de sortieIf LgOutSig <> 0 ThenPosLgOutIndic = 2.5EndIf// PricePosLgClosePrice = OpenOfNextBar// Cas du stopIf Low <= PosLgStopPrice ThenPosLgStopIndic = 3//StatNbTrLgSto = NbTrLgSto + 1StopPosNbBar = StopPosNbBar + (BarIndex - PosBarIn)StopPosNbBar = StopPosNbBarPosLgClosePrice = PosLgStopPrice// Non cumulation du signal d'invalidation et de stopIf PosLgInvIndic = 2 ThenNbTrLgInv = NbTrLgInv - 1InvPosNbBar = InvPosNbBar - (BarIndex - PosBarIn)EndIfEndif// FlagPosLgOpenActiv = 0PosLgFinActiv = 0PosLgFinSupActiv = 0PosLgObjActiv = 0//Statistiques génériquesPosBarOut = BarIndexNbTrLg = NbTrLg + 1 // Compteur de position +1//Statistiques génériques - Trade gagnantIf (PosLgClosePrice - PosLgOpenPrice ) > 0 ThenNbTrLgWin = NbTrLgWin + 1WinPosNbBar = WinPosNbBar + (BarIndex - PosBarIn)GainTrLg = (PosLgOpenPrice - PosLgClosePrice)TotGainTrLg = TotGainTrLg + GainTrLgAvgGainTrLg = TotGainTrLg / NbTrLgWinAvgGainTrLg = AvgGainTrLgEndIf//Statistiques génériques - Trade perdantIf (PosLgClosePrice - PosLgOpenPrice ) <= 0 ThenNbTrLgLos = NbTrLgLos + 1LosPosNbBar = LosPosNbBar + (BarIndex - PosBarIn)LosTrLg = ( PosLgClosePrice - PosLgOpenPrice)TotLosTrLg = TotLosTrLg + LosTrLgAvgLosTrLg = TotLosTrLg / NbTrLgLosAvgLosTrLg = AvgLosTrLgEndIf// Calcul du nombre de périodes (bougies) en relation à la statégie.// Position actuellePosNbBar = PosBarOut - PosBarIn// MoyenneCountPosBar = CountPosBar + PosNbBarNbMoyPosBar = CountPosBar / NbTrLgNbMoyPosBar = NbMoyPosBar// MinimumIf MinPosNbBar = 0 ThenMinPosNbBar = PosNbBarElseIf PosNbBar < MinPosNbBar ThenMinPosNbBar = PosNbBarEndIfEndIf// MaximumIf MaxPosNbBar = 0 ThenMaxPosNbBar = PosNbBarElseIf PosNbBar > MaxPosNbBar ThenMaxPosNbBar = PosNbBarEndIfEndIf// Reset fin de positionGainTrLg = 0EndifEndif//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DES PRISES DE POSITIONS ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////If (PosLgStopIndic = 0 AND PosLgInvIndic = 0 AND PosLgInvIndic = 0) ThenIf LgSig = 1 Then // Si exitence d'un signal d'achatIf PosLgOpenActiv = 0 Then // et d'une absence de position// FlagPosLgOpenActiv = 1 // Ouverture d'une positionPosLgFinActiv = 0 // Initialisation flag financementPosLgFinSupActiv = 0 // Initialisation flag financement audacieuxPosLgObjActiv = 0 // Initialisation flag atteinte objectif// IndicPosLgAleIndic = 0 //Aucun indicateur de positionPosLgInIndic = 0 //Aucun indicateur de positionPosLgStopIndic = 0 //Aucun indicateur de positionPosLgInvIndic = 0 //Aucun indicateur de positionPosLgFinIndic = 0 //Aucun indicateur de positionPosLgFinPlusIndic = 0 //Aucun indicateur de positionPosLgPydIndic = 0 //Aucun indicateur de positionPosLgObjIndic = 0 //Aucun indicateur de positionPosLgBenIndic = 0 //Aucun indicateur de positionPosLgBenTrendIndic = 0 //Aucun indicateur de positionPosLgOutIndic = 0 //Aucun indicateur de position// PriceIf SprType = 0 ThenPosLgOpenPrice = OpenOfNextBar + Spread // Ouverture au prix de la bougie suivante + spread absoluElsePosLgOpenPrice = OpenOfNextBar * (1 + (Spread / 100)) // Ouverture au prix de la bougie suivante + spread absoluEndIfPosLgBenefPrice = PosLgOpenPrice // Définition du prix de référence pour prise de bénéfice absoluePosLgStopPrice = StopPrice // Définition du prix du STOPPosStopPrice = PosLgStopPrice // Définition du prix du STOPPosStopPrice = PosStopPricePosLgObjPrice = ObjPrice // Définition du prix de l'objectif// StatGainTrLg = 0 // Gain sur position initialisé à 0LosTrLg = 0 // Perte sur position initialisé à 0PosNbBar = 0 // Nombre de Bar position = 0PosBarIn = BarIndex // BarIndex d'ouverture à 1PosBarOut = 0 // BarIndex de cloture à 0EndIfEndIfEndIfElsexHIndic = 0PosLgInIndic = 0PosLgInvIndic = 0PosLgStopIndic = 0PosLgFinIndic = 0PosLgFinPlusIndic = 0PosLgObjIndic = 0PosLgBenTrendIndic = 0PosLgBenIndic = 0PosLgOutIndic = 0NbTrLg = 0NbTrLgSto = 0NbTrLgInv = 0NbTrLgFin = 0NbTrLgWin = 0NbTrLgLos = 0NbTrLgObj = 0TotGainTrLg = 0TotLosTrLg = 0AvgGainTrLg = 0AvgLosTrLg = 0GainTrLg = 0LosTrLg = 0PosStopPrice = 0FinObj = FinObjFinObjSup = FinObjSupFinBenef = FinBenefFinType = FinTypeSpread = SpreadSprType = SprTypePymd = PymdAnnee = AnneeMois = MoisJour = Jour///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DES VARIABLES MULTI MODULES /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// n/aEndifEndIf/////////////////////////////////////////////////////////////////////////////////////////////////////////////// Retour des variables //////////////////////////////////////////////////////////////////////////////////////////////////////////////Return PosLgAleIndic as "Alerte", xHIndic as "Signal Prise Position", PosLgInIndic as "En Position Longue", PosLgInvIndic as "Signal Invalidation", PosLgStopIndic as "Signal Stop", PosLgFinIndic as "Financement Prudent", PosLgFinPlusIndic as "Financement Audacieux", PosLgObjIndic as "Signal Position Objectif" , PosLgBenTrendIndic as "Position Objectif Absolu" , PosLgBenIndic as "Signal Prise Bénéfice", PosLgOutIndic as "Signal Sortie", PosLgPydIndic as "Signal Pyramidage"12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229// GNT@TSA-Short//////////////////////////////////////////////////////////////////////////////////////////// Variable de paramétrage ////////////////////////////////////////////////////////////////////////////////////////////Once FinObj = FinObjOnce FinObjSup = FinObjSupOnce FinBenef = FinBenefOnce FinType = FinTypeOnce SpreGNT@TSA-Long//////////////////////////////////////////////////////////////////////////////////////////// Variable de paramétrage ////////////////////////////////////////////////////////////////////////////////////////////Once FinObj = FinObjOnce FinObjSup = FinObjSupOnce FinBenef = FinBenefOnce FinType = FinTypeOnce Spread = SpreadOnce SprType = SprTypeOnce Pymd = PymdOnce Annee = AnneeOnce Mois = MoisOnce Jour = Jour//////////////////////////////////////////////////////////////////////////////////////////// Filtre de Temps ////////////////////////////////////////////////////////////////////////////////////////////If (Annee > 1950 AND Annee < 2050) AND Mois < 13 AND Jour <32 ThenIf (Year > Annee) OR (Year = Annee AND Month => Mois and Day => Jour) Then//////////////////////////////////////////////////////////////////////////////////////////// Initialisation des variables ////////////////////////////////////////////////////////////////////////////////////////////// Active - Conditions actives ou non sur plusieurs bougiesOnce PosLgOpenActiv = 0Once PosLgFinActiv = 0Once PosLgFinSupActiv = 0Once PosLgObjActiv = 0// Indic - Indications visuelles sur la bougie en coursOnce PosLgInIndic = 0PosLgAleIndic = 0PosLgStopIndic = 0PosLgInvIndic = 0PosLgFinIndic = 0PosLgFinPlusIndic = 0PosLgObjIndic = 0PosLgPydIndic = 0PosLgBenTrendIndic = 0PosLgBenIndic = 0PosLgOutIndic = 0xHIndic = 0// Price - Divers prix de l'actif pour gestion de la position// Price - Divers prix de l'actif pour gestion des statistiquesOnce PosLgOpenPrice = 0Once PosLgClosePrice = 0Once PosLgBenefPrice = 0Once PosLgStopPrice = 0Once PosStopPrice = 0Once PosLgObjPrice = 0Once NextObjPrice = 0Once NextObjSupPrice = 0Once BenefObjPrice = 0// StatOnce NbTrLg = 0Once NbTrLgSto = 0Once NbTrLgInv = 0Once NbTrLgFin = 0Once NbTrLgObj = 0Once NbTrLgWin = 0Once NbTrLgLos = 0Once GainTrLg= 0Once TotGainTrLg = 0Once AvgGainTrLg = 0Once LosTrLg = 0Once TotLosTrLg = 0Once AvgLosTrLg = 0PosNbBar = 0Once PosBarIn = 0Once PosBarOut = 0Once CountPosBar = 0Once NbMoyPosBar = 0Once MinPosNbBar = 0Once MaxPosNbBar = 0Once StopPosNbBar = 0Once InvPosNbBar = 0Once FinPosNbBar = 0Once ObjPosNbBar = 0Once WinPosNbBar = 0Once LosPosNbBar = 0// Input - Variables provenant du système de tradingLgAle = 0 // Signal d'alerteLgSig = 0 // Signal d'entrée longStopPrice = 0 // Prix du STOPObjPrice = 0 // Prix de l'objectifLgInvSig = 0 // Signal d'invalidation du signal d'entréeLgBenSig = 0 // Signal de prise de bénéficeLgOutSig = 0 // Signal de sortie de position/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Appel fonctions externes///////////////////////////////////////////////////////////////////////////////////////////////////////////////////LgAle, ignored, LgSig , ignored, StopPrice, ObjPrice, LgInvSig, ignored, LgBenSig, ignored, LgOutSig, ignored = CALL "GNT@SYS"////////////////////////////////////////////////////////////////////////////////////// Gestion d'un signal d'alerte /////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv = 0 Then // Si nous sommes en positionIf LgAle <> 0 ThenPosLgAleIndic = 3EndIfEndIf///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Gestion d'un signal de prise de position///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Signal position longIf LgSig <> 0 Then // Si provenance d'un signal du système de trading sous jacent ...xHIndic = 3 // Signal d'entrée en positionIf PosLgOpenActiv <> 0 Then // Si déjà en position longuexHIndic = xHIndic / 3*2 // Signal de pyramidage.... possible !!If Pymd <> 0 Then // Si option de pyramidageIf Pymd = 1 Then // Si option de pyramidage après financementIf PosLgFinActiv <> 0 Then // Fiancement ok ?PosLgPydIndic = 1EndIfEndIfIf Pymd = 2 Then // Si option de Pyramidage à tout prixPosLgPydIndic = 1EndIFEndIfEndifElsexHIndic =0 // Absence de signalEndIf/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION INDICATEUR POSITION///////////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv <> 0 Then // Si nous sommes en position// IndicPosLgInIndic = 1 // Indicateur de position ONIf PosLgObjActiv <> 0 Then // Si l'objectif a été atteintPosLgInIndic = PosLgInIndic /2 // Indicateur de position "ON - Allegée"EndIfElse // Si nonPosLgInIndic = 0 // Indicateur de position OFFEndif///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DU GAIN EN POSITION///////////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv <> 0 ThenGainTrLg = Close - PosLgOpenPrice // Calcul du gain en cours de positionElseGainTrLg = 0Endif///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DU FINANCEMENT///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// FINANCEMENT PRUDENTIf FinObj <> 0 ThenIf PosLgOpenActiv <> 0 Then // Si nous sommes en positionIf PosLgFinActiv = 0 then // Non financée// Financement absolu !! ou Relatif !!If FinType = 0 ThenNextObjPrice = PosLgOpenPrice + FinObjElseNextObjPrice = PosLgOpenPrice * ( 1 + ( FinObj / 100))EndifIf High => (NextObjPrice) Then // Que le prix franchit l'objectif// de financement prudentPosLgFinIndic = 2 // Indicateur de financement prudentPosLgFinPlusIndic = 0 // Indicateur de financement audacieuxPosLgFinActiv = 1 // Financement activéNbTrLgFin = NbTrLgFin + 1 // Compteur de positions financéesFinPosNbBar = FinPosNbBar + (BarIndex - PosBarIn) // Compteur du nombre de jours pour financementElsePosLgFinIndic = 0PosLgFinPlusIndic = 0EndifElsePosLgFinIndic = 0PosLgFinPlusIndic = 0EndifEndifEndIf// FINANCEMENT AUDACIEUX //If (FinObjSup <> 0 AND FinObjSup > FinObj) OR (FinObj = 0 AND FinObjSup <> 0) ThenIf PosLgOpenActiv <> 0 ThenIf (PosLgFinActiv <> 0 OR FinObj = 0) and PosLgFinSupActiv = 0 Then// Financement absolu !! ou Relatif !!If FinType = 0 ThenNextObjSupPrice = PosLgOpenPrice + FinObjSupElseNextObjSupPrice = PosLgOpenPrice * ( 1 + (FinObjSup / 100))EndifIf High => (NextObjSupPrice) ThenPosLgFinIndic = PosLgFinIndicPosLgFinPlusIndic = 2PosLgFinSupActiv = 1ElsePosLgFinIndic = PosLgFinIndicPosLgFinPlusIndic = 0PosLgFinSupActiv = 0EndifEndifEndifEndIf////////////////////////////////////////////////////////////////////////////////////////////////////////////////// POSITION GAGANTE SORTIE SUR OBJECTIF///////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv <> 0 Then// ********************** Prise de Bénéfices sur objectif **********************If PosLgObjActiv = 0 ThenIf High => PosLgObjPrice ThenPosLgObjIndic = 1.5PosLgObjActiv = 1NbTrLgObj = NbTrLgObj + 1ObjPosNbBar = ObjPosNbBar + (BarIndex - PosBarIn)ElsePosLgObjIndic = 0EndIfEndIf// ********************** Prise de Bénéfices sur signal **********************If LgBenSig = 1 ThenPosLgBenIndic = 1ElsePosLgBenIndic = 0Endif// ********************** Prise de Bénéfices en tendance ********************** //If FinBenef <> 0 AND FinBenef > MAX(FinObj, FinObjSup) ThenIf PosLgFinActiv = 1 Then// Financement absolu !! ou Relatif !!If FinType = 0 ThenBenefObjPrice = PosLgBenefPrice + FinBenefElseBenefObjPrice = PosLgBenefPrice * ( 1 + (FinBenef / 100))EndifIf High >= BenefObjPrice ThenPosLgBenTrendIndic = 1.5If FinType = 0 ThenPosLgBenefPrice = PosLgBenefPrice + FinBenefElsePosLgBenefPrice = PosLgBenefPrice * ( 1 + (FinBenef / 100))EndifElsePosLgBenTrendIndic = 0EndifEndifEndIf// ********************** ********************** //EndIf///////////////////////////////////////////////////////////////////////////////////////////////////// GESTION SORTIE DE POSITION//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// POSITION PERDANTE SORTIE SUR STOP OU INVALIDATION DU SIGNAL //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosLgOpenActiv <> 0 Then // Si nous sommes en positionIf Low <= PosLgStopPrice OR ( LgInvSig <> 0 AND PosLgFinActiv = 0 AND PosLgFinSupActiv = 0) Or LgOutSig <> 0 Then// soit un signal d'invalidation soit un prix de cloture inférieur au STOP// soit un signal de sortie....// Cas de l'invalidation du signalIf LgInvSig <> 0 AND PosLgFinActiv = 0 ThenPosLgInvIndic = 1.5//StatNbTrLgInv = NbTrLgInv + 1InvPosNbBar = InvPosNbBar + (BarIndex - PosBarIn)InvPosNbBar = InvPosNbBarEndIf// Cas du signal de sortieIf LgOutSig <> 0 ThenPosLgOutIndic = 2.5EndIf// PricePosLgClosePrice = OpenOfNextBar// Cas du stopIf Low <= PosLgStopPrice ThenPosLgStopIndic = 3//StatNbTrLgSto = NbTrLgSto + 1StopPosNbBar = StopPosNbBar + (BarIndex - PosBarIn)StopPosNbBar = StopPosNbBarPosLgClosePrice = PosLgStopPrice// Non cumulation du signal d'invalidation et de stopIf PosLgInvIndic = 2 ThenNbTrLgInv = NbTrLgInv - 1InvPosNbBar = InvPosNbBar - (BarIndex - PosBarIn)EndIfEndif// FlagPosLgOpenActiv = 0PosLgFinActiv = 0PosLgFinSupActiv = 0PosLgObjActiv = 0//Statistiques génériquesPosBarOut = BarIndexNbTrLg = NbTrLg + 1 // Compteur de position +1//Statistiques génériques - Trade gagnantIf (PosLgClosePrice - PosLgOpenPrice ) > 0 ThenNbTrLgWin = NbTrLgWin + 1WinPosNbBar = WinPosNbBar + (BarIndex - PosBarIn)GainTrLg = (PosLgOpenPrice - PosLgClosePrice)TotGainTrLg = TotGainTrLg + GainTrLgAvgGainTrLg = TotGainTrLg / NbTrLgWinAvgGainTrLg = AvgGainTrLgEndIf//Statistiques génériques - Trade perdantIf (PosLgClosePrice - PosLgOpenPrice ) <= 0 ThenNbTrLgLos = NbTrLgLos + 1LosPosNbBar = LosPosNbBar + (BarIndex - PosBarIn)LosTrLg = ( PosLgClosePrice - PosLgOpenPrice)TotLosTrLg = TotLosTrLg + LosTrLgAvgLosTrLg = TotLosTrLg / NbTrLgLosAvgLosTrLg = AvgLosTrLgEndIf// Calcul du nombre de périodes (bougies) en relation à la statégie.// Position actuellePosNbBar = PosBarOut - PosBarIn// MoyenneCountPosBar = CountPosBar + PosNbBarNbMoyPosBar = CountPosBar / NbTrLgNbMoyPosBar = NbMoyPosBar// MinimumIf MinPosNbBar = 0 ThenMinPosNbBar = PosNbBarElseIf PosNbBar < MinPosNbBar ThenMinPosNbBar = PosNbBarEndIfEndIf// MaximumIf MaxPosNbBar = 0 ThenMaxPosNbBar = PosNbBarElseIf PosNbBar > MaxPosNbBar ThenMaxPosNbBar = PosNbBarEndIfEndIf// Reset fin de positionGainTrLg = 0EndifEndif//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DES PRISES DE POSITIONS ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////If (PosLgStopIndic = 0 AND PosLgInvIndic = 0 AND PosLgInvIndic = 0) ThenIf LgSig = 1 Then // Si exitence d'un signal d'achatIf PosLgOpenActiv = 0 Then // et d'une absence de position// FlagPosLgOpenActiv = 1 // Ouverture d'une positionPosLgFinActiv = 0 // Initialisation flag financementPosLgFinSupActiv = 0 // Initialisation flag financement audacieuxPosLgObjActiv = 0 // Initialisation flag atteinte objectif// IndicPosLgAleIndic = 0 //Aucun indicateur de positionPosLgInIndic = 0 //Aucun indicateur de positionPosLgStopIndic = 0 //Aucun indicateur de positionPosLgInvIndic = 0 //Aucun indicateur de positionPosLgFinIndic = 0 //Aucun indicateur de positionPosLgFinPlusIndic = 0 //Aucun indicateur de positionPosLgPydIndic = 0 //Aucun indicateur de positionPosLgObjIndic = 0 //Aucun indicateur de positionPosLgBenIndic = 0 //Aucun indicateur de positionPosLgBenTrendIndic = 0 //Aucun indicateur de positionPosLgOutIndic = 0 //Aucun indicateur de position// PriceIf SprType = 0 ThenPosLgOpenPrice = OpenOfNextBar + Spread // Ouverture au prix de la bougie suivante + spread absoluElsePosLgOpenPrice = OpenOfNextBar * (1 + (Spread / 100)) // Ouverture au prix de la bougie suivante + spread absoluEndIfPosLgBenefPrice = PosLgOpenPrice // Définition du prix de référence pour prise de bénéfice absoluePosLgStopPrice = StopPrice // Définition du prix du STOPPosStopPrice = PosLgStopPrice // Définition du prix du STOPPosStopPrice = PosStopPricePosLgObjPrice = ObjPrice // Définition du prix de l'objectif// StatGainTrLg = 0 // Gain sur position initialisé à 0LosTrLg = 0 // Perte sur position initialisé à 0PosNbBar = 0 // Nombre de Bar position = 0PosBarIn = BarIndex // BarIndex d'ouverture à 1PosBarOut = 0 // BarIndex de cloture à 0EndIfEndIfEndIfElsexHIndic = 0PosLgInIndic = 0PosLgInvIndic = 0PosLgStopIndic = 0PosLgFinIndic = 0PosLgFinPlusIndic = 0PosLgObjIndic = 0PosLgBenTrendIndic = 0PosLgBenIndic = 0PosLgOutIndic = 0NbTrLg = 0NbTrLgSto = 0NbTrLgInv = 0NbTrLgFin = 0NbTrLgWin = 0NbTrLgLos = 0NbTrLgObj = 0TotGainTrLg = 0TotLosTrLg = 0AvgGainTrLg = 0AvgLosTrLg = 0GainTrLg = 0LosTrLg = 0PosStopPrice = 0FinObj = FinObjFinObjSup = FinObjSupFinBenef = FinBenefFinType = FinTypeSpread = SpreadSprType = SprTypePymd = PymdAnnee = AnneeMois = MoisJour = Jour///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DES VARIABLES MULTI MODULES /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// n/aEndifEndIf/////////////////////////////////////////////////////////////////////////////////////////////////////////////// Retour des variables //////////////////////////////////////////////////////////////////////////////////////////////////////////////Return PosLgAleIndic as "Alerte", xHIndic as "Signal Prise Position", PosLgInIndic as "En Position Longue", PosLgInvIndic as "Signal Invalidation", PosLgStopIndic as "Signal Stop", PosLgFinIndic as "Financement Prudent", PosLgFinPlusIndic as "Financement Audacieux", PosLgObjIndic as "Signal Position Objectif" , PosLgBenTrendIndic as "Position Objectif Absolu" , PosLgBenIndic as "Signal Prise Bénéfice", PosLgOutIndic as "Signal Sortie", PosLgPydIndic as "Signal Pyramidage"ad = SpreadOnce SprType = SprTypeOnce Pymd = PymdOnce Annee = AnneeOnce Mois = MoisOnce Jour = Jour//////////////////////////////////////////////////////////////////////////////////////////// Filtre de Temps ////////////////////////////////////////////////////////////////////////////////////////////If (Annee > 1950 AND Annee < 2050) AND Mois < 13 AND Jour <32 ThenIf (Year > Annee) OR (Year = Annee AND Month >= Mois and Day >= Jour) Then//////////////////////////////////////////////////////////////////////////////////////////// Initialisation des variables ////////////////////////////////////////////////////////////////////////////////////////////// Active - Conditions actives ou non sur plusieurs bougiesOnce PosShOpenActiv = 0Once PosShFinActiv = 0Once PosShFinSupActiv = 0Once PosShObjActiv = 0// Indic - Indications visuelles sur la bougie en coursOnce PosShInIndic = 0PosShAleIndic = 0PosShStopIndic = 0PosShInvIndic = 0PosShFinIndic = 0PosShFinPlusIndic = 0PosShObjIndic = 0PosShPydIndic = 0PosShBenTrendIndic = 0PosShBenIndic = 0PosShOutIndic = 0xHIndic = 0// Price - Divers prix de l'actif pour gestion de la position// Price - Divers prix de l'actif pour gestion des statistiquesOnce PosShOpenPrice = 0Once PosShClosePrice = 1Once PosShBenefPrice = 0Once PosShStopPrice = 0Once PosStopPrice = 0Once PosShObjPrice = 0Once NextObjPrice = 0Once NextObjSupPrice = 0Once BenefObjPrice = 0// StatOnce NbTrSh = 0Once NbTrShSto = 0Once NbTrShInv = 0Once NbTrShFin = 0Once NbTrShObj = 0Once NbTrShWin = 0Once NbTrShLos = 0Once GainTrSh= 0Once TotGainTrSh = 0Once AvgGainTrSh = 0Once LosTrSh = 0Once TotLosTrSh = 0Once AvgLosTrSh = 0PosNbBar = 0Once PosBarIn = 0Once PosBarOut = 0Once CountPosBar = 0Once NbMoyPosBar = 0Once MinPosNbBar = 0Once MaxPosNbBar = 0Once StopPosNbBar = 0Once InvPosNbBar = 0Once FinPosNbBar = 0Once ObjPosNbBar = 0Once WinPosNbBar = 0Once LosPosNbBar = 0// Input - Variables provenant du système de tradingShAle = 0 // Signal d'alerteShSig = 0 // Signal d'entrée longStopPrice = 0 // Prix du STOPObjPrice = 0 // Prix de l'objectifShInvSig = 0 // Signal d'invalidation du signal d'entréeShBenSig = 0 // Signal de prise de bénéficeShOutSig = 0 // Signal de sortie de position/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Appel fonctions externes///////////////////////////////////////////////////////////////////////////////////////////////////////////////////ignored, ShAle, ignored, ShSig, StopPrice, ObjPrice, ignored, ShInvSig, ignored, ShBenSig, ignored, ShOutSig = CALL "GNT@SYS"////////////////////////////////////////////////////////////////////////////////////// Gestion d'un signal d'alerte /////////////////////////////////////////////////////////////////////////////////////If PosShOpenActiv = 0 Then // Si nous sommes en positionIf ShAle <> 0 ThenPosShAleIndic = -3EndIfEndIf///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Gestion d'un signal de prise de position///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Signal position longIf ShSig <> 0 Then // Si provenance d'un signal du système de trading sous jacent ...xHIndic = -3 // Signal d'entrée en positionIf PosShOpenActiv <> 0 Then // Si déjà en position longuexHIndic = xHIndic / 3*2 // Signal de pyramidage.... possible !!If Pymd <> 0 Then // Si option de pyramidageIf Pymd = 1 Then // Si option de pyramidage après financementIf PosShFinActiv <> 0 Then // Fiancement ok ?PosShPydIndic = -1EndIfEndIfIf Pymd = 2 Then // Si option de Pyramidage à tout prixPosShPydIndic = -1EndIFEndIfEndifElsexHIndic =0 // Absence de signalEndIf/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION INDICATEUR POSITION///////////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosShOpenActiv <> 0 Then // Si nous sommes en position// IndicPosShInIndic = -1 // Indicateur de position ONIf PosShObjActiv <> 0 Then // Si l'objectif a été atteintPosShInIndic = PosShInIndic /2 // Indicateur de position "ON - Allegée"EndIfElse // Si nonPosShInIndic = 0 // Indicateur de position OFFEndif///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DU GAIN EN POSITION///////////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosShOpenActiv <> 0 ThenGainTrSh = PosShOpenPrice - Close // Calcul du gain en cours de positionElseGainTrSh = 0Endif///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DU FINANCEMENT///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// FINANCEMENT PRUDENTIf FinObj <> 0 ThenIf PosShOpenActiv <> 0 Then // Si nous sommes en positionIf PosShFinActiv = 0 then // Non financée// Financement absolu !! ou Relatif !!If FinType = 0 ThenNextObjPrice = PosShOpenPrice - FinObjElseNextObjPrice = PosShOpenPrice * ( 1 - ( FinObj / 100))EndifIf Low <= (NextObjPrice) Then // Que le prix franchit l'objectif// de financement prudentPosShFinIndic = -2 // Indicateur de financement prudentPosShFinPlusIndic = 0 // Indicateur de financement audacieuxPosShFinActiv = 1 // Financement activéNbTrShFin = NbTrShFin + 1 // Compteur de positions financéesFinPosNbBar = FinPosNbBar + (BarIndex - PosBarIn) // Compteur du nombre de jours pour financementElsePosShFinIndic = 0PosShFinPlusIndic = 0EndifElsePosShFinIndic = 0PosShFinPlusIndic = 0EndifEndifEndIf// FINANCEMENT AUDACIEUX //If (FinObjSup <> 0 AND FinObjSup > FinObj) OR (FinObj = 0 AND FinObjSup <> 0) ThenIf PosShOpenActiv <> 0 ThenIf (PosShFinActiv <> 0 OR FinObj = 0) and PosShFinSupActiv = 0 Then// Financement absolu !! ou Relatif !!If FinType = 0 ThenNextObjSupPrice = PosShOpenPrice - FinObjSupElseNextObjSupPrice = PosShOpenPrice * ( 1 - (FinObjSup / 100))EndifIf Low <= (NextObjSupPrice) ThenPosShFinIndic = PosShFinIndicPosShFinPlusIndic = -2PosShFinSupActiv = 1ElsePosShFinIndic = PosShFinIndicPosShFinPlusIndic = 0PosShFinSupActiv = 0EndifEndifEndifEndIf////////////////////////////////////////////////////////////////////////////////////////////////////////////////// POSITION GAGANTE SORTIE SUR OBJECTIF///////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosShOpenActiv <> 0 Then// ********************** Prise de Bénéfices sur objectif **********************If PosShObjActiv = 0 ThenIf Low <= PosShObjPrice ThenPosShObjIndic = -1.5PosShObjActiv = 1NbTrShObj = NbTrShObj + 1ObjPosNbBar = ObjPosNbBar + (BarIndex - PosBarIn)ElsePosShObjIndic = 0EndIfEndIf// ********************** Prise de Bénéfices sur signal **********************If ShBenSig = 1 ThenPosShBenIndic = -1ElsePosShBenIndic = 0Endif// ********************** Prise de Bénéfices en tendance ********************** //If FinBenef <> 0 AND FinBenef > MAX(FinObj, FinObjSup) ThenIf PosShFinActiv = 1 Then// Financement absolu !! ou Relatif !!If FinType = 0 ThenBenefObjPrice = PosShBenefPrice - FinBenefElseBenefObjPrice = PosShBenefPrice * ( 1 - (FinBenef / 100))EndifIf Low <= BenefObjPrice ThenPosShBenTrendIndic = -1.5If FinType = 0 ThenPosShBenefPrice = PosShBenefPrice - FinBenefElsePosShBenefPrice = PosShBenefPrice * ( 1 - (FinBenef / 100))EndifElsePosShBenTrendIndic = 0EndifEndifEndIf// ********************** ********************** //EndIf///////////////////////////////////////////////////////////////////////////////////////////////////// GESTION SORTIE DE POSITION//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// POSITION PERDANTE SORTIE SUR STOP OU INVALIDATION DU SIGNAL //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////If PosShOpenActiv <> 0 Then // Si nous sommes en positionIf High >= PosShStopPrice OR ( ShInvSig <> 0 AND PosShFinActiv = 0 AND PosShFinSupActiv = 0) Or ShOutSig <> 0 Then// soit un signal d'invalidation soit un prix de cloture inférieur au STOP// soit un signal de sortie....// Cas de l'invalidation du signalIf ShInvSig <> 0 AND PosShFinActiv = 0 ThenPosShInvIndic = -1.5//StatNbTrShInv = NbTrShInv + 1InvPosNbBar = InvPosNbBar + (BarIndex - PosBarIn)InvPosNbBar = InvPosNbBarEndIf// Cas du signal de sortieIf ShOutSig <> 0 ThenPosShOutIndic = -2.5EndIf// PricePosShClosePrice = OpenOfNextBar// Cas du stopIf High >= PosShStopPrice ThenPosShStopIndic = -3//StatNbTrShSto = NbTrShSto + 1StopPosNbBar = StopPosNbBar + (BarIndex - PosBarIn)StopPosNbBar = StopPosNbBarPosShClosePrice = PosShStopPrice// Non cumulation du signal d'invalidation et de stopIf PosShInvIndic = -2 ThenNbTrShInv = NbTrShInv - 1InvPosNbBar = InvPosNbBar - (BarIndex - PosBarIn)EndIfEndif// FlagPosShOpenActiv = 0PosShFinActiv = 0PosShFinSupActiv = 0PosShObjActiv = 0//Statistiques génériquesPosBarOut = BarIndexNbTrSh = NbTrSh + 1 // Compteur de position +1//Statistiques génériques - Trade gagnantIf (PosShOpenPrice - PosShClosePrice) > 0 ThenNbTrShWin = NbTrShWin + 1WinPosNbBar = WinPosNbBar + (BarIndex - PosBarIn)GainTrSh = (PosShOpenPrice - PosShClosePrice)TotGainTrSh = TotGainTrSh + GainTrShAvgGainTrSh = TotGainTrSh / NbTrShWinAvgGainTrSh = AvgGainTrShEndIf//Statistiques génériques - Trade perdantIf (PosShOpenPrice - PosShClosePrice) <= 0 ThenNbTrShLos = NbTrShLos + 1LosPosNbBar = LosPosNbBar + (BarIndex - PosBarIn)LosTrSh = (PosShOpenPrice - PosShClosePrice)TotLosTrSh = TotLosTrSh + LosTrShAvgLosTrSh = TotLosTrSh / NbTrShLosAvgLosTrSh = AvgLosTrShEndIf// Calcul du nombre de périodes (bougies) en relation à la statégie.// Position actuellePosNbBar = PosBarOut - PosBarIn// MoyenneCountPosBar = CountPosBar + PosNbBarNbMoyPosBar = CountPosBar / NbTrShNbMoyPosBar = NbMoyPosBar// MinimumIf MinPosNbBar = 0 ThenMinPosNbBar = PosNbBarElseIf PosNbBar < MinPosNbBar ThenMinPosNbBar = PosNbBarEndIfEndIf// MaximumIf MaxPosNbBar = 0 ThenMaxPosNbBar = PosNbBarElseIf PosNbBar > MaxPosNbBar ThenMaxPosNbBar = PosNbBarEndIfEndIf// Reset fin de positionGainTrSh = 0EndifEndif//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DES PRISES DE POSITIONS ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////If (PosShStopIndic = 0 AND PosShInvIndic = 0 AND PosShInvIndic = 0) ThenIf ShSig = 1 Then // Si exitence d'un signal d'achatIf PosShOpenActiv = 0 Then // et d'une absence de position// FlagPosShOpenActiv = 1 // Ouverture d'une positionPosShFinActiv = 0 // Initialisation flag financementPosShFinSupActiv = 0 // Initialisation flag financement audacieuxPosShObjActiv = 0 // Initialisation flag atteinte objectif// IndicPosShAleIndic = 0 //Aucun indicateur de positionPosShInIndic = 0 //Aucun indicateur de positionPosShStopIndic = 0 //Aucun indicateur de positionPosShInvIndic = 0 //Aucun indicateur de positionPosShFinIndic = 0 //Aucun indicateur de positionPosShFinPlusIndic = 0 //Aucun indicateur de positionPosShPydIndic = 0 //Aucun indicateur de positionPosShObjIndic = 0 //Aucun indicateur de positionPosShBenIndic = 0 //Aucun indicateur de positionPosShBenTrendIndic = 0 //Aucun indicateur de positionPosShOutIndic = 0 //Aucun indicateur de position// PriceIf SprType = 0 ThenPosShOpenPrice = OpenOfNextBar + Spread // Ouverture au prix de la bougie suivante + spread absoluElsePosShOpenPrice = OpenOfNextBar * (1 + (Spread / 100)) // Ouverture au prix de la bougie suivante + spread absoluEndIfPosShBenefPrice = PosShOpenPrice // Définition du prix de référence pour prise de bénéfice absoluePosShStopPrice = StopPrice // Définition du prix du STOPPosStopPrice = PosShStopPrice // Définition du prix du STOPPosStopPrice = PosStopPricePosShObjPrice = ObjPrice // Définition du prix de l'objectif// StatGainTrSh = 0 // Gain sur position initialisé à 0LosTrSh = 0 // Perte sur position initialisé à 0PosNbBar = 0 // Nombre de Bar position = 0PosBarIn = BarIndex // BarIndex d'ouverture à 1PosBarOut = 0 // BarIndex de cloture à 0EndIfEndIfEndIfElsexHIndic = 0PosShInIndic = 0PosShInvIndic = 0PosShStopIndic = 0PosShFinIndic = 0PosShFinPlusIndic = 0PosShObjIndic = 0PosShBenTrendIndic = 0PosShBenIndic = 0PosShOutIndic = 0NbTrSh = 0NbTrShSto = 0NbTrShInv = 0NbTrShFin = 0NbTrShWin = 0NbTrShLos = 0NbTrShObj = 0TotGainTrSh = 0TotLosTrSh = 0AvgGainTrSh = 0AvgLosTrSh = 0GainTrSh = 0LosTrSh = 0PosStopPrice = 0FinObj = FinObjFinObjSup = FinObjSupFinBenef = FinBenefFinType = FinTypeSpread = SpreadSprType = SprTypePymd = PymdAnnee = AnneeMois = MoisJour = Jour///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GESTION DES VARIABLES MULTI MODULES /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// n/aEndifEndIf/////////////////////////////////////////////////////////////////////////////////////////////////////////////// Retour des variables //////////////////////////////////////////////////////////////////////////////////////////////////////////////Return PosShAleIndic as "Alerte", xHIndic as "Signal Prise Position", PosShInIndic as "En Position Longue", PosShInvIndic as "Signal Invalidation", PosShStopIndic as "Signal Stop", PosShFinIndic as "Financement Prudent", PosShFinPlusIndic as "Financement Audacieux", PosShObjIndic as "Signal Position Objectif" , PosShBenTrendIndic as "Position Objectif Absolu" , PosShBenIndic as "Signal Prise Bénéfice",PosShOutIndic as "Signal Sortie", PosShPydIndic as "Signal Pyramidage"1 user thanked author for this post.
04/11/2017 at 9:56 PM #31792voila pour le moment je ne met que les 3 codes principaux le gnt@sys est celui ou vous installé votre système de trading ou stratégie, les 2 suivant font un call du premier suivant vos paramètre et si vous êtes à l achat ou la vente, il y à tous les commentaire pour faire vos réglages et je pense que l on peut encore l’amélioré.
actuellement mon problème ce situe dans GNT@TSA-Long et GNT@TSA-Short dans la partie position perdante sortie sur stop ou invalidation du signal au niveau du commentaire //price j ai cet ligne de code PosLgClosePrice = OpenOfNextBar et quand je veux validé le programme il me demande de definir la variable OpenOfNextBar et je ne vois pas pourquoi ? si quelqu un pouvait m’éclairer parce que si j arrive à résoudre cet partie je pourrais m attaqué au 4 autres pour complété le programme de money management.
merci
Here is for the moment I only put the 3 main codes the gnt @ sys is the one where you installed your trading system or strategy, the next 2 make a call of the first following your parameter and if you are buying or selling, There are all the comments to make your settings and I think we can still improve it.
Currently my problem is located in GNT @ TSA-Long and GNT @ TSA-Short in the part losing position output on stop or invalidation of the signal at the comment level // price j have this line of code PosLgClosePrice = OpenOfNextBar and when I want validated The program it asks me to define the variable OpenOfNextBar and I do not see why? If anyone could enlighten me because if I can solve this part I could m attacked the 4 others to complete the program of money management.
thank you
1 user thanked author for this post.
10/10/2017 at 12:30 PM #4890110/10/2017 at 12:54 PM #48903il faudrait que je ne re-plonge dedans pour être certains, mais ajoute seulement
Once openofnextbar = 1
juste après
Once Jour = Jour
Ceci donne…
Once FinObj = FinObj
Once FinObjSup = FinObjSup
Once FinBenef = FinBenef
Once FinType = FinType
Once Spread = Spread
Once SprType = SprType
Once Pymd = Pymd
Once Annee = Annee
Once Mois = Mois
Once Jour = Jour
Once openofnextbar = 11 user thanked author for this post.
10/27/2017 at 10:01 PM #5075810/28/2017 at 12:08 AM #50762Oui te voilà enfin gfx mon rêve ce réalisé enfin C est bizarre je n est pas été averti de tes message enfin bref ce qui compte C est maintenant effectivement ton code date de 2011 et je le trouve genialissime😉 comparativement à tout ce que j ai pu voir ailleurs mais comme je débute en prog je suis resté coincé et prt C est amélioré depuis…
Dit moi avec les nouvelles fonctionnalités prt est il possible de simplifier tout sa, je sais j en demande beaucoup parce que si C est oui tu va révolutionner ma façon de travailler et mon temps si précieux pour ma famille, bon du coup je me remet en selle et revient vers toi si j ai des questions.
Et encore toute ma gratitude pour ton travail
Mille merci
02/21/2018 at 12:39 AM #63333Bonjour Grégoire,
Merci pour ce partage !!!
As-tu pu faire fonctionner le code finalement ?
Marche-t-il sur les actions ou est-il destiné à d’autres actifs ?
Je ne comprends pas pourquoi on ne trouve pas qlq part un ranking en temps réel des performances de stratégies de trading automatique par actifs ; tu aurais une explication ?
02/21/2018 at 12:40 AM #63334Bonjour GFX,
Merci pour ce code !!!
As-tu pu faire fonctionner le code finalement ?
Marche-t-il sur les actions ou est-il destiné à d’autres actifs ?
Je ne comprends pas pourquoi on ne trouve pas qlq part un ranking en temps réel des performances de stratégies de trading automatique par actifs ; tu aurais une explication ?
02/21/2018 at 4:23 PM #63406bonjour kris
oui en faisant la modif Once openofnextbar = 1 dans le code principal mais depuis prt à beaucoup évolué et c est pour cela que j ai demandé au créateur du code si on pouvait simplifier depuis mais je suis sans réponse il doit être occupé ailleurs , pour ta questions je n’ ai pas la réponse je peu seulement te dire qu un ranking sur plus de 8000 actions qui s échange chaque jours prenne beaucoup de temps et place donc j ‘en déduis que cela doit être la raison , et le but du trader est de détecter les meilleurs opportunité sinon si tout est livré sur un plateau à quoi bon…
bien à toi et bon trade ou bonne prog…
1 user thanked author for this post.
02/22/2018 at 3:09 PM #63532@gregoire Thanks 😉 bon dommage pour l’aide à la prog …
en fait je pensais à un ranking non pas par action mais plutôt par actif = les actions / Forex … ; oui je pense que chacun bosse dans son coin ce qui n’est pas un reproche of course ; j’en fais l’expérience tout cela est du travail et du talent !
tu utilises quoi du coup comme système automatique sur les actions ?
Bien à toi,
Chris
02/26/2018 at 1:26 PM #63960en fait je n ai pas automatisé je screen tous les soir et fini de filtre visuellement par moi même parce qu une machine ne peu reproduire certaine chose mais vu que cela ne me prend qu entre 30mn et 1h cela ne pose aucun problème et me laisse du temps pour autre choses…
02/28/2018 at 9:26 AM #64092@grégoire ; ok et donc tu utilises quels screener ?
05/29/2018 at 11:32 PM #7165603/01/2019 at 4:18 PM #92644bonjour à tous,
je suis parti sur MT4… pendant quelques années… et je reviens sur PRT de temps à autre 🙂
le code devrait toujours fonctionner. En tous cas sur mon poste c’est le cas.
Probablement un problème de copier/coller.
A+
1 user thanked author for this post.
03/06/2019 at 6:40 PM #93013Hello GFX,
Peux-tu nous donner exactement ta configuration et le support que tu trades, que l’on puisse mieux utiliser ce superbe travail ?
Merci
Kris
-
AuthorPosts
Find exclusive trading pro-tools on