- Search Crypto Craft
-
ganztrade replied Dec 19, 2020waawww


, then I should call you uncle simnz
. Thank youuu a lot, I will try my best as copy paste modifier, but still I'm not coder ...My Learning Code Block
-
ganztrade replied Dec 19, 2020can you take a look again in your pictures?
look and zoom. not DOJI ... CLOSE ON HIGH CLOSE ON LOW see starting dash point, not on text
I choose line horizontal, so you can see no wick there you're ...I will code your EAs and Indicators for no charge
-
ganztrade replied Dec 18, 2020enjoy, very nice simple analysis, promising, btw.... which symbol and timeframe?



I will code your EAs and Indicators for no charge
-
ganztrade replied Dec 18, 2020[quote=ntk;13320925] that because we made 3 line in one block code


ObjectsDeleteAll(0,OBJ_TREND); <<< for easy remove fast, not making any block ...I will code your EAs and Indicators for no charge
-
ganztrade replied Dec 18, 2020you not doing all on this post > url
you must be forgot do something in "deinit"I will code your EAs and Indicators for no charge
-
ganztrade replied Dec 18, 2020nope refer to my previous post, I'm not learning mq5 code.


ask mod from indicator author "nagisa" on mql5.com
> url I will code your EAs and Indicators for no charge
-
ganztrade replied Dec 18, 2020I you saw my previous post, sorry bro, I'm still confusing with Multi Time Frame things





see this macd indicator > url I will code your EAs and Indicators for no charge
-
ganztrade replied Dec 18, 2020i didn't know what's this for but if i see and use it has effect to freeze line, arrow, box...make it stick together

//+------------------------------------------------------------------+ ...My Learning Code Block
-
ganztrade replied Dec 18, 2020for refreshing chart, such as fix unresponse rectangle, line, label, etc... a lot my guess code I put in here...but work
//+------------------------------------------------------------------+ //| Refresh function? ...My Learning Code Block
-
ganztrade replied Dec 18, 2020done. fill it your self
other way if me, 1. max total lot: I calculate lot of all my open order, by call function of OrderLotBuy() + OrderLotSell() if reach my max total lot, will not open any trades. 2. max total ...I will code your EAs and Indicators for no charge
-
ganztrade replied Dec 18, 2020for make standalone background //can put on init or start ObjectCreate("Label1", OBJ_LABEL, 0, 0, 0); ObjectSetText("Label1", "g", 195, "Webdings", clrMidnightBlue); ObjectSet("Label1", OBJPROP_BACK, true); ObjectSet("Label1", OBJPROP_CORNER, ...
My Learning Code Block
-
ganztrade replied Dec 18, 2020for many ways to clear objects //put on deinit ObjectsDeleteAll(0,OBJ_RECTANGLE); ObjectsDeleteAll(0,OBJ_ARROW); ObjectsDeleteAll(0,OBJ_TREND); ObjectsDeleteAll(0,OBJ_TEXT); ObjectsDeleteAll(0,OBJ_HLINE); ObjectsDeleteAll(0,OBJ_VLINE); ...
My Learning Code Block
-
ganztrade replied Dec 18, 2020for create rectangle //+------------------------------------------------------------------+ void CreateObjectsRectangle(string no, color cl) { ObjectCreate(no,OBJ_RECTANGLE,0,0,0,0,0); ObjectSet(no,OBJPROP_COLOR,cl); ObjectSet(no,OBJPROP_RAY,false); ...
My Learning Code Block
-
ganztrade replied Dec 18, 2020for Alert & Arrow //puton top extern bool UseArrow = true; extern bool alertsOn = true; extern bool alertsOnCurrent = false; extern bool alertsMessage = true; extern bool alertsSound = false; extern bool alertsNotify = false; extern bool alertsEmail ...
My Learning Code Block
-
ganztrade replied Dec 18, 2020for delete pending //+------------------------------------------------------------------+ //| Delete BuyStop function | //+------------------------------------------------------------------+ void DeleteBuyStop() { //--- int resdel; for (int i = ...
My Learning Code Block
-
ganztrade replied Dec 18, 2020for hovering line for(int i=limit;i>0;i--) { datetime bartime=iTime(NULL,PERIOD_D1,i); string sbartime=TimeToString(bartime,TIME_DATE||TIME_MINUTES); if( TimeHour(bartime ) == MarketOpen) { datetime CandleTime=bartime+(12*PERIOD_D1*5) ; ...
My Learning Code Block
-
ganztrade replied Dec 18, 2020for calculating lot separate //+------------------------------------------------------------------+ //| Calculate Lot Buy function | //+------------------------------------------------------------------+ double OrderLotBuy() { //--- double lotx = 0; ...
My Learning Code Block
-
ganztrade replied Dec 18, 2020for draw pricetag void CreatePriceTag(string name, datetime Time1, datetime Time2, double Price1, double Price2,color lcolor, int lwidth) { ObjectDelete(name); ObjectCreate(name,OBJ_ARROW,0,Time1,0,Time2,0); ObjectSet(name, OBJPROP_ARROWCODE, ...
My Learning Code Block
-
ganztrade replied Dec 18, 2020for draw line //+------------------------------------------------------------------+ //| Draw Vline function BlueRain code | //+------------------------------------------------------------------+ void DrawVLine(string name, datetime Time1, color ...
My Learning Code Block
-
ganztrade replied Dec 18, 2020for draw label //+------------------------------------------------------------------+ //| Draw Label function | //+------------------------------------------------------------------+ void DrawLabel(string name,int x,int y,string label,int ...
My Learning Code Block