- Search Crypto Craft
-
mr-roma replied Jul 3, 2014Ok, and can someone help me to do 2 indicator which shows Winning and losing trades? image
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 26, 2014I use this indicator: file In this code, can I to define all time profit, not only one year: datetime d0, d1, d2, d3, d4, d5, d6, d7, d8; //+--------------------------------------------------------------------------+ ...
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 26, 2014Can I make information about acoount age? Like this: image I know how to do yearly profit indicator, but I need all time profit indicator
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 26, 2014Thank you very much fxdaytrader image
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014How much trades was Buy or Sell. Like this image
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014This is good, thank you, but I need by numeric. image Not word, numbers.
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014Ops .... I don't understand this ... (( if(OrderType() == OP_BUY) { string allorder = OrderType(); ObjectCreate("LTradeAll_Label", OBJ_LABEL, 0, 0, 0); ObjectSetText("LTradeAll_Label", allorder, 10, "Arial Bold", White); ObjectSet("LTradeAll_Label", ...
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014Ok. I want to make Long Trades and Short Trades indicator, but ... I know, OrderType() 0 = Buy and 1 = Sell, and how can I to select, example just Buy Orders from OrdersHistoryTotal() ? Can enyone help me?
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014FerruFx can you help me on this? image int ticketTime = OrdersTotal(); string tm_ticket; //ArrayResize( o_ticket, ticketOpnp ); for (int tmcnt=0;tmcnt<ticketTime;tmcnt++) { if ( !OrderSelect(tmcnt,SELECT_BY_POS,MODE_TRADES) ) continue; ...
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014Sorry (( can you helpm to do this? I don't understand well ((
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014And can you help me on this FerruFX? int ticketOpnp = OrdersTotal(); int o_ticket[]; ArrayResize( o_ticket, ticketOpnp ); for (int ocnt=0;ocnt<ticketOpnp;ocnt++) { if ( !OrderSelect(ocnt,SELECT_BY_POS,MODE_TRADES) ) continue; ...
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014Ok, I find problem for this one Just I delete +T_ticket string Ordertype = "Ticket Type " +T_ticket[tcnt]; string Ordertype = "Ticket Type " +tcnt; Thank you

Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014But this orders in't closed, this all is opened trades and just changing profit price, up or down. image
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 25, 2014Thank you all for help I have also this problem int tickettype = OrdersTotal(); int T_ticket[]; ArrayResize( T_ticket, tickettype ); for (int tcnt=0;tcnt<tickettype;tcnt++) { if ( !OrderSelect(tcnt,SELECT_BY_POS,MODE_TRADES) ) continue; ...
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 24, 2014Ok, I do this, but like that string Ydistance = 260 + (5 * orders) * cnt; image int orders = OrdersTotal(); int a_ticket[]; ArrayResize( a_ticket, orders ); for (int cnt=0;cnt<orders;cnt++) { if ( !OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES) ) ...
Open Trades Indicator - Help Needed