- Search Crypto Craft
-
mr-roma replied Jun 24, 2014I change order names 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) ) continue; a_ticket[cnt]=OrderTicket(); string OrderNumber = ...
Open Trades Indicator - Help Needed
-
mr-roma replied Jun 24, 2014Thank you for replying FerruFX. I kwon, but I don't know how? (( I want to start indicator from 260 Y distance and than I don't know how to increase ((
Open Trades Indicator - Help Needed
-
Open Trades Indicator - Help Needed
Started Jun 24, 2014|Platform Tech|36 replies
Hi, I need help for this indicator. This is my code example: int orders = OrdersTotal(); int ...
-
mr-roma replied Oct 3, 2013Oh thank you Gumrai and sorry for that, I change my PM settings ... Ok, when I tried to codding this in init() pnt = MarketInfo(Symbols[Chcol],MODE_POINT); Of course it getting error: Chcol variable not defined. Can I codding in init() like that? ...
Symbol price indicator (Dashboard)
-
mr-roma replied Sep 20, 2013Hi Gumrai, thanks that helping me. This is my 2 codes, but from here first doesn't work and second is working well, but second code is long than first. I want short code, because my indicator is big. This is 2 simple code: First #property ...
Symbol price indicator (Dashboard)
-
mr-roma replied Sep 17, 2013I do this, but now I can't doing one simple code, example when price com down I wont that price BG color will Red, but when come up will Lime, can anyone help me? please This is my code string CuurPriceName; int cpcol; if(ExtLines<0) { for(cpcol=0; ...
Symbol price indicator (Dashboard)
-
mr-roma replied Sep 14, 2013Hi, how can I do this simple indicator for 2 or more symbols with array? In one chart window #property indicator_chart_window extern int WhatCorner = 3; double lastPrice = 0.0; color FontColor; int dig; ...
Symbol price indicator (Dashboard)
-
mr-roma replied Aug 17, 2013How can I do 2 or more text label from one ObjectCreate codding, like this: #property indicator_chart_window extern int WhatCorner = 3; double lastPrice = 0.0; color FontColor; int dig; double i; ...
Symbol price indicator (Dashboard)
-
mr-roma replied Aug 14, 2013What is it this error? " '0' - Internal stack overflow-simplify the program, please" This is error line: ObjectCreate("Egrec04", OBJ_LABEL, 0, 0, 0); ObjectSetText("Egrec04", "a", 37, "PriceDashboardFont", DarkSlateBlue); ObjectSet("Egrec04", ...
Symbol price indicator (Dashboard)
-
Need Help Drawing Daily Candlestick
Started Aug 13, 2013|Platform Tech|0 replies
I need a sample code for drawing 1 or 2 daily candlestick, anyone can help, please ...
-
mr-roma replied Aug 13, 2013I don't know (( I downloaded this indicator and use for my. I'm beginer in this programming Thank you for this code: double pnt=0.01; //---- int WhatCorner=0; double pnt=0.01; color FontColor; for (int uji=1; uji<Bars-1; uji++) { double UjClose = ...
Symbol price indicator (Dashboard)
-
mr-roma replied Aug 12, 2013This is daily range code, it work for any symbol, but don't working only USDJPY image This is code for EURUSD //+------------------------------------------------------------+ for (int eui=1; eui<Bars-1; eui++) { double EuClose = ...
Symbol price indicator (Dashboard)
-
mr-roma replied Aug 12, 2013No, I got it only once. Ok, I correct this, but I have again one problem (( in USDJPY, here: //+------------------------------------------------------------+ for (int uji=1; uji<Bars-1; uji++) { double UjClose = iClose("USDJPY",PERIOD_D1,uji); ...
Symbol price indicator (Dashboard)
-
mr-roma replied Aug 9, 2013Digits not working. image This is my code for USDJPY string Usdjpy_Open_Price = DoubleToStr(iOpen("USDJPY", PERIOD_D1, 0), Digits); ObjectCreate("Usdjpy_Label_Open_Price", OBJ_LABEL, 0, 0, 0); ObjectSetText("Usdjpy_Label_Open_Price", ...
Symbol price indicator (Dashboard)
-
mr-roma replied Aug 8, 2013Can I do this? Or how can I do this, I want, when price going up draw green arrowr, or when price going down draw red arrow, can I do this? if(MarketInfo("GBPUSD", MODE_BID) > GbPriceArrow) { ObjectCreate("GbpUsdArrow01", OBJ_LABEL, 0, 0, 0); ...
Symbol price indicator (Dashboard)