ProRealTime
Pour partager sur nos trades en direct en Day Trading et en Scalping ainsi que nos informations ou réactions sur l'Actualité Boursière. Ces sont les files du jour pour partager sur notre trading. Files du jour

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par LLivingstone » 09 mars 2016 17:49

Alors cette après midi de trading?

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Edd » 09 mars 2016 18:47

après-midi repos au boulot aussi :)
AUDUSD J'tente un ptit retour sur le bas de canal, voir 0,75
Spoiler:
AUDUSDM5.png

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Edd » 09 mars 2016 20:16

C'est fait :geek: ... bonne soirée
Spoiler:
AUDUSDM5.png

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Edd » 09 mars 2016 21:16

Baisse des Taux NZD....rrr j'étais pas dessus
Spoiler:
NZDUSDM5.png

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Edd » 09 mars 2016 21:20

AUDUSD, une ptite rafalle de short à la sortie du canal..tactactac .tactactac tactactac :mrgreen:
Spoiler:
AUDUSDM5.png

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par cedre » 09 mars 2016 21:23

J'suis short sur le NZD depuis le 3 mars = Flat ;)

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par cedre » 09 mars 2016 21:25

Edd a écrit :AUDUSD, une ptite rafalle de short à la sortie du canal..tactactac .tactactac tactactac :mrgreen:
Spoiler:
AUDUSDM5.png
Edd et son pistolet mitrailleur :D

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par cedre » 09 mars 2016 21:31

Tu envois des shorts en mode pyramide avec stop'a 0 ?

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Edd » 09 mars 2016 21:41

Exact, tout les ordres sont verrouillés avec un stop à 8points
Donc soit je win beaucoup, ou je win peu, mais je win :mrgreen:
Spoiler:
AUDUSDM5.png

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par cedre » 09 mars 2016 22:00

OK cool ça me fait penser au codes que tu avais posté sur une autre file :
Spoiler:
#property copyright ""
#property link "solution-pour-placer-plusieurs-ordres-e ... 11686.html"
#property show_inputs

int ot=OrdersTotal()+1;
extern string Sens_des_ordres= "True pour ACHAT / False pour Vente";
extern bool Sens = True ;
extern double n=100;//variable n
double ord1;extern double lo1=0.01;extern double sl1=100;extern double tp1=100;//paramètre ordre n°1
double ord2;extern double lo2=0.01;extern double sl2=100;extern double tp2=100;//etc...
double ord3;extern double lo3=0.01;extern double sl3=100;extern double tp3=100;
double ord4;extern double lo4=0.01;extern double sl4=100;extern double tp4=100;
double ord5;extern double lo5=0.01;extern double sl5=100;extern double tp5=100;
double ord6;extern double lo6=0.01;extern double sl6=100;extern double tp6=100;
double ord7;extern double lo7=0.01;extern double sl7=100;extern double tp7=100;
int start(){if (OrdersTotal()<ot){if (Sens==True){

//---ordre-----symbol---operation--lot--prix----slippage---stop--------------------take profit---------comment/magicn/expiration--couleur
ord1=OrderSend(Symbol(),OP_BUY ,lo1,Ask ,3, Ask -sl1*Point, Ask +tp1*Point,0,0,0,CLR_NONE);//ordre au marché
ord2=OrderSend(Symbol(),OP_BUYSTOP ,lo2,Ask+n*1*Point,1,(Ask+n*1*Point)-sl2*Point,(Ask+n*1*Point)+tp2*Point,0,0,0,CLR_NONE);//ordre différé
ord3=OrderSend(Symbol(),OP_BUYSTOP ,lo3,Ask+n*2*Point,1,(Ask+n*2*Point)-sl3*Point,(Ask+n*2*Point)+tp3*Point,0,0,0,CLR_NONE);// "
ord4=OrderSend(Symbol(),OP_BUYSTOP ,lo4,Ask+n*3*Point,1,(Ask+n*3*Point)-sl4*Point,(Ask+n*3*Point)+tp4*Point,0,0,0,CLR_NONE);// "
ord5=OrderSend(Symbol(),OP_BUYSTOP ,lo5,Ask+n*4*Point,1,(Ask+n*4*Point)-sl5*Point,(Ask+n*4*Point)+tp5*Point,0,0,0,CLR_NONE);// "
ord6=OrderSend(Symbol(),OP_BUYSTOP ,lo6,Ask+n*5*Point,1,(Ask+n*5*Point)-sl6*Point,(Ask+n*5*Point)+tp6*Point,0,0,0,CLR_NONE);// "
ord7=OrderSend(Symbol(),OP_BUYSTOP ,lo7,Ask+n*6*Point,1,(Ask+n*6*Point)-sl7*Point,(Ask+n*6*Point)+tp7*Point,0,0,0,CLR_NONE);// "
}else{
ord1=OrderSend(Symbol(),OP_SELL ,lo1,Bid ,3, Bid +sl1*Point, Bid -tp1*Point,0,0,0,CLR_NONE);//ordre au marché
ord2=OrderSend(Symbol(),OP_SELLSTOP,lo2,Bid-n*1*Point,1,(Bid-n*1*Point)+sl2*Point,(Bid-n*1*Point)-tp2*Point,0,0,0,CLR_NONE);//ordre différé
ord3=OrderSend(Symbol(),OP_SELLSTOP,lo3,Bid-n*2*Point,1,(Bid-n*2*Point)+sl3*Point,(Bid-n*2*Point)-tp3*Point,0,0,0,CLR_NONE);// "
ord4=OrderSend(Symbol(),OP_SELLSTOP,lo4,Bid-n*3*Point,1,(Bid-n*3*Point)+sl4*Point,(Bid-n*3*Point)-tp4*Point,0,0,0,CLR_NONE);// "
ord5=OrderSend(Symbol(),OP_SELLSTOP,lo5,Bid-n*4*Point,1,(Bid-n*4*Point)+sl5*Point,(Bid-n*4*Point)-tp5*Point,0,0,0,CLR_NONE);// "
ord6=OrderSend(Symbol(),OP_SELLSTOP,lo6,Bid-n*5*Point,1,(Bid-n*5*Point)+sl6*Point,(Bid-n*5*Point)-tp6*Point,0,0,0,CLR_NONE);// "
ord7=OrderSend(Symbol(),OP_SELLSTOP,lo7,Bid-n*6*Point,1,(Bid-n*6*Point)+sl7*Point,(Bid-n*6*Point)-tp7*Point,0,0,0,CLR_NONE);// "
}
}else Print("error",0);
return(0);}

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Edd » 09 mars 2016 23:37

