- Search Crypto Craft
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Sep 15, 2022Hi, Slingshots After some investigation, I found that this indicator uses mathematical formular to find those lines. Basically, it uses close prices of each bars and find so called "Linear Regression" formula to draw those lines. Since it is some ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 13, 2022This is very old work of hanover, I think this is specially handle forex pairs only. in my chart with forex pairs, it seems fine.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 12, 2022a couple of MA Dashboard attached Lawgirl's Trend Display is smaller with directional arrow shows up.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 11, 2022void deleteObjArrows() { for (int i=ObjectsTotal()-1; i>=0; i--) { string objectName = ObjectName(i); if ( ObjectType(name) == OBJ_ARROW)ObjectDelete(objectName); } }
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 5, 2022This might be what you are looking. Not mine but in my folder.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 5, 2022Since I don't have that "Launcher Direction Indicator", I can't tell exactly. however, just looking at, it seems it is mixed of ZigZag + Bolliger Band ( see pic ) It seems it is using BB Dev 2. First Draw line from LL to HL line and apply BB and if ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 5, 2022this article can shows you step by step on mql4 programing. Basics of MQL4 - MQL4 Tutorial there are hundreds or code base you can take a look while you are learning. Free download of trading robots and indicators for MetaTrader 4 and MetaTrader 5 - ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 3, 2022Hi, Slingshots I have created this some time ago - based on same settings and same strategy. It is useful.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 29, 2022try this one. It seems label name was too long. I have shortened and error is gone.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 29, 2022Try this one. I guess you wanted to have bucket profit counting. Before the change, EA was counting profit per symbol. I have removed so it will calculate all bucket profit. Also, I added extra output so that it print out current profit per magic ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 27, 2022Sorry, I forgot to change int type into string.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 27, 2022Quoting Sincere007 Hey Bluerain, This may se.. This one fixed Divided by Zero issues. It seems there is formular ( H-C ) / ( H-L) and when H-L is same, it will cause this issue. I went over and fixed all divisions.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 26, 2022Try this one and let me know if you have any issue. I didn't test out. You can enter multiple MagicNumbers seperated by ';' like 1234;4567;12;
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 26, 2022if you have already ready made EA, I would be able to fix so it can handle multiple magic numbers. Please attach to your reply.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 26, 2022There are number of indicators but I think what you are looking for is Candle Overlay. You can overylay will draw candles on top of current chart and it has option of "solid candle" and just outline. You can not draw lower time frame on top of ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 26, 2022if you want just some space after Time[0], just use this trick. ObjectCreate (0, objectname , OBJ_TEXT, 0, Time[0] + Period() * 3000, Value); Basically, you are adding some value to Time[0] which is X position. You can adjust Period()*3000 so that ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 26, 2022There are two way to write - TEXT and LABEL. Text is attached to Candle and LABEL is not. For TEXT, you have to give Candle location while For LABEL, you have to give x,y posion. Attached indicator should give you good example. it has technic to ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 25, 20221. First one is using HLine or it could be OBJ_TREND OBJ_HLINE - Object Types - Objects Constants - Constants, Enumerations and Structures - MQL4 Reference You have to calculate each line and draw individually. 2. 2nd one is using OBJ_FIBO OBJ_FIBO ...
I will code your EAs and Indicators for no charge