en effet :)
l'avantage, c'est de passer tout les stops de 8 points à 20 en 2 clics en changeant z :)
Spoiler:
AUDUSDM5.png

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Edd » 09 mars 2016 23:45

Aller faut bien encaisser 8-) c'est l'heure du dodo
Spoiler:
AUDUSDM5.png

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par LLivingstone » 10 mars 2016 10:55

salut les cambistes
j'y arrive pas ce matin, je suis dans le rouge, mon timing n'est pas bon.

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Edd » 10 mars 2016 10:56

Salut, je ne la ramène pas ce matin :)
AUDUSD à l'Achat, je laboure..."Elargissement symétrique de sommet" la figure de m...
flat au milieu..couper pas couper, that's the question :?:
Spoiler:
AUDUSDM5.png

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par LLivingstone » 10 mars 2016 11:00

seule ton expérience et là où tu as décidé initialement de sortir peuvent répondre à cette question
sur tes premières phases d'achat j'étais à la vente lol :mur: :mur:

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par LLivingstone » 10 mars 2016 11:05

pfff, je suis short sur GBP/USD et ça continue un peu de monter

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Edd » 10 mars 2016 11:17

Dans tout les cas je coupe dans l'heure, ils attendent tous la BCE pour un tour de manège :-)

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par LLivingstone » 10 mars 2016 12:28

je rame je rame je rame, j'ai rattrapé mes pertes

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par Paperbag » 10 mars 2016 15:08

L'eur/usd on rigole bien.

-1% en 30 min.

+1% en 30 min.

Le genre de journée qui fait croire aux débutants qu'il faut être contrarien.

Re: / ! \ Forex & Commodities / ! \ [07/03 - 11/03]

par falex » 10 mars 2016 17:50

Ben alors il a dit quoi Supermario quand j'étais absent ?

Au relevé de taux à 13h30 : Bam on plonge et depuis ... retour en haut ...

Y'a tout de même un truc incroyable : La BCE est censé faire plongé la parité EURUSD et au lieu de ça, lors des dernières annonces de SuperM : Bam plein nord ...

Sujets similaires
Options et commodities
Fichier(s) joint(s) par Ano » 24 juil. 2018 16:25 (82 Réponses)
Entretien Risk manager Commodities
par ChristelleP » 26 mars 2019 09:21 (1 Réponses)
Je galère, Forex cfd à risque limité, Forex Future ?
Fichier(s) joint(s) par chad » 13 janv. 2017 14:11 (21 Réponses)
Nouveau sur le Forex
par greg1313 » 05 oct. 2011 12:05 (4 Réponses)
Trader le Forex
par Alexstart » 29 oct. 2011 07:53 (23 Réponses)
Nouveau sur le forex
par VincentFX » 08 nov. 2011 19:48 (16 Réponses)
Trading de Law - Forex
Fichier(s) joint(s) par law1979 » 02 avr. 2012 03:23 (40 Réponses)
Money management sur forex
par LNL » 05 avr. 2012 14:50 (13 Réponses)
Actu forex
par kapistar » 25 avr. 2012 15:01 (18 Réponses)
Forex : feuille Excel de suivi
par Djobydjoba » 28 juil. 2012 11:13 (1 Réponses)